/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/

/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/

/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/

html {
	font-size: 16px;
	font-size: 16px;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	color: #333;
}

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

a:hover {
	opacity: 0.7;
}

/*
 * 参考
 * https: //github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/

/* Box sizing rules */

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

/* remove default margin */

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

/* remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Set core root defaults */

html:focus-within {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

main {
	overflow-x: clip;
}

/* 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,
picture {
	max-width: 100%;
	display: block;
}

/* Inherit fonts for inputs and buttons */

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

li {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* remove all animations and transitions for people that prefer not to see them */

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

.l-blog {
	margin-top: 2.5rem;
}

.l-inner {
	width: 100%;
	max-width: 1040px;
	padding-inline: 20px;
	margin-inline: auto;
}

.l-reason {
	margin-top: 3.75rem;
}

.l-service {
	margin-top: 5.1875rem;
}

.c-breadcrumb {
	padding: 1rem 0;
}

.c-breadcrumb a {
	color: #24AFD0;
}

.c-btn {
	display: inline-block;
	min-width: 200px;
	padding: 10px 20px;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	background-color: #24AFD0;
	border: 1px solid #24AFD0;
	transition: 0.3s;
}

.c-btn::after {
	content: "";
	display: inline-block;
	margin-left: 16px;
	width: 10px;
	height: 10px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
	transition: 0.3s;
}

.c-btn:hover {
	text-decoration: none;
	background-color: #fff;
	color: #24AFD0;
	opacity: 1;
	cursor: pointer;
}

.c-btn:hover::after {
	border-top: 1px solid #24AFD0;
	border-right: 1px solid #24AFD0;
	transform: translateX(5px) rotate(45deg);
}

.c-button__link {
	position: relative;
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.4285714286;
	letter-spacing: 0.08em;
	color: #fff;
	padding-block: 1.125rem;
	min-width: 17.5rem;
	text-align: center;
	border-radius: calc(infinity * 1px);
	background-color: #000;
}

.c-button__link::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 1.375rem;
	transform: translateY(-50%);
	background: url(../images/button-arrow.png) no-repeat center center/contain;
	width: 0.375rem;
	aspect-ratio: 6/10;
}

.c-cat {
	min-width: 100px;
	font-size: 12px;
	background-color: skyblue;
	border: 1px solid skyblue;
	padding: 4px 10px;
	color: #fff;
	text-align: center;
	display: inline-block;
}

.c-cat.is-current {
	color: red;
}

.c-column2 {
	display: grid;
	gap: 1.875rem;
	grid-template-columns: repeat(2, 1fr);
}

.c-column2--gap60 {
	gap: 1.875rem;
}

.c-column3 {
	display: grid;
	gap: 1.875rem;
	grid-template-columns: repeat(3, 1fr);
}

.c-column4 {
	display: grid;
	gap: 1.875rem;
	grid-template-columns: repeat(4, 1fr);
}

.c-fvSub__single {
	margin-top: 4.5rem;
}

.c-list {
	display: flex;
}

.c-list + .c-list {
	margin-top: 30px;
}

.c-list__title {
	width: 20%;
}

.c-list__text {
	width: 79.8%;
}

.c-pagination01 {
	border-top: 1px solid #E6E7DE;
	padding-top: 60px;
	position: relative;
}

.c-pagination01 .screen-reader-text {
	display: none;
}

.c-pagination01 .nav-links {
	display: flex;
	justify-content: space-between;
}

.c-pagination01 .nav-links a::after {
	display: none;
}

.c-pagination01 .nav-next a,
.c-pagination01 .nav-previous a {
	transition: 0.5s opacity;
	position: relative;
	display: block;
}

.c-pagination01 .nav-previous a img:nth-of-type(2) {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: 0.5s opacity;
}

.c-pagination01 .nav-next,
.c-pagination01 .nav-previous {
	width: 120px;
}

.c-pagination01 .nav-next {
	margin-left: auto;
}

.c-pagination01 .nav-next a img:nth-of-type(2) {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: 0.3s;
}

.c-pagination02 .screen-reader-text {
	display: none;
}

.c-pagination02 .nav-links {
	display: flex;
	justify-content: space-between;
}

.c-pagination02 .nav-next,
.c-pagination02 .nav-previous {
	font-size: 16px;
	font-weight: 300;
}

.c-section-title {
	text-align: center;
}

.c-section-title__en {
	font-family: "Montserrat", sans-serif;
	font-size: 2.625rem;
	font-weight: 700;
	line-height: 1.2380952381;
	letter-spacing: 0.06em;
	color: #000;
	text-transform: uppercase;
}

.c-section-title__jp {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	color: #222;
	line-height: 1;
	margin-top: 0.125rem;
}

.c-section-title.c-section-title--white .c-section-title__en {
	color: #fff;
}

.c-section-title.c-section-title--white .c-section-title__jp {
	color: #fff;
}

.c-section-title.c-section-title--left {
	text-align: left;
}

.c-year {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.c-year a {
	padding: 4px 15px;
	text-align: center;
	display: inline-block;
	min-width: 78px;
	border: 1px solid skyblue;
	font-size: 14px;
	color: #333;
}

.c-year.current-year a[aria-current=page] {
	color: red;
	font-weight: bold;
}

.c-year.current-month a[aria-current=page] {
	color: red;
	font-weight: bold;
}

.p-about {
	position: relative;
}

.p-about::before {
	content: "";
	position: absolute;
	top: -4.625rem;
	left: 0;
	right: 0;
	background: url(../images/about-background.png) no-repeat center center/cover;
	width: 100%;
	height: 4.6875rem;
}

.p-about::after {
	content: "ABOUT US";
	position: absolute;
	top: 4.125rem;
	right: 0.625rem;
	font-family: "Montserrat", sans-serif;
	font-size: 4.6875rem;
	font-weight: 700;
	color: #f2f2f2;
	line-height: 1;
	letter-spacing: 0.08em;
	writing-mode: vertical-rl;
}

.p-about__title {
	position: relative;
	padding-left: 1.625rem;
	z-index: 1;
}

.p-about__title-jp {
	font-size: 0.875rem;
	font-weight: 500;
	color: #222222;
	letter-spacing: 0.2em;
	padding-left: 1.3125rem;
}

.p-about__title-en {
	font-family: "Montserrat", sans-serif;
	font-size: 4.0625rem;
	font-weight: 700;
	color: #000;
	line-height: 1.2153846154;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.p-about__content {
	position: relative;
	margin-top: -1.25rem;
}

.p-about__content::before {
	content: "";
	position: absolute;
	top: 6.75rem;
	top: 21.906693712%;
	right: 0;
	background: url(../images/about-ashirai.png) no-repeat center center/contain;
	width: 16.0625rem;
	aspect-ratio: 257/200;
}

.p-about__img {
	position: relative;
	width: 59.2%;
}

.p-about__img img {
	aspect-ratio: 592/310;
	object-fit: contain;
	width: 100%;
	height: auto;
}

.p-about__texts {
	position: absolute;
	top: 1.25rem;
	right: -15rem;
}

.p-about__large-text span {
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	font-size: 1.75rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.06em;
	background-color: #24AFD0;
	padding-inline: 0.625rem;
}

.p-about__large-text span + span {
	margin-top: 0.6875rem;
}

.p-about__en-text {
	font-family: "Montserrat", sans-serif;
	font-size: 0.8125rem;
	font-weight: 500;
	color: #24AFD0;
	line-height: 1.6923076923;
	letter-spacing: 0.15em;
	margin-top: 0.6875rem;
}

.p-about__text {
	font-size: 0.875rem;
	font-weight: 400;
	color: #000;
	line-height: 2.1428571429;
	letter-spacing: 0.02em;
	margin-top: 2.6875rem;
}

.p-about__container {
	display: flex;
	justify-content: center;
	gap: 2.1875rem;
	margin-top: 2.5rem;
}

.p-about__history {
	width: 56.5%;
	background-color: #FFFBF0;
	border-radius: 1.25rem;
	padding: 1.875rem 2.875rem;
}

.p-about__heading {
	position: relative;
	padding-bottom: 1rem;
}

.p-about__heading::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #000;
	width: 3.125rem;
	height: 0.0625rem;
}

.p-about__heading__en {
	display: inline-block;
	font-family: "Montserrat", sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: #214C6A;
	line-height: 1.2142857143;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.p-about__heading__jp {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 500;
	color: #214C6A;
	letter-spacing: 0.04em;
	margin-left: 0.625rem;
	transform: translateY(-0.125rem);
}

.p-about__history-items {
	position: relative;
	margin-top: 1.4375rem;
}

.p-about__history-items::before {
	content: "";
	position: absolute;
	top: 0.625rem;
	left: 0.4375rem;
	background-color: #000;
	width: 0.0625rem;
	height: 96%;
}

.p-about__history-item {
	display: flex;
	gap: 1.8125rem;
}

.p-about__history-item + .p-about__history-item {
	margin-top: 1.5625rem;
}

.p-about__history-year {
	position: relative;
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: #000;
	letter-spacing: 0.08em;
	width: 13.9830508475%;
	padding-left: 1.5rem;
	margin-top: 0.3125rem;
}

.p-about__history-year::before {
	content: "";
	position: absolute;
	top: 0.25rem;
	left: 0;
	background: url(../images/history-circle.png) no-repeat center center/contain;
	width: 0.9375rem;
	aspect-ratio: 1;
}

.p-about__history-text {
	font-size: 0.875rem;
	font-weight: 500;
	color: #000;
	line-height: 2.2857142857;
	letter-spacing: 0.04em;
	width: 79.8728813559%;
}

.p-about__message {
	width: 40%;
	background-color: #FFFBF0;
	border-radius: 1.25rem;
	padding-top: 1.875rem;
	padding-bottom: 2.125rem;
	padding-inline: 1.9375rem;
}

.p-about__message-img {
	margin-top: 1.3125rem;
}

.p-about__message-img img {
	aspect-ratio: 337/250;
	object-fit: contain;
	width: 100%;
	height: auto;
}

.p-about__message-button {
	position: relative;
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	min-width: 12.5rem;
	background-color: #000;
	border-radius: calc(infinity * 1px);
	padding-block: 0.6875rem;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.4166666667;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-align: center;
	margin-top: 2.3125rem;
	margin-inline: auto;
	transition: 0.3s;
}

.p-about__message-button::before {
	content: "";
	position: absolute;
	position: absolute;
	top: 53%;
	right: 0.875rem;
	transform: translateY(-50%);
	background: url(../images/button-arrow.png) no-repeat center center/contain;
	width: 0.375rem;
	aspect-ratio: 4/7;
}

.p-about__button {
	text-align: center;
	margin-top: 2.5rem;
}

.archive {
	position: relative;
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

.archive__items {
	display: grid;
	grid-template-columns: 1fr;
	-moz-column-gap: 1.6875rem;
	column-gap: 1.6875rem;
	row-gap: 1.375rem;
}

.archive__item {
	border: 3px solid #F5F5F5;
	background: #FFF;
}

.archive__item a {
	display: inline-block;
	width: 100%;
	height: 100%;
	color: #222222;
}

.archive__image {
	position: relative;
	height: 11.25rem;
}

.archive__image img {
	width: 100%;
	height: inherit;
	object-fit: cover;
}

.archive__category {
	position: absolute;
	top: 8px;
	left: 8px;
	padding: 0.3rem 1.2rem;
	background: #24AFD0;
	color: #FFF;
	font-weight: 700;
	font-size: 0.625rem;
	letter-spacing: 0.1em;
}

.archive__content {
	padding: 10px;
}

.archive__title {
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
	letter-spacing: 0.04em;
}

.archive__text {
	margin-top: 5px;
	font-weight: 400;
	font-size: 0.6875rem;
	line-height: 1.5;
	letter-spacing: 0.08em;
}

.archive__btn {
	margin-top: 4.6875rem;
	text-align: center;
}

.archive__btn a {
	display: inline-block;
	position: relative;
	width: 23.25rem;
	max-width: 100%;
	height: 4.3125rem;
	border: 6px solid #FAEE64;
	border-radius: 60px;
	background: #FFF;
	text-align: center;
}

.archive__btn a::after {
	position: absolute;
	top: 50%;
	right: 50px;
	width: 7px;
	height: 11px;
	transform: translateY(-50%);
	background: url(../img/arrow_blue.svg) no-repeat;
	background-size: contain;
	content: "";
}

.archive__btn a span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.archive__item-case {
	display: grid;
	padding-bottom: 0.9375rem;
	gap: 0.25rem;
	border-radius: 24px;
}

.archive__item-case .topCase__image {
	border-radius: 24px 24px 0 0;
}

.banner {
	z-index: 100;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.7);
}

.banner__head {
	background-color: #24AFD0;
	color: #fff;
	font-weight: 500;
	font-size: 0.625rem;
	letter-spacing: 0.05em;
	text-align: center;
	padding-block: 1px 2px;
}

.banner__container {
	max-width: 425px;
	margin-inline: auto;
	aspect-ratio: 375/46;
}

.banner__items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.banner__item:nth-child(3) {
	margin-top: -0.28125rem;
}

.banner__item img {
	width: 100%;
	object-fit: cover;
}

.p-blog2__inner {
	position: relative;
	padding: 3.625rem 0;
}

.p-blog2__inner:before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/blog_bg.jpg);
	background-size: cover;
	content: "";
}

.p-blog2__inner::after {
	display: block;
	position: absolute;
	bottom: -0.375rem;
	left: 50%;
	width: 100%;
	transform: translateX(-50%);
	content: "new arrivals";
	color: #fff;
	font-weight: 500;
	font-size: 2.5rem;
	line-height: 1;
	font-family: "Montserrat", sans-serif;
	letter-spacing: 0.04em;
	text-align: center;
	text-transform: uppercase;
	opacity: 0.07;
}

.p-blog2__content {
	padding: 0 1.25rem;
}

.p-blog2__block {
	position: relative;
	max-width: 37rem;
	margin-inline: auto;
	color: #fff;
}

.p-blog2__enTitle {
	font-weight: 700;
	font-size: 2rem;
	line-height: 1;
	font-family: "Montserrat", sans-serif;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.p-blog2__text {
	margin-top: 1.8rem;
	font-size: 1.4rem;
	line-height: 2.4285714286;
	letter-spacing: 0.06em;
}

.p-blog2__button {
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 13.5rem;
	margin-top: 3.5rem;
	margin-inline: auto;
	padding: 1.45rem 0;
	padding: 0.90625rem 0;
	overflow: hidden;
	border-radius: 99.9rem;
	background: #fff;
	color: #000;
	font-weight: 500;
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: capitalize;
}

.p-blog2__button:hover {
	opacity: 0.8;
}

.p-blog2__button::after {
	position: absolute;
	right: 2.3rem;
	width: 0.4rem;
	height: 0.4rem;
	transform: rotate(-45deg);
	border-right: 1px solid #175489;
	border-bottom: 1px solid #175489;
	content: "";
}

.p-blog2__body {
	width: 100%;
	margin-top: 3.2rem;
	background-color: #fff;
}

.p-blog2__items {
	position: relative;
	max-width: 37rem;
	margin-inline: auto;
	padding: 0.8rem 1.6rem;
	padding: 0.5rem 1rem;
	background-color: #fff;
}

.p-blog2__item {
	display: flex;
	-moz-column-gap: 2.1333333333vw;
	column-gap: 2.1333333333vw;
	align-items: center;
	width: 100%;
	padding: 1.8rem 0;
	padding: 1.125rem 0;
	border-bottom: 1px solid #EAECEC;
}

.p-blog2__item:last-of-type {
	border: none;
}

.p-blog2__thumbnail {
	flex-shrink: 0;
	max-width: 6.875rem;
}

.p-blog2__thumbnail img {
	aspect-ratio: 198/126;
	object-fit: cover;
	width: 100%;
	height: auto;
}

.p-blog2__wrap {
	position: relative;
	width: 100%;
}

.p-blog2__wrap::after {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	width: 0.875rem;
	height: 0.875rem;
	transform: translateY(-50%);
	background-image: url(../images/arrow_circle.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	content: "";
}

.p-blog2__info {
	display: flex;
	-moz-column-gap: 0.5rem;
	column-gap: 0.5rem;
	align-items: center;
}

.p-blog2__category {
	color: #000;
	font-weight: 700;
	font-size: 0.625rem;
	letter-spacing: 0.06em;
}

.p-blog2__time {
	color: #D8B151;
	font-weight: 500;
	font-size: 0.75rem;
	font-family: "Montserrat", sans-serif;
	letter-spacing: 0.06em;
}

.p-blog2__title {
	width: 100%;
	max-width: 27.75rem;
	margin-top: 0.25rem;
	padding-right: 1.875rem;
	font-weight: 500;
	font-size: 0.75rem;
	line-height: 1.5;
	letter-spacing: 0.06em;
}

.p-bottom-contact5 {
	position: relative;
	background-image: url(../images/bottom_cta_bg.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #fff;
	text-align: center;
}

.p-bottom-contact5::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.86);
	content: "";
}

.p-bottom-contact5__inner {
	position: relative;
	width: 100%;
	max-width: 60rem;
	max-width: 37.5rem;
	margin-inline: auto;
	padding: 6.4rem 2rem;
	padding: 4rem 1.25rem;
}

.p-bottom-contact5__title {
	font-weight: 700;
	font-size: 2.4rem;
	font-size: 1.5rem;
	letter-spacing: 0.14em;
}

.p-bottom-contact5__enTitle {
	display: block;
	color: #b59a24;
	font-weight: 500;
	font-size: 1.8rem;
	font-size: 1.125rem;
	font-family: "Oswald", sans-serif;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.p-bottom-contact5__description {
	margin-top: 1.6rem;
	margin-top: 1rem;
	font-size: 1.5rem;
	font-size: 0.9375rem;
	line-height: 1.7333333333;
	letter-spacing: 0.13em;
	text-align: center;
}

.p-bottom-contact5__wrap {
	margin-top: 0;
}

.p-bottom-contact5__block {
	width: 100%;
	margin-inline: auto;
}

.p-bottom-contact5__block:nth-of-type(2) {
	margin-top: 3.4rem;
	margin-top: 2.125rem;
}

.p-bottom-contact5__airplane {
	width: 4rem;
	width: 2.5rem;
	height: 3.3rem;
	height: 2.0625rem;
	margin-inline: auto;
	background-image: url(../images/icon_mail.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.p-bottom-contact5__text {
	margin-top: 1.8rem;
	margin-top: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.13em;
}

.p-bottom-contact5__callWrap .p-bottom-contact5__text {
	margin-top: 1.6rem;
	margin-top: 1rem;
}

.p-bottom-contact5__button {
	display: inline-block;
	width: 100%;
	margin-top: 2.4rem;
	margin-top: 1.5rem;
	padding: 2rem 0;
	padding: 1.25rem 0;
	border: 1px solid #fff;
	font-weight: 500;
	font-size: 1.5rem;
	font-size: 0.9375rem;
	letter-spacing: 0.13em;
	text-align: center;
}

.p-bottom-contact5__call {
	width: 2.8rem;
	width: 1.75rem;
	height: 3.6rem;
	height: 2.25rem;
	margin-inline: auto;
	background-image: url(../images/icon_tel_white.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.p-bottom-contact5__callButton {
	display: block;
	margin-top: 0.9rem;
	margin-top: 0.5625rem;
	font-weight: 700;
	font-size: 3.2rem;
	font-size: 2rem;
	font-family: "Montserrat", sans-serif;
	letter-spacing: 0.1em;
}

.p-bottom-contact5__time {
	display: block;
	margin-top: 0.6rem;
	margin-top: 0.375rem;
	font-weight: 500;
	font-size: 1.2rem;
	font-size: 0.75rem;
	letter-spacing: 0.13em;
}

.p-card {
	position: relative;
}

.p-card--flex {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.p-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.p-card__cat {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
}

.p-card__img {
	overflow: hidden;
	z-index: 1;
	position: relative;
}

.p-card__img img {
	aspect-ratio: 4/3;
	object-fit: cover;
	height: auto;
	width: 100%;
	transition: transform 0.5s;
	backface-visibility: hidden;
}

.p-card__body {
	margin-top: 10px;
}

.p-card__date {
	display: inline-block;
}

.p-card__title {
	font-size: 20px;
	font-weight: 700;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.p-card__text {
	font-size: 16px;
	font-weight: 400;
	margin-top: 10px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.p-card__tag {
	margin-top: auto;
	padding-top: 10px;
}

.company {
	position: relative;
	padding-top: 6rem;
	padding-top: 3.75rem;
	background-color: #f7f7f7;
}

.p-company1__container {
	display: flex;
	row-gap: 1.2rem;
	flex-direction: column;
	margin-top: 2.4rem;
}

.p-company1__images {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 1.25rem;
	margin-top: 1.6875rem;
}

.p-company1__img img {
	aspect-ratio: 490 / 326;
	object-fit: cover;
	width: 100%;
	height: auto;
	border-radius: 20px;
}

.p-company1__body {
	width: 100%;
}

.p-company1__list {
	display: flex;
	position: relative;
	align-items: flex-start;
	padding: 1.6rem 0.5rem;
	padding: 1.375rem 0.3125rem;
	border-bottom: 1px solid #e5e3d9;
	font-size: 1.4rem;
	font-size: 0.875rem;
	line-height: 1.4285714286;
}

.p-company1__list::after {
	z-index: 2;
	position: absolute;
	top: 100%;
	left: 0;
	width: 20%;
	height: 1px;
	background: #D8B151;
	content: "";
}

.p-company1__list:first-of-type {
	padding-top: 0.4rem;
	padding-top: 0.25rem;
}

.p-company1__term {
	position: relative;
	flex-shrink: 0;
	width: 8.2rem;
	width: 5.125rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: capitalize;
}

.p-company1__description {
	font-weight: 400;
	letter-spacing: 0.04em;
}

.company .p-about1__sideScroll {
	margin-top: 3rem;
	margin-top: 1.875rem;
	margin-inline: calc(50% - 50vi);
}

.company .p-about1__sideScrollImg {
	width: 70rem;
	width: 43.75rem;
}

.p-company1__maps {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-top: 2.5rem;
}

.p-company1__map {
	display: block;
	margin-top: 10px;
	margin-top: 0.625rem;
}

.p-company1__map iframe {
	aspect-ratio: 4/3;
	object-fit: cover;
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

.p-company1__maps-title {
	position: relative;
	font-size: 16px;
	font-weight: 700;
	padding-left: 10px;
	padding-left: 0.625rem;
	margin-left: 20px;
	margin-left: 1.25rem;
}

.p-company1__maps-title::before {
	content: "";
	position: absolute;
	top: 53%;
	left: 0;
	transform: translateY(-50%);
	width: 6px;
	width: 0.375rem;
	height: 65%;
	background-color: #D8B151;
}

.confirm__inner {
	width: 100%;
	max-width: 1000px;
	margin-right: auto;
	margin-left: auto;
}

.confirm__itemsWrapper {
	margin-top: 47px;
}

.confirm__items {
	display: flex;
	flex-direction: column;
}

.confirm__item {
	display: flex;
}

.confirm__itemHead {
	box-sizing: border-box;
	width: 21.091%;
	padding-top: 30.5px;
	padding-bottom: 26.5px;
	padding-left: 30px;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	background-color: #000000;
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	letter-spacing: 0.12em;
}

.confirm__itemHead:not(:first-child) {
	border-top: none;
}

.confirm__itemHead:not(:last-child) {
	border-bottom: none;
}

.confirm__itemContent {
	box-sizing: border-box;
	box-sizing: border-box;
	width: 78.909%;
	padding-top: 28.5px;
	padding-bottom: 21.5px;
	padding-left: 30px;
	border-top: 1px solid #c6c6c6;
	border-bottom: 1px solid #c6c6c6;
	background-color: #f5f5f5;
	color: #222;
	font-size: 15px;
	line-height: 2;
	letter-spacing: 0.06em;
}

.confirm__itemContent:not(:first-child) {
	border-top: none;
}

.confirm__itemContent:not(:last-child) {
	border-bottom: none;
}

.confirm__item--content .confirm__itemHead {
	padding-bottom: 16.5px;
	padding-left: 30px;
}

.confirm__item--content .confirm__itemContent {
	padding-top: 26.5px;
	padding-top: 19px;
	padding-right: 30px;
	padding-left: 30px;
}

.confirm__buttons {
	display: flex;
	justify-content: center;
	margin-top: 10px;
	margin-bottom: 13px;
	gap: 20px;
}

.contact__backWrapper input {
	display: block !important;
}

.p-contact {
	padding-top: 31px;
	padding-bottom: 8.4rem;
	padding-bottom: 5.25rem;
}

.p-contact__inner {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	margin-inline: auto;
	padding-right: 20px;
	padding-left: 20px;
}

.p-contact__enTitle {
	font-weight: 700;
	font-size: 4rem;
	font-size: 2.5rem;
	font-family: "Outfit", sans-serif;
	letter-spacing: 0.01em;
	text-align: center;
	text-transform: uppercase;
}

.p-contact__title {
	margin-top: 0.2rem;
	margin-top: 0.125rem;
	font-weight: 700;
	font-size: 1.8rem;
	font-size: 1.125rem;
	letter-spacing: 0.07em;
	text-align: center;
}

.contact__message {
	margin-top: 0;
	font-size: 14px;
	line-height: 2.2857142857;
	letter-spacing: 0.06em;
	text-align: center;
}

.form__title {
	position: relative;
	margin-top: 50px;
	padding-bottom: 13px;
	padding-left: 12px;
	border-bottom: 1px solid #bcbcbc;
	color: #000;
	font-weight: bold;
	font-size: 20px;
	font-size: 13.3333333333px;
	font-family: "Noto Sans JP";
	letter-spacing: 0.08em;
}

.form__title::before {
	display: block;
	position: absolute;
	top: 38%;
	left: -1px;
	width: 3px;
	height: 58%;
	transform: translateY(-50%);
	background-color: #000000;
	content: "";
}

.contact__steps {
	display: flex;
	position: relative;
	justify-content: space-between;
	width: 597px;
	margin-top: 43px;
	margin-right: auto;
	margin-left: auto;
}

.contact__steps::before {
	display: block;
	position: absolute;
	top: 40%;
	left: 50%;
	width: 88.61%;
	height: 1px;
	transform: translateX(-50%);
	background-color: #d5d5d5;
	content: "";
}

.contact__step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

.contact__stepNum {
	color: #d5d5d5;
	font-weight: 500;
	font-size: 17px;
	line-height: 20px;
	font-family: Outfit;
	letter-spacing: 0.03em;
	text-align: left;
}

.contact__step--active .contact__stepNum {
	color: #24AFD0;
}

.contact__stepContent {
	position: relative;
	color: #d5d5d5;
	font-weight: bold;
	font-size: 16px;
	font-family: "Noto Sans JP";
	letter-spacing: 0.08em;
	text-align: center;
}

.contact__step--active .contact__stepContent {
	color: #222;
}

.contact__stepContent::before {
	display: block;
	position: absolute;
	top: -24px;
	left: 50%;
	width: 10px;
	height: 10px;
	transform: translateX(-50%);
	border-radius: 50%;
	background-color: #d5d5d5;
	content: "";
}

.contact__step--active .contact__stepContent::before {
	background-color: #24AFD0;
}

.contact__inner {
	max-width: 898.5px;
	margin-right: auto;
	margin-left: auto;
}

.contact__items {
	display: flex;
	flex-direction: column;
	margin-top: 39px;
	gap: 27px;
}

.contact__item {
	display: flex;
	align-items: center;
	padding-left: 2px;
}

.contact__item--content {
	display: flex;
	align-items: flex-start;
	margin-top: -9px;
	padding-top: 20px;
	border-top: 1px solid #bcbcbc;
}

.contact__item--content.contact__item--require .contact__itemName::after {
	top: 13px;
}

.contact__itemName {
	display: flex;
	position: relative;
	align-items: center;
	min-width: 218px;
	gap: 11px;
	transform: translateY(-15px);
	color: #222;
	font-weight: bold;
	font-size: 16px;
	font-family: "Noto Sans JP";
	letter-spacing: 0.08em;
	text-align: left;
}

.contact__itemName--radio {
	transform: translateY(0);
}

.contact__item--content .contact__itemName {
	transform: translateY(0);
}

.contact__item--require .contact__itemName::after {
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 24px;
	padding-top: 0px;
	padding-right: 6px;
	padding-bottom: 0px;
	padding-left: 6px;
	transform: translate(-50%, -50%);
	background-color: #24AFD0;
	content: "必須";
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	font-family: "Noto Sans JP";
	letter-spacing: 0.08em;
	text-align: left;
	text-align: center;
}

.contact__itemsButtons {
	display: flex;
	gap: 17px;
}

.contact__itemsButtons input[type=radio] {
	position: relative;
	width: 20px;
	height: 20px;
}

.contact__itemsButtons input[type=radio]::before {
	display: block;
	position: absolute;
	top: 14%;
	left: 1px;
	width: 20px;
	height: 20px;
	border: 1px solid #000;
	border-radius: 50%;
	content: "";
}

.your-about-checked input[type=radio]::after {
	display: block;
	position: absolute;
	top: 40%;
	left: 56%;
	width: 10px;
	height: 10px;
	transform: translateX(-50%);
	border-radius: 50%;
	background-color: #000;
	content: "";
}

.your-houhou-checked input[type=radio]::after {
	display: block;
	position: absolute;
	top: 40%;
	left: 56%;
	width: 10px;
	height: 10px;
	transform: translateX(-50%);
	border-radius: 50%;
	background-color: #000;
	content: "";
}

.your-kind-checked input[type=radio]::after {
	display: block;
	position: absolute;
	top: 40%;
	left: 56%;
	width: 10px;
	height: 10px;
	transform: translateX(-50%);
	border-radius: 50%;
	background-color: #000;
	content: "";
}

.contact__itemsButtons span {
	padding-left: 5px;
	color: #222;
	font-weight: bold;
	font-size: 16px;
	line-height: 26px;
	font-family: "Noto Sans JP";
	letter-spacing: 0.08em;
	text-align: left;
}

.contact__text {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.contact__textArea {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.contact__inner input[type=text],
.contact__inner input[type=tel],
.contact__inner input[type=number],
.contact__inner input[type=email] {
	width: 100%;
	padding-top: 18px;
	padding-right: 18px;
	padding-bottom: 18px;
	padding-left: 18px;
	background-color: #f5f5f5;
	font-size: 16px;
}

.contact__text p {
	margin-top: 9px;
	color: #909090;
	font-weight: normal;
	font-size: 10px;
	font-family: "Noto Sans JP";
	letter-spacing: 0.06em;
	text-align: left;
}

.contact__inner textarea {
	box-sizing: border-box;
	width: 100%;
	height: 178px;
	padding-top: 18px;
	padding-right: 18px;
	padding-bottom: 18px;
	padding-left: 18px;
	background-color: #f5f5f5;
	font-size: 16px;
}

.contact__submitCenter {
	text-align: center;
}

.contact__submitWrapper {
	box-sizing: border-box;
	display: inline-block;
	position: relative;
	width: 320px;
	margin-top: 34px;
	background: #24AFD0;
	color: #fff;
	text-align: center;
}

.contact__submitWrapper input[type=submit] {
	width: 100%;
	padding-top: 17px;
	padding-bottom: 15px;
}

.contact__submitWrapper::after {
	position: absolute;
	top: 50%;
	right: 21px;
	width: 4px;
	height: 6px;
	transform: translateY(-50%);
	background-image: url(../img/arrow-right.svg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	content: "";
}

.contact__submitWrapper input[type=button] {
	width: 100%;
	font-size: 18px;
	letter-spacing: 0.08em;
	cursor: pointer;
}

.contact__backWrapper {
	box-sizing: border-box;
	display: inline-block;
	position: relative;
	width: 320px;
	margin-top: 34px;
	background: #222222;
	color: #fff;
	text-align: center;
}

input[type=button] {
	width: 100%;
	padding-top: 17px;
	padding-bottom: 15px;
	cursor: pointer;
}

.contact__backWrapper::after {
	position: absolute;
	top: 50%;
	right: 21px;
	width: 4px;
	height: 6px;
	transform: translateY(-50%);
	background-image: url(../img/arrow-right.svg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	content: "";
}

.contact__backWrapper input[type=submit] {
	width: 100%;
	font-size: 18px;
	letter-spacing: 0.08em;
	cursor: pointer;
}

.contact__steps--confirm,
.contact__steps--thanks {
	margin-top: 20px;
}

.wpcf7-spinner {
	position: absolute;
	display: none;
	opacity: 0;
}

input,
textarea {
	border: none;
	background: transparent;
	color: inherit;
}

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

.contact__item input:focus,
.contact__item textarea:focus {
	outline: none;
}

.footer {
	padding-top: 3.125rem;
	padding-bottom: 3.75rem;
	color: #000;
	border-bottom: 0.9375rem solid #24AFD0;
}

.footer__logo {
	max-width: 15.3125rem;
}

.footer__logo img {
	aspect-ratio: 245/39;
	object-fit: contain;
	width: 100%;
	height: auto;
}

.footer__address {
	font-size: 0.875rem;
	margin-top: 3.3rem;
	margin-top: 2.0625rem;
	line-height: 1.8571428571;
}

.footer__bottom {
	margin-top: 2.5rem;
}

.footer__privacy {
	font-size: 0.875rem;
	letter-spacing: 0.2em;
	text-decoration: underline;
}

.footer__text {
	margin-top: 1.98rem;
	margin-top: 1.2375rem;
	font-size: 1rem;
	font-size: 0.625rem;
	line-height: 1.4166666667;
	letter-spacing: 0.1em;
}

.footer__center {
	display: flex;
	flex-wrap: wrap;
	margin-top: 0.9375rem;
	gap: 3rem;
}

.footer__right {
	margin-top: 0.9375rem;
}

.footer__items {
	display: grid;
	gap: 1.5rem;
	gap: 0.9375rem;
}

.footer__item {
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.fv {
	position: relative;
	z-index: 1;
	width: 100%;
	margin-top: 4.375rem;
	padding-bottom: 3.4375rem;
}

.fv::before {
	content: "";
	position: absolute;
	right: 5.0625rem;
	bottom: 3.5rem;
	width: 4.3125rem;
	aspect-ratio: 69/74;
	background: url(../images/house.png) no-repeat center center/contain;
	z-index: 2;
}

.fv::after {
	z-index: -1;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, transparent 0%, transparent 52%, #FFFBF0 52%, #FFFBF0 100%);
	content: "";
}

.fv__copy {
	position: absolute;
	top: 7.8991596639%;
	right: 6.4%;
	z-index: 10;
}

.safari .fv__copy {
	right: 39%;
}

.fv__copy-text {
	font-family: "Montserrat", sans-serif;
	font-size: 3.1875rem;
	font-weight: 700;
	line-height: 1.1960784314;
	letter-spacing: 0.08em;
	color: #000;
	writing-mode: vertical-rl;
	text-transform: uppercase;
}

.fv__copy-text span {
	color: #fff;
}

.fv__image {
	position: relative;
	width: 85.3333333333%;
}

.fv__image::before {
	content: "";
	position: absolute;
	top: -1.125rem;
	right: 11.4859437751%;
	width: 5.5625rem;
	aspect-ratio: 89/64;
	background: url(../images/crowd.png) no-repeat center center/contain;
	z-index: 2;
}

.fv__slider .swiper-wrapper {
	border-top-right-radius: 3.125rem;
}

.box .percent svg {
	transform: rotate(-90deg);
}

.mv__circles {
	position: absolute;
	top: -1.5625rem;
	right: 1.11111%;
	z-index: 4;
}

.mv__circle {
	position: relative;
}

.mv__circle::before {
	position: absolute;
	display: block;
	content: "";
	background-color: #000;
	width: 5px;
	height: 5px;
	transform: translate(50%, -80%);
	top: 50%;
	right: 50%;
	border-radius: 50%;
}

.mv__circle svg {
	background-color: transparent;
	stroke: transparent;
}

.mv__circle svg circle {
	background-color: transparent;
	stroke: transparent;
}

.mv__circle svg {
	position: relative;
	width: 60px;
	height: 60px;
}

.mv__circle svg circle {
	position: relative;
	fill: none;
	stroke-width: 1;
	stroke: transparent;
	stroke-dasharray: 440;
	stroke-dashoffset: 0;
	stroke-linecap: round;
}

.mv__circle--active .line {
	animation: circleAnim 21s forwards;
}

.mv__circle--1--active .line {
	animation: circleAnim 15s forwards !important;
}

.mv__circle--active svg {
	background-color: transparent;
	stroke: transparent;
}

.mv__circle--active svg circle {
	background-color: transparent;
	stroke: transparent #000;
}

.mv__circle--active svg circle.base {
	stroke-dashoffset: 0;
	stroke: #848484;
	opacity: 0.45;
}

.mv__circle--active svg circle.line {
	stroke-dashoffset: 0;
	stroke: #000;
	opacity: 1;
}

.mv__circle--1--active svg {
	background-color: transparent;
	stroke: transparent;
}

.mv__circle--1--active svg circle {
	background-color: transparent;
	stroke: transparent #000;
}

.mv__circle--1--active svg circle.base {
	stroke-dashoffset: 0;
	stroke: #848484;
	opacity: 0.45;
}

.mv__circle--1--active svg circle.line {
	stroke-dashoffset: 0;
	stroke: #000;
	opacity: 1;
}

.fv__content {
	z-index: 5;
	position: absolute;
	top: 4.6296296296%;
	top: 1.5625rem;
	left: 4.6875%;
	color: #fff;
}

.fv__title {
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 1.75;
	letter-spacing: 0.05em;
}

.fv__en {
	width: -moz-fit-content;
	width: fit-content;
	margin-top: 0.75rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 0.75rem;
	line-height: 1.8333333333;
	letter-spacing: 0.15em;
}

.fv__name {
	z-index: 2;
	position: absolute;
	bottom: -2rem;
	left: 1.5rem;
	width: 28.2rem;
	color: #fff;
	font-weight: 400;
	font-size: 5.1rem;
	line-height: 1;
	letter-spacing: 0.04em;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}

.fv__scroll {
	display: none;
}

.fv__news {
	position: absolute;
	left: 0;
	bottom: 0;
	padding-top: 1.5625rem;
	padding-left: 5.8125rem;
	padding-right: 2.125rem;
	padding-bottom: 3.375rem;
	display: flex;
	gap: 1.5rem;
	align-items: center;
	background-color: #FFFBF0;
	border-top-right-radius: 1.25rem;
	max-width: 43.9375rem;
	z-index: 10;
}

.fv__news-text,
.fv__news-date {
	font-family: "Montserrat", sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.1em;
	color: #D8B151;
	text-transform: uppercase;
	padding-top: 0.125rem;
}

.p-fv__news-title {
	position: relative;
	font-size: 0.875rem;
	font-weight: 700;
	color: #010101;
	line-height: 1.4285714286;
	letter-spacing: 0.08em;
	padding-right: 0.9375rem;
	margin-left: 0.3125rem;
	flex-grow: 1;
}

.p-fv__news-title::before {
	content: "";
	position: absolute;
	top: 55%;
	right: 0;
	transform: translateY(-50%);
	background: url(../images/arrow-black.png) no-repeat center center/contain;
	width: 0.375rem;
	aspect-ratio: 4/8;
}

.p-fv__news-title a {
	display: block;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	min-width: 23.875rem;
}

.scroll {
	padding-bottom: 5.9375rem;
	position: absolute;
	right: 1.75rem;
	bottom: 2rem;
	font-family: "Montserrat", sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	color: #010101;
	line-height: 1;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	writing-mode: vertical-rl;
}

.scroll:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #000;
	animation: move 2s cubic-bezier(0.33, 0, 0.2, 1) infinite, fade 2s cubic-bezier(0.33, 0, 0.2, 1) infinite;
}

.scroll:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 5.625rem;
	background-color: #000;
}

.fvBanner {
	padding: 1rem 1.25rem;
	background: #000;
}

.fvBanner__items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	-moz-column-gap: 0.75rem;
	column-gap: 0.75rem;
	row-gap: 0.625rem;
}

.fvSub {
	position: relative;
	margin-top: 3.125rem;
}

.fvSub__image {
	position: relative;
	height: 8.125rem;
}

.fvSub__image::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	content: "";
}

.fvSub__image img {
	height: 100%;
	object-fit: cover;
}

.fvSub__title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #FFF;
	text-align: center;
	width: 100%;
}

.fvSub__en {
	font-weight: 500;
	font-size: 0.9375rem;
	font-family: "Montserrat", sans-serif;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.fvSub__jp {
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 1.4705882353;
	letter-spacing: 0.11em;
}

.header {
	z-index: 1000;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 3.125rem;
	background: #fff;
	transition: 0.3s;
}

.header__inner {
	display: flex;
	position: relative;
	align-items: center;
	justify-content: space-between;
	height: inherit;
	padding-left: 0.5rem;
}

.header__heading {
	display: flex;
	align-items: center;
}

.header__logo {
	max-width: 8.3125rem;
}

.header__logo img {
	aspect-ratio: 226/36;
	object-fit: contain;
	width: 100%;
	height: auto;
}

.header__text {
	margin-left: 0.625rem;
	color: #898989;
	font-size: 0.4375rem;
	font-weight: 400;
	line-height: 1.625;
}

.header__nav {
	display: none;
}

.header__nav-items {
	display: flex;
	align-items: center;
	height: inherit;
	gap: 1.5625rem;
}

.header__nav-item {
	position: relative;
	height: inherit;
	font-weight: 500;
	font-size: 1.2rem;
	line-height: 0.7058823529;
	transition: 0.3s;
}

.header__nav-item a,
.header__nav-item p {
	display: grid;
	place-items: center;
	height: inherit;
	transition: 0.3s;
}

.header__nav-item a:hover,
.header__nav-item p:hover {
	opacity: 1;
	color: #24AFD0;
}

.header__nav-item p {
	cursor: pointer;
}

.header__tel {
	display: none;
	text-align: center;
}

.header__tel span {
	display: block;
	font-size: 1rem;
	letter-spacing: 0.08em;
}

.header__line {
	display: none;
}

.header__instagram {
	display: none;
	width: 3.478rem;
	margin-left: auto;
}

.header__contact {
	display: none;
}

.header__contact a {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
}

.header__contact span {
	position: relative;
	padding-left: 0.9375rem;
}

.header__contact span::before {
	position: absolute;
	top: 55%;
	left: 0;
	width: 0.75rem;
	aspect-ratio: 12/8;
	transform: translateY(-50%);
	background: url(../images/mail.png) no-repeat;
	background-size: contain;
	content: "";
}

.headerSp {
	visibility: hidden;
	z-index: 120;
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	height: 100%;
	margin-top: 3.125rem;
	padding-bottom: 10rem;
	overflow: scroll;
	border-bottom: 15px solid #222222;
	border-bottom: 15px solid #0497e7;
	background: #fff; /* これで右に隠す↓↓ */
	opacity: 0;
	transition: all 0.5s 0s ease;
}

.headerSp.is-openSP {
	visibility: visible;
	z-index: 999;
	opacity: 1;
}

.headerSp__inner {
	display: grid;
	padding-inline: 1.25rem;
}

.headerSp__content {
	display: grid;
}

.headerSp__group {
	order: 2;
	margin-top: 1.75rem;
	padding-inline: 0.4375rem;
}

.headerSp__nav:nth-child(2) {
	margin-top: 2rem;
}

.headerSp__items {
	display: grid;
	gap: 1.375rem;
}

.headerSp__item {
	width: 100%;
	height: 100%;
	padding-bottom: 1.3125rem;
	border-bottom: 0.75px solid #454545;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.4;
}

.headerSp__item a {
	transition: 0.3s;
}

.headerSp__item a:hover {
	opacity: 1;
	color: #24AFD0;
}

.headerSp__item span {
	display: none;
}

.headerSp__item a {
	display: inline-block;
	position: relative;
	width: 100%;
}

.headerSp__item a::after {
	position: absolute;
	top: 50%;
	right: 0.625rem;
	width: 10px;
	height: 10px;
	transform: translateY(-50%);
	background: url(../images/arrow_header_sp.png) no-repeat;
	background-size: contain;
	content: "";
}

.headerSp__links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	order: 1;
	margin-top: 0.9375rem;
	-moz-column-gap: 0.75rem;
	column-gap: 0.75rem;
	row-gap: 0.625rem;
}

.headerSp__link img {
	aspect-ratio: 162/78;
	object-fit: contain;
	width: 100%;
	height: auto;
}

.headerSp__contacts {
	display: grid;
	margin-top: 3.4rem;
	gap: 0.9rem;
	color: #fff;
}

.headerSp__contact a {
	display: flex;
	flex-direction: column;
	place-items: center;
	justify-content: center;
	min-height: 7.6rem;
	text-align: center;
}

.headerSp__contact-tel a {
	background: #f7771f;
	font-weight: 500;
	font-size: 2.9rem;
	font-family: "Oswald", sans-serif;
	letter-spacing: 0.03em;
}

.headerSp__contact-mail a {
	background: #0497e7;
	font-weight: 700;
	font-size: 2.5rem;
	letter-spacing: 0.01em;
}

.headerSp__time {
	font-weight: 500;
	font-size: 1.2rem;
	line-height: 1.4166666667;
	letter-spacing: 0.05em;
}

.headerSp__contact-tel .headerSp__main,
.headerSp__contact-mail .headerSp__main {
	position: relative;
	padding-left: 0.9em;
}

.headerSp__contact-tel .headerSp__main::before,
.headerSp__contact-mail .headerSp__main::before {
	position: absolute;
	top: 55%;
	left: 0;
	transform: translateY(-50%);
	content: "";
}

.headerSp__contact-tel .headerSp__main::before {
	width: 1.7rem;
	height: 2.2rem;
	background: url(../img/icon_tel_white.png) no-repeat center center/contain;
}

.headerSp__contact-mail .headerSp__main::before {
	width: 2.1rem;
	height: 1.5rem;
	background: url(../img/mail.png) no-repeat center center/contain;
}

.headerSp__banners {
	order: 4;
	margin-top: 1.25rem;
	max-width: 330px;
	margin-inline: auto;
}

.headerSp__banner + .headerSp__banner {
	margin-top: 0.9375rem;
}

/* ハンバーガーメニュー */

/*==================================================
　5-2-6 3本線が回転して×に
===================================*/

.hamburger {
	z-index: 10000;
	position: relative;
	width: 3.125rem;
	height: 100%;
	background: #24AFD0;
	cursor: pointer;
}

/*ボタン内側*/

.hamburger span {
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 1.25rem;
	height: 1px;
	background: #fff;
	transition: all 0.4s; /*アニメーションの設定*/
}

.hamburger span:nth-of-type(1) {
	top: 35%;
	top: 0;
	top: 37%;
	width: 1.875rem;
}

.hamburger span:nth-of-type(2) {
	top: 50%;
	width: 1.3125rem;
}

.hamburger span:nth-of-type(3) {
	top: 63%;
	width: 0.75rem;
}

/*activeクラスが付与されると線が回転して×になる*/

.hamburger.active span {
	top: 50%;
	left: 50%;
	width: 20px;
}

.hamburger.active span:nth-of-type(1) {
	transform: translate(-50%, -50%) rotate(-135deg);
}

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

.hamburger.active span:nth-of-type(3) {
	transform: translate(-50%, -50%) rotate(135deg);
}

.menu__btn.is-active p {
	position: relative;
	color: #24AFD0;
	transition: 1s;
}

.menu__btn.is-active p::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 1.3125rem;
	width: 100%;
	height: 1px;
	background: #24AFD0;
}

.p-instagram {
	position: relative;
	padding-top: 4.1875rem;
	padding-bottom: 4.5rem;
	z-index: 1;
	background-color: #fff;
}

.p-instagram::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background: url(../images/instagram_background.png) no-repeat center center/cover;
	width: 100%;
	aspect-ratio: 1440/390;
	z-index: -1;
}

.p-instagram__inner {
	position: relative;
}

.p-instagram__inner::before {
	content: "";
	position: absolute;
	top: 1.3125rem;
	right: -7rem;
	width: 7rem;
	aspect-ratio: 112/80;
	background: url(../images/instagram-ashirai01.png) no-repeat center center/contain;
}

.p-instagram__inner::after {
	content: "";
	position: absolute;
	top: 10.5rem;
	left: -9.6875rem;
	width: 7rem;
	aspect-ratio: 112/80;
	background: url(../images/instagram-ashirai02.png) no-repeat center center/contain;
}

.p-instagram__items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	-moz-column-gap: 2.125rem;
	column-gap: 2.125rem;
	row-gap: 1.4375rem;
	margin-top: 2.125rem;
}

.p-instagram__link img {
	aspect-ratio: 448/448;
	object-fit: contain;
	width: 100%;
	height: auto;
}

.p-instagram__button {
	text-align: center;
	margin-top: 2.5rem;
}

.megaMenu__btn {
	position: relative;
	font-weight: 500;
	font-size: 1.5rem;
	font-size: 0.9375rem;
}

.megaMenu__btn::before,
.megaMenu__btn::after {
	display: block;
	position: absolute;
	top: 50%;
	right: 2.1rem;
	right: 0.8125rem;
	width: 9px;
	height: 1px;
	transform: translateY(-50%);
	background: #222222;
	content: "";
}

.megaMenu__btn::after {
	transform: rotate(90deg);
	transition: 0.3s;
}

.megaMenu__btn.is-active::after {
	transform: rotate(0);
}

.meageMenu__items {
	display: none;
	margin-top: 0.5rem;
	margin-top: 1.375rem;
	font-weight: 500;
	font-size: 1.4rem;
	font-size: 0.875rem;
	letter-spacing: 0.1em;
}

.megaMenu__item a {
	padding-bottom: 0.8rem;
	padding-bottom: 1.3125rem;
}

.megaMenu__item a::after {
	content: none;
}

.megaMenu__item:last-child a {
	padding-bottom: 0.6875rem;
}

.p-modal__body {
	max-width: 62.5rem;
	margin-inline: auto;
	padding-top: 5.625rem;
	padding-inline: 4.375rem;
	padding-bottom: 8.125rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3.125rem;
	background-color: #f2f2f2;
}

.p-modal__img {
	width: 37.2093023256%;
}

.p-modal__img img {
	aspect-ratio: 320/237;
	object-fit: contain;
	width: 100%;
	height: auto;
}

.p-modal__en-title {
	font-family: "Montserrat", sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	color: #D8B151;
	line-height: 1.25;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.p-modal__title {
	position: relative;
	font-size: 1.5rem;
	font-weight: 500;
	color: #172e3a;
	line-height: 1.6666666667;
	letter-spacing: 0.04em;
	margin-top: 0.75rem;
	padding-bottom: 1.5625rem;
}

.p-modal__title::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #172e3a;
	width: 1.375rem;
	height: 1px;
}

.p-modal__text {
	font-size: 0.875rem;
	font-weight: 400;
	color: #172e3a;
	line-height: 2.1428571429;
	letter-spacing: 0.06em;
	margin-top: 1.375rem;
}

.p-modal__close {
	position: absolute;
	top: 1.875rem;
	right: 1.875rem;
	width: 2.625rem;
	aspect-ratio: 1;
	z-index: 1;
}

:where(dialog) {
	width: unset;
	max-width: unset;
	padding: unset;
	color: unset;
	background-color: unset;
	border: unset;
	overflow: unset;
}

body:has(dialog[open]) {
	overflow: hidden;
}

/* モーダルのスタイル ============ */

dialog::backdrop {
	opacity: 0;
	transition: background 0.3s ease-in-out;
}

dialog.js-show.p-modal__content {
	opacity: 1;
}

dialog.js-show::backdrop {
	opacity: 1; /* 背景画像 */
	background: rgba(0, 0, 0, 0.9);
}

.p-modal__box {
	width: 56.976744186%;
}

.p-modal__content {
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.3s ease-in-out; /* モーダル枠組みのスタイル */
	width: min(1000px, 95%);
	max-height: 80vh;
}

.p-modal__inner {
	overflow-y: scroll;
	height: inherit;
	max-height: inherit;
	position: relative;
}

.p-modal__body {
	height: -moz-fit-content;
	height: fit-content;
}

.p-not-found {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

.p-not-found__text {
	font-size: 0.875rem;
}

.p-not-font__btn {
	margin-top: 1.8125rem;
	text-align: center;
}

.p-not-font__btn a {
	display: inline-block;
	position: relative;
	width: 9.375rem;
	max-width: 100%;
	height: 4rem;
	height: 2.5rem;
	background: #222222;
	color: #fff;
	font-weight: 700;
	font-size: 0.75rem;
	line-height: 4rem;
	line-height: 2.5rem;
	letter-spacing: 0.12em;
	text-align: center;
}

.p-not-font__btn a::after {
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	width: 5px;
	height: 5px;
	transform: rotate(-45deg) translateY(-50%);
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	content: "";
}

.p-pager-list {
	display: flex;
	justify-content: space-between;
}

.p-pager-list__btn a {
	display: inline-block;
	padding: 10px 20px;
	color: #24AFD0;
	border: 1px solid #24AFD0;
}

.p-pagination {
	margin-top: 2.5rem;
	padding-bottom: 1.25rem;
}

.p-pagination ul {
	display: flex;
	justify-content: center;
	gap: 1.2rem;
	gap: 0.75rem;
	text-align: center;
}

.p-pagination li > .page-numbers {
	display: grid;
	place-items: center;
	width: 4rem;
	width: 2.5rem;
	height: 4rem;
	height: 2.5rem;
	border: 1px solid #cccccc;
	border-radius: 100%;
	background: #fff;
	color: #222222;
	font-weight: 700;
	font-size: 1.4rem;
	font-size: 0.875rem;
	transition: 0.3s;
}

.p-pagination li > .page-numbers.current {
	background: #24AFD0;
	color: #fff;
}

.prev span,
.next span {
	position: relative;
}

.prev span::after,
.next span::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1rem;
	height: 1rem;
	transform: translate(-50%, -50%);
	background: #cccccc;
	content: "";
	transition: 0.3s;
}

.prev span::after {
	clip-path: polygon(100% 0, 100% 100%, 0 50%);
}

.next span::after {
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.pankuz {
	margin-top: 0.625rem;
	text-align: left;
}

.pankuz__items {
	display: flex;
	align-items: center;
}

.pankuz .home {
	font-weight: 600;
	font-family: "Montserrat", sans-serif;
	letter-spacing: 0.06em;
}

.pankuz a {
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1;
}

.pankuz .current-item {
	color: #24AFD0;
	font-weight: 500;
	font-size: 0.75rem;
	line-height: 1;
}

.pankuz .pankuz__arrow {
	display: inline-block;
	width: 8px;
	margin-top: 3px;
}

.pankuz__border {
	width: 2.2rem;
	width: 1.375rem;
}

.pankuz__between {
	display: inline-block;
	width: 1.375rem;
	height: 1px;
	margin: 0 0.6875rem;
	background-color: #373737;
	margin-top: 0.1875rem;
}

.p-post-article__inner.l-inner {
	margin-top: 2rem;
}

.p-post-article__title {
	font-size: 3rem;
	color: #24AFD0;
}

.p-post-article__info {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.p-post-article__category {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.3125rem;
}

.p-post-article__category li {
	padding: 0.3125rem;
	color: #24AFD0;
	border: 1px solid #24AFD0;
}

.p-post-article__box {
	margin: 6.4rem auto 0;
}

.p-post-article__content {
	padding: 1.25rem 1.4375rem 0;
	background-color: #fff;
	width: 100%;
}

.p-post-article__content-wrap {
	padding-bottom: 1.875rem;
	width: 100%;
	margin: auto;
}

.p-post-article__contents {
	margin-top: 1.875rem;
}

.p-post-article__main-img {
	aspect-ratio: 7/4;
}

.p-post-article__main-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-post-article__category {
	letter-spacing: 0;
}

.p-post-article__data {
	margin-left: auto;
	font-size: 1.3125rem;
	text-align: right;
	letter-spacing: 0.05em;
}

.p-post-article__content h2 {
	margin: 1.875rem 0 0.9375rem;
	padding: 0.3125rem 1.25rem;
	color: #fff;
	background-color: #24AFD0;
	font-size: 1.75rem;
}

.p-post-article__contents h3 {
	margin: 1.875rem 0 0.9375rem;
	padding-left: 0.625rem;
	color: #24AFD0;
	font-size: 1.75rem;
	border-left: 0.5em solid #24AFD0;
}

.p-post-article__contents h4 {
	margin: 0.625rem 0;
	font-size: 1.5rem;
}

.p-post-article__contents h5 {
	margin: 0.625rem 0;
	padding: 0.125rem 0.78125rem;
	display: inline-block;
	color: #24AFD0;
	font-size: 1.25rem;
	border-top: 2px solid #24AFD0;
	border-bottom: 2px solid #24AFD0;
}

.p-post-article__contents p {
	font-size: 1.25rem;
}

.p-post-article__contents a {
	color: #24AFD0;
	text-decoration: underline;
}

.p-post-article__contents img {
	margin: 0.625rem 0;
}

.p-post-article__contents figure {
	margin: 0.625rem 0;
}

.p-post-article__contents figcaption {
	margin: 0.625rem 0;
	font-size: 0.75rem;
}

.p-post-card__img {
	width: 100%;
	aspect-ratio: 400/300;
}

.p-post-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-post-card__body {
	position: relative;
}

.p-post-card__info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.5rem 0;
}

.p-post-card__category li {
	padding: 0.3125rem;
	color: #24AFD0;
	border: 1px solid #24AFD0;
}

.p-post-card__new {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff;
	color: #24AFD0;
	padding: 0.3125rem 0.625rem;
	border: 1px solid #24AFD0;
}

.p-post-connect__title {
	font-size: 1.5rem;
	color: #24AFD0;
}

.p-post-connect__items {
	display: grid;
	gap: 3.125rem;
	margin-top: 1rem;
}

.p-post-list {
	position: relative;
}

.p-post-list__wrap {
	margin: 2rem 0;
}

.p-post-list__title {
	font-size: 3rem;
	color: theme;
}

.p-post-list__items {
	display: grid;
	gap: 3.125rem;
	margin-top: 1rem;
}

.p-post-list__cards {
	margin-top: 3rem;
}

.p-post-list__btn {
	margin-top: 1.25rem;
	text-align: center;
}

.p-privacy-policy {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

.p-privacy-policy__text {
	color: #000;
	font-size: 0.875rem;
	line-height: 1.5;
	letter-spacing: 0.06em;
}

.p-privacy__wrapper {
	margin-bottom: 3.125rem;
	color: #000;
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.7;
}

.p-privacy__wrapper p:not(:first-child) {
	margin-top: 1.875rem;
}

.privacy__wrapper ol {
	padding-left: 1.25rem;
	list-style: decimal;
}

.qa {
	background: #fff;
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

.qa__items {
	margin-top: 1.6875rem;
}

.qa__item:not(:first-child) {
	margin-top: 1.25rem;
}

.qa__question {
	position: relative;
	padding: 1rem 4rem;
	padding: 0.625rem 2.5rem;
	background: #000;
	color: #FFF;
	font-weight: 500;
	font-size: 1.4rem;
	font-size: 0.875rem;
	font-family: "Montserrat", sans-serif;
	letter-spacing: 0.07em;
	cursor: pointer;
	border-radius: 10px;
	transition: 0.5s;
}

.qa__question.is-active {
	border-radius: 10px 10px 0 0;
}

.qa__question::before {
	position: absolute;
	top: 50%;
	left: 1.2rem;
	left: 0.75rem;
	transform: translateY(-50%);
	content: "Q";
	color: #FFF;
	font-weight: 700;
	font-size: 2rem;
	font-size: 1.25rem;
	line-height: 1;
	font-family: "Montserrat", sans-serif;
	letter-spacing: 0.08em;
}

.qa__question span::after,
.qa__question span::before {
	display: block;
	position: absolute;
	top: 50%;
	width: 20px;
	height: 2px;
	background: #FFF;
	content: "";
	-webkit-transform: translateY(-50%);
	right: 10px;
	transform: translateY(-50%);
}

.qa__question span::after {
	transform: rotate(90deg);
	transition: 0.3s;
}

.qa__question.is-active span::after {
	transform: rotate(0);
}

.qa__answer {
	display: none;
	position: relative;
	padding: 1rem 3.8rem;
	padding: 0.625rem 2.375rem;
	border: 1px solid #0E1A40;
	color: #000000;
	font-size: 1.4rem;
	font-size: 0.875rem;
	line-height: 1.8;
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 0.04em;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.qa__answer.is-active {
	display: block;
}

.qa__answer span {
	position: relative;
}

.qa__answer span::before {
	position: absolute;
	top: 50%;
	top: 0;
	left: -2.7rem;
	left: -1.6875rem;
	content: "A";
	color: #D8B151;
	font-weight: 700;
	font-size: 2rem;
	font-size: 1.25rem;
	line-height: 1;
	font-family: "Montserrat", sans-serif;
	letter-spacing: 0.08em;
}

.p-reason {
	counter-reset: reason;
	position: relative;
	padding-top: 5.5rem;
	background: #fffbf0;
	overflow-x: clip;
	margin-bottom: 2.5rem;
}

.p-reason::before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	bottom: 48%;
	background: url(../images/reason_ashirai.png) no-repeat center center/cover;
	width: 100%;
	height: 4.6875rem;
}

.p-reason::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: #24AFD0;
	content: "";
}

.reason__inner {
	position: relative;
}

.p-reason__title {
	position: relative;
}

.p-reason__title::before {
	content: "";
	position: absolute;
	top: 0;
	left: calc(50% + 10rem);
	transform: translateX(-50%);
	background: url(../images/reason-ashirai.png) no-repeat center center/contain;
	width: 3.6875rem;
	aspect-ratio: 59/68;
}

.reason__head {
	display: grid;
	place-items: center;
	width: 90%;
	min-height: 6.1rem;
	margin-top: 2.4rem;
	margin-inline: auto;
	padding-top: 0.3em;
	padding-bottom: 0.3em;
	border: 3px solid #fff;
	border-radius: 10px;
	background: #f7771f;
	color: #fff;
	font-weight: 700;
	font-size: 1.8rem;
	letter-spacing: 0.06em;
	text-align: center;
	filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.16));
}

.reason__items {
	display: grid;
	z-index: 10;
	position: relative;
	margin-top: 3.7rem;
	gap: 2.1875rem;
}

.reason__item {
	display: grid;
	background: white;
	box-shadow: 7px 7px 12px rgba(2, 22, 46, 0.14);
	border-radius: 0.625rem;
}

.reason__content {
	position: relative;
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	padding: 0.9375rem;
	gap: 0.9375rem;
}

.reason__content::before {
	content: "0" counter(reason);
	position: absolute;
	top: 0;
	left: 0.5rem;
	font-family: "Montserrat", sans-serif;
	font-size: 4.25rem;
	font-weight: 700;
	color: rgba(34, 76, 106, 0.13);
	line-height: 1.2205882353;
	letter-spacing: 0.04em;
	counter-increment: reason;
}

.reason__title {
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
	letter-spacing: 0.04em;
	text-align: center;
}

.reason__text {
	font-size: 0.75rem;
	line-height: 1.8571428571;
	letter-spacing: 0.02em;
}

.reason__image {
	width: 100%;
}

.reason__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-about1__sideScroll {
	display: flex;
	-moz-column-gap: 2rem;
	column-gap: 2rem;
	overflow: hidden;
}

.p-about1__sideScrollImg {
	z-index: 9;
	position: relative;
	flex-shrink: 0;
	width: 75rem;
	animation: loopSlide 28s infinite linear;
}

.p-about1__sideScrollImg::before {
	padding-top: 5.2933392148%;
}

.p-related-post {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

.p-related-post__head {
	display: flex;
	align-items: center;
	font-size: 1.25rem;
	font-weight: 400;
}

.p-related-post__head span {
	margin-left: 1em;
	color: gray;
	font-size: 0.875rem;
}

.p-related-post__items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 1.25rem;
	gap: 0.625rem;
}

.p-related-post__item {
	background: #fff;
	box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
}

.p-related-post__content {
	position: relative;
	height: 6.25rem;
	padding: 0.625rem;
}

.p-related-post__title {
	font-weight: 700;
}

.p-related-post__label {
	display: flex;
	position: absolute;
	bottom: 0.625rem;
	left: 0.625rem;
	flex-wrap: wrap;
	gap: 0 1em;
}

.p-related-post__category {
	color: #0c7bcc;
}

.p-related-post__time {
	color: gray;
}

.p-reservation {
	margin-bottom: 2.5rem;
}

.review .p-reaservation__container {
	margin-top: 2.5rem;
}

.p-reaservation__container {
	display: flex;
	justify-content: space-between;
	padding-top: 3.1875rem;
	padding-bottom: 3.1875rem;
	padding-inline: 3.75rem;
	border-radius: 10px;
	background-color: #010101;
}

.p-reservation__box {
	width: 70.2857142857%;
}

.p-reservation__title-en {
	font-family: "Montserrat", sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	color: #f4efe7;
	line-height: 1.25;
	letter-spacing: 0.12em;
	text-transform: capitalize;
}

.p-reservation__title-jp {
	font-size: 1.375rem;
	font-weight: 700;
	color: #f4efe7;
	line-height: 1.8181818182;
	letter-spacing: 0.04em;
}

.p-reservation__text {
	font-size: 0.875rem;
	font-weight: 400;
	color: #f4efe7;
	line-height: 1.4285714286;
	letter-spacing: 0.04em;
	margin-top: 1.25rem;
}

.p-reservation__buttons {
	width: 25.1428571429%;
}

.p-reservation__button + .p-reservation__button {
	margin-top: 1rem;
}

.p-reservation__button a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 2.5625rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: #010101;
	line-height: 1.4285714286;
	letter-spacing: 0.04em;
	border-radius: calc(infinity * 1px);
	background-color: #fff;
}

.p-reservation__button a::before {
	content: "";
	position: absolute;
	top: 52%;
	right: 1.5rem;
	transform: translateY(-50%);
	background: url(../images/arrow_link.png) no-repeat center center/contain;
	width: 0.4375rem;
	aspect-ratio: 7/11;
}

.p-reservation__button.p-reservation__button--tel a {
	font-family: "Montserrat", sans-serif;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.2666666667;
	letter-spacing: 0.07em;
}

.review {
	padding-top: 2.8125rem;
	padding-bottom: 6.25rem;
	background: #f7f7f7;
}

.review__title {
	margin-inline: auto;
}

.review__inner {
	padding: 0 15px;
}

.review__google .ti-reviews-container-wrapper {
	justify-content: center;
}

.ti-widget.ti-goog .ti-review-item:nth-child(n+3) {
	display: none;
}

.ti-widget.ti-goog .ti-load-more-reviews-container .ti-load-more-reviews-button {
	display: none !important;
}

.review__headline {
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
	padding-inline: 1.25rem;
	border-top-left-radius: 0.625rem;
	border-top-right-radius: 0.625rem;
	background: #24AFD0;
	margin-top: 1.875rem;
}

.review__container {
	display: grid;
	grid-template-columns: 5.25rem 1fr;
	align-items: center;
	gap: 1.4375rem;
}

.review__img img {
	aspect-ratio: 84/40;
	object-fit: contain;
	width: 100%;
	height: auto;
}

.review__headline-title {
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.1875;
	letter-spacing: 0.02em;
}

.review__headline-box {
	display: flex;
	align-items: center;
	gap: 0.4375rem;
	margin-top: 0.1875rem;
}

.review__headline-text {
	font-size: 1.25rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.16em;
}

.review__stars {
	max-width: 6.9375rem;
	margin-left: 0.4375rem;
}

.review__stars img {
	aspect-ratio: 111/20;
	object-fit: contain;
	width: 100%;
	height: auto;
}

.ti-widget.ti-goog .ti-read-more {
	text-align: center !important;
}

.ti-read-more-active {
	color: #fff !important;
	padding: 0.3125rem 1.75rem !important;
	background-color: #000 !important;
	border-radius: 5px !important;
	opacity: 1 !important;
}

.p-service-case {
	background-color: #f8f8f8;
	padding-top: 3.4375rem;
	padding-bottom: 4.0625rem;
}

.p-service-case__inner.l-inner {
	max-width: 57.5rem;
}

.p-service-case__title-en {
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: #24AFD0;
	line-height: 1.1875;
	letter-spacing: 0.2em;
	text-align: center;
	text-transform: uppercase;
}

.p-service-case__title-jp {
	position: relative;
	font-size: 1.625rem;
	font-weight: 700;
	color: #222;
	line-height: 1.4230769231;
	letter-spacing: 0.08em;
	text-align: center;
	margin-top: 0.6875rem;
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
}

.p-service-case__title-jp::before,
.p-service-case__title-jp::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 3.75rem;
	height: 2px;
	background-color: #222;
}

.p-service-case__title-jp::before {
	left: -5.5rem;
}

.p-service-case__title-jp::after {
	right: -5.5rem;
}

.p-service-case__images {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 1.9375rem;
}

.p-service-case__image {
	position: relative;
	width: 44.8275862069%;
}

.p-service-case__image::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 6rem;
	aspect-ratio: 96/34;
}

.p-service-case__image.p-service-case__image--before::after {
	background: url(../images/label-before.png) no-repeat center center/contain;
}

.p-service-case__image.p-service-case__image--after::after {
	background: url(../images/label-after.png) no-repeat center center/contain;
}

.p-service-case__image img {
	aspect-ratio: 390/250;
	object-fit: cover;
	width: 100%;
	height: auto;
}

.p-service-case__image:last-child::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -3.75rem;
	transform: translateY(-50%);
	background: url(../images/case-arrow.png) no-repeat center center/contain;
	width: 1.875rem;
	aspect-ratio: 30/70;
}

.p-service-case__content {
	background-color: #fff;
	padding: 2.875rem 3.75rem;
	margin-top: 1.875rem;
}

.p-service-case__case-title {
	position: relative;
	font-size: 1.25rem;
	font-weight: 500;
	color: #2a2a2a;
	line-height: 1.6;
	letter-spacing: 0.08em;
	padding-left: 1.5625rem;
	padding-bottom: 0.625rem;
	border-bottom: 1px solid #f77720;
}

.p-service-case__case-title::before {
	content: "";
	position: absolute;
	top: 40%;
	left: 0;
	transform: translateY(-50%);
	background-color: #f77720;
	border-radius: 50%;
	width: 0.8125rem;
	height: 0.8125rem;
}

.p-service-case__text {
	font-size: 0.875rem;
	font-weight: 400;
	color: #222;
	line-height: 2.2857142857;
	letter-spacing: 0.06em;
	margin-top: 1.3125rem;
}

.p-service-reason {
	counter-reset: num2;
	padding-bottom: 1.25rem;
}

.p-service-reason__top-text {
	font-size: 1.25rem;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.06em;
	text-align: center;
	padding-block: 0.6875rem;
	background-color: #24AFD0;
}

.p-service-reason__inner {
	padding-inline: 0.9375rem;
}

.p-service-reason__container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 2.0625rem;
	gap: 1rem;
	gap: 0.625rem;
}

.p-service-reason__block {
	position: relative;
}

.p-service-reason__wrap::after {
	display: none;
}

.p-service-reason__block:nth-child(even) .p-service-reason__wrap::after {
	right: 0;
	right: initial;
	left: auto;
}

.p-service-reason__wrap {
	display: flex;
	z-index: 1;
	position: relative;
	flex-direction: column;
}

.p-service-reason__img::before {
	padding-top: 65.8536585366%;
}

.p-service-reason__box {
	position: relative;
}

.p-service-reason__num {
	font-family: "Montserrat", sans-serif;
	margin-top: 0.625rem;
	color: #D8B151;
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: 0.13em;
	text-transform: capitalize;
}

.p-service-reason__theme {
	margin-top: 0.5rem;
	padding-bottom: 0.375rem;
	border-bottom: 0.5px solid #000;
	font-weight: 500;
	font-size: 1.125rem;
	line-height: 1.6666666667;
	letter-spacing: 0.06em;
}

.p-service-reason__text {
	margin-top: 0.375rem;
	font-size: 0.875rem;
	line-height: 1.8;
	letter-spacing: 0.06em;
}

.p-service-reason__btn {
	margin-top: 0.9375rem;
}

.p-service-reason__btn a {
	min-height: 2.5rem;
	background: #f7771f;
	font-size: 0.625rem;
}

.p-service-reason__btn a::after {
	position: absolute;
	top: 50%;
	right: 1.3125rem;
	width: 0.25rem;
	height: 0.25rem;
	transform: translateY(-50%) rotate(-45deg);
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	background: initial;
	content: "";
}

.p-service {
	counter-reset: num;
}

.p-service__blocks {
	margin-top: 1.25rem;
}

.p-service2__block {
	position: relative;
}

.p-service2__wrap::after {
	display: none;
}

.p-service2__block:nth-child(even) .p-service2__wrap::after {
	right: 0;
	right: initial;
	left: auto;
}

.p-service2__wrap {
	display: flex;
	z-index: 1;
	position: relative;
	flex-direction: column;
}

.p-service2__img::before {
	padding-top: 65.8536585366%;
}

.p-service2__box {
	position: relative;
	padding-inline: 1.25rem;
	margin-top: 1.25rem;
	z-index: 1;
}

.p-service2__box::before {
	content: "";
	position: absolute;
	z-index: -1;
}

.p-service2__box--01::before {
	top: -1.875rem;
	right: 2.5rem;
	width: 20.25rem;
	aspect-ratio: 324/269;
	background: url(../images/service01-bg.png) no-repeat center center/contain;
}

.p-service2__box--02::before {
	top: -3.75rem;
	right: 1.375rem;
	width: 14.8125rem;
	aspect-ratio: 237/278;
	background: url(../images/service02-bg.png) no-repeat center center/contain;
}

.p-service2__box--03::before {
	top: -4rem;
	right: 2rem;
	width: 13.5625rem;
	aspect-ratio: 217/173;
	background: url(../images/service03-bg.png) no-repeat center center/contain;
}

.p-service2__logo {
	margin-inline: auto;
}

.p-service2__logo.p-service2__logo--01 {
	max-width: 6.25rem;
}

.p-service2__theme {
	margin-top: 0.8rem;
}

.p-service2__heading {
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	font-size: 1.625rem;
	color: #fff;
	background-color: #214C6A;
	padding-left: 0.625rem;
	padding-right: 0.625rem;
}

.p-service2__theme.p-service2__theme--02 .p-service2__heading {
	background-color: #D8B151;
}

.p-service2__theme.p-service2__theme--03 .p-service2__heading {
	background-color: #293b76;
}

.p-service2__theme.p-service2__theme--04 .p-service2__heading {
	background-color: #bd5f00;
}

.p-service2__heading + .p-service2__heading {
	margin-top: 0.625rem;
}

.p-service2__text {
	margin-top: 0.6rem;
	font-size: 0.875rem;
	line-height: 1.8;
	letter-spacing: 0.06em;
}

.p-service2__slider {
	padding-top: 2.5rem;
	padding-bottom: 0.3125rem;
}

.p-service02__button {
	text-align: center;
	margin-top: 3.125rem;
}

.p-service .p-service2__block {
	position: relative;
	padding-block: 4.375rem 3.75rem;
}

.p-service .p-service2__block::before {
	content: "";
	position: absolute;
	top: 0;
	width: 32.0833333333%;
	height: 91%;
	background-color: #FFFBF0;
}

.p-service .p-service2__block:nth-child(2n)::before {
	right: 0;
	border-top-left-radius: 1.25rem;
	border-bottom-left-radius: 1.25rem;
}

.p-service .p-service2__block:nth-child(2n+1)::before {
	left: 0;
	border-top-right-radius: 1.25rem;
	border-bottom-right-radius: 1.25rem;
}

.p-service .p-service2__block:last-child::before {
	height: 100%;
}

.p-service2__logo.p-service2__logo--02 {
	max-width: 15rem;
}

.p-service2__logo.p-service2__logo--03 {
	max-width: 15rem;
}

.p-single {
	padding-top: 1.25rem;
	color: #222222;
}

.p-single__title {
	margin-top: 0.625rem;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 125%;
	font-feature-settings: "palt" 1;
	letter-spacing: 0.04em;
}

.p-single__label {
	display: flex;
	align-items: center;
}

.p-single__category-link {
	display: inline-block;
	width: 4.6875rem;
	height: 1.5625rem;
	background: #24AFD0;
	color: #FFF;
	font-weight: 400;
	font-size: 0.625rem;
	line-height: 1.5625rem;
	letter-spacing: 0.13em;
	text-align: center;
}

.p-single__time span {
	position: relative;
	padding-left: 0.625rem;
	color: #8F8F8F;
	font-weight: 400;
	font-size: 0.625rem;
	letter-spacing: 0.08em;
}

.p-single__name span {
	position: relative;
	padding-left: 0.75rem;
	color: #8F8F8F;
	font-weight: 400;
	font-size: 0.625rem;
	letter-spacing: 0.04em;
}

.p-single__image {
	margin-top: 2.5rem;
}

.p-single__text {
	margin-top: 1.875rem;
	font-weight: 500;
	font-size: 0.8125rem;
	line-height: 2;
}

.p-single__content h2 {
	margin-top: 1em;
	padding: 0.5rem 0.9375rem;
	border-left: 4px solid #F7B80C;
	background: #F4F4F4;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 125%;
	font-feature-settings: "palt" 1;
	letter-spacing: 0.04em;
}

.p-single__content h3 {
	margin-top: 1em;
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 125%;
	letter-spacing: 0.08em;
}

.p-single__content p {
	margin-top: 1.2rem;
	color: #313131;
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.6428571429;
	line-height: 162.5%;
}

.p-single__content p strong {
	background: linear-gradient(transparent 60%, rgba(247, 184, 12, 0.6) 60%);
}

.p-single__content figure {
	width: 100%;
	margin-top: 1.875rem;
	margin-top: 1em;
}

.p-single__btn {
	margin-top: 1.8125rem;
	text-align: center;
}

.p-single__btn a {
	display: inline-block;
	position: relative;
	width: 9.375rem;
	max-width: 100%;
	height: 2.5rem;
	background: #24AFD0;
	color: #FFF;
	font-weight: 700;
	font-size: 0.75rem;
	line-height: 2.5rem;
	letter-spacing: 0.12em;
	text-align: center;
}

.p-single__btn a::after {
	display: block;
	position: absolute;
	top: 50%;
	right: 30px;
	width: 5px;
	height: 5px;
	transform: rotate(-45deg) translateY(-50%);
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	content: "";
}

.p-single .saboxplugin-wrap {
	margin-top: 1.25rem;
}

.p-single .saboxplugin-wrap .saboxplugin-authorname {
	margin: initial;
	color: #313131;
	font-weight: 700;
	font-size: 1rem;
}

.p-single .sab-profile-edit,
.p-single .sab-edit-settings,
.p-single .clearfix {
	display: none;
}

.p-single .saboxplugin-wrap .saboxplugin-gravatar {
	padding: 10px 20px 10px 20px;
}

.p-single .saboxplugin-wrap .saboxplugin-desc pre {
	margin: initial;
	color: #313131;
	font-weight: 400;
	font-size: 0.75rem;
	line-height: 150%;
}

.p-single .wp-block-quote {
	position: relative;
	margin: initial;
	margin-top: 1.25rem;
	padding: 0.4rem 1.2rem 1.2rem;
	border-radius: 5px;
	background: #F4F4F4;
}

.p-single .wp-block-quote p {
	font-size: 0.75rem;
}

.p-single cite {
	position: relative;
	margin-top: 0.5em;
	padding-left: 55px;
	font-size: 0.75rem;
}

.p-single cite::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "引用元：";
	color: #000;
	font-size: 0.75rem;
	pointer-events: none;
}

.p-single .annotation {
	padding: 0.75rem;
	border-radius: 5px;
	background: #F4F4F4;
	font-size: 0.75rem;
}

.p-staff-main {
  background-color: #fcfbf2;
}

.p-staff {
	counter-reset: staff;
	padding-top: 3.75rem;
	padding-bottom: 5.875rem;
	background-color: #fcfbf2;
}

.p-staff__list-item + .p-staff__list-item {
	margin-top: 4.25rem;
}

.p-staff__item-container {
	position: relative;
	display: flex;
	justify-content: center;
	gap: 3.75rem;
	padding-inline: 1.25rem;
}

.p-staff__img-wrapper {
	width: 46%;
}

.p-staff__img {
	position: relative;
	padding-left: 1.25rem;
}

.p-staff__img::before {
	content: "";
	position: absolute;
	right: 0.625rem;
	bottom: 0.625rem;
}

.p-staff__person {
	position: relative;
	margin-top: -2.5rem;
}

.p-staff__list-item:first-child .p-staff__img::before {
	background: url(../images/staff01-ashirai.png) no-repeat center center/contain;
	width: 5.625rem;
	aspect-ratio: 69/74;
}

.p-staff__list-item:nth-child(2) .p-staff__img::before {
	background: url(../images/staff02-ashirai.png) no-repeat center center/contain;
	width: 5rem;
	aspect-ratio: 59/68;
	bottom: 0;
}

.p-staff__list-item:nth-child(3) .p-staff__img::before {
	background: url(../images/staff03-ashirai.png) no-repeat center center/contain;
	width: 6.25rem;
	aspect-ratio: 89/64;
	right: 1.25rem;
}

.p-staff__list-item:nth-child(4) .p-staff__img::before {
	background: url(../images/staff04-ashirai.png) no-repeat center center/contain;
	width: 5rem;
	aspect-ratio: 59/68;
	bottom: 0;
}

.p-staff__list-item:nth-child(5) .p-staff__img::before {
	background: url(../images/staff01-ashirai.png) no-repeat center center/contain;
	width: 5.625rem;
	aspect-ratio: 69/74;
}

.p-staff__list-item:nth-child(6) .p-staff__img::before {
	background: url(../images/staff02-ashirai.png) no-repeat center center/contain;
	width: 5rem;
	aspect-ratio: 59/68;
	bottom: 0;
}

.p-staff__img img {
	aspect-ratio: 1;
	object-fit: contain;
	width: 100%;
	height: auto;
	border-radius: 3.75rem;
	border-bottom-right-radius: 12.5rem;
}

.p-staff__content {
	width: 53%;
	padding-top: 1.5625rem;
}

.p-staff__ranking-title {
	display: flex;
	align-items: center;
	gap: 0.3125rem;
	font-family: "Outfit", sans-serif;
	font-size: 1.625rem;
	font-weight: 700;
	color: #333;
	line-height: 1;
	letter-spacing: 0.1em;
	text-transform: capitalize;
}

.p-staff__ranking-title-small {
	font-size: 1rem;
}

.p-staff__ranking-title-number {
	font-size: 3.75rem;
	color: #24AFD0;
	transform: translateY(-0.3125rem);
}

.p-staff__ranking-list {
	margin-top: 0.625rem;
}

.p-staff__ranking-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding-bottom: 0.1875rem;
	border-bottom: 1px solid #333;
	max-width: 90%;
}

.p-staff__ranking-item + .p-staff__ranking-item {
	margin-top: 0.75rem;
}

.p-staff__ranking-item-number {
	display: block;
	min-width: 1rem;
	font-family: "Outfit", sans-serif;
	font-size: 1.875rem;
	font-weight: 700;
	color: #24AFD0;
	line-height: 1;
	text-align: center;
}

.p-staff__ranking-item:first-child .p-staff__ranking-item-number,
.p-staff__ranking-item:nth-child(2) .p-staff__ranking-item-number {
	color: #214C6A;
}

.p-staff__ranking-item-text {
	font-size: 0.875rem;
	font-weight: 700;
	color: #333;
	line-height: 1.25;
	letter-spacing: 0.1em;
}

.p-staff__challenge-title {
	font-size: 1rem;
	font-weight: 500;
	color: #fff;
	line-height: 1;
	background-color: #333;
	border-radius: calc(infinity * 1px);
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	padding-inline: 0.75rem;
	margin-top: 1.875rem;
	width: -moz-fit-content;
	width: fit-content;
}

.p-staff-challenge-list {
	margin-top: 0.625rem;
}

.p-staff-challenge-list__item {
	font-size: 0.9375rem;
	font-weight: 700;
	color: #333;
	line-height: 1.4285714286;
}

.p-staff-challenge-list__item + .p-staff-challenge-list__item {
	margin-top: 0.375rem;
}

.p-staff__qualification {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	row-gap: 0.4375rem;
	padding-inline: 1.875rem;
	margin-top: 1.25rem;
}

.p-staff__qualification.p-staff__qualification--2columns {
	grid-template-columns: 1fr 2fr;
}

.p-staff__qualification-item {
	font-size: 0.875rem;
	font-weight: 500;
	color: #333;
	letter-spacing: 0.05em;
}

.p-staff__position {
	display: inline-block;
	font-size: 0.8125rem;
	font-weight: 700;
	color: #333;
	letter-spacing: 0.1em;
	padding-block: 0.25rem;
	padding-inline: 0.9375rem;
	background-color: #fff;
}

.p-staff__name-container {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	background-color: #fff;
	margin-top: 1rem;
	width: -moz-fit-content;
	width: fit-content;
	padding-inline: 0.9375rem;
	padding-bottom: 0.3125rem;
}

.p-staff__name {
	font-size: 1.5rem;
	font-weight: 700;
	color: #000;
	line-height: 1.5;
	letter-spacing: 0.12em;
}

.p-staff__name-en {
	font-size: 0.875rem;
	font-weight: 500;
	color: #D8B151;
	line-height: 1.3571428571;
	letter-spacing: 0.1em;
}

.p-staff__text-body {
	position: relative;
	background-color: #fff;
	border-radius: 1.25rem;
	padding: 2.5rem 3.75rem;
	margin-top: 2.375rem;
	max-width: 56.25rem;
	margin-inline: auto;
}

.p-staff__text-body::before {
	content: "";
	position: absolute;
	top: -1.125rem;
	left: -1.25rem;
	background: url(../images/staff-text.png) no-repeat center center/contain;
	width: 4rem;
	aspect-ratio: 1;
}

.p-staff__text {
	font-size: 1rem;
	font-weight: 400;
	color: #000;
	line-height: 2.25;
	letter-spacing: 0.04em;
}

.subAbout {
	margin-top: 2.9375rem;
	padding-bottom: 3.75rem;
}

.subAbout__inner {
	display: grid;
}

.subAbout__title {
	position: relative;
	padding-bottom: 1.25rem;
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 1.5;
	letter-spacing: 0.08em;
	padding-left: 0.625rem;
}

.subAbout__title::before {
	content: "";
	position: absolute;
	top: 0.5rem;
	left: 0;
	width: 0.125rem;
	height: 1.4375rem;
	background-color: #24AFD0;
}

.subAbout__title::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 3.75rem;
	height: 1px;
	background: #000;
	content: "";
}

