/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

初期化

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
li,ul{
list-style-type :none;
}


/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

変数

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
:root {
  --black: #111111;
  --black-main: #383636;
	--black-sub1:#5e5b5b;
	--black-sub2:#333333;
  --white:#f5f5f5;
  --white-bg:#efeeea;
  --accent:#d4af37;
  --red:#d54d2c;
	--green:#1c3f3a;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: var(--white-bg);
  line-height: 2;
  font-size:1.6rem;
  color: var(--black);
}

html {
  font-size: 62.5%;
}


/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

共通

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/

/* インナー */
.cmn-inner{
  margin:auto;
  padding-right:30px;
  padding-left:30px;

  &.main{
    max-width:1100px;
  }
  &.wide{
    max-width:1400px;
  }
}


.cmn-updown{
  padding-top:240px;
  padding-bottom:240px;
}

.cmn-updown_narrow{
  padding-top:80px;
  padding-bottom:80px;
}

@media (max-width: 768px) {
    .cmn-inner{
    padding-right:15px;
    padding-left:15px;
    }
    .cmn-updown{
    padding-top:80px;
    padding-bottom:80px;
    }
}


/* タイトル */
.cmn-titles {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 64px;
}

@media (min-width: 769px) {
    .cmn-titles.start{
     align-items: flex-start;
    }
    .cmn-titles.end{
     align-items: end;
    }

}

.cmn-main-title {
    font-family: 'Zen Old Mincho', serif;
    font-weight: normal;
    font-size: 4.8rem;
    line-height:1.25;
    color: var(--black);
    text-align: center;

    &.white{
      color: var(--white);
    }
}
@media (max-width: 768px) {
	.cmn-titles {
    margin-bottom: 40px;
}
	.cmn-main-title {

    font-size: 3.2rem;
}

}

.cmn-sub-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 2rem;
    color: var(--accent);
    text-align: center;
}


/* ボタン */
.cmn-cta-wrapper {
  margin-top:80px;
}
.cmn-cta {
    display: flex;
    justify-content: center;
}

.cmn-cta.fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: block;
    z-index:100;
}


.cmn-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 26px 19px;
    background-color: #2b746a;
    color: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 2.4rem;
    font-weight: normal;
    text-align: center;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.cmn-btn:hover{
  background-color:var(--green);
}

.cmn-btn.shadow{
  box-shadow: 6px 6px var(--black-sub1);
  border-radius: 50px;
  padding: 16px 19px;
}

.cmn-btn.circle{
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    /* background: #6fa1ff; */
    /* color: #FFF;
    text-align: center; */
    line-height: 1.5;
    font-size:2rem;
    box-shadow: 3px 3px var(--black-sub1);
}

@media (min-width: 769px) {
	.cmn-btn {
		width:360px;
	}
}
@media (max-width: 768px) {
	.cmn-btn {
    padding: 16px;
    font-size: 2rem;
		width: 100%;
	}
  .cmn-cta-wrapper {
    margin-top:40px;
  }

  .cmn-btn.circle{
    width: 90px;
    height: 90px;
    font-size:1.5rem;
    padding: 8px;
}

  .cmn-cta.fixed {
    bottom: 10px;
    right: 10px;
}

}

/*PC・SP専用*/

/* --- 共通では両方とも表示しないようにする --- */
.for960over,
.for960min {
  display: none;
}

/* --- 960px以上（PCサイズ）ではPC用を表示 --- */
@media screen and (min-width: 960px) {
  .for960over {
    display: block;
  }
}

/* --- 959px以下（SPサイズ）ではSP用を表示 --- */
@media screen and (max-width: 959px) {
  .for960min {
    display: block;
  }
}

.forSP{
    display: block;
}
@media (min-width: 769px) {
    .forSP{
        display: none;
    }
}

.accent{
	color:var(--accent);
}

.accent-br{
	border-bottom:2px solid var(--accent);
}

/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

ヘッダー

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
.header {
    background-color: #383636;
}

.header-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
		padding-left: 16px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-image {
    width: 60px;
}

.logo-text {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.8rem;
    color: #d4af37;
    text-align: center;
}

