@charset "UTF-8";
@keyframes arrowRight {
	0% {
		transform: translate3d(0, 0, 0);
	}
	49% {
		transform: translate3d(100%, 0, 0);
	}
	50% {
		transform: translate3d(100%, 0, 0);
		visibility: hidden;
	}
	51% {
		transform: translate3d(-100%, 0, 0);
		visibility: hidden;
	}
	52% {
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
@keyframes arrowLeft {
	0% {
		transform: translate3d(0, 0, 0);
	}
	49% {
		transform: translate3d(-100%, 0, 0);
	}
	50% {
		transform: translate3d(-100%, 0, 0);
		visibility: hidden;
	}
	51% {
		transform: translate3d(100%, 0, 0);
		visibility: hidden;
	}
	52% {
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
@keyframes arrowDown {
	0% {
		transform: translate3d(0, 0, 0);
	}
	49% {
		transform: translate3d(0, 100%, 0);
	}
	50% {
		transform: translate3d(0, 100%, 0);
		visibility: hidden;
	}
	51% {
		transform: translate3d(0, -100%, 0);
		visibility: hidden;
	}
	52% {
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
@keyframes arrowUp {
	0% {
		transform: translate3d(0, 0, 0);
	}
	49% {
		transform: translate3d(0, -100%, 0);
	}
	50% {
		transform: translate3d(0, -100%, 0);
		visibility: hidden;
	}
	51% {
		transform: translate3d(0, 100%, 0);
		visibility: hidden;
	}
	52% {
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
@keyframes moveMask {
	0% {
		mask-position: 0 0;
	}
	100% {
		mask-position: 2800px 0;
	}
}
@keyframes moveMaskSp {
	0% {
		mask-position: 0 0;
	}
	100% {
		mask-position: 1400px 0;
	}
}
:root {
	--color-text: #29343B;
	--color-text-sub: rgba(41, 52, 59, 0.80);
	--color-white: #fff;
	--color-blue: #157EBC;
	--color-blue-link: #3C9DD7;
	--color-light-blue: #EDF5F9;
	--color-light-gray: #F8F8F8;
	--color-gray-border: rgba(0, 0, 0, 0.20);
	--color-beige: #F2F0EA;
	--color-light-beige: #E0E0E0;
	--color-ice-blue: #EEF5F9;
	--color-walnut-brown: #67543E;
	--color-warning: #FFF0F0;
	--color-alert: #DA0000;
	--color-slate-blue: #778A9B;
	--grad-blue: linear-gradient(to bottom, #64A7CE, #4386AE 100%);
	--grad-blue-dark: linear-gradient(to bottom, #48A7DE, #2E3C8A 100%);
	--grad-green-vertical: linear-gradient(to bottom, #71AD87, #488960 100%);
	--grad-green-horizon: linear-gradient(to right, #5B856B, #80A68E 100%);
	--font-gothic: "Zen Kaku Gothic Antique", 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	--font-mincho: "游明朝", YuMincho, "ヒラギノ明朝 Pr6 W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	--font-urbanist: "Urbanist", sans-serif;
}
body {
	background-color: var(--color-light-gray);
	color: var(--color-text);
	font-family: var(--font-gothic);
	font-size: 16px;
	line-height: 1.7;
	overflow-wrap: break-word;
	letter-spacing: 0.02em;
}
a {
	color: var(--color-blue-link);
}
a:focus-visible {
	outline-color: #025ecc;
	outline-offset: 1px;
	outline-style: auto;
}
a[href^="tel:"] {}
button {
	caret-color: rgba(255, 255, 255, 0);
}
button:focus-visible {
	outline-width: 1px;
	outline-style: auto;
	outline-color: #025ecc;
	outline-offset: 1px;
}
textarea,
[type="search"],
[type="date"],
[type="tel"],
[type="email"],
[type="number"],
[type="password"],
[type="text"] {
	-webkit-appearance: none;
	appearance: none;
	font-size: inherit;
	padding: 8px 15px;
	border: 1px solid #aaa;
	border-radius: 4px;
	box-sizing: border-box;
	width: 100%;
	line-height: inherit;
	resize: vertical;
	display: block;
	line-height: 24px;
}
[data-animation] {
	transition-duration: 1s;
	transition-delay: .2s;
	transition-property: opacity;
	opacity: 0;
}
[data-animation="after"] {
	opacity: 1;
}
[data-animation][data-animation-type="fadeInRight"] {
	transition-property: opacity, transform;
	transform: translateX(-20px);
}
[data-animation="after"][data-animation-type="fadeInRight"] {
	transform: translateX(0);
}
[data-animation][data-animation-type="fadeInLeft"] {
	transition-property: opacity, transform;
	transform: translateX(20px);
}
[data-animation="after"][data-animation-type="fadeInLeft"] {
	transform: translateX(0);
}
[data-animation][data-animation-type="fadeInUp"] {
	transition-property: opacity, transform;
	transform: translateY(20px);
}
[data-animation="after"][data-animation-type="fadeInUp"] {
	transform: translateY(0);
}
[data-animation][data-animation-type="fadeZoomOut"] {
	transition-property: opacity, transform;
	transform: scale(1.05);
}
[data-animation="after"][data-animation-type="fadeZoomOut"] {
	transform: scale(1);
}
::-webkit-input-placeholder {
	color: #ccc;
}
:-ms-input-placeholder {
	color: #ccc;
}
::placeholder {
	color: #ccc
}
.icon {
	vertical-align: middle;
	display: inline-block;
	position: relative;
	min-width: 1em;
}
.icon::before {
	display: block;
}
.u-inner {
	max-width: 1238px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 40px;
	padding-right: 40px;
}
.u-ttl {
	font-size: 36px;
	font-weight: normal;
	margin-bottom: 21px;
	line-height: 54px;
	position: relative;
	padding-left: 30px;
}
.u-ttl > .icon {
	display: block;
	color: var(--color-blue);
	font-size: 16px;
	position: absolute;
	left: 0;
	top: 27px;
	transform: translateY(-50%);
}
.u-tbl {
	width: 100%;
}
.u-tbl > thead {}
.u-tbl > thead > tr {}
.u-tbl > thead > tr > th {
	padding: 7px 10px;
	border: 1px solid #ddd;
	white-space: nowrap;
	background: #efefef;
	font-weight: normal;
	vertical-align: middle;
}
.u-tbl > tbody {}
.u-tbl > tbody > tr {}
.u-tbl > tbody > tr > th {
	padding: 7px 10px;
	border: 1px solid #ddd;
	white-space: nowrap;
	background: #efefef;
	font-weight: normal;
	text-align: left;
	width: 140px;
	vertical-align: top;
}
.u-tbl > tbody > tr > td {
	padding: 7px 10px;
	border: 1px solid #ddd;
	vertical-align: top;
}
.u-tblWrap {
	overflow: auto;
}
.u-tblWrap_caution {
	display: none;
}
.u-list {
	list-style: none;
	position: relative;
}
.u-list > li {
	margin-top: 5px;
	position: relative;
	z-index: 1;
	padding-left: 15px;
}
.u-list > li:first-child {
	margin-top: 0;
}
.u-list > li::before {
	content: "";
	display: block;
	width: 3px;
	height: 3px;
	background-color: currentColor;
	border-radius: 50%;
	top: 0.85em;
	position: absolute;
	left: 5px;
	transform: translateY(-50%);
}
.u-sect {
	padding-top: 100px;
	margin-top: -100px;
}
.u-btn {
	display: flex;
	text-decoration: none;
	text-align: center;
	box-sizing: border-box;
	width: 100%;
	cursor: pointer;
	border-radius: 30px;
	padding: 10px 10px;
	line-height: 1.2;
	background: var(--color-light-blue);
	justify-content: center;
	align-items: center;
	transition-duration: .3s;
	transition-property: background-color, color, border-color;
	position: relative;
	z-index: 1;
	color: inherit;
	min-height: 60px;
	font-size: 15px;
	font-weight: 500;
}
.u-btn:active {}
.u-btn-cancel {
	background: #666;
	color: #fff;
}
.u-selWrap {
	position: relative;
}
.u-selWrap::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 3;
	top: 50%;
	right: 9px;
	border: 6px solid rgba(255, 255, 255, 0);
	width: 0;
	height: 0;
	border-top-width: 8px;
	border-bottom-width: 0;
	border-top-color: currentColor;
	transform: translateY(-50%);
	pointer-events: none;
}
.u-selWrap::after {}
.u-selWrap > select {
	margin: 0;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: 0 0;
	border: 0;
	line-height: 32px;
	height: 32px;
	width: 100%;
	border-right: 25px solid rgba(0, 0, 0, 0);
	border-radius: 0;
	cursor: pointer;
	position: relative;
	z-index: 2;
	padding-left: 15px;
	display: block;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding-right: 25px;
	font-family: inherit;
	background-color: var(--color-white);
	color: inherit;
}
.u-selWrap > select::-ms-expand {
	display: none;
}
.u-chkLbl {
	position: relative;
	display: block;
	padding: 5px 0;
	padding-left: 30px;
	line-height: 1.6;
}
.u-chkLbl > [type="checkbox"] {
	position: absolute;
	z-index: 2;
	opacity: 0;
	top: 0;
	left: 0;
}
.u-chkLbl_icon {
	display: block;
	width: 22px;
	height: 22px;
	background: #fff;
	margin-right: 4px;
	transition-duration: .3s;
	transition-property: background-color, color;
	box-sizing: border-box;
	border: 1px solid #666;
	position: absolute;
	z-index: 0;
	top: calc(5px + 0.8em);
	transform: translateY(-50%);
	left: 0;
}
.u-chkLbl > [type="checkbox"]:focus-visible + .u-chkLbl_icon {
	outline-width: 1px;
	outline-style: auto;
	outline-color: #025ecc;
	outline-offset: 1px;
}
.u-chkLbl_icon::after {
	content: "";
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 8px;
	box-sizing: border-box;
	border: 3px solid #666;
	border-top: none;
	border-right: none;
	transform: translate(-50%, -50%) rotate(-39deg);
	opacity: 0;
	transition-duration: .3s;
	transition-property: opacity;
	margin-top: -2px;
}
.u-chkLbl_text {
	display: block;
	font-weight: normal;
}
.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon {}
.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon::after {
	opacity: 1;
}
.u-rdoLbl {
	position: relative;
	display: block;
	padding: 5px 0;
	padding-left: 30px;
	line-height: 1.6;
}
.u-rdoLbl > [type="radio"] {
	position: absolute;
	z-index: 1;
	opacity: 0;
	top: 0;
	left: 0;
}
.u-rdoLbl_icon {
	display: block;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	margin-right: 4px;
	transition-duration: .3s;
	transition-property: background-color, color;
	border: 1px solid #666;
	box-sizing: border-box;
	position: absolute;
	z-index: 0;
	top: calc(0.8em + 5px);
	left: 0;
	transform: translateY(-50%);
}
.u-rdoLbl_icon::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	background: #666;
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
	transition-duration: .3s;
	transition-property: opacity;
}
.u-rdoLbl > [type="radio"]:focus-visible + .u-rdoLbl_icon {
	outline-width: 1px;
	outline-style: auto;
	outline-color: #025ecc;
	outline-offset: 1px;
}
.u-rdoLbl > [type="radio"]:checked + .u-rdoLbl_icon {}
.u-rdoLbl > [type="radio"]:checked + .u-rdoLbl_icon::after {
	opacity: 1;
}
.u-rdoLbl_text {
	display: block;
	font-weight: normal;
}
.u-hiddenSVG {
	height: 0;
	width: 0;
	overflow: hidden;
	position: absolute;
}
.u-spBlock {
	display: none;
}
.u-spInline {
	display: none;
}
.u-tabletBlock {
	display: none;
}
.u-tabletInline {
	display: none;
}
.u-spsInline {
	display: none;
}
.u-lowResInline {
	display: none;
}
.u-clamp {
	max-height: 3.6em;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	display: -webkit-box;
}
.u-switchImg > img:first-child {}
.u-switchImg > img:last-child {
	display: none;
}
.u-fitImg {
	position: relative;
	z-index: 1;
	padding-bottom: 100%;
	overflow: hidden;
}
.u-fitImg > img {
	display: block;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.u-editor {
	word-break: break-all;
}
.u-editor::after {
	content: "";
	display: block;
	clear: both;
}
.u-editor div {
	max-width: 100%;
}
.u-editor img {
	max-width: 100%;
	height: auto;
}
.u-editor iframe {
	max-width: 100%;
}
.u-editor video {
	max-width: 100%;
	height: auto;
}
.u-editor blockquote {
	background-color: #f6f6f6;
	padding: 30px;
	position: relative;
	z-index: 1;
}
.u-editor blockquote::before {
	content: "“";
	font-size: 50px;
	color: #999;
	position: absolute;
	left: 5px;
	top: 5px;
	line-height: 1;
}
.u-editor blockquote::after {
	content: "”";
	font-size: 50px;
	color: #999;
	position: absolute;
	right: 5px;
	bottom: -15px;
	line-height: 1;
}
.u-ttlSimple {
	font-size: 28px;
	font-weight: normal;
	margin-bottom: 32px;
}
.u-ttlSimple-large {
	font-size: 32px;
}
.u-ttlDot {
	font-size: 18px;
	font-weight: bold;
	position: relative;
	padding-left: 17px;
	margin-bottom: 4px;
	line-height: 1.5;
}
.u-ttlDot::before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border: 2px solid currentColor;
	border-radius: 50%;
	position: absolute;
	top: 0.75em;
	left: 0;
	transform: translateY(-50%);
	margin-top: 1px;
	box-sizing: border-box;
}
.u-ttlDot-blue {
	color: var(--color-blue);
}
.u-dotLine {
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.12) 2px, rgba(255, 255, 255, 0) 2px);
	background-position: bottom left;
	background-size: 6px 1px;
	background-repeat: repeat-x;
}
.u-message {
	margin-bottom: 58px;
}
.u-ttlSmall {
	font-size: 16px;
	line-height: 1.7;
	font-weight: bold;
	margin-bottom: 6px;
}
.u-btn > .icon-blank {
	display: block;
	font-size: 9px;
	margin-left: 10px;
}
.u-noteList {
	font-size: 13px;
	list-style: none;
	margin-top: 3px;
}
.u-noteList > li {
	text-indent: -1em;
	padding-left: 1em;
	color: var(--color-text-sub);
}
.u-btn-white {
	background-color: var(--color-white);
}
.u-update {
	line-height: 1;
	color: rgba(45, 46, 52, 0.40);
}
.u-editor h2 {
	font-size: 36px;
	font-weight: normal;
	margin-bottom: 21px;
	line-height: 54px;
	position: relative;
	padding-left: 30px;
	margin-top: 65px;
}
.u-editor h2::before {
	content: "";
	display: block;
	color: var(--color-blue);
	width: 16px;
	height: 16px;
	position: absolute;
	left: 0;
	top: 27px;
	transform: translateY(-50%);
	background-image: url(/assets/img/common/icn-anchor.svg);
}
.u-editor p {
	margin-bottom: 1em;
	margin-top: 1em;
}
.u-editor p:first-child {
	margin-top: 0;
}
.u-editor p:last-child {
	margin-bottom: 0;
}
.u-editor h3 {
	font-size: 28px;
	font-weight: normal;
	margin-bottom: 15px;
	margin-top: 53px;
}
.u-editor h3:first-child {
	margin-top: 0;
}
.u-editor h3:last-child {
	margin-bottom: 0;
}
.u-editor p > b {
	font-weight: bold;
}
.u-editor p > em {
	font-style: normal;
	color: var(--color-blue);
	font-weight: bold;
}
.u-editor ul {
	margin-top: 2em;
	margin-bottom: 2em;
	list-style: none;
}
.u-editor ul > li {
	position: relative;
	padding-left: 1.5em;
	margin-top: 8px;
}
.u-editor ul > li::before {
	content: "";
	display: block;
	width: 3px;
	height: 3px;
	background-color: currentColor;
	border-radius: 50%;
	top: 0.85em;
	position: absolute;
	left: 10px;
	transform: translateY(-50%);
}
.u-editor ul > li:first-child {
	margin-bottom: 0;
}
.u-editor ol {
	list-style: none;
	counter-reset: number;
	margin-top: 2em;
	margin-bottom: 2em;
}
.u-editor ol > li {
	counter-increment: number;
	position: relative;
	padding-left: 24px;
	margin-top: 8px;
}
.u-editor ol > li::before {
	content: counter(number)".";
	display: block;
	position: absolute;
	top: 0.85em;
	left: 8px;
	transform: translateY(-50%);
}
.u-editor ol > li:first-child {
	margin-top: 0;
}
.u-editor ol > li:nth-child(n+10) {
	padding-left: 33px;
}
.u-circle {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-text-sub);
	font-size: 13px;
	position: relative;
	box-sizing: border-box;
}
.u-circle::after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	border: 1px solid var(--color-gray-border);
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition-duration: .3s;
	transition-property: transform;
}
.u-inner-narrow {
	max-width: 990px;
}
.u-oList {
	list-style: none;
	counter-reset: number;
	padding-left: 0.5em;
}
.u-oList > li {
	counter-increment: number;
	position: relative;
	padding-left: 1.4em;
}
.u-oList > li:nth-child(n+10) {
	counter-increment: number;
	position: relative;
	padding-left: 1.8em;
}
.u-oList > li::before {
	content: counter(number)".";
	display: block;
	position: absolute;
	top: 0.85em;
	left: 0;
	transform: translateY(-50%);
}
.u-box {
	background-color: var(--color-white);
	border-radius: 30px;
	padding: 40px 30px;
}
.u-btnShadow {
	text-decoration: none;
	color: inherit;
	display: flex;
	justify-content: center;
	font-weight: 500;
	align-items: center;
	padding: 10px;
	min-height: 80px;
	box-sizing: border-box;
	box-shadow: inset 0 0 12px 0 rgba(65, 144, 190, 0.60);
	border-radius: 40px;
	transition-duration: .3s;
	transition-property: color, background-color;
	background-color: var(--color-white);
}
.u-arrow {
	overflow: hidden;
	display: block;
	width: 1em;
}
.u-arrow_item {
	display: block;
}
.u-ttlNumber {
	font-size: 20px;
	font-weight: bold;
	color: var(--color-blue);
	position: relative;
	padding-left: 45px;
	margin-bottom: 19px;
}
.u-ttlNumber_num {
	font-size: 110%;
	font-weight: 500;
	font-family: var(--font-urbanist);
	position: absolute;
	top: 0.85em;
	left: 0;
	transform: translateY(-50%);
	display: block;
}
.u-colInner {
	max-width: 949px;
	margin-left: auto;
	width: calc(100% - 240px);
	position: relative;
	z-index: 2;
}
.wp-block-image {}
.wp-block-image > img {
	display: block;
	border-radius: 20px;
	margin-left: auto;
	margin-right: auto;
}
.u-editor a::after {
	content: "";
	display: inline-block;
	background-image: url(/assets/img/common/icn-arrow.svg);
	width: 12px;
	height: 12px;
	margin-left: 5px;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: 0 0;
}
.u-editor a[target="_blank"]::after {
	background-image: url(/assets/img/common/icn-blank.svg);
}
.u-editor a[href$=".pdf"]::after {
	background-image: url(/assets/img/common/icn-pdf.svg);
	width: 20px;
}
.u-bgWave {
	display: block;
	height: 73px;
	position: absolute;
	bottom: 100%;
	left: 0;
	width: 100%;
	pointer-events: none;
}
.u-ttlIntro {
	font-size: 42px;
	font-weight: normal;
	line-height: 1.75;
	margin-bottom: 40px;
	letter-spacing: 0.05em;
}
.u-ttlIntro_point {
	font-size: 110%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: rgba(255, 255, 255, 0);
	background-image: var(--grad-blue-dark);
	position: relative;
	z-index: 1;
	line-height: 1;
	margin-right: 7px;
	color: rgba(255, 255, 255, 0);
	background-clip: text;
	letter-spacing: 0.1em;
}
.u-ttlIntro_point-green {
	background-image: var(--grad-green-vertical);
}
.u-ttlIntro_point_en {
	position: absolute;
	top: -9px;
	left: 0;
	display: block;
	font-size: 14px;
	-webkit-background-clip: text;
	-webkit-text-fill-color: rgba(255, 255, 255, 0);
	background-image: var(--grad-blue-dark);
	font-weight: 500;
	letter-spacing: -0.01em;
}
.u-ttlIntro_point_en-green {
	background-image: var(--grad-green-vertical);
}
.u-ttlIntro_point-large {
	font-size: 120%;
}
.u-ttlHome {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
}
.u-ttlHome_en {
	display: block;
	font-size: 96px;
	font-weight: 100;
	font-family: var(--font-urbanist);
	letter-spacing: 0.02em;
	line-height: 1;
}
.u-ttlHome_main {
	display: flex;
	align-items: center;
	margin-top: 7px;
}
.u-ttlHome_main > .icon {
	display: block;
	color: var(--color-blue);
	margin-right: 10px;
	font-size: 19px;
}
.u-btnShadow-white {
	color: var(--color-white);
	box-shadow: inset 0 0 12px 0 rgba(255, 255, 255, 0.80);
	background-color: rgba(255, 255, 255, 0);
}
.u-lastSect {
	padding-bottom: 373px;
}
.u-waveMask {
	mask-image: url(/assets/img/common/bg-wave-mask@2x.png);
	mask-size: 2800px 3000px;
	mask-position: 0 0;
	mask-repeat: repeat-x;
	animation-name: moveMask;
	animation-fill-mode: backwards;
	animation-iteration-count: infinite;
	animation-duration: 60s;
}
@media screen and (max-width:1894px) {
	.u-ttlHome {}
	.u-ttlHome_en {
		font-size: 5.069vw;
	}
}
@media screen and (max-width:1439px) {
	.u-lowResInline {
		display: inline;
	}
	.u-lowResNone {
		display: none;
	}
	img {
		max-width: 100%;
		height: auto;
	}
}
@media screen and (max-width:1332px) {
	body {
		font-size: 15px;
	}
	.u-inner {
		padding-left: 3.125vw;
		padding-right: 3.125vw;
	}
	.u-bgWave {
		height: 5.48vw;
	}
	.u-ttlIntro {
		font-size: 3.153vw;
	}
	.u-ttl {
		font-size: 32px;
	}
	.u-ttlSimple-large {
		font-size: 2.4vw;
	}
}
@media screen and (min-width:1024px) and (hover:hover) {
	a:hover {
		text-decoration: none;
	}
	.u-btn:hover {
		background: var(--color-blue);
		color: #fff;
	}
	.u-btn-cancel:hover {
		background: #555;
		color: #fff;
	}
	a:hover .u-circle::after {
		transform: translate(-50%, -50%) scale(1.2);
	}
	.u-btnShadow:hover {
		color: var(--color-white);
		background-color: var(--color-blue);
	}
	button:hover .u-arrow_item,
	a:hover .u-arrow_item {
		animation-name: arrowRight;
		animation-duration: .6s;
		animation-fill-mode: backwards;
		animation-iteration-count: 1;
	}
	button:hover .u-arrow_item-left,
	a:hover .u-arrow_item-left {
		animation-name: arrowLeft;
	}
	button:hover .u-arrow_item-down,
	a:hover .u-arrow_item-down {
		animation-name: arrowDown;
	}
	button:hover .u-arrow_item-up,
	a:hover .u-arrow_item-up {
		animation-name: arrowUp;
	}
	.u-btnShadow-white:hover {
		color: var(--color-text);
		background-color: var(--color-white);
	}
}
@media screen and (max-width:1023px) {
	body {
		font-size: 14px;
	}
	a {}
	a[href^="tel:"] {
		pointer-events: auto;
	}
	textarea,
	[type="search"],
	[type="date"],
	[type="tel"],
	[type="email"],
	[type="number"],
	[type="password"],
	[type="text"] {}
	label [type="checkbox"],
	label [type="radio"] {}
	label {}
	label:last-child {}
	.u-mincho {}
	.u-inner {}
	.u-ttl {
		font-size: 32px;
		line-height: 48px;
		padding-left: 26px;
	}
	.u-ttl > .icon {
		top: 24px;
	}
	.u-ttl::before {}
	.u-ttl::after {}
	.u-tbl {}
	.u-tbl > thead {}
	.u-tbl > thead > tr {}
	.u-tbl > thead > tr > th {}
	.u-tbl > tbody {}
	.u-tbl > tbody > tr {}
	.u-tbl > tbody > tr > th {
		padding: 10px 10px;
	}
	.u-tbl > tbody > tr > td {
		padding: 10px 10px;
	}
	.u-tblWrap {}
	.u-tblWrap_caution {}
	.u-list {}
	.u-list > li {}
	.u-list > li:first-child {}
	.u-list > li::before {}
	.u-sect {
		padding-top: 65px;
		margin-top: -65px;
	}
	.u-btn {}
	.u-btn:active {}
	.u-btn-cancel {}
	.u-selWrap {}
	.u-selWrap::before {}
	.u-selWrap::after {}
	.u-selWrap > select {}
	.u-chkLbl {}
	.u-chkLbl > [type="checkbox"] {}
	.u-chkLbl_icon {}
	.u-chkLbl_icon::after {}
	.u-chkLbl_text {}
	.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon {}
	.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon::after {}
	.u-rdoLbl {}
	.u-rdoLbl > [type="radio"] {}
	.u-rdoLbl_icon {}
	.u-rdoLbl_icon::after {}
	.u-rdoLbl_text {}
	.u-rdoLbl > [type="radio"]:checked + .u-rdoLbl_icon {}
	.u-fitImg {}
	.u-fitImg > img {}
	.u-tabletBlock {
		display: block;
	}
	.u-tabletInline {
		display: inline;
	}
	.u-tabletNone {
		display: none;
	}
	.u-editor {}
	.u-editor::after {}
	.u-editor div {}
	.u-editor img {}
	.u-editor ul {}
	.u-editor ol {}
	.u-editor blockquote {}
	.u-editor blockquote::before {}
	.u-editor blockquote::after {}
	.u-ttlSimple {
		font-size: 24px;
	}
	.u-ttlSimple-large {
		font-size: 28px;
	}
	.u-ttlDot {
		font-size: 16px;
	}
	.u-ttlDot::before {}
	.u-ttlDot-blue {}
	.u-dotLine {}
	.u-message {
		margin-bottom: 40px;
	}
	.u-ttlSmall {}
	.u-btn > .icon-blank {}
	.u-noteList {}
	.u-noteList > li {}
	.u-btn-white {}
	.u-update {}
	.u-editor h2 {
		font-size: 32px;
		line-height: 48px;
		padding-left: 26px;
	}
	.u-editor h2::before {
		top: 24px;
	}
	.u-editor p {
		margin-bottom: 20px;
	}
	.u-editor h3 {
		font-size: 24px;
	}
	.u-editor p > b {}
	.u-editor p > em {}
	.u-editor p > a {}
	.u-editor ul {}
	.u-editor ul > li {}
	.u-editor ul > li::before {}
	.u-editor ul > li:first-child {}
	.u-editor ol {}
	.u-editor ol > li {}
	.u-editor ol > li::before {}
	.u-editor ol > li:first-child {}
	.u-editor ol > li:nth-child(n+10) {}
	.u-circle {}
	.u-circle::after {}
	.u-oList {}
	.u-oList > li {}
	.u-oList > li:nth-child(n+10) {}
	.u-oList > li::before {}
	.u-box {
		padding: 30px 25px;
	}
	.u-btnShadow {
		font-size: 14px;
		font-weight: bold;
	}
	.u-ttlNumber {}
	.u-ttlNumber_num {}
	.u-colInner {
		max-width: none;
		width: auto;
		position: static;
	}
	.u-bgWave {}
	.u-ttlIntro {
		font-size: 36px;
		margin-bottom: 34px;
	}
	.u-ttlIntro_point {}
	.u-ttlIntro_point-green {}
	.u-ttlIntro_point_en {}
	.u-ttlHome {}
	.u-ttlHome_en {
		font-size: 66px;
	}
	.u-ttlHome_main {}
	.u-ttlHome_main > .icon {}
	.u-lastSect {
		padding-bottom: 235px;
	}
	.u-waveMask {
		mask-size: 1400px 1500px;
		animation-name: moveMaskSp;
	}
}
@media screen and (max-width:767px) {
	body {
		min-width: 320px;
	}
	a {}
	a[href^="tel:"] {}
	textarea,
	[type="search"],
	[type="date"],
	[type="tel"],
	[type="email"],
	[type="number"],
	[type="password"],
	[type="text"] {
		font-size: 16px;
	}
	label [type="checkbox"],
	label [type="radio"] {}
	label {}
	label:last-child {}
	.u-mincho {}
	.u-inner {
		padding-left: 15px;
		padding-right: 15px;
	}
	.u-ttl {
		font-size: 22px;
		padding-left: 24px;
		margin-bottom: 15px;
		line-height: 40px;
	}
	.u-ttl > .icon {
		top: 20px;
		margin-top: 1px;
	}
	.u-ttl::before {}
	.u-ttl::after {}
	.u-tbl {}
	.u-tbl > thead {}
	.u-tbl > thead > tr {}
	.u-tbl > thead > tr > th {}
	.u-tbl > tbody {}
	.u-tbl > tbody > tr {}
	.u-tbl > tbody > tr > th {
		width: auto;
		padding: 3px 5px;
	}
	.u-tbl > tbody > tr > td {
		padding: 3px 5px;
	}
	.u-tblWrap {}
	.u-tblWrap_caution {
		margin: 0 5px 0 0;
		font-size: 13px;
	}
	.u-list {}
	.u-list > li {}
	.u-list > li:first-child {}
	.u-list > li::before {}
	.u-sect {}
	.u-btn {
		min-height: 50px;
	}
	.u-btn:active {}
	.u-btn-cancel {}
	.u-selWrap {}
	.u-selWrap::before {}
	.u-selWrap::after {}
	.u-selWrap > select {}
	.u-chkLbl {}
	.u-chkLbl > [type="checkbox"] {}
	.u-chkLbl_icon {}
	.u-chkLbl_icon::after {}
	.u-chkLbl_text {}
	.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon {}
	.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon::after {}
	.u-rdoLbl {}
	.u-rdoLbl > [type="radio"] {}
	.u-rdoLbl_icon {}
	.u-rdoLbl_icon::after {}
	.u-rdoLbl_text {}
	.u-rdoLbl > [type="radio"]:checked + .u-rdoLbl_icon {}
	.u-spBlock {
		display: block;
	}
	.u-spInline {
		display: inline;
	}
	.u-spNone {
		display: none;
	}
	.u-switchImg {}
	.u-switchImg > img:first-child {
		display: none;
	}
	.u-switchImg > img:last-child {
		display: block;
	}
	.u-fitImg {}
	.u-fitImg > img {}
	.u-editor {}
	.u-editor::after {}
	.u-editor div {}
	.u-editor img {}
	.u-editor ul {}
	.u-editor ol {}
	.u-editor blockquote {}
	.u-editor blockquote::before {}
	.u-editor blockquote::after {}
	.u-ttlSimple {
		font-size: 19px;
		margin-bottom: 20px;
	}
	.u-ttlSimple-large {
		font-size: 20px;
		margin-bottom: 15px;
	}
	.u-ttlDot {}
	.u-ttlDot::before {}
	.u-ttlDot-blue {}
	.u-dotLine {}
	.u-message {
		margin-bottom: 30px;
	}
	.u-ttlSmall {
		margin-bottom: 3px;
		font-size: 15px;
	}
	.u-btn > .icon-blank {}
	.u-noteList {}
	.u-noteList > li {}
	.u-btn-white {}
	.u-update {
		font-size: 14px;
	}
	.u-editor h2 {
		font-size: 26px;
		line-height: 39px;
		padding-left: 24px;
		margin-bottom: 15px;
		margin-top: 45px;
	}
	.u-editor h2::before {
		top: 20px;
	}
	.u-editor p {}
	.u-editor h3 {
		font-size: 19px;
		margin-top: 35px;
	}
	.u-editor p > b {}
	.u-editor p > em {}
	.u-editor p > a {}
	.u-editor ul {}
	.u-editor ul > li {}
	.u-editor ul > li::before {}
	.u-editor ul > li:first-child {}
	.u-editor ol {}
	.u-editor ol > li {}
	.u-editor ol > li::before {}
	.u-editor ol > li:first-child {}
	.u-editor ol > li:nth-child(n+10) {}
	.u-circle {
		width: 32px;
		height: 32px;
		font-size: 10px;
	}
	.u-circle::after {}
	.u-oList {}
	.u-oList > li {}
	.u-oList > li:nth-child(n+10) {}
	.u-oList > li::before {}
	.u-box {
		padding: 20px;
		border-radius: 20px;
	}
	.u-btnShadow {
		min-height: 64px;
	}
	.u-ttlNumber {
		font-size: 18px;
		padding-left: 35px;
		margin-bottom: 5px;
	}
	.u-ttlNumber_num {}
	.u-colInner {}
	.u-bgWave {
		height: 36px;
	}
	.u-ttlIntro {
		font-size: 24px;
		margin-bottom: 20px;
	}
	.u-ttlIntro_point {
		font-size: 110%;
		margin-right: 5px;
	}
	.u-ttlIntro_point-green {}
	.u-ttlIntro_point_en {
		font-size: 11px;
	}
	.u-ttlHome {
		font-size: 13px;
	}
	.u-ttlHome_en {
		font-size: 48px;
	}
	.u-ttlHome_main {}
	.u-ttlHome_main > .icon {
		font-size: 16px;
		margin-right: 6px;
	}
	.u-lastSect {
		padding-bottom: 195px;
	}
	.u-waveMask {}
}
@media screen and (max-width:374px) {
	.u-inner {}
	.u-spsInline {
		display: inline;
	}
	.u-ttl {
		font-size: 20px;
	}
	.u-ttlSimple {
		font-size: 18px;
	}
}
