@charset "UTF-8";

body {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	background: #FFF;
	font-size: 16px;
	line-height: 1.4;
	letter-spacing: .05em;
	color: #000;
}

img {
	width: 100%;
	display: block;
}

h2,
h3 {
	line-height: 1.2;
}

a {
	transition: all .7s;
}

a:hover {
	opacity: .7;
}

.inner {
	max-width: 1400px;
	width: calc(100% - 100px);
	margin: 0 auto;
}

.sp {
	display: none !important;
}

.abs {
	position: absolute;
}

.wrapper {
	overflow: hidden;
	min-width: 1200px;
}

.flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.flex.reverse {
	flex-direction: row-reverse;
}

.mincyo {
	font-family: "shippori-mincho", sans-serif;
	font-weight: 500;
}

header {
	position: absolute;
	width: 100%;
	top: 0px;
	left: 0;
	padding: 40px 0;
	transition: all .7s;
	z-index: 10;
}

header.active {
	background: rgba(255, 255, 255, .8);
}

.header-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: calc(100% - 100px);
	margin: 0 auto;
}

.header-logo {
	width: 250px;
}

.header-right {
	width: 800px;
}

.header-right nav,
footer nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-right nav ul,
footer nav ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.txt-link {
	width: 100%;
}

.txt-link li a {
	font-size: 18px;
	font-weight: 500;
	color: #000;
}

.fv {
	margin-block: 150px 90px;
	position: relative;
}

.fv .thanks-top-txt {
	top: -5px;
}

.fixed-btn {
	position: fixed;
	width: 80px;
	bottom: 5%;
	right: 0;
	z-index: 10;
	opacity: 0;
	transition: all .6s;
}

.fixed-btn img {
	width: 100%;
}

.fixed-btn.active {
	opacity: 1;
}

/* PC右上追従ボタン */
.header-right .right-btn {
	position: fixed;
	/* ← スクロールしても固定 */
	top: 30px;
	/* ヘッダー上端からの距離（調整可） */
	right: 30px;
	/* 右端からの距離（調整可） */
	width: 380px;
	/* ボタンサイズ調整（お好みで） */
	z-index: 1000;
	/* ヘッダーより上に表示 */
	transition: opacity .25s ease, visibility .25s ease;
}

.header-right .right-btn.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.header-right .right-btn img {
	width: 100%;
	height: auto;
}

/* SPでは非表示（SPは下部追従があるため） */
@media screen and (max-width: 1200px) {
	.header-right .right-btn {
		position: fixed;
		/* ← スクロールしても固定 */
		top: 30px;
		/* ヘッダー上端からの距離（調整可） */
		right: 30px;
		/* 右端からの距離（調整可） */
		width: 320px;
		/* ボタンサイズ調整（お好みで） */
		z-index: 1000;
		/* ヘッダーより上に表示 */
	}
}

/* SPでは非表示（SPは下部追従があるため） */
@media screen and (max-width: 834px) {
	.header-right .right-btn {
		display: none;
	}
}

.achievements {
	margin-top: 200px;
	margin-bottom: 200px;
}

.achievements .inner {
	max-width: 1200px;
}

.flex-cont {
	display: flex;
	justify-content: space-between;
}

.flex-cont-title {
	width: 320px;
}

.flex-cont-txt {
	width: calc(100% - 450px);
}

.achievements-txt {
	margin-bottom: 60px;
}

.achievements-txt p {
	font-size: 25px;
	line-height: 1.7;
}

.achievements-list ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: stretch;
	gap: 15px 30px;
}

.achievements-list ul li {
	border: 1px solid #000;
	position: relative;
}

.achievements-list-box {
	padding: 15px;
}

.achievements-list-box-num {
	display: flex;
	align-items: baseline;
	justify-content: center;
	margin-bottom: 20px;
}

.achievements-list-box-num .year {
	font-size: 30px;
	margin-right: 20px;
}

.achievements-list-box-num .num {
	font-size: 48px;
	font-weight: 500;
	color: #ee5512;
	line-height: 1;
}

.achievements-list-box-txt p {
	font-size: 18px;
	line-height: 1.6;
	text-indent: -1em;
	padding-left: 1em;
}

.achievements-list-box-txt p:nth-child(1) {
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px dashed #000;
	min-height: calc(1.8em * 2);
}

.achievements-list-box-txt span {
	font-size: 18px;
	position: absolute;
	right: 15px;
	bottom: 15px;
}

.cta-cont-wrap {
	width: calc(100% - 100px);
	margin: 0 auto;
	background-image: url(../img/cta_bg.webp);
	border-top-left-radius: 30px;
	background-size: cover;
	background-position: center left;
	background-repeat: no-repeat;
}

