@charset "UTF-8";

@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=Noto+Serif+JP:wght@200..900&family=Oswald:wght@200..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

:root {
  --semi-fontsize: 0.7rem;
  --normal-fontsize: 0.88rem;
  --middle-fontsize: 0.95rem;
  --big-fontsize: 1.2rem;
  --line-height: 1.6;
}

@media screen and (min-width: 600px) {
  :root {
    --semi-fontsize: 0.78rem;
    --normal-fontsize: 0.92rem;
    --middle-fontsize: 1.1rem;
    --big-fontsize: 1.4rem;
    --line-height: 1.7;
  }
}

@media screen and (min-width: 1024px) {
  :root {
    --semi-fontsize: 0.83rem;
    --normal-fontsize: 1rem;
    --middle-fontsize: 1.35rem;
    --big-fontsize: 1.6rem;
    --line-height: 1.8;
  }
}

@media screen and (min-width: 1536px) {
  :root {
    --semi-fontsize: 0.97rem;
    --normal-fontsize: 1.15rem;
    --middle-fontsize: 1.5rem;
    --big-fontsize: 2.0rem;
    --line-height: 1.9;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: var(--normal-fontsize);
  font-style: normal;
  color: #231815;
  line-height: var(--line-height);
  letter-spacing: 0.01rem;
  font-feature-settings: 'palt';
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  background-color: #F0FAFF;
}

p {
  word-break: break-word;
  font-size: var(--normal-fontsize);
  line-height: var(--line-height);
}

@media screen and (min-width: 1024px) {
  p{
    font-weight: 500;
  }
}

a {
  text-decoration: none;
  color: #000;
  font-size: var(--normal-fontsize);
  line-height: var(--line-height);
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  line-height: 0;
}
table {
  border-collapse: collapse;
}
ol, ul {
    list-style: none;
}
button{
  outline: none;
  border: 0;
}
a:link, a:visited, a:active, a:hover {
  overflow: hidden;
  outline: none;
}

.sp-only {
  display: block;
}
.tb-only{
  display: none;
}
.pc-only {
  display: none;
}

@media screen and (min-width: 599px) {
  .sp-only {
    display: none;
  }
  .tb-only {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .pc-only {
    display: block;
  }
}

/*-- ここからHEADER --*/

.site-header {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  z-index: 100;
  /* background: rgba(255,255,255,0.01);
  box-shadow: 0 3px 15px rgba(0,0,0,0.2); */
}

.header-inner {
  display: flex;
  align-items: center;
  padding-inline: 1rem;
  min-height: 64px;
}

.site-logo {
  margin: 0;
}
.site-logo img {
  width: 130px;
}

.hamburger {
  margin-inline-start: auto;
  width: 28px;
  height: 24px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  inset-inline-start: 0;
  width: 100%;
  height: 1px;
  background: #f2f2f2;
  transition: transform .3s ease, opacity .3s ease;
}

.hamburger span:nth-child(1) { inset-block-start: 0; }
.hamburger span:nth-child(2) { inset-block-start: 11px; }
.hamburger span:nth-child(3) { inset-block-start: 22px; }

.hamburger.is-open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.global-nav {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.92);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.global-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.global-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.global-nav li {
  margin-block: 1.5rem;
}

.global-nav a {
  font-size: 1rem;
  letter-spacing: .15em;
  color: #fff;
  text-decoration: none;
}


@media (min-width: 1280px) {
  .header-inner {
    padding-inline: 2rem;
  }

  .hamburger {
    display: none;
  }

  .global-nav {
    position: static;
    opacity: 1;
    pointer-events: auto;
    background: none;
    margin-inline-start: auto;
    display: block;
  }

  .global-nav ul {
    display: flex;
    gap: 2rem;
  }

  .global-nav li {
    margin: 0;
    font-size: .85rem;
  }

  .global-nav a {
    color: #d9d9d9;
    position: relative;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .global-nav a::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    inset-block-end: -6px;
    width: 100%;
    height: 1px;
    background: #ff0;
    opacity: 0;
    transform: translateY(4px);
    transition: .3s;
  }

  .global-nav a:hover::after {
    opacity: 1;
    transform: translateY(0);
  }
}
/*-- ここまでHEADER --*/

/* ここから 共通 */
.l-inner{
  padding: 6% 10%;
}

@media screen and (min-width: 1024px) {
  .l-inner{
    padding: 4rem 0;
    width: 900px;
    margin: auto;
  }
}

@media screen and (min-width: 1680px) {
  .l-inner{
    padding: 6rem 0 3rem;
    width: 940px;
  }
}

.marker-title {
  position: relative;
  display: inline-block;
}
.marker-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  height: 0.2rem;
  width: 0%;
  background: linear-gradient(to right, #093781, #1485cc) ;
  transition: width 0.5s ease-in-out;
}
.marker-title.active::after {
  width: 100%;
}
/* ここまで 共通 */

/* ここからMAIN VISUAL */
.global-bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.case-lp {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  z-index: 3;
  padding: 12% 6% 0;
  color: #fff;
  display: flex;
  align-items: center;
}

.case-lp__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 138, 201, 0.75) 0%,
    rgba(29, 102, 158, 0.67) 45%,
    rgba(18, 74, 122, 0.78) 100%
  );
  z-index: 1;
}

