@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,500;1,14..32,500&family=Noto+Sans+JP:wght@400;700&family=Zen+Maru+Gothic:wght@400;500&display=swap");
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

body {
	line-height: 1;
}

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

ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

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

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

/* change colours to suit your needs */
ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

/* change colours to suit your needs */
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}

input, select {
	vertical-align: middle;
}

:root {
	--rd-lg: 100px;
	--rd-md: 20px;
	--rd-sm: 10px;
	--rd-ss: 5px;
	--fs-lg1: 6rem;
	--fs-lg2: 4.8rem;
	--fs-lg3: 3.6rem;
	--fs-lg4: 2.4rem;
	--fs-md1: 2rem;
	--fs-md2: 1.8rem;
	--fs-md3: 1.6rem;
	--fs-sm1: 1.4rem;
}

@media screen and (max-width: 1200px) {
	:root {
		--rd-lg: 100px;
		--rd-md: 20px;
		--rd-sm: 10px;
		--fs-lg1: 4.8rem;
		--fs-lg2: 4rem;
		--fs-lg3: 2.8rem;
		--fs-lg4: 2rem;
		--fs-md1: 2rem;
		--fs-md2: 1.8rem;
		--fs-md3: 1.6rem;
		--fs-sm1: 1.4rem;
	}
}
@media screen and (max-width: 960px) {
	:root {
		--rd-lg: 50px;
		--rd-md: 10px;
		--rd-sm: 5px;
		--fs-lg1: 3.6rem;
		--fs-lg2: 3rem;
		--fs-lg3: 2.4rem;
		--fs-lg4: 1.8rem;
		--fs-md1: 1.8rem;
		--fs-md2: 1.6rem;
		--fs-md3: 1.4rem;
		--fs-sm1: 1.3rem;
	}
}
@media screen and (min-width: 961px) {
	.sp-view {
		display: none;
	}
}
@media screen and (max-width: 960px) {
	.pc-view {
		display: none;
	}
	.keep {
		display: inline !important;
	}
}
.ta-l {
	text-align: left;
}

.ta-c {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.ta-r {
	text-align: right;
}

.col-2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 60px;
}
.col-2 > * {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.col-2 > figure {
	border-radius: var(--rd-md);
	overflow: hidden;
}

.col-3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 60px;
}
.col-3 > * {
	width: calc((100% - 120px) / 3);
}
.col-3 > figure {
	border-radius: var(--rd-md);
	overflow: hidden;
}

.mb-40 {
	margin-bottom: 40px;
}

.mb-80 {
	margin-bottom: 80px;
}

@media screen and (max-width: 1200px) {
	.col-3 {
		gap: 40px;
	}
	.col-3 > * {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 auto;
		        flex: 0 0 auto;
		width: calc(50% - 20px);
	}
}
@media screen and (max-width: 640px) {
	.col-2 {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.col-3 > * {
		width: 100%;
	}
}
/* HEADER **********************************************************************************/
header {
	position: fixed;
	width: 100%;
	height: 104px;
	left: 0;
	top: 0;
	font-weight: 500;
	font-size: 1.8rem;
	background-color: #fff;
	padding: 0 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	z-index: 10;
}
.home header {
	background-color: transparent;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
header .header-content {
	width: 100%;
}
header .header-content__scroll {
	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;
}
header .header-content__logo {
	margin-top: -2px;
}
.home header .header-content__logo {
	display: none;
}
header .header-content__logo__sp {
	display: none;
}
header .header-content__menu {
	margin-left: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 64px;
	border-radius: 32px;
	gap: 40px;
	padding: 0 50px;
	background-color: #fff;
}
header .header-content__menu a {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 10px;
	margin-bottom: 4px;
	line-height: 1.4;
}
header .header-content__menu a::before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 4px;
}
header .header-content__menu a.yellow::before {
	background-color: #D1E54E;
}
header .header-content__menu a.blue::before {
	background-color: #008DCB;
}
header .header-content__menu a.pink::before {
	background-color: #E54F72;
}
header .header-content__menu a.green::before {
	background-color: #2E9E73;
}
header .header-content__menu a::after {
	content: "";
	display: block;
	height: 2px;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: -5px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	-webkit-transform: scaleX(0);
	    -ms-transform: scaleX(0);
	        transform: scaleX(0);
	-webkit-transform-origin: left;
	    -ms-transform-origin: left;
	        transform-origin: left;
}
header .header-content__menu a.yellow::after {
	background-color: #D1E54E;
}
header .header-content__menu a.blue::after {
	background-color: #008DCB;
}
header .header-content__menu a.pink::after {
	background-color: #E54F72;
}
header .header-content__menu a.green::after {
	background-color: #2E9E73;
}
header .header-content__menu a:hover::after {
	-webkit-transform: scaleX(1);
	    -ms-transform: scaleX(1);
	        transform: scaleX(1);
}
header .header-content__menu a.current::after {
	-webkit-transform: scaleX(1);
	    -ms-transform: scaleX(1);
	        transform: scaleX(1);
}
header .header-content__contact {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 200px;
	        flex: 0 1 200px;
	height: 64px;
	margin-left: 20px;
	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;
	border-radius: 64px;
	background-color: #E54F72;
	color: #fff;
}
header .header-content__contact:hover {
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
	-webkit-box-shadow: 0 1px 2px rgba(229, 79, 114, 0.15), 0 3px 10px rgba(229, 79, 114, 0.3);
	        box-shadow: 0 1px 2px rgba(229, 79, 114, 0.15), 0 3px 10px rgba(229, 79, 114, 0.3);
}

.hamburger {
	display: none;
	position: fixed;
	right: 30px;
	top: 30px;
	width: 32px;
	height: 33px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
	z-index: 10;
}
.hamburger span {
	display: inline-block;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #000;
}
.hamburger span:nth-of-type(1) {
	top: 0px;
}
.hamburger span:nth-of-type(2) {
	top: 16px;
}
.hamburger span:nth-of-type(3) {
	bottom: 0px;
}
.hamburger.active span {
	background-color: #000;
}
.hamburger.active span:nth-of-type(1) {
	-webkit-transform: translateY(16px) rotate(-45deg);
	-ms-transform: translateY(16px) rotate(-45deg);
	    transform: translateY(16px) rotate(-45deg);
}
.hamburger.active span:nth-of-type(2) {
	opacity: 0;
}
.hamburger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-16px) rotate(45deg);
	-ms-transform: translateY(-16px) rotate(45deg);
	    transform: translateY(-16px) rotate(45deg);
}
.hamburger.active ~ .header-content {
	-webkit-transform: translateY(0) !important;
	    -ms-transform: translateY(0) !important;
	        transform: translateY(0) !important;
	pointer-events: auto;
}