.cta-cont-flex {
	max-width: 1200px;
	width: calc(100% - 40px);
	margin: 0 auto;
	padding: 120px 0 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cta-cont-left {
	width: 48%;
}

.cta-cont-contact {
	margin-bottom: 40px;
}

.cta-cont-contact img {
	width: 85%;
	margin: 0 auto 15px;
}

a.cta-btn {
	border-top-left-radius: 20px;
	background: linear-gradient(45deg, #c6cd21, #008045);
	padding: 25px 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0px 9px 6px rgba(0, 0, 0, .45);
	transition: all .7s;
}

a.cta-btn:hover {
	box-shadow: none;
	transform: translateY(9px);
	opacity: 1;
}

a.cta-btn span.box {
	background: #fff;
	padding: 2.5px 20px;
	font-size: 32px;
	font-weight: 500;
	color: #006837;
}

a.cta-btn p {
	font-size: 32px;
	font-weight: 500;
	color: #fff;
}

a.cta-btn p span {
	position: relative;
}

a.cta-btn p span::before {
	content: "";
	width: 100%;
	position: absolute;
	bottom: -2.5px;
	border-bottom: 1px dashed #fff;
	height: 1px;
	left: 0;
}

.cta-cont-right {
	width: 48%;
	transition: all .6s;
}

.cta-cont-right:hover {
	opacity: 1;
	transform: scale(1.05);
}

.cta-cont-tel {
	width: 75%;
}

.strong {
	padding: 250px 0 125px;
}

.mincyo-title {
	max-width: 690px;
	margin: 0 auto 60px;
}

.cmn-txt {
	text-align: center;
	margin-bottom: 120px;
}

.cmn-txt p {
	font-size: 24px;
	line-height: 1.9;
	font-weight: 500;
}

.strong-list {
	margin-bottom: 100px;
}

.strong-list ol li {
	display: flex;
	padding-right: 120px;
	justify-content: space-between;
	flex-direction: row-reverse;
	margin-bottom: 100px;
}

.strong-list ol li:nth-child(2),
.strong-list ol li:nth-child(4) {
	padding-right: 0;
	padding-left: 120px;
	flex-direction: initial;
}

.strong-list ol li:nth-child(4) {
	margin-bottom: 0;
}

.strong-list-img {
	width: 42.5%;
}

.strong-list-txt {
	width: 55%;
}

.strong-list-txt h3 {
	margin-bottom: 45px;
	font-size: 42px;
	font-weight: 700;
}

.strong-list-txt h3 span {
	background: #e4801e;
	color: #fff;
	font-weight: 700;
	padding: 2.5px 10px 4px;
	display: inline-block;
	margin-bottom: 10px;
}

.strong-list-txt p {
	font-size: 22px;
	line-height: 1.7;
	padding-bottom: 30px;
}

.strong-list-txt p:last-child {
	padding-bottom: 0;
}

.strong-list-txt p span {
	color: #ee5512;
}

.strong-box {
	max-width: 1500px;
	margin: 0 auto;
	border: 1px solid #aaaaaa;
	padding: 60px 50px;
	display: flex;
	justify-content: space-between;
}

.strong-box-img {
	width: 40%;
}

.strong-box-txt {
	width: 55%;
}

.strong-box-txt h3 {
	margin-bottom: 20px;
	font-size: 42px;
	font-weight: 700;
}

.strong-box-txt h3 span {
	background: #e4801e;
	color: #fff;
	font-weight: 700;
	padding: 2.5px 10px;
	display: inline-block;
	margin-bottom: 10px;
}

.strong-box-txt p {
	font-size: 22px;
	line-height: 1.7;
}

.strong-box-txt p span {
	color: #ee5512;
}

.ex-marquee {
	overflow: hidden;
	width: 100%;
	margin-top: 200px;
}

.ex-marquee-inner {
	display: flex;
	width: max-content;
	animation: marquee 60s linear infinite;
}

.ex-marquee-inner img {
	height: 300px;
	width: auto;
	margin-right: 40px;
	flex-shrink: 0;
}

@keyframes marquee {
	0% {
		transform: translateX(0%);
	}

	100% {
		transform: translateX(-50%);
	}
}

.voice {
	padding: 125px 0;
}

.voice .inner {
	max-width: 1200px;
}

.voice .flex-cont-title {
	position: relative;
	z-index: 10;
}

.voice .flex-cont-txt {
	width: calc(100% - 380px);
}

.swiper-slide {
	opacity: .7;
	transform: scale(.9);
	transition: all .7s;
}

.swiper-slide-prev {
	opacity: 0;
}

.swiper-slide-active {
	opacity: 1;
	transform: scale(1);
}

.voice-box {
	background: #e9e9e9;
	padding: 30px 20px;
}

.voice-box-img {
	max-width: 500px;
	margin: 0 auto 20px;
}

.voice-box-txt p {
	font-size: 16px;
	line-height: 1.8;
}

.controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 420px;
	margin: 40px auto 0;
}

.swiper-button-prev,
.swiper-button-next {
	cursor: pointer;
	padding: 6px 12px;
	border-radius: 4px;
}

.swiper-pagination {
	text-align: center;
	flex: 1;
	position: relative;
}

.swiper-pagination-bullet {
	width: 16px;
	height: 16px;
	margin: 0 10px;
}

.swiper-pagination-bullet-active {
	background: #000;
}

.swiper-button-prev,
.swiper-button-next {
	cursor: pointer;
	padding: 0;
	border-radius: 50%;
	border: 1px solid #ee8a1e;
	width: 60px;
	height: 60px;
	position: relative;
}

.swiper-button-prev:after,
.swiper-button-next:after {
	display: none;
}

.swiper-button-prev svg,
.swiper-button-next svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	width: 60%;
	stroke: #e4801e;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
	border-color: #000 !important;
	opacity: 1;
}

