/*------------------------------*/
/*base
/*------------------------------*/
html{
  font-size: 62.5%;
}
body {
  font-size: 1.4rem;
  font-family: "Hannari", "ヒラギノ明朝", "游明朝体", "YuMincho", "游明朝", serif;
  font-weight: 100;
  font-style: normal;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.05rem;
  font-feature-settings: "palt";
  background-image: url(../images/bg.jpg);
  background-size: contain;
  
  transition: 3s;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}
/* 画面の切り替わりフェード */
.fade{
  animation: fadein 3s forwards;
}
@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}
/* 画面の切り替わりフェード */
ul{
  list-style: none;
}
li{
  list-style: none;
}
.section-wrapper{
  padding: 60px 0 60px 0;
  overflow: hidden;
}
.section-inner{
  max-width: 960px;
  margin: 0 auto;
}
.section-title{
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 100;
}
.section-subtitle{
  margin-bottom: 30px;
}
img{
  width: 100%;
  vertical-align: bottom;
}
a{
  text-decoration: none;
  color: inherit;
}
.font-mincho{
  font-family: "游明朝体", "YuMincho", "游明朝", serif;
}
.font-gothic{
  font-family: "游ゴシック", "YuGothic", sans-serif;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.text-smaller{
  font-size: 1.2rem;
}
.text-small{
  font-size: 1rem;
}
.text-bold{
  font-weight: bold;
}
.underline{
  text-decoration: underline;
}
.under {
  background: linear-gradient(transparent 50%, #fff 50%);
}
.flex-rr{
  display: flex;
  align-items: flex-start;
}
.flex-rc{
  display: flex;
  align-content: space-around;
  justify-content: space-between;
}
.flex-cc{
  display: flex;
  flex-direction: column;
}
.flex-cr{
  display: flex;
  flex-direction: column;
}
/* imageレスポンシブ */
.pc { display: block !important; }
.tb { display: none !important; }
.sp { display: none !important; }

.burger-btn{
  display: none;
}
@font-face { 
  /* ① ここにfont-familyで指定したい名前を書く*/
  font-family: "stangith"; 
  /* フォントが置かれているパスを書く */ 
  src: url("../font/stangith.ttf") format("truetype") }

/* --------------------------- */
/* header
/* --------------------------- */
.logo{
  width: 200px;
  height: auto;
}
header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  width: 100%;
  position: fixed;
  z-index: 11;
  box-sizing: border-box;
  transition: .4s;
  background-color: rgba(255, 255, 255, 0);
  display: none;
}
header.scroll {
	/* background: rgba( 255, 255, 255, 0.30 );
  box-shadow: 0 8px 15px 0 rgba(120, 120, 121, 0.1); */
  /* backdrop-filter: blur( 20.0px );
  -webkit-backdrop-filter: blur( 20.0px );
  border: 1px solid rgba( 255, 255, 255, 0.03 ); */
	padding: 20px 80px;
  z-index: 10;
}
/* .site-title a{
  color: #333;
} */
/* ハンバーガーメニューが開いたときのスタイル */
      .header-nav{
        display: none;
        position: fixed;
        top: 0;
        left: 70%;
        width: 30%;
        height: 100vh;
        background: rgba( 255, 255, 255, 0.8 );
        box-shadow: 0 8px 20px 0 rgba(120, 120, 121, 0.3);
        backdrop-filter: blur( 20.0px );
        -webkit-backdrop-filter: blur( 20.0px );
        border: 1px solid rgba( 255, 255, 255, 0.03 );
        z-index: 20;
      }
      .nav-list{
        display: block;
        position: absolute;
        top: 10%;
        left: 20%;
        text-align: left;
        color: #333;
      }
      .nav-item{
        margin: 0 0 20px;
        font-size: 1.6rem;
      }
      .nav-item a{
        color: #333;
        }
        .nav-item a:hover{
          color: #333;
          }
      body.noscroll{
        overflow: hidden;
      }
      /* ハンバーガーボタン */
      .burger-btn{
        display: block;
        width: 20px;
        height: 24px;
        position: relative;
        margin-top: 15px;
      }
      .bar{
        display: block;
        width: 100%;
        height: 2px;
        border-radius: 1px;
        background-color: #333;
        position: absolute;
        z-index: 30; /*メニューの下に隠れないようにz-indexを指定する*/
      }
      .bar_top{
        top: 0;
        left: 40%;
        width: 60%;
      }
      .bar_middle{
        top: 11px;
      }
      .bar_bottom{
        bottom: 0;
      }
      /* ハンバーガーボタンをクリックした時の見た目 */
      .burger-btn.cross .bar_top{
        transform: rotate(45deg);
        top: 11px;
        transition: .3s;
        width: 100%;
        left: 0;
        background-color: #333;
      }
      .burger-btn.cross .bar_middle{
        opacity: 0;
        transition: .3s;
      }
      .burger-btn.cross .bar_bottom{
        transform: rotate(-45deg);
        bottom: 11px;
        transform: .3s;
        background-color: #333;
      }

/* --------------------------- */
/* floating banner
/* --------------------------- */
.floating-banner {
  position: fixed;/* 追従 */
  z-index: 99999;/* 他の要素の下に隠れないように */
  bottom: 0;/* バナーの上下の位置 */
  right: 0;/* バナーの左右の位置 */
}
.banner-line{
  width: 50px;
}
.banner-line:hover {
  opacity: .8;/* ホバーで少し透過 */
}
.banner-line_sp{
  display: none;
}
.pc-float {
  width: 50px;/* バナーの横幅を指定 */
}
.pc-float:hover {
  opacity: .8;/* ホバーで少し透過 */
}
.pc-float01 {
  display: none;
}
.pc-float01:hover {
  opacity: .8;/* ホバーで少し透過 */
}
.sp-float {
  display: none;/* PCではスマホ用のバナーは非表示に */
}
.sp-float01 {
  display: none;/* PCではスマホ用のバナーは非表示に */
}
@media screen and (max-width: 767px) {/* スマホ用のブレイクポイントを指定 */
  .pc-float{
    display: none;
  }
  .pc-float01{
    display: none;
  }
  .banner-line{
    display: none;
  }
  .banner-line_sp{
    display: inline-block;/* 消していたスマホ用のバナーを表示させる */
    height: 57px;
    width: 50vw;
  }
  .sp-float {
      display: inline-block;/* 消していたスマホ用のバナーを表示させる */
      height: 57px;
      width: 50vw;/* スマホの画面幅いっぱいにバナーを表示 */
  }
  .sp-float01 {
    display: none
}
@media screen and (max-width: 375px) {/* スマホ用のブレイクポイントを指定 */
  .pc-float{
    display: none;
  }
  .banner-line{
    display: none;
  }
  .banner-line_sp{
    display: inline-block;/* 消していたスマホ用のバナーを表示させる */
    height: 50px;
    width: 50vw;
  }
  .sp-float {
      display: inline-block;/* 消していたスマホ用のバナーを表示させる */
      height: 50px;
      width: 50vw;/* スマホの画面幅いっぱいにバナーを表示 */
  }
  .sp-float01 {
    display: none
}}}
/* --------------------------- */
/* ボタンデザイン
/* --------------------------- */
/*ボタン金*/
.btn-wrapper{
  margin-bottom: 80px;
  padding-top: 10px;
}
a.btn_1 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	position: relative;
	max-width: 300px;
	margin: auto;
	padding: .5rem 3rem;
	font-weight: light;
  letter-spacing: .2em;
	color: #fff;
	background: #AA996D;
	transition: 0.3s ease-in-out;
  margin-bottom: 10px;
}
a.btn_1:hover {
	background: #776a4b;
	color: #fff;
}
/* ボタンここまで */
/*ボタン白透明*/
.btn-wrapper{
  margin-bottom: 80px;
  padding-top: 10px;
}
a.btn_2 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	position: relative;
	max-width: 300px;
	margin: auto;
	padding: .5rem 3rem;
	font-weight: light;
  letter-spacing: .3em;
	color: #1f1f1f;
	background: #ffffffa8;
	transition: 0.3s ease-in-out;
  margin-bottom: 10px;
}
a.btn_2:hover {
	background: #ffffff;
	color: #1f1f1f;
}
/*ボタン赤*/
.btn-wrapper{
  margin-bottom: 50px;
  padding-top: 10px;
}
a.btn_17 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	position: relative;
	width: 300px;
	margin: auto;
	padding: .5rem 2rem;
	font-weight: light;
  letter-spacing: .4em;
	color: #fff;
	background: #CD3E2B;
	transition: 0.3s ease-in-out;
  margin-bottom: 10px;
}
a.btn_17:hover {
	background: #eb5744;
	color: #fff;
}
.send-form{
  font-size: 1.1rem;
}
/* --------------------------- */
/* footer
/* --------------------------- */
.company-name{
  font-size: 2rem;
  margin-bottom: 10px;
  margin-top: 40px;
}
.company-info{
  font-size: 1.2rem;
}
.footer{
  padding: 20px 0;
  font-size: 1.0rem;
  letter-spacing: 0;
  color: #fff;
  background-color: #CD3E2B;
}
.footerlux{
  padding: 20px 0;
  font-size: 1.0rem;
  letter-spacing: 0;
  color: #fff;
  background-color: #8d6f40;
}
.sns-icon02{
  margin: 30px auto;
  max-width: 300px;
  height: 30px;
}
.footer-link{
  text-decoration: underline;
}
/* SNSフォローアイコン#333背景用 */
.follow-me02 {
  list-style: none;
  margin: 0 0 -8px;
  overflow: hidden;
  padding: 0;
  justify-content: space-around;
}
.follow-me02 li {
  float: left;
  margin: 0 20px 8px 0;
  padding: 0;
}
.follow-me02 li:last-of-type{
  margin-right: 0;
}
.follow-me02 li a::before {
  background-color:rgba(255, 255, 255, 0);
  -webkit-border-radius: 2px;/* for Android ~4.3 */
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  font-family: FontAwesome;
  font-size: 18px;
  height: 40px; /* Button height */
  line-height: 40px; /* Button height */
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  text-align: center;
  width: 40px; /* Button width */
}
.follow-me02 li a:hover::before {
  background-color: #fff;
  color:#CD3E2B;
}
.phone-number{
  text-decoration: underline;
  font-weight: 600;
}
/* --------------------------- */
/* jquery
/* --------------------------- */