.case-lp__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8vw;
  width: 100%;
}

.case-lp__sub {
  font-size: 3.3vw;
  letter-spacing: .1rem;
  opacity: 0;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.15);
}

.case-lp__title {
  font-size: 7.7vw;
  letter-spacing: .1em;
  margin: .6rem 0 1.8rem;
  line-height: 1.4;
  opacity: 0;
  display: inline-block;
  position: relative;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.08),
    0 6px 18px rgba(0, 0, 0, 0.18);
}

.case-lp__desc {
  font-size: 3.6vw;
  line-height: 6.8vw;
  opacity: 0;
  text-shadow:
    0 1px 6px rgba(0, 0, 0, 0.12);
}

.k-line {
  position: absolute;
  left: 0;
  bottom: -0.15em;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #fff,
    transparent
  );
  transform: scaleX(0);
  transform-origin: center;
}

.case-lp__images {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(8px, 1.4vw, 24px);
}

.case-lp__images img {
  flex: 1;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  opacity: 0;
  transform: translateY(24px);
}

.case-lp__images img:nth-child(1) {
  transform: translateY(4px);
  z-index: 2;
}

.case-lp__images img:nth-child(2) {
  transform: translateY(-4px);
  margin-left: -40px;
  margin-bottom: 20px;
  z-index: 1;
}

@media (min-width: 600px) {
  .case-lp__images img {
    max-height: 420px;
  }
  .case-lp__inner {
    gap: 4rem;
  }
  .case-lp__title {
    margin: .6rem 0 3.2rem;
  }
  .case-lp__desc {
    font-size: 2.4vw;
    line-height: 2.2;
  }
}