.subAbout__text {
	margin-top: 1.25rem;
	color: #3f3f3f;
	font-size: 0.875rem;
	line-height: 1.8;
	letter-spacing: 0.06em;
}

.subAbout__image {
	height: 15.625rem;
	margin-top: 1.25rem;
}

.subAbout__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.thanks__inner {
	width: 100%;
	max-width: 1000.5px;
	margin-right: auto;
	margin-left: auto;
}

.thanks__head {
	margin-top: 57px;
	margin-bottom: 13px;
	padding-bottom: 13px;
	border-bottom: 1px solid #bcbcbc;
	color: #000;
	font-weight: bold;
	font-size: 20px;
	font-family: "Noto Sans JP";
	letter-spacing: 0.08em;
}

.thanks__content {
	color: #000;
	font-weight: normal;
	font-size: 14px;
	line-height: 32px;
	font-family: "Noto Sans JP";
	letter-spacing: 0.06em;
	text-align: left;
}

.thanks__buttonWrapper {
	margin-top: 43px;
	text-align: center;
}

.thanks__button {
	box-sizing: border-box;
	display: inline-block;
	position: relative;
	width: 320px;
	padding-top: 17px;
	padding-bottom: 15px;
	background: #028BE0;
	color: #fff;
	font-size: 18px;
	letter-spacing: 0.08em;
	text-align: center;
}