.swiper-button-prev.swiper-button-disabled .cls-1,
.swiper-button-next.swiper-button-disabled .cls-1 {
	stroke: #000;
}

.voice-box-title {
	margin-bottom: 10px;
}

.voice-box-title-txt {
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
}

.voice-box-title-txt span {
	background: rgba(242, 167, 59, 0.7);
	width: 25px;
	height: 25px;
	position: relative;
	top: 4.5px;
}

.voice-box-title-txt p {
	font-size: 24px;
	font-weight: 500;
	width: calc(100% - 35px);
}

.staff {
	padding: 125px 0;
}

.staff .mincyo-title {
	max-width: 1090px;
}

.staff-txt {
	margin: 0 auto 100px;
	max-width: 1200px;
}

.staff-txt p {
	font-size: 24px;
	line-height: 1.7;
	padding-bottom: 30px;
}

.staff-txt p:last-child {
	padding-bottom: 0;
}

.staff-txt p span {
	color: #ee5512;
}

.staff-img {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.staff-img img {
	width: 24%;
}

.area {
	padding: 125px 0;
}

.area .inner {
	max-width: 1200px;
	margin: 0 auto;
}

.area .flex-cont {
	margin-bottom: 90px;
}

.area .flex-cont-title {
	width: 360px;
}

.area .flex-cont-txt {
	width: calc(100% - 440px);
}

.area-txt h3 {
	font-size: 56px;
	border: 3px solid rgba(0, 0, 0, .5);
	padding: 10px 30px;
	display: inline-block;
	margin-bottom: 30px;
}

.area-txt p {
	font-size: 28px;
	line-height: 1.7;
	padding-bottom: 40px;
}

.area-txt p:last-child {
	padding-bottom: 0;
}

.area-txt p span {
	color: #ee5512;
}

.area .mincyo-title {
	max-width: 750px;
	margin-bottom: 45px;
}

.acc-conts {
	display: flex;
	justify-content: space-between;
}

.acc-cont {
	width: 48%;
}

.acc-cont-title {
	margin-bottom: 25px;
	background: #e4801e;
	padding: 10px 20px;
}

.acc-cont-title h3 {
	font-size: 34px;
	color: #fff;
	font-weight: 500;
}

.acc-content {
	display: none;
	padding: 25px 0;
	justify-content: space-between;
}

.acc-content img {
	width: 40%;
}

.acc-content p {
	width: 57.5%;
	font-size: 20px;
	line-height: 1.8;
}

.acc-header {
	cursor: pointer;
	padding: 20px 30px;
	border-bottom: 1px solid #000;
	position: relative;
}

.acc-header::before {
	content: "";
	width: 12px;
	height: 2px;
	top: 50%;
	right: 20px;
	transform: translateY(-50%)rotate(-40deg);
	-webkit-transform: translateY(-50%)rotate(-40deg);
	-ms-transform: translateY(-50%)rotate(-40deg);
	position: absolute;
	background: #000;
	border-radius: 10px;
	transition: all .4s;
}

.acc-header::after {
	content: "";
	width: 12px;
	height: 2px;
	top: 50%;
	right: 28px;
	transform: translateY(-50%)rotate(40deg);
	-webkit-transform: translateY(-50%)rotate(40deg);
	-ms-transform: translateY(-50%)rotate(40deg);
	position: absolute;
	background: #000;
	border-radius: 10px;
	transition: all .4s;
}

.active .acc-header::before {
	width: 14px;
	top: 55%;
	transform: translateY(-50%) rotate(-45deg);
	-webkit-transform: translateY(-50%) rotate(-45deg);
	-ms-transform: translateY(-50%)rotate(-45deg);
}

.active .acc-header::after {
	width: 14px;
	top: 55%;
	right: 20px;
	transform: translateY(-50%) rotate(45deg);
	-webkit-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%)rotate(45deg);
}

.acc-header h4 {
	font-size: 24px;
	font-weight: 500;
}

.acc-wrap.active .acc-content {
	display: flex;
}

.flow {
	padding: 125px 0 250px;
}

.flow .mincyo-title {
	margin-bottom: 70px;
}

