@charset "UTF-8";
:root {
	--color_body_bg: #fff;
	--color_text: #333;
	--color_link: #29B7B1;
	--color_border: #DBD7CA;
	--color_primary: #29B7B1;
	--color_secondary: #FF9774;
	--color_tertiary: #FAF8F2;
	--font_base: "Shippori Mincho B1",serif;
	--font_jp: "Noto Sans JP",sans-serif;
}

/*-----------------------------------------------------------
1-1. Reset
-----------------------------------------------------------*/
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	font-size: 100%;
}

body {
	margin: 0;
	padding: 0;
}

div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, img, ins, kbd, q, samp, sub, sup, var, b, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, mark, audio, video, a {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
	font-size: 100%;
	font: inherit;
}

span, small, em, time, i {
	font-style: normal;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}

a {
	border: medium;
}

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

a[href^=tel] {
	cursor: default;
}

a:-webkit-any-link:focus-visible {
	outline-offset: 1px;
}

:focus-visible {
	outline: -webkit-focus-ring-color auto 1px;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

legend {
	color: #000;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.5em;
}

main, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

li {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: "";
	content: none;
}

input,
button,
textarea,
select {
	font: inherit;
}

input, select {
	vertical-align: middle;
}

abbr[title], dfn[title] {
	cursor: help;
}

del {
	text-decoration: line-through;
}

ins {
	font-style: oblique;
	text-decoration: none;
}

mark {
	background: transparent;
	font-style: normal;
}

img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
	-webkit-backface-visibility: hidden;
	image-rendering: -webkit-optimize-contrast;
}

table {
	border-color: inherit;
	border-collapse: collapse;
	border-spacing: 0;
	border-color: inherit;
	text-indent: 0;
	width: 100%;
}

