@charset "UTF-8";
/*----------------
    共通項目
------------------*/
html, body{
  position: relative;
}
a{
  text-decoration: none;
  transition: .2s ease-in-out;
}
a:hover{
  opacity: .5;
}
img {
  pointer-events: none;
}
.pc-only {
  display: none;
}
.sp-only {
  display: block;
}
@media screen and (min-width: 736px){
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}

/*----------------
      ヘッダー
------------------*/
.Header{
  background-color: #F0F0F0;
  width:100%;
  position: fixed;
  z-index: 9999;
}
.Header_h1{
  /*width:6vw;*/
  padding-left: 5vw;
}
@media screen and (min-width: 736px){
  .Header_h1{
    width:103px;
    padding-left: 22px;
  }
}

.Header_logo_txt{
  display: block;
  font-family: 'ヒラギノ丸ゴ ProN W4','Hiragino Maru Gothic ProN';
  font-size: calc(26 * (100vw / 375));
  color:#3B4043;
  line-height: 16vw;
  transition: font-size 0ms;
}
.Header_logo_txt:hover {
  opacity: 1;
}
.open .Header_logo_txt {
  z-index: 3;
}
@media screen and (min-width: 736px){
  .Header_logo_txt{
    font-size: 26px;
    line-height: 62px;
  }

  .open .Header_logo_txt {
    color: transparent;
  }
}
/*-----スマホ用ハンバーガーメニュー----*/

.Header_ham_drawer{
  position: absolute;
  top:5vw;
  right:5vw;
}
@media screen and (min-width: 736px){
  .Header_ham_drawer{
    position: absolute;
    top:18px;
    right:22px;
  }
}

#Header_ham_open{
  display: flex;
  height: 7vw;
  width: 7vw;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;/* 重なり順を一番下に */
  cursor: pointer;
}
@media screen and (min-width: 736px){
  #Header_ham_open{
    height: 26px;
    width: 26px;
  }
}
span.Header_ham_line {
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: transform 450ms ease-out;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
span.Header_ham_line:nth-child(2){
  bottom: 15px;
}
span.Header_ham_line:nth-child(3) {
  top: 15px;
}

.open span.Header_ham_line{
  transition: transform 350ms ease-out;
}
.open span.Header_ham_line:nth-child(1) {
  opacity: 0;
}
/*.open span.Header_ham_line:nth-child(2),.open span.Header_ham_line:nth-child(3) {
  background: #fff;
}*/
.open span.Header_ham_line:nth-child(2) {
  opacity: 1;
  transform-origin: top left;
  transform: rotate(33deg) scaleX(1.2);
}
.open span.Header_ham_line:nth-child(3) {
  opacity: 1;
  transform-origin: bottom left;
  transform: rotate(-33deg) scaleX(1.2);
}
#Header_ham_input{
  display:none;
}


#Header_ham_content{
  background: #F0F0F0;
  width:100%;
  transition: opacity .3s cubic-bezier(0.5, 1, 0.89, 1);
  z-index: -3;/*最前面に*/
  /*transform: translateX(100%);*/
  position:fixed;
  top:0;
  left:0;
  overflow: auto;
  height:100%;
  opacity: 0;
  pointer-events: none;
}


/*#Header_ham_input:checked ~ #Header_ham_content{
  transform: translateX(0);

}*/
.open #Header_ham_content {
  opacity: 1;
  pointer-events: auto;
}


/*---- ハンバーガー内のロゴ---- */

.header_ham_content_logo{
  display: flex;
  padding:4.4vw 5vw;
  justify-content: space-between;
}
@media screen and (min-width: 736px){
  .header_ham_content_logo{
    display: block;
    padding:105px 70px 94px;
    position: relative;
  }
}
.header_ham_content_logo_txt{
  display: none;
  font-size: calc(29 * (100vw / 375));
  color:#212121;
  line-height: 1.24;
  font-family: 'ヒラギノ丸ゴ ProN W4','Hiragino Maru Gothic ProN';
}
.header_ham_content_logo_txt:hover {
  opacity: 1;
}
@media screen and (min-width: 736px){
  .header_ham_content_logo_txt{
    display: block;
    font-size: 40px;
    line-height: 1;
  }
}
/*---- 閉じるボタン---- */

