@charset "UTF-8";

body {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 0;
	font-family: "Shippori Mincho", "Noto Serif JP", "YuMincho", "游明朝", "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	color: #000000;
	background: #ffffff;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
}


/* 共通
---------------------------------------------------- */
* {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

html {
	font-size: 62.5%;
	height: 100%;
}

li {
 list-style: none;
}

h1, h2, h3, h4, h5, h6 {
 font-family: 'Shippori Mincho', serif;
}

a {
	color: #000000;
	background: transparent;
	text-decoration: none;
}

a:visited {
	background: transparent;
}

a:hover,
a:active {
	text-decoration: none;
}

img {
	max-width: 100%;
}

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

.inner {
	max-width: 1080px;
	width: 100%;
	margin: 0 auto;
}

.narrow-inner {
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
}

/* 2カラム */
.col-2 {
	display: flex;
}

.col-2-content {
	display: flex;
}

/* 4カラム */
.col-4 {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}

.col-4 > .col-4-content {
 width: calc((100% - 75px) / 4);
}

/* ctaボタン */
.cta {
 text-align: center;
}

.cta a {
	background-color: #bf241c;
	border: 1px solid #bf241c;
	color: #fff;
	display: inline-block;
	font-size: 28px;
	letter-spacing: 0.05em;
	line-height: 1.6;
	font-weight: 600;
	padding: 25px;
	position: relative;
	text-decoration: none;
	width: 550px;
}

.arrow {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 1px;
	margin: 9px -20px 9px 20px;
	border-radius: 9999px;
	background-color: #ffffff;
}

.arrow::before,
.arrow::after {
	content: "";
	position: absolute;
	top: calc(50% - 0.5px);
	right: 0;
	width: 10px;
	height: 1px;
	border-radius: 9999px;
	background-color: #ffffff;
	transform-origin: calc(100% - 0.5px) 50%;
}

.arrow::before {
 transform: rotate(35deg);
}

.arrow::after {
 transform: rotate(-35deg);
}

.cta a:hover {
	background-color: #ffffff;
	border: 1px solid #bf241c;
	color: #bf241c;
	transition: background-color 0.3s;
}

.cta a:hover .arrow::before,
.cta a:hover .arrow::after,
.cta a:hover .arrow {
	background-color: #bf241c;
	transition: background-color 0.3s;
}


/* ヘッダー・フッターcta */
.small-cta a {
	background-color: #bf241c;
	border: 1px solid #bf241c;
	color: #fff;
	display: inline-block;
	padding: 12px 18px;
	text-decoration: none;
}

.small-cta a:hover {
	background-color: #ffffff;
	border: 1px solid #bf241c;
	color: #bf241c;
	transition: background-color 0.3s;
}

/* mvフェードイン */
/* MV要素の初期状態（不可視＋トランジション設定） */
header,
.mv-bg01,
.mv-bg02,
.mv-detail,
.mv-main,
.mv-sub,
.mv-copy,
.mv-text {
	opacity: 0;
	transition: opacity 2s ease, transform 2s ease;
	will-change: opacity, transform;
}

/* 各方向の初期オフセット */
.mv-bg01.fade-left,
.mv-bg02.fade-left {
	transform: translateX(-80px);
}

.mv-bg02.fade-right,
.mv-detail.fade-right {
	transform: translateX(80px);
}

header.fade-up,
.mv-main.fade-up,
.mv-sub.fade-up,
.mv-copy.fade-up,
.mv-text.fade-up {
	transform: translateY(60px);
}

/* 表示状態（クラス付与で発火） */
header.is-show,
.mv-bg01.is-show,
.mv-bg02.is-show,
.mv-detail.is-show,
.mv-main.is-show,
.mv-sub.is-show,
.mv-copy.is-show,
.mv-text.is-show {
	opacity: 1;
	transform: translate(0, 0);
}

/* フェードイン */
.fadein {
	opacity: 0;
	transform: translate(0,0);
	transition: all 1s;
}

/* 下から */
.fadein-bottom {
 transform: translate(0,30px);
}

/* 左から */
.fadein-left {
 transform: translate(-30px,0);
}

/* 右から */
.fadein-right {
 transform: translate(30px,0);
}

.scrollin {
	opacity: 1 !important;
	transform: translate(0, 0) !important;
}




/* テキスト
---------------------------------------------------- */

h3.large-title {
	font-size: 38px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.05em;
	padding-bottom: 60px;
	text-align: center;
}

h4.middle-title {
	font-size: 28px;
	font-weight: 400;
}

.middle-text {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.ex-text {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.05em;
	text-align: center;
}

.small-text {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.05em;
}




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

#header {
	height: 90px;
	width: 100%;
	padding: 0 90px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	z-index: 3;
	background-color: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

h1.logo {
	width: 190px;
	height: auto;
}

.nav-wrap {
	display: flex;
	align-items: center;
}

ul.header-link li {
	display: inline-block;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.05em;
}

ul.header-link {
	padding-right: 25px;
	transition: opacity 0.3s ease;
}

ul.header-link:last-child {
	padding-right: 0;
}

ul.header-link:hover {
	opacity: 0.5;
}



/* メインビジュアル
---------------------------------------------------- */

#hero {
	width: 100%;
	height: auto;
	position: relative;
	margin-top: 90px;
}

.mv-contents {
	max-width: 1080px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.mv-bg-wrapper {
	inset: 0;
	position: absolute;
	z-index: 0;
}

.mv-contents .mv-sub {
	position: absolute;
	right: 0;
	bottom: -10px;
}

.mv-bg01 {
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
}

.mv-bg02 {
	position: absolute;
	right: 0;
	bottom: 35px;
}

.mv-detail {
	position: absolute;
	right: 55px;
	bottom: 135px;
}

h2.mv-copy {
	font-size: 43px;
	font-weight: 500;
	letter-spacing: 0.15em;
	line-height: 1.7;
	writing-mode: vertical-rl;
	position: absolute;
	top: 25px;
	right: 80px;
}

.mv-text {
	padding: 35px 10px;
}

.service-main {
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
}

.service-sub {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
	padding-bottom: 10px;
	color: #b5a272;
	border-bottom: 1.5px solid #b5a272;
	display: inline-block;
}



/* introduction
---------------------------------------------------- */

#introduction {
	padding: 120px 0;
	position: relative;
}

#introduction .detail-left {
	position: absolute;
	left: 0;
	top: 130px;
	z-index: 1;
	width: 280px;
}