@media (min-width: 769px) {
	.header .cmn-btn{
		padding: 16px 19px;
	}
}

@media (max-width: 768px) {
.header-flex{
  padding-left:8px;

}

.header-logo{
  gap:6px;

}
.header .cmn-btn{
	gap:8px;
}
.header .cmn-btn > span{
	font-size:1.3rem;
}
.header .cmn-btn img{
	width:7px;
}
.logo-image {
    width: 40px;
}

.logo-text {
    font-size: 1.2rem;
}
}

/*^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  ファーストビュー

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/

.fv-box {
		width: 100%;
    display: flex;
    flex-direction: column;
    align-items: baseline;
		gap:24px;
}
.fv .video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fv .video-wrap {
  position: absolute;
  left: 0;
  top: 0;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.video-wrap:after{
    content: "";
    background: rgba(17, 17, 17, 0.2);
    width: 100%;
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}


.fv-inner {
		min-height: calc(100svh - 100px);
    display: flex;
    align-items: center;
    flex-direction: column;
		flex-flow: wrap;
}

.fv-wrapper{
		margin: 0 auto;
    padding-top: 120px;
    display: flex;
    justify-content: center;
}

.fv-bases {
		display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.fv-base {
		padding: 4px 32px;
    background-color: var(--black-main);
    color: var(--white);
    font-size: 2rem;
}

.fv-base p{
  font-style: italic;
}

.fv-lists {

    /* justify-content: center; */
    width: 96%;
    max-width: 720px;
		margin: auto;
		padding-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.fv-list {
  font-size: 2rem;
  padding: 16px 16px 24px 16px;
  background:var(--black-main);
  color: var(--white);
  text-align: center;
	border-radius: 8px;
	line-height: 1.5;
	width: 100%;
	position:relative;
	display: flex;
  flex-direction: column;
  justify-content: center;
}

.fv-list:after{
	content:"";
	width:100%;
	height:100%;
	display: block;
	border:2px solid var(--accent);
	border-radius: 8px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	position: absolute;
}

.fv .title {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 900;
    font-size: clamp(3.2rem, 8.5vw, 11rem);
    color: var(--white);
    text-align: center;
    line-height: 1.1;
    white-space: nowrap;
    text-shadow: 0px 4px 8px rgba(17, 17, 17, 0.4);
}

@media (max-width: 768px) {
	.fv-inner{
		gap:0;
	}
	.fv-wrapper{
		padding-left: 16px;
		padding-top: 80px;
		margin:0;
	}
	.fv-base{
		font-size:1.6rem;
    padding:4px 16px;
	}
	.fv-box{
		gap:24px;
	}
	.fv-list{
		font-size:1.4rem;
		padding: 8px;
	}
	.fv-lists{
		gap:24px;
	}

	.fv .title{
		font-size: clamp(56px, 10vw, 100vw);
		text-align: left;
	}
}

/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

デジタル動画ワークスとは

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
.about{
    padding-top: 160px;
}

.about-description {
    margin-bottom: 80px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.skills-title-wrapper{
    text-align: center;
}

.skills-title {
    font-family: 'Zen Old Mincho', serif;
    font-weight: normal;
    font-size: clamp(20px, 3vw, 32px);
    text-align: center;
    margin-bottom: 8px;
    display: inline-block;
    position: relative;
		line-height: 1.5;
}

.skills-title:after{
    content:"";
    position:absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height:2px;
    width:100%;
    background: linear-gradient(90deg, rgba(230,199,110,1) 0%, rgba(179,155,86,1) 50%, rgba(128,111,61,1) 100%);
}
.skills-diagram {
    display: flex;
    justify-content: center;
    padding:80px 0;
}

.skills-diagram img{
    max-width: 100%;
}

.skill-descriptions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
}