.Header_ham_content_close {
    display: block;
    width: 7vw;
    height: 7vw;
}
@media screen and (min-width: 736px){
  .Header_ham_content_close {
      width: 26px;
      height: 26px;
      position: absolute;
      top:20px;
      right:22px;
  }
}

.Header_ham_content_close_cross {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
.Header_ham_content_close_cross::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.Header_ham_content_close_cross::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.Header_ham_content_close_cross::after, .Header_ham_content_close_cross::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 3px;
    /*background-color: #fff;*/
}

/*---- ハンバーガー内のメニュー---- */
.Header_ham_content_menu{
  padding:28vw 5vw 0;
  position: relative;
}
@media screen and (min-width: 736px){
  .Header_ham_content_menu{
    padding:0 72px;
    position: relative;
  }
}
.Header_ham_content_menu_item{
  margin-bottom: 7.7vw;
}
@media screen and (min-width: 736px){
  .Header_ham_content_menu_item{
    margin-bottom: 40px;
  }
}
.Header_ham_content_menu_item_a{
  color: #212121;
  font-size: calc(18 * (100vw / 375));
  line-height: 1.3;
  font-family: 'Open Sans', '游ゴシック', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}
@media screen and (min-width: 736px){
  .Header_ham_content_menu_item_a{
      font-size: 20px;
  }
}
/*---- SNSアイコン---- */

.Header_ham_content_sns{
  /*float: right;*/
  position: absolute;
  bottom: 5vw;
  right: 5vw;
}
@media screen and (min-width: 736px){
  .Header_ham_content_sns{
    /*float: none;*/
    /*padding-right:0;*/
    /*margin-top: 50px;*/
    /*margin-bottom: 105px;*/
    display: flex;
    /*padding-left: 70px;*/
    bottom: auto;
    right: auto;
    left: 70px;
    top: 585px;

  }
}
.Header_ham_content_sns_item{
  background-color: #fff;
  width:16vw;
  height:16vw;
  border-radius: 50%;
  margin-bottom: 2vw;
  position: relative;
}
@media screen and (min-width: 736px){
  .Header_ham_content_sns_item{
    width:55px;
    height:55px;
    margin-bottom: 0;
    margin-right: 17px;
  }
}
.Header_ham_content_sns_item_a{
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}
.Header_ham_content_sns_item_a_img{
  width:35%;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
}


/*---------------------
　ヘッダーかぶり解消
-----------------------*/
.Header~main {
    padding-top: 16vw;
}
@media screen and (min-width: 736px){
  .Header~main {
      padding-top: 62px;
  }
}

/*----------------
      フッター
------------------*/
.Footer{
  background-color: #F0F0F0;
  width:100%;
}
.Footer_inner{
  width:90%;
  padding-top:13vw;
  margin:0 auto;
  position: relative;
}
@media screen and (min-width: 736px){
  .Footer_inner{
    max-width: 1030px;
    box-sizing: border-box;
    padding: 62px 15px;
    margin:0 auto;
  }
}
.Footer_logo{
  margin-bottom:13vw;
}
@media screen and (min-width: 736px){
  .Footer_logo{
    margin-bottom:62px;
  }
}
.Footer_logo_txt{
  font-family: 'ヒラギノ丸ゴ ProN W4','Hiragino Maru Gothic ProN';
  font-size: calc(29 * (100vw / 375));
  color:#3B4043;
  line-height: 1.24;
}
.Footer_logo_txt:hover {
  opacity: 1;
}
@media screen and (min-width: 736px){
  .Footer_logo_txt{
    font-size:35px;
    line-height: 1.1;
  }
}
.Footer_menu_item{
  margin-bottom:5vw;
}
@media screen and (min-width: 736px){
  .Footer_menu_item{
    margin-bottom:20px;
  }
}
.Footer_menu_item_a{
  color: #212121;
  font-size: calc(15 * (100vw / 375));
  line-height: 1.6;
  font-family: 'Open Sans', '游ゴシック', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}
@media screen and (min-width: 736px){
  .Footer_menu_item_a{
    font-size: 15px;
  }
}
.Footer_menu_sns{
  display: flex;
  margin-top:3vw;
}
@media screen and (min-width: 736px){
  .Footer_menu_sns{
    margin-top:33px;
    width:100%;
    border-bottom: 1px solid #BABABA;
    margin-bottom: 20px;
  }
}