@media (min-width: 1024px) {
  .case-lp {
    padding: 6%;
    min-height: 80vh;
  }

  .case-lp__inner {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .case-lp__text {
    flex: 0 0 55%;
    margin-bottom: 2rem;
  }

  .case-lp__sub {
    font-size: 1.3rem;
  }

  .case-lp__title {
    font-size: 3.1rem;
    line-height: 1.2;
  }

  .case-lp__desc {
    font-size: 1.05rem;
    line-height: 2.2;
    margin-top: 0;
  }

  .case-lp__images {
    display: flex;
    align-items: center;
    gap: 0;
  }

  .case-lp__images img {
    max-height: 260px;
  }

}

@media (min-width: 1220px) {
  .case-lp__images img {
    max-height: 320px;
  }
}

@media (min-width: 1440px) {
  .case-lp__title {
    font-size: 3.8rem;
  }

  .case-lp__desc {
    font-size: 1.1rem;
  }

  .case-lp__images img {
    max-height: 390px;
  }
  .case-lp__text {
    flex: 0 0 52%;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1900px) {
  .case-lp {
    padding: 8%;
  }
  .case-lp__inner {
    width: 1800px;
  }
  .case-lp__images img {
    max-height: 460px;
  }
  .case-lp__sub {
    font-size: 1.65rem;
  }
  .case-lp__title {
    font-size: 4.8rem;
    letter-spacing: 0.3rem;
    line-height: 1.4;
  }
  .case-lp__desc {
    font-size: 1.3rem;
    margin-top: 2rem;
  }
}
/* scroll */
.scroll_down{
  display: none;
}

@media screen and (min-width: 990px) {
  .scroll_down{
    display: block;
    position: absolute;
    top: 100vh;
    right: 4%;
    z-index: 99;
  }
  .scroll_down.hidden {
    display: none;
  }
  .scroll_down a{
    position: absolute;
    left: 10px;
    bottom: 110px;
    color: #F2F2F2;
    font-size: 12px;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: .2em;
    writing-mode: vertical-lr;
    text-decoration: none;
    text-transform: uppercase;
  }

  .scroll_down:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background:#F2F2F2;
    animation:
      circlemove 1.6s ease-in-out infinite,
      cirlemovehide 1.6s ease-out infinite;
  }

  @keyframes circlemove{
    0%{bottom:180px;}
    100%{bottom:0px;}
  }

  @keyframes cirlemovehide{
    0%{opacity:0}
    50%{opacity:1;}
    80%{opacity:0.9;}
    100%{opacity:0;}
  }

  .scroll_down:after{
    content:"";
    position: absolute;
    bottom:0;
    left:0;
    width: 1px;
    height: 180px;
    background:#FFF;
  }
}
/* scroll */

/* ここまでMAIN VISUAL */

/* fuwa */
.fade-up {
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.5s ease-out;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}
/* fuwa */

/* ここから intro */
.intro__contents {
  background: #fff;
}
.intro__wrap {
  max-width: 1200px;
  margin: auto;
  padding: 2.5rem 1.2rem;
}
.intro__section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.intro__text__wrap h2 {
  line-height: 1.4;
  margin-bottom: 1rem;
}
.intro__image {
  width: 60%;
  margin: auto;
  height: auto;
  display: block;
  border-radius: 0.5rem;
  object-fit: cover;
}
.intro__image img{
  border-radius: 20px;
}

@media (min-width: 600px) {
  .intro__wrap {
    padding: 8%;
  }
}

@media (min-width: 1024px) {
  .intro__section {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
  .intro__text__wrap h2 {
    margin-bottom: 2.5rem;
  }
  .intro__text__wrap {
    flex: 0 0 55%;
  }
  .intro__image {
    flex: 0 0 35%;
    width: 30%;
  }
}

@media (min-width: 1440px) {
  .intro__wrap {
    padding: 8% 0;
  }
  .intro__section {
    gap: 6rem;
  }
  .intro__image {
    width: 100%;
  }
}
/* ここまで intro */

/* ここから overlay */
.contents__wrap{
  position: relative;
  z-index: 1;
}
.contents__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 138, 201, 1) 0%,
    rgba(29, 102, 158, 1) 45%,
    rgba(18, 74, 122, 1) 100%
  );
}

/* ここまで overlay */

/* ここから point */
.reason__inner{
  padding: 8% 8% 0;
}

@media screen and (min-width: 1024px) {
  .reason__inner{
    padding: 6rem 0 0;
    width: 900px;
    margin: auto;
  }
}

@media screen and (min-width: 1680px) {
  .reason__inner{
    padding: 6% 0 0;
    width: 1200px;
  }
}

.reason__inner h2{
  border-left: 4px solid #FFF;
  color: #FFF;
  padding-left: 10px;
  margin-bottom: 15px;
}

.reason-cards {
  display: grid;
  gap: 1.2rem;
  padding: 1.2rem 0;
}

.reason-card {
  background: #FFF;
  padding: 1rem 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 30, 98, 0.05);
  position: relative;
  overflow: hidden;
}

.card-head {
  position: relative;
  margin-bottom: 0.7rem;
}

.card-head .ja {
  font-size: 1.4rem;
  font-weight: 700;
  color: #001e62;
}

.card-head .en {
  margin-top: 0.2rem;
  font-size: 0.9rem;
  color: #7493c6;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.05em;
}

.title {
  font-size: 18px;
  font-weight: 500;
  border-top: 1px solid #00C8D7;
  padding-top: 0.6rem;
}

.arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 32px;
  height: 32px;
  background: #00C8D7;
  border-top-left-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.arrow a {
  width: 8px;
  height: 8px;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  transform: rotate(45deg);
}

@media (min-width: 600px) {
  .reason-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 2rem 0 0;
  }

  .reason-card {
    padding: 1.5rem 1rem 3rem;
  }

  .card-head .en {
    margin-top: 0;
  }

  .title {
    font-size: 0.9rem;
  }

}

@media screen and (min-width: 1280px) {
  .reason-cards {
    gap: 2rem;
  }
  .reason-card {
    padding: 2.2rem 1rem 2.2rem 1.8rem;
  }
  .title {
    font-size: 1.3rem;
    margin: 0 0 0.6rem;
  }
}

@media screen and (min-width: 1680px) {
  .reason-card {
    padding: 2.5rem 2rem 2.5rem 2.5rem;
  }
  .card-head .ja {
    font-size: 1.6rem;
  }
}

.point__inner{
  padding: 0 0 4%;
}

@media screen and (min-width: 1680px) {
  .point__inner{
    padding: 1rem 0 3rem;
  }
}

.point-detail{
  margin: 8vw 10% 8vw 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background: #FFF;
  padding: 0 2rem 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 30, 98, 0.05);
}

.point-detail:nth-child(2n){
  margin: 8vw 0 8vw 10%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

@media screen and (min-width: 600px) {
  .point-detail {
    padding: 1rem 3rem 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .point-detail{
    padding: 4rem;
  }
}

@media screen and (min-width: 1366px) {
  .point-detail{
    margin: 6vw 16% 8vw 0;
    padding: 6rem;
  }
  .point-detail:nth-child(2n){
    margin: 8vw 0 8vw 16%;
  }
}

@media screen and (min-width: 1900px) {
  .point-detail{
    margin: 6vw 19% 6vw 0;
    padding: 8rem;
  }
  .point-detail:nth-child(2n){
    margin: 8vw 0 8vw 19%;
  }
}

.point-text {
  position: relative;
  padding-top: 3rem;
}

.point-text .number {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Inter", sans-serif;
  font-size: 4.4rem;
  font-weight: 700;
  color: #D5F1F4;
  line-height: 1;
  transform: translate(-30%, 10%);
  z-index: 1;
}

.title-ja {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  color: #001e62;
  z-index: 2;
}

.title-en {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
  margin: 0 0 1.5rem;
  color: #7493c6;
}

.point-text .lead {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.point-image {
  margin: 0.8rem 0 0;
}

.point-image img {
  width: 100%;
  border-radius: 14px;
  transform: translateY(8px);
}

@media (min-width: 600px) {
  .image-2nd {
    text-align: right;
  }
   .point-image img {
    width: 70%;
    max-width: 100%;
    height: auto;
    transform: translateY(12px);
    border-radius: 12px;
  }
}

@media (min-width: 1024px) {
  .point-inner {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    margin: 2rem 0 0;
  }
  .desc {
    flex: 2;
    max-width: 710px;
  }
  .point-image {
    flex: 1;
    margin: -4rem 0 0;
    line-height: 0;
  }
   .point-image img {
    width: 100%;
    max-width: 100%;
  }
  .point-text .number {
    font-size: 6rem;
    transform: translate(-30%, -10%);
  }
  .title-ja {
    font-size: 2.1rem;
    margin: 0 0 0 -0.2rem;
  }
  .title-en {
    font-size: 1rem;
    margin: 0 0 1.2rem;
  }
  .point-text .lead {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
}

@media (min-width: 1680px) {
  .point-inner {
    gap: 6rem;
  }
  .point-text .number {
    font-size: 8.2rem;
    transform: translate(-40%, -30%);
  }
}
/* ここまで point */

/* ここから difference */
.difference__contents{
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  line-height: 0;
}
.difference__inner{
  padding: 10% 8%;
  max-width: 1200px;
  margin: auto;
  line-height: 1.6;
}

@media screen and (min-width: 1024px) {
  .difference__inner{
    padding: 8%;
  }
}

@media screen and (min-width: 1680px) {
  .difference__inner{
    padding: 8rem 0;
  }
}

.difference__wrapper{
  background: #FFF;
  border-radius: 20px;
  padding: 8%;
}
.difference__wrapper h2{
  line-height: 1.4;
  margin-bottom: 2rem;
}
.difference__wrapper img{
  border-radius: 10px;
  margin: 1rem 0 0;
}
/* ここまで difference */

/* ここから moive */
/* .movie__contents{
  background: #FFF;
  position: relative;
}
.movie__inner{
  padding: 8% 8% 10%;
}
.movie__contents h2{
  text-align: center;
  line-height: 1.3;
  font-size: var(--big-fontsize);
  padding: 0 0 1rem;
}

.mv-preview {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1.2rem;
}

.mv-preview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-preview-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 3;
}

.mv-preview-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
  z-index: 5;
  transition: .25s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mv-preview-play-icon {
  width: 38%;
  height: 38%;
  display: block;
}

.mv-preview-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.mv-preview-play-icon {
  width: 0;
  height: 0;
  border-left: 24px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

.mv-modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.mv-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.8);
  opacity: 0;
  transition: opacity .3s ease;
}

.mv-modal.show .mv-modal-bg {
  opacity: 1;
}

.mv-modal-video {
  position: relative;
  width: 90vw;
  max-width: 1200px;
  height: auto;
  border-radius: 1rem;
  z-index: 20;
  transform: scale(.8);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}

.mv-modal.show .mv-modal-video {
  transform: scale(1);
  opacity: 1;
}

@media screen and (min-width: 600px) {
  .movie__inner{
    padding: 6% 8%;
  }
  .movie__contents h2{
    padding: 0 0 2rem;
  }
} */
/* ここまで movie */

/* ここから YouTube Gallery */
.yt-wrapper{
  background: #FFF;
  padding: 10% 8% 4%;
}

@media screen and (min-width: 1024px) {
  .yt-wrapper{
    padding: 8% 8% 0;
    margin: auto;
  }
}

.yt-container {
  margin: 0 auto;
  padding: 30px 0 0;
}

@media screen and (min-width: 900px) {
  .yt-container {
    padding: 4vw 0 6vw;
  }
}

@media screen and (min-width: 1440px) {
  .yt-container {
    padding: 6vw 0;
  }
}

.yt-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.yt-grid  + .yt-micro  {
  border-top: 1px solid #937C4E;
  padding-top: 40px;
}

@media screen and (min-width: 900px) {
  .yt-grid {
    flex-direction: row;
    gap: 40px;
  }
  .yt-grid  + .yt-micro  {
    padding-top: 80px;
  }
}

@media screen and (min-width: 1900px) {
  .yt-grid  + .yt-micro  {
    padding-top: 120px;
  }
}

.main__title{
  font-size: var(--big-fontsize);
}
.main__subtitle{
  line-height: 2.2;
  font-weight: normal;
}
.yt-item {
  flex: 1;
  cursor: pointer;
}

.yt-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
}

.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 68px;
  height: 48px;
  background: rgba(214,0,28,0.7);
  border-radius: 14px;
}

.yt-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
}

.yt-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  z-index: 9999;
}