.skill-desc {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.skill-desc h4 {
    font-family: 'Zen Old Mincho', serif;
    font-weight: bold;
    font-size: 2.4rem;
    white-space: nowrap;
}


.skill-desc p {
    flex: 1;
}

@media (min-width: 769px) {
.skill-desc h4 {
    margin-right: 40px;
    padding-right: 40px;
    border-right: 1px solid var(--black-main);
		min-width: 260px;
		display: flex;
    align-items: anchor-center;
}
}

@media (max-width: 768px) {
	.skill-desc h4 {
		font-size:2rem;
		padding-bottom:8px;
	}
	.skills-title{
		font-size:6vw;
	}
	.skill-desc{
		flex-direction:column;
		align-items:baseline;
	}
	.skill-desc + .skill-desc{
		padding-top:24px;
		border-top:1px solid var(--black-main);
		}
	.skill-descriptions{
		gap:24px;
	}
	.skills-diagram {
		padding:40px 0;
	}

}

/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

こんな方におすすめ

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/

.recommendation{
  overflow: hidden;
}

.recommendation-inner{
    max-width:1100px;
    padding-top:240px;

}

.recommendation-content {

    display: flex;
    align-items: center;
}

.recommend-image {
    width: 65%;
}


.recommendation-list {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px 32px 32px 5%;
    margin-left: -20%;
    background: var(--black-main);
}

.recommendation-item {
    display: flex;
    align-items: center;
    gap: 16px;
}


.recommendation-item span {
    font-size: 1.8rem;
    color:var(--white);
    line-height:1.5;
}

@media (max-width: 768px) {
	.recommendation-inner{
		padding-bottom: 80px;
		padding-top:160px;
	}
	.recommendation-list{
		margin-top: -10%;
		margin-right: -30px;
		margin-left:0;

	}
	.recommendation-item span{
		font-size:1.6rem;
	}
	.recommendation-item img{
		width:16px;
	}
}


/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

3つのサポート

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
.support-items {
    display: flex;
    margin: 0 auto;
}

.support-item {
    display: flex;
    flex-direction: column;
    width:27%;
}

.support-number {
    font-family: 'Oswald', sans-serif;
    font-size: 6.4rem;
    color: var(--black);
    font-weight: normal;
    line-height: normal;
}

.support-title {
    font-family: 'Zen Old Mincho', serif;
    font-weight: normal;
    font-size: 2.4rem;
    color: var(--black);
    line-height: normal;
    display: flex;
    align-items: center;
}

.support-description {
  margin-top:48px;
  margin-bottom:24px;
}

.support-box-title{
  text-align: center;
  color: var(--white);
  background: #C53030;
}

.support-box-plan{
  background: #f5e6e6;
  padding: 16px 16px 16px 32px;
  list-style: circle;
}

.support-box-plan li{
  list-style: circle;
}


@media (max-width: 768px) {
		.support-items{
			gap:24px;
		}
    .support-item {
        width:100%;
    }
		.support-item + .support-item{
			padding-top:24px;
			border-top:1px solid var(--black-main);
		}
    .support-title{
        font-size:2rem;
    }
		.support-description{
			margin-top:24px;
		}
    .support-box{
      width:100%;
      max-width:360px;
    }
}
@media (min-width: 769px) {

		.support-description{
      min-height:280px;
		}

.support-title{
  min-height:70px;
}

.support-item:not(:first-child){
  margin-left:9.5%;
  position:relative;

}

.support-item:not(:first-child):after{
  content:"";
  position: absolute;
  left:-20%;
  height:100%;
  width:1px;
  background:var(--black-main);
}
}

/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

卒業生の実績

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/

.achievement {
    background:var(--green);
}

.achievement-inner{
	padding-bottom: 160px;
}

.achievement-img-wrapper{
	position:relative;
}

.achievement-name-tag {
    position: absolute;
    padding: 4px 16px;
    bottom: -20px;
    right: 0;
    background-color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-name-tag span {
    font-size: 1.6rem;
    color: #f5f5f5;
}

.achievement-content {
		padding: 40px 16px;
		background:var(--white);
		flex: 1;
}

.achievement-title {
    font-family: 'Zen Old Mincho', serif;
    font-weight: bold;
    font-size: clamp(1.8rem, 1.9vw, 2.0rem);
    color: black;
    text-align: center;
    margin-bottom: 24px;
}


.splide__slide{
	display: flex;
  flex-direction: column;
}

.splide__slide img {
    vertical-align: bottom;
    width: 100%;
    object-fit: contain;
}

.splide__arrow{
	 transform: translateY(0);
	 top:100px;
	 background: rgba(17, 17, 17, 0.5);
}

.splide__arrow svg {
    fill: var(--white);
}

.splide,
.splide__track { touch-action: pan-y; -ms-touch-action: pan-y; }

.splide__arrows { position: absolute; inset: 0; pointer-events: none; }
.splide__arrow  { pointer-events: auto; }


/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

インタビュー

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
.interview {
	border-top:1px solid var(--white);
  background: linear-gradient(180deg, var(--green) 70%, var(--black-sub2) 100%);
}


.interview-image {
    width: 400px;
    height: 600px;
    object-fit: cover;
}

.interview-number {
    position: absolute;
		top: -50px;
    font-family: 'Oswald', sans-serif;
    color: #d4af37;
    font-size: 4.8rem;
    line-height: normal;

}

.modal-inner {
		max-width: 900px;
    margin: 0 auto;
}

.modal__card {
  transition: opacity .6s;
	position: relative;
}

.modal__card:hover {
  opacity: .6;
}

.modal__trigger {
  cursor: pointer;
}


.modal-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    vertical-align: middle;
}

.modal-card__content {
	position: absolute;
  bottom: 0;
	background:rgba(17, 17, 17, 0.7);
	padding: 16px;
}

.modal-card__title {
	font-size:2.0rem;
	color:var(--white);
	font-family: 'Zen Old Mincho', serif;
  line-height: 1.5;;
}

.modal-card__name{
	color:var(--white);
	text-align: right;
  line-height: 1;
}

/* モーダル本体 */
.modal__wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
}