.flow-img {
	max-width: 1200px;
	margin: 0 auto;
}

.plan {
	padding: 250px 0;
}

.plan .inner {
	max-width: 1200px;
}

.plan-list-cont {
	padding: 30px;
	margin-bottom: 30px;
	background: rgba(242, 167, 59, 0.3);
}

.plan-list-title {
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
}

.plan-list-title-num {
	width: 50px;
}

.plan-list-title-num p {
	font-size: 48px;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.3);
}

.plan-list-title-txt {
	width: calc(100% - 70px);
}

.plan-list-title-txt p {
	font-size: 18px;
	padding-bottom: 5px;
}

.plan-list-title-txt h3 {
	font-size: 32px;
	font-weight: 700;
}

.plan-list-box {
	margin-bottom: 20px;
}

.plan-list-box ul {
	display: flex;
	justify-content: space-between;
}

.plan-list-box ul li {
	width: 49%;
	background: #e4801e;
	display: flex;
	align-items: center;
	padding: 15px 10px;
	justify-content: space-between;
}

.plan-list-box ul li img {
	width: 25px;
}

.plan-list-box ul li p {
	width: calc(100% - 35px);
	font-size: 16px;
	font-weight: 500;
	color: #fff;
}

.plan-list-txt p {
	font-size: 18px;
	line-height: 1.6;
}

.last-cont {
	max-width: 1200px;
	margin: 0 auto 240px;
}

.last-img {
	margin: 0 auto 160px;
}

.last-txt-cont-title {
	max-width: 875px;
	margin: 0 auto 100px;
	position: relative;
	z-index: 1;
}

.last-txt-cont {
	position: relative;
}

.last-txt-cont .bg-img {
	max-width: 910px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	width: 100%;
}

.last-txt-list ul {
	max-width: 1000px;
	margin: 0 auto 80px;
}

.last-txt-list ul li {
	margin-bottom: 60px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.last-txt-list ul li:last-child {
	margin-bottom: 0px;
}

.last-txt-list ul li img {
	width: 50px;
	position: relative;
	top: 6px;
}

.last-txt-list ul li p {
	font-size: 32px;
	line-height: 1.7;
	width: calc(100% - 70px);
	font-weight: 500;
}

.bottom-txt {
	text-align: center;
	font-size: 24px;
	font-weight: 500;
}

.contact-cont {
	padding: 250px 0;
}

.contact-cont-form {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

.contact-title {
	max-width: 620px;
	margin: 0 auto;
}

.contact-form-box {
	margin-top: -60px;
	border-radius: 30px;
	border: 1px solid #aaaaaa;
	padding: 100px 80px 85px;
}

.form-group {
	margin-bottom: 50px;
}

.form-group label {
	font-size: 22px;
	font-weight: 500;
	width: 100%;
	display: block;
	margin-bottom: 11px;
}

.form-group label span {
	color: #ff0000;
}

.form-group label.chk {
	display: flex;
	align-items: center;
}

.form-group label.chk input {
	width: 20px;
	margin-right: 10px;
}

.form-group label.chk p {
	font-size: 16px;
}

.form-group.flex {
	align-items: baseline;
}

.form-group.flex label {
	width: 30%;
}

.form-group.flex .check-wrap {
	width: 67.5%;
}

.form-group.flex .check-wrap label {
	width: 100%;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 15px;
	font-size: 20px;
	border-radius: 15px;
	border: 1px solid #000;
	outline: none;
}

#contact-form button {
	max-width: 500px;
	margin: 70px auto 20px;
	background: linear-gradient(45deg, #e5811e, #db1c24);
	text-align: center;
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	padding: 30px 0;
	display: block;
	width: 100%;
	border-radius: 100px;
	border: none;
	cursor: pointer;
	box-shadow: 0px 3px 10px rgba(0, 0, 0, .3);
	transition: all .7s;
}

#contact-form button:hover {
	box-shadow: none;
	transform: translateY(3px);
	opacity: 1;
}

.form-txt {
	text-align: center;
}

.form-txt p {
	font-size: 20px;
	font-weight: 700;
}

footer {
	padding: 105px 0;
	background: rgba(0, 0, 0, 0.7);
	letter-spacing: .1em;
}

footer .inner {
	max-width: 1500px;
}

.footer-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.footer-logo {
	width: 300px;
}

.footer-right {
	width: 800px;
}

.footer-right .txt-link li a {
	color: #fff;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.footer-bottom-left {
	width: calc(100% - 500px);
}

.footer-bottom-left p {
	font-size: 17px;
	line-height: 1.6;
	color: #fff;
}

.footer-bottom-left hr {
	max-width: 400px;
	margin: 20px 0;
}

.footer-bottom-right {
	width: 475px;
}

.footer-tel {
	max-width: 400px;
	margin-bottom: 10px;
}

.footer-contact {
	width: 100%;
	margin-bottom: 20px;
}

p.copy {
	text-align: center;
	font-size: 18px;
	color: #fff;
}

.thanks {
	margin: 150px 0;
	position: relative;
}

.thanks-top-txt {
	display: flex;
	white-space: nowrap;
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0;
}

.thanks-top-txt p {
	animation: marquee 10s linear infinite;
	margin-right: 2rem;
	flex-shrink: 0;
	font-size: 80px;
	line-height: 1;
	opacity: .15;
}

@keyframes marquee {
	0% {
		transform: translateX(0%);
	}

	100% {
		transform: translateX(-100%);
	}
}

.thanks-flex {
	display: flex;
	align-items: center;
}

.thanks-flex-right {
	width: 50%;
}

.thanks-flex-left {
	width: 50%;
	padding-inline: 100px 50px;
	position: relative;
}

.thanks-flex-left .abs-img {
	width: 90%;
	bottom: -40%;
	right: -30px;
	position: absolute;
	z-index: -1;
}

.thanks-flex-left h2 {
	font-size: 36px;
	font-weight: 600;
	line-height: 1.6;
	padding-bottom: 30px;
}

.thanks-flex-left p {
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 40px;
	font-weight: 500;
}

.thanks-flex-left p:last-child {
	margin-bottom: 0;
}

.thanks-flex-left a {
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	display: block;
	color: #000;
}

.form-group .error {
	font-size: 18px;
	padding-top: 10px;
	color: #db1c24;
}

.drawer-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, .9);
	color: #000;
	transition: right 0.3s ease;
	z-index: 1000;
	padding: 80px 20px 40px;
}