.yt-popup-inner {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
}

.yt-popup-inner iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.yt-contents {
  width: 100%;
  box-sizing: border-box;
}

.yt-item {
  width: 100%;
}

.yt-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yt-play {
  position: absolute;
  inset: 0;
}

.yt-play::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.6);
  clip-path: polygon(35% 25%, 35% 75%, 75% 50%);
}

.yt-content {
  width: 100%;
}

.yt--title {
  position: relative;
  margin-bottom: 20px;
  font-size: var(--middle-fontsize);
}

.yt--title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 6px;
  background-color: #d6001c; 
}

.yt--sub {
  margin-top: 12px;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.yt--sub::before {
  content: "▶";
  margin-right: 6px;
  color: #d6001c;
}

.yt--group {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 0 0 40px;
}

.yt--image {
  flex: 1;
  margin-bottom: 24px;
}

.yt--image img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.yt--text__wrapper {
  width: 100%;
  flex: 3;
}

.yt--text__title {
  margin-bottom: 2px;
  color: #937C4E;
  font-size: var(--middle-fontsize);
  font-weight: 700;
}

.yt--text__header {
  margin-bottom: 8px;
}

.yt--text {
  font-size: var(--semi-fontsize);
}

@media (min-width: 1024px) {

  .yt-contents {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    margin: 0 auto;
  }

  .yt--title {
    margin-bottom: 40px;
    line-height: 1.4;
  }

  .yt--movie {
    position: sticky;
    top: 120px;
    align-self: start;
    margin-bottom: 0;
  }

  .yt--group {
    gap: 40px;
    padding: 0 0 80px;
  }

  .yt--sub {
    margin-bottom: 180px;
  }

  .yt--text__wrapper {
    flex: 5;
  }

}

@media (min-width: 1440px) {
  .yt-contents {
    grid-template-columns: 400px 1fr;
    gap: 140px;
  }
  .yt--title {
    margin-bottom: 40px;
  }
  .yt--text__header {
    margin-bottom: 16px;
  }
  .yt--group {
    padding: 0 0 80px;
  }
}

@media (min-width: 1900px) {
  .yt-contents {
    grid-template-columns: 480px 1fr;
  }
  .yt--group {
    padding: 0 0 120px;
  }
}

.coming-lineup {
  padding: 16px 16px 32px;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.coming-lineup span {
  position: relative;
  display: inline-block;
  font-size: var(--big-fontsize);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #d6001c;
  border-bottom: 3px solid #FF0;
}

.coming-lineup span::before,
.coming-lineup span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 3px;
  background: #d6001c;
}

.coming-lineup span::before {
  left: -56px;
}

.coming-lineup span::after {
  right: -56px;
}

@media (min-width: 1900px) {
  .coming-lineup span {
    font-size: 2.6rem;
    border-bottom: 6px solid #FF0;
  }
  .coming-lineup span::before,
  .coming-lineup span::after {
    height: 5px;
  }
}
/* ここまで YouTube Gallery */

/* ここから kodawari bnr */
.kodawari__bnr__contents{
  background: #f8f6fb;
  background: linear-gradient(90deg, rgba(248, 246, 251, 1) 0%, rgba(235, 235, 235, 1) 100%);
  padding: 6%;
}
.kodawari__bnr__wrap{
  max-width: 1400px;
  margin: auto;
}
.kodawari__bnr__wrap h2{
  font-size: var(--middle-fontsize);
  text-align: center;
  padding: 0 0 1rem;
}
.kodawari__bnr{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.kodawari__bnr a{
  position: relative;
  display: block;
  overflow: hidden;
}

.kodawari__bnr img{
  width: 100%;
  height: auto;
  display: block;
  transition:
    transform .6s cubic-bezier(.22,.61,.36,1),
    filter .6s ease;
  will-change: transform;
}

.kodawari__bnr a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(
    90deg,
    #d6001c,
    #d9101e
  );
  transition: width .5s ease;
  z-index: 2;
}

@media (hover: hover){
  .kodawari__bnr a:hover img{
    transform: scale(1.03);
    filter: brightness(1.05) contrast(1.05);
  }

  .kodawari__bnr a:hover::before{
    opacity: .85;
  }

  .kodawari__bnr a:hover::after{
    width: 100%;
  }
}

.kodawari__bnr a:focus-visible{
  outline: 2px solid #111;
  outline-offset: 4px;
}

.kodawari__bnr{
  align-items: stretch;
}

@media (max-width: 767px){
  .kodawari__bnr a::after{
    height: 3px;
  }
}

@media (min-width: 1024px) {
  .kodawari__bnr__wrap h2{
    padding: 0 0 2rem;
  }
  .kodawari__bnr{
    gap: 1rem;
  }
}

@media (min-width: 1900px) {
  .kodawari__bnr__wrap h2{
    padding: 0 0 3rem;
  }
  .kodawari__bnr{
    gap: 1.5rem;
  }
}
/* ここまで kodawari bnr */

/* ここから shop info */
.shop__infowrap {
  margin: 0 auto;
  background: #f5faff;
  padding: 40px 20px;
}

.shop__list__title {
  font-size: var(--big-fontsize);
  text-align: center;
  margin-bottom: 0.7rem;
  border-bottom: 2px solid #093781;
  padding-bottom: 10px;
}

.shop__list_title span {
  background: linear-gradient(90deg, #1485cc 0%, #093781 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.shop__open {
  text-align: center;
  font-size: var(--semi-fontsize);
  margin-bottom: 30px;
}

.shop__adress__contents{
    max-width: 580px;
    margin: auto;
}
.shop__adress_wrap {
  margin-bottom: 40px;
  font-size: var(--semi-fontsize);
}

.shop__adress_wrap h3 {
  font-size: var(--middle-fontsize);
  border-left: 5px solid #093781;
  padding-left: 10px;
  margin-bottom: 15px;
  color: #093781;
}

.shop__adress_wrap h3 span{
  color: #FF2323;
}

.shop__table {
  width: 100%;
  border-collapse: collapse;
}

.shop__table th,
.shop__table td {
  padding: 7px 15px;
  border-bottom: 1px solid #555;
  text-align: left;
}

.shop_table tbody tr:last-child th,
.shop_table tbody tr:last-child td {
  border-bottom: none;
}

.shop__table th.tenpo {
  font-weight: bold;
  white-space: nowrap;
  width: 20%;
}

.shop__table td.adress {
  width: 75%;
}

.shop__table td.detail{
  width: 15%;
}

.shop__table td.detail a {
  color: #093781;
  text-decoration: none;
  border-bottom: 1px dashed #1485cc;
  transition: all 0.3s ease;
  font-size: var(--semi-fontsize);
}

.shop__table td.detail a:hover {
  color: #1485cc;
  border-bottom: 1px solid #fff;
}

@media screen and (min-width: 1024px) {
  .shop__infowrap {
    padding: 6rem 2%;
  }
  .shop__list__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .shop__adress__contents {
    max-width: 900px;
    margin: 4rem auto 0;
  }
  .shop__table tbody{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
  }
  .shop__table th.tenpo {
    width: 20%;
  }
  .shop__adress_wrap h3 {
    font-size: var(--normal-fontsize);
  }
}

@media screen and (min-width: 1440px) {
  .shop__adress__contents {
    max-width: 1000px;
  }
  .shop__table tbody{
    gap: 0 4rem;
  }
}
/* ここまで shop info */

/* ここから フッター */
.p-footer {
  padding: 20px 60px 10px;
  background-color: #3D3E4A;
}
.p-footer__inner {
  display: block;
}
.p-footer__nav {
  font-size: 0.65rem;
}
.p-footer__navList {
  max-width: 280px;
  margin: 18px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.p-footer__navItem {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #75706f;
}
.p-footer__navItem:nth-child(3n) {
  border-right: transparent;
  margin-right: 0;
  padding-right: 0;
}
.p-footer__logo {
  width: 100%;
  height: auto;
  max-width: 160px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 24px;
}
.p-footer__navItem a {
  color: #FFF;
  font-size: 0.8rem;
}
.p-footer__copyLight {
  text-align: center;
  display: block;
  margin-top: 30px;
  font-size: 0.7rem;
  color: #FFF;
}

@media screen and (min-width: 599px) {
  .p-footer__navList {
    max-width: 100%;
}
.p-footer__navItem:nth-child(3n) {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #75706f;
}
.p-footer__navItem:last-child {
  border-right: transparent;
  margin-right: 0;
  padding-right: 0;
}
}

@media screen and (min-width: 768px) {
  .p-footer__inner {
    max-width: 1000px;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ここまで フッター */

/* go to TOP */
#pagetop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  margin: 0;
  z-index: 999;
}
#pagetop a{
  position: relative;
  display: flex;
  width: 60px;
  height: 60px;
  justify-content: center;
  background:#001e62;
  transition: opacity .6s ease;
  color: #FFF;
  align-items: center;
  text-decoration: none;
  font-size: 40px;
  border-radius:100%;
}
#pagetop a:hover {
  opacity: .6;
}
@media screen and (max-width:1024px) {
#pagetop a {
  width: 40px;
  height: 40px;
  font-size: 20px;
}
}
/* go to TOP */