.modal__layer {
  height: 100%;
  background: rgba(50, 50, 50, .85);
  cursor: pointer;
}

.modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(calc(100% - 40px), 1000px);
  height: calc(100% - 40px);
  background: var(--green);
}

.modal__inner {
  position: relative;
  overflow-y: scroll;
  height: 100%;
  padding: 80px 20px 20px;
}

/* モーダルを閉じるボタン */
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  cursor: pointer;
  transition: opacity .6s;
	border-radius: 100%;
}

.modal__close:hover {
  opacity: .6;
}

.modal__close:before,
.modal__close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  content: '';
}

.modal__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* モーダル内のコンテンツ */
.profile__group {
  display: flex;
  align-items: flex-start;
	gap:40px;
}

.profile__image {
	width:30%;

}

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

.profile__content {
	flex:1;
	color:var(--white);
}

.interview-q{
	font-size:1.8rem;
	padding-left: 16px;
	border-left :1px solid var(--accent);
}

.interview-a{
	padding-top: 12px;
}

.interview-qa + .interview-qa{
	padding-top: 24px;;
}

@media (min-width: 769px) {
.modal__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 120px 80px;
    justify-content: space-between;
}
}

@media (max-width: 768px) {
	.modal__inner{
		padding:24px 16px 40px 16px;
	}
	.modal-card + .modal-card{
		padding-top:80px;
	}
	.modal-card__title{
		font-size:1.6rem;
	}
	.modal-card__name{
		font-size:1.3rem;
	}
	 .profile__group {
	flex-direction: column;
 }
.profile__image {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
}
	.interview-q{
		font-size:1.8rem;
	}
	.interview-qa + .interview-qa {
			padding-top: 40px;
	}
}
/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

4人のエキスパートたち

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
.expert {
    background-color: var(--black-sub2);
}

.expert-inner{
    padding-top:80px;
    padding-bottom:480px;
}

.main-expert {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 80px;
    justify-content: center;
}

.main-expert-image {
	width: 40%;
}

.main-expert-info {
    display: flex;
    flex-direction: column;
}

.expert-role {
    font-size: 1.4rem;
    color: #f5f5f5;
}

.expert-name {
    font-weight: bold;
    color: #f5f5f5;
    font-size: 2rem;
}

.expert-achievements {
    color: #f5f5f5;
    font-size: 1.4rem;
    margin-top:24px;
    padding-bottom: 40px;
    padding-left: 20px;
    border-bottom:1px solid var(--white);
    
}