.thanks__button::after {
	position: absolute;
	top: 50%;
	right: 21px;
	width: 4px;
	height: 6px;
	transform: translateY(-50%);
	background-image: url(../img/arrow-right.svg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	content: "";
}

input[type=button] {
	display: block !important;
}

.top-btn {
	z-index: 20;
	position: fixed;
	right: 0.625rem;
	bottom: 7.5rem;
	width: 1.375rem;
	opacity: 0;
	transition: 0.2s;
}

.topCase {
	position: relative;
	padding-top: 3.75rem;
	background: #F2FAFC;
}

.topCase::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3.75rem;
	background: #FFF;
	content: "";
	clip-path: polygon(50% 80%, 0 0, 100% 0);
}

.topCase__section {
	position: relative;
}

.topCase__section::before {
	left: -18.125rem;
	width: 15.75rem;
	height: 11.5625rem;
	background: url(../img/top_case01.png) no-repeat center center/contain;
}

.topCase__section::after {
	right: -18.125rem;
	width: 15.75rem;
	height: 11.5625rem;
	background: url(../img/top_case02.png) no-repeat center center/contain;
}

.topCase__attention {
	margin-top: 2rem;
	margin-top: 1.25rem;
	font-size: 0.6875rem;
	line-height: 1.8;
	letter-spacing: 0.02em;
	text-align: center;
}

