@charset "UTF-8";

body {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
	color: #212121;
	line-height: 30px;
	letter-spacing: 3px;
	font-size: 16px;
}

.wrap {
	width: 100%;
	overflow: hidden;
}

.slick-slide img {
	width: 100%;
	object-fit: cover;
	height: 50vh;
}

/* ---------ボタン--------- */

.subpage-link-btn {
	display: inline-block;
	font-size: 18px;
	background: linear-gradient(90deg, rgba(146, 174, 42, 1) 37%, rgba(216, 99, 78, 1) 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* ---------ボタン--------- */

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
	display: block;
}

.sp {
	display: none !important;
}

/* ----------------------- */
/* base_sp
/* ----------------------- */
/* デフォルトのbuttonスタイルをリセット */
button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: inherit;
	cursor: pointer;
	font: inherit;
	margin: 0;
	outline: none;
	padding: 0;
	vertical-align: middle;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 1024px) {
	.pc {
		display: none !important;
	}

	.sp {
		display: block !important;
	}
}

a {
	text-decoration: none;
	color: #fff;
}

a:hover {
	cursor: pointer;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

/* nav
------------------------------------------------ */

#logo {
	max-width: 240px;
	display: block;
	/* margin: 0 auto; */
}

#logo img {
	width: 75%;
}


nav {
	width: 100%;
	height: 90px;
	position: fixed;
	background: #ffffff;
	z-index: 9999;
	align-items: center;
}

.drawer {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	position: relative;
	height: 70px;
	padding: 0 1em;
	width: 50%;
}

/*ナビゲーション部分*/

.menu ul li a {
	display: block;
	font-weight: 500;
	padding: 2em;
	border-bottom: 1px dotted #CCC;
	color: #333;
	text-decoration: none;
}


.menu ul li a:hover {
	background-color: rgb(141, 213, 229);
	color: rgb(255, 255, 255);
}


.menu {
	text-align: center;
	background-color: #fff;
	transition: .5s ease;
	/*滑らかに表示*/
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);
	/*左に隠しておく*/
}


/*OPEN時の動き*/
.menu.open {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	/*中身を表示（右へスライド）*/

}

.menu.open ul {
	padding-left: 0;
}



/*トグルボタンのスタイルを指定*/
.Toggle {
	display: block;
	position: fixed;
	/* bodyに対しての絶対位置指定 */
	width: 42px;
	height: 42px;
	cursor: pointer;
	z-index: 3;
	right: 15px;
}

.Toggle span {
	display: block;
	position: absolute;
	width: 40px;
	border-bottom: solid 1px #8ac2e5;
	-webkit-transition: .35s ease-in-out;
	/*変化の速度を指定*/
	-moz-transition: .35s ease-in-out;
	/*変化の速度を指定*/
	transition: .35s ease-in-out;
	/*変化の速度を指定*/

}

.Toggle span:nth-child(1) {
	top: 5px;
}

.Toggle span:nth-child(2) {
	top: 18px;
}

.Toggle span:nth-child(3) {
	top: 32px;
}



