@charset "UTF-8";
/*------------------------------------------------------------------------------
  reset PC
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Inter", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-style: normal;
}

html {
  color: #fff;
  background: #000;
  font-size: 16px;
  line-height: 1.6;
  word-break: break-all;
  overflow-x: hidden;
}

body {
  background: #000;
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

figure,
input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

/* --------------------------------
common
----------------------------------- */
h2{
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}

section .section_inner{
  max-width: 96%;
  width: 1030px;
  margin: 0 auto;
}

.fix{
  position: fixed;
  top: 144px;
  right: 0;
  left: auto;
  bottom: auto;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  max-width: none;
  width: auto;
  height: auto;
  overflow: visible;
  color: inherit;
  z-index: 2147483647;
  transform: translateZ(0);
  backface-visibility: hidden;
  box-sizing: border-box;
}

/* Safari のみ：右から 20px 内側に寄せる */
html.safari .fix{
  right: 20px;
}

.fix[popover] {
  inset: auto;
  position: fixed;
  top: 144px;
  right: 0;
  left: auto;
}
.fix .fix_btn a{
  display: block;
  color: #fff;
  writing-mode: vertical-rl;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
  border: 1px solid #FFF;
  border-right: none;
  background-color: #000;
  padding: 56px 19px 18px;
  position: relative;
  letter-spacing: 0.1px;
  transition: left 0.5s ease;
}
.fix .fix_btn a::before{
  content: "3分で完結";
  background-color: #fff;
  border-radius: 4px 0 0 0;
  color: #000;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  writing-mode: horizontal-tb;
  position: absolute;
  top: 0;
  width: 100%;
  padding: 4px 0;
  right: 0;
}
.fix .fix_btn.tel_btn {
  margin-bottom: 12px;
}
.fix .fix_btn.tel_btn a::after{
  content: "";
  display: block;
  background: url(../img/tel_icon.svg) no-repeat center;
  width: 13.422px;
  height: 13.422px;
  position: absolute;
  left: 43%;
  top: 38px;
}
.fix .fix_btn.mail_btn a::after{
  content: "";
  display: block;
  background: url(../img/mail_icon.svg) no-repeat center;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 40%;
  top: 38px;
}
.fix .fix_btn a:hover{
  background: linear-gradient(180deg, #01778E 0%, #00404C 100%);
}
.fade-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* --------------------------------
mainimg
----------------------------------- */
section.mainimg {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

section.mainimg .mainimg_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

section.mainimg .mainimg_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.mainimg .mainimg_inner{
  max-width: 1030px;
  width: 96%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  /* 1440×900 基準：横・縦のどちらかが狭い方に合わせて同じ比率で縮小 */
  --mainimg-scale: min(min(100vw, 1440px) / 1440px, min(100vh, 900px) / 900px);
}

section.mainimg .mainimg_corner_logo {
  position: absolute;
  top: 45px;
  left: 0;
  z-index: 5;
  width: 187px;
  max-width: none;
  height: auto;
}

section.mainimg .mainimg_corner_logo img {
  width: 100%;
  height: auto;
  display: block;
}

section.mainimg .mainimg_hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  transform: translateY(-14vh);
}

section.mainimg .mainimg_heading {
  display: block;
  margin: 0 auto 2vh;
  text-align: center;
  width: 100%;
  max-width: none;
}

section.mainimg .mainimg_title {
  width: min(749px, calc(100dvw - 40px));
  max-width: calc(100dvw - 40px);
  height: auto;
  z-index: 3;
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

section.mainimg .mainimg_lead {
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 30px;
  font-weight: 600;
  line-height: 1.0;
}

section.mainimg .mainimg_inner .scrolldown{
  position: absolute;
  left: 50%;
  bottom: 8vh;
  z-index: 3;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* --------------------------------
section01
----------------------------------- */
section.sec01 .section_inner{
  width: 1188px;
  max-width: 100%;
  margin: 64px auto 160px;
  padding-left: 80px;
}

section.sec01 .sec01_layout{
  display: flex;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 80px);
}

section.sec01 .sec01_content{
  flex: 1;
  min-width: 0;
}

section.sec01 .sec01_content h2{
  margin-bottom: 22px;
    font-size: 56px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.025em;
  }

section.sec01 .sec01_content h2 .sec01_quote_mark{
  font-weight: 100;
  letter-spacing: 0.08em;
  display: inline-block;
}

section.sec01 .sec01_content h2 .sec01_quote_open{
  margin-left: -0.5em;
}

section.sec01 .sec01_content h2 .sec01_quote_close{
  margin-right: -0.5em;
}

section.sec01 .sec01_content p{
  line-height: 2;
  font-weight: 300;
}

section.sec01 .sec01_media{
  /* 固定幅+shrink禁止だとテキストだけ潰れるので、画像側も画面幅で縮むようにする */
  flex: 0 1 619px;
  max-width: 51%;
}

section.sec01 .sec01_media img{
  width: 100%;
  height: auto;
  border-radius: 10px;
}

section.sec01 .sec01_media img.pc{
  display: block;
}

section.sec01 .sec01_media img.sp{
  display: none;
}


/* --------------------------------
section02
----------------------------------- */
section.sec08 .section_inner {
  margin: 30px auto 105px;
  width: 1188px;
  max-width: 100%;
  padding: 0 20px;
}

section.sec08 .video_block {
  --video-frame-gutter: 0;
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #4A5565;
  box-sizing: border-box;
  background: #000;
  padding-inline: var(--video-frame-gutter);
  margin: 80px auto 64px;
}

section.sec08 .video_block_media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}

section.sec08 .video_block_sound_btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

section.sec08 .video_block_sound_btn:hover {
  background: rgba(0, 0, 0, 0.72);
  border-color: rgba(255, 255, 255, 0.5);
}

section.sec08 .video_block_sound_btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

section.sec08 .video_block_sound_btn_icon {
  display: flex;
  flex-shrink: 0;
}

section.sec08 .video_block_sound_icon {
  display: block;
}

section.sec08 .video_block_sound_btn:not(.is-unmuted) .video_block_sound_icon--on {
  display: none;
}

section.sec08 .video_block_sound_btn.is-unmuted .video_block_sound_icon--off {
  display: none;
}

section.sec08 .video_block_sound_btn_text--unmuted {
  display: none;
}

section.sec08 .video_block_sound_btn.is-unmuted .video_block_sound_btn_text--muted {
  display: none;
}

section.sec08 .video_block_sound_btn.is-unmuted .video_block_sound_btn_text--unmuted {
  display: inline;
}

section.sec08 .sec08_heading {
  text-align: center;
}

section.sec08 .sec08_heading h2{
  margin-bottom: 16px;
}

section.sec08 .sec08_heading p{
  font-size: 18px;
  font-weight: 300;
}

section.sec08 .sec08_feature_list{
  display: flex;
  width: 1080px;
  max-width: 100%;
  margin: 0 auto;
}

section.sec08 .sec08_feature_item{
  flex: 1;
  padding: 40px 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

section.sec08 .sec08_feature_item:nth-child(2){
  border-left: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
}

section.sec08 .sec08_feature_icon{
  width: auto;
  height: 32px;
  margin-bottom: 16px;
}

section.sec08 .sec08_feature_icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

section.sec08 .sec08_feature_title{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

section.sec08 .sec08_feature_text{
  font-size: 14px;
  color: #6A7282;
  line-height: 1.78;
  font-weight: 300;
}
/* --------------------------------
section03
----------------------------------- */
section.sec03 .sec03_layout{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 128px 0 94px;
}

section.sec03 .sec03_layout h2{
  margin-bottom: 24px;
  }

section.sec03 .sec03_bullets{
  margin-bottom: 16px;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 300;
}

section.sec03 .sec03_bullets li{
  position: relative;
  padding-left: 16px;
  margin: 12px 0;
}

section.sec03 .sec03_bullets li::before{
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #FFFFFF;
  border-radius: 50%;
  left: 0;
  top: 8px;
}

section.sec03 .sec03_compare{
  display: grid;
  gap: 32px;
}

section.sec03 .sec03_card{
  border: 1px solid #99A1AF;
  padding: 23px;
}

section.sec03 .sec03_card.is-new{
  position: relative;
  margin-top: 20px;
}

section.sec03 .sec03_card.is-muted{
  color: #4A5565;
}

section.sec03 .sec03_card_head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

section.sec03 .sec03_card.is-new .sec03_tag{
  position: absolute;
  top: -11px;
  left: 16px;
  padding: 0 12px;
  background: #000;
  height: 24px;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 200;
}

section.sec03 .sec03_name{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

section.sec03 .sec03_card.is-muted .sec03_name {
  font-size: 12px;
} 

section.sec03 .sec03_metric{
  font-size: 12px;
  border: 1px solid #99A1AF;
  padding: 0 8px;
  color: #FFFFFF;
  height: 26px;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

section.sec03 .sec03_card.is-muted .sec03_metric{
  color: #4A5565;
}

section.sec03 .sec03_bar{
  height: 12px;
  border-radius: 999px;
  background: #101828;
  overflow: hidden;
  margin-bottom: 8px;
}

section.sec03 .sec03_bar span{
  display: block;
  height: 100%;
  background: #FFFFFF;
  border-radius: 999px;
}

section.sec03 .sec03_card.is-muted .sec03_bar span{
  background: #4A5565;
}

section.sec03 .sec03_note{
  font-size: 12px;
  font-weight: 300;
  color: #99A1AF;
}

section.sec03 .sec03_card.is-muted .sec03_note{
  color: #4A5565;
}

section.sec03 .sec03_media_main{
  overflow: hidden;
  border: 1px solid #FFFFFF;
  background: #000;
}

section.sec03 .sec03_media_main_img{
  width: 100%;
  height: auto;
  display: block;
}

section.sec03 .sec03_media_thumbs{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

section.sec03 .sec03_thumb{
  position: relative;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

section.sec03 .sec03_thumb::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%);
  pointer-events: none;
}

section.sec03 .sec03_thumb img{
  width: 100%;
  height: auto;
  display: block;
}

section.sec03 .sec03_thumb.is-active{
  border: 2.1px solid #FFF;
}

section.sec03 .sec03_thumb.is-active::after{
  content: none;
}
/* --------------------------------
section04
----------------------------------- */

section.sec04{
  padding: 0 0 120px;
  background: radial-gradient(1200px 500px at 50% 0%, rgba(255,255,255,0.06), rgba(0,0,0,0)) , #000;
}

section.sec04 .section_inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 40px;
}

section.sec04 .section_inner h2{
  margin-bottom: 72px;
  width: 100%;
  text-align: center;
}

section.sec04 .sec04_stats{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

section.sec04 .sec04_stat{
  text-align: center;
  padding: 24px 24px 24px;
}

section.sec04 .sec04_stat + .sec04_stat{
  border-left: 1px solid #FFFFFF;
}

section.sec04 .sec04_stat_kicker{
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.115em;
  color: #E5E7EB;
  margin-bottom: 20px;
}

section.sec04 .sec04_stat_value{
  font-size: 108px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

section.sec04 .sec04_stat_unit{
  font-size: 32px;
  font-weight: 200;
  color: #99A1AF;
  margin-left: 0;
  transform: translateY(-0.3em);
}

section.sec04 .sec04_stat_caption{
  font-size: 16px;
  color: #E5E7EB;
  letter-spacing: 0.08em;
  font-weight: 300;
}

section.sec04 .sec04_stat_caption .sec04_stat_caption_mark{
  font-size: 11px;
}

section.sec04 .sec04_stat_caption_note{
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #99A1AF;
  font-weight: 300;
}

section.sec04 .sec04_stat_text{
  font-size: 37px;
  font-weight: 200;
  color: #99A1AF;
  margin-left: 0;
  display: inline-block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 1;
  align-self: flex-end;
  transform: translateY(-0.1em);
  letter-spacing: 0.18em;
}

/* --------------------------------
section05
----------------------------------- */
section.sec02{
  background: #000;
  --sec02-scale-p: 0;
  --sec02-grad-p: 0;
  --sec02-text-p: 0;
  --sec02-scale: 1;
  --sec02-gap-after-parallax: 0;
  overflow-x: clip;
}

section.sec02 .sec02_pin{
  height: 220vh;
  position: relative;
  margin-bottom: var(--sec02-gap-after-parallax);
  overflow-x: clip;
}

section.sec02 .sec02_sticky{
  position: sticky;
  top: 0;
  height: 100vh;
}

section.sec02 .sec02_sticky .section_inner{
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

section.sec02 .sec02_media{
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  contain: paint;
}

section.sec02 .sec02_media_inner{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: translateZ(0) scale(var(--sec02-scale));
  transform-origin: center center;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

section.sec02.is-mobile-parallax .sec02_media_inner{
  transform: translateZ(0) scale(1) !important;
  will-change: opacity;
}

section.sec02.is-mobile-parallax .sec02_media_text{
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.45s ease-out;
}

section.sec02.is-mobile-parallax.is-mobile-text-visible .sec02_media_text{
  opacity: 1;
}

section.sec02 .sec02_media_visual{
  position: relative;
  width: 100%;
  height: 100%;
}

section.sec02 .sec02_media_img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

section.sec02 .sec02_media_img.pc {
  display: block;
}

section.sec02 .sec02_media_img.sp {
  display: none;
}

section.sec02 .sec02_media_gradient{
  position: absolute;
  inset: 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.86) 70%, rgba(0,0,0,1) 100%);
  top: auto;
  opacity: var(--sec02-grad-p);
  pointer-events: none;
  z-index: 1;
}

section.sec02 .sec02_media_text{
  position: absolute;
  left: 50%;
  bottom: 8.4%;
  transform: translateX(-50%) translateY(calc(24px * (1 - var(--sec02-text-p))));
  width: min(920px, 92%);
  text-align: center;
  opacity: var(--sec02-text-p);
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s linear;
  will-change: transform, opacity;
  z-index: 2;
}

section.sec02 .sec02_media_text h2{
  margin-bottom: 30px;
}

section.sec02 .sec02_media_text h2 .sec02_h2_after_comma{
  letter-spacing: -0.3em;
}

section.sec02 .sec02_media_text p{
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  text-align: center;
}

section.sec02 .sec02_training{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 8vw, 132px);
  align-items: start;
}

section.sec02 .sec02_training_chart{
  padding-top: 38px;
}

section.sec02 .sec02_training_row + .sec02_training_row{
  margin-top: 24px;
}

section.sec02 .sec02_training_head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 8px;
  line-height: 1.3;
}

section.sec02 .sec02_training_head .label-sub{
  font-size: 12px;
}

section.sec02 .sec02_training_head.is-muted{
  color: #6A7282;
}

section.sec02 .sec02_training_bar{
  height: 8px;
  border-radius: 999px;
  background: #101828;
  overflow: hidden;
}

section.sec02 .sec02_training_bar span{
  display: block;
  height: 100%;
  border-radius: 999px;
  background: #fff;
}

section.sec02 .sec02_training_bar.is-muted span{
  background: #4A5565;
}

section.sec02 .sec02_schedule h3{
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

section.sec02 .sec02_schedule_list{
  border: 1px solid #F3F4F6;
}

section.sec02 .sec02_schedule_list li{
  display: grid;
  grid-template-columns: 96px 1fr;
}

section.sec02 .sec02_schedule_list li + li{
  border-top: 1px solid #F3F4F6;
}

section.sec02 .sec02_schedule_list .day{
  padding: 28px 24px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
}

section.sec02 .sec02_schedule_list li > p:last-child{
  padding: 16px 0;
  font-size: 12px;
  color: #99A1AF;
  line-height: 1.3;
  font-weight: 300;
  align-self: center;
}

section.sec02 .sec02_schedule_list li > p:last-child span{
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 4px;
}

/* --------------------------------
section06
----------------------------------- */
section.sec05{
  padding: 44px 0 136px;
  background: #000;
}

section.sec05 .sec05_layout{
  display: grid;
  grid-template-columns: 1fr 1.27fr;
  gap: 58px;
  align-items: start;
}

section.sec05 .sec05_specs h2{
  margin-bottom: 32px;
}

section.sec05 .sec05_specs_list{
  border-top: 0.8px solid #FFFFFF;
}

section.sec05 .sec05_specs_list > div{
  display: grid;
  grid-template-columns: 30% 70%;
  padding: 20px 0;
  border-bottom: 0.8px solid #FFFFFF;
}

section.sec05 .sec05_specs_list dt{
  font-size: 12px;
  color: #6A7282;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

section.sec05 .sec05_specs_list dd{
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  line-height: 1.4;
  text-align: right;
}

section.sec05 .sec05_gallery_main{
  border: 1px solid #FFFFFF;
  overflow: hidden;
}

section.sec05 .sec05_gallery_main_img{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

section.sec05 .sec05_gallery_thumbs{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

section.sec05 .sec05_gallery_thumb{
  position: relative;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  border: 1px solid #4A4A4A;
  box-sizing: border-box;
}

section.sec05 .sec05_gallery_thumb::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%);
  pointer-events: none;
}

section.sec05 .sec05_gallery_thumb img{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

section.sec05 .sec05_gallery_thumb.is-active{
  border: 1px solid #FFFFFF;
}

section.sec05 .sec05_gallery_thumb.is-active::after{
  content: none;
}

/* --------------------------------
section07
----------------------------------- */
section.sec06 .section_inner ul.sec06_list{
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
section.sec06 .section_inner h2{
  text-align: center;
  margin-bottom: 64px;
}
section.sec06 .section_inner ul.sec06_list li{
  width: calc((100% - 64px) / 3);
}
section.sec06 .section_inner ul.sec06_list li h3{
  font-weight: 600;
  font-size: 20px;
  width: 100%;
  padding: 180px 0 20px 20px;
  border: 1px solid #FFFFFF;
  margin-bottom: 24px;
  border-radius: 4px;
  background: url(../img/sec06_img01.webp) no-repeat center;
  background-size: cover;
}
section.sec06 .section_inner ul.sec06_list li p{
  font-size: 15px;
  font-weight: 300;
}
section.sec06 .section_inner ul.sec06_list li:nth-child(2) h3{
  background: url(../img/sec06_img02.webp) no-repeat center;
  background-size: cover;
}
section.sec06 .section_inner ul.sec06_list li:nth-child(3) h3{
  background: url(../img/sec06_img03.webp) no-repeat center;
  background-size: cover;
}
section.sec06 .section_inner ul.sec06_list li:nth-child(4) h3{
  background: url(../img/sec06_img04.webp) no-repeat center;
  background-size: cover;
}
section.sec06 .section_inner ul.sec06_list li:nth-child(5) h3{
  background: url(../img/sec06_img05.webp) no-repeat center;
  background-size: cover;
}
section.sec06 .section_inner ul.sec06_list li:nth-child(6) h3{
  background: url(../img/sec06_img06.webp) no-repeat center;
  background-size: cover;
}


/* --------------------------------
section0８
----------------------------------- */
section.sec07{
  padding: 120px 0;
}

section.sec07 .section_inner h2{
  text-align: center;
  margin-bottom: 64px;
}

section.sec07 .sec07_voice_list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #414141;
}

section.sec07 .sec07_voice_card{
  background: #1C2028;
  padding: 52px 44px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section.sec07 .sec07_voice_card + .sec07_voice_card{
  border-left: 1px solid #414141;
}

section.sec07 .sec07_voice_card .quote{
  position: relative;
  padding-left: 26px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  letter-spacing: -0.025em;
}

section.sec07 .sec07_voice_card .quote::before{
  content: "";
  position: absolute;
  left: 0;
  top: -16px;
  width: 26px;
  height: 32px;
  background: url(../img/sec07_icon01.svg) no-repeat center;
  background-size: contain;
}

section.sec07 .sec07_voice_card .meta{
  position: relative;
  display: block;
  padding-left: 44px;
  font-size: 10px;
  color: #99A1AF;
  letter-spacing: 0.01em;
  font-weight: 300;
}

section.sec07 .sec07_voice_card .meta::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url(../img/sec07_icon02.svg) no-repeat center;
  background-size: contain;
}

section.sec07 .sec07_voice_card .meta span{
  display: block;
  color: #4A5565;
  letter-spacing: 0;
}

/* --------------------------------
section09 contact
----------------------------------- */
section.sec09{
  position: relative;
}
section.sec09::before{
    content: "";
    width: 100%;
    height: 220px;
    background: url(../img/sec03_bg.webp) no-repeat center;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}
section.sec09 .section_inner{
  width: 624px;
  position: relative;
  z-index: 1;
  margin-top: 0;
}
section.sec09 .section_inner h2{
  text-align: center;
  margin-bottom: 18px;
  line-height: 1.5;
}

section.sec09 .sec09_lead{
  text-align: center;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 48px;
}

/* --------------------------------
c-footer
----------------------------------- */
.top{
  width: 80px;
  margin-left: auto;
  margin-right: 120px;
}
.top a{
  display: block;
  border: 1px solid #4D4D4D;
  border-bottom: none;
  padding: 12px 0 12px 18px;
  font-size: 10px;
  position: relative;
  font-weight: 300;
}
.top a::after{
  content: "";
  display: block;
  background: url(../img/top.svg) no-repeat center;
  width: 8px;
  height: 10px;
  position: absolute;
  right: 12px;
  top: 15px;
}
.l-footer {
  padding: 45px 0 106px;
  border-top: 1px solid #4D4D4D;
}
.l-footer a{
  color:#fff;
  text-decoration: none;
  font-size: 10px;
}
.l-footer-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.l-footer-content a:hover{
  text-decoration: underline;
}
.l-footer-content__inner {
  color: #fff;
  font-size: 10px;
  font-weight: 300;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}

.l-footer__address{
  display: flex;
  gap: 20px;
}

.l-footer__contact {
  margin-top: 2px;
}

.hs-form-6cd14e3d-50e9-4c54-9ef8-c877e73910b3_5a182785-c22c-4a03-b1c0-fb3570bcc09e .hs-form-field label:not(.hs-error-msg){
  color: #fff;
}

.pc{ display: block; }
.sp{ display: none; }

.mainimg_bg_pc{ display: block; }
.mainimg_bg_sp{ display: none; }

@media only screen and (max-width: 1024px) {

/* --------------------------------
section01
----------------------------------- */
section.sec01 .section_inner{
  padding: 0 20px;
  margin: 80px auto 64px;
}

section.sec01 .sec01_layout{
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
section.sec01 .sec01_content{
  flex: none;
  width: 100%;
}

section.sec01 .sec01_content h2{
  font-size: 40px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  text-align: center;
}

section.sec01 .sec01_content p {
  font-size: 14px;
  text-align: center;
}

section.sec01 .sec01_media{
  flex: none;
  width: 60%;
  max-width: none;
  margin: 0 auto;
}
section.sec01 .sec01_media img.pc{
  display: none;
}
section.sec01 .sec01_media img.sp{
  display: block;
}

/* --------------------------------
section02
----------------------------------- */
section.sec08 .sec08_feature_list {
  flex-direction: column;
  align-items: stretch;
}

section.sec08 .sec08_feature_item{
  width: 100%;
  max-width: 100%;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
}

section.sec08 .sec08_feature_title{
  text-align: center;
}

section.sec08 .sec08_feature_text{
  text-align: center;
  min-height: 3.6em;
}

section.sec08 .sec08_feature_item:nth-child(2) {
  border-top: 1px solid #FFFFFF;
  border-right: 0;
  border-bottom: 1px solid #FFFFFF;
  border-left: 0;
}


/* --------------------------------
section03
----------------------------------- */
section.sec03 .sec03_layout {
  grid-template-columns: 1fr;
  padding: 0;
}

section.sec03 .section_inner h2 {
  text-align: left;
  letter-spacing: -0.05em;
}

section.sec03 .sec03_bullets {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 0;
}

section.sec03 .sec03_compare {
  gap: 24px;
}

section.sec03 .sec03_bullets li {
  padding-left: 14px;
  margin: 8px 0;
}

section.sec03 .sec03_name {
  font-size: 14px;
}

section.sec03 .sec03_media {
margin-bottom: 130px;
}
/* --------------------------------
section04
----------------------------------- */


}

@media only screen and (max-width: 768px) {
  .sp{ display: block; }
  .pc{ display: none; }

  section .section_inner{
    width: 100%;
    padding: 0 20px;
    margin: 80px auto;
  }

  section .section_inner h2{
    text-align: center;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
  }

/* --------------------------------
mainimg
----------------------------------- */
  section.mainimg .mainimg_inner{
    width: 100%;
  }

  section.mainimg .mainimg_hero {
    transform: translateY(-18vh);
  }

  section.mainimg .mainimg_heading {
    margin: 0 auto 1vh;
  }

  section.mainimg .mainimg_corner_logo {
    width: 140px;
    max-width: 140px;
    margin-left:20px;
  }

  section.mainimg .mainimg_title {
    width: min(335px, calc(100dvw - 40px));
    max-width: calc(100dvw - 40px);
  }

  section.mainimg .mainimg_lead {
    font-size: 14px;
  }

/* --------------------------------
section01
----------------------------------- */
  section.sec01 .sec01_media{
    width: 80%;
  }

/* --------------------------------
section02
----------------------------------- */
section.sec02 .section_inner {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: none;
}

section.sec02 .sec02_media_text {
  text-align: left;
  bottom: 12%;
}

section.sec02 .sec02_media_inner{
  transform: translateZ(0) scale(1);
  will-change: opacity;
}

section.sec02 .sec02_media_img.sp {
  object-position: center center;
  display: block;
}

section.sec02 .sec02_media_img.pc {
  display: none;
}

section.sec02 .sec02_media_text h2 {
  font-size: 28px;
  margin-bottom: 16px;
  text-align: center;
}

section.sec02 .sec02_training_chart{
  padding-top: 0;
}

section.sec02 .sec02_training {
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 0;
  margin-bottom: 80px;
  padding: 0 20px;
}

section.sec02 .sec02_schedule h3 {
  font-size: 18px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  text-align: center;
}

section.sec02 .sec02_schedule_list .day {
  text-align: center;
}

section.sec02 .sec02_schedule .note {
  font-size: 10px;
  margin-top: 8px;
}

section.sec02 .sec02_media_text p {
  text-align: left;
}

/* --------------------------------
section03
----------------------------------- */

section.sec03 .sec03_media {
  margin-bottom: 0px;
  }

/* --------------------------------
section04
----------------------------------- */
section.sec04 {
  padding: 0;
  margin-bottom: 130px;
}

section.sec04 .section_inner {
  flex-direction: column;
}

section.sec04 .section_inner h2 {
  margin-bottom: 4px;
}

section.sec04 .section_inner > p {
  font-size: 8px;
  letter-spacing: 0;
  margin-bottom: 0;
}
section.sec04 .sec04_stats {
  grid-template-columns: 1fr;
}

section.sec04 .sec04_stat {
  padding: 48px 24px;
}

section.sec04 .sec04_stat_value {
  font-size: 100px;
}

section.sec04 .sec04_stat_unit {
  font-size: 26px;
}

section.sec04 .sec04_stat + .sec04_stat {
  border-left: 0;
  border-top: 1px solid #FFFFFF;
}

  section.sec04 .sec04_stat_kicker{
    font-size: 28px;
    margin-bottom: 8px;
  }

/* --------------------------------
section05
----------------------------------- */
section.sec05 {
  padding: 0;
}

section.sec05 .sec05_layout {
  grid-template-columns: 1fr;
  gap: 32px;
}

section.sec05 .sec05_specs h2 {
  margin-bottom: 40px;
}

section.sec05 .sec05_specs_list > div {
  padding: 28px 0;
}

section.sec05 .sec05_specs_list dt {
  font-size: 12px;
}

/* --------------------------------
section06
----------------------------------- */
section.sec06 .section_inner h2 {
  margin-bottom: 40px;
}

  section.sec06 .section_inner ul.sec06_list{
    gap: 28px 8px;
  }
  
  section.sec06 .section_inner ul.sec06_list li{
    width: calc((100% - 8px) / 2);
  }
  
  section.sec06 .section_inner ul.sec06_list li h3{
    font-size: 16px;
    padding: 76px 0 3px 6px;
    margin-bottom: 16px;
  }
  
  section.sec06 .section_inner ul.sec06_list li p{
    font-size: 12px;
  }
  
/* --------------------------------
section07
----------------------------------- */
section.sec07 {
  padding: 0;
}

section.sec07 .section_inner h2 {
  margin-bottom: 40px;
}

section.sec07 .sec07_voice_list {
  grid-template-columns: 1fr;
}

section.sec07 .sec07_voice_card {
  align-items: center;
  padding: 32px;
  min-height: 192px;
}

section.sec07 .sec07_voice_card + .sec07_voice_card {
  border-left: 0;
  border-top: 1px solid #414141;

}

section.sec07 .sec07_voice_card .quote {
  text-align: center;
  padding-left: 18px;
}

/* --------------------------------
section08
----------------------------------- */
section.sec08 .section_inner{
  margin: 0 auto;
}

section.sec08 .sec08_heading h2{
  margin-bottom: 18px;
}

section.sec08 .sec08_heading p {
  font-size: 14px;
  text-align: left;
}

section.sec08 .video_block {
  margin: 24px auto 40px;
  height: auto;
  --video-frame-gutter: 0;
}


/* --------------------------------
section09
----------------------------------- */
section.sec09 .sec09_lead {
  font-size: 14px;
}

/* --------------------------------
footer
----------------------------------- */
  .fix{
    display: none !important;
  }
  .fix[popover]:popover-open {
    display: none !important;
  }

  .l-footer{
    padding: 48px 32px 64px;
  }

  .l-footer__address{
    flex-direction: column;
    gap: 0;
  }
  .l-footer-content__inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .l-footer__info,.l-footer__contact{
    flex-direction: column;
    gap: 0;
  }
  .l-footer__contact span.pc{
    display: none!important;
  }
  .top{
    margin-right: 18px;
  }
}

@media only screen and (max-width: 440px) {
  /* --------------------------------
mainimg
----------------------------------- */
  .mainimg_bg_sp{ display: block; }
  .mainimg_bg_pc{ display: none; }

  section.mainimg .mainimg_heading {
    width: 100%;
    max-width: none;
    margin: 0 0 1vh;
  }

  section.mainimg .mainimg_bg img.mainimg_bg_sp{
    object-fit: cover;
    transform: translateY(-4vh);
    object-position: center;
  }

  section.mainimg .mainimg_hero {
    transform: translateY(-18vh);
  }

  section.mainimg .mainimg_inner .scrolldown{
    bottom: 20vh;
  }

/* --------------------------------
section04
----------------------------------- */

  section.sec04 {
    padding: 0;
    margin-bottom: 0;
  }

  section.sec04 .sec04_stat_value{
    font-size: 84px;
    gap: 2px;
  }

  section.sec04 .sec04_stat_unit{
    font-size: 22px;
  }

  section.sec04 .sec04_stat_text{
    font-size: 30px;
    letter-spacing: 0.1em;
  }
  
}