.topCase__slider {
	margin-top: 2.375rem;
}

.topCase__item {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 4;
	padding-bottom: 0.875rem;
	gap: 0.125rem;
	border-radius: 24px;
	background: #FFF;
}

.topCase__image {
	position: relative;
	width: 100%;
	height: 12.5rem;
	border-radius: 24px 24px 0 0;
}

.topCase__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}

.topCase__before {
	position: absolute;
	top: 0.3125rem;
	left: 0.3125rem;
	width: 5.4375rem;
	height: 5.4375rem;
	border: 3px solid #FFF;
	border-radius: 50%;
}

.topCase__before img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.topCase__category {
	display: grid;
	position: absolute;
	bottom: -0.84375rem;
	left: 0.6875rem;
	place-items: center;
	min-width: 6.0625rem;
	min-height: 1.6875rem;
	border-radius: 50px;
	background: #D8B151;
	color: #FFF;
	font-weight: 500;
	font-size: 0.75rem;
	letter-spacing: 0.02em;
	text-align: center;
	padding-inline: 0.75rem;
}

.topCase__title {
	margin-top: 0.9375rem;
}

.topCase__btn {
	margin-top: 5rem;
}

.topCase__bottoms {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 2.5rem;
}

.topCase__pagination {
	bottom: -3.125rem;
}