#introduction .detail-right {
	position: absolute;
	right: 0;
	top: 250px;
	z-index: 1;
	width: 280px;
}

#introduction .intro-contents {
	position: relative;
	z-index: 2;
}

/* #introduction .col-2-wrapper {
	background-image: url(../images/introduction_bg02.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-bottom: 120px;
} */


.intro-bg-wrapper {
	inset: 0;
	position: absolute;
	z-index: 0;
}

.intro-bg01 {
	position: absolute;
	top: 490px;
	left: 0;
	width: 100%;
	z-index: 1;
}

.intro-bg02 {
	position: absolute;
	right: 260px;
	bottom: 450px;
}

.intro-detail {
	position: absolute;
	right: 340px;
	bottom: 320px;
	z-index: 2;
}

#introduction .col-2 {
	padding-bottom: 80px;
	position: relative;
}

#introduction .col-2:first-child {
	justify-content: flex-end;
}

#introduction .inner .col-2 {
	padding-bottom: 0;
}

#introduction p.ex-text {
		padding-bottom: 100px;
}

#introduction h4.middle-title {
	line-height: 1.6;
	letter-spacing: 0.1em;
	padding: 0 50px 0 20px;
	writing-mode: vertical-rl;
}

#introduction p.small-text {
	line-height: 1.9;
	letter-spacing: 0.1em;
	writing-mode: vertical-rl;
	padding-top: 80px;
}

