@charset "UTF-8";

/* ==================================================
	Hero
================================================== */

.hero {
	overflow: hidden;
	background: #fff;
}

.hero__visual {
	position: relative;
	min-height: 490px;
	background:
		url("../img/top/hero_bg.jpg")
		center bottom / cover no-repeat;
}

.hero__inner {
	position: relative;
	width: min(1220px, calc(100% - 40px));
	min-height: 480px;
	margin-inline: auto;
	padding-top: 82px;
}

.hero__content {
	position: relative;
	z-index: 6;
	width: 52%;
	padding-left: 12px;
}

.hero__lead {
	margin-bottom: 10px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.hero__logo {
	width: min(500px, 100%);
	margin-bottom: 17px;
}

.hero__projectLogo {
	width: 495px;
}

.hero__projectLogo img {
	display: block;
	width: 100%;
	height: auto;
}

.hero__children {
	position: absolute;
	left: 50%;
	bottom: -25px;
	z-index: 5;
	width: 410px;
	transform: translateX(-50%);
}

.hero__children img {
	display: block;
	width: 100%;
	height: auto;
}

.hero__model {
	position: absolute;
	top: 40%;
	right: -5%;
	z-index: 4;
	width: 500px;
	padding-top: 0;
}

.hero__message {
	padding: 45px 0 115px;
	text-align: center;
	background: #fff;
}

.hero__messageSub {
	margin-bottom: 2px;
	font-size: 21px;
	font-weight: 800;
	letter-spacing: 0.03em;
}

.hero__messageTitle {
	margin-bottom: 16px;
	color: #c85c08;
	font-size: clamp(40px, 4vw, 62px);
	font-weight: 900;
	line-height: 1.3;
	letter-spacing: 0.04em;
}

.hero__recruit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 34px;
	font-size: 20px;
	font-weight: 800;
}

.hero__recruit span {
	display: inline-block;
	padding: 4px 11px;
	color: #d35d00;
	background: #fff2bb;
}

.hero__buttons {
	display: flex;
	justify-content: center;
	gap: 36px;
}

.hero__modelPc {
	display: block;
	width: 100%;
	height: auto;
}

.hero__modelSp {
	display: none;
	width: 100%;
	height: auto;
}

@media screen and (max-width: 767px) {

	.hero__modelPc {
		display: none;
	}

	.hero__modelSp {
		display: block;
	}
}


/* ==================================================
	Worries
================================================== */

.worries {
	position: relative;
	padding: 110px 0 60px;
	background: #fff7c8;
}

.worries__title {
	position: absolute;
	top: -58px;
	left: 50%;
	z-index: 10;
	transform: translateX(-50%);
}

.worries__title img {
	display: block;
	width: 620px;
	max-width: 100%;
}

.worries__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	width: min(920px, 100%);
	margin-inline: auto;
}

.worriesCard {
	position: relative;
	display: flex;
	justify-content: space-between;
	min-height: 142px;
	padding: 18px 12px 14px 18px;
	overflow: hidden;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 2px 6px rgba(101, 85, 28, 0.08);
	min-height: 200px;
}

.worriesCard__text {
	position: relative;
	z-index: 2;
	width: 68%;
}

.worriesCard__text h3 {
	margin-bottom: 7px;
	color: #ef7a17;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.4;
}

.worriesCard:nth-child(2) h3 {
	color: #46a84a;
}

.worriesCard:nth-child(3) h3 {
	color: #2a98d4;
}

.worriesCard:nth-child(4) h3 {
	color: #8c63d7;
}

.worriesCard:nth-child(5) h3 {
	color: #e45076;
}

.worriesCard:nth-child(6) h3 {
	color: #e17720;
}

.worriesCard__text p {
	font-size: 14px;
	line-height: 1.6;
}

.worriesCard__image {
	position: absolute;
	right: 4px;
	bottom: 0;
	width: 48%;
}

.worriesCard__image img {
	width: 100%;
}