@media screen and (max-width: 1400px) {
	body:not(.home) header {
		padding: 0 20px;
	}
	body:not(.home) header .header-content__menu {
		padding: 0;
		gap: 30px;
	}
	body:not(.home) header .header-content__contact {
		-ms-flex-preferred-size: 160px;
		    flex-basis: 160px;
	}
}
@media screen and (max-width: 1200px) {
	body:not(.home) header {
		padding: 0;
	}
	body:not(.home) header .header-content__menu {
		gap: 0;
	}
	body:not(.home) header .header-content__contact {
		-ms-flex-preferred-size: auto;
		    flex-basis: auto;
	}
	header {
		padding: 0;
		position: fixed;
		pointer-events: none;
		height: 83px;
		background: transparent;
		-webkit-box-align: start !important;
		    -ms-flex-align: start !important;
		        align-items: flex-start !important;
	}
	header .header-content {
		-webkit-transition: 0.3s;
		transition: 0.3s;
		width: 100%;
		-webkit-transform: translate(100%, 0) !important;
		    -ms-transform: translate(100%, 0) !important;
		        transform: translate(100%, 0) !important;
		background-color: rgba(255, 255, 255, 0.8);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		height: 100vh;
		max-height: 100vh;
		overflow-y: scroll;
	}
	header .header-content__logo {
		display: block !important;
		text-align: center;
		width: 100%;
		margin-bottom: 40px;
	}
	header .header-content__logo a {
		padding: 0;
		text-align: center;
		display: block;
	}
	header .header-content__logo a img {
		max-width: 80%;
	}
	header .header-content__logo__sp {
		position: absolute;
		display: block;
		left: 20px;
		top: 22px;
		width: 200px;
	}
	header .header-content__scroll {
		height: 100vh;
		width: 100vw;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: start;
	}
	header .header-content__menu {
		background-color: transparent;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		margin-right: auto;
		height: auto;
		padding: 0;
		gap: 0;
	}
	header .header-content__contact {
		width: 360px;
		max-width: 100%;
		-ms-flex-preferred-size: auto;
		    flex-basis: auto;
		margin: 40px auto 0;
	}
	header nav {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		padding: 60px 30px;
	}
	header nav a {
		font-size: 2rem;
		color: #000;
		padding: 15px 20px;
	}
	header nav a::after {
		content: none !important;
	}
	header nav a.ig {
		margin-left: 0;
		padding: 15px 20px;
	}
	header nav a.rsv {
		margin: 25px auto;
		color: #fff;
		padding: 12px 12px 10px;
	}
	.hamburger {
		opacity: 1;
		pointer-events: auto;
		display: block;
		pointer-events: auto;
		right: 25px;
		top: 25px;
		-webkit-transform: translateY(0) !important;
		    -ms-transform: translateY(0) !important;
		        transform: translateY(0) !important;
	}
	.hamburger.active ~ .header-content {
		-webkit-transform: translate(0, 0) !important;
		    -ms-transform: translate(0, 0) !important;
		        transform: translate(0, 0) !important;
	}
	.hamburger.active ~ .header-content nav {
		pointer-events: auto;
	}
}
/* SUBMENU **********************************************************************************/
.submenu {
	margin-top: -150px;
	margin-bottom: 120px;
	-webkit-box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
	        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
	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;
	padding: 25px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 20px 40px;
	background-color: #fff;
}
.submenu a {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 10px;
	line-height: 1.4;
}
.submenu a::before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 4px;
	background-color: #D1E54E;
}
.submenu a:hover {
	opacity: 0.5;
}

/* FOOTER **********************************************************************************/
footer {
	background-color: #8CC2E9;
	color: #fff;
	font-weight: 500;
	border-top-left-radius: var(--rd-lg);
	border-top-right-radius: var(--rd-lg);
	padding-bottom: 80px;
	font-size: var(--fs-md3);
}
footer a {
	color: #fff;
}
footer a:hover {
	opacity: 0.5;
}
footer nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 60px;
	border-bottom: 1px solid #fff;
	width: 100%;
	padding: 30px 0;
}
footer .footer-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 80px;
	width: 1360px;
	padding: 0 40px;
	max-width: 100%;
	margin: 0 auto;
}
footer .footer-inner > figure {
	-ms-flex-preferred-size: calc(50% - 40px);
	    flex-basis: calc(50% - 40px);
}
footer .footer-txt {
	-ms-flex-preferred-size: calc(50% - 40px);
	    flex-basis: calc(50% - 40px);
	max-width: 100%;
}
footer .footer-txt .footer-logo {
	width: 414px;
	max-width: 80%;
	margin-bottom: 40px;
}
footer .footer-txt .footer-sub {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 10px;
}
footer .footer-txt small {
	display: block;
	width: 100%;
	text-align: right;
	margin-top: 40px;
}

@media screen and (max-width: 960px) {
	.submenu {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
	}
	footer nav {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		gap: 10px;
	}
	footer .footer-inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		gap: 60px;
		padding: 0 20px;
	}
	footer .footer-inner > figure {
		width: 480px;
		max-width: 100%;
	}
	footer .footer-txt .footer-logo {
		margin-right: auto;
		margin-left: auto;
		margin-bottom: 40px;
	}
	footer .footer-txt .footer-sub {
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	footer .footer-txt small {
		text-align: center;
	}
}
/***************************************************************************************
* TOP
****************************************************************************************/
/* MV **********************************************************************************/
.mv {
	margin-top: 80px;
}
.mv .sec-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.mv__img {
	margin-right: -60px;
}
.mv__txt figure {
	margin-bottom: 60px;
	margin-right: 40px;
}
.mv__txt span {
	font-size: var(--fs-lg2);
	color: #fff;
	font-weight: 500;
	display: inline;
	background: #423B9B;
	padding: 0;
	line-height: 1.6;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	/* ベンダープレフィックス */
}

@media screen and (max-width: 960px) {
	.mv .sec-inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.mv__img {
		margin-right: auto;
		margin-left: auto;
	}
	.mv__txt {
		text-align: center;
		margin-bottom: 40px;
	}
	.mv__txt figure {
		margin-right: auto;
		margin-left: auto;
		margin-bottom: 30px;
		max-width: 80%;
	}
	.mv__txt span {
		font-size: min(var(--fs-lg2), 6.8965517241vw);
	}
}
/* WHAT'S **********************************************************************************/
.whats .sec-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 60px;
}
.whats h2 {
	text-align: left;
}
.whats__img {
	-ms-flex-preferred-size: 50%;
	    flex-basis: 50%;
}
.whats__txt {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}