#introduction .second {
	padding-left: 110px;
}

#introduction .cta {
	padding-top: 100px;
}



/* carousel
---------------------------------------------------- */

.slider {
 width: 100%;
}

.slider img {
	width: 100%;
	display: block;
}


/* target
---------------------------------------------------- */

#target {
	padding: 120px 0;
}

#target .small-text {
	margin-top: 25px;
	text-align: center;
}


/* courses
---------------------------------------------------- */

#courses {
	padding: 120px 0;
	background-image: url(../images/courses_bg.jpg);
	background-size: cover;
}

#courses p.ex-text {
	padding-bottom: 80px;
}

#courses .col-2 {
	justify-content: space-between;
	margin-bottom: 80px;
}


#courses .col-2 .root-img img {
	width: 570px;
	height: auto;
}

#courses .col-2-content {
	display: block;
}

#courses .middle-title {
	writing-mode: vertical-rl;
	letter-spacing: 0.08em;
}

#courses .middle-title::before {
	content: '';
	display: inline-block;
	width: 20px;
 height: 20px;
	margin-bottom: 15px;
 background: #b5a272;
 transform: rotate(45deg);
}

#courses p.time {
	color: #b5a272;
	font-weight: 600;
	margin-left: -8px;
	padding-bottom: 3px;
}

#courses p.point {
	margin-bottom: 20px;
	color: #b5a272;
	font-weight: 600;
 border-bottom: 1.5px solid #b5a272;
	display: inline-block;
}

/* ルート */
#courses .col-2 .root {
	margin: 25px 0;
	justify-content: flex-start;
}

.root img {
	width: 28px;
	height: auto;
	margin-right: 18px;
}

#courses .col-2-content .root-text {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.sub {
	font-size: 15px;
	letter-spacing: 0.1em;
}

#courses .col-2-content .time-price {
	display: flex;
	align-items: center;
	letter-spacing: 0.1em;
}

#courses .col-2-content span {
	font-size: 4px;
	padding: 0 5px 0 8px;
	letter-spacing: 0.8em;
}


/* about
---------------------------------------------------- */

#about {
	padding: 120px 0;
}

#about .grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	position: relative;
	margin: 60px 0;
}

#about .img1 {
	grid-column: 1 / 2;
}

#about .text {
	grid-column: 2 / 3;
	padding: 15px;
	margin-top: 35px;
	letter-spacing: 0.01em;
}

#about .middle-text {
	padding-bottom: 20px;
}

#about .img2 {
	grid-column: 2 / 3;
	margin-top: -100px;
	margin-left: -80px;
}

.wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	position: relative;
}

#about .reverse {
 grid-column: 1 / 2;
	margin: 55px 15px 0 0;
}

.img3 {
	grid-column: 2 / 3;
	height: 300px;
	position: relative;
 z-index: 2;
}

.img4 {
	position: absolute;
	left: 18%;
	bottom: -80%;
	z-index: 1;
}


/* experience
---------------------------------------------------- */

.experience {
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	margin-top: 160px;
}


/* staff
---------------------------------------------------- */

#staff {
	padding: 120px 0;
}

#staff .col-2 {
	justify-content: space-between;
	gap: 20px;
}

#staff .col-2-content {
	display: block;
}

.staff-title {
	font-size: 27px;
	font-weight: 600;
	letter-spacing: 0.08em;
	border-bottom: 1.5px solid #b5a272;
	display: inline-block;
	padding-bottom: 12px;
	margin-bottom: 27px;
}

.staff-title span {
	font-size: 18px;
	letter-spacing: 0.02em;
}

#staff .photo {
	flex: 1;
}

#staff .text {
	width: 52%;
}


/* faq
---------------------------------------------------- */

#faq {
	padding: 120px 0;
	background-image: url(../images/faq_bg.jpg);
	background-size: cover;
}