@media screen and (max-width: 1200px) {
	header {
		padding: 25px 0;
	}

	.header-flex {
		width: calc(100% - 30px);
	}

	.header-logo {
		width: 180px;
	}

	.txt-link li a {
		font-size: 14px;
	}

	.header-right {
		width: 600px;
	}

	.fv {
		margin-block: 100px 60px;
	}

	.fixed-btn {
		width: 60px;
	}

	.inner {
		width: calc(100% - 40px);
	}

	.flex-cont-txt {
		width: calc(100% - 380px);
	}

	.achievements-txt p {
		font-size: 20px;
	}

	.achievements-list-box-txt p {
		font-size: 16px;
	}

	.achievements-list ul {
		gap: 15px;
	}

	.achievements-list-box-num .num {
		font-size: 36px;
	}

	.achievements-list-box-num .year {
		font-size: 24px;
		margin-right: 10px;
	}

	.cta-cont-wrap {
		width: calc(100% - 30px);
	}

	.cta-cont-left {
		width: 50%;
	}

	.cta-cont-right {
		width: 49%;
	}

	a.cta-btn span.box {
		padding: 5px 10px;
		font-size: 30px;
	}

	a.cta-btn p {
		font-size: 32px;
	}

	.cta-cont-tel {
		width: 82.5%;
		margin: 0 auto;
	}

	.cmn-txt p {
		font-size: 20px;
	}

	.strong-list-txt h3 {
		margin-bottom: 40px;
		font-size: 32px;
	}

	.strong-list ol li {
		padding-right: 0;
	}

	.strong-list ol li:nth-child(2),
	.strong-list ol li:nth-child(4) {
		padding-left: 0;
	}

	.strong-list-txt p {
		font-size: 18px;
		padding-bottom: 20px;
	}

	.strong-box {
		max-width: 100%;
		padding: 30px 20px;
	}

	.strong-box-txt {
		width: 57.5%;
	}

	.strong-box-txt h3 {
		margin-bottom: 15px;
		font-size: 32px;
	}

	.strong-box-txt p {
		font-size: 18px;
	}

	.ex-marquee-inner {
		animation: marquee 40s linear infinite;
	}

	.ex-marquee-inner img {
		height: 200px;
	}

	.voice .flex-cont-txt {
		width: calc(100% - 330px);
	}

	.voice-box {
		padding: 20px 15px;
	}

	.voice-box-title-txt span {
		width: 25px;
		height: 25px;
	}

	.voice-box-title-txt p {
		font-size: 22px;
		width: calc(100% - 35px);
	}

	.voice-box-img {
		margin-bottom: 30px;
	}

	.voice-box-txt p {
		font-size: 18px;
	}

	.staff .mincyo-title {
		max-width: 800px;
	}

	.staff-txt p {
		font-size: 18px;
	}

	.area-txt h3 {
		font-size: 48px;
	}

	.area-txt p {
		font-size: 20px;
		padding-bottom: 30px;
	}

	.acc-cont-title h3 {
		font-size: 28px;
	}

	.acc-header {
		padding: 20px;
	}

	.acc-header h4 {
		font-size: 20px;
	}

	.acc-content p {
		font-size: 18px;
	}

	.thanks {
		margin: 90px 0;
	}

	.thanks-flex-left {
		padding-inline: 20px;
	}

	.thanks-top-txt p {
		font-size: 60px;
	}

	.thanks-flex-left h2 {
		font-size: 32px;
		line-height: 1.5;
		padding-bottom: 20px;
	}

	.thanks-flex-left p {
		font-size: 17px;
		line-height: 1.6;
		margin-bottom: 30px;
	}

	.thanks-flex-left a {
		font-size: 17px;
	}

	.thanks-flex-left .abs-img {
		width: 100%;
		bottom: -40%;
		right: -20px;
	}
}