.worries__answerLink {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-height: 76px;
	padding: 14px 28px;
	background: #fff;
	border: 2px dashed #f1a33b;
	border-radius: 16px;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.worries__answerLink:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.worries__answerIcon {
	flex-shrink: 0;
	width: 45px;
	height: auto;
}

.worries__answerText {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 7px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
}

.worries__answerLogo {
	width: 340px;
	height: auto;
}

.worries__answer {
	width: min(920px, 100%);
	margin: 28px auto 0;
}

.worries__answer p {
	font-size: 20px;
	font-weight: 700;
}

.worries__answer strong {
	color: #87b900;
	font-weight: 900;
}

/* ==================================================
	About
================================================== */

.about {
	padding: 75px 0 55px;
	background: #fff;
}

.about__head {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	align-items: center;
	gap: 45px;
	width: min(1060px, 100%);
	margin-inline: auto;
}

.about__text {
	padding-left: 15px;
}

.about__logo {
	width: min(450px, 100%);
	margin-bottom: 16px;
}

.about__text > p {
	font-size: 13px;
	line-height: 2;
}

.about__mainImage {
	overflow: hidden;
	border-radius: 18px;
}

.about__mainImage img {
	width: 100%;
	aspect-ratio: 1.65 / 1;
	object-fit: cover;
}

.aboutPlaces {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 48px;
}

.aboutPlaces__item {
	overflow: hidden;
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.aboutPlaces__item img {
	width: 100%;
	aspect-ratio: 1.25 / 1;
	object-fit: cover;
}

.aboutPlaces__item p {
	padding: 13px 8px;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.05em;
}

.aboutPlaces__item--yellow p {
	background: #fff2aa;
	color: #C37F19;
}

.aboutPlaces__item--pink p {
	background: #f9b7ea;
	color: #bf318f;
}

.aboutPlaces__item--purple p {
	background: #edc7ff;
	color: #9b47c4;
}

.aboutPlaces__item--green p {
	background: #c9f0c6;
	color: #218e45;
}

.about__companyLogo {
	width: 454px;
	margin-bottom: 24px;
}

.about__companyLogo img {
	display: block;
	width: 100%;
	height: auto;
}


/* ==================================================
	Section title
================================================== */

.sectionTitle {
	text-align: center;
}

.sectionTitle h2 {
	font-size: 32px;
	font-weight: 900;
	line-height: 1.45;
	letter-spacing: 0.05em;
}

.sectionTitle > p {
	margin-top: 6px;
	font-size: 12px;
}

/* ==================================================
	Strengths
================================================== */

.strengths {
	padding: 70px 0 80px;
	background: #fff;
}

.sectionTitle--strengths {
	text-align: center;
}

.sectionTitle--strengths h2 {
	width: min(620px, 85%);
	margin: 0 auto;
}

.sectionTitle--strengths h2 img {
	display: block;
	width: 100%;
	height: auto;
}

.sectionTitle--strengths > p {
	margin-top: 12px;
	color: #333;
	font-size: 12px;
	line-height: 1.7;
	text-align: center;
}

.strengths__list {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: clamp(30px, 5vw, 35px);
	margin-top: 48px;
}

.strengthItem {
	width: 160px;
	text-align: center;
}

.strengthItem > img {
	display: block;
	width: 163px;
	height: 215px;
	margin: 0 auto 14px;
	object-fit: contain;
}

.strengthItem p {
	color: #00469b;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	white-space: nowrap;
}

.dailySchedule {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	width: min(410px, 100%);
	min-height: 76px;
	margin: 46px auto 0;
	padding: 12px 28px;
	background: #d9f4ff;
	border-radius: 18px;
	box-shadow: 0 3px 0 rgba(0, 91, 140, 0.08);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.dailySchedule:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 12px rgba(0, 91, 140, 0.1);
}

.dailySchedule__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 42px;
	height: 48px;
	color: #e33d3d;
	font-size: 13px;
	font-weight: 800;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.dailySchedule__text {
	color: #111;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.25;
	text-align: left;
	letter-spacing: 0.1em;
}

.dailySchedule__text small {
	display: block;
	margin-bottom: 2px;
	font-size: 12px;
	font-weight: 500;
}

/* ==================================================
	Plans
================================================== */

/* ==================================================
	ご利用プラン
================================================== */

.plans {
	padding: 55px 0 75px;
	background: #fff;
}

.plans .inner {
	position: relative;
	width: min(1120px, calc(100% - 40px));
	padding: 42px 22px 0;
	overflow: hidden;
	background: #fff8c7;
	border-radius: 26px;
}

/* 見出し */

.sectionTitle--plans {
	text-align: center;
}

.sectionTitle--plans h2 {
	position: relative;
	display: inline-block;
	padding-bottom: 14px;
	color: #76501d;
	font-size: 30px;
	font-weight: 800;
	line-height: 1.4;
	letter-spacing: 0.05em;
}

.sectionTitle--plans h2::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 105px;
	height: 3px;
	margin: auto;
	background:
		repeating-linear-gradient(
			to right,
			#ef8d59 0,
			#ef8d59 8px,
			transparent 8px,
			transparent 14px
		);
	content: "";
}

.sectionTitle--plans p {
	margin-top: 12px;
	color: #76501d;
	font-size: 11px;
	line-height: 1.7;
	font-weight: 600;
}

/* カード4枚 */

.plans__list {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 13px;
	margin-top: 30px;
}

.planCard {
	overflow: hidden;
	background: #fff;
	border: 2px solid;
	border-radius: 15px;
	box-shadow: 0 4px 5px rgba(72, 55, 13, 0.12);
}

/* カード上部 */

.planCard h3 {
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 6px;
	min-height: 68px;
	padding: 10px 8px;
	color: #fff;
	font-size: 21px;
	font-weight: 800;
	line-height: 1.4;
	text-align: center;
	white-space: nowrap;
}

.planCard__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 50px;
	height: 50px;
	color: inherit;
	font-size: 16px;
	background: #fff;
	border-radius: 50%;
}

