@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
  margin:0;
  padding:0;
  list-style: none;
  box-sizing: border-box;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

*::before,
*::after{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

html {
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

input,
select,
textarea{
  border:none;
  background: none;
  border-radius: 0;
  font-family: 'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif;
  color:#222222;
  -webkit-font-smoothing: antialiased;
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  font-feature-settings: 'palt';
  touch-action: manipulation;
  resize: none;
  display: block;
}

.js_reserve_modal_open,
.js_contact_modal_open{
  cursor: pointer;
}

button{
  border: none;
  background: none;
  border-radius: 0;
  cursor: pointer;
}

body{
  color: #fff;
  font-size: 16px;
  font-family: 'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif;
  -webkit-font-smoothing: antialiased;
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  position: relative;
}

body.bg{
  background-color: #000;
}


body::after{
  content:'';
  width:100%;
  height:100%;
  background-color: #000;
  position: absolute;
  top:0;
  left:0;
  z-index:-5;
}

body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

body.form_fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

img{
  display: block;
  object-position: center;
}

#body_wrap{
  overflow: hidden;
}


a{
  color: #fff;
}

.fax a{
  pointer-events: none;
}

@media (any-hover:hover){
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.grecaptcha-badge { visibility: hidden; }

/*
------------------------------------
アニメーション関係
------------------------------------
*/

.common_hover_opa{
  transition: 0.4s;
}


@media (any-hover:hover){
  .common_hover_opa:hover{
    opacity: 0.5;
  }
  
}

/*
------------------------------------
共通パーツ
------------------------------------
*/

.container{
  max-width: 1200px;
  margin:0 auto;
}

/*
------------------------------------
ヘッダー
------------------------------------
*/

header{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  /* background-color: #000; */
  z-index: 30;
}

header.bg{
  background-color: #000;
}

header .header_inner{
  max-width: 1120px;
  margin:0 auto;
  padding:0 20px;
}

header .header_flex{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  padding:24px 0;
}


header .header_flex .header_logo{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

header .header_flex .header_logo img{
  width:clamp(calc(325 / 1920 * 1400px) , calc(325 / 1920 * 100vw) , calc(325 / 1920 * 1920px));
}

body.drawer_opend header .header_flex .header_logo{
  opacity: 0;
  pointer-events: none;
}


header.bg .header_flex .header_logo img{
  width:140px;
}

header .header_flex .header_logo_text{
  white-space: nowrap;
  text-align: center;
  /* font-size: 56px; */
  font-size: clamp(calc(56 / 1920 * 1400px) , calc(56 / 1920 * 100vw) , calc(56 / 1920 * 1920px));
  font-weight: 700;
  padding-bottom: 4px;
}

header .lang_list{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

header .lang_list li + li{
  /* margin-left: 24px; */
  margin-left: clamp(calc(24 / 1920 * 1400px) , calc(24 / 1920 * 100vw) , calc(24 / 1920 * 1920px));
}

header .lang_list a{
  /* font-size: 24px; */
  font-size: clamp(calc(24 / 1920 * 1400px) , calc(24 / 1920 * 100vw) , calc(24 / 1920 * 1920px));
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color:#333333;
  position: relative;
  padding:0 calc(8 / 1920 * 100vw);
}

header .lang_list a::after{
  width:100%;
  height:2px;
  background-color: #fff;
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

header .lang_list a.active{
  color:#fff;
}

header .lang_list a.active::after{
  content:'';
}

header .drawer_open_frame{
  position: relative;
  margin-left: 56px;
  width: clamp(calc(64 / 1920 * 1400px) , calc(64 / 1920 * 100vw) , calc(64 / 1920 * 1920px));
}

header .drawer_open{
  width: 100%;
  cursor: pointer;
  min-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
} 

header .drawer_open_inner{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* min-height: 100%; */
}

header .drawer_open .bar{
  width: 100%;
  height:2px;
  background-color: #fff;
  transition-duration: 0.4s;
}

header .drawer_open .bar02{
  /* margin:12px 0; */
  margin:clamp(calc(12 / 1920 * 1400px) , calc(12 / 1920 * 100vw) , calc(12 / 1920 * 1920px)) 0;
}

header .drawer_open.active .bar01 {
  transform: translateY(1px) rotate(-30deg);
}
header .drawer_open.active .bar02 {
  display: none;
}
header .drawer_open.active .bar03 {
  transform: translateY(-1px) rotate(30deg);
}


#drawer_menu{
  position: fixed;
  top:0;
  left:0;
  z-index:25;
  width:100%;
  height: calc(100vh );
  height: calc(var(--vh2, 1vh) * 100);
  background-color: #CCCCCC;
  opacity: 0;
  pointer-events: none;
  transition-duration: 0.7s;
  padding-top: 90px;
  /* padding-top: 150px; */
}

#drawer_menu.show{
  opacity: 1;
  pointer-events: auto;
}

#drawer_menu .drawer_frame{
  height:100%;
  overflow-y: scroll;
  scrollbar-width: none; 
  -ms-overflow-style: none;
}
  
#drawer_menu .drawer_frame::-webkit-scrollbar {  
  display: none;
}

#drawer_menu .drawer_inner{
  max-width: 1100px;
  margin:0 auto;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 90px;
}

