html,
body {
	font-size: 62.5%;
	height: 100%;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}
html::-webkit-scrollbar {
	display: none;
}
body {
	font-family: "Noto Sans JP", sans-serif;
	color: #222;
	background-color: #f3f3f3;
}
h1,
h2 {
	font-size: 5rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
}
p {
	font-size: 1.8rem;
	font-weight: 400;
}
a {
	color: #fff;
	font-size: 1.8rem;
	text-decoration: none;
}

img {
	width: 100%;
	height: auto;
	object-fit: cover;
	vertical-align: bottom;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
.is-sp {
	display: none;
}

.container {
	max-width: 1148px;
	padding-left: 2.4rem;
	padding-right: 2.4rem;
	margin: 0 auto;
}
.container2 {
	max-width: 1280px;
	padding: 0 2rem;
	margin: 0 auto;
}
.container3 {
	max-width: 1000px;
	margin: 0 auto;
}
@media screen and (max-width: 1439px) {
	h1,
	h2 {
		font-size: calc(50 / 1440 * 100vw);
	}
	p {
		font-size: calc(18 / 1440 * 100vw);
	}
	a {
		font-size: calc(18 / 1440 * 100vw);
	}
	.container {
		max-width: calc(1148 / 1440 * 100vw);
		padding-left: calc(24 / 1440 * 100vw);
		padding-right: calc(24 / 1440 * 100vw);
	}
	.container2 {
		max-width: calc(900 / 1440 * 100vw);
	}
	.container3 {
		max-width: calc(1000 / 1440 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	h2 {
		font-size: calc(32 / 390 * 100vw);
	}
	p {
		font-size: calc(16 / 390 * 100vw);
	}
	a {
		font-size: calc(16 / 390 * 100vw);
	}
	.is-pc {
		display: none;
	}
	.is-sp {
		display: block;
	}
	.container {
		max-width: calc(390 / 390 * 100vw);
		padding-left: calc(15 / 390 * 100vw);
		padding-right: calc(15 / 390 * 100vw);
	}
	.container2,
	.container3 {
		max-width: calc(370 / 390 * 100vw);
		padding: 0 calc(10 / 390 * 100vw);
	}
}

/* header */
header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 998;
	background-color: rgba(80, 80, 80, 0.8);
}
.header__inner {
	display: flex;
	align-items: center;
	gap: 10rem;
	padding: 0 20.2rem 0 10rem;
}
.header__logo {
	width: 18.2rem;
}
.header__nav ul {
	position: relative;
	display: flex;
	align-items: center;
	gap: 6rem;
}
.header__nav li {
	list-style: none;
}
.header__nav a {
	font-weight: 400;
	line-height: 1;
}
.has-sub a {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 0.8rem;
}
.has-sub:hover a {
	font-weight: 500;
	color: #ceae5a;
}
.has-sub a img {
	width: 0.9rem;
}
.header__nav.pc__nav > ul > li {
	height: 10rem;
	display: flex;
	align-items: center;
}
.header__nav.pc__nav .dropdown {
	position: absolute;
	width: 81rem;
	gap: 3rem;
	padding: 1.2rem 2rem 1.4rem;
	bottom: -5rem;
	left: 50%;
	transform: translate(-50%, 0);
	background-color: rgba(255, 255, 255, 0.8);
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
	z-index: 99;
}
.header__nav.pc__nav .has-sub > a {
	position: relative;
}
.header__nav.pc__nav > ul > li:hover .dropdown {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}
.header__nav.pc__nav .dropdown li a {
	display: block;
	padding: 0.4rem 0;
	color: #222;
	font-size: 1.6rem;
	text-decoration: none;
}
.header__nav.pc__nav .dropdown li a:hover {
	color: #642601;
	font-weight: 500;
}

.sp__only {
	display: none;
}
.sp__menu {
	display: none;
}

@media screen and (max-width: 1439px) {
	.header__inner {
		gap: calc(100 / 1440 * 100vw);
		padding: 0 calc(202 / 1440 * 100vw) 0 calc(100 / 1440 * 100vw);
	}
	.header__logo {
		width: calc(182 / 1440 * 100vw);
	}
	.header__nav ul {
		gap: calc(60 / 1440 * 100vw);
	}
	.has-sub a {
		gap: calc(8 / 1440 * 100vw);
	}
	.has-sub a img {
		width: calc(9 / 1440 * 100vw);
	}
	.header__nav.pc__nav > ul > li {
		height: calc(100 / 1440 * 100vw);
	}
	.header__nav.pc__nav .dropdown {
		width: calc(810 / 1440 * 100vw);
		gap: calc(30 / 1440 * 100vw);
		padding: calc(12 / 1440 * 100vw) calc(20 / 1440 * 100vw)
			calc(14 / 1440 * 100vw);
		bottom: calc(-50 / 1440 * 100vw);
	}
	.header__nav.pc__nav .dropdown li a {
		padding: calc(4 / 1440 * 100vw) 0;
		font-size: calc(16 / 1440 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	.header__inner {
		padding: 0;
		justify-content: space-between;
		align-items: center;
	}
	.header__logo {
		width: calc(111 / 390 * 100vw);
	}
	.pc__nav {
		display: none;
	}
	.sp__only {
		display: block;
	}
	.hamburger {
		position: relative;
		width: calc(60 / 390 * 100vw);
		height: calc(60 / 390 * 100vw);
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		background-color: #323232;
		cursor: pointer;
		z-index: 99999;
	}
	.hamburger span {
		position: absolute;
		width: calc(35 / 390 * 100vw);
		height: calc(2 / 390 * 100vw);
		background: #fff;
		transition: 0.3s;
	}
	.hamburger span:nth-child(1) {
		top: 28%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.hamburger span:nth-child(2) {
		top: 48%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.hamburger span:nth-child(3) {
		top: 68%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.hamburger.hamburger.active {
		background-color: rgba(0, 0, 0, 0.4);
	}
	.hamburger.active span:nth-child(1) {
		top: 50%;
		transform: translate(-50%, -50%) rotate(45deg);
	}
	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}
	.hamburger.active span:nth-child(3) {
		top: 50%;
		transform: translate(-50%, -50%) rotate(-45deg);
	}
	.sp__menu {
		display: block;
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background-color: #642601;
		color: #fff;
		transition: right 0.4s ease;
		z-index: 999;
	}
	.sp__menu.open {
		right: 0;
	}
	.sp__menu__inner {
		padding: calc(80 / 390 * 100vw) calc(20 / 390 * 100vw);
		height: 100%;
		overflow-y: auto;
	}
	.sp__menu__logo {
		display: block;
		width: calc(177 / 390 * 100vw);
		margin: 0 auto;
	}
	.sp__menu__list li {
		list-style: none;
		font-size: calc(18 / 390 * 100vw);
		border-bottom: 1px solid #fff;
		padding: calc(20 / 390 * 100vw) 0 calc(22 / 390 * 100vw);
	}
	.sp__menu__list li a {
		font-size: calc(18 / 390 * 100vw);
	}
	.has__child > span {
		position: relative;
		display: flex;
		justify-content: space-between;
		cursor: pointer;
	}
	.has__child > span::after {
		content: "";
		display: block;
		width: calc(10 / 390 * 100vw);
		height: calc(10 / 390 * 100vw);
		border-right: 0.2rem solid #fff;
		border-bottom: 0.2rem solid #fff;
		position: absolute;
		top: 44%;
		left: calc(-22 / 390 * 100vw);
		transform: translate(0, -50%) rotate(45deg);
		transition: transform 0.7s ease;
	}
	.has__child {
		padding-left: calc(30 / 390 * 100vw) !important;
	}
	.child {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.7s ease;
	}
	.child.open {
		max-height: calc(200 / 390 * 100vw);
	}
	.child li {
		border: none;
		padding-top: calc(15 / 390 * 100vw);
		padding-bottom: 0;
	}
	.child li a {
		font-size: calc(16 / 390 * 100vw);
		padding: calc(15 / 390 * 100vw) 0;
	}
	.header__sns {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: calc(10 / 390 * 100vw);
		padding: calc(20 / 390 * 100vw) 0;
	}
	.sp__menu__instagram img,
	.sp__menu__line img {
		width: calc(30 / 390 * 100vw);
	}
	.sp__menu__policy {
		font-size: calc(12 / 390 * 100vw);
		display: block;
		width: fit-content;
		margin: 0 auto;
	}
}

/* fixed-btn */
.fixed__btn {
	position: fixed;
	top: 2.3rem;
	right: 0;
	width: 9.1rem;
	display: flex;
	flex-direction: column;
	z-index: 999;
}
.contact__btn {
	z-index: 999;
}
.line__btn {
	transform: translateY(-3rem);
	z-index: 998;
}
.top__btn {
	position: fixed;
	width: 9.3rem;
	right: 10rem;
	bottom: 2rem;
	z-index: 999;
}
@media screen and (max-width: 1439px) {
	.fixed__btn {
		top: calc(23 / 1440 * 100vw);
		width: calc(91 / 1440 * 100vw);
	}
	.line__btn {
		transform: translateY(calc(-30 / 1440 * 100vw));
	}
	.top__btn {
		width: calc(93 / 1440 * 100vw);
		right: calc(100 / 1440 * 100vw);
		bottom: calc(20 / 1440 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	.fixed__btn {
		flex-direction: row;
		align-items: end;
		top: auto;
		bottom: 0;
		width: 100%;
		z-index: 1000;
	}
	.line__btn {
		transform: translateY(0);
	}
	.top__btn {
		position: fixed;
		width: calc(93 / 390 * 100vw);
		right: calc(15 / 390 * 100vw);
		bottom: calc(110 / 390 * 100vw);
	}
}

.top__btn.is-hidden {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
}
.top__btn {
	transition: opacity 0.3s;
}

/* top-fv */
.top__fv {
	position: relative;
	width: 100%;
	height: 75.4rem;
	overflow: hidden;
}
.fv__video {
	position: relative;
	width: 100%;
	height: 100%;
}
.fv__video video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: translate(-50%, -50%) scale(1);
}
.fv__overlay {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(5px);
}
.fv__overlay__flex {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5rem;
}
.fv__overlay__logo {
	width: 30.5rem;
}
.fv__overlay__text {
	padding: 1.2rem 0;
}
.fv__overlay__text p {
	font-size: 2.4rem;
	line-height: 1.2;
	font-weight: bold;
	color: #fff;
	font-family: "Zen Old Mincho", serif;
}
.fv__overlay__text p:first-child {
	font-size: 4rem;
	padding-bottom: 1rem;
}
.scroll {
	position: absolute;
	transform: translateX(-50%);
	left: 50%;
	top: 5rem;
}
.scroll span {
	font-size: 1.2rem;
	font-family: "Archivo", sans-serif;
	font-weight: 500;
	letter-spacing: 0.03em;
	color: #222;
}
.scroll::before {
	animation: scroll 2s infinite;
	background-color: #222;
	top: -5rem;
	content: "";
	height: 4rem;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	width: 1px;
}
@keyframes scroll {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	50% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	51% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
	100% {
		transform: scale(1, 0);
		transform-origin: 0 100%;
	}
}
@media screen and (max-width: 1439px) {
	.top__fv {
		height: calc(754 / 1440 * 100vw);
	}
	.fv__overlay__flex {
		gap: calc(50 / 1440 * 100vw);
	}
	.fv__overlay__logo {
		width: calc(305 / 1440 * 100vw);
	}
	.fv__overlay__text {
		padding: calc(12 / 1440 * 100vw) 0;
	}
	.fv__overlay__text p {
		font-size: calc(24 / 1440 * 100vw);
	}
	.fv__overlay__text p:first-child {
		font-size: calc(40 / 1440 * 100vw);
		padding-bottom: calc(10 / 1440 * 100vw);
	}
	.scroll {
		top: calc(50 / 1440 * 100vw);
	}
	.scroll span {
		font-size: calc(12 / 1440 * 100vw);
	}
	.scroll::before {
		top: calc(-50 / 1440 * 100vw);
		height: calc(40 / 1440 * 100vw);
		width: calc(1 / 1440 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	.top__fv {
		height: calc(560 / 390 * 100vw);
	}
	.fv__overlay {
		width: 100%;
	}
	.fv__overlay__logo {
		width: calc(305 / 390 * 100vw);
	}
	.top__fv .fv__overlay__flex {
		flex-direction: column;
		gap: 0;
		padding: 0 0 calc(20 / 390 * 100vw);
	}
	.fv__overlay__text p:first-child {
		font-size: calc(20 / 390 * 100vw);
		padding-bottom: calc(10 / 390 * 100vw);
	}
	.fv__overlay__text {
		padding: 0;
	}
	.fv__overlay__text p {
		font-size: calc(14 / 390 * 100vw);
		text-align: center;
	}
	.scroll {
		top: calc(50 / 390 * 100vw);
	}
	.scroll span {
		font-size: calc(12 / 390 * 100vw);
	}
	.scroll::before {
		top: calc(-50 / 390 * 100vw);
		height: calc(40 / 390 * 100vw);
		width: calc(1 / 390 * 100vw);
	}
}

/* top-about */
.top__about {
	position: relative;
	color: #222;
}
.top__about h1 {
	position: relative;
	padding-top: 24rem;
	text-align: center;
	font-size: 4.2rem;
	line-height: 1.2;
}
.top__about h1::before {
	content: "";
	position: absolute;
	background-image: url(../images/top/top1-icon1.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 11.2rem;
	height: 9rem;
	top: 12rem;
	left: 50%;
	transform: translateX(-50%);
}
.top__about h1::after {
	content: "";
	position: absolute;
	background-image: url(../images/top/top1-icon2.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 70.3rem;
	height: 15.1rem;
	bottom: -1rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.top__about h1 span {
	font-size: 7.5rem;
}
.top__about p {
	padding: 2rem 0 13rem;
	font-size: 2.2rem;
	font-weight: 400;
	line-height: 1.5;
}
.top__about h2 {
	font-size: 5.6rem;
	line-height: 1.35;
	text-align: center;
	background: linear-gradient(90deg, #fffaec 10%, #ceae5a 99%);
	padding: 2.3rem 0 3rem;
}
.top__about h2 span {
	font-size: 4.6rem;
}
.top__about h2 span.ls {
	letter-spacing: -0.12em;
}
.top__about__contents {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1rem;
}
.top__about__contents > div {
	position: relative;
}
.top__about__content {
	position: absolute;
	width: 65rem;
    top: 20rem;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 3rem 10rem 3rem 3rem;
	background-color: rgba(255, 255, 255, 0.9);
}
.top__about__content img {
	width: 13rem;
}
.top__about__contents h3 {
	font-size: 2.8rem;
	font-weight: 500;
	line-height: 1.4;
}
.top__about .btn__area {
	padding: 5rem 0 15rem;
}
.btn__area {
	width: fit-content;
	margin: 0 auto;
}
.btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45rem;
	height: 9rem;
	background-color: #fff;
	border: 3px solid #444;
	border-radius: 6px;
	color: #222;
	font-size: 2rem;
	font-weight: 700;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
	padding: 0.8rem 3rem 1rem 0;
}
.btn::after {
	content: "";
	position: absolute;
	display: inline-block;
	width: 13px;
	height: 13px;
	top: 50%;
	right: 12rem;
	border-top: 3px solid #000;
	border-right: 3px solid #000;
	transform: translate(-50%, -50%) rotate(45deg);
	border-radius: 2px;
}
@media screen and (max-width: 1439px) {
	.top__about h1 {
		padding-top: calc(240 / 1440 * 100vw);
		font-size: calc(42 / 1440 * 100vw);
	}
	.top__about h1::before {
		width: calc(112 / 1440 * 100vw);
		height: calc(90 / 1440 * 100vw);
		top: calc(120 / 1440 * 100vw);
	}
	.top__about h1::after {
		width: calc(703 / 1440 * 100vw);
		height: calc(151 / 1440 * 100vw);
		bottom: calc(-10 / 1440 * 100vw);
	}
	.top__about h1 span {
		font-size: calc(75 / 1440 * 100vw);
	}
	.top__about p {
		padding: calc(20 / 1440 * 100vw) 0 calc(130 / 1440 * 100vw);
		font-size: calc(22 / 1440 * 100vw);
	}
	.top__about h2 {
		font-size: calc(56 / 1440 * 100vw);
		padding: calc(23 / 1440 * 100vw) 0 calc(30 / 1440 * 100vw);
	}
	.top__about h2 span {
		font-size: calc(46 / 1440 * 100vw);
	}
	.top__about__contents {
		gap: calc(10 / 1440 * 100vw);
	}
	.top__about__content {
		width: calc(650 / 1440 * 100vw);
		top: calc(200 / 1440 * 100vw);
		gap: calc(30 / 1440 * 100vw);
		padding: calc(30 / 1440 * 100vw) calc(100 / 1440 * 100vw) calc(30 / 1440 * 100vw) calc(30 / 1440 * 100vw);
	}
	.top__about__content img {
		width: calc(130 / 1440 * 100vw);
	}
	.top__about__contents h3 {
		font-size: calc(28 / 1440 * 100vw);
	}
	.top__about .btn__area {
		padding: calc(50 / 1440 * 100vw) 0 calc(150 / 1440 * 100vw);
	}
	.btn {
		width: calc(450 / 1440 * 100vw);
		height: calc(90 / 1440 * 100vw);
		font-size: calc(20 / 1440 * 100vw);
		padding: calc(8 / 1440 * 100vw) calc(30 / 1440 * 100vw)
			calc(10 / 1440 * 100vw) 0;
	}
	.btn::after {
		width: calc(13 / 1440 * 100vw);
		height: calc(13 / 1440 * 100vw);
		right: calc(120 / 1440 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	.top__about h1 {
		padding-top: calc(150 / 390 * 100vw);
		font-size: calc(20 / 390 * 100vw);
		line-height: 1.2;
	}
	.top__about h1 span {
		font-size: calc(28 / 390 * 100vw);
	}
	.top__about h1::before {
		width: calc(65 / 390 * 100vw);
		height: calc(52 / 390 * 100vw);
		top: calc(80 / 390 * 100vw);
	}
	.top__about h1::after {
		background-image: url(../images/top/top1-icon2-sp.png);
		width: calc(330 / 390 * 100vw);
		height: calc(106 / 390 * 100vw);
		bottom: calc(-15 / 390 * 100vw);
		z-index: -1;
	}
	.top__about p {
		padding: calc(30 / 390 * 100vw) 0 calc(80 / 390 * 100vw);
		font-size: calc(16 / 390 * 100vw);
		font-weight: 400;
	}
	.top__about h2 {
		font-size: calc(40 / 390 * 100vw);
		padding: calc(20 / 390 * 100vw) 0 calc(20 / 390 * 100vw);
	}
	.top__about h2 span {
		font-size: calc(32 / 390 * 100vw);
	}
	.top__about__contents {
		flex-direction: column;
		gap: calc(20 / 390 * 100vw);
	}
	.top__about__contents .js-fadeup-sp {
		box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
	}
	.top__about__content {
		position: unset;
		width: 100%;
		gap: calc(10 / 390 * 100vw);
		padding: calc(20 / 390 * 100vw);
	}
	.top__about__content img {
		width: calc(75 / 390 * 100vw);
	}
	.top__about__contents h3 {
		font-size: calc(20 / 390 * 100vw);
	}
	.top__about__contents h3 span {
		font-size: calc(22 / 390 * 100vw);
	}
	.top__about .btn__area {
		padding: calc(40 / 390 * 100vw) 0 calc(80 / 390 * 100vw);
	}
	.btn {
		width: calc(330 / 390 * 100vw);
		height: calc(70 / 390 * 100vw);
		font-size: calc(18 / 390 * 100vw);
		padding: calc(8 / 390 * 100vw) calc(30 / 390 * 100vw) calc(10 / 390 * 100vw)
			0;
	}
	.btn::after {
		width: calc(14 / 390 * 100vw);
		height: calc(14 / 390 * 100vw);
		right: calc(65 / 390 * 100vw);
	}
	.top__about .btn {
		padding: calc(8 / 390 * 100vw) calc(35 / 390 * 100vw) calc(10 / 390 * 100vw)
			calc(12 / 390 * 100vw);
	}
	.top__about__contents.is-pc {
		display: none;
	}
}

/* top-courses */
.top__courses h2 {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	font-size: 4.2rem;
	line-height: 1.35;
	text-align: center;
	background: linear-gradient(90deg, #fffaec 10%, #ceae5a 99%);
	padding: 3.6rem 0 3.6rem;
}
.top__courses h2 img {
	width: 5.5rem;
}
.top__courses__contents {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 4rem;
	padding: 10rem 0 13rem;
}
.top__courses__contents > div {
	padding: 4rem;
	background-color: #fff;
	color: #222;
	border-radius: 2rem;
	width: 53rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.top__courses__image {
	width: 100%;
}
.top__courses__contents h3 {
	display: flex;
	align-items: center;
	gap: 2rem;
	font-size: 4rem;
	font-weight: 600;
	color: #642601;
}
.top__courses__contents h3 img {
	width: 5rem;
}
.top__courses__contents p {
	font-size: 2.2rem;
	line-height: 1.5;
}
.top__courses__contents .btn__area {
	margin-top: 2rem;
}
.top__courses__contents .btn {
	width: 35rem;
}
.top__courses__contents .btn::after {
	right: 7rem;
}
@media screen and (max-width: 1439px) {
	.top__courses h2 {
		gap: calc(10 / 1440 * 100vw);
		font-size: calc(42 / 1440 * 100vw);
		padding: calc(36 / 1440 * 100vw) 0 calc(36 / 1440 * 100vw);
	}
	.top__courses h2 img {
		width: calc(55 / 1440 * 100vw);
	}
	.top__courses__contents {
		gap: calc(40 / 1440 * 100vw);
		padding: calc(100 / 1440 * 100vw) 0 calc(130 / 1440 * 100vw);
	}
	.top__courses__contents > div {
		padding: calc(40 / 1440 * 100vw);
		width: calc(530 / 1440 * 100vw);
		gap: calc(20 / 1440 * 100vw);
	}
	.top__courses__contents h3 {
		gap: calc(20 / 1440 * 100vw);
		font-size: calc(40 / 1440 * 100vw);
	}
	.top__courses__contents h3 img {
		width: calc(50 / 1440 * 100vw);
	}
	.top__courses__contents p {
		font-size: calc(22 / 1440 * 100vw);
	}
	.top__courses__contents .btn__area {
		margin-top: calc(20 / 1440 * 100vw);
	}
	.top__courses__contents .btn {
		width: calc(350 / 1440 * 100vw);
	}
	.top__courses__contents .btn::after {
		right: calc(70 / 1440 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	.top__courses .container {
		padding-left: calc(10 / 390 * 100vw);
		padding-right: calc(10 / 390 * 100vw);
	}
	.top__courses h2 {
		flex-direction: column;
		gap: calc(10 / 390 * 100vw);
		font-size: calc(32 / 390 * 100vw);
		padding: calc(20 / 390 * 100vw) 0;
	}
	.top__courses h2 img {
		width: calc(45 / 390 * 100vw);
	}
	.top__courses h2::after {
		width: calc(34 / 390 * 100vw);
		height: calc(34 / 390 * 100vw);
		top: calc(170 / 1440 * 100vw);
	}
	.top__courses__contents {
		gap: calc(15 / 390 * 100vw);
		padding: calc(40 / 390 * 100vw) 0 calc(80 / 390 * 100vw);
	}
	.top__courses__contents > div {
		padding: calc(20 / 390 * 100vw);
		width: 100%;
		gap: calc(30 / 390 * 100vw);
		border-radius: calc(10 / 390 * 100vw);
	}
	.top__courses__contents p {
		font-size: calc(16 / 390 * 100vw);
	}
	.top__courses__contents__image {
		width: calc(146 / 390 * 100vw);
	}
	.top__courses__contents h3 {
		font-size: calc(28 / 390 * 100vw);
		gap: calc(15 / 390 * 100vw);
	}
	.top__courses__contents h3 img {
		width: calc(50 / 390 * 100vw);
	}
	.top__courses__contents .btn__area {
		margin-top: calc(-10 / 390 * 100vw);
	}
	.top__courses__contents .btn {
		width: calc(330 / 390 * 100vw);
	}
}

/* top-ees */
.top__ees {
	position: relative;
	width: 100%;
	height: 62.5rem;
	overflow: hidden;
}
.top__ees__image {
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.top__ees__container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	background-color: rgba(0, 0, 0, 0.4);
	border-radius: 1rem;
	width: 132rem;
	padding: 11rem 0;
}
.top__ees__container h2 {
	text-align: center;
}
.top__ees__container p {
	width: 50rem;
	padding: 2.5rem 0;
	margin: 0 auto;
}
@media screen and (max-width: 1439px) {
	.top__ees {
		height: calc(625 / 1440 * 100vw);
	}
	.top__ees__container {
		width: calc(1320 / 1440 * 100vw);
		padding: calc(110 / 1440 * 100vw) 0;
	}
	.top__ees__container p {
		width: calc(500 / 1440 * 100vw);
		padding: calc(25 / 1440 * 100vw) 0;
	}
}
@media screen and (max-width: 768px) {
	.top__ees {
		height: calc(539 / 390 * 100vw);
	}
	.top__ees__container {
		width: calc(350 / 390 * 100vw);
		padding: calc(54 / 390 * 100vw) calc(20 / 390 * 100vw);
	}
	.top__ees__text {
		width: calc(330 / 390 * 100vw);
		top: 66.5%;
		right: auto;
		left: 50%;
	}
	.top__ees__container h2 {
		font-size: calc(38 / 390 * 100vw);
	}
	.top__ees__container p {
		width: 100%;
		padding: calc(25 / 390 * 100vw) 0;
		margin: 0 auto;
	}
	.top__ees .btn {
		width: calc(310 / 390 * 100vw);
		font-weight: 500;
	}
	.top__ees .btn::after {
		right: calc(55 / 390 * 100vw);
	}
}

/* top-news */
.top__news__list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-bottom: 5rem;
}
.top__news {
	background-color: #f5eedc;
}
.top__news__list a {
	padding: 2rem;
	color: #222;
	}
.top__news h2 {
	text-align: center;
	padding: 10rem 0 5rem;
}
.news {
	background-color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1rem;
	height: auto;
	border-radius: 1rem;
}
.news h3 {
	font-size: 1.8rem;
	font-weight: 600;
	padding-top: 1rem;
}
.date {
	font-size: 1.4rem;
	line-height: 1;
	font-weight: 400;
}
.news .btn3 {
	width: 14rem;
	height: 2.5rem;
	font-size: 1.6rem;
	font-weight: 400;
	box-shadow: none;
	padding: 0.1rem 0 0.5rem;
}
.news .btn3::after {
	width: 1rem;
	height: 1rem;
}
.top__news .btn__area {
	padding: 0 0 10rem;
}
.btn3 {
	background-color: #656565;
	color: #fff;
	border: none;
	font-size: 1.8rem;
}
.btn3::after {
	right: 15rem;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
}
@media screen and (max-width: 1439px) {
	.top__news__list {
		gap: calc(10 / 1440 * 100vw);
		padding-bottom: calc(50 / 1440 * 100vw);
	}
	.top__news__list a {
		padding: calc(20 / 1440 * 100vw);
	}
	.top__news h2 {
		padding: calc(100 / 1440 * 100vw) 0 calc(50 / 1440 * 100vw);
	}
	.news {
		gap: calc(10 / 1440 * 100vw);
	}
	.news h3 {
		padding-top: calc(10 / 1440 * 100vw);
		font-size: calc(18 / 1440 * 100vw);
	}
	.date {
		font-size: calc(14 / 1440 * 100vw);
	}
	.news .btn3 {
		width: calc(140 / 1440 * 100vw);
		height: calc(25 / 1440 * 100vw);
		font-size: calc(16 / 1440 * 100vw);
		padding: calc(1 / 1440 * 100vw) 0 calc(5 / 1440 * 100vw);
	}
	.news .btn3::after {
		width: calc(10 / 1440 * 100vw);
		height: calc(10 / 1440 * 100vw);
	}
	.top__news .btn__area {
		padding: 0 0 calc(100 / 1440 * 100vw);
	}
	.btn3 {
		font-size: calc(18 / 1440 * 100vw);
	}
	.btn3::after {
		right: calc(150 / 1440 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	.top__news h2 {
		padding: calc(60 / 390 * 100vw) 0 calc(40 / 390 * 100vw);
	}
	.top__news h2::after {
		width: calc(37 / 390 * 100vw);
		height: calc(28 / 390 * 100vw);
		top: calc(55 / 390 * 100vw);
	}
	.top__news__list {
		padding-bottom: calc(40 / 390 * 100vw);
		gap: calc(10 / 390 * 100vw);
	}
	.top__news__list a {
		padding: calc(20 / 390 * 100vw);
	}
	.news {
		width: 100%;
		gap: calc(10 / 390 * 100vw);
	}
	.news h3 {
		padding-top: calc(10 / 390 * 100vw);
		font-size: calc(18 / 390 * 100vw);
	}
	.date {
		font-size: calc(14 / 390 * 100vw);
	}
	.news .btn__area {
		padding-top: calc(5 / 390 * 100vw);
	}
	.news .btn3 {
		width: calc(140 / 390 * 100vw);
		height: calc(25 / 390 * 100vw);
		font-size: calc(16 / 390 * 100vw);
		padding: calc(1 / 390 * 100vw) 0 calc(5 / 390 * 100vw);
	}
	.news .btn3::after {
		width: calc(10 / 390 * 100vw);
		height: calc(10 / 390 * 100vw);
	}
	.top__news > div > .btn__area {
		padding: 0 0 calc(60 / 390 * 100vw);
	}
	.btn3 {
		font-size: calc(18 / 390 * 100vw);
	}
	.btn3::after {
		right: calc(100 / 390 * 100vw);
	}
}

/* top-cta */
.cta {
	background-image: url(../images/top/top5-bg.png);
	background-size: cover;
	background-position: center;
	height: 96.9rem;
}
.cta .container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 2rem;
	width: 132rem;
	padding: 7.5rem 0;
}
.cta__text {
	padding: 2rem 0 0;
	margin: 0 auto;
	width: 67.7rem;
}
.cta h2 {
	font-size: 4rem;
	text-align: center;
}
.cta p {
	padding: 1rem 0 4rem;
}
.cta__contents {
	width: 100rem;
	margin: 0 auto;
}
.btn2 {
	border: none;
	background-color: #222;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 500;
	width: 30rem;
	height: 8rem;
	justify-content: left;
	padding: 0 0 0.1rem 5.5rem;
}
.btn2::after {
	background-image: url(../images/_blank-icon.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 2rem;
	height: 2rem;
	right: 6rem;
	transform: translateY(-50%);
	border: none;
}
@media screen and (max-width: 1439px) {
	.cta {
		height: calc(969 / 1440 * 100vw);
	}
	.cta .container {
		width: calc(1320 / 1440 * 100vw);
		padding: calc(75 / 1440 * 100vw) 0;
	}
	.cta__text {
		padding: calc(20 / 1440 * 100vw) 0 0;
		width: calc(677 / 1440 * 100vw);
	}
	.cta h2 {
		font-size: calc(40 / 1440 * 100vw);
	}
	.cta p {
		padding: calc(10 / 1440 * 100vw) 0 calc(40 / 1440 * 100vw);
	}
	.cta__contents {
		width: calc(1000 / 1440 * 100vw);
	}
	.btn2 {
		font-size: calc(18 / 1440 * 100vw);
		width: calc(300 / 1440 * 100vw);
		height: calc(80 / 1440 * 100vw);
		padding: 0 0 calc(1 / 1440 * 100vw) calc(55 / 1440 * 100vw);
	}
	.btn2::after {
		width: calc(20 / 1440 * 100vw);
		height: calc(20 / 1440 * 100vw);
		right: calc(60 / 1440 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	.cta {
		background-image: url(../images/top/top5-bg-sp.png);
		height: calc(986 / 390 * 100vw);
	}
	.cta .container {
		width: fit-content;
		padding: calc(40 / 390 * 100vw) calc(15 / 390 * 100vw);
	}
	.cta__text {
		padding: calc(10 / 390 * 100vw) 0;
		width: 100%;
	}
	.cta h2 {
		font-size: calc(24 / 390 * 100vw);
		text-align: center;
	}
	.cta__contents {
		width: 31rem;
	}
	.cta p {
		padding: calc(10 / 390 * 100vw) 0;
	}
	.cta .btn__area {
		margin: 0 auto;
	}
	.btn2 {
		font-size: calc(18 / 390 * 100vw);
	}
	.btn2::after {
		width: calc(20 / 390 * 100vw);
		height: calc(20 / 390 * 100vw);
		right: calc(60 / 390 * 100vw);
	}
	.cta .btn2 {
		font-size: calc(18 / 390 * 100vw);
		width: calc(310 / 390 * 100vw);
		height: calc(80 / 390 * 100vw);
		padding: 0 0 calc(3 / 390 * 100vw) calc(65 / 390 * 100vw);
		margin-top: calc(10 / 390 * 100vw);
	}
	.cta .btn2::after {
		width: calc(20 / 390 * 100vw);
		height: calc(20 / 390 * 100vw);
	}
}

/* common-contact */
.common__contact {
	padding: 10rem 0;
	background-color: #fff;
	text-align: center;
}
.common__contact2 {
	background-color: #f4eee5;
}
.common__contact h3 {
	font-size: 3.6rem;
	color: #642601;
	padding: 4rem 0;
}
.common__contact p {
	font-size: 1.8rem;
	line-height: 1.4;
}
.common__contact .tel {
	font-size: 3rem;
	font-family: "Adamina", serif;
	font-weight: 400;
	padding: 3rem 0 1rem;
}
.common__contact span a {
	color: #642601;
	font-size: 3rem;
}
.common__contact .note {
	font-size: 1.4rem;
	padding-bottom: 3rem;
}
.common__contact .btn {
	background-color: #ceae5a;
	color: #fff;
	border: none;
	width: 35rem;
	height: 8rem;
	font-size: 1.8rem;
	font-weight: 600;
}
.common__contact .btn::after {
	position: absolute;
	content: "";
	background-image: url(../images/contact-icon.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 2.3rem;
	height: 2.3rem;
	border: none;
	right: 10rem;
	transform: translateY(-50%);
}
.access__flex {
	display: flex;
	justify-content: center;
	gap: 8rem;
	padding: 5rem 0;
	background-color: #f4eee5;
	font-size: 1.8rem;
}
.common__access2 .access__flex {
	background-color: #fff;
}
.access__flex__sp {
	display: flex;
	gap: 3rem;
}
.access__flex p {
	font-size: 1.8rem;
}
.access__flex a {
	color: #287fd2;
	text-decoration: underline;
	width: fit-content;
	margin: 0 auto;
}
.common__contact__contents .container2,
.common__contact__contents h2,
.common__contact__contents p {
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 1439px) {
	.common__contact {
		padding: calc(100 / 1440 * 100vw) 0;
	}
	.common__contact h3 {
		font-size: calc(36 / 1440 * 100vw);
		padding: calc(40 / 1440 * 100vw) 0;
	}
	.common__contact p {
		font-size: calc(18 / 1440 * 100vw);
	}
	.common__contact .tel {
		font-size: calc(30 / 1440 * 100vw);
		padding: calc(30 / 1440 * 100vw) 0 calc(10 / 1440 * 100vw);
	}
	.common__contact span a {
		font-size: calc(30 / 1440 * 100vw);
	}
	.common__contact .note {
		font-size: calc(14 / 1440 * 100vw);
		padding-bottom: calc(30 / 1440 * 100vw);
	}
	.common__contact .btn {
		width: calc(350 / 1440 * 100vw);
		height: calc(80 / 1440 * 100vw);
		font-size: calc(18 / 1440 * 100vw);
	}
	.common__contact .btn::after {
		width: calc(23 / 1440 * 100vw);
		height: calc(23 / 1440 * 100vw);
		right: calc(100 / 1440 * 100vw);
	}
	.access__flex {
		gap: calc(80 / 1440 * 100vw);
		padding: calc(50 / 1440 * 100vw) 0;
		font-size: calc(18 / 1440 * 100vw);
	}
	.access__flex__sp {
		gap: calc(30 / 1440 * 100vw);
	}
	.access__flex p {
		font-size: calc(18 / 1440 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	.common__contact {
		padding: calc(80 / 390 * 100vw) 0;
	}
	.common__contact h3 {
		font-size: calc(36 / 390 * 100vw);
		padding: calc(40 / 390 * 100vw) 0;
	}
	.common__contact p {
		font-size: calc(16 / 390 * 100vw);
		line-height: 1.5;
	}
	.common__contact .tel {
		font-size: calc(30 / 390 * 100vw);
		padding: calc(30 / 390 * 100vw) 0 calc(10 / 390 * 100vw);
	}
	.common__contact span a {
		font-size: calc(30 / 390 * 100vw);
	}
	.common__contact .note {
		font-size: calc(14 / 390 * 100vw);
		padding-bottom: calc(30 / 390 * 100vw);
	}
	.common__contact .btn {
		width: calc(350 / 390 * 100vw);
		height: calc(80 / 390 * 100vw);
		font-size: calc(18 / 390 * 100vw);
	}
	.common__contact .btn::after {
		width: calc(23 / 390 * 100vw);
		height: calc(23 / 390 * 100vw);
		right: calc(100 / 390 * 100vw);
		transform: translateY(-50%);
	}
	.access__flex {
		flex-direction: column;
		gap: calc(10 / 390 * 100vw);
		padding: calc(40 / 390 * 100vw) calc(20 / 390 * 100vw);
	}
	.access__flex__sp {
		gap: calc(10 / 390 * 100vw);
		flex-direction: column;
	}
	.access__flex p {
		font-size: calc(18 / 390 * 100vw);
	}
	.map,
	iframe {
		height: calc(863 / 390 * 100vw);
	}
}

/* banner */
.banner__area {
	padding: 10rem 0;
}
.banner__cert1__flex {
	width: 100rem;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4.3rem;
	padding: 2rem;
	border: 1px solid #222;
	border-radius: 6px;
}
.banner__area--cert1 {
	display: block;
	width: 38rem;
}
.banner__area p {
	font-size: 2.4rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
}
.banner__area .btn3 {
	padding: 0 2rem 0 0;
	margin: 5rem 0 7rem;
	box-shadow: none;
}
.banner__area .btn3::after {
	background-image: url(../images/_blank-icon.png);
	width: 2rem;
	height: 2rem;
}
.banner__area__other {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	padding: 5rem 0;
}
.banner__area__other a {
	width: 20.9rem;
}
.banner__area .btn2 {
	width: 45rem;
	height: 9rem;
	padding: 0 0 0.1rem 14rem;
}
.banner__area .btn2::after {
	right: 14rem;
}
@media screen and (max-width: 1439px) {
	.banner__area {
		padding: calc(100 / 1440 * 100vw) 0;
	}
	.banner__cert1__flex {
		width: calc(1000 / 1440 * 100vw);
		gap: calc(43 / 1440 * 100vw);
		padding: calc(20 / 1440 * 100vw);
		border: calc(1 / 1440 * 100vw) solid #222;
	}
	.banner__area--cert1 {
		width: calc(380 / 1440 * 100vw);
	}
	.banner__area p {
		font-size: calc(24 / 1440 * 100vw);
	}
	.banner__area .btn3 {
		padding: 0 calc(20 / 1440 * 100vw) 0 0;
		margin: calc(50 / 1440 * 100vw) 0 calc(70 / 1440 * 100vw);
	}
	.banner__area .btn3::after {
		width: calc(20 / 1440 * 100vw);
		height: calc(20 / 1440 * 100vw);
	}
	.banner__area__other {
		gap: calc(20 / 1440 * 100vw);
		padding: calc(50 / 1440 * 100vw) 0;
	}
	.banner__area__other a {
		width: calc(209 / 1440 * 100vw);
	}
	.banner__area .btn2 {
		width: calc(450 / 1440 * 100vw);
		height: calc(90 / 1440 * 100vw);
		padding: 0 0 calc(1 / 1440 * 100vw) calc(140 / 1440 * 100vw);
	}
	.banner__area .btn2::after {
		right: calc(140 / 1440 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	.banner__area {
		padding: calc(60 / 390 * 100vw) 0;
	}
	.banner__cert1__flex {
		width: calc(350 / 390 * 100vw);
		padding: calc(20 / 390 * 100vw);
		flex-direction: column;
		gap: calc(15 / 390 * 100vw);
		border-radius: 0;
	}
	.banner__area--cert1 {
		width: calc(304 / 390 * 100vw);
	}
	.banner__area p {
		text-align: center;
		font-size: calc(20 / 390 * 100vw);
	}
	.banner__area .btn2 {
		width: calc(350 / 390 * 100vw);
		height: calc(65 / 390 * 100vw);
		padding: 0 0 calc(3 / 390 * 100vw) calc(95 / 390 * 100vw);
	}
	.banner__area__other {
		flex-wrap: wrap;
		gap: calc(20 / 390 * 100vw);
		padding: calc(30 / 390 * 100vw) 0;
	}
	.banner__area__other a {
		width: calc(350 / 390 * 100vw);
	}
	.banner__area .btn2 {
		border-radius: 0;
	}
	.banner__area .btn2::after {
		right: calc(90 / 390 * 100vw);
	}
}

/* footer */
footer {
	background-color: #222;
	color: #fff;
	padding: 6rem 10rem 0 10rem;
}
.footer__menu__flex {
	display: flex;
	justify-content: space-between;
	padding-bottom: 5rem;
}
.footer__menu__flex div {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.footer__menu__flex div p {
	position: relative;
	font-size: 2.4rem;
	font-weight: bold;
	padding-bottom: 1rem;
}
.footer__menu__flex div p::before {
	content: "";
	position: absolute;
	width: 4px;
	height: 33px;
	left: -2rem;
	top: 0.3rem;
	background: #fff;
}
.footer__menu__flex a {
	display: flex;
	align-items: flex-end;
	gap: 0.8rem;
	line-height: 1;
}
.footer__menu__flex a img {
	width: 0.9rem;
}
.footer__logo {
	display: block;
	width: 30rem;
	margin: 0 auto;
	padding: 5rem 0 1rem;
}
.footer__logo.is-sp {
	display: none;
}
.footer__contact {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 7.8rem;
}
.footer__contact .btn__area {
	margin: 0;
}
.footer__contact .btn {
	background-color: #ceae5a;
	color: #fff;
	border: none;
	width: 45rem;
	height: 10rem;
	font-size: 2.4rem;
	font-weight: 600;
}
.footer__contact .btn::after {
	position: absolute;
	content: "";
	background-image: url(../images/contact-icon.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 3rem;
	height: 3rem;
	border: none;
	right: 12rem;
	transform: translateY(-50%);
}
.footer__contact__text--tel {
	font-size: 5rem !important;
	line-height: 1;
	display: flex;
	align-items: center;
	gap: 2rem;
}
.footer__contact__text--tel img {
	width: 5.5rem;
}
.footer__contact p {
	font-size: 1.8rem;
	font-family: "Noto Sans", sans-serif;
	font-weight: 400;
}
.footer__contact__text p:nth-child(2) {
	padding: 1rem 0;
	font-size: 1.2rem;
}
.footer__sns {
	display: flex;
	justify-content: center;
	gap: 2rem;
}
.footer__sns a {
	display: block;
	width: 4.5rem;
}
.footer__copy p {
	font-size: 1.2rem;
	text-align: center;
	padding: 5rem 0 2rem;
}
@media screen and (max-width: 1439px) {
	footer {
		padding: calc(60 / 1440 * 100vw) calc(100 / 1440 * 100vw) 0
			calc(100 / 1440 * 100vw);
	}
	.footer__menu__flex {
		padding-bottom: calc(50 / 1440 * 100vw);
	}
	.footer__menu__flex div {
		gap: calc(15 / 1440 * 100vw);
	}
	.footer__menu__flex div p {
		font-size: calc(24 / 1440 * 100vw);
		padding-bottom: calc(10 / 1440 * 100vw);
	}
	.footer__menu__flex div p::before {
		width: calc(4 / 1440 * 100vw);
		height: calc(33 / 1440 * 100vw);
		left: calc(-20 / 1440 * 100vw);
		top: calc(3 / 1440 * 100vw);
	}
	.footer__menu__flex a {
		gap: calc(8 / 1440 * 100vw);
	}
	.footer__menu__flex a img {
		width: calc(9 / 1440 * 100vw);
	}
	.footer__logo {
		width: calc(300 / 1440 * 100vw);
		padding: calc(50 / 1440 * 100vw) 0 calc(10 / 1440 * 100vw);
	}
	.footer__contact {
		gap: calc(78 / 1440 * 100vw);
	}
	.footer__contact .btn {
		width: calc(450 / 1440 * 100vw);
		height: calc(100 / 1440 * 100vw);
		font-size: calc(24 / 1440 * 100vw);
	}
	.footer__contact .btn::after {
		width: calc(30 / 1440 * 100vw);
		height: calc(30 / 1440 * 100vw);
		right: calc(120 / 1440 * 100vw);
	}
	.footer__contact__text--tel {
		font-size: calc(50 / 1440 * 100vw);
		gap: calc(20 / 1440 * 100vw);
	}
	.footer__contact__text--tel img {
		width: calc(55 / 1440 * 100vw);
	}
	.footer__contact p {
		font-size: calc(18 / 1440 * 100vw);
	}
	.footer__contact__text p:nth-child(2) {
		padding: calc(10 / 1440 * 100vw) 0;
		font-size: calc(12 / 1440 * 100vw);
	}
	.footer__sns {
		gap: calc(20 / 1440 * 100vw);
	}
	.footer__sns a {
		width: calc(45 / 1440 * 100vw);
	}
	.footer__copy p {
		font-size: calc(12 / 1440 * 100vw);
		padding: calc(50 / 1440 * 100vw) 0 calc(20 / 1440 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	footer {
		padding: 0;
	}
	.footer__menu__flex {
		flex-direction: column;
		gap: calc(40 / 390 * 100vw);
		padding: calc(60 / 390 * 100vw) calc(20 / 390 * 100vw)
			calc(50 / 390 * 100vw) calc(40 / 390 * 100vw);
	}
	.footer__menu__flex div {
		gap: calc(20 / 390 * 100vw);
	}
	.footer__menu__flex a {
		gap: calc(8 / 390 * 100vw);
	}
	.footer__menu__flex a img {
		width: calc(9 / 390 * 100vw);
	}
	.footer__menu__flex div p {
		font-size: calc(20 / 390 * 100vw);
		padding-bottom: 1rem;
	}
	.footer__menu__flex div p::before {
		width: 3px;
		height: calc(30 / 390 * 100vw);
		left: calc(-15 / 390 * 100vw);
		top: calc(2 / 390 * 100vw);
	}
	.footer__contact {
		flex-direction: column;
		gap: calc(20 / 390 * 100vw);
	}
	.footer__contact__text--tel {
		font-size: calc(32 / 390 * 100vw) !important;
		gap: calc(10 / 390 * 100vw);
		justify-content: center;
	}
	.footer__contact__text--tel img {
		width: calc(32 / 390 * 100vw);
	}
	.footer__contact p {
		text-align: center;
		font-size: calc(16 / 390 * 100vw);
	}
	.footer__contact__text p:nth-child(2) {
		padding: calc(10 / 390 * 100vw) 0 calc(20 / 390 * 100vw);
		font-size: calc(12 / 390 * 100vw);
	}
	.footer__contact .btn {
		width: calc(350 / 390 * 100vw);
		height: calc(80 / 390 * 100vw);
		font-size: calc(18 / 390 * 100vw);
	}
	.footer__contact .btn::after {
		width: calc(23 / 390 * 100vw);
		height: calc(23 / 390 * 100vw);
		right: calc(90 / 390 * 100vw);
	}
	.footer__logo {
		width: calc(300 / 390 * 100vw);
		padding: calc(30 / 390 * 100vw) 0 0;
	}
	.footer__sns {
		gap: calc(20 / 390 * 100vw);
	}
	.footer__sns a {
		width: calc(45 / 390 * 100vw);
	}
	.footer__copy p {
		font-size: calc(12 / 390 * 100vw);
		padding: calc(50 / 390 * 100vw) 0 calc(100 / 390 * 100vw);
	}
}

/* fv */
.fv {
	position: relative;
	width: 100%;
	height: auto;
}

/* section1 */
.section1 img {
	display: block;
	margin: 0 auto;
}

/* courses */
.fv__overlay h1 {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 3.6rem;
	font-weight: 500;
	color: #fff;
	padding: 1rem 0;
	text-align: center;
}
.section1.course {
	padding: 6rem 0;
}
.section1.elementary img {
	width: 8.1rem;
}
.section1 p {
	font-size: 2.8rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	padding-top: 3rem;
}
.section2.course h2 {
	font-size: 4.2rem;
	line-height: 1.35;
	text-align: center;
	background: linear-gradient(90deg, #fffaec 10%, #ceae5a 99%);
	padding: 2rem 0;
}
.course .section2__contents {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	gap: 4rem;
	padding: 9rem 0 10rem;
}
.course .section2__contents > div {
	width: 60rem;
	height: 74.8rem;
	background-color: #f4eee5;
	border-radius: 1rem;
	padding: 2rem;
}
.course .section2__contents h3 {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
	color: #642601;
	padding: 2rem 0;
	text-align: center;
}
.course .section2__contents p {
	text-align: left;
}
.other__course h2 {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	font-size: 4.2rem;
	line-height: 1.35;
	text-align: center;
	background: linear-gradient(90deg, #fffaec 10%, #ceae5a 99%);
	padding: 2rem 0;
}
.other__course h2 img {
	width: 5.5rem;
}
.other__course__container {
	max-width: 1300px;
	padding: 0 1rem;
	margin: 0 auto;
}
.other__course .top__courses__contents {
	gap: 2rem;
	padding: 10rem 0;
}
.other__course .top__courses__contents > div {
	width: 41.3rem;
}
.other__course .top__courses__contents h3 {
	font-size: 3.2rem;
}
.other__course .top__courses__contents .btn {
	transform: translateX(-2.5%);
}
@media screen and (max-width: 1439px) {
	.fv__overlay h1 {
		font-size: calc(36 / 1440 * 100vw);
		padding: calc(10 / 1440 * 100vw) 0;
	}
	.section1.course {
		padding: calc(60 / 1440 * 100vw) 0;
	}
	.section1.elementary img {
		width: calc(81 / 1440 * 100vw);
	}
	.section1 p {
		font-size: calc(28 / 1440 * 100vw);
		padding-top: calc(30 / 1440 * 100vw);
	}
	.section2.course h2 {
		font-size: calc(42 / 1440 * 100vw);
		padding: calc(20 / 1440 * 100vw) 0;
	}
	.course .section2__contents {
		gap: calc(40 / 1440 * 100vw);
		padding: calc(90 / 1440 * 100vw) 0 calc(100 / 1440 * 100vw);
	}
	.course .section2__contents > div {
		width: calc(600 / 1440 * 100vw);
		height: calc(748 / 1440 * 100vw);
		padding: calc(20 / 1440 * 100vw);
	}
	.course .section2__contents h3 {
		font-size: calc(24 / 1440 * 100vw);
		padding: calc(20 / 1440 * 100vw) 0;
	}
	.other__course h2 {
		gap: calc(10 / 1440 * 100vw);
		font-size: calc(42 / 1440 * 100vw);
		padding: calc(20 / 1440 * 100vw) 0;
	}
	.other__course h2 img {
		width: calc(55 / 1440 * 100vw);
	}
	.other__course__container {
		max-width: calc(1300 / 1440 * 100vw);
		padding: 0 calc(10 / 1440 * 100vw);
	}
	.other__course .top__courses__contents {
		gap: calc(20 / 1440 * 100vw);
		padding: calc(100 / 1440 * 100vw) 0;
	}
	.other__course .top__courses__contents > div {
		width: calc(413 / 1440 * 100vw);
	}
	.other__course .top__courses__contents h3 {
		font-size: calc(32 / 1440 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	.fv__overlay h1 {
		font-size: calc(24 / 390 * 100vw);
		padding: calc(10 / 390 * 100vw) 0;
	}
	.section1.course {
		padding: calc(20 / 390 * 100vw) 0;
	}
	.section1.course .container2{
		        max-width: calc(390 / 390 * 100vw);
        padding: 0 calc(10 / 390 * 100vw);
	}
	.section1.elementary img {
		width: calc(40 / 390 * 100vw);
	}
	.section1.course p {
		font-size: calc(24 / 390 * 100vw);
		padding: calc(30 / 390 * 100vw) 0 calc(10 / 390 * 100vw);
	}
	.section1.course h3 {
		font-size: calc(22 / 390 * 100vw);
		line-height: 1.2;
	}
	.section2.course h2 {
		font-size: calc(24 / 390 * 100vw);
		padding: calc(20 / 390 * 100vw) 0;
	}
	.course .section2__contents {
		flex-direction: column;
		gap: calc(40 / 390 * 100vw);
		padding: calc(50 / 390 * 100vw) 0;
	}
	.course .section2__contents > div {
		width: 100%;
		height: calc(581 / 390 * 100vw);
		padding: calc(20 / 390 * 100vw);
	}
	.course .section2__contents h3 {
		font-size: calc(24 / 390 * 100vw);
		padding: calc(20 / 390 * 100vw) 0;
	}
	.course .section2__contents p {
		font-size: calc(18 / 390 * 100vw);
	}
	.other__course h2 {
		flex-direction: column;
		gap: calc(10 / 390 * 100vw);
		font-size: calc(24 / 390 * 100vw);
		padding: calc(20 / 390 * 100vw) 0;
	}
	.other__course h2 img {
		width: calc(50 / 390 * 100vw);
	}
	.other__course__container {
		max-width: calc(390 / 390 * 100vw);
		padding: 0 calc(10 / 390 * 100vw);
	}
	.other__course .top__courses__contents {
		flex-direction: column;
		gap: calc(40 / 390 * 100vw);
		padding: calc(40 / 390 * 100vw) 0 calc(80 / 390 * 100vw);
	}
	.other__course .top__courses__contents > div {
		width: 100%;
	}
	.other__course .top__courses__contents h3 {
		font-size: calc(28 / 390 * 100vw);
	}
	.other__course .top__courses__contents .btn__area {
		margin-top: calc(10 / 390 * 100vw);
	}
	.other__course .top__courses__contents .btn {
		transform: translateX(0);
	}
}

.section1.juniorhigh img {
	width: 7.3rem;
}
@media screen and (max-width: 1439px) {
	.section1.juniorhigh img {
		width: calc(73 / 1440 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	.section1.juniorhigh img {
		width: calc(35 / 390 * 100vw);
	}
}

.section1.highschool img {
	width: 7.9rem;
}
@media screen and (max-width: 1439px) {
	.section1.highschool img {
		width: calc(79 / 1440 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	.section1.highschool img {
		width: calc(39 / 390 * 100vw);
	}
}

.section1.examscourse img {
	width: 10.1rem;
}
@media screen and (max-width: 1439px) {
	.section1.examscourse img {
		width: calc(101 / 1440 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	.section1.examscourse img {
		width: calc(49 / 390 * 100vw);
	}
}

.section1.ees img {
	width: 16.3rem;
}
.graph {
	max-width: 1280px;
	padding: 0 2rem 14rem 2rem;
	margin: 0 auto;
}
.other__course.ees .other__course__container {
	max-width: 1120px;
}
.other__course.ees .top__courses__contents {
	gap: 4rem;
}
.other__course.ees .top__courses__contents > div {
	width: 53rem;
}
.other__course.ees .top__courses__contents h3 {
	font-size: 4rem;
}
@media screen and (max-width: 1439px) {
	.section1.ees img {
		width: calc(163 / 1440 * 100vw);
	}
	.course .section2__contents div:nth-child(1) h3 {
        font-size: calc(23 / 390 * 100vw);
    }
	.graph {
		max-width: calc(1280 / 1440 * 100vw);
		padding: 0 calc(20 / 1440 * 100vw) calc(140 / 1440 * 100vw)
			calc(20 / 1440 * 100vw);
	}
	.other__course.ees .other__course__container {
		max-width: calc(1120 / 1440 * 100vw);
	}
	.other__course.ees .top__courses__contents {
		gap: calc(40 / 1440 * 100vw);
	}
	.other__course.ees .top__courses__contents > div {
		width: calc(530 / 1440 * 100vw);
	}
	.other__course.ees .top__courses__contents h3 {
		font-size: calc(40 / 1440 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	.section1.ees img {
		width: calc(79 / 390 * 100vw);
	}
	.graph {
		max-width: calc(390 / 390 * 100vw);
		padding: 0;
	}
	.other__course.ees .other__course__container {
		max-width: calc(390 / 390 * 100vw);
	}
	.other__course.ees .top__courses__contents {
		gap: calc(40 / 390 * 100vw);
	}
	.other__course.ees .top__courses__contents > div {
		width: 100%;
	}
	.other__course.ees .top__courses__contents h3 {
		font-size: calc(28 / 390 * 100vw);
	}
}

/* about */
.section1.about {
	padding: 5rem 0 7rem;
	background-color: #fff;
}
.section1.about img {
	width: 8.1rem;
}
.section1__contents {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 3rem;
	padding-top: 5rem;
}
.section1__content {
	width: 39.3rem;
	padding: 4rem;
	background-color: #f4eee5;
	border-radius: 1rem;
}
.section1__content h3 {
	font-family: "Zen Old Mincho", serif;
	font-size: 2.4rem;
	line-height: 1.1;
	color: #642601;
	text-align: center;
}
.section1__content img {
	width: 8rem !important;
	padding: 2rem 0;
}
.section1__box {
	padding: 1rem;
	background-color: #fff;
	border-radius: 0.6rem;
}
.section1__box:nth-of-type(2) {
	margin: 1rem 0;
}
.section1__box h4 {
	font-size: 1.6rem;
	color: #ceae5a;
}
.section1__box p {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.4rem;
	font-weight: 400;
	text-align: left;
	padding-top: 1rem;
}
.section1__box .note {
	font-size: 1.2rem;
}
.about.banner__area {
	padding: 6rem 0;
	background-color: #fff;
}
.about .banner__area__other {
	padding: 4rem 0;
}
.about h2 {
	font-size: 4.2rem;
	line-height: 1.35;
	text-align: center;
	background: linear-gradient(90deg, #fffaec 10%, #ceae5a 99%);
	padding: 2rem 0;
}
.section2.about {
	background-color: #f4eee5;
}
.about__container {
	max-width: 1300px;
	padding: 10rem 1rem;
	margin: 0 auto;
}
.section2 .about__container p {
	font-size: 2.2rem;
	text-align: center;
}
.section2__contents {
	display: flex;
	justify-content: space-between;
	padding: 5rem 0;
}
.section2__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 3rem;
	width: 30.5rem;
	padding: 2rem;
	background-color: #fff;
}
.section2__content h3 {
	font-family: "Zen Old Mincho", serif;
	font-size: 2rem;
	line-height: 1.4;
	text-align: center;
}
.about.section3 {
	background-color: #fff;
}
.section3__contents {
	display: flex;
	justify-content: space-between;
}
.section3__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 3.8rem;
	width: 30.5rem;
	padding: 2rem;
	border: 1px solid #222;
	border-radius: 1rem;
}
.section3__content h3 {
	font-family: "Zen Old Mincho", serif;
	font-size: 2.2rem;
	line-height: 1.1;
	color: #ceae5a;
	text-align: center;
}
.section3__content img {
	padding: 4rem 0 3rem;
}
.section3__content:nth-child(1) img {
	padding: 4rem 0 1.5rem;
}
.section3__content p {
	font-size: 1.6rem;
}
.section3__content a {
	display: block;
	font-size: 1.6rem;
	color: #232323;
	text-decoration: underline;
	text-align: center;
	margin-top: 1.5rem;
}
.section3__content > div:nth-child(2) {
	padding-bottom: 1.8rem;
}
.section3__content__box {
	background-color: #f4eee5;
	border-radius: 0.6rem;
}
.section3__content__box:nth-of-type(2) {
	margin: 1rem 0;
}
.section3__content__box p {
	font-size: 1.6rem;
	font-weight: bold;
	padding: 1rem;
	text-align: center;
}
.sp__btn {
	display: none;
}
@media screen and (max-width: 1439px) {
	.section1.about {
		padding: calc(50 / 1440 * 100vw) 0 calc(70 / 1440 * 100vw);
	}
	.section1.about img {
		width: calc(81 / 1440 * 100vw);
	}
	.section1__contents {
		gap: calc(30 / 1440 * 100vw);
		padding-top: calc(50 / 1440 * 100vw);
	}
	.section1__content {
		width: calc(393 / 1440 * 100vw);
		padding: calc(40 / 1440 * 100vw);
	}
	.section1__content h3 {
		font-size: calc(24 / 1440 * 100vw);
	}
	.section1__content img {
		width: calc(80 / 1440 * 100vw) !important;
		padding: calc(20 / 1440 * 100vw) 0;
	}
	.section1__box {
		padding: calc(10 / 1440 * 100vw);
	}
	.section1__box:nth-of-type(2) {
		margin: calc(10 / 1440 * 100vw) 0;
	}
	.section1__box h4 {
		font-size: calc(16 / 1440 * 100vw);
	}
	.section1__box p {
		font-size: calc(14 / 1440 * 100vw);
		padding-top: calc(10 / 1440 * 100vw);
	}
	.section1__box .note {
		font-size: calc(12 / 1440 * 100vw);
	}
	.about.banner__area {
		padding: calc(60 / 1440 * 100vw) 0;
	}
	.about .banner__area__other {
		padding: calc(40 / 1440 * 100vw) 0;
	}
	.about h2 {
		font-size: calc(42 / 1440 * 100vw);
		padding: calc(20 / 1440 * 100vw) 0;
	}
	.about__container {
		padding: calc(100 / 1440 * 100vw) calc(10 / 1440 * 100vw);
	}
	.section2 .about__container p {
		font-size: calc(22 / 1440 * 100vw);
	}
	.section2__contents {
		padding: calc(50 / 1440 * 100vw) 0;
	}
	.section2__content {
		gap: calc(30 / 1440 * 100vw);
		width: calc(305 / 1440 * 100vw);
		padding: calc(20 / 1440 * 100vw);
	}
	.section2__content h3 {
		font-size: calc(20 / 1440 * 100vw);
	}
	.section3__content {
		gap: calc(38 / 1440 * 100vw);
		width: calc(305 / 1440 * 100vw);
		padding: calc(20 / 1440 * 100vw);
	}
	.section3__content h3 {
		font-size: calc(22 / 1440 * 100vw);
	}
	.section3__content img {
		padding: calc(40 / 1440 * 100vw) 0 calc(30 / 1440 * 100vw);
	}
	.section3__content:nth-child(1) img {
		padding: calc(40 / 1440 * 100vw) 0 calc(15 / 1440 * 100vw);
	}
	.section3__content p {
		font-size: calc(16 / 1440 * 100vw);
	}
	.section3__content a {
		font-size: calc(16 / 1440 * 100vw);
		margin-top: calc(15 / 1440 * 100vw);
	}
	.section3__content > div:nth-child(2) {
		padding-bottom: calc(18 / 1440 * 100vw);
	}
	.section3__content__box:nth-of-type(2) {
		margin: calc(10 / 1440 * 100vw) 0;
	}
	.section3__content__box p {
		font-size: calc(16 / 1440 * 100vw);
		padding: calc(10 / 1440 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	.sp__btn__flex {
		display: flex;
		flex-direction: column;
		gap: calc(10 / 390 * 100vw);
		max-width: calc(370 / 390 * 100vw);
		padding: calc(60 / 390 * 100vw) calc(10 / 390 * 100vw) 0
			calc(10 / 390 * 100vw);
		margin: 0 auto;
	}
	.sp__btn {
		display: flex;
		align-items: center;
		gap: calc(10 / 390 * 100vw);
		font-family: "Zen Old Mincho", serif;
		font-size: calc(18 / 390 * 100vw);
		font-weight: bold;
		line-height: 1.1;
		color: #642601;
		padding: calc(15 / 390 * 100vw) calc(20 / 390 * 100vw);
		border: 1px solid #ceae5a;
		border-radius: calc(6 / 390 * 100vw);
		box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
	}
	.sp__btn img {
		width: calc(18 / 390 * 100vw) !important;
		margin: 0;
	}
	.section1.about {
		padding: calc(20 / 390 * 100vw) 0 calc(10 / 390 * 100vw);
	}
	.section1.about img {
		width: calc(37 / 390 * 100vw);
	}
	.section1 p {
		font-size: calc(24 / 390 * 100vw);
		padding-top: calc(15 / 390 * 100vw);
	}
	.section1__contents {
		flex-direction: column;
		gap: calc(30 / 390 * 100vw);
		max-width: calc(370 / 390 * 100vw);
		padding: calc(50 / 390 * 100vw) calc(10 / 390 * 100vw) 0
			calc(10 / 390 * 100vw);
		margin: 0 auto;
	}
	.section1__content {
		width: 100%;
		padding: calc(20 / 390 * 100vw) calc(15 / 390 * 100vw);
	}
	.section1__content h3 {
		font-size: calc(22 / 390 * 100vw);
	}
	.section1__content img {
		width: calc(80 / 390 * 100vw) !important;
		padding: calc(30 / 390 * 100vw) 0;
	}
	.section1__box {
		padding: calc(10 / 390 * 100vw);
	}
	.section1__box:nth-of-type(2) {
		margin: calc(10 / 390 * 100vw) 0;
	}
	.section1__box h4 {
		font-size: calc(16 / 390 * 100vw);
	}
	.section1__box p {
		font-size: calc(14 / 390 * 100vw);
		padding-top: calc(10 / 390 * 100vw);
	}
	.section1__box .note {
		font-size: calc(12 / 390 * 100vw);
	}
	.about.banner__area {
		padding: calc(80 / 390 * 100vw) 0;
	}
	.about h2 {
		font-size: calc(24 / 390 * 100vw);
		padding: calc(20 / 390 * 100vw) 0;
	}
	.about.section2 h2 {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		gap: calc(10 / 390 * 100vw);
	}
	.about.section2 h2 img {
		width: calc(45 / 390 * 100vw);
	}
	.about__container {
		padding: calc(30 / 390 * 100vw) calc(20 / 390 * 100vw)
			calc(80 / 390 * 100vw);
	}
	.section2 .about__container p {
		font-size: calc(16 / 390 * 100vw);
	}
	.section2__contents {
		flex-direction: column;
		gap: calc(20 / 390 * 100vw);
		padding: calc(20 / 390 * 100vw) 0 calc(50 / 390 * 100vw);
	}
	.section2__content {
		gap: calc(15 / 390 * 100vw);
		width: 100%;
		padding: calc(20 / 390 * 100vw);
	}
	.section2__content h3 {
		font-size: calc(22 / 390 * 100vw);
	}
	.section3__contents {
		flex-direction: column;
		gap: calc(20 / 390 * 100vw);
		padding-bottom: calc(20 / 390 * 100vw);
	}
	.section3__content {
		gap: calc(30 / 390 * 100vw);
		width: 100%;
		padding: calc(20 / 390 * 100vw);
	}
	.section3__content h3 {
		font-size: calc(22 / 390 * 100vw);
	}
	.section3__content img,
	.section3__content:nth-child(1) img {
		padding: calc(30 / 390 * 100vw) 0;
	}
	.section3__content p {
		font-size: calc(16 / 390 * 100vw);
	}
	.section3__content a {
		font-size: calc(16 / 390 * 100vw);
		margin-top: calc(15 / 390 * 100vw);
	}
	.section3__content__box p {
		padding: calc(10 / 390 * 100vw);
	}
	.section3__content__box:nth-of-type(2) {
		margin: calc(10 / 390 * 100vw) 0;
	}
	.section3__content > div:nth-child(2) {
		padding-bottom: 0;
	}
}

/* teachers */
.section1.teachers {
	padding: 5rem 0;
	background-color: #fff;
}
.section1.teachers img {
	width: 8.3rem;
	border-radius: 1rem;
}
.teachers__section {
	padding: 10rem 0;
}
.teachers__section h2 {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 3.2rem;
	font-weight: 600;
	color: #642601;
	padding-bottom: 2rem;
}
.teachers__section__content {
	display: flex;
	gap: 2rem;
	padding: 2rem;
	border-radius: 1rem;
	background-color: #fff;
	margin-bottom: 4rem;
}
.teachers__section__content img,
.teachers__section__content > div {
	width: 59rem;
}
.name {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2.4rem;
}
.name-sub {
	font-size: 1.8rem;
	font-weight: 500;
}
.position {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.8;
	padding: 2rem 0;
}
.subjects {
	font-weight: bold;
	border: 1px solid #222;
	padding: 1rem;
	margin-bottom: 2rem;
}
.subjects p {
	font-weight: bold;
}
.subject__flex {
	display: flex;
	gap: 1rem;
	padding-top: 1rem;
}
.subject__flex p {
	flex: 1;
	font-size: 1.4rem;
	line-height: 1.5;
	color: #fff;
	background-color: #ceae5a;
	text-align: center;
	padding: 0.4rem;
}
.teachers__section > div > h2:last-of-type {
	margin-top: 10rem;
}
.teachers__section__content.ees {
	flex-direction: column;
	margin-bottom: 10rem;
}
.teachers__section__content.ees img {
	width: 100%;
}
.teachers__section__content.ees p {
	font-size: 1.6rem;
	line-height: 1.5;
}
.teachers__section__content.ees p:first-child {
	font-size: 1.8rem;
}
.title {
	font-weight: bold;
	padding: 2rem 0 1rem;
}
@media screen and (max-width: 1439px) {
	.section1.teachers {
		padding: calc(50 / 1440 * 100vw) 0;
	}
	.section1.teachers img {
		width: calc(83 / 1440 * 100vw);
	}
	.teachers__section {
		padding: calc(100 / 1440 * 100vw) 0;
	}
	.teachers__section h2 {
		font-size: calc(32 / 1440 * 100vw);
		padding-bottom: calc(20 / 1440 * 100vw);
	}
	.teachers__section__content {
		gap: calc(20 / 1440 * 100vw);
		padding: calc(20 / 1440 * 100vw);
		margin-bottom: calc(40 / 1440 * 100vw);
	}
	.teachers__section__content img,
	.teachers__section__content > div {
		width: calc(590 / 1440 * 100vw);
	}
	.name {
		font-size: calc(24 / 1440 * 100vw);
	}
	.name-sub {
		font-size: calc(18 / 1440 * 100vw);
	}
	.position {
		font-size: calc(18 / 1440 * 100vw);
		padding: calc(20 / 1440 * 100vw) 0;
	}
	.subjects {
		padding: calc(10 / 1440 * 100vw);
		margin-bottom: calc(20 / 1440 * 100vw);
	}
	.subject__flex {
		flex-wrap: wrap;
		gap: calc(10 / 1440 * 100vw);
		padding-top: calc(10 / 1440 * 100vw);
	}
	.subject__flex p {
		font-size: calc(14 / 1440 * 100vw);
		padding: calc(4 / 1440 * 100vw);
	}
	.teachers__section > div > h2:last-of-type {
		margin-top: calc(100 / 1440 * 100vw);
	}
	.teachers__section__content.ees {
		margin-bottom: calc(100 / 1440 * 100vw);
	}
	.teachers__section__content.ees p {
		font-size: calc(16 / 1440 * 100vw);
	}
	.teachers__section__content.ees p:first-child {
		font-size: calc(18 / 1440 * 100vw);
	}
	.title {
		padding: calc(20 / 1440 * 100vw) 0 calc(10 / 1440 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	.section1.teachers {
		padding: calc(30 / 390 * 100vw) 0;
	}
	.section1.teachers img {
		width: calc(40 / 390 * 100vw);
	}
	.teachers__section {
		padding: calc(50 / 390 * 100vw) 0;
	}
	.teachers__section h2 {
		text-align: center;
		font-size: calc(36 / 390 * 100vw);
		padding-bottom: calc(40 / 390 * 100vw);
	}
	.teachers__section__content {
		gap: calc(20 / 390 * 100vw);
		padding: calc(20 / 390 * 100vw);
		margin-bottom: calc(40 / 390 * 100vw);
		flex-direction: column;
	}
	.teachers__section__content img {
		width: 100%;
	}
	.teachers__section__content > div {
		width: 100%;
	}
	.name {
		font-size: calc(24 / 390 * 100vw);
	}
	.name-sub {
		font-size: calc(18 / 390 * 100vw);
	}
	.position {
		font-size: calc(16 / 390 * 100vw);
		padding: calc(20 / 390 * 100vw) 0;
	}
	.subjects {
		padding: calc(10 / 390 * 100vw);
		margin-bottom: calc(20 / 390 * 100vw);
	}
	.subject__flex {
		gap: calc(10 / 390 * 100vw);
		padding-top: calc(10 / 390 * 100vw);
	}
	.subject__flex p {
		flex: 0 0 48%;
		font-size: calc(14 / 390 * 100vw);
		padding: calc(4 / 390 * 100vw);
	}
	.teachers__section > div > h2:nth-of-type(2),
	.teachers__section > div > h2:last-of-type {
		margin-top: calc(80 / 390 * 100vw);
	}
	.teachers__section__content.ees {
		margin-bottom: calc(30 / 390 * 100vw);
	}
	.teachers__section__content.ees p {
		font-size: calc(16 / 390 * 100vw);
	}
	.teachers__section__content.ees p:first-child {
		font-size: calc(18 / 390 * 100vw);
	}
	.title {
		padding: calc(20 / 390 * 100vw) 0 calc(10 / 390 * 100vw);
	}
}

/* contact */
.contact__section3 {
	background-color: #fff;
}
.contact__section3 h2,
.contact h2 {
	font-size: 3.2rem;
	line-height: 1.35;
	text-align: center;
	background: linear-gradient(90deg, #fffaec 10%, #ceae5a 99%);
	padding: 2rem 0;
}
.contact__section3__flow {
	display: flex;
	justify-content: space-between;
	padding: 10rem 0;
}
.contact__section3__flow > div {
	position: relative;
	width: 27.1rem;
	height: 51.8rem;
	background-color: #f4eee5;
	padding: 2rem;
}
.contact__section3__flow > div::after {
	position: absolute;
	content: "";
	background-image: url(../images/contact/flow.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 2.3rem;
	height: 4rem;
	bottom: 50%;
	right: -3.8rem;
}
.contact__section3__flow > div:last-of-type:after {
	display: none;
}
.contact__section3__flow .step {
	text-align: center;
	color: #ceae5a;
	font-family: "Zen Old Mincho", serif;
	font-size: 2.8rem;
	font-weight: 700;
}
.contact__section3__flow h3 {
	font-size: 2.4rem;
	text-align: center;
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	color: #642601;
	padding: 1rem 0;
}
.contact__section3__flow .js-fadeup-sp:first-child h3 {
	line-height: 1;
}
.flow__box {
	background-color: #fff;
	padding: 1rem;
	margin: 1rem 0 2rem;
}
.flow__box h4 {
	font-size: 1.8rem;
}
.flow__box h4:last-of-type {
	padding-top: 1rem;
}
.flow__box h4 span {
	color: #ceae5a;
}
.flow__box a {
	color: #232323;
	font-size: 2.4rem;
	font-weight: bold;
	text-decoration: underline;
}
.flow__box a:last-of-type {
	font-size: 2rem;
}
.flow__box p {
	font-size: 1.4rem;
	line-height: 1.7;
}
.contact {
	background-color: #fff;
}
.contact__contents {
	width: 74.5rem;
	padding: 7.5rem 0 10rem;
	margin: 0 auto;
}
@media screen and (max-width: 1439px) {
	.contact__section3 h2,
	.contact h2 {
		font-size: calc(32 / 1440 * 100vw);
		padding: calc(20 / 1440 * 100vw) 0;
	}
	.contact__section3__flow {
		padding: calc(100 / 1440 * 100vw) 0;
	}
	.contact__section3__flow > div {
		width: calc(271 / 1440 * 100vw);
		height: calc(518 / 1440 * 100vw);
		padding: calc(20 / 1440 * 100vw);
	}
	.contact__section3__flow > div::after {
		width: calc(23 / 1440 * 100vw);
		height: calc(40 / 1440 * 100vw);
		right: calc(-38 / 1440 * 100vw);
	}
	.contact__section3__flow .step {
		font-size: calc(28 / 1440 * 100vw);
	}
	.contact__section3__flow h3 {
		font-size: calc(24 / 1440 * 100vw);
		padding: calc(10 / 1440 * 100vw) 0;
	}
	.flow__box {
		padding: calc(10 / 1440 * 100vw);
		margin: calc(10 / 1440 * 100vw) 0 calc(20 / 1440 * 100vw);
	}
	.flow__box h4 {
		font-size: calc(18 / 1440 * 100vw);
	}
	.flow__box h4:last-of-type {
		padding-top: calc(10 / 1440 * 100vw);
	}
	.flow__box a {
		font-size: calc(24 / 1440 * 100vw);
	}
	.flow__box a:last-of-type {
		font-size: calc(20 / 1440 * 100vw);
	}
	.flow__box p {
		font-size: calc(14 / 1440 * 100vw);
	}
	.contact__contents {
		width: calc(745 / 1440 * 100vw);
		padding: calc(75 / 1440 * 100vw) 0 calc(100 / 1440 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	.contact.sp__btn__flex {
		max-width: calc(390 / 390 * 100vw);
		padding: calc(20 / 390 * 100vw);
	}
	.contact__section3 h2,
	.contact h2 {
		padding: calc(20 / 390 * 100vw) 0;
		font-size: calc(32 / 390 * 100vw);
	}
	.contact__section3__flow {
		flex-direction: column;
		gap: calc(50 / 390 * 100vw);
		padding: calc(40 / 390 * 100vw) 0;
	}
	.contact__section3__flow > div {
		width: 100%;
		height: auto;
		padding: calc(20 / 390 * 100vw) calc(15 / 390 * 100vw);
	}
	.contact__section3__flow > div::after {
		width: calc(23 / 390 * 100vw);
		height: calc(40 / 390 * 100vw);
		bottom: calc(-47 / 390 * 100vw);
		left: 50%;
		right: auto;
		transform: translateX(-50%) rotate(90deg);
	}
	.contact__section3__flow .step {
		font-size: calc(28 / 390 * 100vw);
	}
	.contact__section3__flow h3 {
		font-size: calc(20 / 390 * 100vw);
		padding: calc(10 / 390 * 100vw) 0 calc(15 / 390 * 100vw);
	}
	.contact__section3__flow .js-fadeup-sp:first-child h3 {
		line-height: normal;
	}
	.flow__box {
		padding: calc(10 / 390 * 100vw);
		margin: 0 0 calc(15 / 390 * 100vw);
	}
	.flow__box h4 {
		font-size: calc(14 / 390 * 100vw);
	}
	.flow__box a {
		font-size: calc(18 / 390 * 100vw);
	}
	.flow__box p {
		font-size: calc(14 / 390 * 100vw);
	}
	.flow__box a:last-of-type {
		font-size: calc(14 / 390 * 100vw);
	}
	.contact__contents {
		width: calc(330 / 390 * 100vw);
		padding: calc(40 / 390 * 100vw) 0;
	}
}

.contact-form .form-row {
	display: flex;
	align-items: flex-start;
	gap: 4.5rem;
	padding: 2.5rem 0;
}
.contact-form .form-label {
	width: 25rem;
	font-size: 1.8rem;
	font-weight: 500;
	text-align: left;
	color: #642601;
}
.contact-form .req {
	background: #ceae5a;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 500;
	padding: 0 0.3rem;
	margin-left: 1.5rem;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
	width: 45rem;
	height: 4rem;
	padding: 0.8rem 1.2rem;
	border: 1px solid #d9d9d9;
	border-radius: 0.3rem;
	background: #fff;
	color: #222;
	font-size: 1.6rem;
	font-weight: 500;
	box-sizing: border-box;
}
.contact-form select {
	width: 25rem;
}
.contact-form textarea {
	height: 10rem;
}
input[type="radio"] {
	width: 2rem;
	height: 2rem;
}
.contact-form .wpcf7-list-item label {
	font-size: 1.6rem;
	color: #3a3a3a;
}
span.wpcf7-form-control.wpcf7-radio {
	width: 45rem;
	display: flex;
	gap: 1.5rem 5rem;
	flex-wrap: wrap;
}
span.wpcf7-form-control.wpcf7-radio label {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-weight: 500;
}
.contact-form .select .wpcf7-form-control-wrap {
	position: relative;
}
.contact-form .select .wpcf7-form-control-wrap::after {
	content: "";
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	width: 0;
	height: 0;
	border-left: 0.8rem solid transparent;
	border-right: 0.8rem solid transparent;
	border-top: 1rem solid #222;
}
.address-fields {
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
	width: 45rem;
}
.zip-row {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.zip-mark {
	font-size: 1.6rem;
}
.zip-input {
	width: 15rem !important;
	height: 4rem !important;
	font-size: 1.6rem;
}
.auto-btn {
	height: 2rem;
	padding: 0 0.7rem;
	background: #222;
	border: none;
	font-size: 1.4rem;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.addr-input {
	width: 45rem !important;
	height: 4rem !important;
	font-size: 1.6rem;
}
.submit-row {
	justify-content: center;
	padding-top: 4rem;
	margin-top: 3.5rem;
	width: fit-content;
	margin: 0 auto;
	position: relative;
}
.submit-row .btn {
	background: #ceae5a;
	color: #fff;
	font-size: 2rem;
	border: none;
}
.submit-row::after {
	position: absolute;
	content: "";
	background-image: url(../images/contact-icon.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 2.3rem;
	height: 2.3rem;
	right: 14rem;
	top: 50%;
	transform: translateY(-50%);
}
.confirm .submit-row::after {
	background-image: url(../images/contact/contact-icon2.png);
	background-size: contain;
	background-repeat: no-repeat;
}
.back-row .btn {
	border: 2px solid #232323;
	background-color: #fff;
	color: #232323;
	padding: 0.8rem 0 1rem 3rem;
}
.back-row::after {
	left: 14rem;
	transform: translateY(-50%) rotate(180deg);
}
.wpcf7-spinner,
.wpcf7-response-output {
	display: none;
}
.form-row.submit-row {
	padding: 0;
	margin-top: 5rem;
}
.confirm .contact__contents > p {
	font-size: 2rem;
	font-weight: 500;
	text-align: center;
	padding-bottom: 3rem;
}
.confirm-value {
	width: 40rem;
	font-size: 1.8rem;
	font-weight: 500;
	text-align: left;
}
.confirm .form-row.submit-row {
	margin: 5rem 0 0;
	padding: 0;
	width: 100%;
	gap: unset;
	justify-content: space-between;
}
.confirm .form-row.submit-row > .submit-row {
	width: 50%;
	margin: 0;
}
.contact-form .form-row.submit-row > .btn::after,
.confirm-page > .submit-row::after {
	display: none;
}
.thanks {
	padding: 10rem 0;
}
.thanks__text p {
	font-weight: 500;
	padding: 4rem 0;
}
.thanks__text h2 {
	font-size: 3.8rem;
	text-align: center;
}
.thanks__text a {
	color: #1a58b4;
}
.thanks > div > a {
	font-size: 2.4rem;
	font-weight: 600;
	color: #ceae5a;
	width: fit-content;
	margin: 0 auto;
	display: block;
}
@media screen and (max-width: 1439px) {
	.contact-form .form-row {
		gap: calc(45 / 1440 * 100vw);
		padding: calc(25 / 1440 * 100vw) 0;
	}
	.contact-form .form-label {
		width: calc(250 / 1440 * 100vw);
		font-size: calc(18 / 1440 * 100vw);
	}
	.contact-form .req {
		font-size: calc(14 / 1440 * 100vw);
		padding: 0 calc(3 / 1440 * 100vw);
		margin-left: calc(15 / 1440 * 100vw);
	}
	.contact-form input[type="text"],
	.contact-form input[type="email"],
	.contact-form input[type="tel"],
	.contact-form select,
	.contact-form textarea {
		width: calc(450 / 1440 * 100vw);
		height: calc(40 / 1440 * 100vw);
		padding: calc(8 / 1440 * 100vw) calc(12 / 1440 * 100vw);
		border-radius: calc(3 / 1440 * 100vw);
		font-size: calc(16 / 1440 * 100vw);
	}
	.contact-form select {
		width: calc(250 / 1440 * 100vw);
	}
	.contact-form textarea {
		height: calc(100 / 1440 * 100vw);
	}
	input[type="radio"] {
		width: calc(20 / 1440 * 100vw);
		height: calc(20 / 1440 * 100vw);
	}
	.contact-form .wpcf7-list-item label {
		font-size: calc(16 / 1440 * 100vw);
	}
	span.wpcf7-form-control.wpcf7-radio {
		width: calc(450 / 1440 * 100vw);
		gap: calc(15 / 1440 * 100vw) calc(50 / 1440 * 100vw);
	}
	span.wpcf7-form-control.wpcf7-radio label {
		gap: calc(10 / 1440 * 100vw);
	}
	.contact-form .select .wpcf7-form-control-wrap::after {
		right: calc(10 / 1440 * 100vw);
		border-left: calc(8 / 1440 * 100vw) solid transparent;
		border-right: calc(8 / 1440 * 100vw) solid transparent;
		border-top: calc(10 / 1440 * 100vw) solid;
	}
	.address-fields {
		gap: calc(16 / 1440 * 100vw);
		width: calc(450 / 1440 * 100vw);
	}
	.zip-row {
		gap: calc(10 / 1440 * 100vw);
	}
	.zip-mark {
		font-size: calc(16 / 1440 * 100vw);
	}
	.zip-input {
		width: calc(150 / 1440 * 100vw) !important;
		height: calc(40 / 1440 * 100vw) !important;
		font-size: calc(16 / 1440 * 100vw);
	}
	.auto-btn {
		height: calc(20 / 1440 * 100vw);
		padding: 0 calc(7 / 1440 * 100vw);
		font-size: calc(14 / 1440 * 100vw);
	}
	.addr-input {
		width: calc(450 / 1440 * 100vw) !important;
		height: calc(40 / 1440 * 100vw) !important;
		font-size: calc(16 / 1440 * 100vw);
	}
	.submit-row {
		padding-top: calc(40 / 1440 * 100vw);
		margin-top: calc(35 / 1440 * 100vw);
	}
	.submit-row .btn {
		font-size: calc(20 / 1440 * 100vw);
	}
	.submit-row::after {
		width: calc(23 / 1440 * 100vw);
		height: calc(23 / 1440 * 100vw);
		right: calc(140 / 1440 * 100vw);
	}
	.back-row .btn {
		padding: calc(8 / 1440 * 100vw) 0 calc(10 / 1440 * 100vw)
			calc(30 / 1440 * 100vw);
	}
	.back-row::after {
		left: calc(140 / 1440 * 100vw);
	}
	.form-row.submit-row {
		margin-top: calc(50 / 1440 * 100vw);
	}
	.confirm .contact__contents > p {
		font-size: calc(20 / 1440 * 100vw);
		padding-bottom: calc(30 / 1440 * 100vw);
	}
	.confirm-value {
		width: calc(400 / 1440 * 100vw);
		font-size: calc(18 / 1440 * 100vw);
	}
	.confirm .form-row.submit-row {
		margin: calc(50 / 1440 * 100vw) 0 0;
	}
	.thanks {
		padding: calc(100 / 1440 * 100vw) 0;
	}
	.thanks__text p {
		padding: calc(40 / 1440 * 100vw) 0;
	}
	.thanks__text h2 {
		font-size: calc(38 / 1440 * 100vw);
	}
	.thanks > div > a {
		font-size: calc(24 / 1440 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	.wpcf7.js {
		width: 100%;
	}
	.contact-form .form-row {
		gap: calc(10 / 390 * 100vw);
		padding: calc(12 / 390 * 100vw) 0;
		flex-direction: column;
	}
	.contact-form .form-label {
		width: calc(250 / 390 * 100vw);
		font-size: calc(14 / 390 * 100vw);
	}
	.contact-form .req {
		font-size: calc(12 / 390 * 100vw);
		padding: 0 calc(3 / 390 * 100vw);
		margin-left: calc(10 / 390 * 100vw);
	}
	.contact-form .wpcf7-list-item label {
		font-size: calc(14 / 390 * 100vw);
	}
	.contact-form input[type="text"],
	.contact-form input[type="email"],
	.contact-form input[type="tel"],
	.contact-form select,
	.contact-form textarea {
		width: 100%;
		height: calc(30 / 390 * 100vw);
		padding: calc(5 / 390 * 100vw) calc(12 / 390 * 100vw);
		font-size: calc(14 / 390 * 100vw);
	}
	span.wpcf7-form-control.wpcf7-radio {
		width: 100%;
		gap: calc(5 / 390 * 100vw) calc(15 / 390 * 100vw);
	}
	input[type="radio"] {
		width: calc(15 / 390 * 100vw);
		height: calc(15 / 390 * 100vw);
	}
	span.wpcf7-form-control.wpcf7-radio label {
		gap: calc(8 / 390 * 100vw);
	}
	.contact-form select {
		width: calc(170 / 390 * 100vw);
	}
	.contact-form .select .wpcf7-form-control-wrap::after {
		right: calc(10 / 390 * 100vw);
		border-left: calc(8 / 390 * 100vw) solid transparent;
		border-right: calc(8 / 390 * 100vw) solid transparent;
		border-top: calc(10 / 390 * 100vw) solid #222;
	}
	.address-fields {
		width: 100%;
		gap: calc(10 / 390 * 100vw);
	}
	.auto-btn {
		height: calc(18 / 390 * 100vw);
		padding: 0 calc(6 / 390 * 100vw);
		font-size: calc(12 / 390 * 100vw);
	}
	.addr-input {
		width: 100% !important;
		height: calc(30 / 390 * 100vw) !important;
		font-size: calc(14 / 390 * 100vw);
	}
	.zip-row {
		gap: calc(10 / 390 * 100vw);
	}
	.zip-input {
		width: calc(100 / 390 * 100vw) !important;
		height: calc(30 / 390 * 100vw) !important;
		font-size: calc(14 / 390 * 100vw);
	}
	.zip-mark {
		font-size: calc(14 / 390 * 100vw);
	}
	.contact-form textarea {
		height: calc(90 / 390 * 100vw);
	}
	.submit-row .btn {
		font-size: calc(16 / 390 * 100vw);
	}
	.submit-row::after {
		width: calc(20 / 390 * 100vw);
		height: calc(20 / 390 * 100vw);
		right: calc(50 / 390 * 100vw);
	}
	.form-row.submit-row {
		padding: 0;
		margin-top: calc(50 / 390 * 100vw);
	}
	.confirm .contact__contents > p {
		font-size: calc(16 / 390 * 100vw);
		padding-bottom: calc(30 / 390 * 100vw);
	}
	.confirm-value {
		width: 100%;
		font-size: calc(14 / 390 * 100vw);
	}
	.confirm .form-row.submit-row {
		margin: calc(30 / 390 * 100vw) 0 0;
		align-items: center;
	}
	.back-row .btn {
		font-size: calc(16 / 390 * 100vw);
		padding: calc(8 / 390 * 100vw) 0 calc(10 / 390 * 100vw)
			calc(25 / 390 * 100vw);
	}
	.back-row::after {
		left: calc(50 / 390 * 100vw);
	}
	.thanks {
		padding: calc(100 / 390 * 100vw) 0;
	}
	.thanks__text h2 {
		font-size: calc(26 / 390 * 100vw);
	}
	.thanks__text p {
		width: calc(330 / 390 * 100vw);
		margin: 0 auto;
		font-size: calc(18 / 390 * 100vw);
		padding: calc(20 / 390 * 100vw) 0;
	}
	.thanks__text a {
		font-size: calc(18 / 390 * 100vw);
	}
	.thanks > div > a {
		font-size: calc(24 / 390 * 100vw);
	}
}

/* post */
.news__section {
	background: #f4eee5;
	padding: 10rem 0;
}
.news__container {
	max-width: 840px;
	padding: 0 2rem;
	margin: 0 auto;
}
.news__item__flex {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-bottom: 4rem;
}
.news__item {
	display: block;
	width: 80rem;
	color: #222;
	background-color: #fff;
	padding: 2rem;
	border-radius: 1rem;
}
.news__date {
	display: block;
	font-size: 1.4rem;
	font-weight: 400;
}
.news__title {
	font-size: 1.8rem;
	font-weight: 600;
	padding-top: 1rem;
}
.is-hidden {
	display: none;
}
.news__section .btn {
	width: 54rem;
	padding: 0.8rem 0 1rem 3rem;
}
.news__section .btn::after {
	left: 20rem;
	transform: translate(-50%, -60%) rotate(135deg);
}
@media screen and (max-width: 1439px) {
	.news__section {
		padding: calc(100 / 1440 * 100vw) 0;
	}
	.news__container {
		padding: 0 calc(20 / 1440 * 100vw);
	}
	.news__item__flex {
		gap: calc(10 / 1440 * 100vw);
		padding-bottom: calc(40 / 1440 * 100vw);
	}
	.news__item {
		width: calc(800 / 1440 * 100vw);
		padding: calc(20 / 1440 * 100vw);
	}
	.news__date {
		font-size: calc(14 / 1440 * 100vw);
	}
	.news__title {
		font-size: calc(18 / 1440 * 100vw);
		padding-top: calc(10 / 1440 * 100vw);
	}
	.news__section .btn {
		width: calc(540 / 1440 * 100vw);
		padding: calc(8 / 1440 * 100vw) 0 calc(10 / 1440 * 100vw)
			calc(30 / 1440 * 100vw);
	}
	.news__section .btn::after {
		left: calc(200 / 1440 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	.news__section {
		padding: calc(40 / 390 * 100vw) 0;
	}
	.news__container {
		padding: 0 calc(30 / 390 * 100vw);
	}
	.news__item__flex {
		gap: calc(10 / 390 * 100vw);
		padding-bottom: calc(40 / 390 * 100vw);
	}
	.news__item {
		width: calc(330 / 390 * 100vw);
		padding: calc(20 / 390 * 100vw);
	}
	.news__date {
		font-size: calc(14 / 390 * 100vw);
	}
	.news__title {
		font-size: calc(18 / 390 * 100vw);
		padding-top: calc(10 / 390 * 100vw);
	}
	.news__section .btn {
		width: calc(330 / 390 * 100vw);
		height: calc(70 / 390 * 100vw);
		font-size: calc(18 / 390 * 100vw);
		padding: calc(8 / 390 * 100vw) 0 calc(10 / 390 * 100vw)
			calc(30 / 390 * 100vw);
	}
	.news__section .btn::after {
		left: calc(100 / 390 * 100vw);
	}
}

.news__section--detail {
	background: #f4eee5;
	padding: 10rem 0;
}
.news-detail__date {
	display: block;
	font-size: 1.8rem;
	font-weight: bold;
}
.news-detail__title {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2.4rem;
	line-height: 1.6;
	margin: 1rem 0 4rem;
}
.news-detail__content{
	font-size: 1.8rem;
	line-height: 1.5;
}
.news-detail__content a {
	font-size: 1.8rem;
	color: #222;
	text-decoration: underline;
}
.news-detail__content pre {
	font-family: "Noto Sans JP", sans-serif;
	margin: 4rem 0;
}
.news-detail__content img {
	width: 100%;
	height: auto;
	margin: 4rem 0;
	display: block;
}
@media screen and (max-width: 1439px) {
	.news__section--detail {
		padding: calc(100 / 1440 * 100vw) 0;
	}
	.news-detail__date {
		font-size: calc(18 / 1440 * 100vw);
	}
	.news-detail__title {
		font-size: calc(24 / 1440 * 100vw);
		margin: calc(10 / 1440 * 100vw) 0 calc(40 / 1440 * 100vw);
	}
	.news-detail__content, .news-detail__content a {
		font-size: calc(18 / 1440 * 100vw);
	}
	.news-detail__content p {
		margin: calc(40 / 1440 * 100vw) 0;
	}
	.news-detail__content img {
		margin: calc(40 / 1440 * 100vw) 0;
	}
}
@media screen and (max-width: 768px) {
	.news__section--detail {
		padding: calc(70 / 390 * 100vw) 0;
	}
	.news-detail__date {
		font-size: calc(18 / 390 * 100vw);
	}
	.news-detail__title {
		font-size: calc(20 / 390 * 100vw);
		margin: calc(10 / 390 * 100vw) 0 calc(40 / 390 * 100vw);
	}
	.news-detail__content, .news-detail__content a {
		font-size: calc(18 / 390 * 100vw);
	}
	.news-detail__content p {
		margin: calc(40 / 390 * 100vw) 0;
	}
	.news-detail__content img {
		margin: calc(40 / 390 * 100vw) 0;
	}
	.wp-block-columns img {
		margin: 0;
	}
}

.section1.blog {
	background-image: url(../images/blog/bg.png);
}
.section1.blog h1::after {
	background-image: url(../images/blog/1-icon.png);
	width: 7.5rem;
	height: 8.5rem;
	top: 6.5rem;
}
.blog__contents {
	padding: 7rem 0 10rem;
}
.blog__flex {
	display: flex;
	gap: 7rem;
}
.blog__list {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
}
.blog__card {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	color: #222;
	padding: 2rem 2rem 3rem;
}
.blog__text {
	padding-top: 1rem;
}
.blog__text--date {
	font-size: 1.4rem;
	font-weight: 500;
}
.blog__text--category {
	font-size: 1.4rem;
	font-weight: 500;
	width: fit-content;
	border: 1px solid #222;
	padding: 0 0.5rem 0.1rem;
	margin-top: 1rem;
}
.blog__text--title {
	font-size: 2rem;
	padding: 1rem 0;
}
.blog__text--excerpt {
	font-size: 1.6rem;
	font-weight: 500;
	text-align: justify;
}
.blog__card .btn__area {
	margin: 2rem 0 auto;
}
.blog__card .btn {
	width: 11.5rem;
	height: 3rem;
	font-size: 1.6rem;
	font-weight: 500;
	box-shadow: none;
	padding: 0.8rem 0 1.1rem;
}
.blog__card .btn::after {
	width: 1.1rem;
	height: 1.1rem;
	right: 1rem;
}
.blog__sidebar {
	width: 33rem;
}
.blog__widget + .blog__widget {
	margin-top: 5rem;
}
.blog__widget h3 {
	font-size: 3.6rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	padding-bottom: 2rem;
}
.blog__widget__list {
	list-style: none;
}
.blog__widget__list li {
	position: relative;
	padding: 1.8rem 0;
	border-bottom: 1px solid #fff;
}
.blog__widget__list li:nth-child(1) {
	border-top: 1px solid #fff;
}
.blog__widget__list li a {
	display: block;
	position: relative;
}
.blog__widget__list li a::after {
	content: "";
	position: absolute;
	inset: -1.8rem 0;
}
.blog__widget__list li a::before {
	content: "";
	position: absolute;
	right: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 1rem solid transparent;
	border-bottom: 1rem solid transparent;
	border-left: 1.5rem solid #fff;
}
.blog__pagination {
	width: fit-content;
	margin-top: 7rem;
}
.blog__pagination .navigation {
	border: 2px solid #fff;
	border-radius: 999px;
	padding: 1.5rem 3.5rem;
}
.blog__pagination .nav-links {
	display: flex;
	align-items: center;
	gap: 3rem;
}
.blog__pagination .page-numbers {
	width: 4rem;
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	font-weight: 500;
	color: #fff;
	border-radius: 50%;
}
.blog__pagination .page-numbers.current {
	background: #fff;
	color: #222;
	font-weight: 500;
}
.blog__pagination .dots {
	pointer-events: none;
	color: #fff;
}
.blog__pagination a.page-numbers:hover {
}
.blog__pagination .prev,
.blog__pagination .next {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	position: relative;
	font-size: 0;
}
.blog__pagination .prev {
	background: #c6a35a;
	color: #fff;
}
.blog__pagination .next {
	background: #fff;
	color: #c6a35a;
}
.blog__pagination .prev::before,
.blog__pagination .next::before {
	position: absolute;
	content: "";
	width: 1rem;
	height: 1rem;
	border-top: 3px solid currentColor;
	border-right: 3px solid currentColor;
	top: 50%;
	left: 44%;
	transform: translate(-50%, -50%) rotate(45deg);
}
.blog__pagination .prev::before {
	left: 56%;
	transform: translate(-50%, -50%) rotate(-135deg);
}
@media screen and (max-width: 1439px) {
	.section1.blog h1::after {
		width: calc(75 / 1440 * 100vw);
		height: calc(85 / 1440 * 100vw);
		top: calc(65 / 1440 * 100vw);
	}
	.blog__contents {
		padding: calc(70 / 1440 * 100vw) 0 calc(100 / 1440 * 100vw);
	}
	.blog__flex {
		gap: calc(70 / 1440 * 100vw);
	}
	.blog__list {
		gap: calc(30 / 1440 * 100vw);
	}
	.blog__card {
		padding: calc(20 / 1440 * 100vw) calc(20 / 1440 * 100vw)
			calc(30 / 1440 * 100vw);
	}
	.blog__text {
		padding-top: calc(10 / 1440 * 100vw);
	}
	.blog__text--date {
		font-size: calc(14 / 1440 * 100vw);
	}
	.blog__text--category {
		font-size: calc(14 / 1440 * 100vw);
		padding: 0 calc(5 / 1440 * 100vw) calc(1 / 1440 * 100vw);
		margin-top: calc(10 / 1440 * 100vw);
	}
	.blog__text--title {
		font-size: calc(20 / 1440 * 100vw);
		padding: calc(10 / 1440 * 100vw) 0;
	}
	.blog__text--excerpt {
		font-size: calc(16 / 1440 * 100vw);
	}
	.blog__card .btn__area {
		margin: calc(20 / 1440 * 100vw) 0 auto;
	}
	.blog__card .btn {
		width: calc(115 / 1440 * 100vw);
		height: calc(30 / 1440 * 100vw);
		font-size: calc(16 / 1440 * 100vw);
		padding: calc(8 / 1440 * 100vw) 0 calc(11 / 1440 * 100vw);
	}
	.blog__card .btn::after {
		width: calc(11 / 1440 * 100vw);
		height: calc(11 / 1440 * 100vw);
		right: calc(10 / 1440 * 100vw);
	}
	.blog__sidebar {
		width: calc(330 / 1440 * 100vw);
	}
	.blog__widget + .blog__widget {
		margin-top: calc(50 / 1440 * 100vw);
	}
	.blog__widget h3 {
		font-size: calc(36 / 1440 * 100vw);
		padding-bottom: calc(20 / 1440 * 100vw);
	}
	.blog__widget__list li {
		padding: calc(18 / 1440 * 100vw) 0;
	}
	.blog__widget__list li a::after {
		inset: calc(-18 / 1440 * 100vw) 0;
	}
	.blog__widget__list li a::before {
		right: calc(5 / 1440 * 100vw);
		border-top: calc(10 / 1440 * 100vw) solid transparent;
		border-bottom: calc(10 / 1440 * 100vw) solid transparent;
		border-left: calc(15 / 1440 * 100vw) solid #fff;
	}
	.blog__pagination {
		margin-top: calc(70 / 1440 * 100vw);
	}
	.blog__pagination .navigation {
		border-width: calc(2 / 1440 * 100vw);
		border-radius: 999px;
		padding: calc(15 / 1440 * 100vw) calc(35 / 1440 * 100vw);
	}
	.blog__pagination .nav-links {
		gap: calc(30 / 1440 * 100vw);
	}
	.blog__pagination .page-numbers {
		width: calc(40 / 1440 * 100vw);
		height: calc(40 / 1440 * 100vw);
		font-size: calc(18 / 1440 * 100vw);
	}
	.blog__pagination .prev,
	.blog__pagination .next {
		width: calc(25 / 1440 * 100vw);
		height: calc(25 / 1440 * 100vw);
		font-size: 0;
	}
	.blog__pagination .prev::before,
	.blog__pagination .next::before {
		width: calc(10 / 1440 * 100vw);
		height: calc(10 / 1440 * 100vw);
		border-top: calc(3 / 1440 * 100vw) solid currentColor;
		border-right: calc(3 / 1440 * 100vw) solid currentColor;
	}
}
@media screen and (max-width: 768px) {
	.section1.blog h1::after {
		width: calc(62 / 390 * 100vw);
		height: calc(72 / 390 * 100vw);
		top: calc(40 / 390 * 100vw);
	}
	.blog__contents {
		padding: calc(30 / 390 * 100vw) 0 calc(50 / 390 * 100vw);
	}
	.blog__flex {
		flex-direction: column;
	}
	.blog__list {
		grid-template-columns: 1fr;
		gap: calc(20 / 390 * 100vw);
	}
	.blog__card {
		flex-direction: row;
		gap: calc(15 / 390 * 100vw);
		padding: calc(15 / 390 * 100vw);
	}
	.blog__image {
		width: 40%;
	}
	.blog__text {
		width: 60%;
		display: flex;
		flex-direction: column;
		padding-top: 0;
	}
	.blog__text--date {
		font-size: calc(12 / 390 * 100vw);
		font-weight: 400;
	}
	.blog__text--category {
		font-size: calc(12 / 390 * 100vw);
		padding: 0 calc(10 / 390 * 100vw) calc(1 / 390 * 100vw);
	}
	.blog__text--title {
		font-size: calc(16 / 390 * 100vw);
		padding: calc(10 / 390 * 100vw) 0 0;
	}
	.blog__text--excerpt {
		display: none;
	}
	.blog__card .btn__area {
		margin: auto 0 0;
	}
	.blog__card .btn {
		width: calc(115 / 390 * 100vw);
		height: calc(25 / 390 * 100vw);
		font-size: calc(14 / 390 * 100vw);
		padding: calc(8 / 390 * 100vw) calc(10 / 390 * 100vw) calc(11 / 390 * 100vw)
			calc(8 / 390 * 100vw);
	}
	.blog__card .btn::after {
		width: calc(10 / 390 * 100vw);
		height: calc(10 / 390 * 100vw);
		right: calc(10 / 390 * 100vw);
	}
	.blog__pagination {
		width: 100%;
		margin-top: calc(70 / 390 * 100vw);
	}
	.blog__pagination .navigation {
		padding: calc(12 / 390 * 100vw) calc(16 / 390 * 100vw);
	}
	.blog__pagination .nav-links {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: unset;
	}
	.blog__pagination .page-numbers {
		width: calc(25 / 390 * 100vw);
		height: calc(25 / 390 * 100vw);
		font-size: calc(14 / 390 * 100vw);
	}
	.blog__pagination .prev,
	.blog__pagination .next {
		width: calc(15 / 390 * 100vw);
		height: calc(15 / 390 * 100vw);
		font-size: 0;
	}
	.blog__pagination .prev::before,
	.blog__pagination .next::before {
		width: calc(6 / 390 * 100vw);
		height: calc(6 / 390 * 100vw);
		border-top: calc(2 / 390 * 100vw) solid currentColor;
		border-right: calc(2 / 390 * 100vw) solid currentColor;
	}
	.blog__sidebar,
	.blog__sidebar.is-sp {
		width: 100%;
		background-color: #f5eedc;
		padding: calc(50 / 390 * 100vw) 0;
	}
	.blog__widget + .blog__widget {
		margin-top: calc(50 / 390 * 100vw);
	}
	.blog__widget h3 {
		font-size: calc(28 / 390 * 100vw);
		padding-bottom: calc(10 / 390 * 100vw);
	}
	.blog__widget__list li a {
		font-size: calc(18 / 390 * 100vw);
		font-weight: 500;
		color: #222;
	}
	.blog__widget__list li:nth-child(1) {
		border-top: 1px solid #222;
	}
	.blog__widget__list li {
		padding: calc(15 / 390 * 100vw) 0;
		border-bottom: 1px solid #222;
	}
	.blog__widget__list li a::before {
		border-top: calc(10 / 390 * 100vw) solid transparent;
		border-bottom: calc(10 / 390 * 100vw) solid transparent;
		border-left: calc(10 / 390 * 100vw) solid #ceae5a;
	}
}

main.blog {
	padding-top: 8rem;
}
.blog__single {
	padding-top: 10rem;
}
.blog__single__title {
	font-size: 4.2rem;
	line-height: 1.2;
	text-align: center;
}
.blog__single__date {
	font-size: 1.6rem;
}
.blog__single__category {
	width: fit-content;
	font-size: 1.4rem;
	font-weight: 500;
	padding: 0.4rem 1rem 0.5rem;
	margin-top: 1rem;
	border: 1px solid #222;
}
.blog__single__content {
	margin-top: 5rem;
}
.blog__single__content p {
	margin: 5rem 0;
}
.blog__single__content .wp-block-columns {
	width: 70rem;
	margin: 5rem auto;
}
.blog__single__pagination {
	display: flex;
	justify-content: center;
	margin: 8rem 0;
}
.blog__single__pagination__inner {
	width: 50rem;
	height: 7rem;
	border: 1px solid #222;
	border-radius: 999px;
	padding: 0 3.5rem;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
}
.blog__single__pagination__prev a,
.blog__single__pagination__next a,
.blog__single__pagination__list a {
	display: inline-flex;
	align-items: center;
	gap: 2.5rem;
	font-size: 1.6rem;
	font-weight: 500;
	color: #222;
}
.blog__single__pagination__inner .text {
	line-height: 2;
}
.blog__single__pagination__prev {
	justify-self: start;
}
.blog__single__pagination__list {
	justify-self: center;
}
.blog__single__pagination__next {
	justify-self: end;
}
.blog__single__pagination__prev a:hover,
.blog__single__pagination__next a:hover,
.blog__single__pagination__list a:hover {
	opacity: 0.6;
}
.blog__single__pagination .arrow {
	position: relative;
	display: inline-block;
	flex: 0 0 auto;
}
.blog__single__pagination .arrow--prev {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: #c6a35a;
}
.blog__single__pagination .arrow--prev::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 57%;
	width: 1rem;
	height: 1rem;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translate(-50%, -50%) rotate(-135deg);
}
.blog__single__pagination .arrow--next {
	width: 2.5rem;
	height: 2.5rem;
}
.blog__single__pagination .arrow--next::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1rem;
	height: 1rem;
	border-top: 2px solid #222;
	border-right: 2px solid #222;
	transform: translate(-50%, -50%) rotate(45deg);
}
.blog__single__pagination__prev:empty,
.blog__single__pagination__next:empty {
	display: none;
}
main.blog .blog__sidebar {
	width: 100%;
	background-color: #f5eedc;
}
.sidebar__container {
	width: 73rem;
	margin: 0 auto;
	padding: 7rem 0;
	display: flex;
	justify-content: space-between;
}
.sidebar__container .blog__widget {
	width: 33rem;
}
.sidebar__container .blog__widget + .blog__widget {
	margin-top: 0;
}
.sidebar__container .blog__widget__list li:nth-child(1) {
	border-top: 1px solid #222;
}
.sidebar__container .blog__widget__list li {
	border-bottom: 1px solid #222;
}
.sidebar__container .blog__widget__list li a {
	color: #222;
}
.sidebar__container .blog__widget__list li a::before {
	border-left: 1.5rem solid #ceae5a;
}
@media screen and (max-width: 1439px) {
	main.blog {
		padding-top: calc(80 / 1440 * 100vw);
	}
	.blog__single {
		padding-top: calc(100 / 1440 * 100vw);
	}
	.blog__single__title {
		font-size: calc(42 / 1440 * 100vw);
	}
	.blog__single__date {
		font-size: calc(16 / 1440 * 100vw);
	}
	.blog__single__category {
		font-size: calc(14 / 1440 * 100vw);
		padding: calc(4 / 1440 * 100vw) calc(10 / 1440 * 100vw)
			calc(5 / 1440 * 100vw);
		margin-top: calc(10 / 1440 * 100vw);
	}
	.blog__single__content {
		margin-top: calc(50 / 1440 * 100vw);
	}
	.blog__single__content p {
		margin: calc(50 / 1440 * 100vw) 0;
	}
	.blog__single__content .wp-block-columns {
		width: calc(700 / 1440 * 100vw);
		margin: calc(50 / 1440 * 100vw) auto;
	}
	.blog__single__pagination {
		margin: calc(80 / 1440 * 100vw) 0;
	}
	.blog__single__pagination__inner {
		width: calc(500 / 1440 * 100vw);
		height: calc(70 / 1440 * 100vw);
		padding: 0 calc(35 / 1440 * 100vw);
	}
	.blog__single__pagination__prev a,
	.blog__single__pagination__next a,
	.blog__single__pagination__list a {
		gap: calc(25 / 1440 * 100vw);
		font-size: calc(16 / 1440 * 100vw);
	}
	.blog__single__pagination .arrow--prev {
		width: calc(25 / 1440 * 100vw);
		height: calc(25 / 1440 * 100vw);
	}
	.blog__single__pagination .arrow--prev::before {
		width: calc(10 / 1440 * 100vw);
		height: calc(10 / 1440 * 100vw);
		border-top: calc(2 / 1440 * 100vw) solid #fff;
		border-right: calc(2 / 1440 * 100vw) solid #fff;
	}
	.blog__single__pagination .arrow--next {
		width: calc(25 / 1440 * 100vw);
		height: calc(25 / 1440 * 100vw);
	}
	.blog__single__pagination .arrow--next::before {
		width: calc(10 / 1440 * 100vw);
		height: calc(10 / 1440 * 100vw);
		border-top: calc(2 / 1440 * 100vw) solid #222;
		border-right: calc(2 / 1440 * 100vw) solid #222;
	}
	.sidebar__container {
		width: calc(730 / 1440 * 100vw);
		padding: calc(70 / 1440 * 100vw) 0;
	}
	.sidebar__container .blog__widget {
		width: calc(330 / 1440 * 100vw);
	}
	.sidebar__container .blog__widget__list li a::before {
		border-left: calc(15 / 1440 * 100vw) solid #ceae5a;
	}
}
@media screen and (max-width: 768px) {
	main.blog {
		padding-top: calc(62 / 390 * 100vw);
	}
	.blog__single {
		padding-top: calc(30 / 390 * 100vw);
	}
	.blog__single__title {
		font-size: calc(28 / 390 * 100vw);
		padding-bottom: calc(18 / 390 * 100vw);
	}
	.blog__single__date {
		font-size: calc(12 / 390 * 100vw);
	}
	.blog__single__category {
		font-size: calc(12 / 390 * 100vw);
		padding: calc(2 / 390 * 100vw) calc(10 / 390 * 100vw) calc(3 / 390 * 100vw);
		margin-top: calc(5 / 390 * 100vw);
	}
	.blog__single__content {
		margin-top: calc(30 / 390 * 100vw);
	}
	.blog__single__content p {
		margin: calc(20 / 390 * 100vw) 0;
	}
	.blog__single__content .wp-block-columns {
		width: 100%;
		margin: calc(20 / 390 * 100vw) auto;
	}
	.blog__single__pagination {
		margin: calc(50 / 390 * 100vw) 0 calc(70 / 390 * 100vw);
	}
	.blog__single__pagination__inner {
		width: 100%;
		height: calc(50 / 390 * 100vw);
		padding: 0 calc(15 / 390 * 100vw);
	}
	.blog__single__pagination__prev a,
	.blog__single__pagination__next a,
	.blog__single__pagination__list a {
		font-size: calc(14 / 390 * 100vw);
		gap: calc(10 / 390 * 100vw);
	}
	.blog__single__pagination .arrow--prev,
	.blog__single__pagination .arrow--next {
		width: calc(15 / 390 * 100vw);
		height: calc(15 / 390 * 100vw);
	}
	.blog__single__pagination .arrow--prev::before,
	.blog__single__pagination .arrow--next::before {
		width: calc(6 / 390 * 100vw);
		height: calc(6 / 390 * 100vw);
	}
	.sidebar__container {
		width: calc(360 / 390 * 100vw);
		padding: 0;
		flex-direction: column;
		gap: calc(50 / 390 * 100vw);
	}
	.sidebar__container .blog__widget {
		width: 100%;
	}
	.sidebar__container .blog__widget__list li a::before {
		border-top: calc(10 / 390 * 100vw) solid transparent;
		border-bottom: calc(10 / 390 * 100vw) solid transparent;
		border-left: calc(10 / 390 * 100vw) solid #ceae5a;
	}
}

.section1.voices h1::after {
	background-image: url(../images/voices/1-icon.png);
	width: 8rem;
	height: 6.5rem;
	top: 6rem;
}
.voice__contents {
	background-color: #f5eedc;
	padding: 10rem 0;
}
.voice__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
}
.voice__card {
	background-color: #fff;
	padding: 1.5rem;
}
.voice__title {
	font-size: 1.8rem;
	padding: 1.5rem 0 0.5rem;
}
.voice__subtitle {
	font-size: 1.6rem;
	padding-bottom: 0.2rem;
}
.voice__text {
	font-size: 1.6rem;
}
.blog__pagination.voice__pagination {
	margin: 7rem auto 0;
}
.blog__pagination.voice__pagination .navigation {
	background-color: #fff;
	padding: 1.5rem 4rem;
}
.blog__pagination.voice__pagination .page-numbers {
	color: #222;
}
.blog__pagination.voice__pagination .page-numbers.current {
	background: #222;
	color: #fff;
}
.blog__pagination.voice__pagination .prev {
	background: #222;
	color: #fff !important;
}
.blog__pagination.voice__pagination.voice__pagination .next {
	background: #d9d9d9;
	color: #fff !important;
}
@media screen and (max-width: 1439px) {
	.section1.voices h1::after {
		width: calc(80 / 1440 * 100vw);
		height: calc(65 / 1440 * 100vw);
		top: calc(60 / 1440 * 100vw);
	}
	.voice__contents {
		padding: calc(100 / 1440 * 100vw) 0;
	}
	.voice__list {
		gap: calc(30 / 1440 * 100vw);
	}
	.voice__card {
		padding: calc(15 / 1440 * 100vw);
	}
	.voice__title {
		font-size: calc(18 / 1440 * 100vw);
		padding: calc(15 / 1440 * 100vw) 0 calc(5 / 1440 * 100vw);
	}
	.voice__subtitle {
		font-size: calc(16 / 1440 * 100vw);
		padding-bottom: calc(2 / 1440 * 100vw);
	}
	.voice__text {
		font-size: calc(16 / 1440 * 100vw);
	}
	.blog__pagination.voice__pagination {
		margin: calc(70 / 1440 * 100vw) auto 0;
	}
	.blog__pagination.voice__pagination .navigation {
		padding: calc(15 / 1440 * 100vw) calc(40 / 1440 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	.voices.section1 h1::after {
		width: calc(46 / 390 * 100vw);
		height: calc(37 / 390 * 100vw);
		top: calc(57 / 390 * 100vw);
	}
	.voice__contents {
		background-color: #f5eedc;
		padding: calc(50 / 390 * 100vw) 0;
	}
	.voice__list {
		grid-template-columns: 1fr;
		gap: calc(30 / 390 * 100vw);
	}
	.voice__card {
		padding: calc(15 / 390 * 100vw);
	}
	.voice__title {
		font-size: calc(18 / 390 * 100vw);
		padding: calc(15 / 390 * 100vw) 0 calc(5 / 390 * 100vw);
	}
	.voice__subtitle {
		font-size: calc(14 / 390 * 100vw);
		padding-bottom: calc(5 / 390 * 100vw);
	}
	.voice__text {
		font-size: calc(14 / 390 * 100vw);
	}
	.blog__pagination.voice__pagination {
		margin: calc(30 / 390 * 100vw) auto 0;
	}
	.blog__pagination.voice__pagination .navigation {
		padding: calc(12 / 390 * 100vw) calc(16 / 390 * 100vw);
	}
}

.section1.results h1 {
	padding: 19rem 0 3rem;
}
.section1.results h1::after {
	background-image: url(../images/results/1-icon.png);
	width: 15.5rem;
	height: 10rem;
	top: 7rem;
}
.btn__flex {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3rem;
	padding: 4rem 0 10rem;
}
.btn__flex .btn__area {
	margin: 0;
}
.btn__flex .btn {
	width: 33rem;
	box-shadow: none;
}
.btn__flex .btn__area:nth-child(1) .btn {
	color: #ceae5a;
}
.btn__flex .btn__area:nth-child(1) .btn::after {
	background-image: url(../images/results/results-btn1.png);
	width: 33rem;
	height: 7rem;
	right: auto;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
.btn__flex .btn__area:nth-child(2) .btn {
	color: #fff;
	background-color: #c6a35a;
}
.btn__flex .btn__area:nth-child(2) .btn::after {
	background-image: url(../images/results/results-btn2.png);
	width: 33rem;
	height: 7rem;
	right: auto;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
.achievement {
	font-family: "Zen Old Mincho", serif;
	font-weight: bold;
}
.achievement--public-univ,
.achievement--public-high {
	background-color: #f5eedc;
}
.achievement__heading {
	position: relative;
	text-align: center;
	font-size: 4.2rem;
	padding: 13rem 0 7rem;
}
.achievement__heading::after {
	content: "";
	position: absolute;
	top: 10rem;
	left: 50%;
	transform: translateX(-50%);
	width: 78.7rem;
	height: 11.6rem;
	background: url(../images/results/heading-frame.png) no-repeat top center /
		100% auto;
}
.achievement__cards {
	display: grid;
	grid-template-columns: repeat(2, 535px);
	gap: 5rem 3rem;
	justify-content: center;
	padding-bottom: 10rem;
}
.achievement--private-univ .achievement__card,
.achievement--private-high .achievement__card {
	background: #fcfaf4;
}
.achievement__card {
	position: relative;
	background: #fff;
	padding: 5rem 9.8rem;
}
.achievement__card--large,
.achievement__card--combined {
	grid-column: 1/-1;
	width: 1100px;
}
.achievement__card--small {
	width: 535px;
	padding: 5.8rem 5.5rem;
}
.achievement__card--large::before,
.achievement__card--combined::before {
	content: "";
	position: absolute;
	top: 2rem;
	left: 50%;
	transform: translateX(-50%);
	width: 105rem;
	height: 6.5rem;
	background: url(../images/results/frame-l.png) no-repeat top center / 100%
		auto;
}
.achievement__card--large::after,
.achievement__card--combined::after {
	content: "";
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%) scaleY(-1);
	width: 105rem;
	height: 6.5rem;
	background: url(../images/results/frame-l.png) no-repeat bottom center / 100%
		auto;
}
.achievement__card--small::before {
	content: "";
	position: absolute;
	top: 2rem;
	left: 50%;
	transform: translateX(-50%);
	width: 48.5rem;
	height: 6.5rem;
	background: url(../images/results/frame-s.png) no-repeat top center / 100%
		auto;
}
.achievement__card--small::after {
	content: "";
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%) scaleY(-1);
	width: 48.5rem;
	height: 6.5rem;
	background: url(../images/results/frame-s.png) no-repeat bottom center / 100%
		auto;
}
.achievement__top {
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 0 1.5rem;
}
.achievement__top__left {
	min-width: 0;
}
.achievement__top__right {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	white-space: nowrap;
}
.achievement__school {
	font-size: 7rem;
	line-height: 1.2;
	color: #c40000;
	word-break: break-word;
}
.achievement__card--small .achievement__school {
	font-size: 5rem;
}
.achievement__total {
	display: flex;
	align-items: baseline;
	gap: 0.8rem;
}
.achievement__total__label {
	font-size: 4rem;
}
.achievement__total__num {
	font-size: 10rem;
	color: #c60000;
}
.achievement__total__unit {
	font-size: 5rem;
}
.achievement__badge {
	display: block;
	width: 12.1rem;
	height: 12.1rem;
	object-fit: contain;
}
.achievement__card--small .achievement__badge {
	width: 7.5rem;
	height: 7.5rem;
}
.achievement__goldline {
	height: 3px;
	background: #ceae5a;
	margin-top: 1.6rem;
	width: 100%;
}
.achievement__card--large .achievement__rows {
	margin-top: 2rem;
}
.achievement__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 10rem;
}
.achievement__card--small .achievement__row {
	padding: 0 2.5rem;
}
.achievement__row + .achievement__row {
	border-top: 1px solid #d9d9d9;
}
.achievement__dept {
	font-size: 4rem;
	line-height: 1.2;
	padding: 1rem 0;
	word-break: break-word;
}
.achievement__count {
	display: flex;
	align-items: baseline;
}
.achievement__count__num {
	color: #c60000;
	font-size: 5rem;
}
.achievement__count__unit {
	font-size: 4rem;
}
.achievement__card--small .achievement__dept,
.achievement__card--small .achievement__count__unit {
	font-size: 3rem;
}
.achievement__card--combined .achievement__dept,
.achievement__card--combined .achievement__count__unit {
	font-size: 2.8rem;
}
.achievement__card--combined .achievement__count__num {
	font-size: 3.4rem;
}
.achievement__messages {
	background: #f5eedc;
	padding: 2.5rem 5rem;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.8rem;
	font-weight: 500;
	margin-top: 1rem;
}
.achievement--private-univ .achievement__messages,
.achievement--private-high .achievement__messages {
	background: #fff;
}
.achievement__message + .achievement__message {
	border-top: 1px solid #222;
	margin-top: 1rem;
	padding-top: 1rem;
}
.achievement__author {
	text-align: right;
	margin-top: 0.8rem;
}
.cta.about.results {
	background-image: url(../images/results/cta-bg.png);
	height: 39.1rem;
}
@media screen and (max-width: 1439px) {
	.section1.results h1 {
		padding: calc(190 / 1440 * 100vw) 0 calc(30 / 1440 * 100vw);
	}
	.section1.results h1::after {
		width: calc(155 / 1440 * 100vw);
		height: calc(100 / 1440 * 100vw);
		top: calc(70 / 1440 * 100vw);
	}
	.btn__flex {
		gap: calc(30 / 1440 * 100vw);
		padding: calc(40 / 1440 * 100vw) 0 calc(100 / 1440 * 100vw);
	}
	.btn__flex .btn {
		width: calc(330 / 1440 * 100vw);
	}
	.btn__flex .btn__area:nth-child(1) .btn::after,
	.btn__flex .btn__area:nth-child(2) .btn::after {
		width: calc(330 / 1440 * 100vw);
		height: calc(70 / 1440 * 100vw);
	}
	.achievement__heading {
		font-size: calc(42 / 1440 * 100vw);
		padding: calc(130 / 1440 * 100vw) 0 calc(70 / 1440 * 100vw);
	}
	.achievement__heading::after {
		top: calc(100 / 1440 * 100vw);
		width: calc(787 / 1440 * 100vw);
		height: calc(116 / 1440 * 100vw);
	}
	.achievement__cards {
		grid-template-columns: repeat(2, calc(535 / 1440 * 100vw));
		gap: calc(50 / 1440 * 100vw) calc(30 / 1440 * 100vw);
		padding-bottom: calc(100 / 1440 * 100vw);
	}
	.achievement__card {
		padding: calc(50 / 1440 * 100vw) calc(98 / 1440 * 100vw);
	}
	.achievement__card--large,
	.achievement__card--combined {
		width: calc(1100 / 1440 * 100vw);
	}
	.achievement__card--small {
		width: calc(535 / 1440 * 100vw);
		padding: calc(58 / 1440 * 100vw) calc(55 / 1440 * 100vw);
	}
	.achievement__card--large::before,
	.achievement__card--combined::before,
	.achievement__card--large::after,
	.achievement__card--combined::after {
		width: calc(1050 / 1440 * 100vw);
		height: calc(65 / 1440 * 100vw);
		bottom: calc(20 / 1440 * 100vw);
	}
	.achievement__card--small::before,
	.achievement__card--small::after {
		width: calc(485 / 1440 * 100vw);
		height: calc(65 / 1440 * 100vw);
		bottom: calc(20 / 1440 * 100vw);
	}
	.achievement__top {
		padding: 0 calc(15 / 1440 * 100vw);
	}
	.achievement__top__right {
		gap: calc(16 / 1440 * 100vw);
	}
	.achievement__school {
		font-size: calc(70 / 1440 * 100vw);
	}
	.achievement__card--small .achievement__school {
		font-size: calc(50 / 1440 * 100vw);
	}
	.achievement__total {
		gap: calc(8 / 1440 * 100vw);
	}
	.achievement__total__label {
		font-size: calc(40 / 1440 * 100vw);
	}
	.achievement__total__num {
		font-size: calc(100 / 1440 * 100vw);
	}
	.achievement__total__unit {
		font-size: calc(50 / 1440 * 100vw);
	}
	.achievement__badge {
		width: calc(121 / 1440 * 100vw);
		height: calc(121 / 1440 * 100vw);
	}
	.achievement__card--small .achievement__badge {
		width: calc(75 / 1440 * 100vw);
		height: calc(75 / 1440 * 100vw);
	}
	.achievement__goldline {
		height: calc(3 / 1440 * 100vw);
		margin-top: calc(16 / 1440 * 100vw);
	}
	.achievement__card--large .achievement__rows {
		margin-top: calc(20 / 1440 * 100vw);
	}
	.achievement__row {
		padding: 0 calc(100 / 1440 * 100vw);
	}
	.achievement__card--small .achievement__row {
		padding: 0 calc(25 / 1440 * 100vw);
	}
	.achievement__dept {
		font-size: calc(40 / 1440 * 100vw);
		padding: calc(10 / 1440 * 100vw) 0;
	}
	.achievement__count__num {
		font-size: calc(50 / 1440 * 100vw);
	}
	.achievement__count__unit {
		font-size: calc(40 / 1440 * 100vw);
	}
	.achievement__card--small .achievement__dept,
	.achievement__card--small .achievement__count__unit {
		font-size: calc(30 / 1440 * 100vw);
	}
	.achievement__card--combined .achievement__dept,
	.achievement__card--combined .achievement__count__unit {
		font-size: calc(28 / 1440 * 100vw);
	}
	.achievement__card--combined .achievement__count__num {
		font-size: calc(34 / 1440 * 100vw);
	}
	.achievement__messages {
		padding: calc(25 / 1440 * 100vw) calc(50 / 1440 * 100vw);
		font-size: calc(18 / 1440 * 100vw);
		margin-top: calc(10 / 1440 * 100vw);
	}
	.achievement__message + .achievement__message {
		margin-top: calc(10 / 1440 * 100vw);
		padding-top: calc(10 / 1440 * 100vw);
	}
	.achievement__author {
		margin-top: calc(8 / 1440 * 100vw);
	}
	.cta.about.results {
		height: calc(391 / 1440 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	.section1.results h1 {
		font-size: calc(28 / 390 * 100vw);
		padding: calc(110 / 390 * 100vw) 0 calc(20 / 390 * 100vw);
	}
	.section1.results h1::after {
		width: calc(77 / 390 * 100vw);
		height: calc(50 / 390 * 100vw);
		top: calc(50 / 390 * 100vw);
	}
	.btn__flex {
		gap: calc(20 / 390 * 100vw);
		padding: calc(50 / 390 * 100vw) 0;
		flex-direction: column;
	}
	.btn__flex .btn {
		width: calc(330 / 390 * 100vw);
		height: calc(70 / 390 * 100vw);
	}
	.btn__flex .btn__area:nth-child(1) .btn::after,
	.btn__flex .btn__area:nth-child(2) .btn::after {
		width: calc(330 / 390 * 100vw);
		height: calc(70 / 390 * 100vw);
	}
	.achievement__heading {
		width: calc(240 / 390 * 100vw);
		font-size: calc(26 / 390 * 100vw);
		padding: calc(60 / 390 * 100vw) 0 calc(33 / 390 * 100vw);
		margin: 0 auto;
		white-space: nowrap;
	}
	.achievement__heading br {
		display: block;
	}
	.achievement__heading::after {
		top: calc(50 / 390 * 100vw);
		width: calc(390 / 390 * 100vw);
		height: calc(106 / 390 * 100vw);
		background: url(../images/results/heading-frame-sp.png) no-repeat top
			center / 100% auto;
	}
	.achievement__cards {
		display: flex;
		flex-direction: column;
		gap: calc(30 / 390 * 100vw);
		padding-bottom: calc(50 / 390 * 100vw);
	}
	.achievement__card--large,
	.achievement__card--combined,
	.achievement__card--small {
		width: 100%;
	}
	.achievement__card,
	.achievement__card--small {
		padding: calc(30 / 390 * 100vw) calc(20 / 390 * 100vw);
	}
	.achievement__card--large::before,
	.achievement__card--small::before,
	.achievement__card--combined::before {
		width: calc(350 / 390 * 100vw);
		height: calc(45 / 390 * 100vw);
		top: calc(6 / 390 * 100vw);
		background: url(../images/results/frame-sp.png) no-repeat bottom center /
			100% auto;
	}
	.achievement__card--large::after,
	.achievement__card--small::after,
	.achievement__card--combined::after {
		width: calc(350 / 390 * 100vw);
		height: calc(45 / 390 * 100vw);
		bottom: calc(6 / 390 * 100vw);
		background: url(../images/results/frame-sp.png) no-repeat bottom center /
			100% auto;
	}
	.achievement__top {
		padding: 0 calc(10 / 390 * 100vw);
		flex-direction: column;
	}
	.achievement__top.achievement__top--small {
		flex-direction: row;
	}
	.achievement__top__right,
	.achievement__total {
		gap: calc(5 / 390 * 100vw);
	}
	.achievement__badge {
		width: calc(79 / 390 * 100vw);
		height: calc(79 / 390 * 100vw);
	}
	.achievement__card--small .achievement__badge {
		width: calc(79 / 390 * 100vw);
		height: calc(79 / 390 * 100vw);
	}
	.achievement__school {
		font-size: calc(48 / 390 * 100vw);
	}
	.achievement__total__label {
		font-size: calc(34 / 390 * 100vw);
	}
	.achievement__total__unit {
		font-size: calc(50 / 390 * 100vw);
	}
	.achievement__goldline {
		height: calc(2 / 390 * 100vw);
		margin-top: calc(10 / 390 * 100vw);
		width: 100%;
	}
	.achievement__card--large .achievement__rows {
		margin-top: calc(10 / 390 * 100vw);
	}
	.achievement__card--small .achievement__school {
		font-size: calc(38 / 390 * 100vw);
	}
	.achievement__total__num {
		font-size: calc(70 / 390 * 100vw);
	}
	.achievement__row,
	.achievement__card--small .achievement__row {
		padding: calc(10 / 390 * 100vw) calc(5 / 390 * 100vw);
		gap: calc(20 / 390 * 100vw);
	}
	.achievement__dept {
		padding: 0;
	}
	.achievement__dept,
	.achievement__count__unit,
	.achievement__card--small .achievement__dept,
	.achievement__card--small .achievement__count__unit,
	.achievement__card--combined .achievement__count__num {
		font-size: calc(24 / 390 * 100vw);
	}
	.achievement__count__num {
		font-size: calc(28 / 390 * 100vw);
	}
	.achievement__card--combined .achievement__dept,
	.achievement__card--combined .achievement__count__unit {
		font-size: calc(20 / 390 * 100vw);
	}
	.achievement__messages {
		padding: calc(25 / 390 * 100vw) calc(10 / 390 * 100vw);
		font-size: calc(16 / 390 * 100vw);
		font-weight: 500;
		margin-top: calc(10 / 390 * 100vw);
	}
	.achievement__message + .achievement__message {
		margin-top: calc(20 / 390 * 100vw);
		padding-top: calc(20 / 390 * 100vw);
	}
	.achievement__author {
		margin-top: calc(5 / 390 * 100vw);
	}
	.cta.about.results {
		background-image: url(../images/results/cta-bg-sp.png);
		height: calc(494 / 390 * 100vw);
	}
}

.privacy-policy {
	background-color: #f5eedc;
	padding: 8rem 0;
}
.privacy-policy .container3 {
	background-color: #fff;
	padding: 8rem;
}
.privacy-policy h2 {
	font-size: 1.8rem;
	font-weight: 500;
	font-family: "Noto Sans JP", sans-serif;
	color: #ceae5a;
}
.privacy-policy p {
	font-size: 1.6rem;
}
@media screen and (max-width: 1439px) {
	.privacy-policy {
		padding: calc(80 / 1440 * 100vw) 0;
	}
	.privacy-policy .container3 {
		padding: calc(80 / 1440 * 100vw);
	}
	.privacy-policy h2 {
		font-size: calc(18 / 1440 * 100vw);
	}
	.privacy-policy p {
		font-size: calc(16 / 1440 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	.privacy-policy {
		padding: calc(50 / 390 * 100vw) 0 calc(40 / 390 * 100vw);
	}
	.privacy-policy .container3 {
		padding: calc(20 / 390 * 100vw) calc(15 / 390 * 100vw);
	}
	.privacy-policy h2,
	.privacy-policy p {
		font-size: calc(16 / 390 * 100vw);
	}
}

.btn {
	position: relative;
	overflow: hidden;
	z-index: 0;
}
.btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #D7D7D7;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
	z-index: -1;
}
.btn:hover::before {
	transform: scaleX(1);
}
.btn2::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #737272;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
	z-index: -1;
}
.btn2:hover::before {
	transform: scaleX(1);
}
.btn3::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #A0A0A0;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
	z-index: -1;
}
.btn3:hover::before {
	transform: scaleX(1);
}
.common__contact .btn::before,.footer__contact .btn::before {
	background-color: #E1C478;
}
.wpcf7-submit.btn {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(#E1C478, #E1C478);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left;
  transition: background-size 0.4s ease, color 0.4s ease;
}
.wpcf7-submit.btn:hover {
  background-size: 100% 100%;
}
.wpcf7-previous.btn {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(#D7D7D7, #D7D7D7);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: right;
  transition: background-size 0.4s ease, color 0.4s ease;
}
.wpcf7-previous.btn:hover {
  background-size: 100% 100%;
}


/* 初期状態 */
.js-fadeup {
	opacity: 0;
	transform: translateY(40px);
	transition:
		opacity 0.8s ease,
		transform 0.8s ease;
}

/* 表示時 */
.js-fadeup.is-show {
	opacity: 1;
	transform: translateY(0);
}
/* PCでは常に表示 */
.js-fadeup-sp {
	opacity: 1;
	transform: none;
}

@media (max-width: 768px) {
	.js-fadeup-sp {
		opacity: 0;
		transform: translateY(30px);
		transition:
			opacity 0.6s ease,
			transform 0.6s ease;
	}

	.js-fadeup-sp.is-show {
		opacity: 1;
		transform: translateY(0);
	}
}


.wpcf7 input::placeholder { color: #c1c1c1; }