/* カード本文 */

.planCard__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 165px;
	padding: 25px 15px 15px;
	text-align: center;
}

.planCard__type {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
}

.planCard__description {
	position: relative;
	width: 100%;
	/*min-height: 46px;*/
	margin-top: 4px;
	padding-bottom: 16px;
	font-size: 9px;
	font-weight: 600;
	line-height: 1.6;
}

.planCard__description::after {
	position: absolute;
	right: 0;
	bottom: 3px;
	left: 0;
	width: 100%;
	height: 1px;
	content: "";
}



/* 金額 */

.planCard__price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 4px;
	margin-top: 15px;
	margin-bottom: 15px;
	font-weight: 700;
	white-space: nowrap;
}

.planCard__price span {
	display: inline-block;
	padding: 2px 5px;
	color: #fff;
	font-size: 13px;
	line-height: 1.3;
	border-radius: 2px;
}

.planCard__price strong {
	font-size: 33px;
	font-weight: 900;
	line-height: 1;
}

.planCard__price small {
	font-size: 12px;
	font-weight: 700;
}

.planCard__consult {
	margin-top: 16px;
	font-size: 24px;
	font-weight: 800;
}

.cplan{
	color: #f27b34;
}

/* オレンジ */

.planCard--orange {
	border-color: #f27b34;
}

.planCard--orange h3 {
	background: #f27b34;
}

.planCard--orange .planCard__icon {
	color: #f27b34;
}

.planCard--orange .planCard__description::after {
	border-top: 1px dashed #f27b34;
}

.planCard--orange .planCard__price {
	color: #ee6823;
}

.planCard--orange .planCard__price span {
	background: #f27b34;
}

/* グリーン */

.planCard--green {
	border-color: #6bc95e;
}

.planCard--green h3 {
	background: #6bc95e;
}

.planCard--green .planCard__icon {
	color: #6bc95e;
}

.planCard--green .planCard__description::after {
	border-top: 1px dashed #6bc95e;
}

.planCard--green .planCard__price {
	color: #4fbd4c;
}

.planCard--green .planCard__price span {
	background: #6bc95e;
}

/* ブルー */

.planCard--blue {
	border-color: #159ac8;
}

.planCard--blue h3 {
	background: #159ac8;
}

.planCard--blue .planCard__icon {
	color: #159ac8;
}