.topCase__page {
	width: 12px;
	height: 12px;
	border: 1px solid #0C95E5;
	background: #FFF;
	opacity: 1;
}

.topCase__page.is-active {
	transform: initial;
	background: #0C95E5;
	opacity: 1;
}

.topNews {
	position: relative;
	padding-top: 2.875rem;
	padding-bottom: 4.1875rem;
}

.topNews::after {
	z-index: -1;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 65.1595744681%;
	background: #F2FAFC;
	content: "";
}

.topNews__items {
	display: grid;
	margin-top: 1.875rem;
	gap: 1.875rem;
}

.topNews__item {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 4;
	padding-bottom: 2.4rem;
	gap: 1rem;
	border-radius: 20px;
	border-radius: 20px;
	background: #fff;
	box-shadow: 7px 7px 12px rgba(211, 211, 211, 0.1);
}

.topNews__image {
	position: relative;
}

.topNews__category {
	position: absolute;
	bottom: 7.8px;
	left: 9px;
	width: -moz-fit-content;
	width: fit-content;
	min-height: 2.7rem;
	padding: 0.2em 0.5em;
	border-radius: 30px;
	background: #4DBCBC;
	color: #FFF;
	font-weight: 500;
	font-size: 1.4rem;
	letter-spacing: 0.02em;
}