#drawer_menu .drawer_nav{
  width: fit-content;
  margin:0 auto;
}

#drawer_menu .drawer_nav a{
  transition-duration: 0.4s;
}
@media(any-hover:hover){
  #drawer_menu .drawer_nav a:hover{
    opacity: 0.5;
  }
}

#drawer_menu .parent_item{
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

#drawer_menu .parent_item + .parent_item{
  margin-top: 24px;
  
} 
/*
------------------------------------
トップ
------------------------------------
*/

body.top_body{

}

main.top_main{

}

.top_section{
  position: relative;
}

.top_section .common_sec_title{
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 48px;
  font-weight: 500;
  line-height:1;
  text-align: center;

}

.top_section .common_sec_title .sec_title_text{
  height:45px;
}

.top_section .common_sec_title::after{
  content:'';
  margin-top: 32px;
  width: 715px;
  height: 2px;
  background-color: #fff;
  margin-top: 32px;
}

.top_mv_section{
  
}

.top_mv_section::before,
.top_mv_section::after{
  content:'';
  width:calc(100% + 100px);
  height:clamp(220px , calc(300 / 1920 * 100vw) , 300px);
  border-radius: 50%;
  background-color: #000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 15;
}

.top_mv_section::before{
  /* top:clamp(-200px , calc(-200 / 1920 * 100vw) , -125px); */
  top:clamp(-120px , calc(-120 / 1920 * 100vw) , -110px);
}
.top_mv_section::after{
  bottom:clamp(-150px , calc(-150 / 1920 * 100vw) , -200px);
}


.top_mv_section .top_mv_slide{
  width: 100%;
  height:100vh;
  min-height: 680px;
}


.top_mv_section .top_mv_slide .mv_card{
  width:100%;
  height:100%;
  position: relative;
  
}

/* .top_mv_section .top_mv_slide .mv_card::before,
.top_mv_section .top_mv_slide .mv_card::after{
  content:'';
  width:50px;
  height:100%;
  top:0;
  background-color: #000;
  position: absolute;
  filter: blur(10px);
}

.top_mv_section .top_mv_slide .mv_card::before{
  left:-20px;
}
.top_mv_section .top_mv_slide .mv_card::after{
  right:-20px;
}
*/

.top_mv_section .top_mv_slide img{
  width:100%;
  height:100%;
  object-fit: cover;
}

.top_mv_section .scroll_guide{
  position: absolute;
  /* bottom:calc(80 /1920 * 100vw); */
  bottom:clamp(10px , calc(20 / 1920 * 100vw) , 20px);
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 16;

} 

.top_mv_section .scroll_guide_frame{
  position: relative;
  width: 2px;
  height: max(170px , calc(210 /1920 * 100vw));
} 

