@charset "utf-8";

#Main{
}

.bnr_box{
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.bnr_box li{
  width: 48%;
  margin-top: 24px;
}
.bnr_box li a{
  display: block;
}
.bnr_box li a img{
  width: 100%;
  height: auto;
}
.bnr_box li a:hover{
  opacity: 0.7;
}

/* top_page
-----------------------------------------------------------------*/

/* #Sec01
-----------------------------------------------------------------*/
.top_page #Sec01{
  margin-top: 100px;
}
.top_page #Sec01 .inner{
  max-width: 920px;
  margin: 0 auto;
  padding: 20px 50px;
}
.top_page #Sec01 .mark{
  text-align: center;
}
.top_page #Sec01 .mark img{
}
.top_page #Sec01 .ttl{
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  margin-top: 60px;
}
.top_page #Sec01 .txt{
  text-align: center;
  margin: 70px auto 0;
  max-width: 480px;
  line-height: 5rem;
}

.catch_txt{
  font-size: 1.6rem;
  text-align: center;
  font-weight: 300;
  color: #897750;
  margin-top: 80px;
}

/* #Sec02
-----------------------------------------------------------------*/
.top_page #Sec02{
  margin-top: 80px;

}
.top_page #Sec02 .inner{
  max-width: 920px;
  margin: 0 auto;
  padding: 0 50px;

}
.top_page #Sec02 ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top_page #Sec02 ul li{
  width: 30%;
  margin-top: 15px;
}
.top_page #Sec02 ul li .ttl{
  font-size: 1.6rem;
  margin-top: 5px;
}
.top_page #Sec02 ul li .ttl span{
  font-size: 1.4rem;
  display: inline-block;
}
.top_page #Sec02 ul li a{
  display: block;
  transition: 0.3s;
}
.top_page #Sec02 ul li a:hover{
  opacity: 0.7;
}

/* #Sec03
-----------------------------------------------------------------*/
.top_page #Sec03{
  background-color: #EDEBE5;
  padding: 60px 0;
  margin-top: 80px;
}
.top_page #Sec03 .inner{
  max-width: 920px;
  margin: 0 auto;
  padding: 0 50px;
}
.top_page #Sec03 .item_box{
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.top_page #Sec03 .item_box .item_img{
  width: 48%;
}
.top_page #Sec03 .item_box .item_img img{
  width: 100%;
  height: auto;
}
.top_page #Sec03 .item_box .item_txt{
  width: 47%;
}
.top_page #Sec03 .item_box .item_txt .ttl{
  font-size: 2.4rem;
  font-weight: 400;
}
.top_page #Sec03 .item_box .item_txt .ttl span{
  font-size: 1.6rem;
  display: block;
  font-family: "Lexend", sans-serif;
  color: #897750;
}
.top_page #Sec03 .item_box .item_txt .txt{
  margin-top: 20px;
}

/* #Sec04
-----------------------------------------------------------------*/
.top_page #Sec04{
  background: url(../images/top/bg_01.png) no-repeat top center;
  background-size: 100% auto;
  padding-top: 80px;
}
.top_page #Sec04 .inner{
}
.top_page #Sec04 h2.ttl{
  max-width: 920px;
  margin: 0 auto;
  padding: 0 50px;
}

.top_page #Sec04 h3.ttl{
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  margin-top: 60px;
}
.top_page #Sec04 .txt{
  text-align: center;
  margin: 70px auto 0;
  max-width: 5200px;
  line-height: 5rem;
}
.top_page #Sec04 .address{
  text-align: center;
  margin: 70px auto 0;
  max-width: 480px;
}
.top_page #Sec04 .map_box{
  margin-top: 50px;
  line-height: 0;
}

/* slide_box
-----------------------------------------------------------------*/
.slide_box {
  overflow: hidden;
  position: relative;
  margin-top: 80px;
}
.slide_img {
  display: flex;
  width: 200%;
  animation: slide 30s linear infinite;
}
.slide_img img {
  width: 50%;
  height: auto;
  flex-shrink: 0;
}
.slide_box .txt{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  text-align: center;
  display:  flex;
  align-items: center;
  justify-content: center;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* d_slide
-----------------------------------------------------------------*/
.d_slide {
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.slide_01 {
  display: flex;
  width: 200%;
  animation: slideLeft 73s linear infinite;
}

.slide_01 img {
  width: 100%;
  height: auto;
  flex-shrink: 0;
}

.slide_02 {
  display: flex;
  width: 200%;
  animation: slideRight 60s linear infinite;
}

.slide_02 img {
  width: 83.3%;
  height: auto;
  flex-shrink: 0;
}

.d_slide .catch{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  text-align: center;
  display:  flex;
  align-items: center;
  justify-content: center;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(-83.3%);
  }
  100% {
    transform: translateX(0);
  }
}


@media screen and (max-width: 640px) {
/* 640pxまでの幅の場合に適応される */


.bnr_box{
  max-width: 420px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.bnr_box li{
  width: 100%;
  margin-top: 24px;
}
.bnr_box li a{
  display: block;
}
.bnr_box li a img{
  width: 100%;
  height: auto;
}
.bnr_box li a:hover{
  opacity: 0.7;
}



/* #Sec01
-----------------------------------------------------------------*/
.top_page #Sec01{
  margin-top: 60px;
}
.top_page #Sec01 .inner{
  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px;
}
.top_page #Sec01 .mark{
  text-align: center;
}
.top_page #Sec01 .mark img{
}
.top_page #Sec01 .ttl{
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  margin-top: 50px;
}
.top_page #Sec01 .txt{
  text-align: center;
  margin: 40px auto 0;
  max-width: 480px;
}

