/*------------------------------*/
/*base
/*------------------------------*/
html{
  font-size: 62.5%;
}
body {
  font-size: 1.4rem;
  font-family:"游明朝体", "YuMincho", "游明朝", "ヒラギノ明朝", serif;
  font-weight: 100;
  font-style: normal;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.1rem;
  font-feature-settings: "palt";
  background-color: #fff;
  transition: 3s;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}
/* 画面の切り替わりフェード */
.fade{
  animation: fadein 3s forwards;
}
@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}
/* 画面の切り替わりフェード */
h1,h2,h3,h4{
  font-weight: 100;
}
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.6rem;
  font-weight: 100;
  line-height: 1;
  letter-spacing: .4rem;
  margin-bottom: 50px;
  margin-top: 50px;
  text-align: center;
}
.blue-underline {
  display: block;
  width: 80px;
  height: 6px;
  background-color: #b6d6e1; /* 優しい水色 */
  margin: 20px auto 0;
}
img{
  width: 100%;
  vertical-align: bottom;
}
a{
  text-decoration: none;
  color: inherit;
}
.font-mincho{
  font-family: "游明朝体", "YuMincho", "游明朝", serif;
  font-weight: 100;
}
.font-gothic{
  font-family: "游ゴシック", "YuGothic", sans-serif;
}
.font-didot{
  font-family: "linotype-didot-headline", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
}
.logo{
  font-family: "linotype-didot-headline", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1rem;
}
.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;
}
.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
/* --------------------------- */
.header-logo{
  width: 60px;
  height: auto;
  margin-right: 10px;
  vertical-align: middle; /* テキストとロゴのベースラインを揃える */
  margin-top: -15px;
}
.header-title{
  display: flex;
  align-items: center; /* 中央揃え */
  font-weight: 400;
  font-style: normal;
  font-size: 2.5rem;
  letter-spacing: 0.5rem;
  color: #333;
  margin: 0; /* 余計なマージンをリセット */
  line-height: 1.2; /* 行間を調整 */
}
.header-word{
  font-size: 1.6rem;
  margin-left: 10px;
  margin-top: 12px;
  letter-spacing: 0.5rem;
  margin-right: 10px;
}
header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 80px 10px 80px;
  width: 100%;
  position: fixed;
  z-index: 11;
  box-sizing: border-box;
  transition: .4s;
  /* background: linear-gradient(to bottom,rgba(63, 63, 63, 0.527) 50%, rgba(0, 0, 0, 0)); */
  display: none;
  color: #333;
}
/* header.scroll {
	background: rgba(109, 61, 91, 0.335);
  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: #fff;
}
/* ハンバーガーメニューが開いたときのスタイル */
      .header-nav{
        display: none;
        position: fixed;
        top: 0;
        left: 70%;
        width: 30%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.698);
        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.4rem;
      }
      .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;/* バナーの左右の位置 */
}
.pc-float {
  width: 65px;/* バナーの横幅を指定 */
  filter: drop-shadow(-4px -4px 10px rgba(0, 0, 0, 0.5));
}
.pc-float:hover {
  opacity: .8;/* ホバーで少し透過 */
}
.pc-float01 {
  width: 65px;/* バナーの横幅を指定 */
  filter: drop-shadow(-4px -4px 10px rgba(0, 0, 0, 0.5));
}
.pc-float01:hover {
  opacity: .8;/* ホバーで少し透過 */
}
.sp-float {
  display: none;/* PCではスマホ用のバナーは非表示に */
}
.sp-float01 {
  display: none;/* PCではスマホ用のバナーは非表示に */
}
@media screen and (max-width: 438px) {/* スマホ用のブレイクポイントを指定 */
  .pc-float{
    display: none;
  }
  .pc-float01{
    display: none;
  }
  .sp-float {
      display: inline-block;/* 消していたスマホ用のバナーを表示させる */
      height: 61px;
      width: 50vw;/* スマホの画面幅いっぱいにバナーを表示 */
      filter: drop-shadow(-4px -4px 10px rgba(0, 0, 0, 0.5));
  }
  .sp-float01 {
    display: inline-block;/* 消していたスマホ用のバナーを表示させる */
    height: 61px;
    width: 50vw;/* スマホの画面幅いっぱいにバナーを表示 */
    filter: drop-shadow(-4px -4px 10px rgba(0, 0, 0, 0.5));
}
@media screen and (max-width: 375px) {/* スマホ用のブレイクポイントを指定 */
  .pc-float{
    display: none;
  }
  .sp-float {
      display: inline-block;/* 消していたスマホ用のバナーを表示させる */
      height: 54px;
      width: 50vw;/* スマホの画面幅いっぱいにバナーを表示 */
      filter: drop-shadow(-4px -4px 10px rgba(0, 0, 0, 0.5));
  }
  .sp-float01 {
    display: inline-block;/* 消していたスマホ用のバナーを表示させる */
    height: 54px;
    width: 50vw;/* スマホの画面幅いっぱいにバナーを表示 */
    filter: drop-shadow(-4px -4px 10px rgba(0, 0, 0, 0.5));
}}}
/* --------------------------- */
/* button
/* --------------------------- */
/* --------------------------- */
/* footer
/* --------------------------- */
.footer {
  background: url("../images/kv.jpg") no-repeat center center/cover;
  text-align: center;
  padding: 80px 20px 40px;
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.footer-msg {
  font-size: 1.7rem;
  margin-bottom: 20px;
  line-height: 2;
  letter-spacing: .4rem;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.footer-title span {
  font-size: 2.2rem;
  letter-spacing: 0.15em;
}

.footer-contact {
  font-size: 1.3rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.footer-contact a {
  color: #000;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.copyright {
  font-size: 0.85rem;
  color: #444;
  margin-top: 40px;
}

.copyright a {
  color: #444;
  text-decoration: underline;
}

/* --------------------------- */
/* 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:438px){
.section-inner{
  max-width: 380px;
}
.section-wrapper{
  padding: 50px 0 50px 0;
}
.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
/* --------------------------- */
header{
  padding: 30px 15px;
}
.header-nav{
  display: none;
  position: fixed;
  top: 0;
  left:  30%;
  width: 70%;
}
.nav-list{
  top: 10%;
  left: 20%;
}
.burger-btn{
  display: block;
  width: 20px;
  height: 24px;
  position: relative;
  margin-top: 0px;
}
/* --------------------------- */
/* footer
/* --------------------------- */

}
/* --------------------------- */
/* SP_iphoneX
/* --------------------------- */
@media screen and (max-width:375px){
  .section-inner{
    max-width: 335px;
  }

}