.Toggle.active span:nth-child(1) {
	top: 18px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
	top: 18px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

.banner {
	position: fixed;
	margin: 15px 20px;
	z-index: 99998;
	bottom: 0;
	right: 0;
}

.banner a {
	text-decoration: none;
	color: #232323;
}

.banner-icon {
	color: #f8f8f8;
	font-size: 40px;
}

.banner-back {
	width: 300px;
	background-color: #fff;
	border-radius: 25px;
}

.banner-top {
	padding: 20px;
	border-radius: 25px 25px 0px 0px;
}

.banner-copy {
	font-size: 18px;
	position: relative;
}

/* .banner-copy::after {
	font-family: 'Font Awesome 6 Free';
	font-size: 20px;
	content: '\f054';
	color: #006EB0;
	position: absolute;
	margin-top: 11px;
	top: 0;
	right: 18px;
} */

.banner-bottom {
	padding: 25px 0px 30px 0px;
	line-height: 1.6;
}

.banner-body {
	width: 300px;
	background: #f8f8f8;
	color: #000000;
	font-weight: bold;
	text-align: center;
	border-radius: 25px;
	-webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
	box-shadow: 0 0 7px rgb(0 0 0 / 40%);
}

.banner-body:hover {
	transition: opacity 0.3s ease;
	opacity: 0.7;
}

.banner-close {
	font-weight: bold;
	position: absolute;
	top: -2px;
	right: -4px;
	z-index: 99999;
	padding: 4px 8px;
	border: none;
	background-color: #f8f8f8;
	border-radius: 25px;
	cursor: pointer;
	-webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
	box-shadow: 0 0 7px rgb(0 0 0 / 40%);
}

.banner-tell {
    background: #8dd5e5;
}

.banner-line {
    background: #33cf4a;
}

.banner-web {
    background: #ffc13c;
}

@media screen and (max-width: 1025px) {
	.banner {
		width: 100%;
		margin: 0px;
	}

	.banner-icon {
		font-size: 20px;
		padding: 0.2rem 0;
	}

	.banner-body {
		width: 100%;
		border-radius: 0px;
	}

	.banner-back {
		width: 100%;
		margin: 0px;
		border-radius: 0px;
		display: flex;
	}

	.banner-top {
		padding: 5px;
		border-radius: 0px;
	}

	.banner-bottom {
		padding: 10px 10px 0px 10px;
	}

	.banner-copy {
        font-size: 12px;
        font-weight: 500;
		letter-spacing: 1px;
		margin-bottom: 0.5rem;
	}

	/* .banner-copy::after {
		font-size: 12px;
		margin-top: 1.4px;
		margin-left: 12px;
		top: initial;
		right: initial;
	} */

	.banner-close {
		top: 8px;
		right: 15px;
	}

	.banner-copy-br {
		display: none;
	}
}



@media screen and (min-width: 1025px) {

	header::after {

		display: none;
	}


	nav {
		display: flex;

	}

	.Toggle {
		display: none;
	}

	.menu {
		width: 100%;
		background-color: transparent;
		margin-top: 0;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	.menu ul {
		height: 70px;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		align-items: center;
		margin-bottom: 0;
	}

	.menu ul li a {
		padding: 0 1em;
		border-bottom: none;

	}

	.menu ul li a:hover {
		background-color: transparent;
	}


}

/* clearfix
------------------------------------------------ */
.clearfix:after {
	clear: both;
	display: block;
	visibility: hidden;
	height: 0;
	font-size: 0;
	content: ".";
}

.clearfix {
	clear: both;
}

.inner {
	width: 1200px;
	max-width: 90%;
	margin: 0 auto;
}

.flex {
	display: flex;
	justify-content: space-between;
}

.common-box {
	padding: 4rem 0;
}

.contents-tit {
	margin-bottom: 5rem;
}

h2.common-tit {
	font-size: 50px;
	text-align: center;
	display: inline-block;
	line-height: 55px;
	background: linear-gradient(90deg, rgba(137, 186, 230, 1) 0%, rgba(141, 213, 229, 1) 77%);
	display: inline-block;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	width: 100%;
	font-weight: 700;
}

h2.common-tit-white {
	font-size: 50px;
	text-align: center;
	line-height: 55px;
	color: #fff;
	font-weight: 700;
}

p.common-sub-tit {
	text-align: center;
	font-size: 35px;
	line-height: 40px;
	padding-top: 1rem;
	font-weight: 500;
}

p.common-sub-small-tit {
	text-align: center;
	padding-top: 1rem;
	font-size: 20px;
	font-weight: 500;
}


#banner .banner-box {
	background-repeat: no-repeat;
	background-image: url(./img/style/bnr-bg-img.png);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-evenly;
	border-radius: 40px;
}

.campaign-box {
	margin: 2rem;
	border-top: 15px solid #fff600;
	border-radius: 15px;
	padding: 2rem;
	background: #fff;
}

.campaign-box h3 {
	font-size: 56px;
	background: linear-gradient(90deg, rgba(137, 186, 230, 1) 0%, rgba(141, 213, 229, 1) 77%);
	display: inline-block;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 60px;
	font-weight: 700;
	margin-bottom: 0;
}

.campaign-box-detail {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.campaign-price-text-left {
	margin-right: 1rem;
}

.campaign-price-text-left p {
	color: #fff;
	background: rgb(137, 186, 230);
	background: linear-gradient(90deg, rgba(137, 186, 230, 1) 0%, rgba(141, 213, 229, 1) 77%);
	border-radius: 10px;
	padding: 1rem;
	font-size: clamp(20px, 5vw, 22px);
	font-weight: 700;
}

.campaign-price-text-right .price {
	font-weight: 700;
	line-height: 115px;
	background: linear-gradient(90deg, rgba(137, 186, 230, 1) 0%, rgba(141, 213, 229, 1) 77%);
	display: inline-block;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 0;
	font-size: clamp(39px, 6vw, 80px);

}

p.campaign-main-text {
	font-size: 25px;
	padding-bottom: 0.5rem;
	font-weight: 500;
}

.campaign-btn {
	text-align: center;
	padding-right: 3rem;
}

.campaign-btn small {
	font-size: 20px;
}

p.btn-link {
	margin-top: 1rem;
	background: rgb(137, 186, 230);
	background: linear-gradient(90deg, rgba(137, 186, 230, 1) 0%, rgba(141, 213, 229, 1) 77%);
	padding: 1rem 3rem;
	border-radius: 15px;
	font-size: 21px;
	border: 2px solid #fff;
	text-decoration: none;
}

.campaign-btn p a {}

.campaign-price-text-right ul {
	padding-left: 0;
}

/* お問い合わせバナー */

#contact .contents-tit {
	margin-bottom: 2rem;
}

.contact-box {
	background: #fbfbfb;
	border-radius: 30px;
	padding: 2rem 2rem;
}

.contact-detail-box {
	display: flex;
	justify-content: space-between;
}

.contact-detail-box dl {
	width: 32%;
	background: #fff;
	border-radius: 15px;
	padding: 1rem 2rem;
	text-align: center;
	position: relative;
}

.contact-detail-box dl a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.contact-detail-box dl dt {
	font-size: 25px;
	font-weight: 600;
	padding-bottom: 0.5rem;
}

.contact-detail-box dl dd {
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0px;
}

.contact-detail-box dl small {
	color: #212121;
}

dl.tel-box {
	border: 2px solid #8dd5e5;
	color: #8dd5e5;
}

dl.line-box {
	border: 2px solid #33cf4a;
	color: #33cf4a;
}

dl.web-box {
	border: 2px solid #ffc13c;
	color: #ffc13c;
}

.contact-detail-box dl dd i {
	margin-right: 0.3rem;
}

/* お問い合わせバナーここまで */

/* アコーディオン */

.item {
	margin-bottom: 1rem;
}

.js-accordion--close {
	display: none;
}

.accordion-box {
	height: 0;
	overflow: hidden;
	transition: .4s ease;
	border: 2px solid #ffdc90;
	border-radius: 0 0 30px 30px;
}

.accordion-box p {
	padding: 1rem 3rem;
}

.js-accordion {
	width: 100%;
	position: relative;
	padding: 0 35px 0 10px;
	background: rgb(255, 174, 0);
	background: linear-gradient(180deg, rgba(255, 174, 0, 1) 0%, rgba(255, 220, 144, 1) 77%);
	color: #fff;
	font-size: 30px;
	padding: 1.5rem 3rem;
	text-align: left;
	border-radius: 30px 30px 0 0;
}

.js-accordion::before {
	content: "";
	width: 2px;
	height: 16px;
	background: #fff;
	position: absolute;
	right: 47px;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: .6s ease;
}

.js-accordion::after {
	content: "";
	width: 16px;
	height: 2px;
	background: #fff;
	position: absolute;
	right: 40px;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: .6s ease;
}

.js-accordion p {
	margin-bottom: 0;
}

.js-accordion.is-accordion--open::before {
	transform: rotate(90deg);
}

.js-accordion.is-accordion--open::after {
	transform: rotate(-180deg);
}

.js-accordion.is-accordion--open+.accordion-box {
	height: auto;
	opacity: 1;
}

@media screen and (max-width: 1024px) {

	body {
		font-size: 14px;
		line-height: 25px;
	}

	nav {
		height: 75px;
	}

	#logo {
		max-width: 80%;
	}

	#logo img {
		width: 140px;
	}

	/* アコーディオン */

	.js-accordion {
		padding: 1rem 3rem;
	}

	.js-accordion p {
		font-size: 20px;
	}

	/* アコーディオン */

	/* バナー */

	#banner .banner-box {
		background-size: 100% 100%;
	}

	.campaign-box {
		margin: 1rem;
	}

	.campaign-box h3 {
		line-height: normal;
		margin-bottom: 0.5rem;
	}

	.campaign-box-detail {
		display: flex;
	}


	.campaign-price-text-left p {
		margin-bottom: 0;
		padding: 1.5rem 1rem;
		text-align: center;
	}

	.campaign-price-text-right .price {
		line-height: 90px;
		font-weight: 900;
		font-size: 70px;
	}

	.campaign-btn {
		padding-right: 0rem;
		width: 100%;
	}

	.campaign-btn small {
		font-size: 16px;
	}

	p.btn-link {
		width: 40%;
		margin: 0 auto;
		margin-bottom: 1rem;
		margin-top: 1rem;
		font-size: 18px;
	}

	/* バナー */

	/* お問い合わせボタン */

	.contact-box {
		padding: 2rem 1rem;
	}

	.contact-detail-box {
		display: block;
	}

	.contact-detail-box dl {
		width: 100%;
		margin-bottom: 1rem;
		padding: 1rem 0rem;
	}

	.contact-detail-box dl dt {
		font-size: 23px;
		padding-bottom: 1rem;
	}

	.contact-detail-box dl dd {
		font-size: 30px;
	}

	/* お問い合わせボタン */

	.contents-tit {
		margin-bottom: 2rem;
	}

	.common-box {
		padding: 4rem 0 0 0;
	}

	h2.common-tit {
		font-size: 26px;
		line-height: 40px;
		font-weight: 700;
	}

	p.common-sub-tit {
		font-size: 16px;
		line-height: 27px;
		padding-top: 0;
	}

	h2.common-tit-white {
		font-size: 26px;
		line-height: 40px;
		font-weight: 700;
	}

	header {
		display: flex;
		height: 60px;
	}

	.pc-nav {
		display: none;
	}

	.sp-nav {
		z-index: 1;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		display: block;
		width: 100%;
		background: rgba(0, 0, 0, .8);
		opacity: 0;
		transform: translateY(-100%);
		transition: all .2s ease-in-out;
	}

	header .sp-nav ul li a {
		color: #fff;
	}

	.main-visual {
		padding: 0 4%;
	}

	h2 {
		line-height: 1.6;
		text-align: center;
	}
}