.ruled-line {
	content: "";
	display: block;
	border-bottom: 1px solid #b5a272;
	margin: 50px 0;
}

.grid {
	display: grid;
	grid-template-columns:1fr 1fr;
	gap: 50px 80px;
}

.grid-content {
	padding-bottom:  50px;
	border-bottom: 1px solid #b5a272;
	align-self: stretch;
}

.grid-content:last-child {
	border-bottom: none;
}

.grid-content .Q {
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
	display: flex;
}

.grid-content .A {
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.6;
	display: flex;
}

.grid-content .Q::before {
	content: "Q";
	margin-right: 22px;
	font-size: 22px;
	font-family: 'Baskerville', serif;
	color: #b5a272;
}

.grid-content .A::before {
	content: "A";
	margin: 0 22px 0 3px;
	font-size: 22px;
	font-family: 'Baskerville', serif;
	color: #b5a272;
}


/* info
---------------------------------------------------- */

#info {
	padding: 120px 0;
}

#info ul {
	margin: 60px 0;
}

#info li {
	display: flex;
}

#info .category, #info .contents {
	padding: 20px 0;
}

#info .category {
	width: 15%;
	float: left;
}

#info .contents {
	width: 85%;
	float: left;
	border-left: 1px solid #b5a272;
	padding-left: 80px;
}

iframe {
	height: 400px;
	width: 100%;
}


/* フッター
---------------------------------------------------- */

footer {
	padding: 35px 0;
	background-image: url(../images/footer_bg.jpg);
	background-size: cover;
}

.footer-logo {
	width: 190px;
	height: auto;
}

.footer-arrow {
	width: 40px;
	height: auto;
	display: inline-block;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-arrow:hover {
	opacity: 0.7;
	transform: translateY(-5px);
}

footer .col-2 {
	justify-content: space-between;
	align-items: center;
}

footer .col-2-content {
	display: block;
}

footer .footer-nav {
	display: flex;
	align-items: center;
}

.footer-nav ul {
	padding-right: 25px;
	font-size: 15px;
	line-height: 1.3;
	font-weight: 400;
	transition: opacity 0.3s ease;
}

.footer-nav ul:last-child {
	padding-right: 0;
}

.footer-nav ul:hover {
	opacity: 0.5;
}

footer .col-2-content p {
	padding-top: 15px;
	font-size: 15px;
	line-height: 1.3;
	font-weight: 400;
	letter-spacing: 0.1em;
}

footer .sns {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.sns-wrapper {
	display: flex;
	align-items: flex-end;
	padding-top: 30px;
}

.footer-sns img {
	width: 35px;
	height: auto;
	margin-right: 15px;
	transition: opacity 0.3s ease;
}

.footer-hp {
	transition: opacity 0.3s ease;
}

.footer-hp img {
	width: 200px;
	height: auto;
}

footer .sns p {
	font-size: 15px;
	font-weight: 400;
}

.footer-sns img:hover {
	opacity: 0.5;
}

.footer-hp:hover {
	opacity: 0.5;
}




/* レティーナ用画像
---------------------------------------------------- */
@media only screen and (-webkit-min-device-pixel-ratio: 2) {

}

/* iPad　縦　以上　レティーナ用画像
---------------------------------------------------- */
@media only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 767px) {

}

/* IE10 */
@media all and (-ms-high-contrast:none) and (min-width: 767px) {

}


/* ----------------------------------------------------
画面の幅が768〜1023pxまで
---------------------------------------------------- */
@media screen and (min-width:768px) and (max-width:1023px) {
/* ----------------------------------------------------
	共通
---------------------------------------------------- */
.inner {
	max-width: 700px;
}

.narrow-inner {
	max-width: 670px;
}

.small-cta a {
	padding: 8px 8px;
}


/* テキスト
---------------------------------------------------- */

h3.large-title {
	font-size: 33px;
}

h4.middle-title {
	font-size: 22px;
}

.middle-text {
	font-size: 18px;
}

.ex-text {
	font-size: 16px;
}

.small-text {
	font-size: 15px;
	letter-spacing: 0.02em;
}


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

#header {
	padding: 0 50px;
}

h1.logo {
	width: 140px;
}

ul.header-link {
	padding-right: 16px;
}

ul.header-link li {
	font-size: 12px;
	letter-spacing: 0.02em;
}


/* メインビジュアル
---------------------------------------------------- */

.mv-contents {
	max-width: 700px;
}

.mv-bg01 {
	top: 30px;
}

.mv-bg01 img {
	max-width: 400px;
}

.mv-bg02 {
	bottom: 50px;
}

.mv-bg02 img {
	max-width: 270px;
}

.mv-detail {
	right: 40px;
	bottom: 140px;
}

.mv-detail img {
	max-width: 300px;
}

.mv-main img {
	max-width: 500px;
}

.mv-contents .mv-sub {
	bottom: 25px;
}

.mv-sub img {
	max-width: 300px;
}

h2.mv-copy {
	font-size: 30px;
	top: 14px;
	right: 40px;
}

.mv-text {
	padding: 25px 0;
}

.service-main {
	font-size: 25px;
	margin-bottom: 15px;
}

.service-sub {
	font-size: 16px;
	margin-bottom: 15px;
}

.mv-text p.small-text {
	font-size: 16px;
	line-height: 1.5;
}


/* introduction
---------------------------------------------------- */

.intro-bg01 img {
	max-width: 530px;
}

.intro-bg02 img {
	max-width: 530px;
}

.intro-bg02 {
	right: 140px;
	bottom: 530px;
}

.intro-detail {
	right: 250px;
}

#introduction .tablet_spec {
	display: none;
}