.expert-achievements li{
    list-style-type: disc;
}


.expert-separator {
    width: 629.5px;
    background-color: #f5f5f5;
    height: 1px;
    margin-bottom: 16px;
}

.expert-description {
    color: #f5f5f5;
    padding-top: 16px;
}

.expert-description > p + p{
    padding-top: 1em;
}

.other-experts {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    justify-content: center;
}

.expert-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
		width: 33.33333%;
}

.expert-avatar {
    width: 127px;
    height: 127px;
    background-color: #d9d9d9;
    border-radius: 63.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expert-photo {
    width: 78px;
    height: 78px;
    object-fit: cover;
}

.expert-card-name {
    font-weight: bold;
    color: #f5f5f5;
    font-size: 20px;
    text-align: center;
    line-height: 32px;
}

.expert-card-description {
    color: #f5f5f5;
}

@media (max-width: 960px) {
.expert-inner{
    padding-bottom:80px;
}
}

@media (max-width: 768px) {
.expert-card {
	width:100%;
}

.expert-role {
    font-size: 1.2rem;
}

.expert-achievements{
    margin-top: 8px;
    padding-bottom: 24px;
}
 .expert-achievements li{
    font-size:1.2rem;
 }

}

/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

カリキュラムのご紹介

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
.curriculum-pricing-section {
    display: flex;
    align-items: self-start;
    justify-content: center;
    gap: 40px;
    max-width: 1400px;
    margin: -320px auto 0;
    padding: 0 30px;
}

.curriculum{
    background-color: #494848;
    width: 50%;
}

.curriculum-inner{
    max-width: 1100px;
    padding: 80px;
    margin:auto;
}

.curriculum-description {
    margin-bottom: 48px;
    font-size: 1.6rem;
    color:var(--white);
}

.curriculum-accordion {
    width: 100%;
    max-width: 480px;
}

.cmn-according .trigger {
  display: none;
}
.cmn-according .trigger:checked + .label + .cmn-according_content {
  padding: 16px;
  height: auto;
}

  .cmn-according .trigger:checked + .label + .cmn-according_content {
    padding: 16px 0px;
  }
.cmn-according .trigger:checked + .label::before {
  content: url('img/cur-close.svg');
}
.cmn-according .label {
  padding: 24px 8px 8px 0;
  display: block;
  position: relative;
}

  .cmn-according .label {
    font-size: 2rem;
    font-family: 'Zen Old Mincho', serif;
    color:var(--white);
    border-bottom: 1px solid var(--white);
  }

.cmn-according .label::before {
  content: url('img/cur-open.svg');
  display: block;
  position: absolute;

  right: 10px;
  width: 20px;
  height: 1px;
  z-index: 1;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.cmn-according_content {

  background: var(--c-white);
  height: 0;
  overflow: hidden;
  transition: padding 0.3s ease-out, height 0.3s ease-out;
}

.cmn-according_content_lists li {
  position: relative;
  padding-left: 1em;
  color:var(--white);
}
.cmn-according_content_lists li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 960px) {
.curriculum-pricing-section{
    flex-direction: column;
    padding:0;
    margin:0;
    gap:0;
}
.curriculum{
    width:100%;
}
}

@media (max-width: 769px) {
    .curriculum-description{
        font-size:1.4rem;
        margin-bottom: 16px;
        
    }

}

/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

料金表

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/

.price {
    background-color: var(--black-sub1);
    width: 50%;
    margin-top:80px;
}
.price-table{
    display: flex;
    gap: 64px;
}

.price-table + .price-table{
    padding-top:32px;
}

.price-table-wrapper{
    display: flex;
    flex-direction: column;
}

.price-table dt{
    font-family: 'Zen Old Mincho', serif;
    font-size: 2rem;
    color: var(--white);
    text-align: right;
    min-width: 155px;
}

.price-table dd{
  color: var(--white);
}

.price-table dd ul li{
  list-style-type: disc;
}
.price-table dd ul{

    padding-left: 20px;
}
@media (max-width: 960px) {
    .price{
        width:100%;
        margin:0;
    }
}

@media (min-width: 769px) {
.price-table-wrapper{
    justify-self: center;
		position: relative;
}

.price-table-wrapper:after{
    position: absolute;
    content:"";
    height:100%;
    width:1px;
    background:var(--white);
    top:0;
    left:187px;
}
}

@media (max-width: 768px) {
.price-table{
    flex-direction: column;
    gap:0;
}
.price-table dt{
    font-size:1.8rem;
    text-align: left;
}
.price-table dd{
    font-size:1.6rem;
}
.price-table + .price-table{
    padding-top:24px;
    margin-top:24px;
    border-top:1px solid var(--white);
}
}

/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

どのスクールよりも選ばれる理由

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
.reason-table{
  display: flex;
}

.table-titles{
  
  font-family: 'Zen Old Mincho', serif;
  font-size:1.6rem;
  color:var(--white);
  /* padding: 16px 8px; */
  text-align: center;
  width:13%;
}
.table-list{
  height: 100%;
}

.table-list .none{
    background: transparent;
}

.table-list li{
    /* height: 20%; */
    height:calc(100% / 7);
    min-height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 8px;
    background:var(--green);
    text-align: left;
}

.table-lists.ddw{
  width:27%;
  position:relative;
}

.table-lists.ddw:after{
    content: "";
    position: absolute;
    border: 5px solid #C53030;
    display: block;
    width: 100%;
    height: 100%;
    top: 25px;
    right: 0;
    left: 0;
    border-radius: 30px;
}


.table-lists{
  text-align: center;
  width:20%;
}

/* .table-lists .lists{
  height:100%;
} */

.table-lists .lists.else{
  padding-left: 5px;
}

.table-lists .lists li:nth-child(even){
  background:#fafafa;
}

.table-lists .lists li:nth-child(3),
.table-lists .lists li:nth-child(5),
.table-lists .lists li:nth-child(7){
  background:#f5f5f5;
}

.table-lists .lists li{

  /* height:20%; */
   height:calc(100% / 6);
    min-height: 130px;
  line-height: 1.25;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* .table-lists .lists li p{
    margin-top: auto;
} */

.lists.ddw{
  font-weight: bold;
  font-size:1.8rem;
}

.reason-table .mark{
  font-size:4rem;

}

.mark{
    font-weight: 900;
    line-height: 1;
    padding-bottom: 16px;
    display: inline-block;
  &.maru{
    color:#C53030;
  }
  &.sankaku{
    color:#1B5787;
  }
  &.batsu{
    color:#CCCCCC;
  }

}

.table-lists .lists .school-name{
  display: flex;
  flex-direction: row;
  font-family: 'Zen Old Mincho', serif;
  font-size:2.4rem;
  align-items: end;

}

.school-name img{
  width: 70px;
}

@media (max-width: 960px) {
  .table-titles{
    width:40%;
  }
  .table-lists{
    flex:1;

  }
  .table-list li{
    font-size:1.4rem;
  }
  .table-lists .lists .school-name{
    font-size:1.8rem;
  }

/* .school-name img{
  width: 60px;
} */

.lists.ddw{
  font-weight: bold;
  font-size:1.6rem;
}

}


/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

よくある質問

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/

.qa-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.qa-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.qa-item:first-child > .qa-question{
	padding-top:0;
}

.qa-item + .qa-item{
	border-top: 1px solid var(--black-main);
}

.qa-question{
padding-top:40px;
}

.qa-question,
.qa-answer {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.qa-label {
    font-family: 'Zen Old Mincho', serif;
    font-weight: normal;
    font-size: 3.6rem;
    flex-shrink: 0;
		line-height: 1;
}

.qa-label:not(.answer) {
    color:var(--accent);
}

.qa-label.answer {
    color: var(--red);
}

@media (max-width: 768px) {
	.qa-label {
		font-size:2.4rem;
	}
	.qa-item p{
		font-size:1.4rem;
	}
	.qa-items {
    gap: 24px;
	}
	.qa-question{
		padding-top:16px;
	}
}


/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

受講の流れ

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
.flow{
    background: no-repeat center linear-gradient(rgba(255, 255, 255, .9),  rgba(255, 255, 255, .9)),  url("img/flow.jpg"); 
}
.flow-header{
    padding-bottom:40px;
}

.flow-header h2 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 2.4rem;
    color: var(--black);
    text-align: center;
    line-height: normal;
    padding-bottom:40px;
    position:relative;
}

.flow-header h2:after{
    content: "▼";
    font-size: 2.0rem;
    color: var(--accent);
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
}

.num{
    font-family: 'Oswald', sans-serif;
    font-size: 4.8rem;
    text-align: center;
    line-height: normal;
    font-weight: normal;

    &.num1{color: #e6c76e;}
    &.num2{color: #d4af37;}
    &.num3{color: #b68e2d;}

}


.flow-lists {
  display: flex;
  padding-bottom:80px;
	flex-direction: row;
  gap: 40px;
	justify-content: center;
}

.flow-title{
    font-family: 'Zen Old Mincho', serif;
    font-size: 2rem;
    line-height: normal;
}

.flow-list:not(:last-child):after {
  content: "";
  display: block;
  background: linear-gradient(0deg, rgba(128,111,61,1) 0%, rgba(179,155,86,1) 50%, rgba(230,199,110,1) 100%);
  position: absolute;
}

.flow-list:not(:last-child) {
  position: relative;
}

.flow-list:not(:last-child):after {
    width: 80%;
    height: 1px;
    right: 0px;
    top: 40px;
}

@media (max-width: 768px) {
.flow{
    background: no-repeat center linear-gradient(rgba(255, 255, 255, .9),  rgba(255, 255, 255, .9)),  url("img/flow-sp.jpg"); 
}
    .flow-header h2 {
        font-size: 1.6rem;
				padding-bottom:24px;
    }
		.flow-header h2:after {
			font-size: 1.5rem;
		}
		.num {
			font-family: 'Oswald', sans-serif;
			font-size: 3.2rem;

		}
		.flow-title {
    	font-size: 1.6rem;
		}
  .flow .title-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
  }
	.flow-list{
		width:100%;
	}
	.flow-lists {
    width: 83%;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
		gap:20px;
  }
	.flow-list:not(:last-child) {
    padding-bottom: 75px;
  }
	.flow-list:not(:last-child):after {
    left: 15px;
    top: 53px;
    width: 1px;
    height: 57%;
  }
}



/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

フッター

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
.footer {
    width: 100%;
    height: 120px;
    background-color: var(--black-main);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-bottom: 16px;
}

.footer-copyright {
    font-size: 1.2rem;
    color: var(--white);
    text-align: center;
    line-height: normal;
    white-space: nowrap;
}


@media (max-width: 768px) {

    

    

    
    .content {
        padding: 0 20px;
        align-items: center;
        text-align: center;
    }
    
    .statistics {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .support-items {
        flex-direction: column;
        /* gap: 40px; */
    }
    
    .support-separator {
        width: 100%;
        height: 1px;
    }
    
    .main-expert {
        flex-direction: column;
        align-items: center;
    }
    
    .main-expert-image {
        width: 300px;
    }
    

    
    .other-experts {
        flex-direction: column;
        gap: 40px;
    }
    
    .curriculum-pricing-section {
        flex-direction: column;
    }
    
    .curriculum-section {
        max-width: 100%;
        padding: 40px 20px;
    }
    
    .interview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 412px;
    }
    
    .recommendation-content {
        flex-direction: column;
    }
    
    .recommend-image {
				height: auto;
        width: 100vw;
    }
    
    .recommendation-overlay {
        position: static;
        width: 100%;
        height: auto;
        padding: 20px;
    }
    
    .recommendation-list {
        width: 100%;
        padding: 20px;
        background: var(--black-main);
    }
    
    .process-steps {
        position: static;
        width: 100%;
        flex-direction: column;
        gap: 20px;
        margin: 40px 0;
    }
    
    .process-line {
        width: 100px;
        transform: rotate(90deg);
    }
    
    .process-descriptions {
        position: static;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin: 40px 0;
    }
    
    .process-desc {
        position: static;
        width: 100%;
    }
    
    .achievement-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-btn {
        display: none;
    }
}