.planCard--blue .planCard__description::after {
	border-top: 1px dashed #159ac8;
}

.planCard--blue .planCard__price {
	color: #118fbd;
}

/* ピンク */

.planCard--pink {
	border-color: #df477e;
}

.planCard--pink h3 {
	background: #df477e;
}

.planCard--pink .planCard__icon {
	color: #df477e;
}

.planCard--pink .planCard__description::after {
	border-top: 1px dashed #df477e;
}

.planCard--pink .planCard__consult {
	color: #df477e;
}

/* 草原画像 */

.plans__decoration {
	position: relative;
	z-index: 1;
	width: calc(100% + 44px);
	margin: 18px -22px 0;
}

.plans__decoration img {
	display: block;
	width: 100%;
	height: auto;
}

.planCard__note {
	margin-top: 5px;
	font-size: 8px;
	font-weight: 700;
	line-height: 1.4;
}

/* ==================================================
	Reports
================================================== */

.reports {
	padding: 80px 0 70px;
	background: #fffef8;
}

.sectionTitle--reports h2 {
	position: relative;
	display: inline-block;
	padding-bottom: 18px;
	color: #835311;
	font-size: 34px;
	font-weight: 800;
	line-height: 1.4;
}

.sectionTitle--reports h2::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);

	width: 120px;
	height: 3px;

	background:
		repeating-linear-gradient(
			to right,
			#ef8d59 0,
			#ef8d59 8px,
			transparent 8px,
			transparent 14px
		);
}

.reports__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 42px 28px;
	margin-top: 42px;
}

.reportCard a {
	display: block;
	transition: transform 0.25s ease;
}

.reportCard a:hover {
	transform: translateY(-5px);
}

.reportCard__image {
	position: relative;
	overflow: hidden;
	border-radius: 11px;
}

.reportCard__image img {
	width: 100%;
	aspect-ratio: 1.5 / 1;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.reportCard a:hover .reportCard__image img {
	transform: scale(1.04);
}

.reportCard__image time {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 3px 8px;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	background: #4ebd66;
	border-radius: 20px;
}

.reportCard__body {
	padding-top: 12px;
}

.reportCard__body h3 {
	font-size: 16px;
	font-weight: 800;
}

.reportCard__body > p {
	margin-top: 6px;
	font-size: 14px;
	line-height: 1.7;
}

.reportCard__category {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: 10px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
}
.reportCard__categoryIcon {
	display: block;
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	object-fit: contain;
}


.reports__button {
	margin-top: 48px;
	text-align: center;
}

.sectionTitle--reports p {
	margin-top: 14px;
	font-size: 13px;
	line-height: 1.8;
	color: #555;
	text-align: center;
}

/* ==================================================
	Information
================================================== */

.information {
	position: relative;
	padding: 65px 0 340px;
	overflow: hidden;
	background: #effbea;
	/*
	background:
		linear-gradient(
			to bottom,
			#fff 0,
			#fff 190px,
			#effbea 190px,
			#effbea 100%
		);
	*/
}

.information__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 38px;
}

.newsBox,
.contactBox {
	min-height: 330px;
	padding: 34px 36px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
}

.information__en {
	margin-bottom: 2px;
	color: #aaa;
	font-size: 10px;
	letter-spacing: 0.2em;
}

.newsBox h2,
.contactBox h2 {
	font-size: 24px;
	font-weight: 800;
}

.newsBox__list {
	margin-top: 22px;
}

.newsBox__list li {
	border-bottom: 1px dotted #bbb;
}

.newsBox__list a {
	display: grid;
	grid-template-columns: 92px 1fr;
	gap: 14px;
	padding: 10px 0;
	font-size: 14px;
}

.newsBox__list time {
	color: #777;
}

.newsBox__list span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.newsBox__more {
	margin-top: 16px;
	text-align: right;
}

.newsBox__more a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 11px;
	font-weight: 700;
}

.newsBox__more a span {
	font-size: 19px;
}

.contactBox__lead {
	margin-top: 13px;
	font-size: 12px;
}

