@charset "UTF-8";
/*-----------------
基本設定
------------------*/
html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body {
  font-size: 15px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  color: #363636;
  line-height: 1.4;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
body.is-fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
}
.l-inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 79.16%;
}

.oneSide-margin {
  width: min(89.93vw, 1440px + (100vw - 1440px) / 2);
}

.textCenter {
  text-align: center;
}

.only-pc {
  display: block;
}

.pc-tab1280 {
  display: block;
}

.pc-tab1024 {
  display: block;
}

.tab1280 {
  display: none;
}

.tab1280-tab1024 {
  display: none;
}

.tab1280-sp {
  display: none;
}

.tab1024 {
  display: none;
}

.tab1024-sp {
  display: none;
}

.only-sp {
  display: none;
}

@media screen and (max-width: 1280px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: block;
  }
  .pc-tab1024 {
    display: block;
  }
  .tab1280 {
    display: block;
  }
  .tab1280-tab1024 {
    display: block;
  }
  .tab1280-sp {
    display: block;
  }
  .tab1024 {
    display: none;
  }
  .tab1024-sp {
    display: none;
  }
  .only-sp {
    display: none;
  }
  .l-inner {
    width: 89.333%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: none;
  }
  .pc-tab1024 {
    display: block;
  }
  .only-tab1280 {
    display: none;
  }
  .tab1280-tab1024 {
    display: block;
  }
  .tab1280-sp {
    display: block;
  }
  .only-tab1024 {
    display: block;
  }
  .tab1024-sp {
    display: block;
  }
  .only-sp {
    display: none;
  }
  .l-inner {
    width: 86.66%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: none;
  }
  .pc-tab1024 {
    display: none;
  }
  .only-tab1280 {
    display: none;
  }
  .tab1280-tab1024 {
    display: none;
  }
  .tab1280-sp {
    display: block;
  }
  .only-tab1024 {
    display: none;
  }
  .tab1024-sp {
    display: block;
  }
  .only-sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
  .l-inner {
    width: 89.333%;
  }
}
.l-center {
  margin-right: auto;
  margin-left: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.l-left {
  margin-left: 0;
  margin-right: auto;
}

.l-right {
  margin-right: 0;
  margin-left: auto;
}

/*=========================
ボタン
=========================*/
.c-button {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.c-button__link {
  border: 1px solid #363636;
  border-radius: 18px;
  display: block;
  font-size: 17px;
  line-height: 1;
  width: 150px;
  text-align: center;
  position: relative;
  padding: 10px 0;
  font-family: "Oswald", sans-serif;
	font-weight: 200;
}

.c-button--white .c-button__link {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}

.c-button__arrow {
  width: 15.66px;
  height: 9.53px;
  position: absolute;
  top: 50%;
  right: 13.2px;
  transform: translateY(-50%);
}
.c-button__arrow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.c-button__link {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.c-button:hover .c-button__link {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.bl-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bl-flex__rowCenter {
  justify-content: center;
}

.bl-flex__leftAlignment {
  justify-content: flex-start;
}

.bl-flex__rightAlignment {
  justify-content: flex-end;
}

.bl-flex__topAlignment {
  align-items: flex-start;
}

.bl-flex__bottomAlignment {
  align-items: flex-start;
}

/*=========================
タイトル
=========================*/
.section-ttl {
  font-family: "Jost", sans-serif;
  font-size: 95px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .section-ttl {
    font-size: clamp(50px, 13.33vw, 70px);
  }
}

.section-ttl--center {
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}

/*===========================
ヘッダー
===========================*/
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 2.2vw;
  z-index: 9;
  padding-top: 64px;
}
@media screen and (max-width: 1024px) {
  .l-header {
    padding: 0;
  }
}

.l-header__nav {
  margin-right: 0;
  margin-left: auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 27px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__nav-list {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 30px;
}

.l-header__nav-link {
  color: #FFFFFF;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
  font-family: "Jost", sans-serif;
  transform: scale(1);
  position: relative;
  display: block;
  transition: all 0.3s;
  transform-origin: center;
  mix-blend-mode: difference;
}
.l-header__nav-link:hover {
  transform: scale(1.05);
  transition: all 0.3s;
  transform-origin: center;
}

.l-header--under .l-header__nav-link {
  color: #363636;
}

.l-header__sns-icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  height: 14px;
}

.l-header__sns-icon {
  height: 30px;
  position: relative;
}
.l-header__sns-icon:first-of-type {
  width: 19px;
}
.l-header__sns-icon:nth-of-type(2) {
  width: 21px;
}
.l-header__sns-icon:last-of-type {
  width: 24.27px;
}
.l-header__sns-icon .l-header__sns-link {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
.l-header__sns-icon .l-header__sns-link:hover img {
  transform: scale(1.05);
  transition: all 0.3s;
  transform-origin: center;
}
.l-header__sns-icon .l-header__sns-link img {
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: all 0.3s;
}

.l-header__logo {
  position: absolute;
  left: 100px;
  bottom: 0;
  transform: translateY(22%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 33px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 1024px) {
  .l-header__logo {
    bottom: unset;
    top: 10px;
    left: 20px;
    gap: 0;
    width: 200px;
    flex-direction: column;
    z-index: 99;
  }
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 30%;
    max-width: 200px;
  }
}

.l-header__logo-img {
  width: 176px;
  height: auto;
  transition: all 0.3s;
  transform-origin: center;
}
@media screen and (max-width: 768px) {
  .l-header__logo-img {
    width: 100%;
  }
}

.l-header__logo-txt {
  width: 155px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .l-header__logo-txt {
    width: 100%;
  }
}

.c-hamburger {
  width: 56px;
  height: 56px;
  position: fixed;
  top: 0;
  right: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
@media screen and (max-width: 768px) {
  .c-hamburger {
    top: 10px;
    right: 5px;
  }
}

.c-hamburger span {
  position: absolute;
  bottom: 14px;
  display: block;
  width: 2px;
  background: #363636;
  border-radius: 999px;
  transition: height 0.35s ease, transform 0.4s ease, opacity 0.25s ease, background-color 0.3s ease, left 0.4s ease, bottom 0.4s ease, width 0.4s ease;
}

.c-hamburger.c-hamburger--top span {
  background: #FFFFFF;
}

.c-hamburger span:nth-child(1) {
  left: 16px;
  height: 10px;
}

.c-hamburger span:nth-child(2) {
  left: 22px;
  height: 20px;
}

.c-hamburger span:nth-child(3) {
  left: 28px;
  height: 26px;
}

.c-hamburger span:nth-child(4) {
  left: 34px;
  height: 14px;
}

.c-hamburger.js-open span {
  left: 50%;
  bottom: 27px;
  width: 24px;
  height: 2px;
  background: #363636;
}

.c-hamburger.js-open span:nth-child(1) {
  transform: translateX(-50%) rotate(38deg);
}

.c-hamburger.js-open span:nth-child(2) {
  opacity: 0;
}

.c-hamburger.js-open span:nth-child(3) {
  opacity: 0;
}

.c-hamburger.js-open span:nth-child(4) {
  transform: translateX(-50%) rotate(-38deg);
}
.burger-bg{
	width: 100vw;
	height: 100vh;
	position: absolute;
	top: 0;
	left:0;
}

.burger-nav-wrap {
  background-color: rgba(255, 255, 255, 1);
  position: fixed;
  top: 0;
  right: 0;
  transform: translate(100%, 0);
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.burger-nav-wrap.js-open {
  transform: translate(0, 0);
  transition: all 0.5s;
}

.burger-nav-logo {
  width: 200px;
  position: absolute;
  top: 10px;
  left: 20px;
}
@media screen and (max-width: 768px) {
  .burger-nav-logo {
    width: 30%;
    max-width: 200px;
  }
}

.burger-nav-content {
  width: 89.33%;
  height: calc(100vh - 300px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.burger-nav-nav {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.burger-nav__item:not(:first-of-type) {
  margin-top: 30px;
}

.burger-nav__link {
  font-family: "Jost", sans-serif;
  font-size: 25px;
  text-align: center;
  font-weight: 500;
  margin: 0 auto;
  display: block;
}

.burger-nav__sns-icons {
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 50px auto 0;
}
@media screen and (max-width: 1024px) {
  .burger-nav__sns-icons {
    justify-content: space-between;
    width: 89.33%;
    max-width: 180px;
    margin: 50px auto 0;
  }
}

.burger-nav__sns-icon {
  width: 45px;
  height: auto;
}

/*===========================
フッター
===========================*/
.l-footer {
  position: relative;
  background-color: #F3F1ED;
  z-index: 3;
}

.l-footer__content {
  padding: 48px 0 43px;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .l-footer__content {
    padding: 20px 0;
  }
}

.l-footer__bg {
  width: auto;
  height: 88%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.l-footer__online-school-txt {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 10px auto 0;
}

.l-footer__online-school-txt-en {
  text-align: center;
  line-height: 1;
	font-size: 25px;
}

.l-footer__online-school-txt-ja {
  padding-top: 5px;
  margin-top: 5px;
  border-top: 1px solid #363636;
  text-align: center;
	font-size: 52px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
.l-footer__online-school-txt-en {
	font-size: 14px;
  border-bottom: 1px solid #363636;
  padding-bottom: 5px;
  margin-bottom: 5px;
  text-align: center;
}
	.l-footer__online-school-txt-ja{
		font-size: 22px;	
  border-top: none;
  padding-top: 0;
  margin-top: 0;
  text-align: center;
		margin:0 auto;
	}

}
@media screen and (max-width: 768px) {
  .l-footer__online-school-txt-ja {
    font-size: 18px;
  }
}

.l-footer__logo {
  width: 221px;
  margin: 15px auto 0;
}
@media screen and (max-width: 768px) {
  .l-footer__logo {
    width: 40%;
    max-width: 220px;
  }
}

/* .l-footer__musiclabo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.l-footer__musiclab-music {
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .l-footer__musiclab-music {
    font-size: 18px;
  }
}

.l-footer__musiclab-labo {
  font-size: 28px;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 300;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .l-footer__musiclab-labo {
    font-size: 22px;
  }
} */

.l-footer__button {
  margin-top: 22px;
}
@media screen and (max-width: 768px) {
  .l-footer__button {
    font-size: 18px;
  }
}

.l-footer__copy {
  padding: 13px 0;
  background-color: #EABD00;
  position: relative;
  z-index: 3;
}

.copyright {
  text-align: center;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .copyright {
    font-size: 10px;
  }
}

/*===========================
ページ共通
===========================*/
.under-bg {
  width: 100%;
  height: auto;
  padding-top: 268px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .under-bg {
    padding-top: 150px;
  }
}

.under-bg__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.under-bg__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.c-page-ttl {
  font-family: "Jost", sans-serif;
  font-size: 95px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
  opacity: 0;
  -webkit-animation-name: pageTtlAnime;
          animation-name: pageTtlAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}
@media screen and (max-width: 1024px) {
  .c-page-ttl {
    font-size: clamp(40px, 11.33vw, 70px);
  }
}

@-webkit-keyframes pageTtlAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes pageTtlAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeup-trigger {
  opacity: 0;
  position: relative;
  top: 50px;
  transition: all 1s;
  z-index: 3;
}

.fadeup-trigger.is-fadeup {
  opacity: 1;
  position: relative;
  top: 0;
  transition: all 1s;
}

/*===========================
TOPページ
===========================*/
/*============= FV =============*/
.fv {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

.fv__img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .fv__img img {
    -o-object-position: top;
       object-position: top;
  }
}

.fv__logo-wrap {
  width: 16.04%;
  max-width: 231px;
  position: absolute;
  top: 34.11%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .fv__logo-wrap {
    width: 38%;
    max-width: unset;
    top: 39vh;
    left: 65%;
  }
}
@media screen and (max-width: 767px) {
  .fv__logo-wrap {
    top: 28vh;
  }
}

.fv__website-txt {
  width: 67.1%;
  margin: 12px auto;
}

.fv__logo {
  opacity: 0;
  transform: translateY(10px);
  -webkit-animation: fvLogo 1s ease forwards;
          animation: fvLogo 1s ease forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.fv__website-txt {
  opacity: 0;
  transform: translateY(10px);
  -webkit-animation: fvLogo 1s ease forwards;
          animation: fvLogo 1s ease forwards;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

@-webkit-keyframes fvLogo {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fvLogo {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.top-moving-fix-wrap {
  width: 100%;
  height: auto;
  overflow-x: hidden;
}

.fv__topics{
	position:absolute;
	top: 53%;
	right: 0;
	padding: 20px 6.9vw 20px 30px;
	background-color: rgba(255,255,255,.2);
	border: 1px solid #363636;
}

.fv__topics-heading{
	font-family: "Jost", sans-serif;
	font-weight: 600;
	font-size: 25px;
	font-size: clamp(20px , 1.73vw , 25px);
	letter-spacing: .04em;
	text-transform: uppercase;
	line-height:1;
}

.fv__topics-wrap{
	margin-top: 5px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 13px;
}

.fv__topics-ttl{
	font-size: clamp(14px , 1.18vw , 17px);
}

.fv__topics-button .c-button__link{
	width: 116px;
	font-size: 12px;
}
.fv__topics-button .c-button__arrow {
    width: 12px;
    height: 5.53px;
    right: 9.2px;
}
@media screen and (max-width: 1024px) {
	
	.fv__topics {
		top: unset;
		padding: 20px;
		background-color: rgba(255, 255, 255, .5);
		bottom: 18%;
		max-width: 89.33%;
	}


.fv__topics-wrap{
	flex-direction: column;
}

}
/*============= top-news =============*/
.top-news {
  margin-top: 100vh;
  padding: 155px 0 145px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-news {
    padding: 100px 0;
  }
}

.top-news__deco-left {
  position: absolute;
  width: 70.55%;
  height: auto;
  top: 50%;
	transform: translateY(-50%);		
  left: -100%;
  z-index: 1;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  transition-timing-function: ease-in;
}
@media screen and (max-width: 1024px) {
  .top-news__deco-left {
    width: 100%;
    height: 100%;
  }
  .top-news__deco-left img {
    -o-object-fit: fill;
       object-fit: fill;
  }
}
@media screen and (max-width: 768px) {
  .top-news__deco-left {
    width: auto;
    height: 100%;
  }
}

.top-news__deco-left.js-in {
  -webkit-animation-name: newsDecoLeftAnime;
          animation-name: newsDecoLeftAnime;
}

@-webkit-keyframes newsDecoLeftAnime {
  0% {
  top: 50%;
	transform: translateY(-50%);		
    left: -100%;
  }
  100% {
  top: 50%;
	transform: translateY(-50%);		
    left: 0;
  }
}

@keyframes newsDecoLeftAnime {
  0% {
  top: 50%;
	transform: translateY(-50%);		
    left: -100%;
  }
  100% {
  top: 50%;
	transform: translateY(-50%);		
    left: 0;
  }
}
.top-news__deco-right {
  position: absolute;
  width: 86.38%;
  height: auto;
  top: 50%;
	transform: translateY(-50%);		
  right: -100%;
  z-index: 2;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  transition-timing-function: ease-in;
}
@media screen and (max-width: 1024px) {
  .top-news__deco-right {
    width: 100%;
    height: 100%;
  }
  .top-news__deco-right img {
    -o-object-fit: fill;
       object-fit: fill;
  }
}
@media screen and (max-width: 768px) {
  .top-news__deco-right {
    width: auto;
    height: 100%;
  }
}

.top-news__deco-right.js-in {
  -webkit-animation-name: newsDecoRightAnime;
          animation-name: newsDecoRightAnime;
}

@-webkit-keyframes newsDecoRightAnime {
  0% {
  top: 50%;
	transform: translateY(-50%);		
    right: -100%;
  }
  100% {
  top: 50%;
	transform: translateY(-50%);		
    right: 0;
  }
}

@keyframes newsDecoRightAnime {
  0% {
  top: 50%;
	transform: translateY(-50%);		
    right: -100%;
  }
  100% {
  top: 50%;
	transform: translateY(-50%);		
    right: 0;
  }
}
.top-news__inner {
  width: 660px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .top-news__inner {
    width: 100%;
  }
}

.top-news__list {
  margin-top: 35px;
  position: relative;
  z-index: 3;
}

.top-news__item:not(:first-of-type) {
  margin-top: 28px;
}
@media screen and (max-width: 768px) {
  .top-news__item:not(:first-of-type) {
    margin-top: 10px;
  }
}

.top-news__link {
  display: block;
  padding: 17px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-news__link {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 5px;
    flex-direction: column;
  }
}
.top-news__link ::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #363636 0px, #363636 1px, transparent 1px, transparent 11px);
  background-size: 11px 2px;
}

.top-news__date {
  font-size: 13px;
  width: 123px;
}
@media screen and (max-width: 768px) {
  .top-news__date {
    width: 100%;
  }
}

.top-news__ttl {
  width: calc(100% - 138px);
}
@media screen and (max-width: 768px) {
  .top-news__ttl {
    width: 100%;
  }
}

.top-news__button {
  margin-top: 40px;
}

/*============= top-video =============*/
.top-video {
  width: 100%;
  aspect-ratio: 1/0.649;
  position: relative;
  margin-top: -200px;
}
@media screen and (max-width: 1024px) {
  .top-video {
    aspect-ratio: unset;
    margin-top: -90px;
	  width: 100vw;
	  height: 100vh;
  }
}

.top-video__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top-video__bg video{
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.top-video__content {
  position: absolute;
  top: calc(50% + 100px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .top-video__content {
    top: calc(50% + 35px);
  }
}

.top-video__ttl {
  font-family: "Jost", sans-serif;
  color: #E59E36;
  letter-spacing: 0.04em;
  line-height: 1;
  font-weight: 500;
}

.top-video__ttl-small {
  display: block;
  text-align: center;
  font-size: 2.57vw;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .top-video__ttl-small {
    font-size: clamp(17px, 2.57vw, 40px);
    margin-top: 10px;
  }
}

.top-video__ttl-large {
  display: block;
  text-align: center;
  font-size: 9.65vw;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .top-video__ttl-large {
    font-size: clamp(43px, 9.65vw, 70px);
    margin-top: 10px;
  }
}

.top-video__button {
  margin-top: 30px;
	cursor: pointer;
}
@media screen and (max-width: 768px) {
  .top-video__button {
    margin-top: 20px;
  }
}

.top-video__modal{
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	z-index:999;
	pointer-events: none;
	opacity: 0;
	transition: all .3s;
}
.top-video__modal.js-appear{
	opacity: 1;
	pointer-events: all;
	transition: all .3s;
}
	
.top-video__modal-bg{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,.7);
}

.top-video__modal-close{
	position: absolute;
	top: 25px;
	right: 25px;
	width: 25px;
	height: 25px;
	cursor: pointer;
}

.top-video__modal-close span{
	display: block;
	width: 25px;
	height: 1px;
	position: absolute;
	background-color: #fff;
	top: 50%;
	left: 50%;
}

.top-video__modal-close span:first-of-type{
	transform: translate(-50% , -50%) rotate(45deg);
}
.top-video__modal-close span:last-of-type{
	transform: translate(-50% , -50%) rotate(-45deg);
}


.top-video__modal-txt{
	font-size: 35px;
	font-weight: 700;
	text-align: center;
	color: #fff;
}
.top-video__modal-box{
	width: 80%;
    height: auto;
    padding: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


@media screen and (max-width: 768px) {
.top-video__modal-box{
    width: 89.33%;
    padding: 0;
}
.top-video__modal-txt{
	font-size: 25px;
}
}

/*============= top-music =============*/
.top-music {
  padding: 94px 0 112px;
  background-color: #fff;
  position: relative;
  z-index: 3;
}

.top-music__slider-wrap {
  width: 100%;
  overflow: hidden;
}

.top-music__list {
  margin-top: 75px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

.top-music__item {
  width: 29.78%;
}
@media screen and (max-width: 768px) {
  .top-music__item {
	  width: 100%;
  }
}

.top-music__release {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1;
}

.top-music__ttl {
  font-size: 20px;
  font-family: "Jost", "Zen Kaku Gothic Antique", sans-serif;
  margin-top: 10px;
	font-weight: 500;
}

.top-music__button {
  margin-top: 70px;
}

.top-music__slider-wrap.is-swiper .top-music__list {
  gap: 0;
  justify-content: flex-start;
}

.top-music__slider-wrap.is-swiper .top-music__item {
  width: auto;
}
@media screen and (max-width: 768px) {
  .top-music__slider-wrap.is-swiper {
    padding-left: 16%;
    padding-right:16%;
    box-sizing: border-box;
  }
}
/*===========================
NEWSページ
===========================*/.news {
  margin-top: 35px;
}

.news__item:not(:first-of-type) {
  margin-top: 20px;
}

.news__link {
  padding: 20px 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .news__link {
    padding: 10px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
.news__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #E19F3E 0px, #E19F3E 1px, transparent 1px, transparent 11px);
  background-size: 11px 2px;
}

.news__date {
  position: relative;
  font-size: 13px;
  width: 123px;
}
@media screen and (max-width: 768px) {
  .news__date {
    width: 100%;
    padding-left: 10px;
  }
}
.news__date::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 17px;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #E19F3E;
}
@media screen and (max-width: 768px) {
  .news__date::before {
    width: 3px;
    height: 13px;
    left: 0;
  }
}

.news__ttl {
  width: calc(100% - 138px);
}
@media screen and (max-width: 768px) {
  .news__ttl {
    width: 100%;
  }
}

.news__page-nav {
  margin: 50px auto 0;
  width: 100%;
  position: relative;
  padding-bottom: 110px;
}

.news__page-nav-item {
  position: absolute;
  top: 0;
}

.news__page-nav-item--prev {
  left: 0;
  transition: all 0.3s;
}

.news__page-nav-item--return {
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
}

.news__page-nav-item--next {
  right: 0;
  transition: all 0.3s;
}

.news__page-nav-link {
  position: relative;
  font-size: 17px;
  font-family: "Oswald", sans-serif;
	font-weight: 200;
  color: #E19F3E;
  text-transform: uppercase;
}
.news__page-nav-link::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-bottom: 1.5px solid #E19F3E;
}
.news__page-nav-link.news__page-nav-link--return {
  display: inline-block;
  transition: transform 0.5s ease;
  transform-origin: center; /* ←これが重要 */
}
.news__page-nav-link.news__page-nav-link--return::after {
  display: none;
}
@media screen and (min-width: 1023.9px) {
  .news__page-nav-link:hover.news__page-nav-link--prev::after {
    left: -5px;
    transition: all 0.3s;
  }
  .news__page-nav-link:hover.news__page-nav-link--return {
    transform: rotateX(360deg);
  }
  .news__page-nav-link:hover.news__page-nav-link--next::after {
    right: -5px;
    transition: all 0.3s;
  }
}

.news__page-nav-link--prev {
  padding-left: 16px;
}
.news__page-nav-link--prev::after {
  border-left: 1.5px solid #E19F3E;
  transform: translateY(-50%) rotate(45deg);
  left: 0;
  transition: all 0.3s;
}

.news__page-nav-link--next {
  padding-right: 16px;
}
.news__page-nav-link--next::after {
  border-right: 1.5px solid #E19F3E;
  transform: translateY(-50%) rotate(-45deg);
  right: 0;
  transition: all 0.3s;
}

.article {
  margin-top: 27px;
}

.article {
  margin-top: 55px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10%;
}
@media screen and (max-width: 1024px) {
  .article {
    display: block;
  }
}

.article--news{
display: block;
}

.schedule-article__wrap.article__wrap {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}

.article__wrap.schedule-article__wrap.article__wrap.article__wrap--news{
	width: 100%;
}
.article-block {
  margin-top: 80px;
  margin-bottom: 80px;
}
.article-block a{
	text-decoration: underline;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .article-block {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
/*===========================
SCHEDULEページ
===========================*/
.schedule-category {
  margin-top: 27px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.schedule-category__link {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 30px;
  font-size: 17px;
  font-family: "Jost", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid #363636;
  border-radius: 16px;
  color: #363636;
}

.schedule-category__current {
  background-color: #363636;
  color: #FFFFFF;
}

.schedule__list {
  margin-top: 40px;
}

.schedule-article {
  margin-top: 27px;
  padding-bottom: 207px;
}
@media screen and (max-width: 1024px) {
  .schedule-article {
    padding-bottom: 100px;
  }
}

.schedule-article {
  margin-top: 55px;
/*   display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10%; */
}
@media screen and (max-width: 1024px) {
  .schedule-article {
    display: block;
  }
}

.schedule-article__wrap {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 60%;
}
@media screen and (max-width: 768px) {
  .schedule-article__wrap {
    width: 100%;
    max-width: unset;
  }
}

.schedule-article__ttl {
  font-size: 35px;
  line-height: 1.45;
}
@media screen and (max-width: 768px) {
  .schedule-article__ttl {
    font-size: 28px;
  }
}

.schedule-article__data-wrap {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  margin-top: 30px;
}

.schedule-article__date {
  font-size: 26px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .schedule-article__date {
    font-size: 18px;
  }
}

.schedule-article__day-of-the-week {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .schedule-article__day-of-the-week {
    font-size: 14px;
  }
}

.schedule-article__place {
  font-size: 20px;
  line-height: 1.45;
}
@media screen and (max-width: 768px) {
  .schedule-article__place {
    font-size: 18px;
    margin-top: 10px;
  }
}

.schedule-article__price {
  font-size: 20px;
  line-height: 1.45;
}

.schedule-article__price-num {
  font-family: "Jost", sans-serif;
}

.tax {
  font-size: 15px;
  font-family: "Jost", sans-serif;
}

.schedule-article__button {
  margin-top: 30px;
  margin: 32px auto 0 0;
}
@media screen and (max-width: 768px) {
  .schedule-article__button {
    margin: 25px auto 0;
  }
}

.c-button__link--schedule-detail {
  width: 215px;
}

.schedule-article__img {
  width: auto;
  max-width: 40%;
}
@media screen and (max-width: 768px) {
  .schedule-article__img {
    width: 100%;
    max-width: unset;
    margin: 30px auto 0;
    max-width: 280px;
  }
}

/*===========================
DISCOGRAPHYページ
===========================*/
.discography__category-list {
  margin-top: 128px;
  padding-bottom: 210px;
}

.discography__category-item:not(:first-of-type) {
  margin-top: 80px;
}

.discography-category {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 30px;
  font-size: 17px;
  font-family: "Jost", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid #363636;
  border-radius: 16px;
  color: #363636;
}

.discography__list {
  margin-top: 17px;
}

/*===========================
DISCOGRAPHY詳細ページ
===========================*/
.discography-detail {
  margin-top: 125px;
  padding-bottom: 121px;
}
@media screen and (max-width: 768px) {
  .discography-detail {
    margin-top: 80px;
    padding-bottom: 100px;
  }
}

.discography-detail__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4.2%;
}

.discography-detail__img {
  width: 44.7%;
}
@media screen and (max-width: 768px) {
  .discography-detail__img {
    width: 50%;
    min-width: 280px;
    margin: 50px auto 0;
  }
}

.discography-detail__content {
  width: 51.1%;
}
@media screen and (max-width: 768px) {
  .discography-detail__content {
    width: 100%;
  }
}

.discography-category {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 30px;
  font-size: 17px;
  font-family: "Jost", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid #363636;
  border-radius: 16px;
  color: #363636;
}

.discography-detail__release {
  margin-top: 17px;
  font-size: 20px;
  font-family: "Jost", sans-serif;
}

.discography-detail__ttl {
  font-size: 52px;
  font-family: "Jost", sans-serif;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .discography-detail__ttl {
    font-size: 45px;
  }
}

.discography-detail__credit {
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .discography-detail__credit {
    margin-top: 0;
  }
}

.discography-detail__song-list {
  margin-top: 37px;
}
@media screen and (max-width: 768px) {
  .discography-detail__song-list {
    margin-top: 30px;
  }
}

.discography-detail__link-list {
  margin-top: 27px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .discography-detail__link-list {
    gap: 20px;
  }
}

.discography-detail__link-item a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .discography-detail__link-item a {
    gap: 5px;
  }
}

.discography-detail__link-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #363636;
  position: relative;
}
.discography-detail__link-arrow img {
  position: absolute;
  width: 12px;
  height: 11px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.discography-detail__link-name {
  font-size: 24px;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 768px) {
  .discography-detail__link-name {
    font-size: 20px;
  }
}

/*===========================
BIOGRAPHYページ
===========================*/
.biography {
  margin-top: 86px;
  padding-bottom: 115px;
}

.biography__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3.75%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .biography__wrap {
    display: block;
  }
}

.biography__img {
  width: 34.3%;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .biography__img {
    position: relative;
    top: unset;
    left: unset;
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
  }
}

.biography__content {
  width: 61.95%;
}
@media screen and (max-width: 1024px) {
  .biography__content {
    width: 100%;
  }
}

.biography__name {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .biography__name {
    font-size: 25px;
  }
}

.biography__name-en {
  font-size: 32px;
  letter-spacing: 0.04em;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 768px) {
  .biography__name-en {
    font-size: 18px;
  }
}

.biography__txt {
  margin-top: 25px;
  letter-spacing: 0;
  line-height: 2;
}

.biography__list-wrap {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .biography__list-wrap {
    margin-top: 50px;
  }
}

.biography__list-heading {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 30px;
  font-size: 17px;
  font-family: "Jost", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid #363636;
  border-radius: 16px;
  color: #363636;
}

.biography__list {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .biography__list {
    margin-top: 25px;
  }
}

.biography__item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .biography__item {
    gap: 10px;
  }
}
.biography__item:not(:first-of-type) {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .biography__item:not(:first-of-type) {
    margin-top: 20px;
  }
}

.biography__year {
  font-size: 13px;
  width: 55px;
}
@media screen and (max-width: 768px) {
  .biography__year {
    width: 50px;
  }
}

.biography__detail {
  width: calc(100% - 75px);
  line-height: 1.33;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .biography__detail {
    width: calc(100% - 65px);
  }
}

/*---------------------------
CONTACTページ
---------------------------*/
.contact {
  margin-top: 110px;
}
@media screen and (max-width: 1024px) {
  .contact {
    margin-top: 80px;
  }
}

.contact__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .contact__wrap {
    flex-direction: column;
  }
}

.contact__step-list {
  width: 269px;
  padding-left: 50px;
  padding-top: 11px;
  padding-bottom: 13px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .contact__step-list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 0 15px;
    margin: 0 auto;
  }
}
.contact__step-list::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #8E8E8E;
  left: 49px;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .contact__step-list::after {
    width: 100%;
    height: 2px;
    left: 50%;
    top: 0px;
    transform: translateX(-50%);
  }
}

.contact__step-item {
  padding-left: 13px;
  position: relative;
  font-size: 13px;
  color: #8E8E8E;
}
@media screen and (max-width: 1024px) {
  .contact__step-item {
    padding-left: 0;
    padding-top: 20px;
  }
}
.contact__step-item::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #8E8E8E;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .contact__step-item::after {
    background-color: #8E8E8E;
    border-radius: 50%;
    left: 50%;
    top: 1px;
    transform: translate(-50%, -50%);
    z-index: 3;
  }
}
.contact__step-item:not(:first-of-type) {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .contact__step-item:not(:first-of-type) {
    margin-top: 0;
  }
}

.contact__step-current::after {
  background-color: #E3C93C;
}

.contact__step-num {
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 1024px) {
  .contact__step-num {
    text-align: center;
  }
}

@media screen and (max-width: 1024px) {
  .contact__step-name {
    text-align: center;
  }
}

.contact-form {
  width: calc(100% - 269px);
  padding-right: 4.35%;
}
@media screen and (max-width: 1024px) {
  .contact-form {
    width: 100%;
    padding-right: 0;
    margin-top: 50px;
  }
}

.form-dl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.form-dl:not(:first-of-type) {
  margin-top: 8px;
}
@media screen and (max-width: 1024px) {
  .form-dl:not(:first-of-type) {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .form-dl {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

.form-dt {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .form-dt {
    width: 100%;
  }
}

.form-ttl {
  letter-spacing: 0.078em;
  line-height: 1.4;
	font-weight: 400;
}

.required-icon {
  font-size: 8px;
  font-weight: 700;
  color: #363636;
  vertical-align: super;
}

.noRequired {
  width: 43px;
}

.form-dd {
  width: calc(100% - 250px);
}
@media screen and (max-width: 768px) {
  .form-dd {
    width: 100%;
  }
}

input[type=text],
input[type=email],
textarea {
  padding: 5px 19px;
  background-color: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #AAAAAA;
  color: #363636;
  width: 100%;
}

textarea {
  height: 217px;
}
@media screen and (max-width: 768px) {
  textarea {
    height: 170px;
  }
}

.form-dl--flex-start {
  align-items: flex-start;
}

input[type=checkbox] {
  position: relative;
  width: 14px;
  height: 14px;
  border: 2px solid #AB9B65;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=checkbox]:checked:before {
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #AB9B65;
  border-bottom: 2px solid #AB9B65;
  content: "";
}

.privacy-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 30px;
  color: #363636;
}

.form--policyLink {
  text-decoration: underline;
}

.submit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 77px auto;
  overflow: hidden;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 15px 86px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid #363636;
  border-radius: 50px;
  line-height: 1.3;
  background: #fff;
}
.submit-wrap{
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 77px auto;
	width: max-content;
	gap: 30px;
}
.submit-wrap .submit{
	margin: 0;
}

	@media screen and (max-width: 768px) {
	.submit-wrap{
		flex-direction: column;
		gap: 20px;
	}
}
/* ←これ追加 */
.submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.submit-arrow {
  width: 10px;
  height: 10px;
  position: absolute;
  border-bottom: 1px solid #363636;
  border-right: 1px solid #363636;
  top: 50%;
  right: 32px;
  transform: translateY(-50%) rotate(-45deg) skew(7deg, 7deg);
  transition: transform 0.3s ease;
}

.submit:hover .submit-arrow {
  transform: translateY(-50%) translateX(4px) rotate(-45deg) skew(7deg, 7deg);
}

.error-page__content{
		padding: 150px 0;
		margin-top: 80px;
		background-color: #fff;
		position: relative;
		z-index: 3;
		color: #E59E36;
	}
	
	.error-page__ttl{
      font-size: 40px;
      font-weight: 700;
	}
	@media screen and (max-width: 768px) {
		.error-page__content{
		margin-top: 50px;
	}
	
		.error-page__ttl{
			font-size: 30px;
			font-weight: 700;
		}
	}

.wpcf7-spinner{
    display: none!important;
}


.error-message{
    color: #B54343;
    font-weight: 700;
    font-size: 12px;
}

.entry-form__thanks {
  text-align: center;
}

.thanks_button {
  margin: 100px auto;
}
@media screen and (max-width: 768px) {
  .thanks_button {
    margin: 50px auto 100px;
  }
}
.article-block {
  line-height: 1.9;
  font-size: 16px;
}

.article-block > *:first-child {
  margin-top: 0;
}

.article-block > *:last-child {
  margin-bottom: 0;
}

/* 段落 */
.article-block p {
  margin: 0 0 1.5em;
}

/* 見出し */
.article-block h2 {
  margin: 2.5em 0 1em;
  font-size: 1.6em;
  line-height: 1.5;
}

.article-block h3 {
  margin: 2em 0 1em;
  font-size: 1.35em;
  line-height: 1.5;
}

.article-block h4,
.article-block h5,
.article-block h6 {
  margin: 1.8em 0 1em;
  line-height: 1.5;
}

/* 画像 */
.article-block img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.article-block figure {
  margin: 2em 0;
}

.article-block figcaption {
  margin-top: 0.8em;
  font-size: 0.875em;
  color: #666;
  text-align: center;
}

/* リスト */
.article-block ul,
.article-block ol {
  margin: 0 0 1.5em;
  padding-left: 1.5em;
}

.article-block li {
  margin-bottom: 0.5em;
}

/* 引用 */
.article-block blockquote {
  margin: 2em 0;
  padding: 1em 1.5em;
  border-left: 4px solid #ccc;
  background: #f7f7f7;
}

/* テーブル */
.article-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
}

.article-block th,
.article-block td {
  border: 1px solid #ddd;
  padding: 0.8em;
}

/* WordPress：画像の回り込み */
.article-block .alignleft {
  float: left;
  margin: 0 1.5em 1em 0;
}

.article-block .alignright {
  float: right;
  margin: 0 0 1em 1.5em;
}

.article-block .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.article-block::after {
  content: "";
  display: block;
  clear: both;
}

/* WordPress：幅広・全幅 */
.article-block .alignwide,
.article-block .alignfull {
  max-width: 100%;
}

/* ボタンブロック */
.article-block .wp-block-button {
  margin: 2em 0;
}

.article-block .wp-block-button__link {
  display: inline-block;
}

/* カラム */
.article-block .wp-block-columns {
  gap: 2em;
  margin: 2em 0;
}

/* アコーディオン details */
.article-block details {
  margin: 1.5em 0;
  padding: 1em;
  border: 1px solid #ddd;
}

.article-block summary {
  cursor: pointer;
  font-weight: bold;
}
/* 見出し */
.article-block h1 {
  margin: 2.5em 0 1em;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}

.article-block h2 {
  margin: 2.3em 0 1em;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
}

.article-block h3 {
  margin: 2em 0 1em;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.article-block h4 {
  margin: 1.8em 0 1em;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.article-block h5 {
  margin: 1.6em 0 1em;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5;
}

.article-block h6 {
  margin: 1.5em 0 1em;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

/* リスト */
.article-block ul {
  margin: 0 0 1.5em;
  padding-left: 1.5em;
  list-style: disc;
}

.article-block ol {
  margin: 0 0 1.5em;
  padding-left: 1.5em;
  list-style: decimal;
}

.article-block li {
  margin-bottom: 0.5em;
}

/* 入れ子リスト */
.article-block ul ul {
  list-style: circle;
  margin-top: 0.5em;
}

.article-block ul ul ul {
  list-style: square;
}

.article-block ol ol {
  list-style: lower-alpha;
  margin-top: 0.5em;
}

.comingsoon{
    font-size: 100px;
    text-align: center;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    margin-bottom: 100px;
}

.komatsu-method_button{
	padding-bottom: 150px;
}

@media screen and (max-width: 1024px) {
	
.comingsoon{
    font-size: clamp(35px ,  7.8vw , 80px);
}
}

.policy{
	margin: 100px auto 0;
	padding-bottom: 150px;
	
}

@media screen and (max-width: 769px) {
	.policy{
		margin: 50px auto 0;
		padding-bottom: 80px;

	}
}
