@charset "utf-8";

/*================================================================
# 全ページ共通スタイル
================================================================ */
/* ヘッダー
------------------------------------------------------ */
.header {
	width: 100%;
	height: 56px;
	margin: 0 auto;
	padding: 0 12px;
	display: flex;
	align-items: center;
}

.header .container {
	margin: 0;
}

.header .left h1 {
	margin: 0;
	padding: 0;
}

.header .left h1 a {
	display: block;
}

.header .left h1 a img {
	width: auto;
	height: 40px;
	object-fit: contain;
}

.header .right {
	display: none;
}

.header .gnav_main {
	display: none;
}

.nav-toggle {
	width: 56px;
	height: 56px;
	cursor: pointer;
	background-color: var(--primary);
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9999;
}

.nav-toggle:before {
	width: 100%;
	height: 1em;
	margin: auto;
	position: absolute;
	content: "MENU";
	right: 0;
	bottom: 12px;
	left: 0;
	font-size: 10px;
	color: var(--white);
	text-align: center;
	letter-spacing: 0;
}

.nav-toggle span {
	width: 50%;
	height: 2px;
	background-color: var(--white);
	position: absolute;
	left: 13px;
	display: inline-block;
	transition: all 0.4s;
}

.nav-toggle span:nth-of-type(1) {
	top: 14px;
}

.nav-toggle span:nth-of-type(2) {
	top: 22px;
}

.nav-toggle span:nth-of-type(3) {
	top: 30px;
}

.nav-toggle.active:before {
	content: "CLOSE";
}

.nav-toggle.active span:nth-of-type(1) {
	width: 50%;
	top: 14px;
	left: 13px;
	transform: translateY(6px) rotate(-45deg);
}

.nav-toggle.active span:nth-of-type(2) {
	opacity: 0;
}

.nav-toggle.active span:nth-of-type(3) {
	width: 50%;
	top: 26px;
	left: 13px;
	transform: translateY(-6px) rotate(45deg);
}

/* gnav_sp
------------------------------------------------------ */
.gnav_sp {
	width: 100%;
	height: 100dvh;
	opacity: 0;
	background: var(--white);
	position: fixed;
	top: 0;
	right: -100%;
	bottom: 0;
	overflow-y: scroll;
	z-index: 9;
	transition: all 0.5s;
	-webkit-overflow-scrolling: touch;
}

.gnav_sp.panelactive {
	opacity: 1;
	right: 0;
	z-index: 999;
}

.gnav_sp.panelactive .gnav-list_sp {
	width: 100%;
	height: 100%;
	padding: 56px 0;
	position: fixed;
	overflow: auto;
	z-index: 999;
	-webkit-overflow-scrolling: touch;
}

.gnav_sp .primary {
	padding: 0 24px;
}

