@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');
/*
* fontawesomeセット
* content:'\○○○';
* font: var(--fa-font-solid);
*/
body{
  background: #fff3e3;
  color: #6f4815;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.w126{
  max-width: 1300px;
  padding: 0 20px;
  margin: 0 auto;
}
.w100p{
  width: calc( 100% - 200px );
  margin: 0 auto;
}
@media screen and (min-width:769px){
  .sp_only{
    display: none;
  }
}
@media screen and (max-width:768px){
  .pc_only{
    display: none;
  }
}
@media screen and (max-width:1260px){
  .w100p{
    width: calc( 100% - 40px );
  }
}
/*=====================================
*
*header
*
=======================================*/
header{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  transition: ease all .4s;
}
header .header_inner{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-right: 100px;
  width: 100%;
  transition: ease all .4s;
}
header .header_inner .logo{
  transition: ease all .4s;
  width: 200px;
}
header .header_inner .menu{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 50px;
  transition: ease all .4s;
}
header .header_inner .menu ul{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .header_inner .menu ul li{
  margin-right: 40px;
  display: flex;
  align-items: center;
}
header .header_inner .menu ul li a{
  color: #6f4815;
  font-size: 20px;
  font-weight: 500;
  transition: ease all .4s;
}
header .header_inner .menu .btn a{
  background: #fff;
  border: 2px solid #6f4815;
  padding: 10px 60px;
  border-radius: 500px;
  font-weight: 500;
  font-size: 20px;
  color: #6f4815;
  position: relative;
  display: block;
  transition: ease all .4s;
}
header .header_inner .menu .btn a:before{
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(../images/arrow.png)no-repeat left top;
}
header.active{
  box-shadow: 0 -5px 20px 0 #00000061;
  background: #fff3e3;
}
header.active .header_inner{
  align-items: center;
  padding: 0 100px;
}
header.active .logo{
  width: 80px;
}
header.active .header_inner .menu{
  padding-top: 0;
}
header.active .header_inner .menu ul li a,
header.active .header_inner .menu .btn a{
  font-size: 16px;
}
@media screen and (max-width:1260px){
  header .header_inner .logo{
    width: 160px;
  }
  header .header_inner{
    padding-right: 20px;
  }
  header .header_inner .menu ul li a,
  header .header_inner .menu .btn a{
    font-size: 18px;
  }
  header .header_inner .menu{
    padding-top: 30px;
  }
  header.active .header_inner{
    padding: 0 20px;
  }
  header.active .header_inner .logo {
    width: 80px;
  }
}
@media screen and (max-width:968px){
  header .header_inner .logo {
    width: 100px;
  }
  header .header_inner .menu{
    padding-top: 10px;
  }
  header .header_inner .menu ul li{
    margin-right: 20px;
  }
  header .header_inner .menu ul li a{
    font-size: 16px;
  }
  header .header_inner .menu .btn a {
    font-size: 16px;
    padding: 5px 40px;
  }
  header .header_inner .menu .btn a:before {
    width: 20px;
    height: 20px;
    background-size: 100%;
  }
}
@media screen and (max-width:768px){
  header{
    background: #fff3e3;
  }
  .modal_bg{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 98;
    pointer-events: none;
    opacity: 0;
    transition: ease all .4s;
  }
  .modal_bg.active{
    pointer-events: auto;
    opacity: .3;
  }
  header .header_inner{
    align-items: center;
  }
  header .header_inner .hum{
    display: block;
    width: 40px;
    height: 40px;
  }
  header .header_inner .hum span{
    width: 100%;
    height: 4px;
    background: #6f4815;
    border-radius: 500px;
    margin-top: 8px;
    display: block;
  }
  header .header_inner .menu {
    padding: 20px;
    padding-top: 60px;
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    background: #fff3e3;
    width: 70%;
    max-width: 240px;
    transition: ease all .4s;
    transform: translateX(100%);
  }
  header .header_inner .menu.active{
    transform: translateX(0);
  }
  header.active .header_inner .menu{
    padding: 20px;
    padding-top: 60px;
  }
  header .header_inner .menu .close{
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
  }
  header .header_inner .menu ul{
    display: block;
  }
  header .header_inner .menu ul li{
    margin: 0;
  }
  header .header_inner .menu ul li a{
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid #f3e2ca;
    width: 100%;
  }
  header .header_inner .menu ul li:last-child a{
    border-bottom: none;
  }
  header .header_inner .menu .btn{
    margin-top: 20px;
  }
}
@media screen and (max-width:568px){
  header .header_inner .logo,
  header.active .header_inner .logo {
    width: 60px;
  }
  header.active .header_inner{
    padding-left: 0;
  }
  
}
/*=====================================
*
*front
*
=======================================*/
.front_title{
  font-size: 60px;
  font-weight: 500;
}
.front_title.center{
  text-align: center;
}
.front_btn.center a{
  margin: 0 auto;
}
.front_btn a{
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  max-width: 360px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  background: #6f4815;
  border-radius: 500px;
  padding: 10px;
  text-align: center;
}
.front_btn a::before{
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  width: 40px;
  height: 40px;
  background: url(../images/arrow03.png)no-repeat left top;
}
.center_text{
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width:1420px){
  .front_title{
    font-size: 40px;
  }
}
@media screen and (max-width:1260px){
  .front_title{
    font-size: 32px;
  }
}
@media screen and (max-width:968px){
  .front_title{
    font-size: 28px;
  }
}
@media screen and (max-width:568px){
  .front_title{
    font-size: 24px;
  }
}
/*=====================================
*mv
=======================================*/
.mv{
  margin-top: 120px;
  position: relative;
}
.mv .mv_inner .slider{
  width: calc(100% - 200px);
  position: relative;
  left: 100%;
  transform: translateX(-100%);
  border-radius: 40px 0 0 40px;
  overflow: hidden;
}
.mv .mv_inner .text{
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  position: absolute;
  left: 100px;
  bottom: 30px;
}
.mv .mv_inner .text span{
  background: #a02900;
  border-radius: 10px;
  line-height: 2;
  padding: 0px 20px;
}
@media screen and (max-width:1260px){
  .mv .mv_inner .slider{
    width: calc(100% - 160px);
  }
  .mv .mv_inner .text {
    font-size: 30px;
    left: 40px;
  }
}
@media screen and (max-width:968px){
  .mv{
    margin-top: 80px;
  }
  .mv .mv_inner .slider {
    width: calc(100% - 100px);
  }
  .mv .mv_inner .text {
    font-size: 30px;
    left: 20px;
    bottom: -30px;
  }
}
@media screen and (max-width:768px){
  .mv {
    margin-top: 100px;
  }
  .mv .mv_inner .slider {
    width: calc(100% - 40px);
  }
  .mv .mv_inner .text {
    left: 20px;
    bottom: -30px;
    font-size: 20px;
  }
  .mv .mv_inner .text span{
    font-size: 1.8;
  }
}
@media screen and (max-width:568px){
  .mv {
    margin-top: 70px;
  }
  .mv .mv_inner .slider {
    width: calc(100% - 10px);
  }
  .mv .mv_inner .text{
    font-size: 18px;
    bottom: -50px;
  }
  .mv .mv_inner .text span{
    left: 10px;
    line-height: 1.8;
  }
}

/*=====================================
*cta
=======================================*/
.cta{
  margin: 120px auto;
  position: relative;
}
.cta .btn{
    max-width: 720px;
    margin: 0 auto;
}
.cta .btn a{
  background: linear-gradient(to bottom,#fb6901,#ff8e3e);
  color: #fff;
  font-size: 42px;
  font-weight: 500;
  position: relative;
  display: block;
  border-radius: 500px;
  text-align: center;
  padding: 20px;
  padding-top: 50px;
  border: 3px solid #d55900;
}
.cta .btn a::before{
  content: '';
  display: block;
  width: 60px;
  height: 60px;
  background: url(../images/arrow02.png)no-repeat left top;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}
.cta .btn a .image{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -80px;
}
.cta .btn a .text{
  
}
@media screen and (max-width:1260px){
  .cta .btn a {
    font-size: 32px;
    padding: 15px;
    padding-top: 60px;
  }
}
@media screen and (max-width:768px){
  .cta .btn a::before{
    width: 30px;
    height: 30px;
    right: 20px;
    background-size: 100%;
  }
  .cta .btn a {
    padding-top: 25px;
  }
}
@media screen and (max-width:568px){
  .cta{
    margin: 120px auto 0;
  }
  .cta .btn a .image{
    top: -40px;
  }
  .cta .btn a{
    font-size: 22px;
  }
}
/*=====================================
*section1
=======================================*/
.sec01{
  margin: 120px auto;
}
.sec01 .sec01_flex{
  margin: 80px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sec01 .sec01_flex.re{
  flex-flow: row-reverse;
}
.sec01 .sec01_flex .image{
  width: 50%;
  max-width: 800px;
  overflow: hidden;
  border-radius: 10px;
}
.sec01 .sec01_flex .text{
  width: 45%;
}
.sec01 .sec01_flex .text p{
  margin: 40px auto;
  font-size: 20px;
  line-height: 2;
}
@media screen and (max-width:1420px){
  .sec01 .sec01_flex .text{
    width: 47%;
  }
  .sec01 .sec01_flex .text p{
    font-size: 18px;
  }
}
@media screen and (max-width:1260px){
  .sec01 .sec01_flex .text p br{
    display: none;
  }
}
@media screen and (max-width:968px){
  .sec01 .sec01_flex .text p {
    font-size: 16px;
    margin: 20px auto;
  }
}
@media screen and (max-width:768px){
  .sec01 .sec01_flex,
  .sec01 .sec01_flex.re{
    flex-flow: column;
    gap: 20px;
  }
  .sec01 .sec01_flex .image,
  .sec01 .sec01_flex .text{
    width: 100%;
  }
  .sec01 .front_btn a{
    margin: 0 auto;
  }
}
@media screen and (max-width:568px){
  .sec01 {
    margin: 40px auto;
  }
}

/*=====================================
*blog
=======================================*/
.blog{
  padding: 80px 0;
  background: #fff;
}
.blog .blog_list{
  margin: 40px auto;
}
.blog .blog_list ol{
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.blog .blog_list ol li{
  width: 32%;
  margin-bottom: 30px;
}
.blog .blog_list ol li a{
  color: #6f4815;
}
.blog .blog_list ol li a .image{
  overflow: hidden;
  border-radius: 10px;
}
.blog .blog_list ol li a .text{
  margin-top: 10px;
}
.blog .blog_list ol li a .text .date{
  font-size: 14px;
}
.blog .blog_list ol li a .text h3{
  font-size: 16px;
  font-weight: 500;
}
.blog .blog_list .front_btn{
  margin-top: 40px;
}
@media screen and (max-width:968px){
  .blog{
    padding: 40px 0;
  }
}
@media screen and (max-width:568px){
  .blog .blog_list ol li{
    width: 100%;
  }
}

/*=====================================
*maps
=======================================*/
.maps{
  background: #6f4815;
  color: #fff;
  padding: 80px 0;
}
.maps .map_flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.maps .map_flex .map{
  width: 48%;
  overflow: hidden;
  border-radius: 10px;
  height: 400px;
}
.maps .map_flex .text{
  width: 48%;
  line-height: 2;
}
.maps .map_flex .text p{
  margin: 20px auto;
  font-size: 24px;
}
@media screen and (max-width:1260px){
  .maps .map_flex .map{
    height: 320px;
  }
  .maps .map_flex .text p{
    font-size: 20px;
  }
}
@media screen and (max-width:968px){
  .maps{
    padding: 40px 0;
  }
  .maps .map_flex .map {
    height: 220px;
  }
  .maps .map_flex .text p {
    font-size: 16px;
  }
}
@media screen and (max-width:768px){
  .maps .map_flex{
    flex-flow: column;
    gap: 20px;
  }
  .maps .map_flex .map{
    width: 100%;
  }
  .maps .map_flex .text{
    width: 100%;
  }
}

/*=====================================
*section2
=======================================*/

/*=====================================
*section3
=======================================*/

/*=====================================
*section4
=======================================*/

/*=====================================
*section5
=======================================*/

/*=====================================
*section6
=======================================*/

/*=====================================
*section7
=======================================*/

/*=====================================
*section8
=======================================*/

/*=====================================
*section9
=======================================*/

/*=====================================
*section10
=======================================*/


/*=====================================
*
*single
*
=======================================*/

/*=====================================
*
*page
*
=======================================*/

/*=====================================
*
*archive
*
=======================================*/

/*=====================================
*
*breadcrumb
*
=======================================*/

/*=====================================
*
*toc
*
=======================================*/

/*=====================================
*
*footer
*
=======================================*/
.footer_inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_inner .footer_logo{
  width: 140px;
}
.footer_inner .footer_menu{
  display: flex;
  justify-content: flex-end;  
}
.footer_inner .footer_menu ol{
  display: flex;
  justify-content: flex-end;  
}
.footer_inner .footer_menu ol li {
  margin-right: 40px;
  display: flex;
  align-items: center;
}
.footer_inner .footer_menu ol li a{
  color: #6f4815;
  font-size: 20px;
  font-weight: 500;
}
.footer_inner .footer_menu .btn a{
  background: #fff;
  border: 2px solid #6f4815;
  padding: 10px 60px;
  border-radius: 500px;
  font-weight: 500;
  font-size: 20px;
  color: #6f4815;
  position: relative;
  display: block;
}
.footer_inner .footer_menu .btn a:before{
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(../images/arrow.png)no-repeat left top;
}
.footer_inner .copyright{
  font-size: 14px;
  text-align: right;
  margin-top: 10px;
}
@media screen and (max-width:1260px){
  .footer_inner .footer_menu .btn a{
    font-size: 16px;
  }
  .footer_inner .footer_menu ol li a{
    font-size: 16px;
  }
}
@media screen and (max-width:968px){
  .footer_inner{
    padding: 20px 0 10px;
  }
  .footer_inner .footer_logo {
    width: 80px;
  }
  .footer_inner .footer_menu ol li{
    margin-right: 20px;
  }
  .footer_inner .footer_menu .btn a {
    font-size: 16px;
    padding: 5px 40px;
  }
  .footer_inner .footer_menu .btn a:before {
    width: 20px;
    height: 20px;
    background-size: 100%;
  }
}
@media screen and (max-width:768px){
  .footer_inner .footer_menu{
    flex-flow: column;
  }
  .footer_inner .footer_menu ol li {
    margin-left: 20px;
    margin-right: 0;
  }
  .footer_inner .footer_menu .btn{
    margin-top: 10px;
    text-align: right;
  }
  .footer_inner .footer_menu .btn a{
    display: inline-block;
  }
}
@media screen and (max-width:568px){
  .footer_inner .footer_logo {
    width: 60px;
  }
  .footer_inner .footer_menu ol li a {
    font-size: 13px;
  }
}

/*=====================================
*
*sidenav
*
=======================================*/

/*=====================================
*
*pc&tablet&spのnone処理
*
=======================================*/
/*=====================================
*pcのみ
=======================================*/
@media screen and (min-width: 1025px){
  .pcnone{
    display: none;
  }
}
/*=====================================
*tablet用
=======================================*/
@media screen and (max-width: 1024px) and (min-width: 415px){
  .tabnone{
    display: none;
  }
}
/*=====================================
*sp用
=======================================*/
@media screen and (max-width:414px){
  .spnone{
    display: none;
  }
}
