/* リキッドレイアウト対応 */

body {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 400;
}

.pc-only {
	display: none;
}

html {
	font-size: 16px;
}

/* ヘッダー固定した場合、ページ内リンクの遷移先がズレる問題解消 */

html {
	scroll-padding-top: 4rem;
}

/* 画面の高さに合わせてフッターを下に広げる */

body {
	background-color: #EFEFEF;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

main {
	margin-top: 7rem;
}

footer {
	margin-top: auto;
}

/* ドロワー表示時、 背景を固定してスクロールできないようにする */

body.fixed {
	height: 100%;
	overflow: hidden;
	width: 100%;
}

/* pcの電話番号発信対応 */

/* ホバー */

a,
button {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

/* 非表示設定（視覚的に隠しつつスクリーンリーダーでは読み上げられる） */

/* https://gist.github.com/roatnek/c24d5257c4f6d5b1ef0f2328609a0221 */

.visually-hidden {
	clip: rect(1px, 1px, 1px, 1px) !important;
	height: 1px !important;
	overflow: hidden !important;
	position: absolute !important;
	width: 1px !important;
}

.wbr {
	display: inline-block;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%; /* 実機端末を横向きにした際のブラウザの自動拡大をオフ */
	-webkit-text-size-adjust: 100%;
	line-height: 1;
	min-height: 100vh;
	text-rendering: optimizeSpeed; /* 上記のSafari用 */
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

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

/* Make images easier to work with */

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

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

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

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

hr {
	border: 0;
	height: 0;
	margin: 0;
	padding: 0;
}

address {
	font-style: normal;
}

/* js-triggerと一緒に使う */

/* =========================================== */

/*                 inview                      */

/* =========================================== */

.inview {
	opacity: 0;
	transform: translateY(30px);
	transition: transform 2s, opacity 2s;
}

.inview.show {
	opacity: 1;
	transform: translateY(0);
}

/* =========================================== */

/*                slide-up                     */

/* =========================================== */

.slide-up {
	display: inline-block;
	overflow: hidden;
}

.slide-up * {
	display: inline-block;
	opacity: 0;
	transform: translateY(100%);
}

.slide-up.show * {
	animation-duration: 1s;
	animation-fill-mode: forwards;
	animation-name: slideInFromBottom;
}

/* =========================================== */

/*               anime-zoom                    */

/* =========================================== */

.anime-zoom__img {
	overflow: hidden;
}

.anime-zoom:hover .anime-zoom__img img {
	transform: scale(1.2, 1.2);
}

.c-base-btn {
	text-align: center;
}

.c-base-btn a {
	align-items: center;
	background-color: #fff;
	border-radius: 62.4375rem;
	display: inline-grid;
	grid-template-columns: 1fr auto;
	justify-content: space-between;
	max-width: 20rem;
	padding: 1.5rem 2.5rem;
	width: 100%;
}

.c-base-btn a::after {
	-webkit-mask-image: url("../img/common/arrow-right-2.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: #333333;
	content: "";
	display: inline-block;
	height: 1rem;
	mask-image: url("../img/common/arrow-right-2.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 0.75rem;
}

.c-base-btn__text {
	display: inline-block;
	font-size: 1rem;
	font-weight: 700;
	height: 1.6875rem;
	line-height: 170%;
	width: 13.75rem;
}

.c-content--layout {
	margin-bottom: 3.75rem;
}

.c-content .c-content__inner > *:last-child {
	margin-bottom: 0;
}

.c-content .c-content__inner ol {
	list-style: decimal;
}

.c-content .c-content__inner ul {
	list-style: disc;
}

.c-content .c-content__inner > ol,
.c-content .c-content__inner > ul {
	margin-bottom: 1.875rem;
}

.c-content .c-content__inner > ol ol,
.c-content .c-content__inner > ol ul,
.c-content .c-content__inner > ul ol,
.c-content .c-content__inner > ul ul {
	padding-left: 0.625rem;
}

.c-content .c-content__inner > ol > li {
	margin-bottom: 1.25rem;
}

.c-content .c-content__inner ol > li,
.c-content .c-content__inner ul > li {
	list-style-position: inside !important;
}

.c-content .c-content__inner ol > li,
.c-content .c-content__inner ul > li {
	font-size: 0.875rem;
	line-height: 1.5em;
}

.c-content .c-content__inner > ol > li > ul ul,
.c-content .c-content__inner > ol > li > ol ul,
.c-content .c-content__inner > ul > li > ul ul,
.c-content .c-content__inner > ul > li > ol ul {
	list-style: circle;
}

.c-content .c-content__inner > p {
	font-size: 0.875rem;
	line-height: 1.5em;
	margin-bottom: 1.25rem;
}

.c-content .c-content__inner > p + h2,
.c-content .c-content__inner > p + h3,
.c-content .c-content__inner > p + h4,
.c-content .c-content__inner > p + figure {
	margin-top: 0.625rem;
}

.c-content a:not(.wp-element-button) {
	-webkit-text-decoration: underline;
	color: #4BACC6;
	text-decoration: underline;
	text-underline-offset: 0.3ex;
}

.c-heading-sub {
	text-align: center;
}

.c-heading-sub__ja {
	font-size: 1.375rem;
	font-weight: 900;
	line-height: 150%;
	margin-bottom: 0.25rem;
}

.c-heading-sub__en {
	color: #4BACC6;
	font-family: "Roboto", sans-serif;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.1666666667;
	text-transform: uppercase;
}

.fixed-btn {
	display: none;
}

.footer {
	padding-bottom: 1.25rem;
	position: relative;
	z-index: 1;
}

.footer__bg-img {
	clip-path: polygon(50% 11%, 100% 0%, 100% 100%, 0 100%, 0 0);
	position: absolute;
	z-index: -1;
}

.footer__bg-img img {
	-o-object-fit: cover;
	aspect-ratio: 376/280;
	object-fit: cover;
}

.footer__inner {
	text-align: center;
}

.footer__cta {
	margin-top: 5rem;
}

.footer__cta-heading {
	margin-bottom: 2.5rem;
}

.footer__cta-heading p {
	color: #4BACC6;
	font-family: "Roboto", sans-serif;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	margin-bottom: 0.375rem;
	text-align: left;
	text-transform: uppercase;
}

.footer__cta-heading h2 {
	color: #fff;
	display: inline-grid;
	gap: 0.375rem;
}

.footer__cta-heading h2 span {
	display: block;
}

.footer__cta-heading h2 span.-sub {
	font-size: 1.25rem;
	line-height: 150%;
}

.footer__cta-heading h2 span.-main {
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 150%;
}

.footer__cta-list {
	display: grid;
	margin-bottom: 1.25rem;
}

.footer__cta-item {
	background-color: #31859C;
	color: #fff;
	padding: 2rem 1.25rem;
}

.footer__cta-item:last-child {
	background-color: #4BACC6;
}

.footer__cta-item-container {
	margin-left: auto;
	margin-right: auto;
	max-width: 20rem;
}

.footer__cta-item-wrap {
	grid-gap: 1rem;
	align-items: center;
	display: grid;
	gap: 1rem;
	justify-content: center;
}

.footer__cta-item-title {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 150%;
}

.footer__cta-item-img {
	margin-left: auto;
	margin-right: auto;
	width: 2.125rem;
}

.footer__cta-item-img img {
	-o-object-fit: cover;
	aspect-ratio: 34/34;
	object-fit: cover;
}

.footer__cta-item-text {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 170%;
	text-align: left;
}

.footer__cta-item-btn {
	margin-top: 2rem;
}

.footer__cta-item-btn a {
	align-items: center;
	background-color: #fff;
	border-radius: 62.4375rem;
	color: #333333;
	display: flex;
	font-size: 1rem;
	font-weight: 700;
	gap: 0.5rem;
	justify-content: center;
	line-height: 170%;
	padding: 1.5rem;
	position: relative;
}

.footer__cta-item-btn a::after {
	-webkit-mask-image: url("../img/common/arrow-right-2.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 0.9375rem;
	mask-image: url("../img/common/arrow-right-2.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	right: 2.4375rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0.5625rem;
}

.footer__cta-item-list {
	grid-gap: 0.25rem;
	display: grid;
	gap: 0.25rem;
	margin-bottom: 0.25rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0.5rem;
	max-width: 17.0625rem;
}

.footer__cta-item-item {
	align-items: center;
	display: grid;
	grid-template-columns: repeat(2, auto);
	justify-content: space-between;
}

.footer__cta-item-item:nth-of-type(2) .footer__cta-item-item-label {
	letter-spacing: 0.05em;
}

.footer__cta-item-item-label {
	background-color: #fff;
	border-radius: 62.4375rem;
	color: #4BACC6;
	font-weight: 700;
	letter-spacing: 0.2em;
	line-height: 150%;
	padding-bottom: 0.125rem;
	width: 5rem;
}

.footer__cta-item-item-tel {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 150%;
}

.footer__cta-item-note {
	font-size: 0.625rem;
	font-weight: 500;
	line-height: 170%;
	text-align: right;
}

.footer__nav-item a {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 170%;
}

.footer__copyright {
	display: block;
}

.footer__copyright small {
	display: inline-block;
	font-size: 0.625rem;
	font-weight: 500;
	line-height: 170%;
}

/* =========================================== */

/*                   Header                    */

/* =========================================== */

.header {
	height: 4rem;
	position: absolute;
	width: 100%;
	z-index: 200;
}

.header__inner {
	align-items: center;
	display: grid;
	grid-template-columns: 1fr auto;
	height: inherit;
}

.header__logo {
	display: block;
	max-width: 15.5rem;
	width: 100%;
}

.header__logo-link {
	align-items: center;
	display: flex;
	height: 100%;
}

.header__logo-link:hover {
	opacity: 1;
}

.header__logo-link img {
	-o-object-fit: cover;
	aspect-ratio: 440/57;
	object-fit: cover;
}

.header__pc-nav {
	display: none;
}

.header__contact-info {
	width: 100%;
}

.header__contact-info-text {
	font-size: 0.875rem;
	font-weight: 900;
	line-height: 1.4285714286;
}

.header__contact-info-text span {
	font-size: 0.75rem;
}

.header__contact-info-list {
	grid-gap: 0.375rem 0.75rem;
	display: grid;
	gap: 0.375rem 0.75rem;
	grid-template-columns: repeat(2, 1fr);
}

.header__contact-info-item {
	grid-gap: 0.125rem;
	display: grid;
	gap: 0.125rem;
}

.header__contact-info-item-label {
	background-color: #999999;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.7em;
	padding-bottom: 0.125rem;
	padding-top: 0.125rem;
	text-align: center;
}

.header__contact-info-item-link {
	font-family: "Roboto", sans-serif;
	font-size: 1.40625rem;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.header__contact-info-buttons {
	display: grid;
}

.header__contact-info-button:first-child .header__contact-info-button-link {
	background: linear-gradient(180deg, #FEB692 0%, #E80505 100%);
	color: #fff;
}

.header__contact-info-button:last-child .header__contact-info-button-link {
	background: linear-gradient(180deg, #F3F2EA 0%, #DDD9C3 100%);
}

.header__contact-info-button-link {
	align-items: center;
	display: inline-grid;
	font-size: 0.875rem;
	font-weight: 700;
	grid-template-columns: 1fr auto;
	justify-content: center;
	line-height: 130%;
	padding-bottom: 0.9375rem;
	padding-top: 0.9375rem;
	text-align: center;
	width: 100%;
}

/* =========================================== */

/*                  PC Header                  */

/* =========================================== */

.header__global-nav {
	background-color: #DDD9C3;
}

/* =========================================== */

/*                  SP Header                  */

/* =========================================== */

.header__drawer {
	background-color: rgba(0, 0, 0, 0.2);
	display: none;
	height: calc(100dvh - 7rem);
	left: 50%;
	padding-top: 1.25rem;
	position: absolute;
	top: 7rem;
	transform: translateX(-50%);
	width: 100%;
}

.header__drawer.is-open .header__sp-nav {
	top: 0;
}

.header__sp-nav {
	background-color: #fff;
	border-radius: 0.5rem;
	box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.25);
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 0.5rem;
	padding-top: 0.5rem;
	position: relative;
	top: -80%;
	transition: 0.5s;
	width: calc(100% - 1.25rem);
}

.header__sp-nav-items {
	padding-left: 0.625rem;
	padding-right: 0.625rem;
}

.header__sp-nav-item:not(:last-child) {
	border-bottom: 0.0625rem solid #EEECE1;
}

.header__sp-nav-item a {
	grid-gap: 1.25rem;
	align-items: center;
	display: grid;
	font-size: 1rem;
	font-weight: 700;
	gap: 1.25rem;
	grid-template-columns: auto auto;
	justify-content: center;
	line-height: 150%;
	padding-bottom: 1.25rem;
	padding-top: 1.25rem;
	text-align: center;
}

.header__sp-nav-item a::after {
	background-image: url("../img//common/arrow-right-2.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 0.75rem;
	width: 0.5rem;
}

/* =========================================== */

/*                 Hamburger                   */

/* =========================================== */

.header__hamburger {
	background-color: #333333;
	color: #fff;
	display: block;
	height: inherit;
	margin-left: auto;
	max-width: 4rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	position: relative;
	width: 100%;
	z-index: 50;
}

.header__hamburger:hover {
	opacity: 1;
}

.header__hamburger span {
	background-color: currentColor;
	display: block;
	height: 0.25rem;
	margin-left: auto;
	position: relative;
	transition: 0.5s;
	width: 1.5rem;
}

.header__hamburger span:nth-of-type(2) {
	top: -0.25rem;
}

.header__hamburger span:nth-of-type(3) {
	top: 0;
}

.header__hamburger span:nth-of-type(4) {
	top: 0.25rem;
}

.header__hamburger.is-open span:nth-of-type(2) {
	top: 0.25rem;
	transform: rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(3) {
	top: 0rem;
	transform: rotate(-45deg);
}

.header__hamburger.is-open span:nth-of-type(4) {
	opacity: 0;
}

/* =========================================== */

/*                   js-fixed                    */

/* =========================================== */

.js-fixed {
	transition: all 0.3s ease;
}

.js-fixed.is-fixed {
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
}

.inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 540px;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}

.mv-sub--layout {
	margin-bottom: 3.75rem;
}

.mv-sub__inner {
	align-items: center;
	display: grid;
	height: 100%;
	justify-items: center;
	place-items: center;
}

.mv-sub__bg {
	background: linear-gradient(94.93deg, #B9E0E0 10.3%, #4BACC6 62.29%, #23A4C7 88.09%), var(--mv-sub-bg-url-sp) center center/cover no-repeat;
	background-blend-mode: multiply;
	height: 10.625rem;
	width: 100%;
}

.mv-sub__title {
	color: #fff;
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 150%;
	text-align: center;
	width: 100%;
}

/* =========================================== */

/*                 Pagination                  */

/* =========================================== */

.navigation.pagination {
	margin-top: 2.5rem;
}

.nav-links {
	align-items: center;
	display: flex;
	justify-content: center;
	width: 100%;
}

.nav-links a,
.nav-links span {
	-webkit-text-decoration: none;
	align-items: center;
	border-radius: 62.4375rem;
	display: flex;
	font-size: 0.875rem;
	font-weight: 600;
	height: 2rem;
	justify-content: center;
	padding: 0.5rem 0.75rem;
	text-decoration: none;
	transition: all 0.3s ease;
	width: 2rem;
}

.nav-links .page-numbers {
	color: #999999;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
}

.nav-links .page-numbers:hover {
	color: #4BACC6;
}

.nav-links .current {
	border: 0.0625rem solid #4BACC6;
	color: #4BACC6;
}

.nav-links .prev,
.nav-links .next {
	background-color: #4BACC6;
	color: #fff;
	height: 3rem;
	min-width: 3rem;
}

.nav-links .prev::after,
.nav-links .next::after {
	-webkit-mask-image: url("../img/common/arrow-right-2.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: #fff;
	content: "";
	display: inline-block;
	height: 0.75rem;
	mask-image: url("../img/common/arrow-right-2.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 0.5rem;
}

.nav-links .prev.inactive,
.nav-links .next.inactive {
	cursor: not-allowed;
	opacity: 0.5;
}

.nav-links .prev {
	margin-right: auto;
}

.nav-links .prev::after {
	rotate: 180deg;
}

.nav-links .next {
	margin-left: auto;
}

.sidebar-list {
	grid-gap: 2.5rem;
	display: grid;
	gap: 2.5rem;
}

.sidebar__item {
	background-color: #fff;
	border-radius: 0.5rem 0.5rem 1rem 1rem;
	overflow: hidden;
}

.sidebar__item-title {
	align-items: center;
	background: linear-gradient(94.93deg, #B9E0E0 10.3%, #4BACC6 62.29%, #23A4C7 88.09%);
	color: #fff;
	display: flex;
	font-size: 1.125rem;
	font-weight: 700;
	height: 3.6875rem;
	justify-content: center;
	line-height: 150%;
}

.sidebar__item-content {
	padding: 1.5rem 1rem;
}

.sidebar__item-list {
	grid-gap: 1.5rem;
	display: grid;
	gap: 1.5rem;
}

.sidebar__item-item {
	grid-gap: 0.5rem;
	align-items: center;
	display: grid;
	gap: 0.5rem;
}

.sidebar__item-item-img {
	margin-bottom: 0.5rem;
}

.sidebar__item-item-img img {
	-o-object-fit: cover;
	aspect-ratio: 304/170.6;
	object-fit: cover;
}

.sidebar__item-item-title {
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 150%;
}

.splide__arrows .splide__arrow {
	background-color: #333333;
	background-image: url("../img/common/arrow-right-3.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 2.5rem;
	opacity: 1;
	top: 35%;
	top: 32%;
	transform: none;
	transform: initial;
	width: 2.5rem;
}

.splide__arrows .splide__arrow svg {
	display: none;
}

.splide__arrows .splide__arrow--prev {
	left: 27%;
	rotate: 180deg;
}

.splide__arrows .splide__arrow--prev::before {
	margin-right: 0.125rem;
}

.splide__arrows .splide__arrow--next {
	right: 27%;
}

.splide__arrows .splide__arrow--next::before {
	margin-left: 0.125rem;
}

.blog--layout {
	padding-bottom: 3.75rem;
}

.blog__articles {
	grid-gap: 2rem;
	display: grid;
	gap: 2rem;
}

.blog__link {
	grid-gap: 0.5rem;
	display: grid;
	gap: 0.5rem;
}

.blog__thumbnail {
	border-radius: 0.25rem;
	overflow: hidden;
}

.blog__body {
	grid-gap: 0.5rem;
	display: grid;
	gap: 0.5rem;
}

.blog__title {
	font-size: 1rem;
	font-weight: 700;
	line-height: 150%;
}

.blog__meta {
	align-items: center;
	display: flex;
	gap: 0.5rem;
	justify-items: left;
}

.blog__meta-icon {
	width: 0.75rem;
}

.blog__meta-icon img {
	-o-object-fit: cover;
	aspect-ratio: 12/12;
	object-fit: cover;
}

.blog__date {
	color: #999999;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 150%;
}

.s-blog {
	margin-top: 3.0625rem;
}

.s-blog--layout {
	margin-bottom: 3.75rem;
	margin-top: 3rem;
}

.s-blog__inner {
	grid-gap: 2.5rem;
	display: grid;
	gap: 2.5rem;
}

.s-blog__left {
	grid-gap: 2.5rem;
	display: grid;
	gap: 2.5rem;
}

.s-blog__contents,
.s-blog__author {
	background-color: #fff;
	border-radius: 1rem;
	box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.05);
	overflow: hidden;
	padding: 1.5rem 0.75rem;
}

.s-blog__meta {
	margin-bottom: 0.5rem;
}

.s-blog__date {
	color: #4BACC6;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 150%;
}

.s-blog__title {
	font-size: 1.375rem;
	font-weight: 900;
	line-height: 160%;
	margin-bottom: 1.5rem;
}

.s-blog__thumbnail {
	margin-bottom: 2.5rem;
}

.s-blog__thumbnail img {
	-o-object-fit: cover;
	aspect-ratio: 720/405.5;
	object-fit: cover;
}

.s-blog__author {
	grid-gap: 0.5rem 1rem;
	align-items: center;
	display: grid;
	gap: 0.5rem 1rem;
	grid-template-columns: auto 1fr;
}

.s-blog__author-img {
	border-radius: 50%;
	height: 3.75rem;
	overflow: hidden;
	width: 3.75rem;
}

.s-blog__author-img img {
	-o-object-fit: cover;
	aspect-ratio: 120/120;
	object-fit: cover;
}

.s-blog__author-heading {
	border-bottom: 0.0625rem solid #4BACC6;
	color: #4BACC6;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 170%;
	margin-bottom: 1rem;
}

.s-blog__author-name {
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 170%;
}

.s-blog__author-title {
	font-size: 0.8125rem;
	line-height: 170%;
}

.s-blog__author-profile {
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 170%;
}

/* =========================================== */

/*                   content                    */

/* =========================================== */

.s-blog__content {
	grid-gap: 1.5rem;
	display: grid;
	font-size: 0.9375rem;
	font-weight: 500;
	gap: 1.5rem;
	line-height: 170%;
}

.s-blog__content h2 {
	background: linear-gradient(94.93deg, #B9E0E0 10.3%, #4BACC6 62.29%, #23A4C7 88.09%);
	color: #fff;
	font-size: 1.25rem;
	font-weight: 900;
	line-height: 160%;
	padding: 0.5rem;
}

.s-blog__content h2:not(:first-child) {
	margin-top: 1rem;
}

.s-blog__content h3 {
	border-bottom: 0.125rem solid #4BACC6;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 170%;
	margin-bottom: -0.5rem;
	padding-bottom: 0.25rem;
}

.s-blog__content h4 {
	grid-gap: 0.5rem;
	align-items: center;
	color: #4BACC6;
	display: grid;
	font-size: 1.125rem;
	font-weight: 700;
	gap: 0.5rem;
	grid-template-columns: auto 1fr;
	line-height: 170%;
	margin-bottom: -0.5rem;
}

.s-blog__content h4::before {
	background-color: #4BACC6;
	content: "";
	display: inline-block;
	height: calc(100% - 0.5625rem);
	width: 0.25rem;
}

.s-blog__content h5 {
	background-color: #EFEFEF;
	display: inline-block;
	font-size: 1rem;
	font-weight: 700;
	line-height: 170%;
	margin-bottom: -0.5rem;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	width: -moz-fit-content;
	width: fit-content;
}

.s-blog__content a {
	-webkit-text-decoration: underline;
	color: #4BACC6;
	text-decoration: underline;
	text-underline-offset: 0.3ex;
}

.s-blog__content strong {
	color: #D91212;
	font-weight: 700;
}

.s-blog__content ul,
.s-blog__content ol {
	grid-gap: 1rem;
	display: grid;
	gap: 1rem;
	padding-left: 1.3125rem;
}

.s-blog__content ul strong,
.s-blog__content ol strong {
	color: #333333;
	display: inline-block;
	margin-bottom: 0.25rem;
}

.s-blog__content ul {
	list-style: disc;
}

.s-blog__content ol {
	list-style: decimal;
}

.s-blog__content hr {
	border-color: #EFEFEF;
}

.case--layout {
	padding-bottom: 3.75rem;
}

.case__articles {
	grid-gap: 0.75rem;
	display: grid;
	gap: 0.75rem;
}

.case__article {
	background-color: #fff;
	border-radius: 0.5rem;
	box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.case__link {
	grid-gap: 1rem;
	display: grid;
	gap: 1rem;
}

.case__body {
	padding: 0 1rem 1.25rem;
}

.case__title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2; /* 何行表示させるかを指定 */
	display: -webkit-box;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4375;
	margin-bottom: 0.75rem;
	overflow: hidden;
}

.case__excerpt {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5; /* 何行表示させるかを指定 */
	display: -webkit-box;
	font-size: 0.875rem;
	line-height: 170%;
	overflow: hidden;
}

.s-case {
	margin-top: 3.0625rem;
}

.s-case--layout {
	margin-bottom: 3.75rem;
	margin-top: 3rem;
}

.s-case__inner {
	grid-gap: 2.5rem;
	display: grid;
	gap: 2.5rem;
}

.s-case__contents {
	background-color: #fff;
	border-radius: 1rem;
	box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.05);
	overflow: hidden;
	padding: 1.5rem 0.75rem;
}

.s-case__title {
	font-size: 1.375rem;
	font-weight: 900;
	line-height: 160%;
	margin-bottom: 1.5rem;
}

.s-case__thumbnail {
	margin-bottom: 2.5rem;
}

.s-case__thumbnail img {
	-o-object-fit: cover;
	aspect-ratio: 720/405.5;
	object-fit: cover;
}

/* =========================================== */

/*                   content                    */

/* =========================================== */

.s-case__content {
	grid-gap: 1.5rem;
	display: grid;
	font-size: 0.9375rem;
	font-weight: 500;
	gap: 1.5rem;
	line-height: 170%;
}

.s-case__content h2 {
	background: linear-gradient(94.93deg, #B9E0E0 10.3%, #4BACC6 62.29%, #23A4C7 88.09%);
	color: #fff;
	font-size: 1.25rem;
	font-weight: 900;
	line-height: 160%;
	padding: 0.5rem;
}

.s-case__content h2:not(:first-child) {
	margin-top: 1rem;
}

.s-case__content h3 {
	border-bottom: 0.125rem solid #4BACC6;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 170%;
	margin-bottom: -0.5rem;
	padding-bottom: 0.25rem;
}

.s-case__content h4 {
	grid-gap: 0.5rem;
	align-items: center;
	color: #4BACC6;
	display: grid;
	font-size: 1.125rem;
	font-weight: 700;
	gap: 0.5rem;
	grid-template-columns: auto 1fr;
	line-height: 170%;
	margin-bottom: -0.5rem;
}

.s-case__content h4::before {
	background-color: #4BACC6;
	content: "";
	display: inline-block;
	height: calc(100% - 0.5625rem);
	width: 0.25rem;
}

.s-case__content h5 {
	background-color: #EFEFEF;
	display: inline-block;
	font-size: 1rem;
	font-weight: 700;
	line-height: 170%;
	margin-bottom: -0.5rem;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	width: -moz-fit-content;
	width: fit-content;
}

.s-case__content a {
	-webkit-text-decoration: underline;
	color: #4BACC6;
	text-decoration: underline;
	text-underline-offset: 0.3ex;
}

.s-case__content strong {
	color: #D91212;
	font-weight: 700;
}

.s-case__content ul,
.s-case__content ol {
	grid-gap: 1rem;
	display: grid;
	gap: 1rem;
	padding-left: 1.3125rem;
}

.s-case__content ul strong,
.s-case__content ol strong {
	color: #333333;
	display: inline-block;
	margin-bottom: 0.25rem;
}

.s-case__content ul {
	list-style: disc;
}

.s-case__content ol {
	list-style: decimal;
}

.s-case__content hr {
	border-color: #EFEFEF;
}

.error--layout {
	margin-bottom: 3.75rem;
	margin-top: 3rem;
}

.error__heading {
	font-size: 1.375rem;
	font-weight: 900;
	line-height: 160%;
	margin-bottom: 1.5rem;
}

.error__text {
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 170%;
	margin-bottom: 2rem;
}

.t-blog {
	overflow: hidden;
}

.t-blog--layout {
	padding-bottom: 3.75rem;
}

.t-blog__heading {
	margin-bottom: 2rem;
}

.t-blog__splide {
	margin-bottom: 2rem;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.t-blog__card-link {
	grid-gap: 0.5rem;
	display: grid;
	gap: 0.5rem;
}

.t-blog__card-img {
	border-radius: 0.25rem;
	overflow: hidden;
}

.t-blog__card-img img {
	-o-object-fit: cover;
	aspect-ratio: 620/349;
	object-fit: cover;
}

.t-blog__card-title {
	font-weight: 700;
	line-height: 150%;
}

.t-blog__card-meta {
	align-items: center;
	display: flex;
	gap: 0.5rem;
	justify-items: left;
}

.t-blog__card-icon {
	width: 0.75rem;
}

.t-blog__card-icon img {
	-o-object-fit: cover;
	aspect-ratio: 12/12;
	object-fit: cover;
}

.t-blog__card-date {
	color: #999999;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 150%;
}

.t-blog__btn {
	margin-bottom: 3.75rem;
}

.t-blog__media-list {
	grid-gap: 1rem;
	display: grid;
	gap: 1rem;
}

.t-blog__media-item.-site-1 .t-blog__media-item-title {
	width: 17.4375rem;
}

.t-blog__media-item.-site-1 .t-blog__media-item-title img {
	-o-object-fit: cover;
	aspect-ratio: 279/32;
	object-fit: cover;
}

.t-blog__media-item.-site-2 .t-blog__media-item-title {
	width: 18.6875rem;
}

.t-blog__media-item.-site-2 .t-blog__media-item-title img {
	-o-object-fit: cover;
	aspect-ratio: 299/32;
	object-fit: cover;
}

.t-blog__media-item.-site-3 .t-blog__media-item-title {
	width: 14.75rem;
}

.t-blog__media-item.-site-3 .t-blog__media-item-title img {
	-o-object-fit: cover;
	aspect-ratio: 236/32;
	object-fit: cover;
}

.t-blog__media-item.-site-3 .t-blog__media-item-img img {
	-o-object-position: right;
	object-position: right;
}

.t-blog__media-link {
	background-color: #fff;
	border-radius: 0.5rem;
	box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
	display: grid;
	overflow: hidden;
}

.t-blog__media-item-title {
	margin-bottom: 1.5rem;
}

.t-blog__media-item-text {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 170%;
}

.t-blog__media-item-img img {
	-o-object-fit: cover;
	aspect-ratio: 480/190;
	height: 100%;
	object-fit: cover;
}

.t-case {
	overflow: hidden;
}

.t-case--layout {
	margin-bottom: 3.75rem;
}

.t-case__heading {
	margin-bottom: 2rem;
}

.t-case__splide {
	margin-bottom: 2rem;
}

.t-case__splide-track {
	overflow: visible;
}

.t-case__item {
	background-color: #fff;
	border-radius: 0.5rem;
	box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.t-case__link {
	display: block;
}

.t-case__img img {
	-o-object-fit: cover;
	aspect-ratio: 336/220;
	object-fit: cover;
}

.t-case__body {
	grid-gap: 1rem;
	display: grid;
	gap: 1rem;
	padding: 1rem 1rem 1.25rem;
}

.t-case__title {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 145%;
}

.t-case__excerpt {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 170%;
}

.t-company {
	background-color: #DDD9C3;
	clip-path: polygon(100% 0, 100% calc(100% - 2rem), 50% 100%, 0 calc(100% - 2rem), 0 0, 50% 2rem);
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.t-company--layout {
	margin-bottom: 3.75rem;
}

.t-company__heading {
	font-size: 2rem;
	font-weight: 900;
	line-height: 150%;
	margin-bottom: 2.5rem;
	text-align: center;
}

.t-company__wrap {
	grid-gap: 1.5rem;
	display: grid;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.t-company__img {
	margin-left: auto;
	margin-right: auto;
	width: 17.0625rem;
}

.t-company__img img {
	-o-object-fit: cover;
	aspect-ratio: 273/273;
	mix-blend-mode: darken;
	object-fit: cover;
}

.t-company__text {
	font-size: 1rem;
	font-weight: 500;
	line-height: 200%;
}

.t-company__sub-heading {
	font-size: 1.375rem;
	font-weight: 900;
	line-height: 150%;
	margin-bottom: 1.5rem;
	text-align: center;
}

.t-company__sub-heading .num {
	font-size: 2rem;
	margin-left: 0.125rem;
	margin-right: 0.125rem;
}

.t-company__sub-heading .primary {
	color: #4BACC6;
	position: relative;
	z-index: 1;
}

.t-company__sub-heading .primary::before {
	background-color: #fff;
	content: "";
	display: inline-block;
	height: 2.625rem;
	left: -0.3125rem;
	position: absolute;
	top: -0.4375rem;
	width: 8.625rem;
	z-index: -1;
}

.t-company__sub-text {
	font-size: 1rem;
	font-weight: 500;
	line-height: 200%;
	margin-bottom: 2.5rem;
}

.t-company__merit {
	background-color: #fff;
	border-radius: 0.5rem;
	box-shadow: 0px 0.25rem 1.25rem rgba(0, 0, 0, 0.1);
	padding: 2.5rem 1.125rem;
}

.t-company__merit-heading {
	margin-bottom: 2rem;
}

.t-company__merit-list {
	grid-gap: 0.75rem;
	display: grid;
	gap: 0.75rem;
}

.t-company__merit-item {
	display: grid;
	position: relative;
}

.t-company__merit-item::before {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	color: #DDD9C3;
	content: attr(data-index);
	display: inline-block;
	font-family: "Roboto", sans-serif;
	font-size: 1.375rem;
	font-weight: 700;
	height: 1.625rem;
	left: 0;
	line-height: 170%;
	position: absolute;
	top: 0;
	width: 0.8125rem;
}

.t-company__merit-item-img {
	margin-left: auto;
	width: 3.75rem;
}

.t-company__merit-item-img img {
	-o-object-fit: cover;
	aspect-ratio: 100/100;
	object-fit: cover;
}

.t-company__merit-item-text {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 170%;
}

.t-event--layout {
	margin-bottom: 3.75rem;
}

.t-event__heading {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-bottom: 2rem;
	text-align: center;
}

.t-event__heading-text {
	display: inline-block;
	font-weight: 900;
}

.t-event__heading-text.-md {
	font-size: 1.375rem;
	line-height: 130%;
}

.t-event__heading-text.-lg {
	font-size: 2rem;
	line-height: 130%;
}

.t-event__heading-text.-accent {
	background: linear-gradient(94.93deg, #B9E0E0 10.3%, #4BACC6 62.29%, #23A4C7 88.09%);
	color: #fff;
	font-size: 2rem;
	line-height: 130%;
	padding-bottom: 0.125rem;
	padding-left: 0.375rem;
	padding-right: 0.375rem;
}

.t-event__list {
	grid-gap: 1rem;
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 3.75rem;
}

.t-event__item {
	grid-gap: 0.5rem;
	display: grid;
	gap: 0.5rem;
	grid-row: span 3;
	grid-template-rows: subgrid;
}

.t-event__item-title {
	align-self: center;
	font-size: 1.25rem;
	font-weight: 900;
	line-height: 145%;
	text-align: center;
}

.t-event__item-img {
	border-radius: 0.5rem;
	overflow: hidden;
}

.t-event__item-img img {
	-o-object-fit: cover;
	aspect-ratio: 248/120;
	object-fit: cover;
}

.t-event__item-text {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 150%;
}

.t-event__accordion[open] .t-event__item-btn-arrow {
	rotate: -90deg;
}

.t-event__item-btn {
	background-color: #fff;
	border-radius: 62.4375rem;
	width: 100%;
}

.t-event__item-btn-arrow {
	display: inline-block;
	rotate: 90deg;
}

.t-event__item-btn-arrow::before {
	background-image: url("../img/common/arrow-right-1.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 1rem;
	width: 0.75rem;
}

.t-event__movie iframe {
	aspect-ratio: 1040/585;
	width: 100%;
}

.t-faq--layout {
	margin-bottom: 3.75rem;
}

.t-faq__heading {
	margin-bottom: 2rem;
}

.t-faq__list {
	grid-gap: 1.5rem;
	display: grid;
	gap: 1.5rem;
}

.t-faq__item {
	grid-gap: 0.5rem;
	align-items: start;
	border-bottom: 1px solid #999999;
	display: grid;
	gap: 0.5rem;
	grid-template-rows: auto 1fr;
	padding-bottom: 1.5rem;
}

.t-faq__item-title {
	grid-gap: 0.25rem;
	align-items: baseline;
	display: grid;
	font-size: 1.125rem;
	font-weight: 700;
	gap: 0.25rem;
	grid-template-columns: auto 1fr;
	line-height: 150%;
}

.t-faq__item-title::before {
	color: #4BACC6;
	content: "Q.";
	display: inline-block;
	font-family: "Roboto", sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 150%;
}

.t-faq__item-text {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 170%;
}

.t-flow--layout {
	margin-bottom: 3.75rem;
}

.t-flow__heading {
	margin-bottom: 2rem;
}

.t-flow__list {
	grid-gap: 3rem;
	display: grid;
	gap: 3rem;
}

.t-flow__item {
	grid-gap: 0.5rem;
	align-items: start;
	display: grid;
	gap: 0.5rem;
	position: relative;
}

.t-flow__item:not(:last-child)::after {
	background-image: url("../img/common/arrow-right-4.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 2rem;
	position: absolute;
	width: 2rem;
}

.t-flow__item-sp-wrap {
	grid-gap: 1rem;
	align-items: center;
	display: grid;
	gap: 1rem;
	grid-template-columns: auto 1fr;
}

.t-flow__item-img {
	width: 3.5rem;
}

.t-flow__item-img img {
	-o-object-fit: cover;
	aspect-ratio: 136/136;
	object-fit: cover;
}

.t-flow__item-title {
	color: #4BACC6;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 150%;
}

.t-flow__item-text {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 170%;
}

.mv {
	background-color: #fff;
	overflow: hidden;
}

.mv--layout {
	padding-bottom: 4.375rem;
	padding-top: 8.875rem;
}

.t-mv__inner {
	position: relative;
}

.t-mv__catchphrase {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	left: 1.375rem;
	position: absolute;
	rotate: -5deg;
	top: -7.125rem;
	z-index: 1;
}

.t-mv__catchphrase-text {
	display: inline-block;
	font-weight: 900;
	line-height: 150%;
	padding: 0 0.5rem;
}

.t-mv__catchphrase-text.-md {
	font-size: 1.25rem;
}

.t-mv__catchphrase-text.-accent {
	background: linear-gradient(94.93deg, #B9E0E0 10.3%, #4BACC6 62.29%, #23A4C7 88.09%);
	color: #fff;
	font-size: 2rem;
}

.t-mv__catchphrase-text:last-child {
	margin-left: -0.25rem;
}

.t-mv__slick {
	margin-left: calc(50% - 51vw);
	margin-right: calc(50% - 51vw);
	rotate: -5deg;
}

.slick__list {
	margin-left: -0.5rem;
	margin-right: -0.5rem;
}

.slick__item {
	margin-left: 0.5rem;
	margin-right: 0.5rem;
	width: 20rem;
}

.t-mv__splide-img {
	border-radius: 0.5rem;
	overflow: hidden;
}

.t-mv__splide-img img {
	-o-object-fit: cover;
	aspect-ratio: 680/400;
	object-fit: cover;
}

.t-solution--layout {
	margin-bottom: 3.75rem;
}

.t-solution__heading {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
	margin-bottom: 2.5rem;
}

.t-solution__heading .t-solution__heading-text {
	font-weight: 900;
}

.t-solution__heading .t-solution__heading-text.-md {
	font-size: 1.375rem;
	line-height: 130%;
}

.t-solution__heading .t-solution__heading-text.-lg {
	font-size: 1.6875rem;
	line-height: 130%;
}

.t-solution__heading .t-solution__heading-text.-accent {
	background: linear-gradient(94.93deg, #B9E0E0 10.3%, #4BACC6 62.29%, #23A4C7 88.09%);
	color: #fff;
	font-size: 2rem;
	line-height: 130%;
	padding-left: 0.625rem;
}

.t-solution__reason {
	background-color: #fff;
	border-radius: 0.5rem;
	box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.1);
	padding: 2.5rem 0.625rem;
}

.t-solution__reason-heading {
	margin-bottom: 4.5rem;
}

.t-solution__reason-list {
	grid-gap: 4rem;
	display: grid;
	gap: 4rem;
}

.t-solution__reason-item {
	position: relative;
}

.t-solution__reason-item::before {
	color: #4BACC6;
	content: attr(data-index);
	display: inline-block;
	font-family: "Roboto", sans-serif;
	font-size: 7.5rem;
	font-weight: 700;
	left: 0;
	line-height: 1.175;
	opacity: 0.1;
	position: absolute;
	top: -3.5rem;
}

.t-solution__reason-item:nth-of-type(odd) .t-solution__reason-item-sp-wrap {
	padding-left: 2.25rem;
}

.t-solution__reason-item:nth-of-type(even) .t-solution__reason-item-sp-wrap {
	padding-right: 2.25rem;
}

.t-solution__reason-item-body {
	grid-gap: 1rem;
	display: grid;
	gap: 1rem;
}

.t-solution__reason-item-title {
	color: #4BACC6;
	font-size: 1.25rem;
	font-weight: 900;
	line-height: 150%;
}

.t-solution__reason-item-text {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 170%;
}

.t-solution__reason-item-img {
	border-radius: 0.25rem;
	overflow: hidden;
}

.t-solution__reason-item-img img {
	-o-object-fit: cover;
	aspect-ratio: 280/144;
	object-fit: cover;
}

.t-worries {
	background-color: #fff;
}

.t-worries--layout {
	clip-path: polygon(100% 0, 100% calc(100% - 2rem), 50% 100%, 0 calc(100% - 2rem), 0 0);
	margin-bottom: 3rem;
	padding-bottom: 5rem;
}

.t-worries__heading {
	display: grid;
	margin-bottom: 1.25rem;
	text-align: center;
}

.t-worries__heading-text {
	font-weight: 900;
}

.t-worries__heading-text.-lg {
	font-size: 2rem;
	line-height: 160%;
}

.t-worries__heading-text.-md {
	font-size: 1.375rem;
	line-height: 160%;
}

.t-worries__list {
	grid-gap: 0.5rem;
	display: grid;
	gap: 0.5rem;
}

.t-worries__item {
	background-color: #EEECE1;
	clip-path: polygon(0.5rem 0%, 100% 0%, calc(100% - 0.5rem) 100%, 0% 100%);
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 150%;
	padding: 0.625rem 1rem;
}

@media (hover: hover) and (pointer: fine) {

.splide__arrows .splide__arrow:hover {
	opacity: 1;
}

.t-blog__card-link:hover {
	opacity: 1;
}

.t-blog__card-link:hover .t-blog__card-title {
	color: #4BACC6;
	transition: 0.3s;
}

}

@media screen and (min-width: 768px) {

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

html {
	font-size: 1.5384615385vw;
}

main {
	margin-top: 9.25rem;
}

body.fixed {
	position: static;
	position: initial;
}

a[href^="tel:"] {
	pointer-events: none;
}

a:hover,
button:hover {
	opacity: 0.7;
}

a:not([href]):hover {
	opacity: 1;
}

.anime-zoom__img img {
	transition: 0.8s all;
}

.c-content--layout {
	margin-bottom: 6.25rem;
}

.c-content .c-content__inner > ol ol,
.c-content .c-content__inner > ol ul,
.c-content .c-content__inner > ul ol,
.c-content .c-content__inner > ul ul {
	margin-bottom: 2.5rem;
	padding-left: 1.25rem;
}

.c-content .c-content__inner > ol > li {
	margin-bottom: 1.875rem;
}

.c-content .c-content__inner ol > li,
.c-content .c-content__inner ul > li {
	font-size: 1rem;
}

.c-content .c-content__inner > p {
	font-size: 1rem;
	margin-bottom: 1.875rem;
}

.c-content .c-content__inner > p + h2,
.c-content .c-content__inner > p + h3,
.c-content .c-content__inner > p + h4,
.c-content .c-content__inner > p + figure {
	margin-top: 1.25rem;
}

.c-heading-sub__ja {
	font-size: 2.25rem;
	margin-bottom: 0.5rem;
}

.c-heading-sub__en {
	font-size: 1rem;
}

.fixed-btn {
	bottom: 1.5rem;
	display: block;
	position: fixed;
	right: 5rem;
	z-index: 100;
}

.fixed-btn__link {
	background: linear-gradient(180deg, #FEB692 0%, #E80505 100%);
	border-radius: 62.4375rem;
	color: #fff;
	display: block;
	font-size: 1rem;
	font-weight: 700;
	line-height: 170%;
	max-width: 13.75rem;
	padding: 1.125rem 1.25rem 1.25rem;
	width: 100%;
}

.footer {
	padding-bottom: 2.5rem;
}

.footer__bg-img {
	max-height: 47.5rem;
	overflow: hidden;
	width: 100%;
}

.footer__bg-img img {
	aspect-ratio: 1440/760;
}

.footer__cta {
	margin-top: 12.5rem;
}

.footer__cta-heading {
	margin-bottom: 5.25rem;
	text-align: left;
}

.footer__cta-heading p {
	font-size: 1rem;
	margin-bottom: 1rem;
}

.footer__cta-heading h2 span.-sub {
	font-size: 2.75rem;
}

.footer__cta-heading h2 span.-main {
	font-size: 4rem;
}

.footer__cta-list {
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 2.5rem;
}

.footer__cta-item {
	padding: 4rem 2.5rem 1.875rem;
}

.footer__cta-item-wrap {
	gap: 1.25rem;
}

.footer__cta-item-title {
	font-size: 1.5rem;
}

.footer__cta-item-img {
	width: 2.5rem;
}

.footer__cta-item-text {
	font-size: 1rem;
}

.footer__cta-item-btn {
	margin-top: 2.5rem;
}

.footer__cta-item-btn a {
	justify-content: left;
	padding: 1.5rem 3.75rem;
}

.footer__cta-item-list {
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	margin-top: 1.25rem;
	max-width: none;
	max-width: initial;
}

.footer__cta-item-item-label {
	font-size: 1.25rem;
	margin-top: 0.125rem;
	padding-bottom: 0.0625rem;
	padding-top: 0.0625rem;
	width: 6.25rem;
}

.footer__cta-item-item-tel {
	font-size: 1.75rem;
}

.footer__cta-item-note {
	font-size: 0.8125rem;
}

.footer__nav-list {
	display: flex;
	gap: 1.5rem;
}

.footer__nav-item a {
	font-size: 1rem;
}

.footer__copyright small {
	font-size: 0.8125rem;
}

.footer__copyright {
	margin-top: -1.5rem;
}

.header {
	height: 6.3125rem;
}

.header__inner {
	gap: 1.25rem;
	grid-template-columns: auto 1fr auto;
}

.header__logo {
	max-width: 27.5rem;
}

.header__pc-nav {
	display: block;
	height: 100%;
}

.header__contact-info {
	grid-gap: 0.25rem;
	display: grid;
	gap: 0.25rem;
	margin-left: auto;
	width: -moz-fit-content;
	width: fit-content;
}

.header__contact-info-list {
	gap: 0.8125rem;
	grid-template-columns: repeat(3, auto);
}

.header__contact-info-item {
	width: 8.75rem;
}

.header__contact-info-buttons {
	gap: 0.25rem;
	width: 14.75rem;
}

.header__contact-info-button-link {
	border-radius: 62.4375rem;
	font-size: 0.9375rem;
	line-height: 150%;
	padding: 0.25rem 1.25rem;
}

.header__contact-info-button-link::after {
	-webkit-mask-image: url("../img/common/arrow-right-1.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 0.5rem;
	mask-image: url("../img/common/arrow-right-1.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 0.375rem;
}

.header__global-nav {
	padding-bottom: 0.75rem;
	padding-top: 0.75rem;
}

.header__pc-nav-items {
	display: flex;
	height: 1.4375rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 47.625rem;
}

.header__pc-nav-item {
	height: inherit;
	position: relative;
	width: 100%;
}

.header__pc-nav-item:not(:last-child)::after {
	background-color: #999999;
	content: "";
	display: inline-block;
	height: 1.1875rem;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0.0625rem;
}

.header__pc-nav-item a {
	align-content: center;
	display: inline-flex;
	flex-direction: column;
	flex-wrap: wrap;
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	height: inherit;
	justify-content: center;
	width: inherit;
	word-break: keep-all;
}

.header__hamburger {
	display: none;
}

.header__drawer {
	display: none;
}

.header__hamburger {
	display: none;
}

.inner {
	max-width: 1100px;
	padding-left: 30px;
	padding-right: 30px;
}

.inner.-expand {
	max-width: 1340px;
}

.mv-sub--layout {
	margin-bottom: 7.5rem;
}

.mv-sub__bg {
	background: linear-gradient(94.93deg, #B9E0E0 10.3%, #4BACC6 62.29%, #23A4C7 88.09%), var(--mv-sub-bg-url) center center/cover no-repeat;
	height: 22.125rem;
}

.mv-sub__title {
	font-size: 3rem;
	font-weight: 900;
}

.navigation.pagination {
	margin-top: 3.75rem;
}

.nav-links {
	gap: 0.5rem;
}

.nav-links a,
.nav-links span {
	font-size: 1rem;
	height: 2.5rem;
	width: 2.5rem;
}

.nav-links .page-numbers {
	font-size: 1.25rem;
}

.nav-links .prev,
.nav-links .next {
	height: 3.75rem;
	width: 3.75rem;
}

.nav-links .prev::after,
.nav-links .next::after {
	height: 0.9375rem;
	width: 0.6875rem;
}

.nav-links .prev {
	margin-right: 4.5rem;
}

.nav-links .next {
	margin-left: 4.5rem;
}

.sidebar__item-list {
	gap: 2rem;
}

.sidebar__item-item-img img {
	aspect-ratio: 216/121;
}

.blog--layout {
	padding-bottom: 5rem;
}

.blog__articles {
	gap: 3rem 1rem;
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 5rem;
}

.blog__thumbnail {
	border-radius: 0.5rem;
}

.blog__title {
	font-size: 1.125rem;
}

.s-blog--layout {
	margin-bottom: 7.5rem;
	margin-top: 2.9375rem;
}

.s-blog__inner {
	align-items: start;
	gap: 1.5rem;
	grid-template-columns: 1fr 15.5rem;
}

.s-blog__contents,
.s-blog__author {
	padding: 1.5rem;
}

.s-blog__meta {
	margin-bottom: 1rem;
}

.s-blog__date {
	font-size: 1rem;
}

.s-blog__title {
	font-size: 2rem;
	margin-bottom: 3rem;
}

.s-blog__thumbnail {
	margin-bottom: 3.75rem;
}

.s-blog__author {
	grid-gap: 2rem;
	display: grid;
	gap: 2rem;
}

.s-blog__author-img {
	height: 7.5rem;
	width: 7.5rem;
}

.s-blog__author-heading {
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.s-blog__author-name {
	font-size: 1rem;
}

.s-blog__author-title {
	margin-bottom: 0.5rem;
}

.s-blog__author-profile {
	font-size: 1rem;
}

.s-blog__content {
	font-size: 1rem;
	gap: 2rem;
}

.s-blog__content h2 {
	font-size: 1.75rem;
}

.s-blog__content h2:not(:first-child) {
	margin-top: 1.75rem;
}

.s-blog__content h3 {
	font-size: 1.25rem;
	margin-bottom: -1rem;
}

.s-blog__content h4 {
	font-size: 1.25rem;
	margin-bottom: -1rem;
}

.s-blog__content h5 {
	margin-bottom: -1rem;
}

.s-blog__content ul,
.s-blog__content ol {
	padding-left: 1.5rem;
}

.s-blog__content ul strong,
.s-blog__content ol strong {
	margin-bottom: 0.5rem;
}

.case--layout {
	padding-bottom: 5rem;
}

.case__articles {
	gap: 3rem 1rem;
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 5rem;
}

.case__title {
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

.case__excerpt {
	font-weight: 500;
}

.s-case--layout {
	margin-bottom: 7.5rem;
	margin-top: 2.9375rem;
}

.s-case__inner {
	align-items: start;
	gap: 1.5rem;
	grid-template-columns: 1fr 15.5rem;
}

.s-case__contents {
	padding: 1.5rem;
}

.s-case__title {
	font-size: 2rem;
	margin-bottom: 3rem;
}

.s-case__thumbnail {
	margin-bottom: 3.75rem;
}

.s-case__content {
	font-size: 1rem;
	gap: 2rem;
}

.s-case__content h2 {
	font-size: 1.75rem;
}

.s-case__content h2:not(:first-child) {
	margin-top: 1.75rem;
}

.s-case__content h3 {
	font-size: 1.25rem;
	margin-bottom: -1rem;
}

.s-case__content h4 {
	font-size: 1.25rem;
	margin-bottom: -1rem;
}

.s-case__content h5 {
	margin-bottom: -1rem;
}

.s-case__content ul,
.s-case__content ol {
	padding-left: 1.5rem;
}

.s-case__content ul strong,
.s-case__content ol strong {
	margin-bottom: 0.5rem;
}

.error__heading {
	font-size: 2rem;
	margin-bottom: 2rem;
}

.error__text {
	font-size: 1rem;
	margin-bottom: 3rem;
}

.t-blog--layout {
	padding-bottom: 5rem;
}

.t-blog__heading {
	margin-bottom: 3.5rem;
}

.t-blog__splide {
	margin-bottom: 3.5rem;
}

.t-blog__card-link {
	gap: 1.5rem;
}

.t-blog__card-img {
	border-radius: 0.5rem;
}

.t-blog__card-title {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.t-blog__btn {
	margin-bottom: 7.5rem;
}

.t-blog__media-list {
	gap: 2.5rem;
}

.t-blog__media-link {
	border-radius: 1rem;
	grid-template-columns: 1fr auto;
}

.t-blog__media-item-wrap {
	padding: 2.0625rem 3rem 2.0625rem 3.5rem;
}

.t-blog__media-item-text {
	font-size: 1.25rem;
}

.t-blog__media-item-img {
	max-width: 30rem;
}

.t-case--layout {
	margin-bottom: 7.5rem;
}

.t-case__heading {
	margin-bottom: 3.5rem;
}

.t-case__splide {
	margin-bottom: 3.5rem;
}

.t-case__list {
	grid-gap: 1rem;
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(3, 1fr);
}

.t-company {
	clip-path: polygon(100% 0, 100% calc(100% - 7.5rem), 50% 100%, 0 calc(100% - 7.5rem), 0 0, 50% 7.5rem);
	padding-bottom: 12.5rem;
	padding-top: 12.5rem;
}

.t-company--layout {
	margin-bottom: 7.5rem;
}

.t-company__heading {
	font-size: 4rem;
	margin-bottom: 3.5rem;
}

.t-company__wrap {
	align-items: center;
	gap: 2rem;
	grid-template-columns: auto 1fr;
	margin-bottom: 5rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 57.0625rem;
}

.t-company__text {
	font-size: 1.25rem;
}

.t-company__sub-heading {
	font-size: 2.25rem;
	margin-bottom: 2.5rem;
}

.t-company__sub-heading .num {
	font-size: 4rem;
	margin-left: 0.25rem;
	margin-right: 0.25rem;
}

.t-company__sub-heading .primary::before {
	height: 4.5rem;
	left: -0.5rem;
	top: -1.25rem;
	width: 15.4375rem;
}

.t-company__sub-text {
	font-size: 1.25rem;
	margin-bottom: 5rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 47.5625rem;
}

.t-company__merit {
	border-radius: 1rem;
	padding: 3.875rem 2rem;
}

.t-company__merit-heading {
	margin-bottom: 3.5rem;
}

.t-company__merit-list {
	gap: 1.625rem;
	grid-template-columns: repeat(4, 1fr);
}

.t-company__merit-item {
	gap: 2rem;
	grid-template-rows: auto 1fr;
}

.t-company__merit-item::before {
	font-size: 2rem;
	height: 2.375rem;
	width: 1.1875rem;
}

.t-company__merit-item-img {
	margin-left: auto;
	margin-right: auto;
	width: 6.25rem;
}

.t-company__merit-item-text {
	font-size: 1rem;
}

.t-event--layout {
	margin-bottom: 7.5rem;
}

.t-event__heading {
	gap: 0.5rem;
	margin-bottom: 4rem;
}

.t-event__heading-text.-md {
	font-size: 2.25rem;
}

.t-event__heading-text.-lg {
	font-size: 4rem;
}

.t-event__heading-text.-accent {
	font-size: 4rem;
	padding-bottom: 0.375rem;
	padding-left: 1rem;
	padding-right: 1rem;
}

.t-event__list {
	gap: 2.5rem 1rem;
	grid-template-columns: repeat(4, 1fr);
	margin-bottom: 7.5rem;
}

.t-event__item-text {
	line-height: 170%;
}

.t-event__item-btn {
	display: none;
}

.t-faq--layout {
	margin-bottom: 7.5rem;
}

.t-faq__heading {
	margin-bottom: 3.5rem;
}

.t-faq__list {
	gap: 2rem 1rem;
	grid-template-columns: repeat(2, 1fr);
}

.t-faq__item {
	gap: 1.125rem;
	padding-bottom: 1.125rem;
	padding-left: 1rem;
	padding-right: 1rem;
}

.t-faq__item-title {
	align-items: center;
	font-size: 1.25rem;
	gap: 1rem;
}

.t-faq__item-title::before {
	font-size: 1.5rem;
}

.t-faq__item-text {
	font-size: 1rem;
}

.t-flow--layout {
	margin-bottom: 7.5rem;
}

.t-flow__heading {
	margin-bottom: 3.5rem;
}

.t-flow__list {
	gap: 0 2.5rem;
	grid-template-columns: repeat(5, 1fr);
}

.t-flow__item {
	grid-row: span 3;
	grid-template-rows: subgrid;
}

.t-flow__item:not(:last-child)::after {
	right: -2.25rem;
	top: 3.25rem;
}

.t-flow__item-sp-wrap {
	display: contents;
}

.t-flow__item-img {
	margin-left: auto;
	margin-right: auto;
	width: 8.5rem;
}

.t-flow__item-title {
	align-self: center;
	text-align: center;
}

.mv--layout {
	padding-bottom: 5.29%;
	padding-top: 13.3125rem;
}

.t-mv__catchphrase {
	gap: 0.5rem;
	left: 2rem;
	top: -10.625rem;
}

.t-mv__catchphrase-text {
	padding: 0 1rem;
}

.t-mv__catchphrase-text.-md {
	font-size: 2.5rem;
}

.t-mv__catchphrase-text.-accent {
	font-size: 4rem;
}

.t-mv__catchphrase-text:last-child {
	margin-left: -0.625rem;
}

.slick__list {
	margin-left: -1rem;
	margin-right: -1rem;
}

.slick__item {
	margin-left: 1rem;
	margin-right: 1rem;
	width: 42.5rem;
}

.t-solution--layout {
	margin-bottom: 7.5rem;
}

.t-solution__heading {
	gap: 0.25rem;
	margin-bottom: 4rem;
}

.t-solution__heading .t-solution__heading-text.-md {
	font-size: 2.25rem;
}

.t-solution__heading .t-solution__heading-text.-lg {
	font-size: 4rem;
}

.t-solution__heading .t-solution__heading-text.-accent {
	font-size: 4rem;
	padding-bottom: 0.25rem;
	padding-left: 1rem;
}

.t-solution__reason {
	border-radius: 1rem;
	padding: 3.875rem 2rem;
}

.t-solution__reason-heading {
	margin-bottom: 6.4375rem;
}

.t-solution__reason-list {
	gap: 0.5rem;
	grid-template-columns: repeat(3, 1fr);
}

.t-solution__reason-item::before {
	top: -4.4375rem;
}

.t-solution__reason-item-body {
	margin-left: auto;
	max-width: 17.5rem;
}

.t-solution__reason-item-sp-wrap {
	display: contents;
}

.t-solution__reason-item-title {
	font-size: 1.5rem;
}

.t-solution__reason-item-img {
	border-radius: 0.5rem;
}

.t-worries--layout {
	clip-path: polygon(100% 0, 100% calc(100% - 7.5rem), 50% 100%, 0 calc(100% - 7.5rem), 0 0);
	margin-bottom: 5rem;
	padding-bottom: 11.5rem;
	padding-top: 0.625rem;
}

.t-worries__heading {
	margin-bottom: 3.5rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 36rem;
}

.t-worries__heading-text.-lg {
	font-size: 4rem;
}

.t-worries__heading-text.-md {
	font-size: 2.25rem;
}

.t-worries__list {
	gap: 1.5rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 56rem;
}

.t-worries__item {
	clip-path: polygon(1.25rem 0%, 100% 0%, calc(100% - 1.25rem) 100%, 0% 100%);
	font-size: 1.5rem;
	font-weight: 500;
	padding: 1rem;
	text-align: center;
}

}

@media screen and (min-width: 768px) and (max-width: 1114px) {

.splide__arrows .splide__arrow {
	top: 26%;
}

}

@media screen and (min-width: 1024px) {

html {
	scroll-padding-top: 6.3125rem;
}

}

@media (min-width: 1040px) {

html {
	font-size: 16px;
}

}

@media screen and (min-width: 1440px) {

.splide__arrows .splide__arrow {
	aspect-ratio: 1/1;
	height: auto;
	width: 2.778%;
}

}

@media screen and (max-width: 767px) {

.footer__cta-heading h2 span.-sub {
	letter-spacing: -0.02em;
}

.footer__nav {
	margin-bottom: 0.4375rem;
}

.header {
	background-color: #fff;
}

.header__inner {
	max-width: none;
	max-width: initial;
	padding: 0;
}

.header__logo {
	margin-left: 20px;
}

.header__contact-info-text {
	margin-bottom: 0.5rem;
}

.header__contact-info-item {
	background-color: #fff;
}

.header__contact-info-item-link {
	text-align: center;
}

.header__contact-info-buttons {
	grid-column: 1/3;
	grid-template-columns: repeat(2, 1fr);
}

.s-blog__author-img {
	grid-row: 2/4;
}

.s-blog__author-wrap {
	display: contents;
}

.s-blog__author-heading {
	grid-column: 1/3;
	order: -1;
}

.s-blog__author-profile {
	grid-column: 1/3;
}

.t-blog__media-link {
	gap: 0.5rem;
	padding: 1.5rem 0.625rem 1rem;
}

.t-blog__media-item-title {
	margin-left: auto;
	margin-right: auto;
}

.t-case__splide {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.t-company__merit-item {
	align-items: center;
	gap: 1.125rem;
	grid-template-columns: 5.1875rem 1fr;
	padding-bottom: 0.375rem;
	padding-top: 0.375rem;
}

.t-event__heading-text.-lg {
	letter-spacing: -0.02em;
}

.t-event__item-text {
	margin-bottom: 0.5rem;
}

.t-flow__item:not(:last-child)::after {
	bottom: -2.5rem;
	left: 50%;
	transform: translateX(-50%) rotate(90deg);
}

.t-solution__reason-item:nth-of-type(even)::before {
	left: auto;
	right: 0;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@keyframes slideInFromBottom {

to {
	opacity: 1;
	transform: translateY(0);
}

}


/*# sourceMappingURL=style.css.map */
