/* ----------------------------------------
base
---------------------------------------- */

img{
  width: auto;
}

body{
 font-family: fot-tsukuaoldmin-pr6n, sans-serif;
 font-weight: 300;
 font-style: normal;
 overflow-x: hidden;
}

body::before{
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  opacity: 0;
  z-index: 90;
  pointer-events: none;
  transition: .3s opacity;
}

body.hamburger-open{
  overflow: hidden;
}  

body.hamburger-open::before{
  opacity: .7;
  pointer-events: all;
}

a:active,
a:visited{
  color: inherit;
}

.container{
  overflow-x: hidden;
}



/* ----------------------------------------
fadein
---------------------------------------- */

.js-fadein{
  opacity: 0;
  transition: 2s opacity;
}

/* .js-fadein._totop{
  transform: translateY(70px);
}

.js-fadein._toright{
  transform: translateX(-70px);
}

.js-fadein._tobottom{
  transform: translateY(-70px);
}

.js-fadein._toleft{
  transform: translateX(70px);
} */
  
.js-fadein.is-fadein{
  opacity: 1 !important;
  /* transform: translateY(0) !important; */
}


/* ----------------------------------------
utility
---------------------------------------- */

.u-inner{
 max-width: 1270px;
 margin: 0 auto;
 padding: 0 15px;
}

@media screen and (max-width: 1000px) {
  .u-pc{
    display: none !important;
  }
}

@media screen and (min-width: 1001px) {
  .u-tab{
    display: none !important;
  }
}

@media screen and (min-width: 601px) {
  .u-sp{
    display: none !important;
  }
}

.u-arrow{
 padding: 0 20px;
 background: url(../img/common/arrow.png) right center / 13px 12px no-repeat;
}

.u-verticalborder{
 position: relative;
}

.u-verticalborder::before{
 content: "";
 width: 1px;
 height: 150px;
 background: #fff;
 position: absolute;
 bottom: 0;
 left: 50%;
 z-index: 5;
 animation: 4s verticalborder infinite linear;
}

@media screen and (max-width: 600px) {
  .u-verticalborder::before{
    left: 95%;
  }
}

@keyframes verticalborder {
  0%{
   height: 112px;
   bottom: 0;
  }
  33%{
   height: 0;
   bottom: 0;
  }
  66%{
   height: 0;
   bottom: 112px;
  }
  100%{
   height: 112px;
   bottom: 0;
  }
}



/* ----------------------------------------
module
---------------------------------------- */

/* header */
.m-header{
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 1px 0 1px 20px;
 border-bottom: 1px solid #DBDBDB;
 background: #fff;
 position: sticky;
 top: 0;
 left: 0;
 z-index: 99;
}

.m-header__logo{
 width: 405px;
}

.m-hedaer-nav{
 display: flex;
 align-items: center;
 padding: 14px 16px;
}

.m-hedaer-nav ul{
 display: flex;
}

.top-header .m-hedaer-nav ul{
 color: #fff;
}

.hamburger-open .top-header .m-hedaer-nav ul{
  color: #000;
}

.m-hedaer-nav li{
 padding: 0 20px;
 position: relative;
 line-height: 38px;
}

.m-hedaer-nav li ul{
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: auto;
  white-space: nowrap;
  background: #fff;
  padding: 10px 0;
}

.top-header .m-hedaer-nav li ul{
  background: none;
}

.top-header .m-hedaer-nav li ul li{
  position: relative;
}

.top-header .m-hedaer-nav li ul li::before{
  content: "−";
  position: absolute;
  top: 0;
  left: 0;
  line-height: 22px;
}

.m-hedaer-nav li:hover ul{
  display: block;
}

.m-hedaer-nav li li a{
  line-height: 1.7;
  text-align: left;
}

.m-hedaer-nav a{
 display: block;
 text-align: center;
}

.m-hedaer-nav a:hover{
  color: #3c3c3c;
}

.top-header .m-hedaer-nav a:hover{
  color: #fff;
}

.m-hedaer-nav .sp{
  display: none;
}