.Footer_menu_sns_item{
  background-color: #fff;
  width:16vw;
  height:16vw;
  border-radius: 50%;
  margin-bottom: 13vw;
  margin-right:2vw;
  position: relative;
}
@media screen and (min-width: 736px){
  .Footer_menu_sns_item{
    width:55px;
    height:55px;
    margin-bottom: 55px;
    margin-right:7px;
  }
}
.Footer_menu_sns_item_a{
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}

.Footer_menu_sns_item_a_img{
  width:35%;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
}
.Footer_memo{
  margin-bottom:19vw;
}
@media screen and (min-width: 736px){
  .Footer_memo{
    margin-bottom:0;
  }
}
.Footer_memo_a{
  display: block;
  color: #212121;
  font-size: calc(13 * (100vw / 375));
  line-height: 2.1;
  font-family: 'Open Sans', '游ゴシック', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}
@media screen and (min-width: 736px){
.Footer_memo_a{
    display: inline-block;
    font-size:12px;
    margin-right: 33px;
  }
}
.Footer_copy{
  color: #212121;
  font-size: calc(12 * (100vw / 375));
  line-height: 1.5;
  font-family: 'Open Sans', '游ゴシック', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  text-align: center;
  padding-bottom: 5vw;
}
@media screen and (min-width: 736px){
.Footer_copy{
    font-size:12px;
    padding-bottom: 0;
    padding-top:4px
  }
}
.Footer_pc_flex{
  display: block;
}
@media screen and (min-width: 736px){
  .Footer_pc_flex{
    display: flex;
    justify-content: space-between;
  }
}

.Footer_fix{
  position: fixed;
  bottom:5vw;
  right:5vw;
  width:25.8vw;
  height:25.8vw;
  background-color: #212121;
  border-radius: 50%;
  z-index: 8888;
}
@media screen and (min-width: 736px){
  .Footer_fix{
    bottom:2vw;
    right:2vw;
    width:115px;
    height:115px;
  }
}

.Footer_fix_a{
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height: 100%;
}
.Footer_fix_a:hover {
  opacity: 1;
}

.Footer_fix_a_img{
  width:35%;
  position: absolute;
  top:24%;
  left:50%;
  transform: translate(-50%,0);
  z-index: 9000;
}

.Footer_fix_a_txt{
  color: #fff;
  font-size: calc(14 * (100vw / 375));
  line-height: 0.9;
  font-family: 'Lora', 'Noto Sserif JP', '游明朝', YuMincho, 'メイリオ', Meiryo, serif;
  text-align: center;
  position: absolute;
  bottom:22%;
  left:50%;
  transform: translate(-50%,0);
}
@media screen and (min-width: 736px){
  .Footer_fix_a_txt{
    font-size:16px;
  }
}


/*------------------------
      共通テキスト
--------------------------*/
.br_sp{
  display: block;
}
@media screen and (min-width: 736px){
  .br_sp{
    display: none;
  }
}
.br_pc{
  display: none;
}
@media screen and (min-width: 736px){
  .br_pc{
    display: block;
  }
}
span.pc_box{
  margin-bottom:2%;
}
@media screen and (min-width: 736px){
  span.pc_box{
    display: block;
    margin-bottom:18px;
  }
}

.Common_ttl{
  color:#3B4043;
  font-size: calc(18 * (100vw / 375));
  line-height: 1.6;
  font-family: 'Open Sans', '游ゴシック', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  text-align: center;
  padding:5vw 0;
  font-weight: 700;
  letter-spacing: 0.15em;
  font-feature-settings: "palt" 1;
}
@media screen and (min-width: 736px){
  .Common_ttl{
    font-size:24px;
    line-height: 1.6;
    padding:21px 0 46px;
  }
}

.Common_txt_center{
  color:#212121;
  font-size: calc(14 * (100vw / 375));
  line-height: 2;
  letter-spacing: 0;
  font-family: 'Open Sans', '游ゴシック', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  text-align: center;
}
@media screen and (min-width: 736px){
  .Common_txt_center{
    font-size:14px;
    line-height: 2;
  }
}

.Common_txt{
  color:#212121;
  font-size: calc(14 * (100vw / 375));
  line-height: 2;
  letter-spacing: 0;
  font-family: 'Open Sans', '游ゴシック', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  text-align: justify;
}
@media screen and (min-width: 736px){
  .Common_txt{
    font-size: 14px;
  }
}
/*------PC版　テキスト中央ぞろえ-------*/
@media screen and (min-width: 736px){
  main .Intro .Common_txt{
      text-align: center;
  }
}