.contactBox__content {
	display: grid;
	grid-template-columns: 1fr 116px;
	align-items: center;
	gap: 20px;
	margin-top: 60px;
}

.contactBox__tel {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.03em;
}

.contactBox__tel span {
	font-size: 25px;
}

.contactBox__detail > p {
	margin: 4px 30px 12px 35px;
	font-size: 14px;
	text-align: right;
}

.contactBox__url {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 23px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.03em;
}

.contactBox__url span {
	font-size: 25px;
}

.contactBox__qr img {
	width: 100%;
}

.information__landscape {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	margin-top: 0;
}

.information__landscape img {
	display: block;
	width: 100%;
	height: auto;
}


.pageTop {
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 999;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	width: 58px;
	height: 58px;

	border-radius: 50%;
	background: #f9a11b;
	color: #fff;

	text-decoration: none;

	box-shadow: 0 6px 18px rgba(0,0,0,.18);

	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);

	transition: .3s;
}

.pageTop.is-show{
	opacity:1;
	visibility:visible;
	transform:translateY(0);
}

.pageTop:hover{
	transform:translateY(-5px);
	box-shadow:0 10px 24px rgba(0,0,0,.25);
}

.pageTop__arrow{
	font-size:20px;
	line-height:1;
	font-weight:bold;
}

.pageTop__text{
	margin-top:2px;
	font-size:10px;
	font-weight:700;
	letter-spacing:.08em;
}


/* ==================================================
	Tablet
================================================== */

@media screen and (max-width: 1024px) {

	.hero__visual,
	.hero__inner {
		min-height: 450px;
	}

	.hero__inner {
		padding-top: 70px;
	}

	.hero__lead {
		font-size: 13px;
	}

	.hero__buttons {
		gap: 20px;
	}

	.hero__buttons .button {
		min-width: 310px;
	}

	.worries__list {
		grid-template-columns: repeat(2, 1fr);
	}

	.about__head {
		gap: 30px;
	}

	.aboutPlaces {
		gap: 12px;
	}

	.strengths__list {
		gap: 30px;
	}

	.plans__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
	}

	.planCard__body {
		min-height: 180px;
	}

	.contactBox__tel {
		font-size: 25px;
	}

}

/* ==================================================
	Smartphone
================================================== */