.topNews__title,
.topNews__text,
.topNews__link {
	padding-right: 1.5625rem;
	padding-left: 1.5625rem;
}

.topNews__title {
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.625;
	letter-spacing: 0.04em;
}

.topNews__text {
	font-size: 0.875rem;
	line-height: 2;
	letter-spacing: 0.02em;
}

.topNews__link {
	color: #0497E7;
	font-weight: 700;
	font-size: 0.875rem;
	line-height: 1.7142857143;
	letter-spacing: 0.14em;
}

.topNews__link img {
	width: 0.5rem;
	height: 0.75rem;
}

.topNews__link span {
	display: flex;
	position: relative;
	align-items: center;
	justify-content: flex-end;
	width: -moz-fit-content;
	width: fit-content;
	margin-left: auto;
	gap: 0.5625rem;
}

.topNews__link span::after {
	position: absolute;
	top: 105%;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000;
	content: "";
}

.topNews__btn {
	margin-top: 1.875rem;
	text-align: center;
}

.voice {
	padding-top: 3.125rem;
	padding-bottom: 3.75rem;
	background: #FFFBF0;
}

.voice__slider {
	margin-top: 2.5rem;
}

.voice__slide {
	padding: 2rem;
	padding: 1.25rem;
	background: #FFF;
}

.voice__human {
	position: relative;
	width: 11.25rem;
	height: 11.25rem;
	margin-inline: auto;
	border: 1px solid #224C6A;
	border-radius: 50%;
	background: #FAFAFA;
}

.voice__image {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 5.8125rem !important;
	transform: translate(-50%, -50%);
}

.voice__items {
	display: grid;
	margin-top: 1.84375rem;
	gap: 1.5rem;
	gap: 0.9375rem;
}

.voice__item {
	position: relative;
	gap: 0.625rem;
	font-size: 0.875rem;
	letter-spacing: 0.04em;
	text-align: center;
	display: flex;
	width: 60%;
	margin-inline: auto;
}

.voice__menu {
	width: 35%;
	min-width: 3rem;
}

.voice__item-content {
	width: 65%;
}

.voice__item::after {
	content: "";
	position: absolute;
	top: 105%;
	left: 0;
	width: 24%;
	height: 2px;
	background: #D8B151;
}

.voice__item::before {
	position: absolute;
	top: 105%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #F5F5F7;
	content: "";
}

.voice__label {
	position: relative;
}

.voice__label::after {
	z-index: 2;
	position: absolute;
	top: 105%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #F7771F;
	content: "";
}

.voice__head {
	margin-top: 1.25rem;
	padding-left: 1em;
	border-left: 3px solid #D8B151;
}

.voice__category {
	width: -moz-fit-content;
	width: fit-content;
	padding: 1px 9px;
	border: 1px solid #214C6A;
	color: #214C6A;
	font-weight: 500;
	font-size: 0.625rem;
	letter-spacing: 0.14em;
	text-align: center;
}

.voice__title {
	font-weight: 700;
	font-size: 1rem;
	color: #214C6A;
	margin-top: 0.375rem;
}

.voice__text {
	margin-top: 2rem;
	margin-top: 1.25rem;
	font-size: 1.4rem;
	font-size: 0.875rem;
	line-height: 1.7;
	letter-spacing: 0.06em;
}

.splide__slide img {
	width: 100%;
	height: auto;
}

.splide__arrows {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	margin-inline: auto;
	transform: translate(-50%, -50%);
}

.splide__arrow {
	background: transparent;
	opacity: 1;
}

.splide__arrow--prev,
.splide__arrow--next {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: #0497E7;
}

.splide__arrow--prev {
	left: 3%;
}

.splide__arrow--next {
	right: 3%;
}

.splide__arrow--prev::before,
.splide__arrow--next::after {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #FFF;
	content: "";
}

.splide__arrow--prev::before {
	background: url(../images/arrow_prev.png) no-repeat center center/cover;
}

.splide__arrow--next::after {
	background: url(../images/arrow_next.png) no-repeat center center/cover;
}

.u-flex {
	display: flex;
	gap: 2px;
}

.u-font14 {
	font-size: 0.875rem;
}

.u-font16 {
	font-size: 1rem;
}

.u-font18 {
	font-size: 1.125rem;
}

.u-font20 {
	font-size: 1.25rem;
}

.u-font22 {
	font-size: 1.375rem;
}

.u-font24 {
	font-size: 1.5rem;
}

.u-font28 {
	font-size: 1.75rem;
}

.u-font32 {
	font-size: 2rem;
}

.u-font40 {
	font-size: 2.5rem;
}

.u-hover {
	transition: opacity 0.5s;
}

.u-hover:hover {
	opacity: 0.6;
	transition: opacity 0.5s;
}

.u-lh10 {
	line-height: 1;
}

.u-lh13 {
	line-height: 1.3;
}

.u-lh15 {
	line-height: 1.5;
}

.u-lh16 {
	line-height: 1.6;
}

.u-lh20 {
	line-height: 2;
}

.u-ls05 {
	letter-spacing: 0.05em;
}

.u-ls10 {
	letter-spacing: 0.1em;
}

.u-ls15 {
	letter-spacing: 0.15em;
}

.u-ls20 {
	letter-spacing: 0.2em;
}

.u-mt10 {
	margin-top: 10px !important;
	margin-top: 0.625rem !important;
}

.u-mt20 {
	margin-top: 20px !important;
	margin-top: 1.25rem !important;
}

.u-mt30 {
	margin-top: 30px !important;
	margin-top: 1.875rem !important;
}

.u-mt40 {
	margin-top: 40px !important;
	margin-top: 2.5rem !important;
}

.u-mt50 {
	margin-top: 50px !important;
	margin-top: 3.125rem !important;
}

.u-mt60 {
	margin-top: 60px !important;
	margin-top: 3.75rem !important;
}

.u-mt70 {
	margin-top: 70px !important;
	margin-top: 4.375rem !important;
}

.u-mt80 {
	margin-top: 80px !important;
	margin-top: 5rem !important;
}

.u-mt90 {
	margin-top: 90px !important;
	margin-top: 5.625rem !important;
}

.u-mt100 {
	margin-top: 100px !important;
	margin-top: 6.25rem !important;
}

.u-mt110 {
	margin-top: 110px !important;
	margin-top: 6.875rem !important;
}

.u-mt120 {
	margin-top: 120px !important;
	margin-top: 7.5rem !important;
}

.u-mt130 {
	margin-top: 130px !important;
	margin-top: 8.125rem !important;
}

.u-mt140 {
	margin-top: 140px !important;
	margin-top: 8.75rem !important;
}

.u-mt150 {
	margin-top: 150px !important;
	margin-top: 9.375rem !important;
}

.u-mt160 {
	margin-top: 160px !important;
	margin-top: 10rem !important;
}

.u-mt170 {
	margin-top: 170px !important;
	margin-top: 10.625rem !important;
}

.u-mt180 {
	margin-top: 180px !important;
	margin-top: 11.25rem !important;
}

.u-mt190 {
	margin-top: 190px !important;
	margin-top: 11.875rem !important;
}

.u-mt200 {
	margin-top: 200px !important;
	margin-top: 12.5rem !important;
}

.u-shadow {
	box-shadow: 0 0 13px rgba(255, 0, 0, 0.5);
}

.u-sp {
	display: none;
}

.u-textLeft {
	text-align: Left !important;
}

.u-textCenter {
	text-align: Center !important;
}

.u-textRight {
	text-align: Right !important;
}

.u-textJustify {
	text-align: Justify !important;
}

.u-w300 {
	font-weight: 300;
}

.u-w400 {
	font-weight: 400;
}

.u-w500 {
	font-weight: 500;
}

.u-w600 {
	font-weight: 600;
}

.u-w700 {
	font-weight: 700;
}

.u-w900 {
	font-weight: 900;
}

@media (prefers-reduced-motion: reduce) {

html:focus-within {
	scroll-behavior: auto;
}

*,
*::before,
*::after {
	animation-duration: 0.01ms !important;
	animation-iteration-count: 1 !important;
	transition-duration: 0.01ms !important;
	scroll-behavior: auto !important;
}

}

@media (any-hover: hover) {

.p-about__message-button:hover {
	opacity: 0.7;
}

.p-pagination li > .page-numbers:hover {
	background: #24AFD0;
	color: #fff;
	opacity: 1;
}

.prev:hover span::after,
.next:hover span::after {
	background: #fff;
}

}

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

.safari .fv__copy {
	right: 30%;
}

}

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

.c-fvSub__single {
	margin-top: 7.125rem;
}

.c-pagination01 .nav-previous a:hover img:nth-of-type(1) {
	opacity: 0;
	transition: 0.5s opacity;
}

.c-pagination01 .nav-previous a:hover img:nth-of-type(2) {
	opacity: 1;
	transition: 0.5s opacity;
}

.c-pagination01 .nav-next a:hover img:nth-of-type(1) {
	opacity: 0;
	transition: 0.5s opacity;
}

.c-pagination01 .nav-next a:hover img:nth-of-type(2) {
	opacity: 1;
	transition: 0.5s opacity;
}

.archive {
	padding-top: 5rem;
	padding-bottom: 6.25rem;
}

.archive__items {
	position: relative;
	grid-template-columns: 1fr 1fr 1fr;
}

.archive__image {
	height: 12.875rem;
}

.archive__content {
	padding: 1.125rem;
}

.archive__title {
	font-size: 1.25rem;
	line-height: 1.4;
}

.archive__text {
	margin-top: 0.625rem;
	font-size: 0.875rem;
}

.banner__head {
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	padding-block: 0.125rem 0.1875rem;
}

.banner__container {
	aspect-ratio: initial;
	max-width: 1040px;
	height: 4.5rem;
	margin-top: 0.25rem;
	margin-bottom: 0.3125rem;
	padding-right: 3.875rem;
	padding-left: 3.875rem;
	background: #fff;
}

.banner__items {
	gap: 0;
}

.banner__item:nth-child(3) {
	margin-top: -0.4875rem;
}

.p-blog2__inner {
	padding: 8.125rem 0;
}

.p-blog2__inner:before {
	max-width: 78.8194444444vw;
}

.p-blog2__inner::after {
	bottom: -1rem;
	left: 2.1875rem;
	width: -moz-fit-content;
	width: fit-content;
	transform: none;
	font-size: 7.8125rem;
	text-align: left;
}

.p-blog2__container {
	position: relative;
	background: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%);
}

.p-blog2__content {
	display: flex;
	position: relative;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	max-width: 75rem;
	margin-inline: auto;
	padding: 0 2.5rem;
}

.p-blog2__block {
	flex-shrink: 0;
	width: 17.625rem;
	margin-inline-start: 0;
	margin-inline-end: 0;
}

.p-blog2__text {
	margin-top: 1.6875rem;
}

.p-blog2__button.u-desktop {
	display: flex;
}

.p-blog2__button {
	margin-top: 4.25rem;
	margin-inline-start: 0;
	margin-inline-end: 0;
}

.p-blog2__body {
	max-width: 76.8rem;
	max-width: 48rem;
	margin: 0 0 0 auto;
	padding: 6.5rem 0 7.7rem min(4.8611111111vw, 7rem);
	padding: 4.0625rem 0 4.8125rem min(4.8611111111vw, 4.375rem);
}

.p-blog2__items {
	max-width: 43.625rem;
	margin-left: auto;
	margin-inline-start: 0;
	margin-inline-end: 0;
	padding: 0;
}

.p-blog2__item {
	-moz-column-gap: min(3.4722222222vw, 3.125rem);
	column-gap: min(3.4722222222vw, 3.125rem);
	max-width: 43.4375rem;
	padding: 2rem 0;
}

.p-blog2__item:last-of-type {
	border-bottom: 1px solid #EAECEC;
}

.p-blog2__thumbnail {
	max-width: 12.4375rem;
}

.p-blog2__wrap {
	margin-top: -0.4375rem;
}

.p-blog2__wrap::after {
	top: auto;
	right: -0.3rem;
	bottom: 0.2rem;
	transform: none;
}

.p-blog2__info {
	-moz-column-gap: 0.875rem;
	column-gap: 0.875rem;
}

.p-blog2__category {
	font-size: 0.75rem;
}

.p-blog2__time {
	font-size: 0.8125rem;
}

.p-blog2__title {
	margin-top: 0.4375rem;
	font-size: 0.875rem;
}

.p-bottom-contact5__inner {
	max-width: 104.6rem;
	max-width: 65.375rem;
	padding: 9.5rem 2.5rem 9.9rem;
	padding: 3rem 1.5625rem 3rem;
}

.p-bottom-contact5__title {
	font-size: 2.8rem;
	font-size: 1.75rem;
}

.p-bottom-contact5__enTitle {
	font-size: 2.2rem;
	font-size: 1.375rem;
}

.p-bottom-contact5__description {
	margin-top: 3rem;
	margin-top: 1.875rem;
	margin-inline: auto;
}

.p-bottom-contact5__wrap {
	display: flex;
	position: relative;
	justify-content: center;
}

.p-bottom-contact5__wrap:after {
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	transform: translateX(-50%);
	background-color: #fff;
	content: "";
}

.p-bottom-contact5__block {
	position: relative;
	width: 50%;
}

.p-bottom-contact5__block:nth-of-type(2) {
	margin-top: 0;
}

.p-bottom-contact5__contactWrap {
	max-width: 32.8rem;
	max-width: 20.5rem;
	margin: 0.4rem 8rem 0 auto;
	margin: 0.25rem 5rem 0 auto;
	margin-right: 8rem;
	margin-right: 5rem;
	padding: 2.2rem 0;
	padding: 1.375rem 0;
}

.p-bottom-contact5__callWrap {
	max-width: 27.8rem;
	max-width: 18.375rem;
	margin: 0.3rem 0 0 8rem;
	margin: 0.1875rem 0 0 2.625rem;
	padding: 2.8rem 0;
	padding: 1.75rem 0;
}

.p-bottom-contact5__airplane {
	width: 4.9rem;
	width: 3.0625rem;
	height: 4rem;
	height: 2.5rem;
}

.p-bottom-contact5__text {
	margin-top: 3rem;
	margin-top: 1.875rem;
	font-size: 1.8rem;
	font-size: 1.125rem;
}

.p-bottom-contact5__callWrap .p-bottom-contact5__text {
	margin-top: 2.7rem;
	margin-top: 1.6875rem;
}

.p-bottom-contact5__button {
	margin-top: 2.7rem;
	margin-top: 2.1875rem;
	padding: 2.4rem 0;
	padding: 1.5rem 0;
}

.p-bottom-contact5__call {
	width: 3.5rem;
	width: 2.1875rem;
	height: 4.5rem;
	height: 2.8125rem;
}

.p-bottom-contact5__callButton {
	font-size: 3.4rem;
	font-size: 2.125rem;
}

.company {
	padding-top: 6.8rem;
	padding-top: 4.25rem;
}

.p-company1__container {
	flex-direction: row;
	align-items: flex-start;
	margin-top: 3.8rem;
	margin-top: 2.375rem;
	gap: 0 6.25rem;
}

.p-company1__body {
	max-width: 50.3rem;
	max-width: 31.4375rem;
}

.p-company1__images {
	flex-direction: row;
}

.p-company1__img {
	width: 50%;
}

.p-company1__term {
	width: 5.25rem;
}

.p-company1__description {
	margin-left: 1.25rem;
}

.company .p-about1__sideScroll {
	margin-top: 5.5rem;
	margin-top: 3.4375rem;
}

.p-company1__list {
	padding-left: 0;
	padding-right: 0;
}

.p-company1__list::after {
	width: 18.6666666667%;
}

.p-company1__maps {
	flex-direction: row;
	gap: 40px;
	gap: 2.5rem;
	margin-top: 60px;
	margin-top: 3.75rem;
}

.p-company1__map-item {
	width: 50%;
}

.p-company1__maps-title {
	font-size: 20px;
	font-size: 1.25rem;
}

.p-company1__map iframe {
	aspect-ratio: 720/400;
}

.p-contact {
	padding-top: 30px;
	padding-bottom: 84px;
}

.p-contact__enTitle {
	font-size: 5rem;
	font-size: 3.125rem;
}

.p-contact__title {
	font-size: 2rem;
	font-size: 1.25rem;
}

.footer {
	padding-top: 4.6875rem;
	padding-bottom: 6.25rem;
	font-size: 0.875rem;
}

.footer__inner {
	max-width: 1240px;
}