/* courses
---------------------------------------------------- */

#courses .col-2 .root-img img {
	width: 320px;
}


/* about
---------------------------------------------------- */

#about .text {
	padding: 0 20px;
	margin-top: 5px;
}

.img4 {
	left: 8%;
	bottom: -55%;
}


/* staff
---------------------------------------------------- */

#staff .col-2 {
	gap: 25px;
}

.staff-title {
	font-size: 25px;
	margin-bottom: 20px;
}

#staff .text {
	width: 50%;
}

#staff .text p.small-text {
	font-size: 14px;
	line-height: 1.5;
}


/* faq
---------------------------------------------------- */

.grid-content .Q {
	line-height: 1.5;
	font-size: 20px;
	letter-spacing: 0.03em;
}

.grid-content .A {
	font-size: 15px;
}


/* フッター
---------------------------------------------------- */

footer .col-2-content p {
	font-size: 12px;
	letter-spacing: 0.03em;
}

.footer-nav ul {
	padding-right: 12px;
	font-size: 12px;
}

.footer-sns img {
	width: 25px;
}

.footer-hp img {
	width: 170px;
}

footer .sns p {
	font-size: 12px;
}



}


/* ----------------------------------------------------
画面の幅が767pxまで（SP）
---------------------------------------------------- */
@media screen and (max-width:767px){
/* ----------------------------------------------------
	共通
---------------------------------------------------- */
.pc-only {
	display: none;
}

.sp-only {
	display: block;
}

.inner {
	max-width: 335px;
}

.narrow-inner {
	max-width: 290px;
}

/* ctaボタン */
.cta a {
	font-size: 20px;
	padding: 15px;
	width: 290px;
}

.arrow {
	width: 30px;
	height: 1px;
	margin: 7px -5px 7px 5px;
}

.arrow::before,
.arrow::after {
	width: 7px;
}

/* ヘッダー・フッターcta */
.small-cta a {
	padding: 8px 10px;
}


/* テキスト
---------------------------------------------------- */

h3.large-title {
	font-size: 28px;
	padding-bottom: 45px;
}

h4.middle-title {
	font-size: 18px;
	font-weight: 500;
}

.ex-text {
	font-size: 14px;
	letter-spacing: 0;
	line-height: 1.8;
}

.small-text {
	font-size: 14px;
	letter-spacing: 0.01em;
}




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

#header {
	height: 50px;
	width: 100%;
	padding: 0;
}