.top_mv_section .scroll_guide_bar_frame{

  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.top_mv_section .scroll_guide_bar{
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top:0;
  left:0;
  animation-duration: 1.5s;
  /* animation-timing-function: ease-in-out; */
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: scroll;
} 

@keyframes scroll{
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

.top_mv_section .scroll_guide_frame .scroll_text{
  position: absolute;
  width:13px;
  top:0;
  left:calc(100% + 3px);

}

.top_msg_section{
  padding-top: 40px;
}

.top_msg_section .msg{
  display: flex;
  justify-content: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  z-index: 17;

}

.top_msg_section .msg_border{
  width: 2px;
  height: 125px;
  background-color: #fff;
  margin:64px auto 0;
}

.top_gal_section{
  padding-top: 24px;
}

.top_gal_section .flex{
  display: flex;
  justify-content: flex-end;
  max-width: 1120px;
  margin:0 auto;
  position: relative;
}

.top_gal_section .title_set{
  position: absolute;
  z-index: 10;
  bottom:100px;
  right:620px;
}

.top_gal_section .title_set img{
  width: 100%;
}

.top_gal_section .title_set .title01{
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  width:200px;
}

.top_gal_section .title_set .title_border{
  width:385px;
  height:2px;
  background-color: #fff;
  margin-top: 8px;
}

.top_gal_section .title_set .title02{
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-top: 8px;
  width:265px;
}

.top_gal_section .gal_frame{
  width:720px;
  aspect-ratio: 1/0.836;
  position: relative;
} 

.top_gal_section .gal_frame .gal{
  position: absolute;
  z-index: 1;
  width: 100%;
  height:100%;
  object-fit: cover;
  transition-duration: 0.7s;
  opacity: 0;
}

.top_gal_section .gal_frame .gal.show{
  opacity: 1;
}

.top_gal_section .gal_guide_flex{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}

.top_gal_section .gal_nav{
  font-size: 48px;
  font-weight: 100;
  line-height: 1;
  cursor: pointer;
}

.top_gal_section .gal_guide_list{
  margin:0 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 4px;
}


.top_gal_section .gal_guide{
  width:16px;
  height:16px;
  border-radius: 50%;
  transition-duration: 0.4s;
  background-color: #fff;
  opacity: 0.5;
  cursor: pointer;
}

@media(any-hover:hover){
  .top_gal_section .gal_guide:hover{
    opacity: 1;
  }
}
.top_gal_section .gal_guide.active{
  opacity: 1;
}

.top_gal_section .gal_guide + .gal_guide{
  margin-left: 24px;
}

.top_landscape_section{
  padding-top: 200px;
}

.top_landscape_section .youtube_frame{
  max-width: 1020px;
  aspect-ratio: 1/0.64;
  position: relative;
  margin:56px auto 0;
}

.top_landscape_section .youtube_frame img{
  width:100%;
  height:100%;
  object-fit: cover;
}

.top_landscape_section .youtube_frame iframe{
  width:100%;
  height:100%;
  display: block;
}

.top_experience_section{
  padding-top: 200px;
}

.top_experience_section .flow_list{
  max-width: 1080px;
  margin: 100px auto 0;
}

.top_experience_section .flow_block{
  position: relative;
  display: flex;
  min-height: 300px;
}

.top_experience_section .flow_block + .flow_block{
  margin-top: 140px;
}

.top_experience_section .flow_block .flow_contents{
  padding-top: 20px;
}

.top_experience_section .flow_block .flow_head_frame{
  position: relative;
  white-space: nowrap;
}

.top_experience_section .flow_block .flow_front_head{
  position: relative;
  z-index: 2;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.top_experience_section .flow_block .flow_front_head span{
  font-size: 48px;
}

.top_experience_section .flow_block .flow_back_head{
  position: absolute;
  z-index: 1;
  color:#AAAAAA;
  font-size: 16px;
  font-weight: 300;
  line-height:1;
  top:-110px;
  left:-30px;
}

.top_experience_section .flow_block .flow_back_head span{
  font-size: 128px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.25);

}

.top_experience_section .flow_block .flow_img{
  position: absolute;
  width:485px;
  max-width: 100%;
  top:0;
  right:0;
}

.top_experience_section .flow_block .flow_text{
  width: 410px;
  max-width: 100%;
  margin-top: 30px;
  font-weight: 500;
  line-height: 1.9;

}

.top_experience_section .flow_block:nth-child(even){
  justify-content: flex-end;
}

.top_experience_section .flow_block:nth-child(even) .flow_img{
  right:auto;
  left:0;
}

.top_experience_section .flow_block:nth-child(even) .flow_text{
  margin-left: 56px;
}


.top_strong_section{
  padding-top: 200px;
}


.top_strong_section .strong_list{
  display: flex;
  justify-content: space-between;
  margin-top: 88px;
}

.top_strong_section .strong_block{
  width: 320px;
  padding:28px 40px;
  border:2px solid #ccc;
  min-height: 304px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_strong_section .strong_block .strong_name{
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.top_strong_section .strong_block .strong_icon{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  height:90px;
}

.top_strong_section .strong_block .strong_icon01{
  height:88px;
}
.top_strong_section .strong_block .strong_icon02{
  height:70px;
}
.top_strong_section .strong_block .strong_icon03{
  height:81px;
}

.top_strong_section .strong_block .strong_text{
  margin-top: 24px;
  font-weight: 500;
  line-height:1.5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_strong_section .icon_plus{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 96px;
  font-weight: 100;
  line-height: 1;
} 

.top_strong_section .strong_border{
  width: 2px;
  height: 120px;
  background-color: #fff;
  margin:54px auto 0;
}

.top_strong_section .strong_frame{
  width:317px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin:24px auto 0;
}

.top_strong_section .strong_radi{
  position: absolute;
  top:0;
  left:0;
  z-index: 0;
  width:100%;
  height:100%;
  border-radius: 50%;
  background-image: url('../img/top/strong_icon_frame.png');
  animation: rotate 4s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}


.top_strong_section .strong_group{
  width:213px;
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}
.top_strong_section .strong_group img{
  width:100%;
}

.top_strong_section .strong_group_text{
  font-size: 36px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-top: 8px;
}

.top_reason_section{
  padding-top: 200px;
  position: relative;
} 

.top_reason_section::before{
  content:'';
  width:1014px;
  height:1141px;
  background-image: url('../img/top/reason_bg.png');
  background-size: contain;
  position: absolute;
  top:80px;
  left:calc(50% - 60px);
  z-index: -1;
}

.top_reason_section .reason_list{
  max-width: 1020px;
  margin:100px auto 0;
}

.top_reason_section .reason_block{
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.top_reason_section .reason_block + .reason_block{
  margin-top: 120px;
}

.top_reason_section .reason_contents{
  width:480px;
  max-width: 100%;
}

.top_reason_section .reason_num{
  font-family: "Inter", sans-serif;
  font-size: 128px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  color: #858585CC;
  margin-right: 64px;
}


.top_reason_section .reason_block:nth-child(even){
  flex-direction: row-reverse;
}

.top_reason_section .reason_block:nth-child(even) .reason_num{
  margin-right: 0;
  margin-left: 64px;
}

.top_reason_section .reason_head{
  white-space: nowrap;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4
}

.top_reason_section .reason_text{
  font-weight: 300;
  line-height: 1.9;
  margin-top: 12px;
}

.top_faq_section{
  padding-top: 280px;
}

.top_faq_section .common_sec_title::after{
  content:none;
}

.top_faq_section .faq_list{
  max-width: 1020px;
  margin:30px auto 0;
  border-top:2px solid #fff;
  border-bottom:2px solid #fff;
}

.top_faq_section .faq_block{
  border-bottom:dotted 1px #fff;
}

.top_faq_section .faq_block:last-child{
  border-bottom:none;
}

.top_faq_section .faq_block .faq_question{
  padding:36px 0;
  padding-right: 40px;
  cursor: pointer;
  position: relative;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.top_faq_section .faq_block .faq_question::after{
  content:'';
  width:24px;
  height:24px;
  background-image: url('../img/common/icon_plus_white.png');
  background-size: contain;
  position: absolute;
  right:6px;
  top:38px;
}

.top_faq_section .faq_block .faq_question.active::after{
  background-image: url('../img/common/icon_minus_white.png');
  
}

.top_faq_section .faq_block .faq_question p{
  padding-left: 28px;
  position: relative;
}


.top_faq_section .faq_block .faq_question p::before{
  content:'Q.';
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  position: absolute;
  left:0;
  top:-1px;
}

.top_faq_section .faq_block .faq_answer{
  padding:12px 0 36px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  display: none;
}

.top_faq_section .faq_block .faq_answer p{
  padding-left: 28px;
  position: relative;

}
.top_faq_section .faq_block .faq_answer p::before{
  content:'A.';
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  position: absolute;
  left:0;
  top:-1px;
}

/* .top_faq_section .faq_block .faq_answer a{
  border-bottom:1px solid #fff;
} */

.top_price_section{
  padding-top: 200px;
} 

.top_price_section .price_text01{
  margin-top: 48px;
  font-size: 24px;
  font-weight: 500;
  line-height:1.5;
  text-align: center;
}

.top_price_section .price_area{
  margin-top: 48px;
}

.top_price_section .price_sub_head{
  width: fit-content;
  margin:0 auto;
  min-width: 522px;
  padding:10px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  border:1px solid #fff;
}

.top_price_section .price_flex{
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.top_price_section .price_flex .plus{
  font-size: 64px;
  line-height: 1;
  margin:0 80px 26px;

}

.top_price_section .price_name{
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.top_price_section .price_num{
  font-size: 48px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  margin-top: 24px;
}

.top_price_section .price_remark{
  display: flex;
  justify-content: flex-end;
  font-weight: 500;
  line-height:1.3;
  margin-top: 10px;
}

.top_reserve_section{
  padding-top: 500px;
  padding-bottom: 80px;
  position: relative;
}

.top_reserve_section::before{
  content:'';
  width:1920px;
  min-width: 100%;
  height:1080px;
  background-image:url('../img/top/bottom_bg.png');
  position: absolute;
  z-index: -1;
  bottom:0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.top_reserve_section .reserve_frame{
  width: fit-content;
  margin:0 auto;
}

.top_reserve_section .reserve_text01{
  font-size: 48px;
  font-weight: 500;
  line-height: 1.4;
}

.top_reserve_section .reserve_text02{
  font-size: 20px;
  font-weight: 400;
  line-height: 2.5;
  margin-top: 16px;
}

.top_reserve_section .reserve_link{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 516px;
  height:95px;
  margin:56px auto 0;
  background: rgba(204, 204, 204, 0.4);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}

.top_reserve_section .reserve_link::after{
  content:'';
  width:110px;
  height:20px;
  background-image: url('../img/common/icon_arrow_right_white.svg');
  background-size:contain;
  background-position: right;
  position: absolute;
  right:50px;
  top:0;
  bottom:0;
  margin:auto;
}

.top_reserve_section .reserve_link + .reserve_link{
  margin-top: 48px;
}


.top_map_section{
  height:560px;
}

.top_map_section iframe{
  display: block;
  width:100%;
  height:100%;
}

/*
------------------------------------
フォームのポップアップ
------------------------------------
*/

.form_popup{
  position: fixed;
  top:0;
  left:0;
  z-index: 100;
  width: 100%;
  height:100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0,0,0,0.8);
  transition-duration: 0.7s;
  opacity: 0;
  pointer-events: none;
}

.form_popup.show{
  opacity: 1;
  pointer-events: auto;
}

.form_popup .form_popup_frame{
  width: 568px;
  height: 75vh;
  position: relative;
  background-color: #EEEEEECC;
  border-radius: 20px;
}

.form_popup .form_popup_inner{
  height:100%;
  overflow-y: scroll;
}

.form_popup .form_popup_close{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  padding:6px;
  right:-6px;
  bottom:calc(100% + 12px);
  cursor: pointer;
}
.form_popup .form_popup_close::after{
  content:'';
  width:30px;
  height:30px;
  background-image: url('../img/common/icon_close_white.svg');
}

.form_popup .form_popup_contents{
  padding:24px 60px 56px;
}

.form_popup .form_head{
  font-size: 36px;
  font-weight: 500;
  line-height:1.2;
  text-align: center;
  color:#fff;
}

.form_popup .form_block{
  margin-top: 48px;
}

.form_popup .form_line + .form_line{
  margin-top: 24px;
}

.form_popup .form_label{
  display: flex;
  align-items: center;
  line-height:1.2;
  color:#fff;
} 
.form_popup .form_label::after{
  content:'※';
  color: #FF0505;
  line-height:1.2;
  margin-left: 8px;
}

.form_popup .form_label.free::after{
  content:none;
}

.form_popup .form_input{
  margin-top: 8px;
}

.form_popup .form_input input[type="date"],
.form_popup .form_input input[type="text"],
.form_popup .form_input input[type="tel"],
.form_popup .form_input input[type="numer"],
.form_popup .form_input input[type="email"],
.form_popup .form_input select{
  display: block;
  width: 100%;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #000;
  background-color: #fff;
  padding:0 12px;
}

.form_popup .form_input textarea{
  display: block;
  width: 100%;
  height: 200px;
  border-radius: 5px;
  border: 1px solid #000;
  background-color: #fff;
  padding:12px;
}

.form_popup .privacy_area{
  margin-top: 48px;
} 

.form_popup .privacy_text{
  color:#000;
  line-height: 1.8;
}

.form_popup .privacy_text a{
  color:#00A0E9;
  text-decoration: underline;
}

.form_popup .submit_area{
  margin-top: 32px;
}

.form_popup .submit_area .submit{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 241px;
  height: 46px;
  border-radius: 5px;
  border: 1px solid #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color:#000;
  transition-duration: 0.4s;
  cursor: pointer;
  margin:0 auto;
}

@media(any-hover:hover){
  .form_popup .submit_area .submit:hover{
    color:#fff;
    background-color: #000;
  }
}

/*
------------------------------------
フッター
------------------------------------
*/
footer{
  padding:88px 0 24px;
  background-color: #000;
  position: relative;
}

footer .pagetop{
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
  color:#fff;
  white-space: nowrap;
  cursor: pointer;
  position: absolute;
  left:0;
  right:0;
  top:-30px;
  margin:auto;
  z-index: 3;
}

footer .pagetop::before{
  content:'';
  width:76px;
  height:36px;
  background-image: url('../img/common/pagetop.png');
  background-size: contain;
  margin-bottom: 16px;
}

footer .footer_inner{
  max-width: 1200px;
  margin:0 auto;
  padding:0 20px;
}

footer .footer_contents{
  position: relative;
  display: flex;
}

footer .banner_list{

}

footer .banner_card{
  display: block;
  width:136px;
  /* aspect-ratio: 1/0.42; */
}

footer .banner_card img{
  width:100%;
  height:100%;
  object-fit: cover;
}

footer .banner_card + .banner_card{
  margin-top: 26px;
}

footer .footer_border{
  width: 1px;
  /* height: 112px; */
  background-color: #fff;
  margin:0 32px;
} 

footer .company_area{
  padding-top: 5px;
  display: flex;
  align-items: flex-end;
}

footer .company_area .company_contents{
  width: 100%;
}

footer .company_name{
  font-weight: 700;
  line-height: 1.5;
  color:#fff;
}

footer .company_address{
  margin-top: 4px;
  font-weight: 700;
  line-height: 1.5;
  color:#fff;
}

footer .contact_button{
  margin-top: 8px;
  cursor: pointer;
  width: 228px;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height:1.3;
  color: #000000;
}

footer .insta_area{
  position: absolute;
  right:0;
  top:0;
}


footer .insta{
  font-weight: 700;
  color:#fff;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

footer .insta::after{
  content:'';
  width:31px;
  height:31px;
  background-image: url('../img/common/icon_insta_white.svg');
  background-size: contain;
  flex-shrink: 0;
  margin-left: 14px;
}

footer .footer_copy{
  margin-top: 24px;
  text-align: center;
  color:#fff;
  line-height: 1.3;
  text-align: center;

}