/* アニメーションスタイル */
/* ---------------------------- */

/* アニメーション前 */
.u-fade-type-up{
  transform: translateY(60%);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-up.is-active{
  transition: 4s;
  transform: translateY(0);
  opacity: 1;
}
/* アニメーション前 */
.u-fade-type-down{
  transform: translateY(-60%);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-down.is-active{
  transition: 4s;
  transform: translateY(0);
  opacity: 1;
}
/* アニメーション前 */
.u-fade-type-left{
  transform: translateX(-50%);
  opacity: 0;
}
/* トリガー発火でis-activeを付与 */
.u-fade-type-left.is-active{
  transition: 3s;
  transform: translateX(0);
  opacity: 1;
}
/* アニメーション前 */
.u-fade-type-right{
  transform: translateX(50%);
  opacity: 0;
}
/* トリガー発火でis-activeを付与 */
.u-fade-type-right.is-active{
  transition: 5s;
  transform: translateX(0);
  opacity: 1;
}
.u-fade-type-in{
  opacity: 0;
}
/* トリガー発火でis-activeを付与 */
.u-fade-type-in.is-active{
  transition: 7s;
  opacity: 1;
}
.u-fade-type-in2{
  opacity: 0;
}
/* トリガー発火でis-activeを付与 */
.u-fade-type-in2.is-active{
  transition: 4s;
  opacity: 1;
}
/* // スマホの時だけ改行させるクラス */
/* --------------------------- */
/* iPad
/* --------------------------- */
@media screen and (max-width:1028px){
  /*------------------------------*/
  /*base
  /*------------------------------*/
  .section-wrapper{
    padding: 60px 0 20px 0;
  }
  .section-inner{
    max-width: 90%;
  }
  /* imageレスポンシブ */
.pc { display: none !important; }
.tb { display: block !important; }
.sp { display: none !important; }
  /*------------------------------*/
  /*header
  /*------------------------------*/
  header{
    padding: 20px 60px;
  }
  header.scroll {
    padding: 20px 60px;
  }
  .nav-list{
    display: block;
    position: absolute;
    top: 10%;
    left: 20%;
    text-align: left;
    color: #777;
  }
}
/* --------------------------- */
/* SP_iphone_maxpro
/* --------------------------- */
/*------------------------------*/
/*base
/*------------------------------*/
@media screen and (max-width:767px){
body {
    background-image: url(../images/bg_sp.jpg);
    background-size: contain;
  }
.section-inner{
  max-width: 380px;
}
.section-wrapper{
  padding: 50px 0 50px 0;
}
.section-title{
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 100;
}
.flex-rc{
  display: flex;
  flex-wrap: wrap;
}
.flex-cr{
  display: flex;
  flex-direction: row;
}
/* imageレスポンシブ */
.pc { display: none !important; }
.tb { display: none !important; }
.sp { display: block !important; }
/* --------------------------- */
/* header
/* --------------------------- */
.logo{
  width: 150px;
  height: auto;
}
header{
  padding: 20px 30px;
}
header.scroll {
	padding: 20px 30px;
}
.header-nav{
  display: none;
  position: fixed;
  top: 0;
  left:  30%;
  width: 70%;
}
.nav-list{
  top: 10%;
  left: 20%;
}
/* --------------------------- */
/* footer
/* --------------------------- */
/* .footer{
  padding: 20px 0;
  font-size: 1.2rem;
  letter-spacing: 0;
  height: 100px;
  margin-top: 100px;
} */
.sns-icon02{
  width: 280px;
}
}
/* --------------------------- */
/* SP_iphoneX
/* --------------------------- */
@media screen and (max-width:375px){
  .section-inner{
    max-width: 335px;
  }
}
/* --------------------------- */
/* Location Photo
/* --------------------------- */
.wrap {
  width: 100%;
  margin: 0 auto;
  max-width: 750px;
  min-width: 320px;
  line-height: 1;
  overflow: hidden;
}

#image-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-item {
  width: 100%;
  padding: 0px 0;
}

.gallery-img {
  width: 100%;
  display: block;
}

@media only screen and (max-width: 768px) {
  .gallery-img {
    width: 100vw;
  }
}

/* --------------------------- */
/* entsuuin
/* --------------------------- */

.wrap-en {
  width: 100%;
  margin: 0 auto;
  max-width: 750px;
  min-width: 320px;
  line-height: 1.5;
  overflow: hidden;
}

.h2title {
  font-size: 2rem;
}

.text-en {
  margin-bottom: 25px;
}

.fee{
  font-size: 3rem;
  margin-bottom: 20px;
}

.underred {
  background: linear-gradient(transparent 50%, #e17a6c77 50%);
}

.bank-info-wrapper2{
  border: 3px solid #fff;
  padding: 20px;
  margin: 10px;
}

.step{
  width: 100px;
  margin: 0 auto;
  float: left;
}

.flow-step{
  line-height: 40px;
  align-items: center;
}

.step-txt{
  float: left;
  font-size: 1.5rem;
  max-width: 430px;
  line-break: auto;
  line-height: 2;
}