@media screen and (max-width: 767px) {


	/* Hero */

	.hero__visual {
		position: relative;
		min-height: 0;
		background:
			url("../img/top/hero_bg.jpg")
			center bottom / cover no-repeat;
	}

	/*
		hero_bg_sp.jpg がまだない場合は、一時的にこちら
		background:
			url("../img/top/hero_bg.jpg")
			center center / cover no-repeat;
	*/

	.hero__inner {
		display: flex;
		flex-direction: column;
		width: 100%;
		min-height: 0;
		margin: 0;
		padding: 28px 15px 0;
	}

	/* 上部のプロジェクトロゴ */

	.hero__content {
		order:1;
		position: static;
		width: 100%;
		padding: 0;
		text-align: center;
	}

	.hero__logo {
		width: min(330px, 94%);
		margin: 0 auto 10px;
	}

	.hero__projectLogo {
		width: 95%;
		margin: 0 auto;
	}

	/* こども家庭庁の看板 */

	.hero__model {
		order: 2;
		position: static;
		width: min(360px, 100%);
		margin: 30px auto 0;
		padding: 0;
		transform: none;
	}

	.hero__modelPc {
		display: none;
	}

	.hero__modelSp {
		display: block;
		width: 100%;
		height: auto;
	}

	/* 子ども3人 */

	.hero__children {
		order: 3;
		position: static;
		width: min(330px, 100%);
		margin: 18px auto 0;
		transform: none;
	}

	.hero__children img {
		display: block;
		width: 100%;
		height: auto;
	}

	/* 青空の外・白背景 */

	.hero__message {
		position: static;
		width: 100%;
		margin: 0;
		padding: 38px 15px 52px;
		background: #fff;
		text-align: center;
	}

	.hero__message .inner {
		width: 100%;
		margin: 0 auto;
	}

	.hero__messageSub {
		margin: 0 0 4px;
		font-size: 14px;
	}

	.hero__messageTitle {
		margin: 0 0 16px;
		color: #c85c08;
		font-size: 31px;
		line-height: 1.35;
	}

	.hero__recruit {
		display: block;
		margin: 0 0 25px;
		font-size: 14px;
		line-height: 1.8;
	}

	.hero__recruit span {
		margin-right: 5px;
	}

	.hero__buttons {
		display: grid;
		gap: 15px;
	}

	.hero__buttons .button {
		min-width: 300px;
	}


	/* Worries */

	.worries {
		position: relative;
		padding: 42px 0 40px;
	}

	.worries__title {
		position: static;
		top: auto;
		left: auto;
		width: min(380px, 100%);
		margin: 0 auto 24px;
		transform: none;
	}

	.worries__title img {
		display: block;
		width: 100%;
		height: auto;
	}

	.worries__list {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.worriesCard {
		min-height: 135px;
	}

	.worriesCard__text h3 {
		font-size: 21px;
	}

	.worriesCard__text p {
		font-size: 16px;
	}

	.worries__answer {
		margin-top: 22px;
	}

	.worries__answerLink {
		gap: 8px;
		min-height: 68px;
		padding: 12px 14px;
	}

	.worries__answerIcon {
		width: 28px;
	}

	.worries__answerText {
		gap: 5px;
		font-size: 12px;
	}

	.worries__answerLogo {
		width: 220px;
	}

	.worries__answerArrow {
		font-size: 24px;
	}
	
	.worries__answer p {
		font-size: 12px;
	}

   .worriesCard__image {
       position: absolute;
       right: 4px;
       bottom: -5px;
       width: 50%;
   }

	/* About */

	.about {
		padding: 55px 0 42px;
	}

	.about__head {
		display: flex;
		flex-direction: column;
		gap: 25px;
	}

	.about__text {
		padding-left: 0;
	}

	.about__logo {
		width: 90%;
		margin-inline: auto;
	}

	.about__text > p {
		font-size: 16px;
		line-height: 1.6;
	}

	.about__mainImage {
		width: 100%;
	}

	.aboutPlaces {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		margin-top: 30px;
	}

	.aboutPlaces__item p {
		padding: 10px 5px;
		font-size: 12px;
	}

	.about__companyLogo {
		width: 95%;
		margin: 0 auto 20px;
	}

	/* Strengths */

	.strengths {
		padding: 52px 0 60px;
	}

	.sectionTitle--strengths h2 {
		width: min(360px, 95%);
	}

	.sectionTitle--strengths > p {
		margin-top: 10px;
		font-size: 11px;
	}

	.strengths__list {
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		gap: 26px 10px;
	}

	/* 上段 */
	.strengthItem:nth-child(1) { grid-column: 1 / span 2; }
	.strengthItem:nth-child(2) { grid-column: 3 / span 2; }
	.strengthItem:nth-child(3) { grid-column: 5 / span 2; }

	/* 下段（中央寄せ） */
	.strengthItem:nth-child(4) { grid-column: 2 / span 2; }
	.strengthItem:nth-child(5) { grid-column: 4 / span 2; }

	.strengthItem {
		width: auto;
	}

	.strengthItem > img {
		width: 130px;
		height: 107px;
		margin-bottom: 10px;
	}

	.strengthItem p {
		font-size: 11px;
		white-space: normal;
	}

	.dailySchedule {
		width: 100%;
		min-height: 68px;
		margin-top: 36px;
		padding: 10px 18px;
	}

	.dailySchedule__icon {
		width: 36px;
		height: 42px;
		font-size: 11px;
	}

	.dailySchedule__text {
		font-size: 20px;
	}

	.dailySchedule__text small {
		font-size: 14px;
	}


	/* Plans */

	.plans {
		padding-top: 35px;
	}

	.planCard h3 {
		display: flex;
		align-items: center;
		justify-content: flex-start;   /* ← centerではなくこちら */
		gap: 10px;
		padding: 10px 20px;            /* 左余白はお好みで18～24px */
		min-height: 68px;
		color: #fff;
		font-size: 28px;
		font-weight: 800;
		line-height: 1.4;
		white-space: nowrap;
		letter-spacing: 0.05em;
	}

	.planCard__icon {
		flex: 0 0 50px;
		width: 50px;
		height: 50px;

		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.plans .inner {
		width: calc(100% - 20px);
		padding: 32px 12px 0;
		border-radius: 22px 22px 0 0;
	}

	.planCard__type {
	    font-size: 18px;
	    font-weight: 600;
	    line-height: 1.5;
	}

	.planCard__price span {
	    display: inline-block;
	    padding: 2px 5px;
	    color: #fff;
	    font-size: 15px;
	    line-height: 1.3;
	    border-radius: 2px;
	    margin-right: 5px;
	}
	
	.planCard__price strong {
	    font-size: 42px;
	    font-weight: 900;
	    line-height: 1;
	}
	
	.planCard__price small {
	    font-size: 15px;
	    font-weight: 700;
	}

	.planCard__note {
	    margin-top: 5px;
	    font-size: 14px;
	    font-weight: 700;
	    line-height: 1.4;
	}

	.sectionTitle--plans h2 {
		font-size: 28px;
	}

	.sectionTitle--plans p {
		font-size: 14px;
	}

	.plans__list {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-top: 25px;
	}

	.planCard__body {
		min-height: 165px;
	}

	.plans__decoration {
		margin-right: -12px;
		margin-left: -12px;
	}

	/* Reports */

	.reports {
		padding: 58px 0 55px;
	}

	.sectionTitle--reports h2 {
		font-size: 28px;
	}

	.reports__list {
		grid-template-columns: 1fr;
		gap: 32px;
		margin-top: 30px;
	}

	.sectionTitle--reports p {
	    margin-top: 14px;
	    font-size: 16px;
	    line-height: 1.8;
	    color: #555;
	    text-align: center;
	}

	.reportCard__body h3 {
		font-size: 21px;
	}

	.reportCard__body > p {
	    margin-top: 6px;
	    font-size: 16px;
	    line-height: 1.7;
	}

	.reports__button {
		margin-top: 35px;
	}

	.reportCard__category {
	    display: flex;
	    align-items: center;
	    gap: 7px;
	    margin-top: 10px;
	    font-size: 16px;
	    font-weight: 700;
	    line-height: 1.5;
	}

	/* Information */

	.information {
		padding-top: 45px;
	}

	.information {
	    position: relative;
	    padding: 65px 0 145px;
	    overflow: hidden;
	    background: linear-gradient(to bottom, #fff 0, #fff 190px, #effbea 190px, #effbea 100%);
	}
	
	.information__inner {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.newsBox,
	.contactBox {
		min-height: 0;
		padding: 28px 22px;
	}

	.newsBox h2,
	.contactBox h2 {
		font-size: 21px;
	}

	.newsBox__list a {
		grid-template-columns: 78px 1fr;
		gap: 10px;
		font-size: 14px;
	}

	.newsBox__more a {
	    display: inline-flex;
	    align-items: center;
	    gap: 10px;
	    font-size: 15px;
	    font-weight: 700;
	}

	.contactBox__content {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.contactBox__detail {
		width: 100%;
	}

	.contactBox__qr {
		width: 100%;
		text-align: center;
	}

	.contactBox__qr img {
		width: 60%;
		height: auto;
		margin: 0 auto;
	}

	.contactBox__tel {
		font-size: 32px;
	}

	.contactBox__tel span {
		font-size: 19px;
	}

	.contactBox__detail > p {
		margin-left: 27px;
	}

	.contactBox__url {
		font-size: 23px;
	}

	.contactBox__lead {
	    margin-top: 13px;
	    font-size: 15px;
	}
	
	.information__landscape {
		margin-top: 18px;
	}
	


}

@media screen and (max-width: 390px) {

	.header__logoLevante {
		width: 100px;
	}

	.header__logoArigato {
		width: 77px;
	}

	.contactBox__content {
		display: block;
	}

	.contactBox__qr {
		width: 100px;
		margin: 20px auto 0;
	}
}