.gnav_sp .primary li a {
	width: 100%;
	padding: 16px 24px 18px;
	background-image: repeating-linear-gradient(90deg, #fcb6bf, #fcb6bf 5px, transparent 5px, transparent 10px);
	background-repeat: repeat-x;
	background-position: left bottom;
	background-size: 100% 2px;
	position: relative;
	display: block;
	font-weight: 600;
	transition: 0.3s;
}

.gnav_sp .primary li a span {
	display: block;
	font-size: 14px;
	color: var(--primary);
	letter-spacing: 3px;
}

.gnav_sp .primary li a:before {
	width: 16px;
	height: 16px;
	margin: 0;
	background: transparent no-repeat center/contain;
	background-image: url("../img/icon01.png");
	position: absolute;
	content: "";
	top: 22px;
	bottom: 0;
	left: 0;
}

.gnav_sp .primary li a br {
	display: none;
}

.gnav_sp .secondary {
	width: 80%;
	margin: 40px auto 0;
	padding: 0 24px;
	display: grid;
	justify-content: center;
	grid-template-columns: repeat(1, 1fr);
	gap: 8px;
}

.gnav_sp .secondary li {
	margin: 0;
	padding: 0;
	font-size: 13px;
	font-weight: 500;
}

.gnav_sp .secondary li a {
	padding: 12px;
	border: 2px solid var(--quaternary);
	border-radius: 9999px;
	background-color: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.25s;
	gap: 8px;
}

.gnav_sp .secondary li a span {
	padding: 0 0 0 24px;
	position: relative;
}

.gnav_sp .secondary li a span:before {
	width: 16px;
	height: 16px;
	margin: auto;
	background: no-repeat center / contain;
	position: absolute;
	content: "";
	inset: 0 auto 0 0;
}

.gnav_sp .secondary .li_news a span:before {
	background-image: url("../img/icon_news.png");
}

.gnav_sp .secondary .li_blog a span:before {
	background-image: url("../img/icon_blog.png");
}

.gnav_sp .secondary .li_access a span:before {
	background-image: url("../img/icon_access.png");
}

.gnav_sp .secondary .li_document a span:before {
	background-image: url("../img/icon_document.png");
}

.gnav_sp .secondary .btn-pill {
	padding: 12px;
	border: 0;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	color: var(--black);
	gap: 8px;
}

.gnav_sp .secondary .btn-pill:hover {
	opacity: 0.8;
}

.gnav_sp .secondary .li_recruit,
.gnav_sp .secondary .li_contact {
	width: 50%;
	margin: 24px 0 0;
	font-size: 16px;
	grid-column: 1 / span 2;
	justify-self: center;
}

.gnav_sp .secondary .li_recruit .btn-pill {
	background: var(--secondary);
	color: var(--white);
}

.gnav_sp .secondary .li_contact .btn-pill {
	background: var(--primary);
	color: var(--white);
}

.gnav_sp .secondary .li_recruit .btn-pill span,
.gnav_sp .secondary .li_contact .btn-pill span {
	position: relative;
}

.gnav_sp .secondary .li_recruit .btn-pill span {
	padding: 0 0 0 18px;
}

.gnav_sp .secondary .li_contact .btn-pill span {
	padding: 0 0 0 24px;
}

.gnav_sp .secondary .li_recruit .btn-pill span:before {
	width: 10px;
	height: 20px;
	margin: auto;
	background: url("../img/icon_recruit.png") no-repeat center / contain;
	position: absolute;
	content: "";
	inset: 0 auto 0 0;
}

.gnav_sp .secondary .li_contact .btn-pill span:before {
	width: 17px;
	height: 12px;
	margin: auto;
	background: url("../img/icon_contact.png") no-repeat center / contain;
	position: absolute;
	content: "";
	inset: 0 auto 0 0;
}

.gnav-footer_sp {
	margin: 40px 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 14px;
	text-align: center;
}

.gnav-footer_sp h1 {
	margin: auto;
}

.gnav-footer_sp h1 a {
	display: block;
}

.gnav-footer_sp h1 img {
	width: 240px;
}

.gnav-footer_sp .address {
	width: 100%;
	margin: 16px 0 0;
}

.gnav-footer_sp .tel {
	width: 220px;
	margin: 16px auto 0;
}

.gnav-footer_sp .contact {
	margin: 24px 0 0;
	padding: 16px 32px 18px;
	border: 0;
	border-radius: 8px;
	background: var(--primary);
	display: flex;
	align-items: center;
	font-size: 18px;
	font-weight: 600;
	color: var(--white);
	transition: 0.25s;
	gap: 8px;
}

.gnav-footer_sp .contact span {
	position: relative;
}

.gnav-footer_sp .contact a span {
	padding: 0 0 0 28px;
}

.gnav-footer_sp .contact a span:before {
	width: 20px;
	height: 15px;
	margin: auto;
	background: url("../img/icon_contact.png") no-repeat center / contain;
	position: absolute;
	content: "";
	inset: 2px auto 0 0;
}

.gnav-footer_sp .copyright {
	width: 100%;
	margin: 40px 0 0;
	opacity: 0.7;
	font-size: 10px;
}

/* ページトップ
------------------------------------------------------ */
.scroll-to-top {
	width: 48px;
	height: 48px;
	cursor: pointer;
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 9;
}

.scroll-to-top a {
	width: 48px;
	height: 48px;
	border-radius: 9999px;
	background-color: var(--primary);
	display: flex;
	justify-content: center;
	align-items: center;
}

.scroll-to-top a img {
	width: 16px;
	display: block;
}

/* フッター
------------------------------------------------------ */
.footer {
	margin: 0;
	padding: 0;
	font-weight: 600;
}

.footer .head {
	padding: 64px 0;
	background-color: var(--white);
}

.footer .head .container {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 24px;
	display: block;
}

.footer .head .box {
	margin: 0 auto;
	padding: 40px 24px;
	border: 6px solid var(--quaternary);
	text-align: center;
}

.footer .head .logo {
	width: 88%;
	margin: 0 auto;
}

.footer .head .logo img {
	height: auto;
}

.footer .head .btn {
	margin: 24px 0 0;
}

.footer .head .btn a {
	width: 100%;
	margin: auto;
	padding: 18px 20px 20px 20px;
	border-radius: 999px;
	background-color: var(--primary);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	font-weight: 600;
	color: var(--white);
	text-decoration: none;
	transition: 0.3s;
}

.footer .head .btn a::before {
	width: 22px;
	height: 17px;
	margin: 2px 8px 0 0;
	background: url(../img/icon_contact.png) no-repeat center top / contain;
	content: "";
	box-sizing: border-box;
}

.footer .head .btn a:hover {
	background-color: var(--btn-hover);
}

.footer .head .tel {
	margin: 24px 0 0;
	font-size: 16px;
	line-height: 1;
}

.footer .head .tel a {
	margin: 0 0 0 4px;
	font-size: 32px;
	font-weight: 500;
	text-decoration: none;
}

.footer .head .tel a:hover {
	opacity: 0.8;
}

.footer .foot {
	margin: 0;
	padding: 64px 0;
	background-color: var(--footer);
}

.footer .container {
	margin: 0;
}

.footer .corporation {
	font-size: 12px;
}

.footer .name {
	font-size: 20px;
}

.footer .address {
	margin: 16px 0 0;
	font-size: 14px;
}

.footer .tel {
	margin: 8px 0 0;
}

.footer .sns-list {
	margin: 40px 0 0;
}

.footer .sns-list li a {
	display: block;
}

.footer .sns-list li img {
	width: 32px;
}

.footer .right {
	margin: 64px 0 0;
	padding: 0;
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
}

.footer .footer_illust {
	width: 240px;
	position: absolute;
	top: -210px;
	right: -20px;
}

.footer .primary {
	padding: 0 0 0 24px;
	background-image: repeating-linear-gradient(180deg, #fcb6bf, #fcb6bf 5px, transparent 5px, transparent 10px);
	background-repeat: repeat-y;
	background-position: left top;
	background-size: 2px 100%;
}

.footer .secondary {
	padding: 0 0 0 24px;
	background-image: repeating-linear-gradient(180deg, #fcb6bf, #fcb6bf 5px, transparent 5px, transparent 10px);
	background-repeat: repeat-y;
	background-position: left top;
	background-size: 2px 100%;
}

.footer .right a {
	padding: 8px 0;
	display: block;
}

.footer .right a:hover {
	color: var(--primary);
}

.footer .copyright {
	margin: 64px 0 0;
	opacity: 0.8;
	font-size: 10px;
}

/*================================================================
# 中面共通スタイル
================================================================ */
/* 中面ページタイトル
------------------------------------------------------ */
.page-title {
	padding: 0;
	background-color: var(--page-title);
	text-align: center;
}

.page-title .wrap {
	position: relative;
}

.page-title .wrap:before {
	width: calc(807px / 4);
	height: calc(237px / 4);
	background: url(../img/page-title_illust01.png) no-repeat center bottom / contain;
	position: absolute;
	content: "";
	bottom: 0;
	left: -40px;
}

.page-title .wrap::after {
	width: calc(756px / 4);
	height: calc(237px / 4);
	background: url(../img/page-title_illust02.png) no-repeat center bottom / contain;
	position: absolute;
	content: "";
	right: -40px;
	bottom: 0;
}

.page-title .title-jp {
	margin: 0;
	padding: 48px 0 56px;
	font-size: 24px;
	font-weight: 500;
}

/* パンくず
------------------------------------------------------ */
.bread {
	width: 100%;
	margin: 0;
	padding: 10px 15px 0;
}

.bread p {
	font-size: 12px;
}

/* 背景
------------------------------------------------------ */
.contents-wrap>div:first-child {
	padding: 32px 0 64px;
}

.bg01,
.bg02,
.bg03 {
	padding: 64px 0;
	position: relative;
}

.bg02 {
	background: var(--bg02);
}

.bg03 {
	background: var(--bg03);
}

/* レイアウト
------------------------------------------------------ */
.container {
	margin: 24px 0 0;
	font-size: 15px;
}

.container.top {
	margin: 0;
}

.container .img-area {
	margin: 24px 0 0;
}

.container .img-area img+img {
	margin: 16px 0 0;
}

.container .text-area {
	margin: 24px 0 0;
}

.container .text-area p+p {
	margin: 16px 0 0;
}

.container .img {
	margin: 16px 0 0;
}

/* ギャラリー
------------------------------------------------------ */
.img-row {
	margin: 24px 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.img-row>img+img,
.img-row figure+figure {
	margin: 16px 0 0;
}

.img-row.col-2>img,
.img-row.col-2 figure {
	text-align: center;
}

.img-row.col-3>img,
.img-row.col-3 figure {
	text-align: center;
}

.img-row.col-2_sp img {
	width: calc(100% / 2 - 16px);
}

.img-row.col-3_sp img {
	width: calc(100% / 3 - 16px);
}

.img-row img {
	width: 100%;
}

.img-row figure figcaption {
	margin: 4px 0 0;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
}

.table01 .img-row {
	margin: 16px 0 0;
}

/* カード
------------------------------------------------------ */
.card01 {
	width: 100%;
	margin: 40px auto;
	padding: 0;
}

.card01 .card-item {
	margin: 0 0 28px;
	padding: 0;
	border-radius: 16px;
	background: var(--bg04);
}

.card01 .card-inner {
	margin: 0;
	padding: 36px;
}

.card01 .card-title {
	margin: 0;
	padding: 0;
	position: relative;
	display: inline-block;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.02em;
}

.card01 .card-title .dot {
	width: 8px;
	height: 8px;
	margin: 0 10px 0 0;
	padding: 0;
	border-radius: 9999px;
	background: var(--primary);
	display: inline-block;
	transform: translateY(-4px);
}

.card01 .card-body {
	margin: 0;
	padding: 0;
	letter-spacing: 0;
}

.card01 .info {
	margin: 24px 0 0;
	padding: 0;
	display: flex;
}

.card01 .info:nth-child(n + 2) {
	margin: 8px 0 0;
}

.card01 .info dt {
	margin: 0;
	padding: 0;
	flex: 0 0 auto;
	font-size: 16px;
	font-weight: 500;
}

.card01 .info dd {
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: 500;
}

.card01 .note {
	margin: 6px 0 0;
	font-size: 12px;
}

/* 見出し
------------------------------------------------------ */
.heading01 {
	position: relative;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
}

.heading01.center {
	text-align: center;
}

.heading01 span {
	padding: 0 0 8px;
	border-bottom: 4px dotted var(--primary);
	position: relative;
	display: inline-block;
	line-height: 1.3;
	letter-spacing: 0;
}

.heading01 span:before,
.heading01 span::after {
	width: calc(129px / 3);
	height: calc(107px / 3);
	background: url(../img/heading01_illust01.png) no-repeat center top / contain;
	position: absolute;
	content: "";
	top: -10px;
	left: -56px;
}

.bg02 .heading01 span:before,
.bg02 .heading01 span::after {
	background: url(../img/heading01_illust02.png) no-repeat center top / contain;
}

.bg03 .heading01 span:before,
.bg03 .heading01 span::after {
	background: url(../img/heading01_illust03.png) no-repeat center top / contain;
}

.heading01 span::after {
	right: -56px;
	left: auto;
	transform: scale(-1, 1);
}

.heading01 small {
	font-size: 24px;
	letter-spacing: 0;
}

.heading02 {
	margin: 32px 0 0;
	padding: 8px 16px;
	background-color: var(--primary);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--white);
}

/* ボタン
------------------------------------------------------ */
.btn01 {
	margin: 24px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.btn01 a,
.btn01 input {
	min-width: 200px;
	margin: 0 auto;
	padding: 8px 24px 10px;
	cursor: pointer;
	border-radius: 8px;
	background: var(--btn);
	position: relative;
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: var(--white);
	text-align: center;
	text-decoration: none;
	letter-spacing: 0.1em;
	-webkit-appearance: none;
	transition: 0.3s;
}

.btn01 a:hover,
.btn01 input:hover {
	background: var(--btn-hover);
}

/* テーブル
------------------------------------------------------ */
.table01 {
	width: 100%;
	margin: 32px auto 0;
	table-layout: fixed;
	border-top: 1px solid var(--table);
	border-right: 1px solid var(--table);
	border-bottom: 1px solid var(--table);
	letter-spacing: 0;
}

.table01 tr {
	display: flex;
}

.table01 th {
	width: 22%;
	padding: 12px 11px;
	border-bottom: 1px solid var(--white);
	background: var(--table);
	flex: 0 0 auto;
	font-size: 13px;
	font-weight: 500;
	text-align: left;
	vertical-align: top;
}

.table01 thead th {
	padding: 12px;
	border-radius: 20px 20px 0 0;
	background: var(--table);
	position: relative;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
	vertical-align: top;
}

.table01 thead tr th:first-child {
	width: 22%;
}

.table01 thead tr th:not(:first-child) {
	flex: 1;
}

.table01 thead th:first-child {
	background-color: transparent;
}

.table01 thead th:not(:first-child) {
	width: auto;
}

.table01 thead th:last-child::before {
	width: 1px;
	height: 80%;
	background-color: var(--white);
	position: absolute;
	content: "";
	bottom: 0;
	left: -1px;
}

.table01 td {
	padding: 12px;
	border-bottom: 1px solid var(--table);
	border-left: 1px solid var(--table);
	background: var(--white);
	flex: 1;
	font-size: 13px;
	vertical-align: top;
	white-space: normal;
	word-wrap: break-word;
	overflow-wrap: anywhere;
}

.table01 tr:last-child th,
.table01 tr:last-child td {
	border-bottom: 0;
}

.table01 td .img-area {
	margin: 0;
}

.table01 td .img-area img {
	width: 100%;
	margin: 0;
}

.table01 td .img-row>img+img,
.table01 td .img-row figure+figure {
	margin: 8px 0 0;
}

.table01 td.center {
	text-align: center;
}

.table01 td .title {
	padding: 0 0 8px;
	border-bottom: 2px dotted var(--border01);
	font-size: 14px;
	text-align: center;
}

.table01 td .title02 {
	margin: 8px 0 0;
}

.table01 td .text {
	margin: 8px 0 0;
}

.table01 td .text.top {
	margin: 0;
}

.table01 td p+p {
	margin: 8px 0 0;
}

.table01 td .note {
	margin: 4px 0 0;
	display: block;
	font-size: 10px;
	line-height: 1.4;
}

.table01 td .info {
	margin: 16px 0 0;
	font-size: 14px;
	font-weight: 500;
}

.table01 td a:not([href^="tel:"]) {
	font-weight: 500;
	color: var(--black);
	text-decoration: underline;
}

.table01 td dl {
	margin: 8px 0 0;
}

.table01 td dl.top {
	margin: 0;
}

.table01 td .btn01 a {
	text-decoration: none;
}

/* リスト
------------------------------------------------------ */
.list01 {
	margin: 16px 0 0;
	list-style: none;
}

.list01.top {
	margin: 0;
}

.list01 li {
	margin: 0 0 0 1em;
	font-size: 20px;
	font-weight: 600;
	text-indent: -1em;
}

.list01 li:nth-child(n + 2) {
	margin: 24px 0 0 1em;
}

.list01 .text {
	margin: 8px 0 16px;
	font-size: 16px;
	font-weight: 400;
	text-indent: 0;
}

.ul-list01 {
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.ul-list01.top {
	margin: 0;
}

.ul-list01 li {
	padding: 0 0 0 16px;
	position: relative;
	font-size: 16px;
	font-weight: 500;
	text-indent: 0;
}

.ul-list01 li:nth-child(n + 2) {
	margin: 8px 0 0;
}

.ul-list01 li::before {
	width: 6px;
	height: 6px;
	border-radius: 9999px;
	background-color: var(--primary);
	position: absolute;
	content: "";
	top: 10px;
	left: 2px;
}

.ul-list01 li .text {
	margin: 8px 0 0;
	font-size: 16px;
	font-weight: 400;
}

.ul-list02 {
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.ul-list02.top {
	margin: 0;
}

.ul-list02 li {
	padding: 0 0 0 8px;
	position: relative;
	text-indent: 0;
}

.ul-list02 li:nth-child(n + 2) {
	margin: 5px 0 0;
}

.ul-list02 li::before {
	width: 4px;
	height: 4px;
	border-radius: 9999px;
	background-color: var(--black);
	position: absolute;
	content: "";
	top: 9px;
	left: 0;
}

.ul-list02 li .text {
	margin: 8px 0 0;
	font-size: 16px;
	font-weight: 400;
}

.ol-list01 {
	margin: 24px 0 0;
	padding: 0;
	list-style-type: none;
	counter-reset: item;
}

.ol-list01.top {
	margin: 0;
}

.ol-list01 li {
	padding: 0 0 0 20px;
	position: relative;
	font-size: 14px;
	font-weight: 600;
}

.ol-list01 li:before {
	width: 16px;
	height: 16px;
	counter-increment: item;
	position: absolute;
	content: counter(item);
	top: 3px;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	font-weight: bold;
}

.ol-list01 li:after {
	width: 16px;
	height: 16px;
	border: 1px solid var(--black);
	border-radius: 9999px;
	position: absolute;
	content: "";
	top: 3px;
	left: 0;
}

.ol-list01 li+li {
	margin: 8px 0 0;
}

.ol-list01 li .text {
	margin: 4px 0 0 0;
	font-weight: 400;
}

/* テキスト
------------------------------------------------------ */
.lead01 {
	margin: 24px 0 0;
	font-size: 15px;
	line-height: 2;
}

.lead01 p+p {
	margin: 16px 0 0;
}

.lead01.center {
	text-align: center;
}

.text01 {
	margin: 24px 0 0;
	font-size: 15px;
	line-height: 2;
}

.text01.top {
	margin: 0;
}

.text01.center {
	text-align: center;
}

.text01.right {
	text-align: right;
}

.text01 p+p {
	margin: 16px 0 0;
}

.text-link {
	font-weight: 500;
	color: var(--black);
	text-decoration: underline;
}

.note {
	margin: 8px 0 0;
	font-size: 12px;
}

.info {
	color: var(--primary);
}

/* セクション・ユニット
------------------------------------------------------ */
.section+.section {
	margin: 64px 0 0;
}

.unit+.unit {
	margin: 40px 0 0;
}

/* アコーディオン
------------------------------------------------------ */
.accordion-header {
	width: 200px;
	height: 48px;
	margin: 40px auto 0;
	padding: 0 0 2px;
	cursor: pointer;
	user-select: none;
	border-radius: 8px;
	background: var(--primary);
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	color: var(--white);
	text-align: center;
	-webkit-appearance: none;
}

.accordion-content {
	max-height: 0;
	margin: 40px 0 -40px;
	padding: 0 10px;
	overflow: hidden;
	transition: 0.3s ease-out;
}

.accordion-content.open {
	max-height: 1000px;
	margin: 40px 0 0;
}

.accordion-content .section:first-child,
.accordion-content .section:first-child .heading02 {
	margin: 0;
}

/*================================================================
# トップページ
================================================================ */
/* mv
------------------------------------------------------ */
.mv {
	margin: 0;
	padding: 0;
	position: relative;
}

.mv::before {
	width: 50%;
	height: 35%;
	background-color: var(--bg04);
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	z-index: -1;
}

.mv .mv-container {
	display: flex;
	justify-content: flex-end;
	align-items: stretch;
	gap: 40px;
}

.mv .mv_illust {
	width: 25%;
	height: 65%;
	position: absolute;
	top: 0;
	right: calc(75% + 80px);
}

.mv .mv_illust img {
	min-width: 307px;
	height: 100%;
	object-fit: contain;
}

.mv .splide {
	width: 88%;
}

.js-fullscreen-fade {
	width: 100%;
	margin: 0;
	padding: 0;
}

.js-fullscreen-fade .splide__track {
	margin: 0;
	padding: 0;
}

.js-fullscreen-fade .splide__slide {
	margin: 0;
	padding: 0;
}

.js-fullscreen-fade .splide__slide img {
	width: 100%;
	height: 40vh;
	border-radius: 80px 0 0 0;
	display: block;
	object-fit: cover;
	object-position: center center;
}

.js-fullscreen-fade .splide__pagination {
	display: none;
}

/* お知らせ
------------------------------------------------------ */
.top-page .news-area {
	margin: 0;
	position: relative;
}

.top-page .news-area:before {
	width: 50%;
	height: 100%;
	background-color: var(--bg04);
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	z-index: -1;
}

.top-page .news-area .wrap {
	padding: 40px 24px 40px 0;
	border-radius: 0 0 40px 0;
	background-color: var(--bg04);
}

.top-page .news-area .news-box {
	max-width: 696px;
	margin: 0 auto;
	padding: 0;
}

.top-page .news-area .news-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-page .news-area .news-title h1 {
	font-size: 22px;
	font-weight: 600;
	line-height: 1;
}

.top-page .news-area .news-list {
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.top-page .news-area .news-item {
	margin: 0;
	padding: 0;
	background-image: repeating-linear-gradient(90deg, #fcb6bf, #fcb6bf 3px, transparent 3px, transparent 7px);
	background-repeat: repeat-x;
	background-position: left bottom;
	background-size: 100% 2px;
}

.top-page .news-area .news-link {
	padding: 16px 0;
	display: flex;
	align-items: flex-start;
	text-decoration: none;
}

.top-page .news-area .news-link:hover {
	color: var(--btn-hover);
}

.top-page .news-area .news-item .day {
	width: 80px;
	flex-shrink: 0;
	font-size: 12px;
}

.top-page .news-area .news-item .text {
	font-size: 14px;
	line-height: 1.6;
}

.top-page .news-area .btn01 {
	margin: 0;
}

/* ご紹介
------------------------------------------------------ */
.top-page .contents-wrap>div.introduction {
	padding: 40px 0;
}

.top-page .introduction .top_illust01 {
	margin: auto;
}

.top-page .introduction-jp {
	margin: 16px 0 0;
	font-size: 24px;
	text-align: center;
}

.top-page .introduction .introduction-list {
	margin: 32px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 40px;
}

.top-page .introduction .introduction-list .link {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	transition: 0.3s;
}

.top-page .introduction .introduction-list .link__img {
	width: 100%;
	height: 100%;
	border-radius: 16px;
	overflow: hidden;
}

.top-page .introduction .introduction-list .link__img img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	display: block;
	transition: 0.5s;
}

.top-page .introduction a:hover .link__img img {
	transform: scale(1.05);
}

.top-page .introduction .link__btn {
	min-width: 200px;
	margin: 16px auto 0;
	padding: 8px 24px 10px;
	cursor: pointer;
	border-radius: 8px;
	background: var(--btn);
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	color: var(--white);
	text-align: center;
	text-decoration: none;
	letter-spacing: 0.1em;
	-webkit-appearance: none;
	transition: 0.3s;
}

.top-page .introduction a:hover .link__btn {
	background: var(--btn-hover);
}

/* バナー
------------------------------------------------------ */
.top-page .ban {
	margin: 0;
	padding: 40px 0;
	background-color: var(--bg02);
}

.contents-wrap>div.ban {
	padding: 64px 0;
}

.top-page .ban-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.top-page .ban-list .link {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 24px 20px;
	border-radius: 9999px;
	background: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-size: 16px;
	font-weight: 600;
	color: var(--black);
	text-align: center;
	transition: 0.3s ease;
	aspect-ratio: 1/1;
	gap: 12px;
}

.top-page .ban-list .text {
	font-size: 18px;
}

.top-page .ban-list .icon img {
	width: 36px;
	height: 36px;
	object-fit: contain;
}

.top-page .ban-list .link:hover {
	box-shadow: 0 2px 16px #cde8d3;
	color: var(--primary);
	transform: translateY(-2px);
}

/*================================================================
# 園の紹介
================================================================ */

/*================================================================
# 園の特色
================================================================ */
.concept-page .grand-design {
	position: relative;
}

.concept-page .grand-design:before {
	width: 100%;
	height: 34.5%;
	background-color: #f4d9b3;
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	z-index: 0;
}

.concept-page .grand-design::after {
	width: 100%;
	height: 100%;
	margin: auto;
	background: url(../img/concept_illust04.png) no-repeat center bottom / auto 84%;
	position: absolute;
	content: '';
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}

.concept-page .grand-design .intro .intro-title {
	width: 80%;
	margin: 24px auto;
	padding: 8px 0;
	background-color: var(--primary);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
	line-height: 1.4;
	color: var(--white);
	text-align: center;
}

.concept-page .grand-design .intro .intro-title:before,
.concept-page .grand-design .intro .intro-title:after {
	width: calc(176px / 2.5);
	height: calc(205px / 2.5);
	background: url(../img/concept_illust01.png) no-repeat center top / contain;
	position: absolute;
	content: '';
	top: 27px;
	left: -60px;
}

.concept-page .grand-design .intro .intro-title::after {
	right: -60px;
	left: auto;
	transform: scale(-1, 1);
}

.concept-page .grand-design .intro .intro-title span {
	font-size: 18px;
}

.concept-page .grand-design .intro .intro-title strong {
	font-size: 22px;
	font-weight: 500;
}

.concept-page .grand-design .intro .intro-text {
	line-height: 1.8;
	text-align: center;
}

.concept-page .grand-design .intro .goal-list {
	margin: 32px auto 0;
	display: flex;
	justify-content: center;
	gap: 16px;
}

.concept-page .grand-design .intro .goal-list li {
	width: 100%;
	padding: 12px;
	border: 3px solid var(--primary);
	border-radius: 8px;
	background-color: var(--white);
	font-size: 16px;
	font-weight: 500;
	text-align: center;
}

.concept-page .grand-design .edu-goal {
	margin: 160px 0 0;
	position: relative;
	z-index: 2;
}

.concept-page .grand-design .edu-goal .wrap {
	position: relative;
}

.concept-page .grand-design .edu-goal .concept_illust02 {
	width: 42vw;
	max-width: 354px;
	position: absolute;
	top: -110px;
	left: 0px;
}

.concept-page .grand-design .edu-goal .concept_illust03 {
	width: 42vw;
	max-width: 336px;
	position: absolute;
	top: -110px;
	right: 0px;
}

.concept-page .grand-design .edu-goal .edu-goal__title {
	margin: auto;
	padding: 16px;
	border-radius: 8px;
	background-color: var(--quaternary);
	font-size: 18px;
	font-weight: 500;
	text-align: center;
}

.concept-page .grand-design .edu-goal .edu-goal__grid {
	width: 88%;
	margin: 24px auto 0;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 24px;
}

.concept-page .grand-design .edu-goal .edu-card {
	padding: 24px;
	border: 4px solid var(--quaternary);
	border-radius: 16px;
	background-color: var(--white);
}

.concept-page .grand-design .edu-goal .edu-card__heading {
	font-size: 18px;
	font-weight: 700;
	text-align: center;
}

.concept-page .grand-design .edu-goal .edu-card__heading span {
	padding: 0 0 4px;
	border-bottom: 3px dotted var(--primary);
}

.concept-page .grand-design .edu-goal .edu-card__text {
	margin: 16px 0 0;
	font-size: 16px;
	text-align: center;
}

.concept-page .grand-design .edu-policy {
	margin: 78px 0 0;
	position: relative;
	z-index: 2;
}

.concept-page .grand-design .edu-policy__title {
	margin: auto;
	padding: 16px;
	border-radius: 8px;
	background-color: var(--primary);
	font-size: 18px;
	font-weight: 500;
	color: var(--white);
	text-align: center;
}

.concept-page .grand-design .edu-policy__box {
	margin: 14px auto 0;
	padding: 24px;
	border: 4px solid var(--primary);
	border-radius: 16px;
	background-color: var(--white);
	font-size: 16px;
}

.concept-page .grand-design .edu-policy__heading {
	font-size: 22px;
	font-weight: 700;
	text-align: center;
}

.concept-page .grand-design .edu-policy__heading span {
	padding: 0 0 6px;
	border-bottom: 3px dotted var(--tertiary);
}

.concept-page .grand-design .edu-policy__content {
	margin: 8px 0 0;
}

.concept-page .grand-design .edu-policy__content ul {
	margin: 0 0 0 -40px;
	display: flex;
	flex-wrap: wrap;
}

.concept-page .grand-design .edu-policy__content ul li {
	margin: 6px 0 0 40px;
}

.concept-page .grand-design .edu-policy__content .ul-list02 li::before {
	top: 14px;
}

.concept-page .grand-design .edu-policy__text {
	margin: 8px 0 0;
	line-height: 2;
	text-align: center;
}

.concept-page .grand-design .concept .wrap {
	max-width: 1184px;
	position: relative;
	z-index: 2;
}

.concept-page .grand-design .concept-target {
	margin: 110px auto 0;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 16px;
}

.concept-page .grand-design .concept-target .target-item {
	padding: 24px;
	border: 4px solid var(--quinary);
	border-radius: 16px;
	background-color: var(--white);
	display: flex;
	align-items: center;
	flex-direction: column;
}

.concept-page .grand-design .concept-target .target-item__heading {
	font-size: 22px;
	font-weight: 700;
	text-align: center;
}

.concept-page .grand-design .concept-target .target-item__heading span {
	padding: 0 0 6px;
	border-bottom: 3px dotted var(--primary);
}

.concept-page .grand-design .concept-target .ul-list02 {
	margin: 24px auto 0;
	display: inline-block;
	font-size: 16px;
}

.concept-page .grand-design .concept-target .ul-list02 li::before {
	top: 14px;
}

.concept-page .grand-design .concept-target .target-item__text {
	margin: 24px 0 0;
	font-size: 18px;
	line-height: 1.8;
	text-align: center;
}

.concept-page .grand-design .philosophy {
	margin: 70px 0 0;
	position: relative;
	z-index: 2;
}

.concept-page .grand-design .philosophy .wrap {
	max-width: 1184px;
}

.concept-page .grand-design .philosophy .philosophy-box {
	padding: 24px;
	border: 4px solid var(--senary);
	border-radius: 16px;
	background-color: var(--white);
	text-align: center;
}

.concept-page .grand-design .philosophy .philosophy-title {
	font-size: 18px;
	font-weight: 700;
}

.concept-page .grand-design .philosophy .philosophy-title span {
	padding: 0 0 6px;
	border-bottom: 3px dotted var(--black);
}

.concept-page .grand-design .philosophy .philosophy-catch {
	margin: 10px 0 0;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.7;
}

.concept-page .grand-design .philosophy .philosophy-text {
	margin: 8px 0 0;
	line-height: 2;
}

.concept-page .table01 .img-row.col-2 .concept_illust {
	width: 100%;
	margin: 16px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
}


.concept-page .table01 .img-row.col-2 .concept_illust img {
	width: 64%;
}

.concept-page .alumni-voices .ban {
	margin: 32px 0 0;
}

.concept-page .alumni-voices .ban a {
	display: block;
}

.concept-page .alumni-voices .ban a:hover {
	opacity: 0.7;
}

.concept-page .staff-voices {
	padding: 64px 0 0;
}

.concept-page .teacher-message {
	margin: 32px 0 0;
}

.concept-page .teacher-message__item {
	margin: 24px 0 0;
	padding: 24px 32px;
	border-radius: 16px;
	background-color: var(--bg02);
}

.concept-page .teacher-message__name {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary);
}

.concept-page .teacher-message .text01 {
	margin: 8px 0 0;
}

/*================================================================
# 年間行事
================================================================ */
.event-page .contents-wrap .bg01 {
	padding: 40px 0 0;
}

.event-page .event-year {
	margin: 64px 0 0;
}

.event-page .event-year__item {
	margin: 64px 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.event-page .event-year__month {
	width: 100px;
	height: 100px;
	border-radius: 9999px;
	background-color: var(--primary);
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 auto;
	font-weight: 600;
	color: var(--white);
}

.event-page .event-year__month-num {
	font-size: 40px;
	line-height: 1.2;
}

.event-page .event-year__month-unit {
	margin: 16px 0 0;
	font-size: 20px;
}

.event-page .event-year__list {
	position: relative;
}

.event-page .event-year__list ul li {
	padding: 0 0 0 12px;
	position: relative;
	font-size: 16px;
	text-indent: 0;
}

.event-page .event-year__list ul li:nth-child(n + 2) {
	margin: 5px 0 0;
}

.event-page .event-year__list ul li::before {
	width: 6px;
	height: 6px;
	border-radius: 9999px;
	background-color: var(--primary);
	position: absolute;
	content: "";
	top: 13px;
	left: 0;
}

.event-page .event-year__illust {
	position: absolute;
	top: 30px;
	right: -150px;
}

.event-page .event-year__images {
	margin: 16px 0 0;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 16px;
}

.event-page .event-year__img img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
}

.event-page .june .event-year__month,
.event-page .july .event-year__month,
.event-page .august .event-year__month {
	background-color: var(--quaternary);
}

.event-page .june ul li::before,
.event-page .july ul li::before,
.event-page .august ul li::before {
	background-color: var(--quaternary);
}

.event-page .september .event-year__month,
.event-page .october .event-year__month,
.event-page .november .event-year__month {
	background-color: var(--septenary);
}

.event-page .september ul li::before,
.event-page .october ul li::before,
.event-page .november ul li::before {
	background-color: var(--septenary);
}

.event-page .december .event-year__month,
.event-page .january .event-year__month,
.event-page .february .event-year__month {
	background-color: var(--quinary);
}

.event-page .december ul li::before,
.event-page .january ul li::before,
.event-page .february ul li::before {
	background-color: var(--quinary);
}

/*================================================================
# 一日の流れ
================================================================ */
.schedule-page .contents-wrap .schedule {
	padding: 32px 0 0;
}

.schedule-page h2 {
	margin: 40px 0 0;
	font-size: 24px;
	color: var(--primary);
	text-align: center;
}

.schedule-page .text01 span {
	color: var(--primary);
}

.schedule-table {
	width: 100%;
	margin: 24px 0 0;
	border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
	padding: 8px;
	border: 1px solid var(--table);
	font-size: 12px;
	vertical-align: top;
}

.schedule-table thead th {
	background-color: var(--table);
	text-align: center;
}

.schedule-table thead tr th:not(:last-child) {
	border-right: 1px solid var(--white);
}

.schedule-table tbody th {
	width: 80px;
	text-align: center;
	white-space: nowrap;
}

.schedule-text.center {
	text-align: center;
}

.schedule-img {
	margin: 16px 0 0;
}

.schedule-img img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
}

.schedule-illust {
	margin: 40px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

/*================================================================
# 入園案内・子育て支援
================================================================ */
.guide-page .admission-procedure {
	padding: 64px 0 0;
}

/*================================================================
# お知らせ
================================================================ */
.news-page .contents-wrap .news,
.blog-page .contents-wrap .blog {
	margin: 0 auto;
	padding: 32px 0 0;
	position: relative;
}

.news-detail-page .contents-wrap .post,
.blog-detail-page .contents-wrap .post {
	padding: 32px 0 0;
}

.news-page .news .news-list,
.blog-page .blog .blog-list {
	margin: 40px 0 0;
	padding: 0;
}

.news-page .news .news-list .list-item,
.blog-page .blog .blog-list .list-item {
	margin: 0;
	background-image: repeating-linear-gradient(90deg, #fcb6bf, #fcb6bf 5px, transparent 5px, transparent 10px);
	background-repeat: repeat-x;
	background-position: left bottom;
	background-size: 100% 2px;
}

.news-page .news .news-list .link,
.blog-page .blog .blog-list .link {
	width: 100%;
	padding: 24px 0;
	display: flex;
	flex-wrap: wrap;
}

.news-page .news .news-list .day,
.blog-page .blog .blog-list .day {
	width: 100%;
	margin: 0;
	font-size: 14px;
	font-weight: 500;
}

.news-page .news .news-list .text,
.blog-page .blog .blog-list .text {
	width: 100%;
	margin: 8px 0 0;
	font-size: 14px;
	font-weight: 500;
}

/*================================================================
# お知らせ - 詳細
================================================================ */
.post {
	margin: 0 auto;
	position: relative;
}

.post .post__title {
	margin: 0;
	padding: 16px 24px;
	border-left: 4px solid var(--primary);
	background-color: var(--gray01);
	font-size: 20px;
	font-weight: 600;
}

.post .post__text {
	margin: 32px 0 0;
	line-height: 2;
}

.post .btn01 {
	margin: 40px 0 0;
}

.wp-pagenavi {
	margin: 40px 0 0;
}

/*================================================================
# 求人情報
================================================================ */
.recruit-page .contents-wrap .introduction {
	padding: 32px 0 0;
}

.recruit-page .introduction .introduction-list {
	margin: 32px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 40px;
}

.recruit-page .introduction .introduction-list .link {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	transition: 0.3s;
}

.recruit-page .introduction .introduction-list .link__img {
	width: 100%;
	height: 100%;
	border-radius: 16px;
	overflow: hidden;
}

.recruit-page .introduction .introduction-list .link__img img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	display: block;
	transition: 0.5s;
}

.recruit-page .introduction a:hover .link__img img {
	transform: scale(1.05);
}

.recruit-page .introduction .link__btn {
	min-width: 200px;
	margin: 16px auto 0;
	padding: 8px 24px 10px;
	cursor: pointer;
	border-radius: 8px;
	background: var(--btn);
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	color: var(--white);
	text-align: center;
	text-decoration: none;
	letter-spacing: 0.1em;
	-webkit-appearance: none;
	transition: 0.3s;
}

.recruit-page .introduction a:hover .link__btn {
	background: var(--btn-hover);
}

.recruit-page .contents-wrap .kindergarten-teacher {
	padding: 32px 0 0;
}

.recruit-page .line {
	display: inline-block;
}

.recruit-page .principal-message h2 {
	margin: 24px 0 0;
	font-size: 20px;
	color: var(--primary);
	text-align: center;
}

.recruit-page .teacher-message {
	margin: 32px 0 0;
}

.recruit-page .teacher-message__item {
	margin: 24px 0 0;
	padding: 24px 32px;
	border-radius: 16px;
	background-color: var(--white);
}

.recruit-page .teacher-message__name {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary);
}

.recruit-page .teacher-message .text01 {
	margin: 8px 0 0;
}

/*================================================================
# 交通案内
================================================================ */
.gmap {
	margin: 24px 0 0;
	padding-bottom: 120%;
	border: 10px solid var(--primary);
}

.access-steps {
	margin: 40px 0 0;
	position: relative;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 40px;
}

.access-step__num {
	width: 48px;
	height: 48px;
	border-radius: 9999px;
	background-color: var(--primary);
	color: var(--white);
	font-size: 24px;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
}

.access-step__img {
	margin: 0;
}

.access-step__text {
	margin: 16px 0 0;
	line-height: 1.8;
}

.access-step__illust {
	display: none;
}

/*================================================================
# お問い合わせ
================================================================ */
.contact-table {
	max-width: 559px;
	margin: 0 auto 30px;
}

.contact-table p {
	margin: 0 0 20px;
	font-size: 14px;
}

.contact-table .table01 th {
	position: relative;
}

.contact-table .table01 td ul {
	display: flex;
	flex-wrap: wrap;
}

.contact-table .icon_h {
	padding: 4px 8px;
	border-radius: 9999px;
	background: var(--primary);
	display: inline-block;
	font-size: 72%;
	line-height: 1;
	color: var(--white);
	align-self: start;
}

.contact-page .box_privacy {
	margin: 0 auto;
}

.contact-page .box_privacy p {
	margin: 0 0 16px;
	font-size: 108%;
}

.contact-page .section-privacy {
	margin: 64px auto 0;
}

.contact-page .section-privacy .heading02 {
	margin: 0;
	padding: 16px 24px;
	border-left: 4px solid var(--primary);
	background-color: var(--gray01);
	font-size: 18px;
	font-weight: 600;
	color: var(--black);
}

.contact-page .section-privacy .privacy-box {
	margin: 24px 0 0;
	font-size: 12px;
}

.contact-page .section-privacy .privacy-box .title {
	margin: 24px 0 0;
	font-weight: 600;
}

.contact-page .section-privacy .privacy-box p {
	margin: 4px 0 0;
}

/*-----------
form
------------*/
::placeholder {
	color: var(--gray);
}

.contact-table select,
.contact-table input,
.contact-table textarea,
.contact-table button,
.contact-table option {
	font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
}

.contact-table input,
.contact-table textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid var(--gray);
	border-radius: 8px;
	background: #f1f1f1;
	box-sizing: border-box;
	-webkit-appearance: none;
	transition: all 0.5s;
}

.contact-table input:focus,
.contact-table textarea:focus {
	border: 1px solid var(--gray);
	outline: 0;
	background: #f1f1f1;
}

.contact-table input:focus::placeholder,
.contact-table textarea:focus::placeholder {
	color: var(--gray);
}

.anniversary-table select,
.anniversary-table input,
.anniversary-table textarea,
.anniversary-table button,
.anniversary-table option {
	font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
}

.anniversary-table input,
.anniversary-table textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid var(--gray);
	border-radius: 8px;
	background: #f1f1f1;
	box-sizing: border-box;
	-webkit-appearance: none;
	transition: all 0.5s;
}

.anniversary-table input:focus,
.anniversary-table textarea:focus {
	border: 1px solid var(--gray);
	outline: 0;
	background: #f1f1f1;
}

.anniversary-table input:focus::placeholder,
.anniversary-table textarea:focus::placeholder {
	color: var(--gray);
}

.select-wrap {
	width: 100%;
	border: 1px solid var(--gray);
	border-radius: 8px;
	background: #f1f1f1;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
	-webkit-appearance: none;
	transition: all 0.5s;
}

.select-wrap::before {
	width: 6px;
	height: 6px;
	margin-top: -4px;
	border: 0;
	border-right: solid 2px #666;
	border-bottom: solid 2px #666;
	position: absolute;
	content: "";
	top: 50%;
	right: 15px;
	transform: rotate(45deg);
}

.select-wrap select {
	width: 100%;
	padding: 12px;
	cursor: pointer;
	border: none;
	outline: none;
	background: transparent;
	box-shadow: none;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	-webkit-appearance: none;
	appearance: none;
}

.select-wrap select::-ms-expand {
	display: none;
}

/* チェックボックス */
input[type="checkbox"] {
	display: none;
}

.checkbox {
	width: auto;
	padding: 0.5rem 3rem;
	cursor: pointer;
	position: relative;
	display: inline-block;
	box-sizing: border-box;
}

.checkbox::before {
	width: 1.6rem;
	height: 1.6rem;
	margin-top: -0.8rem;
	border: 1px solid #ccc;
	border-radius: 0.3rem;
	background: #fff;
	position: absolute;
	content: "";
	top: 50%;
	left: 0.5rem;
	display: block;
}

.checkbox::after {
	width: 0.9rem;
	height: 2rem;
	margin-top: -1.6rem;
	opacity: 0;
	border-right: 0.4rem solid var(--blue);
	border-bottom: 0.4rem solid var(--blue);
	position: absolute;
	content: "";
	top: 50%;
	left: 1rem;
	display: block;
	transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
	transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(0.7, 0.7, 1);
}

input[type="checkbox"]:checked+.checkbox::before {
	border-color: #666;
}

input[type="checkbox"]:checked+.checkbox::after {
	opacity: 1;
	transform: rotate(45deg) scale3d(1, 1, 1);
}

/* ラジオボタン */
input[type="radio"] {
	display: none;
}

.radio-btn {
	width: auto;
	padding: 5px 30px;
	cursor: pointer;
	position: relative;
	display: inline-block;
	box-sizing: border-box;
}

.radio-btn::before {
	width: 16px;
	height: 16px;
	margin-top: -8px;
	border: 1px solid #ccc;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	content: "";
	top: 50%;
	left: 5px;
	display: block;
}

.radio-btn::after {
	width: 10px;
	height: 10px;
	margin-top: -4px;
	opacity: 0;
	border-radius: 50%;
	background: var(--black);
	position: absolute;
	content: "";
	top: calc(50% - 1px);
	left: 8px;
	display: block;
	transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
	transform: scale3d(0.3, 0.3, 1);
}

input[type="radio"]:checked+.radio-btn::before {
	border-color: #666;
}

input[type="radio"]:checked+.radio-btn::after {
	opacity: 1;
	transform: scale3d(1, 1, 1);
}

.kojin-checkbox {
	margin-top: 20px;
	font-weight: bold;
	text-align: center;
}

.kojin-checkbox label {
	padding: 0.5rem 4.4rem 0.5rem 3rem;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}

.kojin-checkbox input {
	margin: 0 10px 0 0;
}

.submit-btn {
	width: 100%;
	margin: 40px auto 0;
}

.submit-btn input {
	width: 80%;
	height: 64px;
	margin: auto;
	padding: 0 0 4px;
	border-radius: 9999px;
	background: var(--primary);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	font-weight: 600;
	color: var(--white);
	text-align: center;
	text-decoration: none;
	box-sizing: border-box;
	-webkit-appearance: none;
	transition: all 0.3s ease;
}