.m-hedaer-nav__mypage a{
 width: 140px;
 background: #E5B24B;
 line-height: 38px;
}

@media screen and (max-width: 1100px) {
  .m-header{
    padding: 0 0 0 10px;
  }

  .m-header__logo{
    width: 220px;
  }

  .m-hedaer-nav{
    padding: 10px 10px 10px 0;
  }

  .m-hedaer-nav li{
    padding: 0 8px;
    font-size: 13px;
  }

  .m-hedaer-nav__mypage a{
    width: 110px;
   }
}

@media screen and (max-width: 700px) {
  .m-header{
    padding: 13px 0 13px 5px;
  }

  .m-header__logo{
    width: 240px;
  }

  .m-hedaer-nav{
    display: block;
    position: fixed;
    top: 50px;
    right: -240px;
    bottom: 0;
    width: 240px;
    padding: 100px 20px;
    overflow-y: auto;
    background: #fff;
    transition: .3s right;
  }

  .hamburger-open .m-hedaer-nav{
    right: 0;
  }

  .m-hedaer-nav ul{
    display: block;
  }

  .m-hedaer-nav li{
    margin: 0 !important;
    padding: 0;
  }

  .m-hedaer-nav a{
    text-align: left;
  }

  .m-hedaer-nav li ul{
    display: block;
    position: static;
    white-space: normal;
    padding: 0;
  }

  .m-hedaer-nav li li a{
    padding: 0;
    line-height: 38px;
    text-align: left;
  }

  .m-hedaer-nav p{
    display: none;
  }

  .m-hedaer-nav .sp{
    display: block;
  }

  .m-hedaer-nav__mypage a{
    margin: 15px auto 0;
    text-align: center;
  }

  .top-header .m-hedaer-nav li ul li::before{
    display: none;
  }
}

/* hamburger */
@media screen and (min-width: 701px) {
  .m-hamburger{
    display: none !important;
  }
}