iframe {
	border-style: none;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
	html:focus-within {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		-webkit-animation-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		-webkit-animation-iteration-count: 1 !important;
		animation-iteration-count: 1 !important;
		-webkit-transition-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
::-moz-selection {
	background: #d4dcd6;
}
::selection {
	background: #d4dcd6;
}

:root {
	--leading-trim: calc((1em - 1lh) / 2);
}

:lang(en) {
	--leading-trim: calc((1cap - 1lh) / 2);
}

@supports not (top: 1lh) {
	:root {
		--leading-trim: 0px;
	}
	:lang(en) {
		--leading-trim: 0px;
	}
}
/*-----------------------------------------------------------
body
-----------------------------------------------------------*/
body,
html {
	width: 100%;
	min-height: 100%;
}

html {
	font-size: 62.5%;
}

body {
	background-color: var(--color_bg);
	color: var(--color_text);
	font-size: 1.6rem;
	font-family: var(--font_base);
	line-height: 2;
	letter-spacing: 0.05em;
	-webkit-text-size-adjust: 100%;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
}

a {
	color: inherit;
	text-decoration: none;
}

.link {
	color: var(--color_link);
	text-decoration: underline;
}
.link:is(:hover, :focus) {
	text-decoration: none;
}

.link[target=_blank]::after {
	content: "";
	background: var(--color_link);
	-webkit-mask: url(../images/share/icon_out.svg) no-repeat center/contain;
	mask: url(../images/share/icon_out.svg) no-repeat center/contain;
	width: 12px;
	height: 10px;
	display: inline-block;
	margin-left: 5px;
}

:target {
	scroll-margin-top: 100px;
}

@media (max-width: 800px) {
	/*-----------------------------------------------------------
	body SP
	-----------------------------------------------------------*/
	body {
		font-size: 1.4rem;
		line-height: 1.8;
	}
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		line-height: 1.4;
	}
	:target {
		scroll-margin-top: 60px;
	}
}
/*-----------------------------------------------------------
header
-----------------------------------------------------------*/
.header {
	background: #fff;
	width: 100%;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 100;
}

.h-container {
	padding: 0 107px 0 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 90px;
}

.h-logo {
	margin: 0 auto 0 0;
}

.h-btn {
	color: #717171;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}
.h-btn .btn01 {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.2;
	padding: 0 15px 5px 0;
	position: relative;
	background: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor)) no-repeat bottom right 15px/0 1px;
	background: linear-gradient(currentColor, currentColor) no-repeat bottom right 15px/0 1px;
	-webkit-transition: background-size 0.3s ease-out;
	transition: background-size 0.3s ease-out;
	margin-right: 30px;
}
@media (hover: hover) {
	.h-btn .btn01:is(:hover, :focus) {
		background-size: calc(100% - 15px) 1px;
		background-position: bottom left;
	}
}
.h-btn .btn01:after {
	content: "";
	display: block;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	width: 7px;
	height: 7px;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.h-btn .btn02 {
	display: inline-block;
	background: var(--color_secondary);
	border-radius: 6px;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.2;
	min-width: 150px;
	padding: 18px;
	text-align: center;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
@media (hover: hover) {
	.h-btn .btn02:is(:hover, :focus) {
		background-color: oklch(from var(--color_secondary) 0.68 c h);
	}
}
.h-btn .btn03 {
	display: inline-block;
	background: var(--color_primary);
	border-radius: 6px;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.2;
	min-width: 150px;
	padding: 18px;
	text-align: center;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
@media (hover: hover) {
	.h-btn .btn03:is(:hover, :focus) {
		background-color: oklch(from var(--color_primary) 0.62 c h);
	}
}

@media (max-width: 800px) {
	/*-----------------------------------------------------------
	header SP
	-----------------------------------------------------------*/
	.h-container {
		padding: 0 80px 0 15px;
		height: 90px;
	}
	.h-logo {
		margin: 0 auto 0 0;
		max-width: 203px;
	}
	.h-btn {
		display: none;
	}
}
/*-----------------------------------------------------------
g-navi
-----------------------------------------------------------*/
/* ボタン */
.navi-menu-btn {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #fff;
	border: 1px solid #ACACAC;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: fixed;
	top: 15px;
	right: 25px;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	z-index: 20000;
}
.navi-menu-btn .hamburger-line {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 23px;
	height: 1px;
	background: #333;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.navi-menu-btn .hamburger-line::before,
.navi-menu-btn .hamburger-line::after {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	background: #333;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.navi-menu-btn .hamburger-line::before {
	top: -7px;
}
.navi-menu-btn .hamburger-line::after {
	top: 7px;
}
.navi-menu-btn[aria-expanded=true] {
	background: #D3D3D3;
	border-color: #D3D3D3;
}
.navi-menu-btn[aria-expanded=true] .hamburger-line {
	background-color: transparent;
}
.navi-menu-btn[aria-expanded=true] .hamburger-line::before, .navi-menu-btn[aria-expanded=true] .hamburger-line::after {
	top: 0;
	background: #fff;
}
.navi-menu-btn[aria-expanded=true] .hamburger-line::before {
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
}
.navi-menu-btn[aria-expanded=true] .hamburger-line::after {
	-webkit-transform: rotate(-30deg);
	transform: rotate(-30deg);
}
.navi-menu-btn .u-visually-hidden {
	position: absolute;
	white-space: nowrap;
	width: 1px;
	height: 1px;
	overflow: hidden;
	border: 0;
	padding: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	margin: -1px;
}

.sp-navi-btns {
	display: none;
}

/* 中身 */
.g-navi-contents {
	pointer-events: none;
	visibility: hidden;
	background: #fff;
	border: 1px solid #717171;
	border-radius: 15px;
	padding: 50px 30px 30px;
	position: fixed;
	top: 106px;
	right: 14px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	opacity: 0;
	z-index: 9999;
	width: 310px;
	max-height: calc(100% - 120px);
}

.g-navi-contents.is-open {
	pointer-events: auto;
	visibility: visible;
	opacity: 1;
	overflow-y: auto;
	overscroll-behavior-y: contain;
}

.g-navi-contents::-webkit-scrollbar {
	width: 16px;
}

.g-navi-contents::-webkit-scrollbar-thumb {
	background-color: #717171;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	background-clip: padding-box;
}

.g-navi-contents::-webkit-scrollbar-track {
	margin-top: 8px;
	margin-bottom: 8px;
}

/* レイアウト等 */
.g-navi-list > li {
	-webkit-column-break-inside: avoid;
	-moz-column-break-inside: avoid;
	break-inside: avoid;
	margin-bottom: 10px;
}
.g-navi-list > li > a,
.g-navi-list > li > .no-link {
	font-size: 2rem;
	font-weight: 500;
	padding: 0 0 3px;
	position: relative;
	background: -webkit-gradient(linear, left top, left bottom, from(var(--color_primary)), to(var(--color_primary))) no-repeat bottom right/0 1px;
	background: linear-gradient(var(--color_primary), var(--color_primary)) no-repeat bottom right/0 1px;
	-webkit-transition: background-size 0.3s ease-out;
	transition: background-size 0.3s ease-out;
}
@media (hover: hover) {
	.g-navi-list > li > a:is(:hover, :focus),
	.g-navi-list > li > .no-link:is(:hover, :focus) {
		background-size: 100% 1px;
		background-position: bottom left;
	}
}

.btn-official {
	display: block;
	color: #717171;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 50px 0 0 auto;
}
.btn-official .txt {
	font-size: 1.1rem;
	font-weight: 500;
}
.btn-official .btn {
	display: inline-block;
	font-size: 1.8rem;
	font-weight: bold;
	position: relative;
	padding: 0 15px 0 0;
	background: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor)) no-repeat bottom right 15px/0 1px;
	background: linear-gradient(currentColor, currentColor) no-repeat bottom right 15px/0 1px;
	-webkit-transition: background-size 0.3s ease-out;
	transition: background-size 0.3s ease-out;
}
.btn-official .btn:after {
	content: "";
	display: block;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	width: 7px;
	height: 7px;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
@media (hover: hover) {
	.btn-official:is(:hover, :focus) .btn {
		background-size: calc(100% - 15px) 1px;
		background-position: bottom left;
	}
}

.no-link {
	cursor: default;
	pointer-events: none;
}

@media (max-width: 800px) {
	/*-----------------------------------------------------------
	g-navi SP
	-----------------------------------------------------------*/
	/* ボタン */
	.navi-menu-btn {
		width: 56px;
		height: 56px;
		right: 15px;
	}
	.navi-menu-btn .hamburger-line {
		width: 21px;
	}
	.navi-menu-btn .hamburger-line::before {
		top: -6px;
	}
	.navi-menu-btn .hamburger-line::after {
		top: 6px;
	}
	/* ボタン類 */
	.sp-navi-btns {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
		box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 65px;
		z-index: 1000;
	}
	.sp-navi-btns > * {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		position: relative;
	}
	.sp-navi-btns .item {
		border-right: 1px solid #fff;
		font-size: 1.4rem;
		font-weight: 500;
		line-height: 1;
		letter-spacing: 0;
		text-align: center;
		white-space: nowrap;
	}
	.sp-navi-btns .item.item-description {
		background: var(--color_secondary);
	}
	.sp-navi-btns .item.item-entry {
		background: var(--color_primary);
	}
	.sp-navi-btns .item a {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		color: #fff;
		text-decoration: none;
		height: 100%;
		padding: 10px 0;
	}
	.sp-navi-btns .item .ttl {
		display: block;
	}
	/* 中身 */
	.g-navi-contents {
		border-radius: 0;
		padding: 100px 30px 30px;
		inset: 0;
		width: 100%;
		max-height: 100%;
	}
	/* レイアウト等 */
	.g-navi-list > li > a,
	.g-navi-list > li > .no-link {
		font-size: 1.8rem;
	}
}
/*-----------------------------------------------------------
/*-----------------------------------------------------------
hero
-----------------------------------------------------------*/
.hero {
	position: relative;
}

.hero-ttl {
	position: absolute;
	right: 36.7%;
	top: 20%;
	z-index: 5;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 0 min(13px, 0.72vw);
}
.hero-ttl .bg {
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-transform: "pkna";
	background: #fff;
	color: #717171;
	font-size: 1.61vw;
	font-weight: 500;
	letter-spacing: 0.1em;
	padding: 0.5em 0;
}
.hero-ttl .bg:first-child {
	padding-bottom: 0;
}
.hero-ttl .bg:last-child {
	margin-top: 1.5em;
}

.hero-img img {
	width: 100%;
	height: auto;
}

.hero-loop-txt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	overflow: hidden;
	position: absolute;
	left: 0;
	bottom: 0;
}
.hero-loop-txt .item {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	padding-right: 5vw;
}
.hero-loop-txt .item img {
	width: 119.5vw;
	height: auto;
}
.hero-loop-txt .item:nth-child(odd) {
	-webkit-animation: loop-txt01 160s -80s linear infinite;
	animation: loop-txt01 160s -80s linear infinite;
}
.hero-loop-txt .item:nth-child(even) {
	-webkit-animation: loop-txt02 160s linear infinite;
	animation: loop-txt02 160s linear infinite;
}

@-webkit-keyframes loop-txt01 {
	0% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
	to {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

@keyframes loop-txt01 {
	0% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
	to {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}
@-webkit-keyframes loop-txt02 {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	to {
		-webkit-transform: translateX(-200%);
		transform: translateX(-200%);
	}
}
@keyframes loop-txt02 {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	to {
		-webkit-transform: translateX(-200%);
		transform: translateX(-200%);
	}
}
@media (max-width: 800px) {
	.hero-ttl {
		position: absolute;
		right: 15%;
		top: 10%;
		gap: 0 10px;
	}
	.hero-ttl .bg {
		font-size: 5.5vw;
	}
	.hero-loop-txt .item {
		padding-right: 40px;
	}
	.hero-loop-txt .item img {
		width: 1072px;
	}
}
/*-----------------------------------------------------------
top contents
-----------------------------------------------------------*/
.container {
	margin-inline: auto;
	max-width: 1024px;
	width: 90%;
}
.container.wide {
	max-width: 1200px;
}
.container.wide02 {
	max-width: 1480px;
}

/*t-ttl*/
.t-ttl01 {
	margin-bottom: 80px;
	text-align: center;
	position: relative;
}
.t-ttl01 .en {
	font-size: 6rem;
	font-weight: 500;
	line-height: 1.7;
}
.t-ttl01 .ttl {
	font-size: 1.8rem;
	font-weight: 500;
	ine-height: 1.7;
}

@media (max-width: 800px) {
	.t-ttl01 {
		margin-bottom: 40px;
	}
	.t-ttl01 .en {
		font-size: 3.4rem;
	}
	.t-ttl01 .ttl {
		font-size: 1.8rem;
		font-weight: 500;
		font-size: 1.6rem;
	}
}
/*sec01*/
.sec01 {
	padding: 150px 0 0;
}

.sec01-layout {
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: 1fr 0 auto;
	-ms-grid-columns: 230px min(100px, 6.75vw) 1fr;
	grid-template: 1fr auto/230px 1fr;
	gap: 0 min(100px, 6.75vw);
}
.sec01-layout .l-ttl {
	-ms-grid-row: 1;
	-ms-grid-row-span: 1;
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-area: 1/1/2/2;
	margin-bottom: 50px;
	position: relative;
}
.sec01-layout .l-ttl .en {
	font-size: 3.4rem;
	line-height: 1.4;
	margin-bottom: 5px;
}
.sec01-layout .l-ttl .ttl {
	font-size: 1.6rem;
	line-height: 1.4;
}
.sec01-layout .l-desc {
	border-left: 1px solid #D6D6D6;
	-ms-grid-row: 1;
	-ms-grid-row-span: 2;
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-area: 1/2/3/3;
	min-width: 0;
	padding: 0 0 0 min(100px, 6.75vw);
}
.sec01-layout .l-btn {
	-ms-grid-row: 2;
	-ms-grid-row-span: 1;
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-area: 2/1/3/2;
}

@media (max-width: 800px) {
	.sec01 {
		padding: 60px 0 0;
	}
	.sec01-layout {
		display: block;
	}
	.sec01-layout .l-ttl {
		margin-bottom: 40px;
	}
	.sec01-layout .l-desc {
		border-left: none;
		padding: 0;
	}
	.sec01-layout .l-btn {
		margin-top: 30px;
		text-align: center;
	}
}
/*sec02*/
.sec02 {
	padding: 200px 0 0;
	position: relative;
	z-index: 1;
}
.sec02:before {
	content: "";
	display: block;
	background: url(../images/sec02_bg01.png) no-repeat center/contain;
	width: 266px;
	height: 837px;
	left: 0;
	top: -100px;
	position: absolute;
	z-index: -1;
}
.sec02:after {
	content: "";
	display: block;
	background: url(../images/sec02_bg02.png) no-repeat center/contain;
	width: 235px;
	height: 751px;
	right: 0;
	bottom: -150px;
	position: absolute;
	z-index: -1;
}

.sec02-layout {
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: auto 0 1fr;
	-ms-grid-columns: 1fr 2% 48.3%;
	grid-template: auto 1fr/1fr 48.3%;
	gap: 0 2%;
}
.sec02-layout .l-ttl {
	-ms-grid-row: 1;
	-ms-grid-row-span: 1;
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-area: 1/1/2/2;
	margin-bottom: 50px;
}
.sec02-layout .l-ttl .en {
	margin: 0 0 -40px -5vw;
}
.sec02-layout .l-ttl .ttl {
	color: #717171;
	font-size: 1.7rem;
	font-weight: 500;
	position: relative;
	z-index: 2;
}
.sec02-layout .l-img {
	-ms-grid-row: 1;
	-ms-grid-row-span: 2;
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-area: 1/2/3/3;
	padding: 40px 0 0;
}
.sec02-layout .l-img img {
	border-radius: 15px;
}
.sec02-layout .l-desc {
	-ms-grid-row: 2;
	-ms-grid-row-span: 1;
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-area: 2/1/3/2;
}
.sec02-layout .l-catch {
	font-size: 3rem;
	font-weight: 500;
	line-height: 1.8;
	margin-bottom: 50px;
}
.sec02-layout .l-txt {
	font-family: var(--font_jp);
	font-size: 1.6rem;
	line-height: 2.5;
}

@media (max-width: 800px) {
	.sec02 {
		padding: 60px 0 0;
	}
	.sec02:before {
		width: 133px;
		height: 419px;
		top: -50px;
	}
	.sec02:after {
		width: 1165px;
		height: 376px;
		bottom: -75px;
	}
	.sec02-layout {
		display: block;
	}
	.sec02-layout .l-ttl {
		margin-bottom: 40px;
	}
	.sec02-layout .l-ttl .en {
		margin: 0 0 -20px -3vw;
		width: 229px;
	}
	.sec02-layout .l-img {
		padding: 0;
		margin-bottom: 30px;
	}
	.sec02-layout .l-catch {
		font-size: 2.3rem;
		line-height: 1.4;
		margin-bottom: 30px;
	}
	.sec02-layout .l-txt {
		font-size: 1.4rem;
		line-height: 2;
	}
}
/*sec03*/
.sec03 {
	background: url(../images/sec03_bg01.png) no-repeat left 50svh;
	position: relative;
}

.sec03 .inner {
	position: sticky;
	top: 0;
	height: 100vh;
	overflow: hidden;
	z-index: 0;
}

.sec03-bg {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 40.8%;
	height: 40.8%;
	overflow: hidden;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 15px;
}

.sec03-bg img {
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform: scale(1.6);
	transform: scale(1.6);
	height: 100%;
	width: 100%;
}

.sec03-bg .blur {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	will-change: opacity, backdrop-filter;
	opacity: 0;
	-webkit-backdrop-filter: blur(30px) brightness(0.75);
	backdrop-filter: blur(30px) brightness(0.75);
	z-index: 1;
}

.sec03-layout {
	opacity: 0;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 44.4% 1fr;
	grid-template-columns: 44.4% 1fr;
	position: relative;
	z-index: 3;
	margin-top: 50vh;
}
.sec03-layout.is-show {
	opacity: 1;
}
.sec03-layout .l-img {
	-ms-grid-row: 1;
	-ms-grid-row-span: 1;
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-area: 1/1/2/2;
}
.sec03-layout .l-img img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.sec03-layout .l-desc {
	-ms-grid-row: 1;
	-ms-grid-row-span: 1;
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-area: 1/2/2/3;
	padding: min(150px, 8.33vw) 19%;
	color: #fff;
}
.sec03-layout .l-ttl {
	margin-bottom: 50px;
}
.sec03-layout .l-ttl .en {
	margin: 0 0 -55px -4.5vw;
}
.sec03-layout .l-ttl .ttl {
	font-size: 1.7rem;
	font-weight: 500;
	position: relative;
	z-index: 2;
}
.sec03-layout .l-catch {
	font-size: 3rem;
	font-weight: 500;
	line-height: 1.8;
	margin-bottom: 50px;
}
.sec03-layout .l-txt {
	font-family: var(--font_jp);
	font-size: 1.6rem;
	line-height: 2.5;
}
@media (min-width: 1200px) {
	@media (hover: none) {
		.sec03-bg {
			width: 60%;
			height: 60%;
		}
		.sec03-layout {
			margin-top: -25svh;
		}
	}
}
@media (max-width: 800px) {
	.sec03 {
		background: url(../images/sec03_bg01.png) no-repeat left 50svh/50%;
	}
	.sec03-bg {
		width: 70%;
		height:50%;
	}
	.sec03-layout {
		display: block;
	}
	.sec03-layout .l-desc {
		padding: 100px 5%;
	}
	.sec03-layout .l-ttl {
		margin-bottom: 40px;
	}
	.sec03-layout .l-ttl .en {
		margin: 0 0 -27px -3vw;
		width: 163px;
	}
	.sec03-layout .l-catch {
		font-size: 2.3rem;
		line-height: 1.4;
		margin-bottom: 30px;
	}
	.sec03-layout .l-txt {
		font-size: 1.4rem;
		line-height: 2;
	}
}
/*sec04*/
.sec04 {
	background: url(../images/sec04_bg01.png) no-repeat left top, url(../images/sec04_bg02.png) no-repeat right top;
	background-color: var(--color_tertiary);
	padding: 100px 0;
	display: flow-root;
	overflow: clip;
}

.sec04-ttl {
	width: 90%;
	max-width: 1460px;
	margin: 0 auto 80px;
}
.sec04-ttl .en {
	display: inline-block;
	font-size: 6rem;
	font-weight: 500;
	line-height: 1.2;
	position: relative;
	margin-right: 30px;
}
.sec04-ttl .en img {
	position: absolute;
	left: max(-50px, -2.5vw);
	top: -55px;
}
.sec04-ttl .ttl {
	display: inline-block;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.2;
}

.sec04-num-ttl {
	border-top: 1px solid #DBD7CA;
	font-size: 1.6rem;
	font-weight: 500;
	padding: 12px 0 0;
	margin-bottom: min(80px, 4.44vw);
}
.sec04-num-ttl::before {
	content: attr(data-num);
	color: var(--color_secondary);
	font-size: 2.5rem;
	margin-right: 13px;
}

.sec04-sticky-layout {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 0 30px;
	position: relative;
	height: 100%;
	padding: 0 0 0 max(5%, 50% - 730px);
}
.sec04-sticky-layout .sticky-layout-nav {
	width: min(300px, 16.6vw);
	padding: 0 0 100px;
}
.sec04-sticky-layout .sticky-layout-nav .sticky-layout-nav-inner {
	position: sticky;
	top: 100px;
	left: 0;
	z-index: 2;
}
.sec04-sticky-layout .sticky-anc-links {
	display: -ms-grid;
	display: grid;
	grid-gap: 40px;
	counter-reset: number;
}
.sec04-sticky-layout .sticky-anc-links a {
	display: inline-block;
	font-size: 1.7rem;
	font-weight: 500;
	line-height: 1.5;
	padding: 0 0 3px;
	background: -webkit-gradient(linear, left top, left bottom, from(var(--color_primary))) no-repeat bottom right/0 1px;
	background: linear-gradient(var(--color_primary)) no-repeat bottom right/0 1px;
	-webkit-transition: background-size 0.3s ease-out;
	transition: background-size 0.3s ease-out;
}
.sec04-sticky-layout .sticky-anc-links a::before {
	counter-increment: number;
	content: counter(number, decimal-leading-zero);
	color: var(--color_secondary);
	font-size: 1.9rem;
	margin-right: 13px;
}
.sec04-sticky-layout .sticky-anc-links a::after {
	content: "";
	background: url(../images/share/icon_arrow_down.svg) no-repeat center/contain;
	display: inline-block;
	width: 9px;
	height: 9px;
	margin-left: 13px;
}
@media (hover: hover) {
	.sec04-sticky-layout .sticky-anc-links a:is(:hover, :focus) {
		background-size: 100% 1px;
		background-position: bottom left;
	}
}
.sec04-sticky-layout .sticky-anc-links a.is-current {
	background-size: 100% 1px;
	background-position: bottom left;
}
.sec04-sticky-layout .sticky-layout-contents {
	background: #fff;
	padding: min(120px, 6.66vw) 10%;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.sec04-sticky-layout .sticky-layout-item + .sticky-layout-item {
	margin-top: min(135px, 7.5vw);
}

.sec04-layout {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	max-width: 970px;
	gap: 0 5%;
}
.sec04-layout .l-img {
	width: 45.7%;
}
.sec04-layout .l-img img {
	border-radius: 15px;
}
.sec04-layout .l-desc {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.sec04-layout .l-ttl {
	margin-bottom: min(50px, 2.77vw);
}
.sec04-layout .l-ttl .txt {
	color: var(--color_secondary);
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.7;
	margin-bottom: 10px;
}
.sec04-layout .l-ttl .ttl {
	font-size: 2.8rem;
	font-weight: 500;
}
.sec04-layout .l-txt {
	font-family: var(--font_jp);
	font-size: 1.6rem;
}
.sec04-layout .l-txt p + p {
	margin-top: min(50px, 2.77vw);
}
.sec04-layout.reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.sec04-slider-area {
	background-image: linear-gradient(135deg, #FFE6DE 0%, #FFF3E3 50%, #DBEFED 100%);
	padding: 110px 0;
}
.sec04-slider-area .sec04-num-ttl {
	width: 90%;
	max-width: 1460px;
	margin-inline: auto;
}

.sec04-slider-layout {
	background: #fff;
	border-radius: 15px;
	padding: 40px;
	height: 100%;
}
.sec04-slider-layout .ttl-area {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 15px 150px;
	grid-template: auto 1fr/1fr 150px;
	gap: 0 15px;
	grid-template-areas: "ttl img" "txt img";
	margin-bottom: 30px;
}
.sec04-slider-layout .ttl-area .l-img {
	-ms-grid-row: 1;
	-ms-grid-row-span: 3;
	-ms-grid-column: 3;
	grid-area: img;
}
.sec04-slider-layout .ttl-area .l-ttl {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
	grid-area: ttl;
	margin-bottom: 15px;
}
.sec04-slider-layout .ttl-area .l-ttl .en {
	color: var(--color_primary);
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.7;
	margin-bottom: 5px;
}
.sec04-slider-layout .ttl-area .l-ttl .ttl {
	font-size: 2.8rem;
	font-weight: 500;
}
.sec04-slider-layout .ttl-area .l-txt {
	-ms-grid-row: 3;
	-ms-grid-column: 1;
	grid-area: txt;
	color: #717171;
	font-family: var(--font_jp);
	font-size: 1.4rem;
}
.sec04-slider-layout .l-ttl02 {
	background: var(--color_secondary);
	color: #fff;
	font-family: var(--font_jp);
	font-size: 1.4rem;
	line-height: 1.7;
	border-radius: 18px;
	padding: 0 12px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin-bottom: 20px;
}
.sec04-slider-layout .l-desc {
	background: var(--color_tertiary);
	padding: 25px;
}
.sec04-slider-layout .l-dl {
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
	-webkit-column-gap: 4%;
	-moz-column-gap: 4%;
	column-gap: 4%;
}
.sec04-slider-layout .l-dl .item {
	font-family: var(--font_jp);
	font-size: 1.5rem;
	line-height: 1.66;
	-webkit-column-break-inside: avoid;
	-moz-column-break-inside: avoid;
	break-inside: avoid;
	margin-bottom: 15px;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 80px 10px 1fr;
	grid-template-columns: 80px 1fr;
	gap: 0 10px;
}
.sec04-slider-layout .l-dl .item dt {
	color: #959595;
}

/*sec04-slider*/
.sec04-slider {
	overflow: hidden;
}

.sec04-slider .splide {
	margin: 0 auto;
}

.sec04-slider .splide__track {
	overflow: visible;
}

.sec04-slider .splide-controller {
	margin: 60px auto 0;
	max-width: 1460px;
}
.sec04-slider .splide__pagination__page:not(.is-active) {
	background: #fff;
}

@media (max-width: 800px) {
	.sec04 {
		background: url(../images/sec04_bg01.png) no-repeat left top/50%, url(../images/sec04_bg02.png) no-repeat right top/50%;
		background-color: var(--color_tertiary);
		padding: 60px 0;
	}
	.sec04-ttl {
		margin: 0 auto 40px;
	}
	.sec04-ttl .en {
		display: block;
		font-size: 3.4rem;
		margin: 0 0 5px;
	}
	.sec04-ttl .en img {
		position: absolute;
		left: -2.5vw;
		top: -28px;
		width: 114px;
	}
	.sec04-ttl .ttl {
		display: block;
		font-size: 1.6rem;
	}
	.sec04-num-ttl {
		margin-bottom: 30px;
	}
	.sec04-sticky-layout {
		display: block;
		padding: 0;
		width: 90%;
		margin: 0 auto;
	}
	.sec04-sticky-layout .sticky-layout-nav {
		width: 100%;
		padding: 0 0 40px;
	}
	.sec04-sticky-layout .sticky-layout-nav .sticky-layout-nav-inner {
		position: static;
	}
	.sec04-sticky-layout .sticky-anc-links {
		grid-gap: 15px;
	}
	.sec04-sticky-layout .sticky-anc-links a {
		font-size: 1.5rem;
		padding: 0;
		background: none;
	}
	.sec04-sticky-layout .sticky-anc-links a::before {
		font-size: 1.7rem;
		margin-right: 8px;
	}
	.sec04-sticky-layout .sticky-anc-links a::after {
		content: "";
		background: url(../images/share/icon_arrow_down.svg) no-repeat center/contain;
		display: inline-block;
		width: 9px;
		height: 9px;
		margin-left: 8px;
	}
	.sec04-sticky-layout .sticky-layout-contents {
		padding: 60px 5%;
	}
	.sec04-sticky-layout .sticky-layout-item + .sticky-layout-item {
		margin-top: 50px;
	}
	.sec04-layout {
		display: block;
		gap: 0 5%;
	}
	.sec04-layout .l-img {
		width: 100%;
		margin-bottom: 30px;
	}
	.sec04-layout .l-ttl {
		margin-bottom: 25px;
	}
	.sec04-layout .l-ttl .txt {
		font-size: 1.5rem;
		margin-bottom: 5px;
	}
	.sec04-layout .l-ttl .ttl {
		font-size: 2rem;
	}
	.sec04-layout .l-txt {
		font-size: 1.4rem;
	}
	.sec04-layout .l-txt p + p {
		margin-top: 15px;
	}
	.sec04-slider-area {
		padding: 60px 0;
	}
	.sec04-slider-layout {
		padding: 20px;
	}
	.sec04-slider-layout .ttl-area {
		display: block;
		margin-bottom: 30px;
	}
	.sec04-slider-layout .ttl-area .l-img {
		text-align: center;
		margin-bottom: 20px;
	}
	.sec04-slider-layout .ttl-area .l-ttl {
		margin-bottom: 15px;
	}
	.sec04-slider-layout .ttl-area .l-ttl .en {
		margin-bottom: 5px;
	}
	.sec04-slider-layout .ttl-area .l-ttl .ttl {
		font-size: 2.1rem;
	}
	.sec04-slider-layout .ttl-area .l-txt {
		font-size: 1.3rem;
	}
	.sec04-slider-layout .l-desc {
		padding: 15px;
	}
	.sec04-slider-layout .l-dl {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
		-webkit-column-gap: 0;
		-moz-column-gap: 0;
		column-gap: 0;
	}
	.sec04-slider-layout .l-dl .item {
		font-size: 1.3rem;
		margin-bottom: 20px;
		-ms-grid-columns: 60px 1fr;
		grid-template-columns: 60px 1fr;
	}
	.sec04-slider-layout .l-dl .item .notice {
		font-size: 1.2rem;
	}
	.sec04-slider-layout .l-dl .item dt {
		font-size: 1.3rem;
	}
	/*sec04-slider*/
	.sec04-slider .splide-controller {
		margin: 30px auto 0;
		max-width: 1460px;
	}
}
/*sec05*/
.sec05 {
	background: url(../images/sec05_bg.jpg);
	padding: 130px 0;
}

.sec05-ttl {
	margin-bottom: 80px;
}
.sec05-ttl .en {
	display: inline-block;
	font-size: 6rem;
	font-weight: 500;
	line-height: 1.2;
	position: relative;
	margin-right: 30px;
}
.sec05-ttl .en img {
	position: absolute;
	right: -4vw;
	top: 25px;
}
.sec05-ttl .ttl {
	display: inline-block;
	font-size: 1.8rem;
	font-weight: 500;
}

.sec05-card-layout {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: minmax(0, 1fr) 35px minmax(0, 1fr) 35px minmax(0, 1fr);
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 35px;
	margin-bottom: 90px;
}
.sec05-card-layout .card-item {
	border-radius: 20px;
	background-image: linear-gradient(135deg, #FFF5F2 0%, #E1F7EF 100%);
	padding: 30px;
}
.sec05-card-layout .card-ttl {
	background: #fff;
	border-radius: 25px;
	font-size: 2rem;
	padding: 9px 25px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto 20px;
}
.sec05-card-layout .card-average {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	line-height: 1;
	text-align: center;
	margin-bottom: 25px;
}
.sec05-card-layout .card-average > .ttl {
	font-size: min(2.2rem, 1.22vw);
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	padding: 15px 0 0;
}
.sec05-card-layout .card-average > .num {
	color: var(--color_primary);
	font-size: min(12.3rem, 6.83vw);
	font-weight: 500;
	vertical-align: middle;
	margin: 0 5px 0 15px;
}
.sec05-card-layout .card-average > .unit {
	font-size: min(4rem, 2.22vw);
}
.sec05-card-layout .card-data {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: -webkit-max-content minmax(0, 1fr);
	-ms-grid-columns: max-content minmax(0, 1fr);
	grid-template-columns: -webkit-max-content minmax(0, 1fr);
	grid-template-columns: max-content minmax(0, 1fr);
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	line-height: 1.8;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
}
.sec05-card-layout .card-data dt, .sec05-card-layout .card-data dd {
	font-size: 2.3rem;
	font-weight: 500;
}
.sec05-card-layout .card-data dt {
	text-align: right;
}
.sec05-card-layout .card-data dd {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: minmax(0, 1fr) -webkit-max-content auto;
	-ms-grid-columns: minmax(0, 1fr) max-content auto;
	grid-template-columns: minmax(0, 1fr) -webkit-max-content auto;
	grid-template-columns: minmax(0, 1fr) max-content auto;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}
.sec05-card-layout .card-data dd::before {
	content: "";
	height: 2px;
	border-top: 2px dotted #A3A3A3;
	display: block;
	z-index: 0;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	margin: 0 15px;
	min-width: 44px;
}
.sec05-card-layout .card-data .unit {
	font-weight: normal;
	font-size: 1.5rem;
}

.sec05-box {
	border: 1px solid var(--color_primary);
	border-radius: 20px;
	padding: 80px 5% 80px 22%;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 12% 1fr;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 12%;
	position: relative;
}
.sec05-box .box-ttl {
	border: 1px solid var(--color_primary);
	border-radius: 5px;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-transform: "pkna";
	background: #fff;
	color: #717171;
	font-size: 2.1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	padding: 15px 10px;
	position: absolute;
	left: 9%;
	top: -32px;
	z-index: 5;
}
.sec05-box .box-list > li {
	position: relative;
	padding: 0 0 0 22px;
}
.sec05-box .box-list > li:before {
	background: #FFD1C1;
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 5px;
	height: 17px;
}
.sec05-box .box-list > li + li {
	margin-top: 5px;
}
.sec05-box .item .item-ttl {
	font-size: 2.5rem;
	margin-bottom: 25px;
}

@media (max-width: 800px) {
	.sec05 {
		padding: 60px 0;
	}
	.sec05-ttl {
		margin-bottom: 40px;
	}
	.sec05-ttl .en {
		font-size: 3.4rem;
		margin: 0 10px 0 0;
	}
	.sec05-ttl .en img {
		right: -50px;
		top: 0px;
		width: 69px;
	}
	.sec05-ttl .ttl {
		font-size: 1.6rem;
	}
	.sec05-card-layout {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 35px;
		margin-bottom: 70px;
	}
	.sec05-card-layout .card-item {
		padding: 25px;
	}
	.sec05-card-layout .card-average {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: baseline;
		-ms-flex-align: baseline;
		align-items: baseline;
		line-height: 1;
		text-align: center;
		margin-bottom: 25px;
	}
	.sec05-card-layout .card-average > .ttl {
		font-size: 1.4rem;
		padding: 15px 0 0;
	}
	.sec05-card-layout .card-average > .num {
		font-size: 8rem;
		margin: 0 5px 0 15px;
	}
	.sec05-card-layout .card-average > .unit {
		font-size: 2rem;
	}
	.sec05-card-layout .card-data dt, .sec05-card-layout .card-data dd {
		font-size: 2rem;
	}
	.sec05-card-layout .card-data .unit {
		font-size: 1.4rem;
	}
	.sec05-box {
		padding: 45px 25px 30px;
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.sec05-box .box-ttl {
		-webkit-writing-mode: horizontal-tb;
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
		text-transform: "palt";
		font-size: 1.8rem;
		letter-spacing: 0.05em;
		padding: 10px;
		left: 5%;
		top: -25px;
	}
	.sec05-box .box-list > li {
		position: relative;
		padding: 0 0 0 18px;
	}
	.sec05-box .box-list > li:before {
		top: 0.4em;
		height: 15px;
	}
	.sec05-box .box-list > li + li {
		margin-top: 5px;
	}
	.sec05-box .item .item-ttl {
		font-size: 2rem;
		margin-bottom: 20px;
	}
}
/*sec06*/
.sec06 {
	background: url(../images/sec06_bg01.png) no-repeat right top, -webkit-gradient(linear, left top, right top, from(#FAF8F2), to(#EFFCF9));
	background: url(../images/sec06_bg01.png) no-repeat right top, linear-gradient(90deg, #FAF8F2 0%, #EFFCF9 100%);
	padding: 110px 0;
	position: relative;
	z-index: 5;
}
.sec06:before {
	content: "";
	background: url(../images/sec06_bg02.png) no-repeat left top/contain;
	width: 297px;
	height: 787px;
	position: absolute;
	left: 0;
	bottom: -300px;
	z-index: -1;
}

.sec06-ttl {
	margin-bottom: 80px;
}
.sec06-ttl .en {
	display: inline-block;
	font-size: 6rem;
	font-weight: 500;
	line-height: 1.2;
	position: relative;
	margin-right: 30px;
}
.sec06-ttl .en img {
	position: absolute;
	left: -1.5vw;
	top: -50px;
}
.sec06-ttl .ttl {
	display: inline-block;
	font-size: 1.8rem;
	font-weight: 500;
}

.sec06-slider-layout {
	position: relative;
}
.sec06-slider-layout .l-img {
	position: relative;
	z-index: 1;
	padding: 0 0 5%;
}
.sec06-slider-layout .l-img:before {
	content: "";
	background-image: linear-gradient(135deg, #B0EDE6 0%, #FFD8C9 50%, #FFF7D1 100%);
	width: 70%;
	height: 74.3%;
	position: absolute;
	left: -35%;
	bottom: 0;
	z-index: -1;
}
.sec06-slider-layout .l-img .img-inner {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	z-index: 2;
}
.sec06-slider-layout .l-img .img-inner img {
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.sec06-slider-layout .l-name {
	font-weight: 500;
	line-height: 1.7;
	width: 60%;
	position: absolute;
	right: 100%;
	bottom: 5%;
	z-index: 5;
	white-space: nowrap;
}

@media (min-width: 1200px) {
	@media (hover: none) {
		.sec06-slider-layout .l-name {
			min-width: 14vw;
		}
	}
}
.sec06-slider-layout .l-name:after {
	content: "";
	background: url(../images/sec06-slider-arrow.svg) no-repeat center/contain;
	display: block;
	width: min(86px, 4.72vw);
	aspect-ratio: 86/10;
	margin: min(45px, 2.5vw) auto 0;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.sec06-slider-layout .l-name .job {
	color: #717171;
	font-size: clamp(1rem, 0.833vw, 1.5rem);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.sec06-slider-layout .l-name .name {
	font-size: min(3rem, 1.66vw);
	letter-spacing: 0.2em;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.sec06-slider-layout .l-name .en {
	color: #888888;
	font-size: clamp(1rem, 0.833vw, 1.5rem);
	letter-spacing: 0.1em;
}
@media (hover: hover) {
	.sec06-slider-layout:is(:hover, :focus) .img-inner img {
		scale: 1.1;
	}
	.sec06-slider-layout:is(:hover, :focus) .l-name:after {
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}
	.sec06-slider-layout:is(:hover, :focus) .l-name .job {
		color: var(--color_secondary);
	}
	.sec06-slider-layout:is(:hover, :focus) .l-name .name {
		color: var(--color_primary);
	}
}

/*sec06-slider*/
.sec06-slider {
	overflow: hidden;
}

.sec06-slider .splide {
	margin: 0 auto;
}

.sec06-slider .splide__track {
	overflow: visible;
}

.sec06-slider .splide__slide {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0;
	transition: 0;
	pointer-events: none;
}
.sec06-slider .splide__slide:is(.is-active, .is-next, .is-next + .splide__slide){
  opacity: 1;
  visibility: visible;
}
.sec06-slider .splide__slide.is-active.is-visible {
	pointer-events: auto;
}
.sec06-slider .splide__slide .sec06-slider-layout .l-img {
	-webkit-transform-origin: right center;
	transform-origin: right center;
	scale: 0.8;
}
.sec06-slider .splide__slide .sec06-slider-layout .l-img:before {
	opacity: 0;
}
.sec06-slider .splide__slide .sec06-slider-layout .l-img .img-inner:after {
	content: "";
	inset: 0;
	position: absolute;
	background: rgba(0, 0, 0, 0.3);
	z-index: 5;
}
.sec06-slider .splide__slide .sec06-slider-layout .l-name {
	opacity: 0;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}

.sec06-slider .splide__slide.is-active.is-visible .sec06-slider-layout .l-img {
	scale: 1;
}
.sec06-slider .splide__slide.is-active.is-visible .sec06-slider-layout .l-img:before {
	opacity: 1;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}
.sec06-slider .splide__slide.is-active.is-visible .sec06-slider-layout .l-img .img-inner:after {
	opacity: 0;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.sec06-slider .splide__slide.is-active.is-visible .sec06-slider-layout .l-name {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: 0.5s;
	transition: 0.5s;
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}

@media (max-width: 800px) {
	.sec06 {
		background: url(../images/sec06_bg01.png) no-repeat right top/50%, -webkit-gradient(linear, left top, right top, from(#FAF8F2), to(#EFFCF9));
		background: url(../images/sec06_bg01.png) no-repeat right top/50%, linear-gradient(90deg, #FAF8F2 0%, #EFFCF9 100%);
		padding: 60px 0;
	}
	.sec06:before {
		width: 149px;
		height: 394px;
		bottom: -150px;
	}
	.sec06-ttl {
		margin-bottom: 40px;
	}
	.sec06-ttl .en {
		font-size: 3.4rem;
		margin: 0 10px 0 0;
	}
	.sec06-ttl .en img {
		position: absolute;
		left: -1.5vw;
		top: -25px;
		width: 95px;
	}
	.sec06-ttl .ttl {
		font-size: 1.6rem;
	}
	.sec06-slider-layout {
		position: relative;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.sec06-slider-layout .l-img {
		position: relative;
		z-index: 1;
		padding: 0 0 5%;
		margin: 0 0 0 auto;
		width: 60%;
	}
	.sec06-slider-layout .l-name {
		width: 40%;
		right: auto;
		left: 0;
		min-width: 0;
	}
	.sec06-slider-layout .l-name:after {
		width: 43px;
		margin: 20px auto 0;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	.sec06-slider-layout .l-name .job {
		font-size: 1.4rem;
	}
	.sec06-slider-layout .l-name .name {
		font-size: 2rem;
		letter-spacing: 0.1em;
	}
	.sec06-slider-layout .l-name .en {
		font-size: 1.4rem;
		letter-spacing: 0.05em;
	}
	/*sec06-slider*/
	.sec06-slider .splide {
		margin: 0 auto;
		width: 90%;
	}
	.sec06-slider .splide__track {
		overflow: hidden;
	}
	.sec06-slider .splide__slide .sec06-slider-layout .l-img {
		scale: 1;
	}
	.sec06-slider .splide__slide .sec06-slider-layout .l-img .img-inner:after {
		content: none;
	}
	.sec06-slider .splide__slide .sec06-slider-layout .l-img:before {
		opacity: 0;
	}
	.sec06-slider .splide__slide.is-active.is-visible .sec06-slider-layout .l-name {
		-webkit-transition-delay: 0s;
		transition-delay: 0s;
	}
}
/*sec07*/
.sec07 {
	background: url(../images/sec07_bg01.png) no-repeat right bottom, -webkit-gradient(linear, left top, right top, from(#FAF8F2), to(#EFFCF9));
	background: url(../images/sec07_bg01.png) no-repeat right bottom, linear-gradient(90deg, #FAF8F2 0%, #EFFCF9 100%);
	padding: 60px 0 150px;
}

.sec07-layout {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 157px 5% minmax(0, 1fr);
	grid-template-columns: 157px minmax(0, 1fr);
	gap: 0 5%;
	position: relative;
	margin-left: max(5%, 50% - 730px);
	position: relative;
	z-index: 5;
}

.sec07-txt {
	font-family: var(--font_jp);
	font-size: 1.6rem;
	margin-bottom: 50px;
}

.sec07-ttl {
	position: relative;
}
.sec07-ttl .en {
	display: inline-block;
	font-size: 6rem;
	font-weight: 500;
	line-height: 1.1;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-transform: "pkna";
	vertical-align: top;
}
.sec07-ttl .en img {
	position: absolute;
	left: -1.5vw;
	top: -70px;
}
.sec07-ttl .ttl {
	display: inline-block;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.1;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-transform: "pkna";
	vertical-align: top;
	text-orientation: upright;
}

/*sec07-slider*/
.sec07-slider-wrap {
	background: #fff;
	padding: 90px 0 90px 90px;
}

.sec07-slider {
	overflow: hidden;
}

.sec07-slider > .splide {
	max-width: 90%;
}
.sec07-slider .splide__track {
	overflow: visible;
}
.sec07-slider .splide__slide{
	padding: 0 0 50px;
	cursor:grab;
}
.sec07-slider .splide__progress {
	max-width: 900px;
	flex: 1;
	margin: 0;
}


.sec07-slider-layout {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
}
.sec07-slider-layout .l-ttl {
	font-size: 2rem;
	font-weight: 500;
	border-bottom: 1px dotted #717171;
	padding: 0 0 20px 10px;
	margin: 0 0 40px;
	position: relative;
}
.sec07-slider-layout .l-ttl:before {
	content: "";
	display: block;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background-image: linear-gradient(135deg, #B0E5E2 0%, #F5AA92 60%, #FF9774 100%);
	position: absolute;
	left: 10px;
	bottom: -7px;
	z-index: 5;
}
.sec07-slider-layout .l-ttl:after {
	content: "";
	display: block;
	height: 40px;
	width: 1px;
	background: var(--color_secondary);
	position: absolute;
	left: 16px;
	bottom: -40px;
}
.sec07-slider-layout.first-item .l-ttl {
	font-size: 2rem;
	font-weight: 500;
	border-bottom: 1px dotted #717171;
	padding: 0 0 20px 0;
	margin: 0 0 40px 10px;
	position: relative;
}
.sec07-slider-layout.first-item .l-ttl:before {
	left: 0;
}
.sec07-slider-layout.first-item .l-ttl:after {
	left: 6px;
}
.sec07-slider-layout .card-area {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	border: 1px solid var(--color_secondary);
	border-radius: 8px;
	padding: 20px;
	max-width: 300px;
}
.sec07-slider-layout .card-img {
	margin-bottom: 20px;
}
.sec07-slider-layout .card-ttl {
	font-size: 1.7rem;
	font-weight: 500;
	margin-bottom: 15px;
}
.sec07-slider-layout .card-txt {
	font-family: var(--font_jp);
	font-size: 1.4rem;
}

@media (max-width: 800px) {
	.sec07 {
		background: url(../images/sec07_bg01.png) no-repeat right bottom/50%, -webkit-gradient(linear, left top, right top, from(#FAF8F2), to(#EFFCF9));
		background: url(../images/sec07_bg01.png) no-repeat right bottom/50%, linear-gradient(90deg, #FAF8F2 0%, #EFFCF9 100%);
		padding: 30px 0 60px;
	}
	.sec07-layout {
		display: block;
		margin: 0;
	}
	.sec07-txt {
		font-size: 1.4rem;
		margin: 0 auto 30px;
		width: 90%;
	}
	.sec07-ttl {
		margin: 0 auto 40px;
		width: 90%;
	}
	.sec07-ttl .en {
		font-size: 3.4rem;
		margin: 0 10px 0 0;
		-webkit-writing-mode: horizontal-tb;
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
		text-transform: "palt";
		vertical-align: baseline;
	}
	.sec07-ttl .en img {
		position: absolute;
		left: -1.5vw;
		top: -35px;
		width: 79px;
	}
	.sec07-ttl .ttl {
		font-size: 1.6rem;
		-webkit-writing-mode: horizontal-tb;
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
		text-transform: "palt";
		vertical-align: baseline;
	}
	/*sec07-slider*/
	.sec07-slider-wrap {
		padding: 25px 0 25px 25px;
		width: 95%;
		margin: 0 0 0 auto;
	}
	.sec07-slider {
		overflow: hidden;
	}
	.sec07-slider .splide__slide{
		padding: 0 0 30px;
	}
	.sec07-slider-layout .card-area {
		max-width: calc(100% - 20px);
	}
	.sec07-slider-layout .card-txt {
		font-size: 1.3rem;
	}
}


/*------------
Modal
-------------*/
body:has(dialog:modal) {
	touch-action: none;
	-webkit-overflow-scrolling: none;
	display: flow-root;
	overflow: clip;
	overscroll-behavior: none;
}

.modal-contents{
	overflow-y: auto;
	overscroll-behavior-y: contain;
	padding: 0;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	width: 90%;
	max-width: 1200px;
	border-radius: 8px;
}
.modal-contents::-webkit-scrollbar {
	width: 16px;
}

.modal-contents::-webkit-scrollbar-thumb {
	background-color: #717171;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	background-clip: padding-box;
}

.modal-contents::-webkit-scrollbar-track {
	margin-top: 8px;
	margin-bottom: 8px;
}
.modal-contents[open]{
	animation: slide-up 0.4s ease-out;
}

.modal-contents::backdrop {
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);

}

.modal-container{
	background: #fff;
	border-radius: 8px;
	padding: 50px 90px;
}

.modal-layout {
	display: flex;
	align-items: flex-start;
}

.modal-layout .l-img {
	width: 416px;
	margin-right: 94px;
	position: relative;
	z-index: 1;
	padding: 0 0 45px;
}

.modal-layout .l-img:before {
	content: "";
	background-image: linear-gradient(135deg, #B0EDE6 0%, #FFD8C9 50%, #FFF7D1 100%);
	width: 292px;
	height:387px;
	position: absolute;
	left: -45px;
	bottom: 0;
	z-index: -1;
}

.modal-layout .l-img img{
	border-radius: 15px;
}

.modal-layout .l-desc {
	flex: 1;
	padding: 45px 0 0;
}

.modal-layout .l-name {
	font-weight: 500;
	line-height: 1.7;
	margin-bottom: 50px;
}

.modal-layout .l-name .job {
	color: #717171;
	font-size: 1.5rem;
}
.modal-layout .l-name .name {
	font-size: 3rem;
	letter-spacing: 0.2em;
}
.modal-layout .l-name .en {
	color: #888888;
	font-size: 1.5rem;
	letter-spacing: 0.1em;
}
.modal-layout .l-ttl {
	border-bottom: 1px solid #DBD7CA;
	font-weight: 500;
	font-size: 2.2rem;
	padding-bottom: 15px;
	margin-bottom: 35px;
}

.modal-layout .l-txt {
	font-family: var(--font_jp);
	font-size: 1.6rem;
}

.modal-layout .l-txt p + p{
	margin-top: 15px;
}

.modal-close-top {
	cursor: pointer;
	background: #fff;
	border: 1px solid #717171;
	border-radius: 50px;
	position: absolute;
	right: 50px;
	top: 50px;
	width: 50px;
	height: 50px;
	z-index: 10;
	transition: 0.5s;
}

.modal-close-top::before, .modal-close-top::after {
	background: #717171;
	content: "";
	display: block;
	width: 40%;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 50%;
}

.modal-close-top::before {
	-webkit-transform: translate(-50%, -50%) rotate(30deg);
	transform: translate(-50%, -50%) rotate(30deg);
}

.modal-close-top::after {
	-webkit-transform: translate(-50%, -50%) rotate(-30deg);
	transform: translate(-50%, -50%) rotate(-30deg);
}

.modal-close-top:hover,.modal-close-top:focus{
scale:1.1;
}

.modal-close-bottom{
	display: none;
	background: #fff;
	border: 1px solid #717171;
	border-radius: 5px;
	color:  #717171;
	font-size: 1.8rem;
	font-weight: 500;
	min-width: 150px;
	padding: 10px 15px;
	text-align: center;
	width: fit-content;
	margin: 50px auto 0;
	transition: .2s;
}

.modal-close-bottom:hover,.modal-close-bottom:focus{
	background: #717171;
	color: #fff;
}

@keyframes slide-up {
	0% {
		opacity: 0;
		transform: translate(0, 15px);
	}

	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}

@media (max-width: 800px) {

	.modal-contents{
		max-width: 100%;
	}

	.modal-container{
		padding: 50px 5%;
	}

	.modal-layout {
		display: block;
	}

	.modal-layout .l-img {
		width: 80%;
		margin: 0 auto 30px;
		padding: 0 0 25px;
	}
.modal-layout .l-img:before {
	width: 70%;
	height: 74.3%;
	left: -25px;
}
	.modal-layout .l-desc {
		margin: 0;
		padding: 0;
	}
	.modal-layout .l-name {
		margin-bottom: 30px;
	}

	.modal-layout .l-name .job {
		font-size: 1.4rem;
	}
	.modal-layout .l-name .name {
		font-size: 2rem;
		letter-spacing: 0.1em;
	}
	.modal-layout .l-name .en {
		font-size: 1.4rem;
		letter-spacing: 0.05em;
	}
	.modal-layout .l-ttl {
		font-size: 1.8rem;
		padding-bottom: 15px;
		margin-bottom: 30px;
	}
	.modal-layout .l-txt {
		font-size: 1.4rem;
	}
	.modal-close-top {
		width: 35px;
		height: 35px;
		right: 10px;
		top: 10px;
	}
	.modal-close-bottom{
		display: block;
	}
}
/*sec08*/
.sec08 {
	padding: 110px 0 0;
}

/*faq-style*/
.faq-style {
	background-image: linear-gradient(135deg, #EFFAF6 0%, #FFF5F2 100%);
	border-radius: 15px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.faq-style + .faq-style {
	margin-top: 20px;
}
.faq-style .faq-summary {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	cursor: pointer;
	position: relative;
	padding: 30px 80px 30px 50px;
}
.faq-style .faq-summary::-webkit-details-marker {
	display: none;
}
.faq-style .faq-content {
	overflow: hidden;
}
.faq-style .faq-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	padding: 0 80px 45px 50px;
	position: relative;
}
.faq-style .faq-inner .faq-icon {
	color: var(--color_secondary);
}
.faq-style .faq-inner .faq-desc {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	font-family: var(--font_jp);
	font-size: 1.6rem;
}
.faq-style .faq-ttl {
	font-size: 2.2rem;
	font-weight: 500;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.faq-style .faq-icon {
	font-size: 2.5rem;
	font-weight: 500;
	text-align: center;
	width: 45px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.faq-style .faq-open-icon {
	width: 29px;
	height: 29px;
	position: absolute;
	right: 40px;
	top: 40px;
}
.faq-style .faq-open-icon::before, .faq-style .faq-open-icon::after {
	content: "";
	background-color: #717171;
	position: absolute;
	inset: 50% 0 auto;
	height: 1px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.faq-style .faq-open-icon::after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
.faq-style.is-open .faq-open-icon::after {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

@media (max-width: 800px) {
	.sec08 {
		padding: 60px 0 0;
	}
	/*faq-style*/
	.faq-style .faq-summary {
		padding: 15px 40px 15px 15px;
	}
	.faq-style .faq-content {
		overflow: hidden;
	}
	.faq-style .faq-inner {
		padding: 0 40px 15px 15px;
	}
	.faq-style .faq-inner .faq-desc {
		font-size: 1.4rem;
	}
	.faq-style .faq-ttl {
		font-size: 1.6rem;
		line-height: 1.4;
	}
	.faq-style .faq-icon {
		font-size: 2rem;
		width: 28px;
	}
	.faq-style .faq-open-icon {
		width: 15px;
		height: 15px;
		position: absolute;
		right: 15px;
		top: 25px;
	}
	.faq-style.is-open .faq-open-icon::after {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}
/*sec09*/
.sec09 {
	background: url(../images/sec09_bg01.png) no-repeat right top, url(../images/sec09_bg02.png) no-repeat left bottom;
	padding: 175px 0 135px;
}

.sec09-table {
	border-collapse: collapse;
	width: 100%;
}
.sec09-table th {
	border-top: 1px solid var(--color_secondary);
	border-bottom: 1px solid var(--color_secondary);
	width: 22%;
	padding: 25px;
	font-weight: 500;
	text-align: left;
}
.sec09-table td {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	width: 78%;
	padding: 25px;
}
.sec09-table .notice {
	font-size: 1.4rem;
}

/*tab*/
.tab-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 70px;
}

.tab-btn button {
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #707070;
	background: #fff;
	cursor: pointer;
	color: currentColor;
	font-size: 1.8rem;
	font-weight: 500;
	border-radius: 25px;
	text-align: center;
	padding: 8px 20px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	min-width: 266px;
}

.tab-btn button.is-active {
	background: var(--color_secondary);
	border-color: var(--color_secondary);
	color: #fff;
}

@media (hover: hover) {
	.tab-btn button:hover,
	.tab-btn button:focus {
		background: var(--color_secondary);
		border-color: var(--color_secondary);
		color: #fff;
	}
}
.tab-contents {
	display: none;
}

.tab-contents.is-show {
	display: block;
}

@media (max-width: 800px) {
	.sec09 {
		background: url(../images/sec09_bg01.png) no-repeat right top/50%, url(../images/sec09_bg02.png) no-repeat left bottom/50%;
		padding: 80px 0 60px;
	}
	.sec09-table th {
		width: 30%;
		padding: 15px 0;
	}
	.sec09-table td {
		width: 70%;
		padding: 15px;
	}
	.sec09-table .notice {
		font-size: 1.2rem;
	}
	/*tab*/
	.tab-btn {
		gap: 10px;
		margin-bottom: 30px;
	}
	.tab-btn button {
		font-size: 1.3rem;
		padding: 4px 10px;
		min-width: 100px;
	}
}
/*sec10*/
.sec10 {
	background: var(--color_tertiary);
	padding: 130px 0;
}

.sec10-ttl {
	font-size: 1.6rem;
	font-weight: 500;
	padding: 0 0 0 65px;
	position: relative;
	margin-bottom: 70px;
}
.sec10-ttl:before {
	content: "";
	display: block;
	width: 52px;
	height: 1px;
	background: #717171;
	position: absolute;
	left: 0;
	top: 13px;
}

.sec10-box {
	background: #fff;
	border-radius: 15px;
	padding: 60px;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 235px 20px minmax(0, 1fr);
	grid-template-columns: 235px minmax(0, 1fr);
	gap: 0 20px;
	margin-bottom: 100px;
}
.sec10-box .box-ttl {
	font-size: 1.9rem;
	font-weight: 500;
}
.sec10-box .box-txt {
	font-family: var(--font_jp);
	font-size: 1.5rem;
	padding: 0 0 40px;
	margin: 0 0 40px;
	border-bottom: 1px solid #DBD7CA;
}
.sec10-box .box-txt p + p {
	margin-top: 30px;
}

.dl-contact {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 160px 20px 1fr;
	grid-template-columns: 160px 1fr;
	gap: 30px 20px;
	font-family: var(--font_jp);
	font-size: 1.4rem;
}
.dl-contact dt {
	color: #959595;
	font-size: 1.5rem;
}
.dl-contact .tel .tel-link {
	font-family: var(--font_base);
}
.dl-contact .tel .small {
	font-size: 1.3rem;
}

@media (max-width: 800px) {
	.sec10 {
		padding: 60px 0;
	}
	.sec10-ttl {
		margin-bottom: 40px;
	}
	.sec10-box {
		background: #fff;
		border-radius: 15px;
		padding: 25px;
		display: block;
		margin-bottom: 60px;
	}
	.sec10-box .box-ttl {
		margin-bottom: 15px;
	}
	.sec10-box .box-txt {
		font-size: 1.4rem;
		padding: 0 0 30px;
		margin: 0 0 30px;
	}
	.sec10-box .box-txt p + p {
		margin-top: 15x;
	}
	.dl-contact {
		display: block;
	}
	.dl-contact dt {
		margin-bottom: 10px;
	}
	.dl-contact dd + dt {
		margin-top: 30px;
	}
}
/*-----------------------------------------------------------
footer
-----------------------------------------------------------*/
.footer {
	padding: 50px 0 50px 32%;
	position: relative;
}
.footer:before {
	content: "";
	display: block;
	width: 32%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: url(../images/share/footer_bg.jpg) no-repeat center/cover;
}

.f-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 0 5%;
	margin: 0 auto 150px;
	max-width: 1024px;
	width: 90%;
}

.f-logo {
	margin-bottom: 30px;
}

.f-access {
	font-size: 1.5rem;
	margin-bottom: 30px;
}
.f-access .small {
	font-size: 1.2rem;
}

.f-time dt {
	color: #717171;
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 10px;
}
.f-time dd {
	border-left: 1px solid #ccc;
	font-size: 1.5rem;
	padding: 0 0 0 15px;
}

.sitemap ul {
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
	-webkit-column-gap: 30px;
	-moz-column-gap: 30px;
	column-gap: 30px;
}
.sitemap ul > li {
	-webkit-column-break-inside: avoid;
	-moz-column-break-inside: avoid;
	break-inside: avoid;
	margin-bottom: 15px;
}
.sitemap ul > li > a,
.sitemap ul > li > .no-link {
	font-size: 1.5rem;
	padding: 0 0 2px;
	position: relative;
	background: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor)) no-repeat bottom right/0 1px;
	background: linear-gradient(currentColor, currentColor) no-repeat bottom right/0 1px;
	-webkit-transition: background-size 0.3s ease-out;
	transition: background-size 0.3s ease-out;
}
@media (hover: hover) {
	.sitemap ul > li > a:is(:hover, :focus),
	.sitemap ul > li > .no-link:is(:hover, :focus) {
		background-size: 100% 1px;
		background-position: bottom left;
	}
}

.f-logo02 {
	text-align: right;
	padding: 0 5%;
}
.f-logo02 .txt {
	font-size: 2.5rem;
	font-weight: 500;
}

.copyright {
	color: #717171;
	text-align: right;
	font-size: 1.3rem;
	font-family: var(--font_base);
	margin-top: 25px;
	padding: 0 5%;
}

@media (max-width: 800px) {
	/*-----------------------------------------------------------
	footer SP
	-----------------------------------------------------------*/
	.footer {
		padding: 0 0 40px;
	}
	.footer:before {
		width: 100%;
		height: 50vw;
		position: static;
		margin: 0 0 40px;
	}
	.f-wrapper {
		display: block;
		margin: 0 auto 70px;
	}
	.f-wrapper .f-item01 {
		margin-bottom: 50px;
	}
	.f-logo {
		margin-bottom: 30px;
		text-align: center;
	}
	.sitemap ul {
		-webkit-column-gap: 0;
		-moz-column-gap: 0;
		column-gap: 0;
	}
	.sitemap ul > li {
		margin-bottom: 10px;
	}
	.sitemap ul > li > a,
	.sitemap ul > li > .no-link {
		font-size: 1.4rem;
	}
	.f-logo02 .txt {
		font-size: 4.375vw;
	}
	.copyright {
		padding: 0 5% 65px;
	}
}
/*-----------------------------------------------------------
under
-----------------------------------------------------------*/
.u-contents p + p {
	margin-top: 15px;
}

/*------------
パンくず
--------------*/
.breadcrumb {
	margin: 15px 0 55px;
	width: 100%;
}
.breadcrumb ul {
	margin-inline: auto;
	max-width: 1024px;
	width: 90%;
}
.breadcrumb ul li {
	color: #888;
	font-size: 1.3rem;
	display: inline;
}
.breadcrumb ul li a {
	text-decoration: underline;
}
@media (hover: hover) {
	.breadcrumb ul li a:is(:hover, :focus) {
		text-decoration: none;
	}
}
.breadcrumb ul li + li:before {
	content: "> ";
	padding: 0 5px;
	color: #ccc;
}

@media (max-width: 800px) {
	.breadcrumb {
		margin: 15px 0 30px;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
	}
	.breadcrumb ul {
		margin-inline: auto;
		max-width: 1024px;
		width: 90%;
	}
}
/*------------
page ttl
--------------*/
.page-ttl {
	height: 500px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4))), url(../images/under/page-ttl.jpg) no-repeat center/cover;
	background: linear-gradient(rgba(0, 0, 0, 0.4)), url(../images/under/page-ttl.jpg) no-repeat center/cover;
	text-align: center;
	color: #fff;
}
.page-ttl .ttl {
	font-size: 4.5rem;
}
.page-ttl .en {
	font-size: 2rem;
}

@media (max-width: 800px) {
	.page-ttl {
		height: 180px;
	}
	.page-ttl .ttl {
		font-size: 2.5rem;
	}
	.page-ttl .en {
		font-size: 1.6rem;
	}
}
/*------------
見出し
--------------*/
.u-h2,
.postdata h2 {
	font-size: 3rem;
	font-weight: 500;
	padding: 0 0 25px;
	margin: 0 0 40px;
	position: relative;
}
.u-h2::after,
.postdata h2::after {
	content: "";
	background: var(--color_secondary);
	width: 40px;
	height: 3px;
	position: absolute;
	bottom: 0;
	left: 0;
}

.u-h3,
.postdata h3 {
	border-bottom: 2px solid #DBD7CA;
	font-size: 2.2rem;
	font-weight: 500;
	padding: 0 0 10px;
	margin: 0 0 30px;
	position: relative;
}
.u-h3::after,
.postdata h3::after {
	content: "";
	background: var(--color_primary);
	width: 70px;
	height: 2px;
	position: absolute;
	bottom: -2px;
	left: 0;
}

.u-h4,
.postdata h4 {
	font-size: 2rem;
	font-weight: 500;
	padding: 0 0 0 20px;
	margin: 0 0 20px;
	position: relative;
}
.u-h4::before,
.postdata h4::before {
	content: "";
	background: #FFD1C1;
	width: 5px;
	height: 22px;
	position: absolute;
	top: 5px;
	left: 0;
}

@media (max-width: 800px) {
	.u-h2,
	.postdata h2 {
		font-size: 2.3rem;
		padding: 0 0 15px;
		margin: 0 0 30px;
	}
	.u-h2::after,
	.postdata h2::after {
		width: 25px;
	}
	.u-h3,
	.postdata h3 {
		font-size: 2rem;
		padding: 0 0 10px;
		margin: 0 0 20px;
	}
	.u-h3::after,
	.postdata h3::after {
		width: 50px;
	}
	.u-h4,
	.postdata h4 {
		font-size: 1.8rem;
		padding: 0 0 0 18px;
		margin: 0 0 15px;
	}
	.u-h4::before,
	.postdata h4::before {
		height: 17px;
		top: 5px;
	}
}
/*------------
section
--------------*/
.x-short + .x-short {
	margin-top: 40px;
}

.short + .short {
	margin-top: 60px;
}

.tall {
	margin: 0 0 90px;
}

@media (max-width: 800px) {
	.short + .short {
		margin-top: 40px;
	}
	.tall {
		margin: 0 0 60px;
	}
}
/*------------
column
--------------*/
.col2,
.col2-col2,
.col3,
.col3-col2,
.col4,
.col4-col2 {
	display: -ms-grid;
	display: grid;
}

.col2,
.col2-col2 {
	-ms-grid-columns: 1fr 30px 1fr;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.col3,
.col3-col2 {
	-ms-grid-columns: 1fr 30px 1fr 30px 1fr;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.col4,
.col4-col2 {
	-ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px 30px;
}

@media (max-width: 800px) {
	.col2,
	.col3,
	.col4 {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.col2-col2,
	.col3-col2,
	.col4-col2 {
		-ms-grid-columns: 1fr 20px 1fr;
		grid-template-columns: repeat(2, 1fr);
		gap: 15px 20px;
	}
}
/*------------
list
--------------*/
.list-disc li {
	position: relative;
	padding: 0 0 0 15px;
}
.list-disc li:before {
	background: var(--color_primary);
	border-radius: 50%;
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0.8em;
	width: 5px;
	height: 5px;
}
.list-disc li + li {
	margin-top: 3px;
}

.list-decimal {
	padding-left: 22px;
}
.list-decimal li {
	list-style: decimal;
}
.list-decimal li + li {
	margin-top: 3px;
}

.list-col2 {
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
}

.list-col3 {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
}

@media (max-width: 800px) {
	.list-disc li:before {
		top: 0.7em;
	}
	.list-col2 {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
	}
	.list-col3 {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
	}
}
/*------------
特定のページにしか使わないスタイルは
ページ名で区切る
--------------*/
/*------------
sidebar-layout
--------------*/
.sidebar-layout {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-inline: auto;
	padding: 0 0 90px;
	max-width: 1400px;
}

.main-contents {
	padding: 0 70px;
	width: calc(100% - 220px);
	max-width: 1200px;
	margin: 0 auto;
}

.side-contents {
	padding: 0 40px;
	width: 220px;
}

.side-contents-wrapper {
	position: sticky;
	top: 110px;
}

.side-contents-ttl {
	border-bottom: 1px solid var(--color_border);
	font-size: 1.5rem;
	font-weight: 500;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.side-area-item + .side-area-item {
	margin-top: 30px;
}

.side-area-item-ttl {
	font-size: 1.3rem;
	margin-bottom: 7px;
}

.side-area-links li {
	padding-left: 20px;
	position: relative;
	font-size: 1.5rem;
}

.side-area-links li::before {
	content: "";
	border-style: solid;
	border-width: 4px 0 4px 5px;
	border-color: transparent transparent transparent var(--color_text);
	position: absolute;
	top: 11px;
	left: 0;
}

.side-area-links li + li {
	margin-top: 5px;
}

.side-area-links a {
	display: inline-block;
}

@media (hover: hover) {
	.side-area-links a:hover,
	.side-area-links a:focus {
		text-decoration: underline;
	}
}
.category-ttl {
	font-size: 1.8rem;
	font-weight: 500;
	margin-bottom: 15px;
}

@media (max-width: 800px) {
	.sidebar-layout {
		display: block;
		padding: 0 5vw 50px;
		width: 100%;
	}
	.main-contents {
		width: 100%;
		padding: 0;
	}
	.side-contents {
		width: 100%;
		padding: 0;
		margin: 0 0 50px;
	}
}
/*------------
投稿パーツ
--------------*/
/*TOP投稿 top-post-news*/
.top-post-news .article a {
	display: block;
	padding: 15px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.top-post-news .article.no-post {
	padding: 15px;
}
.top-post-news .article time {
	color: #717171;
	font-size: 1.5rem;
	margin-right: 40px;
}
.top-post-news .article .category {
	border: 1px solid #B2B2B2;
	color: #717171;
	display: inline-block;
	font-size: 1.2rem;
	line-height: 1;
	padding: 5px 8px;
	margin: 0 10px 0 0;
}
.top-post-news .article .ttl {
	font-size: 1.6rem;
	margin-left: 40px;
}
@media (hover: hover) {
	.top-post-news .article a:is(:hover, :focus) {
		background: var(--color_tertiary);
	}
}

@media (max-width: 800px) {
	.top-post-news .article a {
		white-space: normal;
		overflow: auto;
		text-overflow: unset;
		padding: 10px 0;
	}
	.top-post-news .article.no-post {
		padding: 10px 0;
	}
	.top-post-news .article time {
		margin-right: 10px;
	}
	.top-post-news .article .ttl {
		display: block;
		margin: 5px 0 0;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}
/*list-post-type01*/
.list-post-type01 {
	border-top: 1px solid var(--color_border);
}

.list-post-type01 > .article {
	border-bottom: 1px solid var(--color_border);
}

.list-post-type01 a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
	padding: 15px 35px 15px 0;
	position: relative;
}

.list-post-type01 a::before {
	content: "";
	width: 7px;
	height: 7px;
	border-top: 2px solid var(--color_secondary);
	border-right: 2px solid var(--color_secondary);
	position: absolute;
	top: 50%;
	right: 15px;
	-webkit-transform: translateY(50%) rotate(45deg);
	transform: translateY(50%) rotate(45deg);
}

@media (hover: hover) {
	.list-post-type01 a:is(:hover, :focus) {
		background-color: var(--color_tertiary);
	}
	.list-post-type01 a:is(:hover, :focus) .list-ttl {
		text-decoration: underline;
	}
}
.list-post-type01 .list-img {
	width: 150px;
	margin-right: 25px;
}

.list-post-type01 .list-img img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	border: 1px solid var(--color_border);
	height: 110px;
}

.list-post-type01 .list-desc {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	font-size: 1.4rem;
}

.list-post-type01 time {
	display: block;
	display: inline-block;
	color: #717171;
	font-size: 1.4rem;
	line-height: 1;
	margin-bottom: 10px;
}

.list-post-type01 .list-ttl {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.list-post-type01 .category {
	border: 1px solid #B2B2B2;
	color: #717171;
	display: inline-block;
	font-size: 1.1rem;
	line-height: 1;
	padding: 5px 8px;
	margin: 10px 10px 0 0;
}

.list-post-type01 .no-post {
	padding: 25px 0;
}

@media (max-width: 800px) {
	.list-post-type01 a {
		padding: 20px 25px 20px 0;
	}
	.list-post-type01 a::before {
		right: 0;
	}
	.list-post-type01 .list-img {
		width: 120px;
		margin-right: 20px;
	}
	.list-post-type01 .list-img img {
		height: 90px;
	}
	.list-post-type01 .list-desc {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}
	.list-post-type01 time {
		margin-bottom: 5px;
	}
	.list-post-type01 .list-ttl {
		font-size: 1.2rem;
	}
	.list-post-type01 .category {
		margin: 5px 10px 0 0;
	}
	.list-post-type01 .no-post {
		padding: 25px 0;
	}
}
/*詳細ページ*/
.l-post-single .l-ttl {
	font-size: 4rem;
	font-weight: 500;
	margin: 0 0 50px;
}
.l-post-single .post-data {
	margin: 0 0 20px;
}
.l-post-single .post-data time {
	display: inline-block;
	color: #717171;
	font-size: 1.4rem;
	line-height: 1;
	vertical-align: -1px;
	margin: 0 20px 0 0;
}
.l-post-single .post-data .category {
	border: 1px solid #B2B2B2;
	color: #717171;
	display: inline-block;
	font-size: 1.2rem;
	line-height: 1;
	padding: 5px 8px;
	margin: 0 10px 0 0;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

@media (max-width: 800px) {
	.l-post-single .l-ttl {
		font-size: 2.8rem;
		margin: 0 0 40px;
	}
}
/*postdata*/
.postdata {
	overflow-wrap: break-word;
}

.postdata .screen-reader-text {
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.postdata .screen-reader-text:focus {
	background-color: #eee;
	clip-path: none;
	color: #444;
	display: block;
	font-size: 1em;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

.postdata iframe {
	max-width: 100%;
}

.postdata p,
.postdata ul,
.postdata ol {
	margin-bottom: 15px;
}

.postdata a:not(.wp-block-button__link) {
	text-decoration: underline;
}

.postdata a:focus-visible {
	text-decoration: none;
}

.postdata strong {
	font-weight: bold;
}

.postdata em {
	font-style: italic;
}

.postdata ul li {
	position: relative;
	padding-left: 15px;
}

.postdata ul li:before {
	content: "";
	background: var(--color_primary);
	border-radius: 50%;
	display: block;
	position: absolute;
	left: 0;
	top: 1em;
	width: 5px;
	height: 5px;
}

.postdata ol {
	counter-reset: number;
}

.postdata ol li {
	padding-left: 3rem;
	position: relative;
}

.postdata ol li::before {
	background-color: var(--color_primary);
	border-radius: 15px;
	color: #fff;
	counter-increment: number;
	content: counter(number);
	font-size: 1.1rem;
	position: absolute;
	top: 0.7em;
	left: 0;
	line-height: 1.8em;
	text-align: center;
	width: 1.8em;
	height: 1.8em;
}

.postdata ol li > ol {
	counter-reset: number;
}

.postdata sub {
	font-size: 1.1rem;
	position: relative;
	bottom: -0.1em;
}

.postdata sup {
	font-size: 1.1rem;
	position: relative;
	top: -0.1em;
}

@media (any-hover: hover) {
	.postdata a:hover {
		text-decoration: none;
	}
}
.postdata sub {
	font-size: 1.1rem;
	position: relative;
	bottom: -0.1em;
}

.postdata .wp-block-button__link {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 0 15px;
	font-size: 1.6rem;
	padding: 0;
	background: none;
	color: currentColor;
	line-height: 1.1;
	position: relative;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.postdata .wp-block-button__link:after {
	content: "";
	display: block;
	background: url(../images/share/btn-arrow.svg) no-repeat center;
	width: 47px;
	height: 47px;
	border-radius: 50%;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 47px;
	flex: 0 0 47px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
@media (hover: hover) {
	.postdata .wp-block-button__link:is(:hover, :focus) {
		color: var(--color_primary);
	}
	.postdata .wp-block-button__link:is(:hover, :focus):after {
		-webkit-transform: translateX(5px);
		transform: translateX(5px);
	}
}

/*ページャー*/
.post-number {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 50px 0 0;
}
.post-number a {
	background: #eff2f5;
	color: var(--color_text);
	display: block;
	padding: 0 10px;
	margin: 0 5px 10px;
	line-height: 40px;
	text-align: center;
	min-width: 40px;
	text-decoration: none;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
@media (hover: hover) {
	.post-number a:is(:hover, :focus) {
		background: var(--color_primary);
		color: #fff;
	}
}
.post-number .current {
	background: var(--color_primary);
	color: #fff;
	display: block;
	margin: 0 5px 10px;
	line-height: 40px;
	text-align: center;
	min-width: 40px;
}

.post-number-single {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	line-height: 1;
	overflow: hidden;
	margin: 50px 0 0;
}
.post-number-single a {
	display: inline-block;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.post-number-single a.next {
	margin-top: 0;
}
.post-number-single a.next::before {
	content: "";
	background: url(../images/share/icon_arrow_post_left.svg) no-repeat center center/contain;
	display: inline-block;
	margin-right: 15px;
	width: 22px;
	height: 22px;
}
.post-number-single a.prev {
	margin-top: 0;
}
.post-number-single a.prev::after {
	content: "";
	background: url(../images/share/icon_arrow_post_right.svg) no-repeat center center/contain;
	display: inline-block;
	margin-left: 15px;
	width: 22px;
	height: 22px;
}
.post-number-single a.all {
	padding: 2px 0 0;
}
@media (hover: hover) {
	.post-number-single a:hover, .post-number-single a:focus {
		opacity: 0.5;
	}
}

/*-----------------------------------------------------------
common
-----------------------------------------------------------*/
.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

.fade {
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
@media (hover: hover) {
	.fade:is(:hover, :focus) {
		opacity: 0.5;
	}
}

.bold,
strong {
	font-weight: bolder;
}

.marker {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #ffe7a5));
	background: linear-gradient(transparent 50%, #ffe7a5 50%);
}

.red {
	color: #F44336;
}

.notice {
	font-size: 1.3rem;
	text-indent: -1em;
	padding: 0 0 0 1.5em;
}

.sp-map iframe,
.sp-map object,
.sp-map embed {
	vertical-align: top;
}

.youtube {
	width: 100%;
	aspect-ratio: 16/9;
}

.youtube iframe {
	width: 100% !important;
	height: 100% !important;
}

.mb0 {
	margin-bottom: 0 !important;
}

.mb5 {
	margin-bottom: 5px !important;
}

.mb40 {
	margin-bottom: 40px !important;
}

.mbS {
	margin-bottom: 15px !important;
}

.mbM {
	margin-bottom: 30px !important;
}

.mbL {
	margin-bottom: 60px !important;
}

.mt0 {
	margin-top: 0 !important;
}

.tac {
	text-align: center;
}

.tar {
	text-align: right;
}

.tal {
	text-align: left;
}

@media (max-width: 800px) {
	/*-----------------------------------------------------------
	common SP
	-----------------------------------------------------------*/
	.pc-only {
		display: none;
	}
	.sp-only {
		display: block;
	}
	.sp-tac {
		text-align: center !important;
	}
	.sp-tar {
		text-align: right !important;
	}
	.sp-tal {
		text-align: left !important;
	}
	.mbL {
		margin-bottom: 30px !important;
	}
	.sp-map {
		position: relative;
		padding-bottom: 56.25%;
		padding-top: 30px;
		height: 0;
		overflow: hidden;
	}
	.sp-map iframe,
	.sp-map object,
	.sp-map embed {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
}
/*------------
btn
--------------*/
/*btn-style01 */
.btn-style01 {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 0 15px;
	font-size: 1.6rem;
	line-height: 1.1;
	position: relative;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.btn-style01:after {
	content: "";
	display: block;
	background: url(../images/share/btn-arrow.svg) no-repeat center;
	width: 47px;
	height: 47px;
	border-radius: 50%;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 47px;
	flex: 0 0 47px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
@media (hover: hover) {
	.btn-style01:is(:hover, :focus) {
		color: var(--color_primary);
	}
	.btn-style01:is(:hover, :focus):after {
		-webkit-transform: translateX(5px);
		transform: translateX(5px);
	}
}

.tel-link {
	display: inline-block;
	font-size: 2.6rem;
	font-weight: 500;
	line-height: 1;
}
.tel-link:before {
	content: ""/"Tel";
	background: url(../images/share/icon_tel.svg) no-repeat center/contain;
	width: 19px;
	height: 19px;
	display: inline-block;
	margin-right: 5px;
}

.btn-wrap {
	margin-top: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 15px 20px;
}
.btn-wrap.tac {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.btn-wrap.tar {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

@media (max-width: 800px) {
	.btn-wrap {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 15px;
	}
}
/*-----------------------------------------------------------
アニメーション
-----------------------------------------------------------*/
.is-fade {
	opacity: 0;
	-webkit-transition: 0.7s;
	transition: 0.7s;
	-webkit-transform: translate(0, 15%);
	transform: translate(0, 15%);
}

.is-fade.is-action {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}

.is-blur {
	opacity: 0;
	-webkit-transition: 0.8s;
	transition: 0.8s;
	-webkit-filter: blur(10px);
	filter: blur(10px);
}

.is-blur.is-action {
	opacity: 1;
	-webkit-filter: blur(0);
	filter: blur(0);
}

.is-card > .card-item {
	opacity: 0;
	-webkit-transition: 0.7s;
	transition: 0.7s;
	-webkit-transform: translate(0, 15%);
	transform: translate(0, 15%);
}
.is-card > .card-item:nth-child(2) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}
.is-card > .card-item:nth-child(3) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.is-card > .card-item:nth-child(4) {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
.is-card > .card-item:nth-child(5) {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}
.is-card > .card-item:nth-child(6) {
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}
.is-card.is-action > .card-item {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}

/*-----------------------------------------------------------
splide
-----------------------------------------------------------*/
/*各種色設定*/
:root {
	--splide-arrow-color: #29B7B1;
	/*矢印*/
	--splide-focus-color: #29B7B1;
	/*タブ移動によるフォーカス時のアウトライン*/
	--splide-pagination-color: #29B7B1;
	/*アクティブ時のページネーション*/
	--splide-progress-color: #FF9774;
	/*プログレスバー*/
	--splide-toggle-color:#29B7B1;
	/*再生ボタン*/
	--splide-track-color: #29B7B1;
	/*サムネイルの枠*/
}

.splide__container {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}

.splide__list {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
	display: block;
}

.splide__pagination {
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
	margin: 0;
	pointer-events: none;
}

.splide__pagination li {
	display: inline-block;
	line-height: 1;
	list-style-type: none;
	margin: 0;
	pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
	display: none;
}

.splide__progress {
	background: #EAE7DF;
	margin-top: 10px;
}

.splide__progress__bar {
	width: 0;
}

.splide {
	position: relative;
	visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
	visibility: visible;
}

.splide__slide {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	list-style-type: none !important;
	margin: 0;
	position: relative;
}

.splide__slide img {
	vertical-align: bottom;
}

.splide__spinner {
	-webkit-animation: splide-loading 1s linear infinite;
	animation: splide-loading 1s linear infinite;
	border: 2px solid #999;
	border-left-color: transparent;
	border-radius: 50%;
	bottom: 0;
	contain: strict;
	display: inline-block;
	height: 20px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 20px;
}

.splide__sr {
	clip: rect(0 0 0 0);
	border: 0;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
	display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
	display: inline;
}

.splide__controls {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 15px;
}

.splide__controls .splide__pagination {
	position: static;
}

.splide__track {
	overflow: hidden;
	position: relative;
	z-index: 0;
}

@-webkit-keyframes splide-loading {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

@keyframes splide-loading {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}
.splide__track--draggable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
	margin: 0 !important;
	opacity: 0;
	z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
	opacity: 1;
	z-index: 1;
}

.splide--rtl {
	direction: rtl;
}

.splide__track--ttb > .splide__list {
	display: block;
}

.splide__arrow {
	background: url(../images/share/splide-arrow.svg) no-repeat center/contain;
	border: none;
	cursor: pointer;
	width: 56px;
	height: 56px;
	opacity: 1;
	padding: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 1;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

.splide__arrow svg {
	display: none;
}

.splide__arrow:hover:not(:disabled) {
	opacity: 0.3;
}

.splide__arrow:disabled {
	opacity: 0.3;
}

.splide__arrow:focus-visible {
	outline: 3px solid var(--splide-focus-color);
	outline-offset: 3px;
}

.splide__arrow--prev {
	left: 20px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	scale: -1;
}

.splide__arrow--next {
	right: 20px;
}

.splide.is-focus-in .splide__arrow:focus {
	outline: 3px solid var(--splide-focus-color);
	outline-offset: 3px;
}

.splide__pagination {
	bottom: 15px;
	left: 0;
	padding: 0;
	position: absolute;
	right: 0;
	z-index: 1;
}

.splide__pagination__page {
	background: #EAE7DF;
	border: 0;
	display: inline-block;
	height: 6px;
	margin: 5px;
	opacity: 1;
	padding: 0;
	position: relative;
	-webkit-transition: 0.2s linear;
	transition: 0.2s linear;
	width: 30px;
}

.splide__pagination__page.is-active {
	background: var(--splide-pagination-color);
	z-index: 1;
}

.splide__pagination__page:hover {
	cursor: pointer;
	opacity: 0.9;
}

.splide__pagination__page:focus-visible {
	outline: 3px solid var(--splide-focus-color);
	outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
	outline: 3px solid var(--splide-focus-color);
	outline-offset: 3px;
}

.splide__progress__bar {
	background: var(--splide-progress-color);
	height: 6px;
}

.splide__slide {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
	outline: 0;
}

@supports (outline-offset: -3px) {
	.splide__slide:focus-visible {
		outline: 3px solid var(--splide-focus-color);
		outline-offset: -3px;
	}
}
@supports (outline-offset: -3px) {
	.splide.is-focus-in .splide__slide:focus {
		outline: 3px solid var(--splide-focus-color);
		outline-offset: -3px;
	}
}
.splide__toggle {
	border: 0;
	padding: 0;
	cursor: pointer;
	background: #737e80;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 10px;
	-webkit-transition: background-color 0.2s ease;
	transition: background-color 0.2s ease;
	height: 29px;
	width: 29px;
}

.splide__toggle:hover {
	background: var(--splide-toggle-color);
}

.splide__toggle svg {
	fill: #fff;
	-webkit-transition: fill 0.2s ease;
	transition: fill 0.2s ease;
	width: 12px;
	height: auto;
}

.splide__toggle:focus-visible {
	outline: 3px solid var(--splide-focus-color);
	outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
	outline: 3px solid var(--splide-focus-color);
	outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
	border: 3px solid transparent;
	cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
	border: 3px solid var(--splide-track-color);
}

.splide__arrows--rtl .splide__arrow--prev {
	left: auto;
	right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
	left: 1em;
	right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
	left: 50%;
	-webkit-transform: translate(-50%);
	transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
	top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
	bottom: 1em;
	top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.splide__pagination--ttb {
	bottom: 0;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	left: auto;
	padding: 1em 0;
	right: 0.5em;
	top: 0;
}

.custom-controls {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 0 40px;
}
.custom-controls .splide__pagination {
	position: static;
}
.custom-controls .splide__pagination__page {
	margin: 0;
	width: 50px;
}
.custom-controls .splide__arrow {
	position: static;
	-webkit-transform: none;
	transform: none;
}
.custom-controls .splide__arrow + .splide__arrow {
	margin-left: 17px;
}

@media (max-width: 800px) {
	.splide__arrow {
		width: 30px;
		height: 30px;
	}
	.splide__arrow--prev {
		left: 10px;
	}
	.splide__arrow--next {
		right: 10px;
	}
}
/*独立コントローラー*/
.splide-controller {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
	margin: 40px auto 0;
	max-width: 1200px;
	width: 90%;
}
.splide-controller .splide__pagination {
	position: static;
}
.splide-controller .splide__pagination .splide__pagination__page {
	margin: 0;
	width: 50px;
}
.splide-controller .splide__arrow--prev, .splide-controller .splide__arrow--next {
	position: static;
	-webkit-transform: none;
	transform: none;
}
.splide-controller .splide__arrow--next {
	margin-left: 25px;
}

@media (max-width: 800px) {
	.splide-controller {
		gap: 20px;
		margin: 30px auto 0;
	}
	.splide-controller .splide__pagination .splide__pagination__page {
		width: 30px;
		height: 4px;
		display: block;
	}
	.splide-controller .splide__arrow--next {
		margin-left: 10px;
	}
}