h1.logo {
	width: 115px;
	height: auto;
	margin-left: 20px;
}

ul.header-link li {
	padding-right: 15px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0;
}

.header-right {
	display: flex;
	align-items: center;
}

ul.header-link {
	padding-right: 0;
}

/* ハンバーガーメニュー */
.menu-button {
	display: block;
	width: 53px;
	height: 50px;
	padding: 15px 13px 15px 13px;
	background-color: #333333;
}

.menu-button-inner {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 100;
}

.menu-button-inner span {
	position: absolute;
	display: block;
	height: 1px;
	width: 100%;
	background-color: #ffffff;
	transition: all .6s;
}

.menu-button-inner .top {
	top: 0;
}

.menu-button-inner .middle {
	top: 0;
	bottom: 0;
	margin: auto;
}

.menu-button-inner .bottom {
	bottom: 0;
}

/* クリックしたら×印になる */
.menu-button-inner.active .top {
	transform: translateY(8px) rotate(-45deg);
}

.menu-button-inner.active .middle {
	opacity: 0;
}

.menu-button-inner.active .bottom {
	transform: translateY(-10.5px) rotate(45deg);
}

/* メニューの中身（クリックしたら表示されるようにする） */
.gnav-sp-wrap {
	position: fixed;
	z-index: 12;
	top: 0;
	left: 0;
	text-align: center;
	width: 100%;
	margin-top: 50px;
	display: none;
	background-color: rgba(250, 250, 250, 0.8);
	padding: 45px 0;
}

.gnav-sp li {
	padding-bottom: 30px;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.gnav-sp li:last-child {
	padding-bottom: 0;
}



/* メインビジュアル
---------------------------------------------------- */

#hero {
	margin-top: 85px;
}

h2.mv-copy {
	font-size: 28px;
	line-height: 1.4;
	top: 15px;
	right: 25px;
}

.mv-bg01 {
	position: absolute;
	top: 220px;
	left: 110px;
	width: 65%;
}

.mv-bg02 {
	bottom: -5px;
}

.mv-detail {
	right: 0;
	bottom: 295px;
}

.mv-text {
	padding: 35px 20px;
}

.mv-contents .mv-sub {
	bottom: 120px;
}

.service-main {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 15px;
	margin-top: 10px;
	line-height: 1.5;
}

.service-sub {
	font-size: 15px;
	font-weight: 600;
	border-bottom: none;
	line-height: 1.5;
}

.mv-main img {
	width: 65%;
}


/* introduction
---------------------------------------------------- */

#introduction .col-2-wrapper {
	background-image: url(../images/introduction_bg_sp.png);
	margin-bottom: 80px;
}

#introduction .col-2 {
	padding-bottom: 35px;
}

#introduction p.small-text {
	line-height: 1.9;
	letter-spacing: 0.1em;
	writing-mode: vertical-rl;
	padding-top: 60px;
}

#introduction .col-2-content {
	margin: 0 calc(50% - 50vw);
	width: 100%;
}

#introduction .intro01 {
	padding-left: 35px;
}

#introduction h4.middle-title {
	padding: 0 20px 0 15px;
	line-height: 1.4;
}

#introduction p.small-text {
	line-height: 1.4;
}

#introduction .intro01-img {
	justify-content: flex-end;
}

#introduction .intro02-mt {
	margin-right: 15px;
}

#introduction .intro03-st {
	padding-left: 35px;
}

.intro-bg01 {
	top: 435px;
}

.intro-bg02 {
	right: 30px;
	bottom: 450px;
}

.intro-detail {
	right: 50px;
	bottom: 430px;
}