.footer__container {
	display: flex;
}

.footer__logo {
	font-size: 2rem;
}

.footer__text {
	font-size: 0.75rem;
}

.footer__bottom {
	margin-top: 6.875rem;
}

.footer__center {
	margin-top: initial;
	margin-left: auto;
	padding-top: 1.125rem;
	gap: 2.5rem;
	border-top: 1px solid #000;
}

.footer__nav {
	margin-top: initial;
}

.footer__items {
	gap: 1.375rem;
}

.footer__right {
	margin-top: initial;
	margin-left: 3.1875rem;
	padding-top: 1.25rem;
	border-top: 1px solid #000;
}

.fv {
	margin-top: 6.75rem;
	padding-bottom: 2rem;
}

.fv::after {
	height: 50.7rem;
}

.fv__copy {
	top: 3.1339031339%;
	right: 8.1944444444%;
}

.safari .fv__copy {
	right: 19%;
}

.fv__copy-text {
	font-size: clamp(4.375rem, -0.673rem + 7.69vw, 6.25rem);
	line-height: 1.2;
	letter-spacing: 0.08em;
}

.fv__image {
	width: 86.4583333333%;
}

.fv__content {
	top: 6.8376068376%;
	left: 2.9861111111%;
}

.fv__title {
	font-size: 1.625rem;
	line-height: 1.8461538462;
	letter-spacing: 0.2em;
}

.fv__en {
	margin-top: 1.6875rem;
	font-size: 0.8125rem;
	line-height: 1.6923076923;
	letter-spacing: 0.15em;
}

.fv__name {
	bottom: 1rem;
	left: 5.5rem;
	width: 63rem;
	font-size: 11.4rem;
	line-height: 1;
}

.fvBanner {
	padding: 1.6875rem 0;
}

.fvBanner__wrapper {
	max-width: 1050px;
	margin-inline: auto;
}

.fvBanner__items {
	grid-template-columns: repeat(4, 1fr);
	gap: 1.125rem;
}

.fvSub {
	margin-top: 4.375rem;
}

.fvSub__image {
	height: 100%;
	margin-left: auto;
}

.fvSub__jp {
	font-size: 3.4rem;
	font-size: 2.125rem;
}

.header {
	height: 4.375rem;
}

.header__inner {
	padding-left: 1.25rem;
}

.header__logo {
	max-width: 14.25rem;
}

.header__text {
	font-size: 0.625rem;
	line-height: 1.4;
	letter-spacing: 0.02em;
	margin-left: 0.9375rem;
}

.header__nav {
	position: relative;
	display: block;
	height: inherit;
	margin-left: auto;
}

.header__nav-item {
	font-size: 0.75rem;
}

.menu {
	visibility: hidden;
	position: absolute;
	top: 80%;
	left: 56%;
	transform: translateX(-50%);
	opacity: 0;
	transition: 0.3s;
	width: 14.25rem;
}

.menu__items {
	display: grid;
	grid-template-columns: 1fr;
}

.menu__item {
	min-height: 2.5rem;
	background: #24AFD0;
	color: #fff;
	font-weight: 500;
	font-size: 0.625rem;
	letter-spacing: 0.02em;
}

.menu__item:first-child {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.menu__item:last-child {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.menu__item + .menu__item {
	border-top: 0.03125rem solid #fff;
}

.menu__item a {
	display: flex;
	align-items: center;
	gap: 0.4375rem;
	width: 100%;
	height: 100%;
	padding-inline: 0.6875rem;
}

.menu__item span {
	font-family: "Montserrat", sans-serif;
	letter-spacing: 0.1em;
	padding-top: 0.125rem;
}

.menu.is-active {
	visibility: visible;
	opacity: 1;
}

.header__line {
	display: block;
	width: 1.125rem;
	margin-left: 1.5625rem;
}

.header__instagram {
	display: block;
	width: 1.1875rem;
	margin-left: 0.75rem;
}

.header__line img,
.header__instagram img {
	object-fit: contain;
}

.header__tel {
	display: block;
	margin-left: 1rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	color: #f7771f;
	font-size: 1rem;
	line-height: 1.1875;
	letter-spacing: 0.04em;
}

.header__contact {
	display: block;
	width: 7.5rem;
	height: 100%;
	margin-left: 0.9375rem;
	background: #010101;
	color: #fff;
	font-weight: 500;
	font-size: 0.75rem;
	line-height: 1.25;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: 0.3s;
}

.headerSp {
	margin-top: 4.375rem;
}

.headerSp__inner {
	grid-template-columns: 1fr 21.6875rem;
	max-width: 890px;
	margin-top: 5.8125rem;
	margin-inline: auto;
}

.headerSp__nav-wrapper {
	display: flex;
	gap: 3.75rem;
}

.headerSp__group {
	margin-top: initial;
	padding-inline: 0;
}

.headerSp__nav:nth-child(2) {
	margin-top: initial;
}

.headerSp__items {
	gap: 1.25rem;
}

.headerSp__item {
	border-bottom: initial;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.02em;
	color: #000;
	padding-bottom: 0;
}

.headerSp__item span {
	display: inline-block;
}

.headerSp__item a::after {
	display: none;
}

.headerSp__links {
	display: none;
}

.headerSp__bottom {
	margin-top: 3.125rem;
}

.headerSp__sns {
	display: flex;
	gap: 1.125rem;
}

.headerSp__sns-item {
	max-width: 1.75rem;
}

.headerSp__sns-item img {
	object-fit: contain;
}

.headerSp__tel {
	font-family: "Montserrat", sans-serif;
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.2272727273;
	letter-spacing: 0.04em;
	margin-top: 1.25rem;
}

.headerSp__privacy {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.02em;
	color: #000;
	margin-top: 0.8125rem;
}

.headerSp__privacy a {
	position: relative;
	display: inline-block;
}

.headerSp__privacy a::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: #000;
	transition: 0.3s;
}

.hamburger {
	width: 4.375rem;
}

.p-not-found {
	padding-top: 8rem;
	padding-top: 5rem;
	padding-bottom: 10rem;
	padding-bottom: 6.25rem;
}

.p-not-found__text {
	font-size: 1.5rem;
}

.p-not-font__btn {
	margin-top: 4.9rem;
	margin-top: 3.0625rem;
}

.p-not-font__btn a {
	width: 13.4375rem;
	height: 2.75rem;
	line-height: 2.75rem;
}

.p-not-font__btn a::after {
	right: 35px;
}

.p-pagination {
	margin-top: 7.2rem;
	margin-top: 4.5rem;
}

.p-pagination ul {
	gap: 1.9rem;
	gap: 1.1875rem;
}

.p-pagination li > .page-numbers {
	width: 5rem;
	width: 3.125rem;
	height: 5rem;
	height: 3.125rem;
	font-size: 2rem;
	font-size: 1.25rem;
}

.pankuz {
	margin-top: 1.75rem;
}

.pankuz a {
	margin-right: 0;
	font-size: 0.9375rem;
}

.pankuz .current-item {
	margin-left: 0.9375rem;
	margin-left: 0;
}

.p-privacy-policy {
	padding-top: 5rem;
	padding-bottom: 5.625rem;
}

.p-privacy-policy__text {
	font-size: 1rem;
	line-height: 1.75;
}

.p-privacy__wrapper {
	font-size: 1rem;
	line-height: 2;
}

.p-privacy__wrapper p:not(:first-child) {
	margin-top: 2.5rem;
}

.qa {
	padding-top: 4.5625rem;
	padding-bottom: 5.1875rem;
}

.qa__inner {
	position: relative;
	z-index: 1;
}

.qa__inner::after {
	content: "";
	position: absolute;
	top: -2.6875rem;
	right: -15.625rem;
	width: 32.0625rem;
	aspect-ratio: 513/466;
	background: url(../images/faq.jpg) no-repeat center center/contain;
	z-index: -1;
}

.qa__question {
	padding: 1.75rem 4.375rem;
	font-size: 1rem;
}

.qa__question::before {
	left: 1.875rem;
	font-size: 1.625rem;
	line-height: 2;
}

.qa__question span::after,
.qa__question span::before {
	right: 3.125rem;
}

.qa__answer {
	padding: 1.75rem 4.375rem;
	font-size: 1rem;
	line-height: 2;
	letter-spacing: 0.02em;
}

.qa__answer span::before {
	left: -2.5rem;
	font-size: 2.6rem;
	font-size: 1.625rem;
}

.p-reason {
	padding-top: 4.375rem;
}

.p-reason::before {
	bottom: 55%;
}

.p-reason::after {
	height: 57%;
}

.reason__inner::before,
.reason__inner::after {
	position: absolute;
	top: -1.625rem;
	width: 16.875rem;
	height: 14.625rem;
	content: "";
}

.reason__inner::before {
	left: -11.25rem;
	background: url(../images/reason_ashirai01.png) no-repeat center center/contain;
}

.reason__inner::after {
	right: -11.25rem;
	background: url(../images/reason_ashirai02.png) no-repeat center center/contain;
}

.reason__head {
	width: 75.5%;
	font-size: 2.6rem;
}

.reason__items {
	grid-template-columns: repeat(3, 1fr);
	gap: 1.3125rem;
	margin-top: 2.375rem;
}

.reason__content {
	padding: 1.875rem;
}

.reason__icon {
	width: 5.1rem;
}

.reason__item:last-child .reason__icon {
	width: 4rem;
}

.reason__title {
	font-size: 2rem;
	font-size: 1.25rem;
}

.reason__text {
	font-size: 1.4rem;
	font-size: 0.875rem;
}

.p-about1__sideScroll {
	-moz-column-gap: min(2.36vw, 3.4rem);
	column-gap: min(2.36vw, 3.4rem);
	margin-top: -5rem;
}

.p-about1__sideScrollImg {
	width: 117.375rem;
	animation: loopSlide 40s infinite linear;
}

.p-related-post {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.p-related-post__head {
	font-size: 1.875rem;
}

.p-related-post__head span {
	font-size: 1.125rem;
}

.p-related-post__items {
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

.review {
	padding-bottom: 9.6875rem;
}

.review__title {
	width: 65rem;
	width: 40.625rem;
}

.review__inner {
	padding: initial;
}

.p-service-reason {
	padding-bottom: 2.125rem;
}

.p-service-reason__top-text {
	font-size: 1.75rem;
}

.p-service-reason__inner {
	padding-inline: 0;
	padding-top: 1.5rem;
}

.p-service-reason__container {
	display: initial;
	gap: initial;
}

.p-service-reason__block {
	padding: 1.25rem 0;
}

.p-service-reason__block:nth-of-type(n + 2) {
	margin-top: 0;
}

.p-service-reason__wrap::after {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	height: 100%;
	transform: translateY(-50%);
	content: "service 0" counter(num2);
	color: #f7f7f7;
	font-weight: 600;
	font-size: min(4.5vw, 3.75rem);
	font-family: "Montserrat", sans-serif;
	letter-spacing: 0.04em;
	text-align: right;
	text-align: center;
	text-transform: capitalize;
	counter-increment: num2;
	writing-mode: vertical-rl;
}

.p-service-reason__block:nth-child(even) .p-service-reason__wrap::after {
	left: 0;
}

.p-service-reason__wrap {
	flex-direction: row;
	align-items: center;
	gap: 0 4.375rem;
}

.p-service-reason__block:nth-child(even) .p-service-reason__wrap {
	flex-direction: row-reverse;
}

.p-service-reason__img {
	flex-shrink: 0;
	width: 43.75%;
}

.p-service-reason__box {
	width: 38.8194444444%;
	margin-top: 0.3125rem;
}

.p-service-reason__num {
	margin-top: initial;
	font-size: 1rem;
}

.p-service-reason__theme {
	padding-bottom: 0.5rem;
	font-size: 1.5rem;
}

.p-service-reason__text {
	max-width: 34.9375rem;
	margin-top: 0.625rem;
	line-height: 2.5714285714;
}

.p-service-reason__btn {
	margin-top: 3rem;
	margin-top: 1.875rem;
}

.p-service-reason__btn a {
	width: 11.125rem;
	min-height: 2.5625rem;
	margin-inline: initial;
	font-size: 0.625rem;
}

.p-service-reason__btn a::after {
	right: 2.375rem;
	width: 0.25rem;
	height: 0.25rem;
}

.p-service__blocks {
	margin-top: -1.875rem;
}

.p-service2__block:nth-of-type(n + 2) {
	margin-top: 0;
}

.p-service2__wrap::after {
	display: block;
	position: absolute;
	top: 50%;
	right: 0.625rem;
	height: 100%;
	transform: translateY(-50%);
	content: "service 0" counter(num);
	color: #f2f2f2;
	font-weight: 700;
	font-size: 4.5833333333vw;
	font-family: "Montserrat", sans-serif;
	letter-spacing: 0.04em;
	text-align: right;
	text-align: center;
	text-transform: uppercase;
	counter-increment: num;
	writing-mode: vertical-rl;
}

.p-service2__block:nth-child(even) .p-service2__wrap::after {
	left: 0.625rem;
	color: #FCF7F1;
}

.p-service2__wrap {
	flex-direction: row;
	align-items: center;
	gap: 4.375rem;
}

.p-service2__block:nth-child(even) .p-service2__wrap {
	flex-direction: row-reverse;
}

.p-service2__img {
	flex-shrink: 0;
	width: 44.7916666667%;
}

.p-service2__box {
	width: 39.1666666667%;
	padding-inline: 0;
	margin-top: 0;
}

.p-service2__logo {
	margin-inline: initial;
}

.p-service2__logo.p-service2__logo--01 {
	max-width: 6rem;
}

.p-service2__logo.p-service2__logo--02 {
	max-width: 16.25rem;
}

.p-service2__logo.p-service2__logo--03 {
	max-width: 15rem;
}

.p-service2__num {
	margin-top: initial;
	font-size: 1.6rem;
}

.p-service2__theme {
	font-size: 2.4rem;
	margin-top: 2.0833333333vw;
}

.p-service2__heading {
	font-size: 1.75rem;
	font-size: clamp(1.063rem, 0.205rem + 1.79vw, 1.813rem);
	letter-spacing: 0.06em;
	padding-top: 0.1875rem;
	padding-bottom: 0.3125rem;
}

.p-service2__text {
	max-width: 55.9rem;
	margin-top: 2.0833333333vw;
	line-height: 2.5714285714;
}

.p-service2__slider .topCase__category {
	left: 1.25rem;
}

.p-service2__slider .topNews__title {
	margin-top: 1.8125rem;
}

.p-service2__slider .topNews__text {
	line-height: 1.7142857143;
	padding-inline: 1.375rem;
	margin-top: 0.5rem;
}

.p-service2__slider .topNews__link {
	margin-top: 2.125rem;
}

.p-service2__slider .archive__item-case {
	padding-bottom: 1.875rem;
	border: none;
	border-radius: 15px;
}

.p-service2__slider .archive__item {
	box-shadow: 5px 5px 12px 0px rgba(0, 0, 0, 0.03);
}

.p-single__title {
	font-size: 1.875rem;
}

.p-single__category-link {
	width: 6.5rem;
	height: 1.8125rem;
	font-size: 0.75rem;
	line-height: 1.8125rem;
}

.p-single__time span {
	font-size: 0.9375rem;
}

.p-single__name span {
	padding-left: 1.25rem;
	font-size: 0.875rem;
}

.p-single__image {
	margin-top: 5.4375rem;
}

.p-single__text {
	margin-top: 3.125rem;
	font-size: 0.9375rem;
}

.p-single__content h2 {
	padding: 0.625rem 1.5rem;
	font-size: 1.5rem;
}

.p-single__content h3 {
	font-size: 1.25rem;
}

.p-single__btn {
	margin-top: 3.0625rem;
}

.p-single__btn a {
	width: 13.4375rem;
	height: 2.75rem;
	line-height: 2.75rem;
}

.p-single__btn a::after {
	right: 35px;
}

.p-single .saboxplugin-wrap .saboxplugin-authorname {
	margin: 10px 0 0 20px;
}

.p-single .saboxplugin-wrap .saboxplugin-gravatar {
	padding: 0 12px 12px 12px;
}

.p-single .wp-block-quote {
	padding: 0.25rem 1.5rem 1.25rem;
}

.p-single cite {
	padding-left: 63px;
}

.p-single .annotation {
	padding: 1.5rem;
}

.subAbout {
	padding-bottom: 4.4375rem;
}

.subAbout__inner {
	grid-template-columns: 1fr 35.18%;
	max-width: 896px;
	margin-inline: auto;
	gap: 3.125rem;
}

.subAbout__content {
	padding-top: 1.6875rem;
}

.subAbout__title {
	padding-bottom: 1.6875rem;
	font-size: 1.5rem;
}

.subAbout__text {
	margin-top: 1.875rem;
	line-height: 2.1428571429;
}

.subAbout__image {
	height: initial;
	margin-top: initial;
}

.top-btn {
	right: 1.6875rem;
	width: 1.8375rem;
}

.topCase::before {
	height: 6.25rem;
}

.topCase__section::before,
.topCase__section::after {
	position: absolute;
	top: 2.5rem;
	content: "";
}

.topCase__attention {
	font-size: 0.875rem;
	line-height: 2.1428571429;
}

.topCase__item {
	padding-bottom: 1.8125rem;
	gap: 0.875rem;
	border-radius: initial;
}

.topCase__image {
	border-radius: initial;
}

.topCase__before {
	width: 6.0625rem;
	height: 6.0625rem;
}

.topCase__category {
	font-size: 0.875rem;
}

.topCase__bottoms {
	display: flex;
	margin-top: 4.25rem;
}

.topNews__items {
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.topNews__item {
	gap: 0.9375rem;
}

.voice {
	padding-top: 4.375rem;
	padding-bottom: 5.3125rem;
}

.voice__slide {
	display: grid;
	grid-template-columns: clamp(11rem, -3.171rem + 18.452vi, 23.4rem) 1fr;
	padding: 3.3125rem 7rem 2.6875rem 6.0625rem;
	gap: 3.5rem;
}

.voice__item {
	width: 100%;
	gap: 0.875rem;
}

.voice__menu {
	width: 21.4592274678%;
}

.voice__item-content {
	width: 74.2489270386%;
	text-align: left;
}

.voice__human {
	width: 23.4rem;
	width: clamp(11rem, -3.171rem + 18.452vi, 23.4rem);
	height: 23.4rem;
	height: clamp(11rem, -3.171rem + 18.452vi, 23.4rem);
}

.voice__head {
	margin-top: initial;
}

.voice__title {
	font-size: 1.25rem;
}

.voice__text {
	margin-top: 1.5625rem;
	line-height: 2;
}

.splide__arrow--prev,
.splide__arrow--next {
	width: 4.375rem;
	height: 4.375rem;
}

.splide__arrow--prev {
	left: 11%;
}

.splide__arrow--next {
	right: 11%;
}

}

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

.p-contact__inner {
	box-sizing: border-box;
	width: 100%;
	padding-right: 20px;
	padding-left: 20px;
}

}

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

.headerSp__privacy a:hover::before {
	background: transparent;
	transition: 0.3s;
}

}

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

.p-contact__inner {
	max-width: 1000px;
	padding-right: 0;
	padding-left: 0;
}

}

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

