/*------------------------------*/
/*base
/*------------------------------*/
html{
  font-size: 62.5%;
}
body {
  font-size: 1.4rem;
  font-family:"linotype-didot", "ヒラギノ明朝", "游明朝体", "YuMincho", "游明朝", serif;
  font-weight: 100;
  font-style: normal;
  color: #333;
  line-height: 1.7;
  letter-spacing: 0.1rem;
  font-feature-settings: "palt";
  background-image: url(../images/bg01.jpg);
  background-size: contain;
  transition: 3s;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}
.english-page{
  letter-spacing: 0;
}
/* 画面の切り替わりフェード */
.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: 80px 0 60px 0;
  overflow: hidden;
}
.section-wrapper:last-of-type{
  padding: 80px 0 0 0;
}
.section-inner{
  max-width: 960px;
  margin: 0 auto;
}
.section-title{
  font-size: 3rem;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: 0.1rem;
}
.section-subtitle{
  font-weight: lighter;
  text-align: center;
  margin-bottom: 20px;
}
img{
  width: 100%;
  vertical-align: bottom;
}
a{
  text-decoration: none;
  color: inherit;
}
.logo00{
  font-family: "linotype-didot", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1rem;
}
.logo01{
  font-family: "linotype-didot", serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1rem;
}
.logo03{
  font-family: 'Autography', sans-serif;
  font-style: normal;
  letter-spacing: 0rem;
}
.font-italic{
  font-family: "linotype-didot", serif;
  font-weight: 400;
  font-style: italic;
}
.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;
}
.flex-rr{
  display: flex;
  align-items: flex-start;
}
.flex-rc{
  display: flex;
  align-content: space-around;
}
.flex-cc{
  display: flex;
  flex-direction: column;
}
/* imageレスポンシブ */
.pc { display: block !important; }
.tb { display: none !important; }
.sp { display: none !important; }

.burger-btn{
  display: none;
}
/* --------------------------- */
/* header
/* --------------------------- */
.site-title{
  margin-top: 20px;
  font-size: 2.3rem;
}
.site-title::before{
  margin: 0 -20px 0 0;
  content: "";
  background: #D0F0E8;
  padding: 2px 12px;
  font-size: 0.3rem;
}
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: 75%;
        width: 25%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.257);
        backdrop-filter: blur( 20.0px );;
        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: 20%;
        left: 20%;
        text-align: left;
        color: #333;
      }
      .nav-item{
        margin: 0 0 30px;
        font-size: 1.4rem;
      }
      .nav-item.nav-en{
        background: url(../images/english_icon.png) left 0px top 3px no-repeat;
        background-size: 55px auto;
        padding-left: 60px;
      }
      .nav-item.nav-jp{
        background: url(../images/jp_icon.jpg) left 0px top 3px no-repeat;
        background-size: 25px auto;
        padding-left: 40px;
      }
      .nav-item a{
        color: #333;
        }
        .nav-item a:hover{
          color: #888;
          }
      body.noscroll{
        overflow: hidden;
      }
      /* ハンバーガーボタン */
      .burger-btn{
        display: block;
        width: 30px;
        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;
      }
/* --------------------------- */
/* btn
/* --------------------------- */
.btn_16 a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: auto;
  max-width: 200px;
  padding: 10px 25px;
  text-decoration: none;
  color: #333;
  line-height: 1.8;
  transition: 0.3s ease-in-out;
  font-size: 1.4rem;
  background: #F3D1C7;
  border-radius: 9999px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, .3);
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, .3);
  margin-bottom: 20px;
}
.btn_16 a:hover {
  color: #333;
  background: #cd9993;
  transform: translateY(3px);
}
.line-text{
  font-size: 1.1rem;
}
/* --------------------------- */
/* Contact
/* --------------------------- */
/* ------------------------------------ */
/* フォーム共通書式 */
/* ------------------------------------ */
.contact_form{
  width: 50%;
  margin: 0 auto;
}
.form_label{
  font-size: 1.2rem;
}
/* labelタグ：項目のラベルと入力欄を囲うタグ */
.form_block {
  display: grid;
  padding: 1em;
  align-items: center;
}
/* 必須アイコン */
.form-required {
  color: #333;
  font-size: 1.2rem;
}
/* 入力欄 */
.form_field {
  /* border: 1px solid #333; */
  border-radius: 4px;
  padding: 0.5em 1em;
  border: none;
}
/* ------------------------------------ */
/* 段落入力 */
/* ------------------------------------ */
.form_block.--textfield {
  align-items: start;
  /* border-bottom: 1px dotted #606060; */
  height: auto;
}
.form_field.--textfield {
  height: 20em;
  resize: none;
}
/* ------------------------------------ */
/* 送信ボタン */
/* ------------------------------------ */
.form-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 30px;
  font-size: 1.3rem;
  background-color: #333;
  border-radius: 3px;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
    /* 枠線を消す */
    border: none;
    /* クリックした際に枠線をnone消す */
    outline: none;
    /* 影を消す */
    box-shadow: none;
    font-family: "garamond-premier-pro-display", serif;
}
/* ------------------------------------ */
/* 個人情報保護 */
/* ------------------------------------ */
.privacy{
  font-size: 1.1rem;
  margin-left: 20px;
}