.catch_txt{
  font-size: 1.2rem;
  margin-top: 24px;
}

/* #Sec02
-----------------------------------------------------------------*/
.top_page #Sec02{
  margin-top: 60px;

}
.top_page #Sec02 .inner{
  max-width: 920px;
  margin: 0 auto;
  padding: 0 16px;

}
.top_page #Sec02 ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top_page #Sec02 ul li{
  width: 30%;
  margin-top: 15px;
}
.top_page #Sec02 ul li .ttl{
  font-size: 1.2rem;
  margin-top: 5px;
}
.top_page #Sec02 ul li .ttl span{
  font-size: 1.2rem;
  display: inline-block;
}
.top_page #Sec02 ul li a{
  display: block;
  transition: 0.3s;
}
.top_page #Sec02 ul li a:hover{
  opacity: 0.7;
}
.top_page #Sec02 .link_btn{
  display: none;
}

/* #Sec03
-----------------------------------------------------------------*/
.top_page #Sec03{
  background-color: #EDEBE5;
  padding: 30px 0 10px;
  margin-top: 50px;
}
.top_page #Sec03 .inner{
  max-width: 920px;
  margin: 0 auto;
  padding: 0 16px;
}
.top_page #Sec03 .item_box{
  max-width: 420px;
  margin: 30px auto 60px;
  display: block;
  justify-content: space-between;
}
.top_page #Sec03 .item_box .item_img{
  width: 100%;
}
.top_page #Sec03 .item_box .item_img img{
  width: 100%;
  height: auto;
}
.top_page #Sec03 .item_box .item_txt{
  width: 100%;
}
.top_page #Sec03 .item_box .item_txt .ttl{
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: 10px;
}
.top_page #Sec03 .item_box .item_txt .ttl span{
  font-size: 1.4rem;
  display: block;
  font-family: "Lexend", sans-serif;
  color: #897750;
}
.top_page #Sec03 .item_box .item_txt .txt{
  margin-top: 20px;
}

/* #Sec04
-----------------------------------------------------------------*/
.top_page #Sec04{
  background: url(../images/top/bg_01_sp.png) no-repeat top center;
  background-size: 100% auto;
  padding-top: 40px;
}
.top_page #Sec04 .inner{
}
.top_page #Sec04 h2.ttl{
  max-width: 920px;
  margin: 0 auto;
  padding: 0 16px;
}

.top_page #Sec04 h3.ttl{
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  margin-top: 50px;
}
.top_page #Sec04 .txt{
  text-align: center;
  margin: 40px auto 0;
  max-width: 480px;
  padding: 0 32px;
}
.top_page #Sec04 .address{
  text-align: center;
  margin: 70px auto 0;
  max-width: 480px;
}
.top_page #Sec04 .map_box{
  margin-top: 50px;
  line-height: 0;
}
.top_page #Sec04 .map_box iframe{
  width: 100%;
  height: 140px;
}



/* slide_box
-----------------------------------------------------------------*/
.slide_box {
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.slide_img {
  display: flex;
  width: 200%;
  animation: slide 20s linear infinite;
}

.slide_img img {
  width: 100%;
  height: auto;
  flex-shrink: 0;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}


/* d_slide
-----------------------------------------------------------------*/
.d_slide {
  overflow: hidden;
  position: relative;
  margin-top: 30px;
}

.slide_01 {
  display: flex;
  width: 200%;
  animation: slideLeft 50s linear infinite;
}

.slide_01 img {
  width: 150%;
  height: auto;
  flex-shrink: 0;
}

.slide_02 {
  display: flex;
  width: 200%;
  animation: slideRight 42s linear infinite;
}

.slide_02 img {
  width: 125%;
  height: auto;
  flex-shrink: 0;
}

.d_slide .catch{
  display: none;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-150%);
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(-125%);
  }
  100% {
    transform: translateX(0);
  }
}

/* 640pxまでの幅の場合に適応される */
}