.p-reason::before {
	height: 13%;
}

}

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

.safari .fv__copy {
	right: 18%;
}

}

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

.header__nav {
	display: none;
}

.header__line {
	margin-left: auto;
}

}

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

.voice__item::after {
	width: 27%;
}

}

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

.p-about::after {
	content: none;
}

}

@media (max-width: 1000px) {

html {
	font-size: 1.6vw;
}

}

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

.mv__circles {
	top: -2.1875rem;
	right: 0.5%;
}

}

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

html {
	font-size: 16px;
}

a:hover {
	opacity: 1;
}

.l-inner {
	max-width: 600px;
	margin-inline: auto;
	padding-inline: 15px;
}

.l-reason {
	margin-top: 2.5rem;
}

.l-service {
	margin-top: 2.5rem;
}

.c-column2 {
	grid-template-columns: repeat(1, 1fr);
	gap: 0.625rem;
}

.c-column2--gap60 {
	gap: 0.625rem;
}

.c-column2--gapSp20 {
	gap: 0.625rem;
}

.c-column3 {
	grid-template-columns: repeat(1, 1fr);
}

.c-column4 {
	grid-template-columns: repeat(1, 1fr);
}

.c-column4--sp2 {
	grid-template-columns: repeat(2, 1fr);
}

.c-section-title.c-section-title--left {
	text-align: center;
}

.p-about::before {
	width: 200%;
	left: 50%;
	transform: translateX(-50%);
	right: initial;
}

.p-about__title {
	padding-left: 0;
}

.p-about__title-jp {
	padding-left: 0;
}

.p-about__title-en {
	font-size: 2.625rem;
}

.p-about__content::before {
	content: none;
}

.p-about__img {
	width: 100%;
}

.p-about__texts {
	top: initial;
	right: initial;
	left: -0.625rem;
	bottom: -3.3125rem;
}

.p-about__large-text span {
	font-size: 1.375rem;
}

.p-about__large-text span + span {
	margin-top: 0.3125rem;
}

.p-about__en-text {
	font-size: 0.75rem;
	margin-top: 0.3125rem;
}

.p-about__text {
	margin-top: 3.125rem;
}

.p-about__container {
	flex-direction: column;
}

.p-about__history {
	width: 100%;
	padding: 1.25rem 0.9375rem;
}

.p-about__history-items::before {
	height: 98%;
}

.p-about__message {
	width: 100%;
}

.confirm__itemHead {
	display: flex;
	align-items: center;
	width: 41.795%;
	padding-top: 32.5px;
	padding-top: 0;
	padding-bottom: 0;
	padding-bottom: 0;
	padding-left: 20px;
	font-size: 14px;
	letter-spacing: 0.04em;
}

.confirm__itemContent {
	box-sizing: border-box;
	width: 58.21%;
	padding-top: 21.5px;
	padding-right: 14px;
	padding-bottom: 13.5px;
	padding-left: 14px;
	border-top: 1px solid #c6c6c6;
	border-bottom: 1px solid #c6c6c6;
	background-color: #f5f5f5;
	color: #222;
	font-size: 14px;
	line-height: 1.714;
	letter-spacing: 0.04em;
}

.confirm__item--content .confirm__itemHead {
	padding-top: 13.5px;
	padding-left: 20px;
}

.confirm__item--content .confirm__itemContent {
	margin-top: 0px;
	padding-top: 29px;
	padding-right: 18px;
	padding-bottom: 22px;
	padding-left: 16px;
}

.confirm__buttons {
	flex-direction: column;
	align-items: center;
	margin-top: 0;
	gap: 0;
}

input[type=button] {
	padding-top: 11px !important;
	padding-bottom: 11px !important;
	font-size: 12px !important;
}

.contact__message {
	margin-top: 30px;
	font-size: 12px;
	line-height: 2.3333333333;
	letter-spacing: 0.02em;
	text-align: left;
}

.form__title {
	display: none;
}

.contact__steps {
	width: 328px;
	margin-top: 20px;
}

.contact__steps::before {
	top: 45%;
	width: 84.61%;
}

.contact__step {
	gap: 20px;
}

.contact__stepNum {
	font-size: 13px;
}

.contact__stepContent {
	font-size: 12px;
}

.contact__stepContent::before {
	top: -17px;
	width: 7.72px;
	height: 7.72px;
}

.contact__items {
	gap: 18px;
}

.contact__item {
	flex-direction: column;
	align-items: flex-start;
	padding-bottom: 18px;
	padding-left: 4px;
	border-bottom: 1px solid #adadad;
}

.contact__item--content {
	margin-top: 1px;
	padding-top: 0px;
	border-top: none;
}

.contact__itemName {
	min-width: auto;
	transform: translateY(0);
	font-size: 14px;
	letter-spacing: 0.04em;
}

.contact__item--require .contact__itemName::after {
	position: absolute;
	top: 50%;
	right: -53px;
	padding-right: 10px;
	padding-left: 7px;
	transform: translate(0%, -50%);
	font-size: 12px;
	white-space: nowrap;
}

.contact__itemsButtons {
	flex-direction: column;
	margin-top: 14px;
	margin-left: -2px;
}

.contact__itemsButtons input[type=radio]::before {
	top: 30%;
	left: -2px;
}

.contact__itemsButtons span {
	font-size: 14px;
}

.contact__inner input[type=text],
.contact__inner input[type=tel],
.contact__inner input[type=number],
.contact__inner input[type=email] {
	margin-top: 7px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	transform: translateX(-4px);
	font-size: 14px;
}

.contact__text p {
	margin-top: 5px;
	letter-spacing: normal;
}

.contact__inner textarea {
	height: 119px;
	margin-top: 8px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	transform: translateX(-4px);
	font-size: 14px;
	font-size: 14px;
}

.contact__submitWrapper {
	box-sizing: border-box;
	display: inline-block;
	width: 100%;
	max-width: 335px;
	margin-top: 35px;
}

.contact__submitWrapper input[type=submit] {
	width: 100%;
	padding-top: 11px;
	padding-bottom: 11px;
	font-size: 12px;
}

.contact__backWrapper {
	width: 100%;
	max-width: 335px;
	margin-bottom: -23px;
}

.contact__inner input[type=text],
.contact__inner input[type=tel],
.contact__inner input[type=number],
.contact__inner input[type=email] {
	margin-top: 7px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	transform: translateX(-4px);
	font-size: 14px;
}

.fv::before {
	right: 2rem;
	bottom: 2.5rem;
	width: 3.625rem;
}

.fv__image::before {
	top: 0.9375rem;
	right: 19.6875%;
	width: 2.875rem;
}

.mv__circle svg {
	position: relative;
	width: 60px;
	height: 60px;
}

.fv__news {
	flex-wrap: wrap;
	gap: 0.625rem;
	padding-top: 1.125rem;
	padding-left: 1.25rem;
	padding-right: 3.375rem;
	padding-bottom: 1.625rem;
	max-width: 62.1333333333%;
}

.fv__news-text,
.fv__news-date {
	font-size: 0.75rem;
	line-height: 1.25;
}

.p-fv__news-title {
	font-size: 0.75rem;
	line-height: 1.4166666667;
	padding-right: 0;
	margin-left: 0;
}

.p-fv__news-title::before {
	content: none;
}

.p-fv__news-title a {
	-webkit-line-clamp: 2;
	min-width: initial;
}

.scroll {
	padding-bottom: 4.875rem;
	right: 1.125rem;
	bottom: 3.375rem;
}

.scroll:after {
	height: 4.5625rem;
}

.hamburger span {
	right: 0.8125rem;
}

.hamburger span:nth-of-type(1) {
	width: 1.4375rem;
}

.hamburger span:nth-of-type(2) {
	width: 0.9375rem;
}

.hamburger span:nth-of-type(3) {
	width: 0.4375rem;
}

.hamburger.active span:nth-of-type(1) {
	width: 1.25rem;
}

.hamburger.active span:nth-of-type(3) {
	width: 1.25rem;
}

.hamburger {
	margin-left: auto;
}

.p-instagram::before {
	width: 250%;
	left: 50%;
	transform: translateX(-50%);
}

.p-instagram__inner::before {
	content: none;
}

.p-instagram__inner::after {
	content: none;
}

.p-instagram__items {
	gap: 0.625rem;
}

.p-modal__body {
	padding-top: 3.75rem;
	padding-inline: 1.25rem;
	padding-bottom: 1.875rem;
	gap: 1.25rem;
	flex-direction: column;
}

.p-modal__img {
	width: 100%;
}

.p-modal__title {
	font-size: 1.25rem;
	padding-bottom: 0.9375rem;
}

.p-modal__text {
	margin-top: 0.75rem;
}

.p-modal__close {
	top: 0.9375rem;
	right: 0.9375rem;
	width: 2.25rem;
}

.p-modal__box {
	width: 100%;
}

.p-modal__content {
	max-width: 31.25rem;
}

.pankuz__between {
	margin-inline: 0.5rem;
}

.p-post-connect__items {
	row-gap: 2.5rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	grid-template-columns: repeat(4, 1fr);
}

.p-post-list__items {
	row-gap: 2.5rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	grid-template-columns: repeat(4, 1fr);
}

.p-post-list__cards {
	margin-top: 6.25rem;
}

.p-post-list__btn {
	margin: 1.75rem auto 0;
	width: 100%;
	max-width: calc(61.25rem + 40px);
	padding: 0 0.625rem;
}

.p-reason__title::before {
	left: calc(50% + 8.75rem);
	width: 3.125rem;
}

.p-reaservation__container {
	flex-direction: column;
	gap: 2.5rem;
	padding-inline: 1.25rem;
	max-width: 23.4375rem;
	margin-inline: auto;
}

.p-reservation__box {
	width: 100%;
}

.p-reservation__buttons {
	width: 80%;
	max-width: 16.875rem;
	margin-inline: auto;
}

.review__headline {
	padding-inline: 3.125rem;
}

.review__container {
	grid-template-columns: 1fr;
	max-width: 12.5rem;
	margin-inline: auto;
}

.review__img {
	width: 50%;
	max-width: 11.25rem;
	margin-inline: auto;
}

.review__headline-box {
	flex-direction: column;
	align-items: flex-start;
	margin-top: 0.9375rem;
}

.review__headline-text--01 {
	order: 1;
}

.review__headline-text--02 {
	order: 2;
}

.review__stars {
	order: 3;
	margin-left: 0;
}

.p-service-case__inner.l-inner {
	max-width: 600px;
}

.p-service-case__title-jp {
	font-size: 1.25rem;
	margin-top: 0.3125rem;
}

.p-service-case__title-jp::before,
.p-service-case__title-jp::after {
	width: 2.1875rem;
}

.p-service-case__title-jp::before {
	left: -2.8125rem;
}

.p-service-case__title-jp::after {
	right: -2.8125rem;
}

.p-service-case__images {
	flex-direction: column;
	gap: 3.75rem;
}

.p-service-case__image {
	width: 100%;
}

.p-service-case__image:last-child::before {
	top: -4.0625rem;
	left: 50%;
	transform: translateX(-50%) rotate(90deg);
}

.p-service-case__content {
	padding: 1.875rem 1.25rem;
	margin-top: 1rem;
}

.p-service-case__case-title {
	font-size: 1.125rem;
}

.p-service2__heading.p-service2__heading--small {
	font-size: 1.3125rem;
	line-height: 2;
}

.p-service2__slider .swiper-slide {
	width: 21.5625rem;
}

.p-service .p-service2__block::before {
	width: 75%;
}

.p-staff {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

.p-staff__item-container {
	flex-direction: column;
	gap: 0.625rem;
}

.p-staff__img-wrapper {
	width: 100%;
	max-width: 28.125rem;
	margin-inline: auto;
}

.p-staff__img {
	padding-left: 0;
}

.p-staff__list-item:first-child .p-staff__img::before {
	width: 4.6875rem;
}

.p-staff__list-item:nth-child(2) .p-staff__img::before {
	width: 4.0625rem;
}

.p-staff__list-item:nth-child(3) .p-staff__img::before {
	width: 5rem;
	right: 0;
}

.p-staff__list-item:nth-child(4) .p-staff__img::before {
	width: 4.0625rem;
}

.p-staff__list-item:nth-child(5) .p-staff__img::before {
	width: 4.6875rem;
}

.p-staff__list-item:nth-child(6) .p-staff__img::before {
	width: 4.0625rem;
}

.p-staff__img img {
	border-radius: 3.125rem;
	border-bottom-right-radius: 9.375rem;
}

.p-staff__content {
	width: 100%;
	max-width: 25rem;
	margin-inline: auto;
	padding-top: 0;
}

.p-staff__ranking-title {
	font-size: 1.375rem;
}

.p-staff__ranking-title-small {
	font-size: 0.8125rem;
}

.p-staff__ranking-title-number {
	font-size: 2.5rem;
}

.p-staff__ranking-item {
	max-width: initial;
}

.p-staff__ranking-item + .p-staff__ranking-item {
	margin-top: 0.375rem;
}

.p-staff__qualification {
	grid-template-columns: 1fr;
	row-gap: 0rem;
	padding-inline: 1.25rem;
	max-width: 27.5rem;
	margin-inline: auto;
}

.p-staff__qualification.p-staff__qualification--2columns {
	grid-template-columns: 1fr;
}

.p-staff__position {
	padding-inline: 0.625rem;
}

.p-staff__name-container {
	gap: 0.625rem;
	margin-top: 0.625rem;
	padding-block: 0.3125rem;
	padding-inline: 0.625rem;
}

.p-staff__name {
	font-size: 1.25rem;
}

.p-staff__text-body {
	padding: 1.25rem 1.875rem;
	max-width: 90%;
}

.p-staff__text-body::before {
	width: 3.125rem;
}

.p-staff__text {
	font-size: 0.875rem;
	line-height: 2;
}

.subAbout__title::before {
	height: 1.125rem;
}

.thanks__head {
	margin-top: 36px;
	margin-bottom: 14px;
	padding-bottom: 15px;
	border-bottom: 1px solid #bcbcbc;
	color: #000;
	font-weight: bold;
	font-size: 20px;
	line-height: 1.8;
	font-family: "Noto Sans JP";
	letter-spacing: 0.08em;
}

.thanks__buttonWrapper {
	margin-top: 34px;
	text-align: center;
}

.thanks__button {
	padding-top: 11px !important;
	padding-bottom: 11px !important;
	font-size: 12px !important;
}

.u-mtSp10 {
	margin-top: 10px !important;
	margin-top: 0.625rem !important;
}

.u-mtSp20 {
	margin-top: 20px !important;
	margin-top: 1.25rem !important;
}

.u-mtSp30 {
	margin-top: 30px !important;
	margin-top: 1.875rem !important;
}

.u-mtSp40 {
	margin-top: 40px !important;
	margin-top: 2.5rem !important;
}

.u-mtSp50 {
	margin-top: 50px !important;
	margin-top: 3.125rem !important;
}

.u-mtSp60 {
	margin-top: 60px !important;
	margin-top: 3.75rem !important;
}

.u-mtSp70 {
	margin-top: 70px !important;
	margin-top: 4.375rem !important;
}

.u-mtSp80 {
	margin-top: 80px !important;
	margin-top: 5rem !important;
}

.u-mtSp90 {
	margin-top: 90px !important;
	margin-top: 5.625rem !important;
}

.u-mtSp100 {
	margin-top: 100px !important;
	margin-top: 6.25rem !important;
}

.u-mtSp110 {
	margin-top: 110px !important;
	margin-top: 6.875rem !important;
}

.u-mtSp120 {
	margin-top: 120px !important;
	margin-top: 7.5rem !important;
}

.u-mtSp130 {
	margin-top: 130px !important;
	margin-top: 8.125rem !important;
}

.u-mtSp140 {
	margin-top: 140px !important;
	margin-top: 8.75rem !important;
}

.u-mtSp150 {
	margin-top: 150px !important;
	margin-top: 9.375rem !important;
}

.u-mtSp160 {
	margin-top: 160px !important;
	margin-top: 10rem !important;
}

.u-mtSp170 {
	margin-top: 170px !important;
	margin-top: 10.625rem !important;
}

.u-mtSp180 {
	margin-top: 180px !important;
	margin-top: 11.25rem !important;
}

.u-mtSp190 {
	margin-top: 190px !important;
	margin-top: 11.875rem !important;
}

.u-mtSp200 {
	margin-top: 200px !important;
	margin-top: 12.5rem !important;
}

.u-pc {
	display: none;
}

.u-sp {
	display: block;
}

.u-textMdLeft {
	text-align: Left !important;
}

.u-textMdCenter {
	text-align: Center !important;
}

.u-textMdRight {
	text-align: Right !important;
}

.u-textMdJustify {
	text-align: Justify !important;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@keyframes circleAnim {

0% {
	stroke-dasharray: 0 440;
}

99.9%,to {
	stroke-dasharray: 440 440;
}

}

@keyframes move {

0% {
	bottom: 4.375rem;
}

100% {
	bottom: 0px;
}

}

@keyframes fade {

0% {
	opacity: 0;
}

50% {
	opacity: 1;
}

100% {
	opacity: 0;
}

}

@keyframes loopSlide {

0% {
	transform: translateX(0);
}

100% {
	transform: translateX(-100%);
}

}