/* ------------------------------------ */
/* 送信後のサンクスページ専用 */
/* ------------------------------------ */
.thanks-title{
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 50px;
  margin-top: 200px;
}
.thanks-message{
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 100px;
}
.btn_01.thanks{
  margin: 0 auto;
}
/* --------------------------- */
/* footer
/* --------------------------- */
.footer{
  background-color: #EBE0F0;
  background-size: cover;
  background-position: bottom;
  padding: 20px 0;
  font-size: 1.3rem;
  letter-spacing: 0;
  font-weight: 400;
  color: #555;
  height: 50px;
  margin-top: 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.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: #333;
  display: inline-block;
  font-family: FontAwesome;
  font-size: 16px;
  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: #333;
  color:#E5DDF1;
}
img.note-icon{
  height: 20px;
  width: auto;
  padding: 10px 0 10px 0;
}
.note-icon{
  border-radius: 2px;
}
.note-icon:hover{
  background-color: #333;
}
.follow-me02 li a[href*="instagram.com"]::before      { content: "\f16d"; }
/* --------------------------- */
/* jquery
/* --------------------------- */

/* アニメーションスタイル */
/* ---------------------------- */

/* アニメーション前 */
.u-fade-type-up{
  transform: translateY(40%);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-up.is-active{
  transition: 2s;
  transform: translateY(0);
  opacity: 1;
}
/* アニメーション前 */
.u-fade-type-down{
  transform: translateY(-40%);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-down.is-active{
  transition: 2s;
  transform: translateY(0);
  opacity: 1;
}
/* アニメーション前 */
.u-fade-type-left{
  transform: translateX(-40%);
  opacity: 0;
}
/* トリガー発火でis-activeを付与 */
.u-fade-type-left.is-active{
  transition: 2s;
  transform: translateX(0);
  opacity: 1;
}
/* アニメーション前 */
.u-fade-type-right{
  transform: translateX(40%);
  opacity: 0;
}
/* トリガー発火でis-activeを付与 */
.u-fade-type-right.is-active{
  transition: 2s;
  transform: translateX(0);
  opacity: 1;
}
.u-fade-type-in{
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-in.is-active{
  transition: 7s;
  opacity: 1;
}
/* --------------------------- */
/* iPad
/* --------------------------- */
@media screen and (max-width:820px){
  /*------------------------------*/
  /*base
  /*------------------------------*/
  .section-wrapper{
    padding: 60px 0 20px 0;
  }
  .section-inner{
    max-width: 710px;
  }
  /* 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:432px){
.section-inner{
  max-width: 370px;
}
.section-wrapper{
  padding: 40px 0 40px 0;
}
.flex-rc{
  display: flex;
  flex-wrap: wrap;
}
/* imageレスポンシブ */
.pc { display: none !important; }
.tb { display: none !important; }
.sp { display: block !important; }
/* --------------------------- */
/* header
/* --------------------------- */
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%;
}
.site-title{
  margin-top: 20px;
  font-size: 2rem;
  line-height: 1;
}
.logo{
  width: 40px;
}
/* ------------------------------------ */
/* フォーム共通書式 */
/* ------------------------------------ */
.contact_form{
  width: 90%;
  margin: 0 auto;
  margin-bottom: 150px;
}}
/* --------------------------- */
/* SP_iphoneX
/* --------------------------- */
@media screen and (max-width:375px){
  .section-inner{
    max-width: 330px;
  }
}