@media screen and (max-width: 960px) {
	.whats .sec-inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}
	.whats h2 {
		text-align: center;
	}
}
/* SOLUTION **********************************************************************************/
.solution {
	text-align: center;
}
.solution .sec-inner h2 {
	width: 100%;
}
.solution__wrap {
	padding-top: 90px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 80px;
}
.solution__wrap__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	width: 600px;
	gap: 40px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.solution__wrap__item p {
	font-size: var(--fs-md1);
	font-weight: 500;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.solution__wrap__item figure {
	position: relative;
	width: 100%;
	text-align: right;
}
.solution__wrap__item figure figcaption {
	position: absolute;
	left: 0;
	top: -90px;
	width: 50%;
	aspect-ratio: 1/1;
	border-radius: 150px;
	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;
	padding: 6.5%;
}
.solution__wrap__item:first-child figure span {
	display: inline-block;
	-webkit-mask-image: url("./img/home/mask1.svg");
	        mask-image: url("./img/home/mask1.svg");
}
.solution__wrap__item:first-child figure span img {
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.solution__wrap__item:first-child figure figcaption {
	background-color: #E8FF57;
}
.solution__wrap__item:last-child figure span {
	display: inline-block;
	-webkit-mask-image: url("./img/home/mask2.svg");
	        mask-image: url("./img/home/mask2.svg");
}
.solution__wrap__item:last-child figure span img {
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.solution__wrap__item:last-child figure figcaption {
	background-color: #008DCB;
}
.solution__wrap__item:hover figure span img {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
.solution__wrap__item:hover p {
	opacity: 0.5;
}
.solution__wrap__item:hover .btn {
	color: #E54F72;
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 3px 10px rgba(0, 0, 0, 0.1);
	        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 3px 10px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 960px) {
	.solution__wrap {
		gap: 110px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.solution__wrap__item {
		margin: 0 auto;
		max-width: 100%;
	}
}
/* NEWS **********************************************************************************/
.news .sec-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 60px;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.news a {
	color: #000;
	text-decoration: none;
}
.news h2 {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	text-align: left;
	-ms-flex-preferred-size: 240px;
	    flex-basis: 240px;
}
.news__content {
	-ms-flex-preferred-size: calc(100% - 300px);
	    flex-basis: calc(100% - 300px);
}
.news ul {
	padding-bottom: 20px;
}
.news ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin-bottom: 20px;
}
.news ul li time {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	width: 80px;
}
.lrn .news ul li time,
.news ul li time .hr {
	width: 100px;
}
.news ul li span {
	font-size: var(--fs-sm1);
	font-weight: 500;
	line-height: 1;
	padding: 7px 4px 8px;
	border-radius: 30px;
	margin-top: 4px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	width: 150px;
	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;
}
.news ul li span.cat-oth {
	background-color: #E9E8F7;
}
.news ul li span.cat-hr {
	background-color: #E8FF57;
}
.news ul li span.cat-lrn {
	background-color: #008DCB;
	color: #fff;
}
.news ul li a:hover {
	opacity: 0.5;
}
.news .btn {
	margin: 0 auto;
}

@media screen and (max-width: 960px) {
	.news .sec-inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 0;
	}
	.news h2 {
		text-align: center;
		-ms-flex-preferred-size: auto;
		    flex-basis: auto;
	}
	.news__content {
		-ms-flex-preferred-size: auto;
		    flex-basis: auto;
	}
	.news ul li {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		gap: 10px;
	}
	.news ul li time {
		width: auto !important;
	}
	.news ul li a {
		width: 100%;
	}
	.news ul li span {
		margin-top: 0;
	}
}
/* BANNER **********************************************************************************/
.banner .sec-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 80px;
}
.banner__item {
	border-radius: 20px;
	background-color: #fff;
	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-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	overflow: hidden;
}
.banner__item figure {
	overflow: hidden;
}
.banner__item figure img {
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.banner__item span {
	padding: 20px;
	font-weight: 500;
	font-size: var(--fs-md1);
}
.banner__item:hover img {
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
}

@media screen and (max-width: 960px) {
	.banner .sec-inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 40px;
	}
	.banner__item {
		width: 480px;
		max-width: 100%;
		margin: 0 auto;
	}
}
.hr,
.lrn {
	background-position: center top;
	background-size: 1920px;
	background-repeat: repeat;
	font-family: "Inter", "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}
.hr h3,
.hr h4,
.hr h5,
.lrn h3,
.lrn h4,
.lrn h5 {
	font-weight: 700;
	line-height: 1.6;
}
.hr header,
.hr footer,
.lrn header,
.lrn footer {
	font-family: "zen-maru-gothic", sans-serif;
}
.hr footer,
.lrn footer {
	margin-top: 200px;
}
.hr .shape,
.lrn .shape {
	display: none;
}
.hr .tag,
.lrn .tag {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	font-size: var(--fs-sm1);
	margin-bottom: 20px;
}
.hr .tag li,
.lrn .tag li {
	border: 1px solid #000;
	border-radius: 30px;
	padding: 3px 15px;
}
.hr .arw-lg,
.lrn .arw-lg {
	position: absolute;
	bottom: -10px;
	right: -10px;
	width: 60px;
	height: 60px;
	background: url(./img/solution/common/arw_lg.svg) left 21px no-repeat;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.hr .arw-sm,
.lrn .arw-sm {
	position: absolute;
	bottom: -10px;
	right: -10px;
	width: 40px;
	height: 40px;
	background: url(./img/solution/common/arw_sm.svg) left 15px no-repeat;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.hr .btn-square,
.lrn .btn-square {
	width: 520px;
	max-width: calc(100% - 80px);
	padding: 18px 20px 20px;
	margin: 0 auto;
	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: relative;
	font-weight: 700;
}
.hr .btn-square::after,
.lrn .btn-square::after {
	content: "";
	width: 68px;
	height: 10px;
	display: block;
	position: absolute;
	right: -38px;
	top: calc(50% - 8px);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.hr .btn-square:hover::after,
.lrn .btn-square:hover::after {
	right: -68px;
}
.hr .btn-square.toggle::before, .hr .btn-square.toggle::after,
.lrn .btn-square.toggle::before,
.lrn .btn-square.toggle::after {
	content: "";
	width: 30px;
	height: 2px;
	display: block;
	position: absolute;
	right: 25px;
	top: calc(50% - 1px);
	-webkit-transition: 0.3s;
	transition: 0.3s;
	background-color: #FF775C;
}
.hr .btn-square.toggle::before,
.lrn .btn-square.toggle::before {
	-webkit-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	        transform: rotate(90deg);
}
.hr .btn-square.toggle:hover::after,
.lrn .btn-square.toggle:hover::after {
	right: 25px;
}
.hr .btn-square.toggle:hover::before,
.lrn .btn-square.toggle:hover::before {
	-webkit-transform: rotate(0);
	    -ms-transform: rotate(0);
	        transform: rotate(0);
}
.hr .btn-cta,
.lrn .btn-cta {
	width: 520px;
	max-width: 100%;
	padding: 18px 20px 20px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	font-weight: 700;
	background-color: #FF775C;
	color: #fff;
	-webkit-box-shadow: 6px 6px 12px rgba(255, 119, 92, 0.3);
	        box-shadow: 6px 6px 12px rgba(255, 119, 92, 0.3);
}
.hr .btn-cta:hover,
.lrn .btn-cta:hover {
	-webkit-box-shadow: none;
	        box-shadow: none;
	background-color: #FFB35C;
}
.hr .tab,
.lrn .tab {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	margin-bottom: 60px;
	position: relative;
}
.hr .tab li,
.lrn .tab li {
	width: calc((100% - 40px) / 5);
	border-bottom: 1px solid #000;
	cursor: pointer;
	padding-bottom: 20px;
	text-align: center;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.hr .tab li.current,
.lrn .tab li.current {
	color: #FF775C;
	border-bottom-color: #FF775C;
}
.hr .tab li:hover,
.lrn .tab li:hover {
	opacity: 0.5;
}
.hr .tab::after,
.lrn .tab::after {
	content: "";
	display: block;
	border-bottom: 1px solid #ddd;
	width: 100%;
	-ms-flex-negative: 2;
	    flex-shrink: 2;
}
.hr .news ul,
.lrn .news ul {
	padding-bottom: 60px;
}
.hr .fv,
.lrn .fv {
	height: 800px;
	position: relative;
	background-position: center top;
	background-size: 1920px;
	background-repeat: repeat-x;
}
.hr .fv::before,
.lrn .fv::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: calc(50% - 200px);
	width: 1480px;
	height: 100%;
	clip-path: polygon(0 0, 1480px 0, 1080px 800px, 0 800px);
	backdrop-filter: blur(15px);
	z-index: 0;
}
.hr .fv::after,
.lrn .fv::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: calc(50% - 200px);
	width: 1480px;
	height: 100%;
	clip-path: polygon(0 0, 1480px 0, 1080px 800px, 0 800px);
	opacity: 0.8;
	z-index: 0;
}
.hr .fv .sec-inner,
.lrn .fv .sec-inner {
	z-index: 1;
	padding-top: 120px;
	height: 100%;
}
.hr .fv .sec-inner::before,
.lrn .fv .sec-inner::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: calc(50% + 520px);
	width: 1480px;
	height: 100%;
	clip-path: polygon(400px 0, 760px 0, 760px 760px, 0 800px);
	backdrop-filter: blur(15px);
	z-index: 0;
}
.hr .fv .sec-inner::after,
.lrn .fv .sec-inner::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: calc(50% + 520px);
	width: 1480px;
	height: 100%;
	clip-path: polygon(400px 0, 760px 0, 760px 800px, 0 800px);
	opacity: 0.8;
	z-index: 0;
}
.hr .fv p,
.lrn .fv p {
	font-size: var(--fs-lg3);
	line-height: 1.6;
	margin-bottom: 60px !important;
	font-weight: 500;
}
.hr .fv p span,
.lrn .fv p span {
	background-color: rgba(255, 255, 255, 0.9);
}
.hr .fv.short,
.lrn .fv.short {
	height: 520px;
}
.hr .fv.short::before, .hr .fv.short::after,
.lrn .fv.short::before,
.lrn .fv.short::after {
	right: 50%;
}
.hr .fv.short .sec-inner,
.lrn .fv.short .sec-inner {
	padding-top: 180px;
}
.hr .fv.short .sec-inner::before, .hr .fv.short .sec-inner::after,
.lrn .fv.short .sec-inner::before,
.lrn .fv.short .sec-inner::after {
	left: calc(50% + 380px);
}
.hr .fv.short h1 small,
.lrn .fv.short h1 small {
	display: block;
	margin-bottom: 10px;
	font-size: var(--fs-lg3);
	color: #FF775C;
}
.hr .fv.short h1 span,
.lrn .fv.short h1 span {
	font-size: var(--fs-lg1);
}
.hr .fv.minimal,
.lrn .fv.minimal {
	height: 320px;
}
.hr .fv.minimal::before, .hr .fv.minimal::after,
.lrn .fv.minimal::before,
.lrn .fv.minimal::after {
	right: 28%;
}
.hr .fv.minimal .sec-inner,
.lrn .fv.minimal .sec-inner {
	padding-top: 90px;
}
.hr .fv.minimal .sec-inner::before, .hr .fv.minimal .sec-inner::after,
.lrn .fv.minimal .sec-inner::before,
.lrn .fv.minimal .sec-inner::after {
	left: 70%;
}
.hr .fv.minimal h1 small,
.lrn .fv.minimal h1 small {
	display: block;
	margin-bottom: 10px;
	font-size: var(--fs-lg3);
	color: #FF775C;
}
.hr .fv.minimal h1 span,
.lrn .fv.minimal h1 span {
	font-size: var(--fs-lg1);
}
.hr .lineup__item,
.lrn .lineup__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-bottom: 80px;
}
.hr .lineup__item:not(:last-child),
.lrn .lineup__item:not(:last-child) {
	margin-bottom: 80px;
}
.hr .lineup__item figure,
.lrn .lineup__item figure {
	width: 75%;
	position: relative;
	z-index: 0;
	overflow: hidden;
}
.hr .lineup__item figure img,
.lrn .lineup__item figure img {
	width: 960px;
	height: 480px;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
.hr .lineup__item a,
.lrn .lineup__item a {
	display: block;
	width: 520px;
	max-width: calc(100% - 20px);
	background-color: rgba(255, 255, 255, 0.8);
	margin-left: calc((520px - 25%) * -1);
	position: relative;
	z-index: 1;
	backdrop-filter: blur(15px);
	padding: 60px;
	-webkit-box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
	        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}
.hr .lineup__item a div,
.lrn .lineup__item a div {
	position: relative;
}
.hr .lineup__item a h3,
.lrn .lineup__item a h3 {
	font-size: var(--fs-lg4);
	margin-bottom: 20px;
}
.hr .lineup__item a::before,
.lrn .lineup__item a::before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	border-top: 240px solid #E8FF57;
	border-right: 120px solid transparent;
	z-index: 0;
}
.hr .lineup__item a:hover,
.lrn .lineup__item a:hover {
	-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
	        box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}
.hr .lineup__item a:hover .arw-lg,
.lrn .lineup__item a:hover .arw-lg {
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.hr .lineup__item:nth-child(even),
.lrn .lineup__item:nth-child(even) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
}
.hr .lineup__item:nth-child(even) a,
.lrn .lineup__item:nth-child(even) a {
	margin-left: 0;
	margin-right: calc((520px - 25%) * -1);
}
.hr .lineup__item:nth-child(even) a::before,
.lrn .lineup__item:nth-child(even) a::before {
	border-top-color: #A2F4E7;
}
.hr .lineup__item:nth-child(odd) a::before,
.lrn .lineup__item:nth-child(odd) a::before {
	border-top-color: #E8FF57;
}
.hr .cardlist,
.lrn .cardlist {
	margin-bottom: 80px;
}
.hr .cardlist a,
.lrn .cardlist a {
	padding: 0 30px 30px;
	background-color: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(15px);
	-webkit-box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
	        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
	position: relative;
}
.hr .cardlist a figure,
.lrn .cardlist a figure {
	margin-left: -30px;
	margin-right: -30px;
	margin-bottom: 30px;
}
.hr .cardlist a h3,
.lrn .cardlist a h3 {
	font-size: var(--fs-md1);
}
.hr .cardlist a h3 + p,
.lrn .cardlist a h3 + p {
	margin-top: 20px;
}
.hr .cardlist a p,
.lrn .cardlist a p {
	font-size: var(--fs-md3);
}
.hr .cardlist a:hover,
.lrn .cardlist a:hover {
	-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
	        box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}
.hr .cardlist a:hover .arw-sm,
.lrn .cardlist a:hover .arw-sm {
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.hr .concern,
.lrn .concern {
	width: 1020px;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
}
.hr .concern figure,
.lrn .concern figure {
	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-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.hr .concern figure span,
.lrn .concern figure span {
	border-radius: 150px;
	width: 300px;
	height: 300px;
	padding: 20px;
	-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
	        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
	margin-bottom: 30px;
	background-color: #fff;
}
.hr .concern figure span img,
.lrn .concern figure span img {
	border-radius: 130px;
}
.hr .concern figure figcaption,
.lrn .concern figure figcaption {
	text-align: center;
	font-size: var(--fs-lg4);
}
.hr .feature__item,
.lrn .feature__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 60px;
	padding-right: 60px;
}
.hr .feature__item:not(:last-child),
.lrn .feature__item:not(:last-child) {
	margin-bottom: 60px;
}
.hr .feature__item div,
.lrn .feature__item div {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.hr .feature__item div h3,
.lrn .feature__item div h3 {
	font-size: var(--fs-lg4);
	margin-bottom: 20px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.hr .feature__item div h3::before,
.lrn .feature__item div h3::before {
	content: "";
	display: block;
	width: 8px;
	height: 40px;
	margin-right: 20px;
	margin-left: 10px;
	background-color: #A2F4E7;
	-webkit-transform: skewX(-26.565deg);
	    -ms-transform: skewX(-26.565deg);
	        transform: skewX(-26.565deg);
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.hr .feature__item figure,
.lrn .feature__item figure {
	position: relative;
	text-align: right;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.hr .feature__item figure img,
.lrn .feature__item figure img {
	width: calc(100% - 100px);
}
.hr .feature__item figure figcaption,
.lrn .feature__item figure figcaption {
	position: absolute;
	left: 20px;
	top: -20px;
	font-size: var(--fs-lg3);
	line-height: 1;
	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;
	width: 100px;
	height: 80px;
}
.hr .feature__item figure figcaption span,
.lrn .feature__item figure figcaption span {
	position: relative;
}
.hr .feature__item figure figcaption::before,
.lrn .feature__item figure figcaption::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
	background-color: #E8FF57;
	-webkit-transform: skewX(-26.565deg);
	    -ms-transform: skewX(-26.565deg);
	        transform: skewX(-26.565deg);
}
.hr .feature__item:nth-child(even),
.lrn .feature__item:nth-child(even) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
	padding-right: 0;
	padding-left: 60px;
}
.hr .feature__item:nth-child(even) figure,
.lrn .feature__item:nth-child(even) figure {
	text-align: left;
}
.hr .feature__item:nth-child(even) figure figcaption,
.lrn .feature__item:nth-child(even) figure figcaption {
	right: 20px;
	left: auto;
}
.hr .arrow-triple,
.lrn .arrow-triple {
	text-align: center;
	margin: 60px auto;
}
.hr .step,
.lrn .step {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 60px;
}
.hr .step__item,
.lrn .step__item {
	position: relative;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.hr .step__item:not(:last-child)::after,
.lrn .step__item:not(:last-child)::after {
	content: "";
	display: block;
	position: absolute;
	width: 20px;
	height: 40px;
	right: -40px;
	top: 50px;
	background: url(./img/solution/common/arw_right.svg);
}
.hr .step__item figure,
.lrn .step__item figure {
	position: relative;
	margin-bottom: 20px;
}
.hr .step__item figure figcaption,
.lrn .step__item figure figcaption {
	position: absolute;
	left: -10px;
	top: -10px;
	line-height: 1;
	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;
	width: 50px;
	height: 40px;
}
.hr .step__item figure figcaption span,
.lrn .step__item figure figcaption span {
	position: relative;
}
.hr .step__item figure figcaption::before,
.lrn .step__item figure figcaption::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
	background-color: #E8FF57;
	-webkit-transform: skewX(-26.565deg);
	    -ms-transform: skewX(-26.565deg);
	        transform: skewX(-26.565deg);
}
.hr .step__item h4,
.lrn .step__item h4 {
	margin-bottom: 10px;
}
.hr .step__item p,
.lrn .step__item p {
	font-size: var(--fs-md3);
}
.hr .fixedbtn,
.lrn .fixedbtn {
	position: fixed;
	right: 0;
	bottom: 20px;
	z-index: 10;
	text-align: center;
	line-height: 1.5;
}
.hr .fixedbtn.hide,
.lrn .fixedbtn.hide {
	display: none;
}
.hr .fixedbtn p,
.lrn .fixedbtn p {
	display: inline-block;
	background: #fff;
	padding: 3px 15px;
	margin: 0 auto 8px;
	font-size: var(--fs-md3);
	text-align: center;
	border-radius: 30px;
	-webkit-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
	        box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
	position: relative;
}
.hr .fixedbtn p::after,
.lrn .fixedbtn p::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-top: 16px solid #fff;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
	position: absolute;
	bottom: -15px;
	left: calc(50% - 8px);
}
.hr .fixedbtn a,
.lrn .fixedbtn a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	gap: 30px;
	height: 120px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: rgba(255, 119, 92, 0.9);
	color: #fff;
	padding: 0 30px;
	font-size: var(--fs-md2);
	font-weight: 700;
	-webkit-box-shadow: 0 0 12px rgba(255, 119, 92, 0.5);
	        box-shadow: 0 0 12px rgba(255, 119, 92, 0.5);
}
.hr .fixedbtn a figure,
.lrn .fixedbtn a figure {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.hr .fixedbtn a:hover,
.lrn .fixedbtn a:hover {
	background: rgb(255, 119, 92);
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.hr .fixedbtn a small,
.lrn .fixedbtn a small {
	font-size: var(--fs-md3);
}
.hr .fixedbtn a strong,
.lrn .fixedbtn a strong {
	font-size: var(--fs-lg4);
}
.hr .fixedbtn > span,
.lrn .fixedbtn > span {
	position: absolute;
	display: block;
	width: 18px;
	height: 18px;
	right: 15px;
	bottom: 135px;
	cursor: pointer;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.hr .fixedbtn > span::before, .hr .fixedbtn > span::after,
.lrn .fixedbtn > span::before,
.lrn .fixedbtn > span::after {
	content: "";
	display: block;
	width: 24px;
	height: 2px;
	background-color: #FF775C;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	position: absolute;
	top: calc(50% - 1px);
	left: calc(50% - 12px);
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.hr .fixedbtn > span::after,
.lrn .fixedbtn > span::after {
	-webkit-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}
.hr .fixedbtn > span:hover,
.lrn .fixedbtn > span:hover {
	opacity: 0.5;
}

@media screen and (max-width: 1200px) {
	.hr .fv,
	.lrn .fv {
		-webkit-box-sizing: content-box;
		        box-sizing: content-box;
		height: auto;
		padding-bottom: 77.0833333333vw;
		background-position: right bottom;
		background-size: 200vw;
	}
	.hr .fv::before,
	.lrn .fv::before {
		height: 640px;
		right: calc(50% - 200px - 100px);
	}
	.hr .fv::after,
	.lrn .fv::after {
		height: 640px;
		right: calc(50% - 200px - 100px);
	}
	.hr .fv .sec-inner,
	.lrn .fv .sec-inner {
		height: 640px;
		padding-top: 0;
		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;
	}
	.hr .fv .sec-inner::before,
	.lrn .fv .sec-inner::before {
		left: auto;
		right: calc(50% - 200px - 1480px + 400px - 100px);
	}
	.hr .fv .sec-inner::after,
	.lrn .fv .sec-inner::after {
		left: auto;
		right: calc(50% - 200px - 1480px + 400px - 100px);
	}
	.hr .fv .sec-inner h1,
	.lrn .fv .sec-inner h1 {
		position: relative;
		z-index: 1;
	}
	.hr .fv .sec-inner p,
	.lrn .fv .sec-inner p {
		position: relative;
		z-index: 1;
	}
	.hr .fv.short,
	.lrn .fv.short {
		height: auto;
		padding-bottom: 54.1666666667vw;
	}
	.hr .fv.short::before, .hr .fv.short::after,
	.lrn .fv.short::before,
	.lrn .fv.short::after {
		height: 240px;
		right: calc(50% - 200px);
	}
	.hr .fv.short .sec-inner,
	.lrn .fv.short .sec-inner {
		height: 240px;
		padding-top: 0;
	}
	.hr .fv.short .sec-inner::before, .hr .fv.short .sec-inner::after,
	.lrn .fv.short .sec-inner::before,
	.lrn .fv.short .sec-inner::after {
		left: auto;
		right: calc(50% - 200px - 1480px + 400px);
	}
	.hr .fv.minimal,
	.lrn .fv.minimal {
		height: 200px;
		padding-bottom: 0;
		margin-bottom: 120px;
	}
	.hr .fv.minimal::before, .hr .fv.minimal::after,
	.lrn .fv.minimal::before,
	.lrn .fv.minimal::after {
		height: 200px;
		right: calc(50% - 200px);
	}
	.hr .fv.minimal .sec-inner,
	.lrn .fv.minimal .sec-inner {
		height: 200px;
		padding-top: 0;
	}
	.hr .fv.minimal .sec-inner::before, .hr .fv.minimal .sec-inner::after,
	.lrn .fv.minimal .sec-inner::before,
	.lrn .fv.minimal .sec-inner::after {
		left: auto;
		right: calc(50% - 200px - 1480px + 400px);
	}
	.hr .fv.minimal .sec-inner h1 small,
	.lrn .fv.minimal .sec-inner h1 small {
		font-size: var(--fs-md2);
	}
	.hr .fv.minimal .sec-inner h1 span,
	.lrn .fv.minimal .sec-inner h1 span {
		font-size: var(--fs-lg2);
	}
	.hr .concern,
	.lrn .concern {
		width: 660px;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}
@media screen and (max-width: 960px) {
	.hr,
	.lrn {
		background-size: 200%;
	}
	.hr .arw-lg,
	.lrn .arw-lg {
		width: 40px;
		height: 40px;
		background: url(./img/solution/common/arw_sm.svg) left 15px no-repeat;
	}
	.hr .btn-square::after,
	.lrn .btn-square::after {
		width: 34px;
		height: 5px;
		right: -19px;
		top: calc(50% - 4px);
		background-size: 34px;
	}
	.hr .btn-square:hover::after,
	.lrn .btn-square:hover::after {
		right: -34px;
	}
	.hr .btn-square.toggle::before, .hr .btn-square.toggle::after,
	.lrn .btn-square.toggle::before,
	.lrn .btn-square.toggle::after {
		content: "";
		width: 20px;
		right: 20px;
		top: calc(50% - 1px);
	}
	.hr .btn-square.toggle:hover::after,
	.lrn .btn-square.toggle:hover::after {
		right: 20px;
	}
	.hr .tab,
	.lrn .tab {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
	.hr .tab li,
	.lrn .tab li {
		width: calc((100% - 20px) / 3);
	}
	.hr .tab::after,
	.lrn .tab::after {
		content: none;
	}
	.hr .lineup__item,
	.lrn .lineup__item {
		-webkit-box-align: end;
		    -ms-flex-align: end;
		        align-items: flex-end;
	}
	.hr .lineup__item:not(:last-child),
	.lrn .lineup__item:not(:last-child) {
		margin-bottom: 120px;
	}
	.hr .lineup__item figure,
	.lrn .lineup__item figure {
		width: calc(100% - 20px);
	}
	.hr .lineup__item figure img,
	.lrn .lineup__item figure img {
		height: 360px;
	}
	.hr .lineup__item a,
	.lrn .lineup__item a {
		padding: 30px;
		margin-bottom: -80px;
	}
	.hr .lineup__item a::before,
	.lrn .lineup__item a::before {
		border-top: 180px solid #E8FF57;
		border-right: 80px solid transparent;
	}
	.hr .feature__item,
	.lrn .feature__item {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		    -ms-flex-direction: column !important;
		        flex-direction: column !important;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
		padding: 0 !important;
		gap: 30px;
	}
	.hr .feature__item div,
	.lrn .feature__item div {
		margin-left: 20px;
	}
	.hr .feature__item div h3::before,
	.lrn .feature__item div h3::before {
		height: 30px;
		width: 6px;
		margin-left: 8px;
		margin-right: 15px;
	}
	.hr .feature__item figure,
	.lrn .feature__item figure {
		text-align: right !important;
	}
	.hr .feature__item figure img,
	.lrn .feature__item figure img {
		width: calc(100% - 20px);
	}
	.hr .feature__item figure figcaption,
	.lrn .feature__item figure figcaption {
		left: 0 !important;
		right: auto !important;
	}
	.hr .step,
	.lrn .step {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		gap: 40px;
	}
	.hr .step__item,
	.lrn .step__item {
		width: calc(50% - 20px);
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		-ms-flex-preferred-size: calc(50% - 20px);
		    flex-basis: calc(50% - 20px);
	}
	.hr .step__item::after,
	.lrn .step__item::after {
		content: none !important;
	}
	.hr .fixedbtn,
	.lrn .fixedbtn {
		bottom: 0;
	}
	.hr .fixedbtn p,
	.lrn .fixedbtn p {
		font-size: var(--fs-sm1);
	}
	.hr .fixedbtn a,
	.lrn .fixedbtn a {
		gap: 20px;
		padding: 0 20px;
		font-size: var(--fs-sm1);
		height: 80px;
	}
	.hr .fixedbtn a figure,
	.lrn .fixedbtn a figure {
		width: 40px;
	}
	.hr .fixedbtn > span,
	.lrn .fixedbtn > span {
		bottom: 90px;
		right: 10px;
	}
}
@media screen and (max-width: 640px) {
	.hr .feature__item div, .lrn .feature__item div {
		margin-left: 10px;
	}
	.hr .feature__item figure img, .lrn .feature__item figure img {
		width: calc(100% - 10px);
	}
	.hr .feature__item figure figcaption, .lrn .feature__item figure figcaption {
		width: 50px;
		height: 40px;
		font-size: var(--fs-md2);
	}
	.hr .concern, .lrn .concern {
		gap: 30px;
	}
	.hr .concern figure, .lrn .concern figure {
		width: calc(50% - 15px);
	}
	.hr .concern figure span, .lrn .concern figure span {
		width: 100%;
		height: auto;
		aspect-ratio: 1/1;
		padding: 10px;
		margin-bottom: 20px;
	}
	.hr .concern figure figcaption, .lrn .concern figure figcaption {
		font-size: var(--fs-md2);
	}
	.hr .concern figure figcaption br, .lrn .concern figure figcaption br {
		display: none;
	}
	.hr .step, .lrn .step {
		gap: 20px;
	}
	.hr .step__item, .lrn .step__item {
		width: calc(50% - 10px);
		-ms-flex-preferred-size: calc(50% - 10px);
		    flex-basis: calc(50% - 10px);
	}
}
.hr {
	background-color: #FAFAFA;
	background-image: url(./img/solution/common/hr_bg.webp);
}
.hr h2 small {
	color: #FF775C;
}
.hr .arw-lg {
	background-color: #FF775C;
	-webkit-box-shadow: 6px 6px 12px rgba(255, 119, 92, 0.3);
	        box-shadow: 6px 6px 12px rgba(255, 119, 92, 0.3);
}
.hr .arw-sm {
	background-color: #FF775C;
	-webkit-box-shadow: 6px 6px 12px rgba(255, 119, 92, 0.3);
	        box-shadow: 6px 6px 12px rgba(255, 119, 92, 0.3);
}
.hr .btn-square {
	border: 1px solid #FF775C;
	color: #FF775C;
}
.hr .btn-square::after {
	background: url(./img/solution/common/arw_hr.svg);
}
.hr .fv::after {
	background-color: #E8FF57;
}
.hr .fv .sec-inner::after {
	background-color: #A2F4E7;
}

.lrn {
	background-color: #F5F4EF;
	background-image: url(./img/solution/common/lrn_bg.webp);
}
.lrn h2 small {
	color: #E54F72;
}
.lrn .arw-lg {
	background-color: #008DCB;
	-webkit-box-shadow: 6px 6px 12px rgba(0, 141, 203, 0.3);
	        box-shadow: 6px 6px 12px rgba(0, 141, 203, 0.3);
}
.lrn .arw-sm {
	background-color: #008DCB;
	-webkit-box-shadow: 6px 6px 12px rgba(0, 141, 203, 0.3);
	        box-shadow: 6px 6px 12px rgba(0, 141, 203, 0.3);
}
.lrn .btn-square {
	border: 1px solid #008DCB;
	color: #008DCB;
}
.lrn .btn-square::after {
	background: url(./img/solution/common/arw_lrn.svg);
}
.lrn .fv {
	background-image: url(./img/solution/lrn_mv.webp);
}
.lrn .fv::after {
	background-color: #008DCB;
}
.lrn .fv .sec-inner::after {
	background-color: #77D9A8;
}

@media screen and (max-width: 960px) {
	.hr .btn-square::after,
	.lrn .btn-square::after {
		background-size: 34px;
	}
}
.complete {
	text-align: center;
}
.complete h3 {
	font-size: var(--fs-md1);
	margin-bottom: 60px;
}
.complete p {
	margin-bottom: 40px;
}

.dl figure {
	border-radius: var(--rd-md);
	overflow: hidden;
	margin-bottom: 30px;
}
.dl h3 {
	font-size: var(--fs-lg4);
	margin-bottom: 20px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.dl h3::before {
	content: "";
	display: block;
	width: 8px;
	height: 40px;
	margin-right: 20px;
	margin-left: 10px;
	background-color: #A2F4E7;
	-webkit-transform: skewX(-26.565deg);
	    -ms-transform: skewX(-26.565deg);
	        transform: skewX(-26.565deg);
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

.formmailer-embed iframe {
	border-radius: var(--rd-md);
	overflow: hidden;
}

@media screen and (max-width: 960px) {
	.dl h3::before {
		height: 30px;
		width: 6px;
		margin-left: 8px;
		margin-right: 15px;
	}
}
html {
	font-size: 62.5%;
}

body {
	font-size: 1.8rem;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 400;
	line-height: 2;
	background-color: #EDF8FA;
}
body.modal-open {
	overflow: hidden;
}

body * {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
body *:focus {
	outline: none;
}

button,
input,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	background-color: #eee;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

[type=checkbox]::before {
	position: absolute;
	top: -7px;
	left: -2px;
	width: 24px;
	height: 24px;
	border-radius: 3px;
	content: "";
	cursor: pointer;
	background-color: #eee;
	cursor: pointer;
}
[type=checkbox]::after {
	content: "";
	position: absolute;
	z-index: 1;
	top: -1px;
	left: 1px;
	width: 16px;
	height: 6px;
	border: 2px solid #fff;
	border-top: none;
	border-right: none;
	-webkit-transform: rotate(-45deg) scale(0, 0);
	    -ms-transform: rotate(-45deg) scale(0, 0);
	        transform: rotate(-45deg) scale(0, 0);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
[type=checkbox]:checked::after {
	border-color: #000;
	-webkit-transform: rotate(-45deg) scale(1, 1);
	    -ms-transform: rotate(-45deg) scale(1, 1);
	        transform: rotate(-45deg) scale(1, 1);
}

*:focus {
	outline: none;
}

::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	/*color: #ccc;*/
}

:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	/*color: #ccc;*/
}

::-moz-placeholder {
	/* Others */
	/*color: #ccc;*/
}

::-ms-input-placeholder {
	/* Others */
	/*color: #ccc;*/
}

::placeholder {
	/* Others */
	/*color: #ccc;*/
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

a,
button {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	text-decoration: none;
	color: #000;
}
a.btn,
button.btn {
	width: 320px;
	border-radius: 64px;
	padding: 18px 10px 20px;
	max-width: 100%;
	background-color: #fff;
	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;
	line-height: 1.5;
	font-weight: 500;
	font-size: var(--fs-md2);
}

a.btn {
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}
a.btn:hover {
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
	color: #E54F72;
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 3px 10px rgba(0, 0, 0, 0.1);
	        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 3px 10px rgba(0, 0, 0, 0.1);
}
.hr a.btn, .lrn a.btn {
	border-radius: 0;
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 6px 6px 12px rgba(0, 0, 0, 0.1);
	        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 6px 6px 12px rgba(0, 0, 0, 0.1);
}

.yorisowel-arrow-link {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	text-decoration: underline;
}
.yorisowel-arrow-link::before {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	content: "";
	width: 22px;
	height: 22px;
	background: url(./img/common/arrow.svg) left top/cover no-repeat;
	margin-right: 15px;
	margin-top: 0.5em;
}
.yorisowel-arrow-link:hover {
	opacity: 0.5;
}

h1 {
	font-weight: 500;
	line-height: 1.2;
}

h2 {
	text-align: center;
	font-weight: 500;
	font-size: var(--fs-lg1);
	line-height: 1.3;
	margin-bottom: 60px;
}
h2 > small {
	display: block;
	color: #E54F72;
	font-size: var(--fs-lg3);
}
h2 > small + span {
	margin-top: 5px;
}
h2 ruby {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
h2 ruby rt {
	text-align: center;
	line-height: 1;
}
h2 span {
	display: block;
}
h2 span small {
	font-size: 50%;
}

h3 {
	font-weight: 500;
}

h4 {
	font-weight: 500;
}

table {
	width: 100%;
	margin-bottom: 60px;
}
table tr:nth-child(odd) {
	background-color: #fff;
}
table tr:nth-child(odd) td:first-child {
	border-radius: var(--rd-sm) 0 0 var(--rd-sm);
}
table tr:nth-child(odd) td:last-child {
	border-radius: 0 var(--rd-sm) var(--rd-sm) 0;
}
table tr:nth-child(odd) th:first-child {
	border-radius: var(--rd-sm) 0 0 var(--rd-sm);
}
table tr:nth-child(odd) th:last-child {
	border-radius: 0 var(--rd-sm) var(--rd-sm) 0;
}
table th {
	font-weight: 500;
	text-align: left;
}
table td,
table th {
	padding: 20px;
}

.scroll-wrap {
	position: relative;
	max-height: none;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}

.scroll-wrap::-webkit-scrollbar {
	width: 6px;
	cursor: pointer;
}

.scroll-wrap::-webkit-scrollbar-track {
	background-color: rgba(34, 34, 34, 0);
	cursor: pointer;
}

.scroll-wrap::-webkit-scrollbar-thumb {
	background-color: rgb(34, 34, 34);
	border-radius: 4px;
}

#wrap {
	overflow: hidden;
	position: relative;
	padding-top: 104px;
}

section {
	position: relative;
	margin-bottom: 150px;
}
section .sec-inner {
	position: relative;
	width: 1360px;
	padding: 0 40px;
	max-width: 100%;
	margin: 0 auto;
}
section .sec-inner.narrow {
	width: 1040px;
}
section .sec-inner > p {
	margin-bottom: 40px;
}
section .sec-inner > figure {
	border-radius: var(--rd-md);
	overflow: hidden;
}

@media screen and (max-width: 1200px) {
	#wrap {
		padding-top: 0;
	}
}
@media screen and (max-width: 960px) {
	body {
		font-size: var(--fs-md3);
	}
	section .sec-inner {
		padding: 0 20px;
	}
	h2 {
		margin-bottom: 40px;
	}
	h1 br,
	h2 br,
	h3 br,
	h4 br,
	h5 br,
	h6 br {
		display: none;
	}
	table th,
	table td {
		padding: 10px;
	}
	a.btn,
	btn.btn {
		margin-right: auto;
		margin-left: auto;
	}
	.yorisowel-arrow-link::before {
		width: 16px;
		height: 16px;
		margin-right: 10px;
		margin-top: 0.5em;
	}
}
[class*=shape] {
	position: absolute;
	z-index: 0;
}
[class*=shape].s1 {
	left: calc(50% - 1040px);
	top: -200px;
}
[class*=shape].s2 {
	left: calc(50% - 640px);
	top: -30px;
}
[class*=shape].s3 {
	left: 50%;
	top: -50px;
	width: 748px;
}
[class*=shape].s4 {
	top: 220px;
	left: calc(50% + 520px);
	width: 402px;
}
.home [class*=shape].s4 {
	display: none;
}

@media screen and (max-width: 1200px) {
	[class*=shape] {
		position: absolute;
		z-index: 0;
	}
	[class*=shape].s1 {
		left: -300px;
		top: -200px;
	}
	[class*=shape].s4 {
		top: 220px;
		right: -130px;
		left: auto;
	}
}
@media screen and (max-width: 960px) {
	[class*=shape].s1 {
		left: -450px;
		top: -200px;
	}
	[class*=shape].s4 {
		top: 220px;
		right: -280px;
		left: auto;
	}
}
.emphasis-1 {
	font-size: var(--fs-lg2);
	font-weight: 500;
	line-height: 1.8;
}
.emphasis-1 span {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FFEDCD), to(#FFEDCD));
	background: linear-gradient(to bottom, transparent 60%, #FFEDCD 60%, #FFEDCD 100%);
	padding: 0 0.2em;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.emphasis-2 {
	font-size: var(--fs-lg3);
	font-weight: 500;
}

.hover-change {
	position: relative;
}
.hover-change img:last-child {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
}
.hover-change:hover img:last-child {
	display: block;
}

.check {
	font-weight: 500;
	margin-bottom: 40px;
}
.check li {
	position: relative;
	margin-bottom: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.check li::before {
	content: "";
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	display: block;
	width: 27px;
	height: 24px;
	margin-top: 0.45em;
	margin-right: 1em;
	background: url(./img/common/check.svg) left top/100% no-repeat;
}

.ttl {
	position: relative;
}
.ttl .sec-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 60px;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.ttl__txt {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	font-size: 9rem;
}
.ttl__txt small {
	font-size: var(--fs-lg3);
	display: block;
}
.ttl__txt span {
	color: #E54F72;
}
.ttl__img {
	width: 850px;
	margin-top: -50px;
	-webkit-mask-image: url("./img/common/mask_ttl.svg");
	        mask-image: url("./img/common/mask_ttl.svg");
	-webkit-mask-size: contain;
	        mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	-webkit-mask-position: center;
	        mask-position: center;
}
@media screen and (max-width: 1200px) {
	.ttl__txt {
		font-size: 6rem;
	}
	.ttl__img {
		margin-top: 50px;
	}
}
@media screen and (max-width: 960px) {
	.check li::before {
		width: 20px;
	}
	.ttl .sec-inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.ttl__txt {
		margin-top: 100px;
		text-align: center;
	}
	.ttl__img {
		width: 640px;
		margin-top: 0;
	}
}
.container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 80px;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 1360px;
	max-width: 100%;
	margin: 120px auto;
	padding: 0 40px;
	position: relative;
}
.container > h1 {
	width: 100%;
	text-align: center;
	font-weight: 500;
	font-size: var(--fs-lg1);
	line-height: 1.3;
}
.container > h1 > small {
	display: block;
	color: #E54F72;
	font-size: var(--fs-lg3);
}
.container > h1 > small + span {
	margin-top: 5px;
}
.container > h1 span {
	display: block;
}
.container > h1 span small {
	font-size: 50%;
}

aside {
	width: 220px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
aside + .btn, aside + .load-more-container {
	margin-top: -60px;
}

main {
	width: calc(100% - 300px);
}
main.narrow {
	margin-right: auto;
	margin-left: auto;
	width: 800px;
	max-width: 100%;
}
main.wide {
	width: 100%;
}
main a:not(.btn) {
	color: #008DCB;
	text-decoration: underline;
}
main a:not(.btn):hover {
	opacity: 0.5;
	text-decoration: none;
}
main strong {
	font-weight: 500;
	color: #E54F72;
}
main small {
	font-size: var(--fs-sm1);
}
main .table-scroll {
	overflow-x: visible;
}
@media screen and (max-width: 960px) {
	main .table-scroll {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	main .table-scroll table {
		min-width: 600px;
		white-space: nowrap;
	}
}
main .table-scroll::-webkit-scrollbar {
	height: 6px;
}
main .table-scroll::-webkit-scrollbar-track {
	background-color: rgba(34, 34, 34, 0.1);
}
main .table-scroll::-webkit-scrollbar-thumb {
	background-color: rgba(34, 34, 34, 0.3);
	border-radius: 3px;
}
main table {
	margin-bottom: 0;
}
main thead {
	border-bottom-width: 1px !important;
}
main th {
	border-radius: 0 !important;
	background-color: #8CC2E9;
	color: #fff;
	border: 1px solid #7A89A2 !important;
}
main td {
	border-radius: 0 !important;
	border: 1px solid #7A89A2 !important;
}
main h1 {
	font-size: var(--fs-lg3);
	line-height: 1.5;
	margin-bottom: 30px;
}
main h2 {
	font-size: var(--fs-lg4);
	text-align: left;
	line-height: 1.8;
	margin: 60px 0 40px;
}
main h3 {
	font-size: var(--fs-md1);
	line-height: 1.8;
	margin-bottom: 30px;
}
main h4 {
	margin-bottom: 20px;
}
main ul:not(#news-list) {
	margin-bottom: 40px;
}
main ul:not(#news-list) li {
	position: relative;
	margin-bottom: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
main ul:not(#news-list) li::before {
	content: "";
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	display: block;
	width: 27px;
	height: 24px;
	margin-top: 0.45em;
	margin-right: 1em;
	background: url(./img/common/check.svg) left top/100% no-repeat;
}
main ol {
	margin-bottom: 40px;
	padding-left: 10px;
	counter-reset: item;
}
main ol li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 0.5em;
}
main ol li::before {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	content: counter(item) ". ";
	counter-increment: item;
	font-weight: 500;
	color: #E54F72;
	margin-right: 24px;
}
main p {
	margin-bottom: 40px;
}
main .wp-block-media-text {
	margin: 50px 0;
	gap: 50px;
}
main .wp-block-media-text > .wp-block-media-text__content {
	padding: 0;
}
main .wp-block-media-text__content p:last-child {
	margin-bottom: 0;
}
main figure {
	margin: 50px auto;
}
main img {
	border-radius: var(--rd-md);
}
main .meta-info {
	margin-bottom: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
main .meta-info time {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
main .meta-info span {
	font-size: var(--fs-sm1);
	font-weight: 500;
	line-height: 1;
	padding: 7px 4px 8px;
	border-radius: 30px;
	margin-top: 4px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	width: 150px;
	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;
}
main .meta-info span.cat-oth {
	background-color: #E9E8F7;
}
main .meta-info span.cat-hr {
	background-color: #E8FF57;
}
main .meta-info span.cat-lrn {
	background-color: #008DCB;
	color: #fff;
}

aside h4 {
	margin-bottom: 20px;
}
aside ul {
	border-radius: var(--rd-md);
	background-color: #fff;
}
aside ul li {
	border-bottom: 1px solid #ddd;
	padding: 5px;
}
aside ul li:last-child {
	border-bottom: none;
}
aside ul li a {
	padding: 15px;
	display: block;
	border-radius: var(--rd-ss);
}
aside ul li a:hover {
	background-color: #f7f7f7;
}
aside ul li:first-child a {
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}
aside ul li:last-child a {
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}

@media screen and (max-width: 960px) {
	.container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		padding: 0 20px;
	}
	main .meta-info span {
		margin-top: 1px;
	}
	main ul li::before {
		width: 20px;
	}
	main ol li::before {
		margin-right: 15px;
	}
	main {
		width: 100%;
	}
	aside {
		-webkit-box-ordinal-group: 11;
		    -ms-flex-order: 10;
		        order: 10;
		width: 100%;
	}
	aside ul li:first-child a {
		border-top-left-radius: 8px;
		border-top-right-radius: 8px;
	}
	aside ul li:last-child a {
		border-bottom-left-radius: 8px;
		border-bottom-right-radius: 8px;
	}
	aside + .btn {
		-webkit-box-ordinal-group: 10;
		    -ms-flex-order: 9;
		        order: 9;
	}
}
/*# sourceMappingURL=style.css.map */