.m-hamburger{
  width: 50px;
  height: 50px;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.m-hamburger__line{
  height: 1px;
  background: #000;
  position: absolute;
  right: 10px;
  width: 30px;
  transition: .3s;
}

.m-hamburger__line._01{
  top: 18px;
}

.m-hamburger__line._02{
  top: 25px;
}

.m-hamburger__line._03{
  top: 32px;
  width: 20px;
}

.hamburger-open .m-hamburger__line._01{
  top: 25px;
  transform: rotate(45deg);
}

.hamburger-open .m-hamburger__line._02{
  top: 25px;
  transform: rotate(-45deg);
}

.hamburger-open .m-hamburger__line._03{
  width: 0;
  opacity: 0;
}

/* footer */
.m-footer{
 border-top: 1px solid #DBDBDB;
 background: #F8F8F4;
 padding: 70px 0 0;
}

.m-footer__flex{
 display: flex;
 justify-content: space-between;
 padding: 0 0 56px;
}

.m-footer__head{
 flex-shrink: 0;
 width: 350px;
 font-size: 15px;
 padding: 5px 0 0;
}

.m-footer__logo{
 margin: 0 0 20px;
}

.m-footer__head p{
 margin: 0 0 5px;
}

.m-footer__body{
 flex-grow: 1;
 margin: 0 0 0 11.6%;
}

.m-footer__list{
 display: flex;
 flex-wrap: wrap;
 margin: 0 0 36px;
}

.m-footer__list li:not(:last-child){
 margin: 0 40px 0 0;
}

.m-footer__list._small{
 font-size: 13px;
 margin: 0 0 78px;
}

.m-footer__list a:hover{
  color: #3c3c3c;
}

.m-footer__table{
 width: 100%;
 max-width: 100%;
}

.m-footer__table th{
 width: 115px;
 font-size: 15px;
}

.m-footer__table td{
 font-size: 12px;
 line-height: 20px;
 padding: 0 0 28px;
 font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.m-footer__copyright{
 text-align: center;
 border-top: 1px solid #DBDBDB;
 font-size: 13px;
 color: #888888;
 padding: 18px 0;
}

@media screen and (max-width: 1000px) {
  .m-footer__flex{
    display: block;
  }

  .m-footer__head{
    width: auto;
    margin: 0 0 40px;
  }

  .m-footer__logo{
    max-width: 350px;
  }

  .m-footer__body{
    margin: 0;
  }

  .m-footer__list._small{
    margin: 0 0 40px;
  }
}

@media screen and (max-width: 600px) {
  .m-footer__list{
    display: block;
  }

  .m-footer__table th{
    width: 50px;
  }
}

/* cart-banner */
a.m-cart-banner{
 display: flex;
 justify-content: center;
 align-items: center;
 height: 46px;
 line-height: 1.3;
 position: fixed;
 bottom: 0;
 left: 0;
 width: 100%;
 z-index: 10;
 background: #000;
 color: #E6B340;
 font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
 font-weight: bold;
 text-align: center;
}

.m-cart-banner:hover{
  opacity: .7;
}

.m-cart-banner::before{
 content: "";
 width: 23px;
 height: 22px;
 background: url(../img/common/icon-cart.png) center / contain no-repeat;
 margin: 0 8px 0 0;
}

.m-cart-banner._left{
 width: 50%;
}

.m-cart-banner._right{
 left: 50%;
 width: 50%;
}

@media screen and (max-width: 600px) {
  .m-cart-banner._left{
    font-size: 14px;
  }
  .m-cart-banner._right{
    font-size: 14px;
  }
}

/* more */
.m-more{
 display: block;
 width: 140px;
 padding: 0 10px 16px;
 line-height: 1;
 background: url(../img/common/arrow.png) right 20px top 3px / 13px 12px no-repeat;
 position: relative;
}

.m-more::before{
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 1px;
  background: #707070;
  width: 100%;
  transition: .3s width;
  text-decoration: none !important;
}

.m-more:hover::before{
  width: 0;
}

.m-more._center{
 margin: 0 auto;
}

/* title */
.m-title-A{
 font-size: 18px;
 display: flex;
 align-items: center;
}

.m-title-A::after{
 content: "";
 width: 62px;
 height: 1px;
 background: #DBDBDB;
 margin: 0 0 0 11px;
}

/* page */
.m-page-inner{
  max-width: 930px;
  margin: 0 auto;
  padding: 100px 0 120px;
}

.m-page-title{
  font-size: 36px;
  text-align: center;
}

.m-page-subtitle{
  font-size: 24px;
  margin: 55px 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.m-page-subtitle::before,
.m-page-subtitle::after{
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background: #E5B24B;
}

.m-page-subtitle::before{
  margin: 0 10px 0 0;
}

.m-page-subtitle::after{
  margin: 0 0 0 10px;
}

.m-page-inner table{
  margin: 0 0 ;
}

.m-page-inner th{
  padding-right: 25px;
}

.m-page-inner h3{
  font-size: 24px;
  padding: 50px 0 10px;
}

.m-page-subtitle + h3{
  padding-top: 0;
}

.m-page-inner p{
  line-height: 28px;
}

.m-page-inner a{
  color: #B70000;
  text-decoration: underline;
}

.m-page-inner a:hover{
  text-decoration: none;
}

.m-page-inner ol{
  list-style: decimal;
  padding: 5px 0 0 1em;
}

.m-page-inner ol li + li{
  margin: 5px 0 0;
}

@media screen and (max-width: 600px) {
  .m-page-title{
    font-size: 24px;
  }
}



/* ----------------------------------------
top-header
---------------------------------------- */

.top-header{
 display: flex;
 justify-content: space-between;
 align-items: flex-start;
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 z-index: 99;
}

.top-header__logo{
 width: 149px;
}

@media screen and (max-width: 600px) {
  .top-header__logo{
    width: 120px;
  }
}



/* ----------------------------------------
top-mv
---------------------------------------- */

.top-mv{
 height: 100vh;
 position: relative;
}

.top-mv__slide{
 position: absolute;
 top: 0;
 right: 0;
 bottom: 0;
 left: 0;
 background-position: center;
 background-size: cover;
}

.top-mv__copy{
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
  z-index: 3;
}

a.top-mv__link{
 position: absolute;
 bottom: 26px;
 left: 36px;
 display: block;
 color: #fff;
 border: 1px solid #fff;
 padding: 6px 21px;
 transition: .3s color, .3s background;
}

a.top-mv__link:hover{
 color: #000;
 background: #fff;
}

@media screen and (max-width: 1000px) {
  .top-header__logo{
    width: 100px;
  }
}

@media screen and (max-width: 600px) {
  .top-mv__copy{
    width: 50%;
    right: auto;
    left: 50%;
    transform: translate(-50%,-50%);
  }

  .top-mv__link{
    bottom: 15px;
    left: 15px;
    font-size: 15px;
  }
}


/* ----------------------------------------
top-thought
---------------------------------------- */

.top-thought{
 padding: 118px 0 100px;
}

.top-thought__icon{
 width: 158px;
 margin: 0 auto 40px;
}

.top-thought__title{
 text-align: center;
 font-size: 36px;
 margin: 0 0 10px;
}

.top-thought__copy{
 text-align: center;
 font-size: 24px;
 margin: 0 0 46px;
}

.top-thought__text{
 text-align: center;
 line-height: 35px;
 margin: 0 0 54px;
}

@media screen and (max-width: 600px) {
  .top-thought{
    padding: 80px 0;
  }

  .top-thought__title{
    font-size: 24px;
  }

  .top-thought__copy{
    font-size: 18px;
  }
}



/* ----------------------------------------
top-select
---------------------------------------- */

.top-select{
 background: #F8F8F4;
 padding: 92px 0 100px;
}

.top-select__title{
 text-align: center;
 font-size: 36px;
 margin: 0 0 40px;
}

.top-select__item{
 padding: 0 25px;
}

.top-select__image{
 margin: 0 0 35px;
}

.top-select__itemtitle{
 text-align: center;
 font-size: 24px;
 margin: 0 0 20px;
}

@media screen and (max-width: 600px) {
  .top-select{
    padding: 80px 0;
  }

  .top-select__title{
    font-size: 24px;
  }

  .top-select__item:not(:last-child){
    margin: 0 0 60px;
  }

  .top-select__image{
    margin: 0 0 25px;
  }

  .top-select__itemtitle{
    font-size: 20px;
  }
}



/* ----------------------------------------
top-project
---------------------------------------- */

.top-project{
 padding: 124px 0 0;
}

.top-project__inner{
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.top-project__body{
 width: 42%;
 padding: 0 0 0 8.3%;
}

.top-project__video-wrap{
 width: 52%;
}

.top-project__video{
 /* padding-top: 56.25%; */
 padding-top: 65%;
 background: #aaa;
}

.top-project__title{
 font-size: 24px;
 margin: 35px 0 0;
}

.top-project__subtitle{
 font-size: 36px;
 margin: 0 0 40px;
}

.top-project__text{
 font-size: 14px;
 line-height: 31px;
}

@media screen and (max-width: 1000px) {
  .top-project__inner{
    display: block;
    padding: 0 15px;
  }

  .top-project__body{
    width: auto;
    padding: 0;
    margin: 0 0 40px;
  }

  .top-project__video-wrap{
    width: auto;
    margin: 0 auto;
  }
}

@media screen and (max-width: 600px) {
  .top-project{
    padding: 80px 0 0;
  }

  .top-project__title{
    font-size: 16px;
  }

  .top-project__subtitle{
    font-size: 28px;
  }
}



/* ----------------------------------------
top-connection
---------------------------------------- */

.top-connection{
 padding: 150px 0 125px;
}

.top-connection__title{
 text-align: center;
 font-size: 36px;
 margin: 0 0 30px;
}

.top-connection__list{
 display: flex;
 justify-content: center;
 flex-wrap: wrap;
}

.top-connection__item{
 width: 264px;
 margin: 0 20px;
}

@media screen and (max-width: 600px) {
  .top-connection{
    padding: 100px 0;
  }

  .top-connection__title{
    font-size: 24px;
  }

  .top-connection__list{
    display: block;
  }

  .top-connection__item{
    margin: 0 auto;
  }

  .top-connection__item:not(:last-child){
    margin-bottom: 15px;
  }
}



/* ----------------------------------------
thought
---------------------------------------- */

.thought-bg{
  background: url(../img/thought/mv.jpg) center / cover;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  z-index: -1;
}

.thought-mv{
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.thought-mv__title{
 text-align: center;
 font-size: 36px;
}

.thought-target{
 background: rgba(0,0,0,.6);
 padding: 155px 0 0;
 color: #fff;
}

.thought-target__title{
 text-align: center;
 font-size: 36px;
 margin: 0 0 20px;
}

.thought-target__subtitle{
 text-align: center;
 font-size: 24px;
 line-height: 32px;
 margin: 0 0 45px;
}

.thought-target__text{
 max-width: 620px;
 margin: 0 auto;
 line-height: 28px;
}

.thought-emaki{
 padding: 143px 0 0;
 background: rgba(0,0,0,.6);
 color: #fff;
}

.thought-emaki__inner{
 position: relative;
}

.thought-emaki__image{
 position: absolute;
 top: 0;
 right: -8.6%;
 width: 52.8%;
}

.thought-emaki__body{
 width: 51.5%;
 padding: 80px 0 0;
}

.thought-emaki__title{
 font-size: 36px;
 line-height: 45px;
 margin: 0 0 30px;
}

.thought-emaki__text{
 line-height: 28px;
}

.thought-support{
 padding: 244px 0 220px;
 background: rgba(0,0,0,.6);
 color: #fff;
}

.thought-support__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.thought-support__image{
 width: 66%;
}

.thought-support__body{
 width: 30%;
}

.thought-support__title{
 font-size: 36px;
 margin: 0 0 46px;
}

.thought-support__text{
 line-height: 28px;
}

@media screen and (max-width: 600px) {
  .thought-mv{
    padding: 60px 0 0;
  }

  .thought-mv__title{
    font-size: 24px;
  }

  .thought-target__title{
    font-size: 24px;
  }

  .thought-target__subtitle{
    font-size: 18px;
  }

  .thought-emaki__image{
    position: static;
    width: auto;
  }

  .thought-emaki__body{
    width: auto;
    padding: 40px 0 0;
  }

  .thought-emaki__title{
    font-size: 20px;
    line-height: 1.7;
  }

  .thought-support{
    padding: 100px 0;
  }

  .thought-support__inner{
    display: block;
  }

  .thought-support__image{
    width: auto;
    margin: 0 0 30px;
  }

  .thought-support__body{
    position: static;
    transform: none;
    width: auto;
    padding: 0;
  }

  .thought-support__title{
    font-size: 24px;
    margin: 0 0 20px;
  }
}



/* ----------------------------------------
lp
---------------------------------------- */

.utsuwa-mv{
 height: 100vh;
 background: url(../img/utsuwa/mv.jpg) center / cover;
 display: flex;
 justify-content: center;
 align-items: center;
 flex-direction: column;
}

.utsuwa-mv__text{
 text-align: center;
 color: #fff;
 font-size: 24px;
 line-height: 32px;
 margin: 0 0 20px;
}

.utsuwa-mv__logo{
 width: 253px;
 padding: 0 0 5%;
}

.utsuwa-intro{
 padding: 130px 0 300px;
}

.utsuwa-intro__flex{
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.utsuwa-intro__image{
 width: 55.5%;
}

.utsuwa-intro__body{
 width: 38.5%;
}

.utsuwa-intro__title{
 font-size: 24px;
 line-height: 32px;
 margin: 0 0 34px;
}

.utsuwa-intro__text{
 line-height: 28px;
}

.utsuwa-temple{
 padding: 117px 0 245px;
}

.utsuwa-temple:nth-child(odd){
 background: #F8F8F4;
}

.utsuwa-temple__inner{
  position: relative;
}

.utsuwa-temple__image{
 position: absolute;
 top: -234px;
 left: 520px;
 width: 900px;
}

.utsuwa-temple:nth-child(even) .utsuwa-temple__image{
 left: auto;
 right: 520px;
}

.utsuwa-temple__body{
 width: 400px;
}

.utsuwa-temple:nth-child(even) .utsuwa-temple__body{
 margin-left: auto;
}

.utsuwa-temple__title{
 font-size: 20px;
 margin: 0 0 10px;
}

.utsuwa-temple__title span{
 font-size: 1.3em;
 margin: 0 0 0 .7em;
}

.utsuwa-temple__flex{
 display: flex;
 align-items: center;
 margin: 0 0 20px;
}

.utsuwa-temple__label{
 line-height: 20px;
 margin: 0 20px 0 0;
}

.utsuwa-temple__name{
 font-size: 70px;
 margin: 0 15px 0 0;
}

.utsuwa-temple__name span:first-child{
 position: relative;
 top: -10px;
}

.utsuwa-temple__name span:last-child{
 position: relative;
 top: 10px;
}

.utsuwa-temple__ruby{
 font-size: 13px;
 letter-spacing: 0.2em;
}

.utsuwa-temple__pic{
 margin: 0 0 20px;
}

.utsuwa-temple__text{
 line-height: 2;
}

.utsuwa-potter{
 padding: 0 0 130px;
}

.utsuwa-potter__flex{
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-direction: row-reverse;
 margin: 0 0 125px;
}

.utsuwa-potter__image{
 width: 55%;
}

.utsuwa-potter__body{
 width: 39%;
 padding: 0 0 0 5%;
}

.utsuwa-potter__title{
 font-size: 24px;
 margin: 0 0 6px;
}

.utsuwa-potter__name{
 font-size: 36px;
 margin: 0 0 20px;
}

.utsuwa-potter__status{
 font-size: 20px;
 line-height: 30px;
 margin: 0 0 20px;
}

.utsuwa-potter__text{
 line-height: 28px;
}

a.utsuwa-potter__button{
 display: flex;
 justify-content: center;
 align-items: center;
 height: 82px;
 max-width: 670px;
 margin: 0 auto 120px;
 background: #000;
 color: #E6B340;
 font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
 font-weight: bold;
}

a.utsuwa-potter__button::before{
 content: "";
 width: 23px;
 height: 22px; 
 margin: 0 8px 0 0;
 background: url(../img/common/icon-cart.png) center / contain no-repeat;
}

.utsuwa-potter__plan{
 text-align: center;
 font-size: 24px;
}

@media screen and (max-width: 1400px) {
  .utsuwa-temple__image{
    left: 460px;
  }
  
  .utsuwa-temple:nth-child(odd) .utsuwa-temple__image{
    right: 460px;
  }   
}

@media screen and (max-width: 1000px) {
  .utsuwa-intro{
    padding: 130px 0 100px;
  }

  .utsuwa-temple{
    padding: 100px 0;
  }

  .utsuwa-temple__image{
    width: auto;
    position: static;
    margin: 0 0 30px;
  }

  .utsuwa-temple__body{
    width: auto;
  }

  .utsuwa-potter{
    padding: 100px 0;
  }
}

@media screen and (max-width: 600px) {
  .utsuwa-mv__text{
    font-size: 16px;
  }

  .utsuwa-mv__logo{
    width: 200px;
  }

  .utsuwa-intro__flex{
    display: block;
  }

  .utsuwa-intro__image{
    width: auto;
    margin: 0 0 40px;
  }

  .utsuwa-intro__body{
    width: auto;
  }

  .utsuwa-intro__title{
    font-size: 20px;
  }

  .utsuwa-temple__title{
    font-size: 18px;
  }

  .utsuwa-temple__label{
    margin: 0 10px 0 0;
    font-size: 15px;
  }

  .utsuwa-temple__name{
    font-size: 45px;
  }

  .utsuwa-potter__flex{
    display: block;
  }

  .utsuwa-potter__image{
    width: auto;
    margin: 0 0 30px;
  }

  .utsuwa-potter__body{
    padding: 0;
    width: auto;
  }

  .utsuwa-potter__title{
    font-size: 18px;
  }

  .utsuwa-potter__name{
    font-size: 24px;
  }

  .utsuwa-potter__status{
    font-size: 16px;
  }

  .utsuwa-potter__plan{
    font-size: 18px;
  }
}



/* ----------------------------------------
emaki
---------------------------------------- */

.emaki-mv{
 height: 780px;
 background: url(../img/emaki/mv.jpg) center / cover;
 display: flex;
 justify-content: center;
 align-items: center;
 flex-direction: column;
 color: #fff;
}

.emaki-mv__read{
 font-size: 24px;
 text-align: center;
 margin: 0 0 20px;
}

.emaki-mv__title{
 font-size: 36px;
 line-height: 45px;
 text-align: center;
 margin: 0 0 30px;
}

.emaki-mv__text{
 max-width: 520px;
 padding: 0 15px 50px;
}

.emaki-map{
 padding: 136px 0 0;
}

.emaki-map__flex{
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.emaki-map__image{
 width: 55.5%;
}

.emaki-map__body{
 width: 40%;
}

.emaki-map__text{
 line-height: 42px;
}

.emaki-map__text span{
 font-size: 13px;
}

.emaki-sec2{
 padding: 124px 0 0;
}

.emaki-sec2__flex{
 display: flex;
 margin: 0 0 48px;
}

.emaki-sec2__image{
 width: 50%;
}

.emaki-sec2__text{
 text-align: center;
 line-height: 28px;
}

.emaki-sec3{
 padding: 170px 0 0;
}

.emaki-sec3__image{
 max-width: 992px;
 margin: 0 auto 3px;
}

.emaki-sec3__text{
 text-align: center;
 line-height: 28px;
}

.emaki-sec4{
 padding: 144px 0 130px;
}

.emaki-sec4__title{
 font-size: 36px;
 text-align: center;
 margin: 0 0 30px;
}

.emaki-sec4__text{
 line-height: 28px;
 text-align: center;
 margin: 0 0 53px;
}

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

.emaki-sec4__image{
 margin: 0 0 130px;
 overflow: hidden;
 height: 260px;
 display: flex;
}

.emaki-sec4__image-item{
  width: 3334px;
  height: 100%;
  flex-shrink: 0;
  animation: scrollLeft 50s infinite linear;
}

.emaki-sec4__image-item img{
  width: 100%;
  height: 100%;
  max-width: none;
}

.emaki-sec4-set{
 border: 5px solid #E5B24B;
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-direction: row-reverse;
 max-width: 1148px;
 padding: 22px 5% 22px 6.8%;
 margin: 0 auto 112px;
}

.emaki-sec4-set__image{
 width: 37%;
}

.emaki-sec4-set__body{
 width: 60%;
}

.emaki-sec4-set__title{
 font-size: 30px;
 margin: 0 0 20px;
}

.emaki-sec4-set__text{
 line-height: 28px;
}

.emaki-sec4__list{
 display: flex;
 justify-content: space-between;
 max-width: 977px;
 margin: 0 auto;
}

.emaki-sec4__item{
 width: 47%;
}

a.emaki-sec4__button{
 background: #000;
 color: #E5B24B;
 display: flex;
 justify-content: center;
 align-items: center;
 font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
 font-weight: bold;
 padding: 25px 0;
}

.emaki-sec4__button::before{
 content: "";
 width: 23px;
 height: 22px; 
 margin: 0 8px 0 0;
 background: url(../img/common/icon-cart.png) center / contain no-repeat;
}

@media screen and (max-width: 1000px) {
  .emaki-map__flex{
    display: block;
    max-width: 550px;
    margin: 0 auto;
  }

  .emaki-map__image{
    width: auto;
    margin: 0 0 40px;
  }

  .emaki-map__body{
    width: auto;
  }
}

@media screen and (max-width: 600px) {
  .emaki-mv__read{
    font-size: 16px;
  }

  .emaki-mv__title{
    font-size: 26px;
    line-height: 35px;
  }

  .emaki-map{
    padding: 100px 0 0;
  }

  .emaki-sec2{
    padding: 100px 0 0;
  }

  .emaki-sec2__flex{
    display: block;
  }  

  .emaki-sec2__image{
    width: auto;
  }

  .emaki-sec2__image:not(:last-child){
    margin: 0 0 20px;
  }

  .emaki-sec3{
    padding: 100px 0 0;
  }

  .emaki-sec4{
    padding: 100px 0;
  }

  .emaki-sec4__title{
    font-size: 22px;
  }

  .emaki-sec4__image{
    height: 220px;
  }

  .emaki-sec4__image-item{
    width: 2822px;
  }  

  .emaki-sec4-set{
    display: block;
  }

  .emaki-sec4-set__image{
    width: auto;
    margin: 0 0 20px;
  }

  .emaki-sec4-set__body{
    width: auto;
  }

  .emaki-sec4-set__title{
    font-size: 20px;
  }

  .emaki-sec4__list{
    display: block;
  }

  .emaki-sec4__item{
    width: auto;
  }

  .emaki-sec4__item:not(:last-child){
    margin: 0 0 15px;
  }

  .emaki-sec4__button{
    font-size: 15px;
  }
}



/* ----------------------------------------
terms
---------------------------------------- */

.terms__flex{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.terms__image{
  width: 35%;
  border: 1px solid #ccc;
}

@media screen and (max-width: 600px) {
 .terms__flex{
   display: block;
 }

 .terms__image{
   width: auto;
   margin: 20px 10% 0;
 }
}



/* ----------------------------------------
contact
---------------------------------------- */

.contact__text{
  margin: 80px 0 60px;
  text-align: center;
  line-height: 28px;
}

.contact .contact__table{
  width: 100%;
  margin: 0 0 20px;
}

.contact__table th{
  width: 230px;
  position: relative;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  vertical-align: top;
  padding-top: 13px;
}

.contact__table th::after{
  position: absolute;
  top: 12px;
  right: 25px;
  font-size: 13px;
  width: 55px;
  line-height: 23px;
  text-align: center;
}

.contact__table th.required::after{
  content: "必須";
  color: #B50710;
  border: 1px solid #B50710;
}

.contact__table th.any::after{
  content: "任意";
  color: #707070;
  border: 1px solid #707070;
}

.contact__table td{
  padding-bottom: 20px;
}

.contact__table input,
.contact__table textarea{
  background: #F0F0F0;
  height: 50px;
  width: 100%;
  border-radius: 5px;
}

.contact__table .tel input{
  width: 30%;
  max-width: 170px;
}

.contact__table .tel span{
  margin: 0 5px;
}

.contact__policy{
  margin: 0 0 80px;
}

.contact__policy > p{
  text-align: center;
  font-size: 15px;
  margin: 0 0 20px;
}

.contact__policy > p > a{
  text-decoration: underline;
}

.contact__policy > p > a:hover{
  text-decoration: none;
}

.contact__policy__check{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 70px;
}

.contact__policy__check input{
  display: none;
}

.contact__policy__check .trigger{
  width: 24px;
  height: 24px;
  border: 3px solid #707070;
  position: relative;
  cursor: pointer;
  margin: 0 5px 0 0;
}

.contact__policy__check input:checked + .trigger::before{
  content: "";
  width: 8px;
  height: 12px;
  border-right: 3px solid #707070;
  border-bottom: 3px solid #707070;
  transform: rotate(45deg);
  position: absolute;
  top: 0px;
  left: 3px;
}

.contact__submit{
  width: 240px;
  height: 60px;
  background: #000;
  border: 4px solid #000;
  color: #fff;
  text-align: center;
  display: block;
  margin: 0 auto;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  transition: .3s color, .3s background;
  cursor: pointer;
}

.contact__submit:hover{
  background: #fff;
  color: #000;
}

@media screen and (max-width: 600px) {
  .contact__table th,
  .contact__table td{
    display: block;
  }

  .contact__table th{
    width: auto;
    padding: 0 0 10px;
  }

  .contact__table th::after{
    top: 0;
    right: 0;
  }

  .contact__table .tel{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}