@media screen and (max-width: 834px) {
	.sp {
		display: block !important;
	}

	.pc {
		display: none !important;
	}

	.wrapper {
		min-width: 100%;
	}

	header {
		padding: 15px 0;
	}

	.header-logo {
		width: 190px;
	}

	.header-right {
		width: auto;
	}

	.drawer-toggle {
		position: fixed;
		width: 38px;
		height: 23px;
		border: none;
		background: none;
		cursor: pointer;
		z-index: 1100;
		right: 15px;
		top: 27.5px;
	}

	.drawer-toggle::before,
	.drawer-toggle::after,
	.drawer-toggle span {
		content: '';
		position: absolute;
		left: 0;
		width: 100%;
		height: 1px;
		background-color: #000;
		transition: 0.3s ease;
	}

	.drawer-toggle span {
		top: 50%;
		transform: translateY(-50%);
	}

	.drawer-toggle::before {
		top: 0;
	}

	.drawer-toggle::after {
		bottom: 0;
	}

	/* ×に変化 */
	.drawer-toggle.is-open::before {
		transform: rotate(45deg);
		top: 50%;
	}

	.drawer-toggle.is-open::after {
		transform: rotate(-45deg);
		bottom: auto;
		top: 50%;
	}

	.drawer-toggle.is-open span {
		opacity: 0;
	}

	.drawer-menu.is-open {
		right: 0;
		top: 0;
	}

	.drawer-bg {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 999;
	}

	.drawer-bg.is-open {
		display: block;
	}

	.drawer-menu .txt-link li a {
		padding: 25px;
		display: block;
		border-bottom: 1px solid #000;
		font-size: 20px;
		font-weight: 900;
	}

	.fv {
		margin-block: 80px 40px;
	}

	.fv .thanks-top-txt {
		top: -15px;
	}

	.fixed-btn {
		width: 100%;
		max-width: 500px;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
	}

	.fixed-btn ul.sp {
		display: flex !important;
	}

	.fixed-btn ul.sp li:nth-child(1) {
		width: 54%;
	}

	.fixed-btn ul.sp li:nth-child(2) {
		width: 47%;
	}

	.flex-cont {
		display: block;
		max-width: 500px;
		margin: 0 auto;
	}

	.flex-cont-title {
		width: 100%;
		margin-bottom: 50px;
	}

	.flex-cont-txt {
		width: 100%;
	}

	.achievements-txt p {
		font-size: 17px;
	}

	.achievements-txt {
		margin-bottom: 40px;
	}

	.achievements-list ul {
		display: block;
	}

	.achievements-list ul li {
		margin-bottom: 20px;
	}

	.achievements-list ul li:last-child {
		margin-bottom: 0;
	}

	.achievements-list-box {
		padding: 20px 15px;
	}

	.achievements-list-box-txt p:nth-child(1) {
		margin-bottom: 10px;
		padding-bottom: 7.5px;
		min-height: initial;
	}

	.achievements-list-box-txt p {
		font-size: 15px;
	}

	.achievements-list-box-txt span {
		font-size: 15px;
		position: relative;
		right: initial;
		bottom: -2.5px;
		text-align: right;
		display: block;
	}

	.achievements {
		margin-bottom: 50px;
	}

	.cta-cont-wrap {
		width: 100%;
	}

	.cta-cont-flex {
		max-width: 500px;
		width: calc(100% - 40px);
		padding: 100px 0;
		display: block;
	}

	.cta-cont-wrap {
		background-image: url(../img/cta_bg_sp.webp);
		background-position: top center;
	}

	.cta-cont-left {
		width: 100%;
		max-width: 350px;
		margin: 0 auto 40px;
	}

	.cta-cont-contact img {
		width: 100%;
		margin: 0 auto 20px;
	}

	.cta-cont-tel img {
		width: 100%;
		margin: 0 auto 10px;
	}

	.cta-cont-contact {
		margin-bottom: 35px;
	}

	a.cta-btn {
		border-top-left-radius: 20px;
		padding: 20px 15px;
		display: block;
		text-align: center;
	}

	.cta-cont-tel {
		width: 100%;
	}

	.cta-cont-tel a.cta-btn {
		background: linear-gradient(45deg, #e5811e, #db1c24);
	}

	a.cta-btn span.box {
		padding: 1.5px 30px 2.5px;
		display: inline-block;
		font-size: 22px;
		margin: 0 auto 15px;
	}

	a.cta-btn p {
		font-size: 22px;
	}

	.cta-cont-tel a.cta-btn span.box {
		color: #e4801e;
		margin: 15px auto 0;
		letter-spacing: 0;
	}

	.strong {
		padding: 110px 0 50px;
	}

	.mincyo-title {
		max-width: 325px;
		margin: 0 auto 40px;
	}

	.cmn-txt {
		text-align: left;
		margin-bottom: 50px;
	}

	.cmn-txt p {
		font-size: 17px;
	}

	.strong-list {
		margin: 0 auto 70px;
		max-width: 500px;
	}

	.strong-list ol li {
		margin-bottom: 70px;
		flex-direction: column-reverse;
	}

	.strong-list-img {
		width: 100%;
		margin-bottom: 30px;
	}

	.strong-list-txt {
		width: 100%;
	}

	.strong-list-txt h3 {
		margin-bottom: 35px;
		font-size: 30px;
	}

	.strong-list-txt h3 span.sp {
		display: inline-block !important;
	}

	.strong-list-txt p {
		font-size: 17px;
		padding-bottom: 50px;
	}

	.strong-list ol li:nth-child(2),
	.strong-list ol li:nth-child(4) {
		flex-direction: column-reverse;
	}

	.strong-box {
		padding: 20px;
		display: block;
		max-width: 500px;
	}

	.strong-box-img {
		width: 100%;
		margin-bottom: 30px;
	}

	.strong-box-txt {
		width: 100%;
	}

	.strong-box-txt h3 {
		font-size: 30px;
	}

	.strong-box-txt p {
		font-size: 17px;
		line-height: 1.8;
	}

	.ex-marquee {
		margin-top: 100px;
	}

	.voice {
		padding: 95px 0;
	}

	.voice .flex-cont-txt {
		width: 100%;
	}

	.voice-box-title-txt span {
		width: 15px;
		height: 15px;
		top: 3px;
	}

	.voice-box-title-txt {
		margin-bottom: 10px;
	}

	.voice-box-title-txt p {
		font-size: 15px;
		width: calc(100% - 25px);
	}

	.voice-box-img {
		margin-bottom: 15px;
	}

	.voice-box-txt p {
		font-size: 15px;
	}

	.voice-box-txt p {
		font-size: 15px;
	}

	.controls {
		max-width: 300px;
		margin: 30px auto 0;
	}

	.swiper-pagination-bullet {
		width: 10px;
		height: 10px;
		margin: 0px 7.5px;
	}

	.swiper-button-prev,
	.swiper-button-next {
		width: 30px;
		height: 30px;
	}

	.staff {
		padding: 70px 0 55px;
	}

	.staff .inner {
		width: 100%;
	}

	.staff .mincyo-title {
		max-width: 325px;
		width: calc(100% - 40px);
	}

	.staff-txt p {
		font-size: 17px;
		padding-bottom: 50px;
	}

	.staff-txt {
		margin: 0 auto 60px;
		max-width: 100%;
		width: calc(100% - 40px);
	}

	.staff-img {
		overflow: hidden;
		white-space: nowrap;
		width: 100%;
	}

	.staff-img-inner {
		display: inline-flex;
		animation: marquee 30s linear infinite;
	}

	.staff-img-inner img {
		height: 145px;
		width: auto;
		margin-right: 20px;
		flex-shrink: 0;
	}

	@keyframes marquee {
		0% {
			transform: translateX(0);
		}

		100% {
			transform: translateX(-70%);
		}
	}

	.area {
		padding: 55px 0;
	}

	.area .flex-cont-txt {
		width: 100%;
	}

	.area-txt h3 {
		font-size: 25px;
		padding: 5.5px 25px 6.5px;
		margin-bottom: 25px;
	}

	.area-txt p {
		font-size: 17px;
		padding-bottom: 50px;
	}

	.area .mincyo-title {
		max-width: 325px;
		margin-bottom: 35px;
	}

	.acc-conts {
		display: block;
		max-width: 500px;
		margin: 0 auto;
	}

	.acc-cont {
		width: 100%;
	}

	.acc-cont:nth-child(1) {
		margin-bottom: 60px;
	}

	.acc-cont-title {
		margin-bottom: 5px;
		padding: 15px;
	}

	.acc-cont-title h3 {
		font-size: 20px;
	}

	.acc-header {
		padding: 20px 0;
	}

	.acc-header::before,
	.active .acc-header::after {
		right: 0px;
	}

	.acc-header::after {
		right: 8px;
	}

	.acc-content {
		padding: 20px 0 15px;
	}

	.acc-wrap.active .acc-content {
		display: block;
	}

	.acc-content img {
		width: 100%;
		height: 180px;
		object-fit: cover;
	}

	.acc-content p {
		font-size: 15px;
		line-height: 1.9;
		padding-top: 20px;
		width: 100%;
	}

	.flow {
		padding: 55px 0 110px;
	}

	.flow .mincyo-title {
		margin-bottom: 35px;
	}

	.flow-img {
		max-width: 300px;
	}

	.plan {
		padding: 110px 0 90px;
	}

	.plan-list-cont {
		padding: 20px;
	}

	.plan-list-title {
		margin-bottom: 15px;
		display: block;
	}

	.plan-list-title-num {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 5px;
	}

	.plan-list-title-txt {
		width: 100%;
		text-align: center;
	}

	.plan-list-title-txt h3 {
		font-size: 25px;
	}

	.plan-list-title-num p {
		line-height: 1;
	}

	.plan-list-title-num p.sp {
		font-size: 14px;
		color: #000;
		margin-left: 20px;
		line-height: 1.5;
	}

	.plan-list-box ul {
		display: block;
	}

	.plan-list-box ul li {
		width: 100%;
		padding: 10px;
		margin-bottom: 10px;
	}

	.plan-list-txt p {
		font-size: 15px;
	}

	.plan-list-box ul li img {
		width: 20px;
	}

	.plan-list-box ul li p {
		width: calc(100% - 30px);
		font-size: 15px;
	}

	.last-cont .inner {
		width: 100%;
	}

	.last-img {
		margin: 0 auto 40px;
	}

	.last-txt-cont-title {
		max-width: 325px;
		margin: 0 auto 50px;
	}

	.last-txt-list {
		width: calc(100% - 40px);
		max-width: 500px;
		margin: 0 auto;
	}

	.last-cont {
		max-width: 100%;
		margin: 0 auto 110px;
	}

	.last-txt-list ul li {
		margin-bottom: 40px;
	}

	.last-txt-list ul li img {
		width: 22.5px;
		top: 8px;
	}

	.last-txt-list ul li p {
		font-size: 20px;
		line-height: 1.7;
		width: calc(100% - 32.5px);
	}

	.last-txt-list ul {
		max-width: 100%;
		margin: 0 auto 60px;
	}

	.bottom-txt {
		font-size: 15px;
	}

	.contact-cont {
		padding: 110px 0;
	}

	.contact-title {
		max-width: 230px;
	}

	.contact-cont-form {
		max-width: 500px;
	}

	.contact-form-box {
		margin-top: -30px;
		padding: 50px 20px 50px;
	}

	.form-group {
		margin-bottom: 25px;
	}

	.form-group.flex {
		display: block;
	}

	.form-group.flex label {
		width: 100%;
	}

	.form-group.flex .check-wrap {
		width: 100%;
	}

	.form-group label {
		font-size: 17px;
		margin-bottom: 10px;
	}

	.form-group input,
	.form-group textarea {
		padding: 20px 15px;
		font-size: 16px;
		border-radius: 0;
	}

	#contact-form button {
		max-width: 290px;
		border-radius: 30px;
		margin: 25px auto 20px;
		font-size: 25px;
		padding: 17.5px 0;
		;
	}

	.form-txt p {
		font-size: 14px;
	}

	footer {
		padding: 85px 0 30px;
	}

	.footer-flex {
		display: block;
		max-width: 500px;
		margin: 0 auto 35px;
	}

	.footer-logo {
		max-width: 275px;
	}

	.footer-bottom {
		display: block;
		max-width: 500px;
		margin: 0 auto;
	}

	.footer-bottom-left {
		width: 100%;
	}

	.footer-bottom-left p {
		font-size: 15px;
	}

	.footer-bottom-left {
		margin-bottom: 45px;
	}

	.footer-bottom-right {
		width: 100%;
	}

	p.copy {
		font-size: 13px;
	}

	.thanks {
		margin: 70px 0 0;
	}

	.thanks-flex {
		display: block;
	}

	.thanks-flex-left {
		padding-inline: 20px;
		width: 100%;
		margin-block: 25px;
	}

	.thanks-flex-right {
		width: calc(100% - 20px);
		margin-left: auto;
	}

	.thanks-flex-left h2 {
		font-size: 23px;
		line-height: 1.5;
		padding-block: 20px 15px;
		z-index: 10;
		position: relative;
	}

	.thanks-flex-left p,
	.thanks-flex-left a {
		font-size: 15px;
	}

	.thanks-top-txt p {
		font-size: 54px;
	}
}

@media screen and (max-width: 500px) {
	.cta-cont-left {
		width: calc(100% - 20px);
	}

	a.cta-btn p {
		font-size: 20px;
	}

	.achievements {
		margin-top: 80px;
	}

	a.cta-btn span.box {
		padding: 1.5px 20px 2.5px;
		font-size: 20px;
	}

	.strong-box-txt h3 {
		white-space: nowrap;
	}

	.area-txt p {
		font-size: 16px;
	}

	.acc-header h4 {
		font-size: 18px;
	}

	.plan-list-box ul li p {
		font-size: 14px;
	}

	.last-txt-list ul li {
		margin-bottom: 30px;
	}
}