.Common_ttl_en{
  color:#3B4043;
  font-size: calc(32 * (100vw / 375));
  line-height: 1.1;
  letter-spacing: 0.03em;
  font-family:'Lora', 'Noto Sserif JP', '游明朝', YuMincho, 'メイリオ', Meiryo, serif;
  text-align: center;
  padding:5vw 0;
}
@media screen and (min-width: 736px){
  .Common_ttl_en{
    font-size: 45px;
    padding:37px 0;
  }
}
.Common_ttl_ja{
  color:#3B4043;
  font-size: calc(30 * (100vw / 375));
  line-height: 1.1;
  letter-spacing: 0.01em;
  font-family:'Lora', 'Noto Sserif JP', '游明朝', YuMincho, 'メイリオ', Meiryo, serif;
  text-align: center;
  font-weight: 600;
  padding:12vw 0;
}
@media screen and (min-width: 736px){
  .Common_ttl_ja{
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: 0.03em;
    padding:77px 0;
  }
}
/*------------------------
      パンくずリスト
--------------------------*/
.breadcrumbs{
  width:90%;
  margin:5vw auto;
}
@media screen and (min-width: 736px){
  .breadcrumbs{
    width:90%;
    margin:32px auto;
    max-width: 1030px;
    padding: 0 15px;
    box-sizing: border-box;
  }
}
.breadcrumbs_ol{
  display:flex;
}
.breadcrumbs_li{
  line-height: 1.4;
  margin-right: 6vw;
  color: #212121;
  font-size: calc(14 * (100vw / 375));
  font-family: 'Open Sans', '游ゴシック', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  position: relative;
}
@media screen and (min-width: 736px){
  .breadcrumbs_li{
    margin-right: 16px;
    font-size: 14px;
  }
}
.breadcrumbs_li::after{
  content: '>';
  color:#212121;
  position: absolute;
  top:0;
  right:-4vw;
}
@media screen and (min-width: 736px){
  .breadcrumbs_li::after{
    right:-12px;
  }
}
.breadcrumbs_li:last-of-type::after{
  display: none;
}
.breadcrumbs_li_a{
  color: #212121;
}

/*------------------------
  スライダー部分の仮画像
--------------------------*/
.Common_demo_slider{
  width:100%;
  /*height: 63.7vw;*/
}
@media screen and (min-width: 736px){
  .Common_demo_slider{
    margin:0 auto;
    width:90%;
    /*height: 41.4vw;*/
    max-width: 800px;
    /*max-height: 531px;*/
  }
}
.Common_demo_slider_img{
  width: 100%;
  /*height: 100%;*/
  /*object-fit: cover;*/
}

/*--------------------
    下層お問い合わせ
--------------------------*/
.Contact{
  background-color:#DDDDDD;
  width:100%;
  padding: 14vw 0 15vw;
}
@media screen and (min-width: 736px){
  .Contact{
    padding: 65px 0;
  }
}
.Contact_ttl{
  font-size: calc(16 * (100vw / 375));
  font-family:'Lora', 'Noto Serif JP', '游明朝', YuMincho, 'メイリオ', Meiryo, serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8vw;
}
@media screen and (min-width: 736px){
  .Contact_ttl{
    font-size:18px;
    margin-bottom: 33px;
  }
}
.Contact_select{
  width:90%;
  margin:0 auto;
}
@media screen and (min-width: 736px){
  .Contact_select{
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    padding:0 15px;
    box-sizing: border-box;
  }
}

.Contact_select_box{
  width:100%;
  border:1px solid #212121;
  margin-bottom: 2vw;
}
@media screen and (min-width: 736px){
  .Contact_select_box{
    width:49%;
    margin-bottom:0;
  }
}

.Contact_select_box_a{
  display: block;
  line-height: 13vw;
  color:#212121;
  font-size: calc(15 * (100vw / 375));
  font-family:'Lora', 'Noto Serif JP', '游明朝', YuMincho, 'メイリオ', Meiryo, serif;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  background-color: #fff;
}
@media screen and (min-width: 736px){
  .Contact_select_box_a{
    line-height: 56px;
    font-size: 15px;
  }
}
.Contact_select_box_a:hover{
  background-color: #212121;
  color: #fff;
  opacity: 1;
}