#introduction .cta {
	padding-top: 0;
}

#introduction .intro03 {
	justify-content: flex-end;
}


/* target
---------------------------------------------------- */

#target {
	max-width: 320px;
	width: 100%;
	margin: 0 auto;
}

.col-4 {
	gap: 18px;
}

.col-4 > .col-4-content {
 width: calc((100% - 18px) / 2);
}


/* courses
---------------------------------------------------- */

#courses {
	padding: 100px 0;
	background-image: url(../images/courses_bg_sp.jpg);
}

#courses p.ex-text {
		padding-bottom: 50px;
}

#courses .col-2 {
	display: block;
	max-width: 290px;
	width: 100%;
	margin: 0 auto;
}

#courses .col-2 .root {
	display: flex;
}

#courses .col-2-content .time-price:last-child {
	margin-bottom: 50px;
}

#courses .middle-title {
	writing-mode: horizontal-tb;
	margin-bottom: 15px;
}

#courses .middle-title::before {
	width: 12px;
 height: 12px;
	margin-bottom: 1px;
	margin-right: 8px;
}

#courses p.time {
	margin-top: 5px;
	padding-bottom: 0;
}

#courses p.point {
	margin: 3px 0 15px 0;
}


/* about
---------------------------------------------------- */

#about {
	padding: 100px 0 50px 0;
}

#about .grid {
	display: block;
	margin: 50px 0;
}

#about .text {
	margin-top: 30px;
	padding: 0;
}

/* はみ出し専用ラッパー */
.sp-full {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.sp-img img {
	width: 100%;
	height: auto;
	display: block;
}

#about .middle-text {
	font-size: 18px;
	padding-bottom: 15px;
}


/* experience
---------------------------------------------------- */

.experience {
	margin: 0;
}


/* staff
---------------------------------------------------- */

#staff {
	padding: 100px 0;
}

#staff .col-2 {
	display: block;
}

#staff .text {
	width: 100%;
	text-align: center;
}

.staff-title {
	margin-top: 30px;
}

#staff .text .small-text {
	text-align: left;
}


/* faq
---------------------------------------------------- */

#faq {
	background-image: url(../images/faq_bg_sp.jpg);
}

.grid {
	display: block;
	max-width: 290px;
	width: 100%;
	margin: 0 auto;
}

.grid-content {
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.grid-content .Q {
	line-height: 1.6;
	font-size: 18px;
	margin-bottom: 10px;
}

.grid-content .A {
	font-size: 14px;
	letter-spacing: 0.03em;
}

.grid-content .A::before {
	margin-top: -3px;
}


/* info
---------------------------------------------------- */

#info {
	padding: 100px 0;
}

#info .narrow-inner {
	max-width: 322px;
	width: 100%;
	margin: 0 auto;
}

#info ul {
	margin: 50px 0;
}

#info .category, #info .contents {
	padding: 15px 0;
}

#info .category {
	width: 18%;
}

#info .contents {
	width: 83%;
	border-left: none;
	padding-left: 15px;
}

#info .small-text {
	letter-spacing: -0.01em;
}


/* フッター
---------------------------------------------------- */

footer {
	padding: 50px 0;
	background-image: url(../images/footer_bg_sp.jpg);
}

.footer-logo img {
	width: 170px;
	height: auto;
}

footer .col-2 {
	display: block;
	text-align: center;
}

footer .col-2-content p {
	font-size: 14px;
	letter-spacing: 0.08em;
}

footer .footer-nav {
	display: block;
	margin-top: 35px;
}

.footer-nav ul {
	padding: 0 0 20px 0;
	font-size: 14px;
}

footer .sns {
	display: block;
}

.sns-wrapper {
	display: block;
	text-align: center;
	padding-top: 20px;
}

.footer-hp {
	display: block;
	margin: 20px 0 35px 0;
}

footer .sns p {
	font-size: 13px;
	text-align: center;
}





}