footer {
	background: linear-gradient(180deg, rgba(137, 186, 230, 1) 0%, rgba(141, 213, 229, 1) 77%);
	height: 100%;
	text-align: center;
	padding: 60px 0 50px 0;
}

.footer-box {
	display: flex;
}

.footer-box ul {
	text-align: left;
}

h1.logo {
	width: 48%;
	padding-left: 135px;
}

h1.logo img {
	width: 80%;
}

ul.footer-sns {
	display: flex;
	justify-content: space-between;
	width: 18%;
}

ul.footer-sns li img {
	width: 70%;
}

.con_tit h2 {
	font-size: 30px;
}

.con_tit h2 span {
	color: #FF9900;
}

.con_tit h2 img {
	width: 20%;
}

@media only screen and (max-width: 750px) {

	body.fonts {
		font-size: 12px !important;
		line-height: 21px;
	}


	.resize .headerInner .headerLogo {
		left: -52%;
	}

	p.headerLogo img {
		width: 38%;
	}

	.slick-slide img {
		height: auto;
	}

	.con_tit01 .main_tit {
		font-size: 30px;
		border-bottom: 15px solid #ffe92b;
	}

	.con_tit02 .main_tit {
		width: 100%;
		padding: 1rem 0;
		font-size: 27px;
	}

	.con_tit03 {
		display: block;
	}

	.con_tit03 .main_tit {
		width: 100%;
		margin-top: 1rem;
	}

	.con_tit03 .main_tit p {
		font-size: 20px;
	}

	.con_tit03 .main_tit h3 img {
		width: 80%;
	}

	.con_tit03 img {
		width: 100%;
	}

	.contents-pd {
		padding: 35px 0;
	}

	.footer_txt p img {
		width: 49%;
	}

	footer .footer_txt {
		width: 100%;
		flex-wrap: wrap;
	}

	ul.footer-sns {
		display: flex;
		justify-content: space-between;
		width: 44%;
		padding-left: 100px;
	}

	h1.logo {
		padding-bottom: 15px;
	}

	h1.logo img {
		width: 100%;
	}

	ul.footer-sns li img {
		width: 45%;
	}

	.footer_txt ul {
		flex-wrap: wrap;
		margin-bottom: 1rem;
	}

	.footer_txt ul li {
		width: 26%;
	}

	.campaign-box-detail {
		display: block;
	}

	.campaign-price-text-left {
		margin-right: 0rem;
	}

	p.btn-link {
		width: 85%;
	}

	/* 下層ヘッダータイトル
------------------------------------------------ */
	.campaign-box h3 {
		font-size: 20px;
	}

	.campaign-price-text-right .price {
		font-size: 10vw;
	}

	/* 下層ヘッダータイトル
------------------------------------------------ */

	/* 下層共通
------------------------------------------------ */

	.detail-main-tit h3 {
		font-size: 18px;
		line-height: 30px;
		margin-bottom: 45px;
	}

	.detail-main-tit h3 span {
		display: contents;
		font-size: 14px;
	}

	.detail-sub-tit small {
		font-size: 12px;
	}

	.detail-sub-tit h4 {
		font-size: 25px;
		font-weight: 500;
	}

	.blue_btn {
		width: 100%;
	}

	.blue-text {
		color: #37488C;
		font-size: 20px;
	}

	.btn-box p {
		width: 100%;
		margin-bottom: 15px;
	}

	/* 下層共通
------------------------------------------------ */
}