/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */

* {
	box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
	border: 0;
	font: inherit;
	font-size: 100%;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
	vertical-align: baseline;
}

html {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

li,
dd {
	list-style-type: none;
}

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

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

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

body {
	background: #fff;
	color: #121212;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.6;
	margin: 0 auto;
}

.l-inner {
	padding: 0 40px;
}

.header__contact-btn {
	background: linear-gradient(to right, #294A73, #4D8CD9);
	border-radius: 36px;
	box-shadow: inset 0 0 0 0 #1B476B;
	box-sizing: border-box;
	color: #fff;
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 3%;
	padding: 13px 36px;
	text-decoration: none;
	transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.header__contact-btn:hover {
	background: #fefffc;
	box-shadow: inset 0 0 0 3px #1B476B;
	color: #1B476B;
}

.header__contact-btn:active {
	background: #fefffc;
	box-shadow: inset 0 0 0 3px #1B476B;
	color: #1B476B;
	transform: scale(0.98);
}

.c-btn {
	align-items: center;
	background: linear-gradient(to right, #294A73, #4D8CD9);
	border-radius: 36px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	color: #fff;
	display: inline-flex;
	font-size: 1.25rem;
	font-weight: 700;
	justify-content: center;
	max-width: 290px;
	padding: 17px 100px 17px 80px;
	position: relative;
	text-decoration: none;
	transition: opacity 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s, transform 0.2s;
	white-space: nowrap;
}

.c-btn::after {
	align-items: center;
	background: #fff;
	border-radius: 50%;
	content: "";
	display: flex;
	height: 50px;
	justify-content: center;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	transition: background 0.3s;
	width: 50px;
}

.c-btn::before {
	border-right: 3px solid #4D8CD9;
	border-top: 3px solid #4D8CD9;
	content: "";
	height: 10px;
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 10px;
	z-index: 1;
}

.c-btn:hover {
	background: #fefffc;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), inset 0 0 0 3px #1B476B;
	color: #1B476B;
}

.c-btn:hover::after {
	background: linear-gradient(to right, #294A73, #4D8CD9);
}

.c-btn:hover::before {
	border-right-color: #fff;
	border-top-color: #fff;
}

.c-btn:active {
	background: #fefffc;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1), inset 0 0 0 3px #1B476B;
	color: #1B476B;
	transform: scale(0.98);
}

.c-btn:active::after {
	background: linear-gradient(to right, #294A73, #4D8CD9);
}

.c-btn:active::before {
	border-right-color: #fff;
	border-top-color: #fff;
}

.drawer-content__btn {
	background: linear-gradient(to right, #294A73, #4D8CD9);
	border-radius: 36px;
	color: #fff;
	display: block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 3%;
	padding: 15px 0;
	text-align: center;
	text-decoration: none;
	transition: opacity 0.3s, background 0.3s, color 0.3s, transform 0.2s;
	width: 100%;
}

.drawer-content__btn:hover {
	background: #fefffc;
	box-shadow: inset 0 0 0 3px #1B476B;
	color: #1B476B;
}

.drawer-content__btn:active {
	background: #fefffc;
	box-shadow: inset 0 0 0 3px #1B476B;
	color: #1B476B;
	transform: scale(0.98);
}

.mb {
	margin-bottom: 100px;
}

.p-contact-cta {
	text-align: center;
}

.p-contact-cta .c-btn {
	font-size: 16px;
	line-height: 1.2;
	max-width: 460px;
	padding: 17px 130px 17px 70px;
}

.p-contact-cta .c-btn::after {
	display: none;
}

.p-contact-cta .c-btn::before {
	background: #fff;
	border: none;
	content: "";
	height: 1px;
	position: absolute;
	right: 70px;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
}

.p-contact-cta .c-btn:hover::before,
.p-contact-cta .c-btn:active::before {
	background: #1B476B;
}

.submit-btn-wrapper {
	text-align: center;
}

.submit-btn input[type=submit] {
	background: #034495;
	border: none;
	border-radius: 40px;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	padding: 20px 0;
	transition: all 0.3s, transform 0.2s;
	width: 220px;
}

.submit-btn input[type=submit]:hover {
	background: #fff;
	border: 1px solid #034495;
	color: #034495;
}

.submit-btn input[type=submit]:active {
	background: #fff;
	border: 1px solid #034495;
	color: #034495;
	transform: scale(0.98);
}

.m_404 .entry-404-btn .btn {
	background-color: #111;
	border-radius: 999px;
	color: #fff;
	display: inline-block;
	font-size: 15px;
	font-weight: 600;
	padding: 14px 36px;
	text-decoration: none;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.m_404 .entry-404-btn .btn:hover {
	background-color: #333;
	transform: translateY(-2px);
}

.m_404 .entry-404-btn .btn:active {
	background-color: #333;
	transform: scale(0.98);
}

/* ========================================
  Header
======================================== */

.header {
	margin: 0 auto;
	max-width: 1440px;
}

.header .header__inner {
	align-items: center;
	background: #fff;
	box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.25);
	display: flex;
	height: 100px;
	justify-content: space-between;
	left: 50%;
	padding: 8px 40px;
	position: fixed;
	top: 0;
	transform: translateX(-50%);
	width: 100%;
	z-index: 1004;
}

.header .header__inner .p-header__logo {
	flex-shrink: 0;
}

.header .header__inner .p-header__logo a img {
	display: block;
	width: 280px;
}

.header .header__inner .header__top-row {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.header .header__inner .header__contact-info {
	align-items: center;
	display: flex;
	gap: 25px;
	justify-content: flex-end;
}

.header .header__inner .header__contact-info .header__tel-hours {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.header .header__inner .header__contact-info .header__tel-hours .header__tel {
	align-items: center;
	color: #121212;
	display: flex;
	font-family: "Fira Sans", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
	gap: 3.3px;
}

.header .header__inner .header__contact-info .header__tel-hours .header__tel:hover {
	opacity: 0.7;
}

.header .header__inner .header__contact-info .header__tel-hours .header__tel .header__tel-icon {
	-o-object-fit: contain;
	height: 20px;
	object-fit: contain;
	width: 20px;
}

.header .header__inner .header__contact-info .header__tel-hours .header__business-hours {
	color: #121212;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.03;
}

.header .header__inner .header__contact-info .header__tel-hours .header__business-hours span {
	letter-spacing: 3%;
}

.header .header__inner .header__nav {
	align-items: center;
	display: flex;
	gap: 0;
	justify-content: center;
	width: 100%;
}

.header .header__inner .header__nav ul {
	border-right: 1px solid #b3d6f6;
	position: relative;
}

.header .header__inner .header__nav ul:first-child {
	border-left: 1px solid #b3d6f6;
}

.header .header__inner .header__nav ul .header__link {
	color: #121212;
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	padding: 0 20px;
	text-decoration: none;
	transition: color 0.3s;
}

.header .header__inner .header__nav ul .header__link:hover {
	color: #1B476B;
}

.header .header__inner .drawer-icon {
	background: transparent;
	border: none;
	cursor: pointer;
	display: none;
	height: 14px;
	padding: 0 12px 0 0;
	position: relative;
	width: 24px;
	z-index: 1003;
}

.header .header__inner .drawer-icon .drawer-icon__bar {
	background-color: #4b4b4b;
	border-radius: 2px;
	height: 2px;
	left: 0;
	position: absolute;
	transition: all 0.3s ease;
	width: 100%;
}

.header .header__inner .drawer-icon .drawer-icon__bar:nth-of-type(1) {
	top: 0;
}

.header .header__inner .drawer-icon .drawer-icon__bar:nth-of-type(2) {
	top: 7px;
}

.header .header__inner .drawer-icon .drawer-icon__bar:nth-of-type(3) {
	top: 14px;
}

.header .header__inner .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
	top: 7px;
	transform: rotate(45deg);
}

.header .header__inner .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
	opacity: 0;
}

.header .header__inner .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
	top: 7px;
	transform: rotate(-45deg);
}

/* ========================================
  Drawer (SP)
======================================== */

.drawer-overlay {
	background: rgba(0, 0, 0, 0.5);
	display: none;
	height: 100%;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	transition: opacity 0.3s ease;
	width: 100%;
	z-index: 1000;
}

.drawer-overlay.is-checked {
	opacity: 1;
	pointer-events: auto;
}

.drawer-content {
	background: #fff;
	display: none;
	height: 100%;
	padding: 110px 0 0 48px;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	z-index: 1001;
}

.drawer-content.is-checked {
	transform: translateX(0);
}

.drawer-content .drawer-content__menu {
	color: #121212;
}

.drawer-content .drawer-content__menu .drawer-content__item .drawer-content__link {
	display: block;
	letter-spacing: 1px;
	padding: 0 0 33px 0;
	white-space: nowrap;
}

.drawer-content .drawer-content__button {
	margin-top: 30px;
	padding: 0 48px 0 0;
	text-align: center;
}

.privacy .privacy-title {
	color: #1B476B;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 40px;
	padding-bottom: 20px;
	position: relative;
	text-align: center;
}

.privacy .privacy-title::after {
	background: #f0cf67;
	bottom: 0;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 32px;
}

.privacy .privacy-content {
	border-radius: 8px;
	margin: 0 auto;
	margin-top: 60px;
	max-width: 1200px;
	padding: 60px;
	z-index: 1;
}

.privacy .privacy-content .privacy-content-description {
	color: #999999;
	font-size: 1rem;
	line-height: 2;
	margin-bottom: 40px;
}

.privacy .privacy-content .section-title {
	border-bottom: 1px solid #333;
	color: #333;
	font-size: 1.25rem;
	font-weight: 700;
	margin: 50px 0 20px;
	padding-bottom: 10px;
}

.privacy .privacy-content .section-title:first-child {
	font-size: 1rem;
	margin-top: 0;
}

.privacy .privacy-content p {
	color: #999999;
	font-size: 1rem;
	line-height: 2;
	margin-bottom: 15px;
}

.privacy .privacy-content p.numbered {
	display: flex;
}

.privacy .privacy-content p.numbered .num {
	flex-shrink: 0;
	width: 2em;
}

.privacy .privacy-content p.numbered .text {
	flex: 1;
}

.privacy .privacy-content p.indent {
	display: flex;
	margin-bottom: 10px;
	margin-left: 2em;
}

.privacy .privacy-content p.indent .num {
	flex-shrink: 0;
	width: 2em;
}

.privacy .privacy-content p.indent .text {
	flex: 1;
}

.privacy .privacy-content p.indent-sub {
	margin-bottom: 8px;
	margin-left: 4em;
}

.privacy .privacy-content .contact-box {
	border-bottom: 1px solid #333;
	border-top: 1px solid #333;
	display: inline-block;
	padding: 20px;
}

.privacy .privacy-content .contact-box p {
	display: block;
	line-height: 1.8;
	margin-bottom: 10px;
}

.privacy .privacy-content .contact-box p:last-child {
	margin-bottom: 0;
}

.privacy .privacy-content .contact-box a {
	color: #1B476B;
	text-decoration: underline;
}

.privacy .privacy-content .contact-box a:hover {
	text-decoration: none;
}

.privacy .privacy-content a {
	color: #1B476B;
	text-decoration: underline;
	word-break: break-all;
}

.privacy .privacy-content a:hover {
	text-decoration: none;
}

.fv {
	margin-top: 97px;
	position: relative;
}

.fv .p-fv-content .p-fv-content__items .p-fv-content__items-message .p-fv-content__items-message-title {
	color: #1B476B;
	font-size: 2.8vw;
	font-weight: 700;
	left: 7%;
	line-height: 1.8;
	position: absolute;
	top: 15%;
}

.fv .p-fv-content .p-fv-content__items .p-fv-content__items-message .p-fv-content__items-message-title span {
	border-bottom: 2px solid #61b4f9;
	font-size: 3.8vw;
}

.fv .p-fv-content .p-fv-content__items .p-fv-content__items-message-title-sub {
	bottom: 20%;
	font-size: 1.4vw;
	font-weight: 400;
	left: 7%;
	line-height: 1.8;
	max-width: 700px;
	position: absolute;
}

.fv .p-fv-content .p-fv-content__items .p-fv-content__items-img img {
	display: block;
	height: auto;
	width: 100%;
}

.p-strengths {
	background: url("/wp-content/themes/progress/public/assets/img/utility_bg.jpg") center center/cover;
	padding: 80px 0;
	position: relative;
}

.p-strengths__inner {
	margin: 0 auto;
	max-width: 1440px;
	padding: 0 40px;
}

.p-strengths__title {
	color: #1B476B;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 3%;
	margin-bottom: 60px;
	padding-bottom: 20px;
	position: relative;
	text-align: center;
}

.p-strengths__title::after {
	background: #f0cf67;
	bottom: 0;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 32px;
}

.p-strengths__items {
	display: flex;
	gap: 40px;
	margin: 0 auto;
	max-width: 1200px;
}

.p-strengths__item {
	background: #fff;
	border: 1px solid #1B476B;
	border-radius: 8px;
	border-radius: 20px;
	box-shadow: 0 0 8px rgba(0, 14, 141, 0.25);
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 60px 25px;
	position: relative;
	text-align: center;
	transition: transform 0.3s, box-shadow 0.3s;
}

.p-strengths__item-number {
	color: #1B476B;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 3.6rem;
	font-weight: 700;
	left: 25px;
	position: absolute;
	top: -50px;
}

.p-strengths__item-img {
	align-items: center;
	display: flex;
	justify-content: center;
	overflow: hidden;
	width: 100%;
}

.p-strengths__item-img img {
	display: block;
	height: auto;
	width: 50%;
}

.p-strengths__item-title {
	color: #1B476B;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 25px 0 20px;
}

.p-strengths__item-title span {
	font-size: 1.25rem;
}

.p-strengths__item-description {
	color: #121212;
	flex-grow: 1;
	font-size: 1rem;
	line-height: 1.8;
	text-align: left;
	text-align: justify;
}

.p-strengths__item-btn {
	background: linear-gradient(to right, #294A73, #4D8CD9);
	border-radius: 30px;
	color: #fff;
	display: inline-block;
	font-weight: 700;
	margin: 20px auto 30px;
	padding: 12px 40px;
	text-decoration: none;
	transition: opacity 0.3s, transform 0.2s;
}

.p-strengths__item-btn:hover {
	opacity: 0.8;
}

.p-strengths__item-btn:active {
	opacity: 0.8;
	transform: scale(0.98);
}

.p-strengths__btn-wrapper {
	margin-top: 60px;
	text-align: center;
}

.p-strengths__btn {
	background: linear-gradient(to right, #294A73, #4D8CD9);
	border-radius: 36px;
	color: #fff;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	padding: 15px 60px;
	text-decoration: none;
	transition: opacity 0.3s, transform 0.2s;
}

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

.p-strengths__btn:active {
	opacity: 0.8;
	transform: scale(0.98);
}

.p-company {
	background: #fff;
	color: #1B476B;
	overflow: visible;
	padding: 40px 20px;
}

.p-company__inner {
	margin: 0 auto;
	max-width: 800px;
	text-align: center;
}

.p-company__logo {
	margin-bottom: 20px;
}

.p-company__logo img {
	height: auto;
	max-width: 100%;
}

.p-company__name {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 80px;
	position: relative;
}

.p-company__name::after {
	background: #f0cf67;
	bottom: -20px;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 40px;
}

.p-company__table-wrapper {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	margin: 0 auto;
	max-width: 1000px;
	padding: 90px;
}

.p-company__table {
	border-collapse: collapse;
	width: 100%;
}

.p-company__table tr {
	border-bottom: 1px solid #dddddd;
}

.p-company__table th,
.p-company__table td {
	color: #1B476B;
	letter-spacing: 2px;
	line-height: 1.7;
	text-align: left;
	vertical-align: top;
}

.p-company__table th {
	font-size: 16px;
	font-weight: 700;
	padding: 18px 0 18px 15px;
	width: 30%;
}

.p-company__table td {
	font-size: 16px;
	font-weight: 400;
	padding: 18px 20px;
	width: 70%;
}

.p-company__table td a {
	text-decoration: underline;
}

.p-company__table td a:hover {
	text-decoration: none;
}

.p-company-map {
	background: #fff;
	padding: 80px 20px;
}

.p-company-map__inner {
	margin: 0 auto;
	max-width: 1440px;
}

.p-company-map__title {
	color: #1B476B;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 80px;
	padding-bottom: 20px;
	position: relative;
	text-align: center;
}

.p-company-map__title::after {
	background: #f0cf67;
	bottom: 0;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 40px;
}

.p-company-map__content {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	justify-content: center;
	margin: 0 auto;
	max-width: 1000px;
}

.p-company-map__iframe {
	flex-shrink: 0;
	height: 440px;
	width: 550px;
}

.p-company-map__iframe iframe {
	height: 100%;
	width: 100%;
}

.p-company-map__info {
	color: #1B476B;
	display: flex;
	flex: 1;
	flex-direction: column;
	font-size: 16px;
	height: 440px;
	line-height: 1.8;
}

.p-company-map__name {
	margin-bottom: 32px;
}

.p-company-map__address {
	font-size: 1rem;
	line-height: 1.8;
}

.p-company-map__tel {
	font-size: 1rem;
	margin-bottom: 32px;
}

.p-company-map__tel a {
	color: #1B476B;
}

.p-company-map__tel a:hover {
	text-decoration: underline;
}

.p-company-map__access {
	margin: 0 0 25px;
	padding: 0;
}

.p-company-map__access li {
	font-size: 0.875rem;
	line-height: 1.8;
	position: relative;
}

.p-company-map__link {
	align-items: center;
	color: #1B476B;
	display: inline-flex;
	font-size: 1rem;
	gap: 16px;
	margin-top: auto;
	transition: opacity 0.3s;
}

.p-company-map__link::after {
	background: url("../img/arrow.png") no-repeat center/contain;
	content: "";
	display: inline-block;
	height: 6.3px;
	width: 38px;
}

.p-company-map__link:hover {
	opacity: 0.8;
}

.p-qa {
	background: url(../img/utility_bg.jpg) no-repeat center center;
	background-size: cover;
	padding: 80px 0;
}

.p-qa__inner {
	margin: 0 auto;
	max-width: 1440px;
	padding: 0 40px;
}

.p-qa__title {
	color: #1B476B;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 60px;
	padding-bottom: 20px;
	position: relative;
	text-align: center;
}

.p-qa__title::after {
	background: #f0cf67;
	bottom: 0;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 32px;
}

.p-qa__items {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin: 0 auto;
	max-width: 900px;
}

.p-qa__item {
	background: #fff;
	border-radius: 8px;
}

.p-qa__question-wrapper {
	align-items: center;
	cursor: pointer;
	display: flex;
}

.p-qa__question {
	align-items: center;
	display: flex;
	flex: 1;
	gap: 25px;
	padding: 16px 24px;
	transition: background 0.3s, border-radius 0.3s;
}

.p-qa__question-label {
	align-items: center;
	background: #1B476B;
	border-radius: 50%;
	color: #fff;
	display: flex;
	flex-shrink: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	height: 36px;
	justify-content: center;
	transition: all 0.3s;
	width: 36px;
}

.p-qa__question-text {
	color: #1B476B;
	flex: 1;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.8;
	transition: color 0.3s;
}

.p-qa__toggle {
	align-items: center;
	background: transparent;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	flex-shrink: 0;
	justify-content: center;
	padding-right: 25px;
	position: relative;
	transition: all 0.3s;
}

.p-qa__toggle-icon {
	height: 16px;
	position: relative;
	width: 16px;
}

.p-qa__toggle-icon::before,
.p-qa__toggle-icon::after {
	background: #999999;
	content: "";
	position: absolute;
	transition: all 0.3s;
}

.p-qa__toggle-icon::before {
	height: 2px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
}

.p-qa__toggle-icon::after {
	height: 16px;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 2px;
}

.p-qa__item.is-open .p-qa__toggle-icon::after {
	transform: translateX(-50%) rotate(90deg);
}

.p-qa__item.is-open .p-qa__toggle-icon::before,
.p-qa__item.is-open .p-qa__toggle-icon::after {
	background: #fff;
}

.p-qa__item.is-open .p-qa__question-wrapper {
	background: #1b476b;
	border-radius: 8px 8px 0 0;
}

.p-qa__item.is-open .p-qa__question {
	border-radius: 8px;
}

.p-qa__item.is-open .p-qa__question-label {
	background: #fff;
	color: #034495;
}

.p-qa__item.is-open .p-qa__question-text {
	color: #fff;
}

.p-qa__answer {
	align-items: flex-start;
	display: flex;
	gap: 25px;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	padding: 0 24px;
	transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.p-qa__item.is-open .p-qa__answer {
	max-height: 500px;
	opacity: 1;
	padding: 24px;
}

.p-qa__answer-label {
	align-items: center;
	background: #1B476B;
	border-radius: 50%;
	color: #fff;
	display: flex;
	flex-shrink: 0;
	font-size: 1rem;
	font-weight: 700;
	height: 36px;
	justify-content: center;
	width: 36px;
}

.p-qa__answer-text {
	color: #121212;
	flex: 1;
	font-size: 0.875rem;
	line-height: 1.8;
}

.p-column {
	padding: 40px 0 80px;
}

.p-column__inner {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 40px;
	position: relative;
	z-index: 1;
}

.p-column__header {
	margin-bottom: 60px;
	text-align: center;
}

.p-column__title {
	color: #1B476B;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 60px;
	padding-bottom: 20px;
	position: relative;
	text-align: center;
}

.p-column__title::after {
	background: #f0cf67;
	bottom: 0;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 32px;
}

.p-column__items {
	display: grid;
	gap: 45px 30px;
	grid-template-columns: repeat(3, 1fr);
	margin: 0 auto;
	max-width: 1200px;
}

.p-column__item {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
}

.p-column__item:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	transform: translateY(-4px);
}

.p-column__link {
	color: inherit;
	display: block;
	padding: 32px;
	text-decoration: none;
}

.p-column__thumbnail {
	aspect-ratio: 16/9;
	background: #f5f5f5;
	overflow: hidden;
	width: 100%;
}

.p-column__thumbnail img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
	width: 100%;
}

.p-column__content {
	margin-top: 25px;
}

.p-column__meta {
	align-items: center;
	display: flex;
	font-size: 16px;
	gap: 8px;
	margin-bottom: 12px;
}

.p-column__category {
	color: #e18700;
}

.p-column__date {
	color: #666;
	letter-spacing: 8%;
}

.p-column__date::before {
	color: #ddd;
	content: "|";
	margin-right: 8px;
}

.p-column__item-title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: #121212;
	display: -webkit-box;
	font-size: 1rem;
	letter-spacing: 3%;
	line-height: 1.6;
	overflow: hidden;
}

.p-column__btn-wrapper {
	margin-top: 60px;
	text-align: center;
}

.p-column__pagination {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 60px;
}

.p-column__pagination .page-numbers {
	align-items: center;
	border-radius: 4px;
	color: #121212;
	display: flex;
	font-size: 0.875rem;
	height: 40px;
	justify-content: center;
	transition: all 0.3s;
	width: 40px;
}

.p-column__pagination .page-numbers:hover {
	background: #e8f2ff;
}

.p-column__pagination .page-numbers.current {
	background: #e8f2ff;
	color: #333;
}

.p-column__pagination .page-numbers.prev,
.p-column__pagination .page-numbers.next {
	font-size: 1rem;
}

.p-column__no-posts {
	color: #666;
	padding: 60px 20px;
	text-align: center;
}

.p-column--archive {
	background: #fff;
}

/* ================================
   Layout
================================ */

.container {
	display: flex;
	gap: 32px;
	margin: 170px auto 0;
	max-width: 1024px;
	padding: 0 20px;
}

.container--single {
	justify-content: center;
}

.container--single .content {
	width: 100%;
}

.content {
	width: 70%;
}

.sidebar {
	width: 30%;
}

/* ================================
   Main Article
================================ */

article.post {
	margin-bottom: 80px;
}

.post-meta-top {
	align-items: center;
	color: #666;
	display: flex;
	font-size: 14px;
	justify-content: space-between;
	letter-spacing: 2px;
	margin-bottom: 24px;
}

.post-meta-top .post-category {
	background: #034495;
	color: #fff;
	font-weight: 600;
	padding: 4px 8px;
}

.post-meta-top .post-date {
	white-space: nowrap;
}

.entry-title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 24px;
}

.post-thumbnail {
	margin-bottom: 32px;
}

.post-thumbnail img {
	display: block;
	height: auto;
	width: 100%;
}

.entry-content {
	font-size: 16px;
	line-height: 1.9;
}

.entry-content p {
	margin-bottom: 1.6em;
}

.entry-content h2 {
	font-size: 22px;
	margin: 48px 0 16px;
}

.entry-content h3 {
	font-size: 18px;
	margin: 32px 0 12px;
}

.entry-content img {
	height: auto;
	max-width: 100%;
}

/* ================================
   Sidebar
================================ */

.sidebar-title {
	border-bottom: 2px solid #000;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 24px;
	padding-bottom: 8px;
}

.sidebar-post {
	margin-bottom: 40px;
}

.sidebar-post:last-child {
	margin-bottom: 0;
}

.sidebar-thumbnail {
	display: block;
	margin-bottom: 8px;
}

.sidebar-thumbnail img {
	display: block;
	height: auto;
	width: 100%;
}

.sidebar-meta {
	align-items: center;
	color: #777;
	display: flex;
	font-size: 12px;
	justify-content: space-between;
	letter-spacing: 2px;
	margin-bottom: 6px;
}

.sidebar-meta .sidebar-category {
	border: 1px solid #e18700;
	color: #e18700;
	font-weight: 600;
	padding: 4px 8px;
}

.sidebar-meta .sidebar-date {
	font-weight: 700;
	white-space: nowrap;
}

.sidebar-post-title {
	color: #121212;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 2px;
	line-height: 1.5;
	margin-bottom: 6px;
}

.sidebar-post-title a {
	letter-spacing: 2px;
	line-height: 1.5;
}

.sidebar-post-title a:hover {
	text-decoration: underline;
}

.sidebar-excerpt {
	color: #555;
	font-size: 14px;
	line-height: 1.6;
}

/* ================================
   Responsive
================================ */

.p-about {
	background: #fff;
	overflow: hidden;
	padding: 80px 0;
	position: relative;
}

.p-about::before {
	background: url(../img/about_icon_r.png) no-repeat center;
	background-size: contain;
	content: "";
	height: 226px;
	position: absolute;
	right: 65px;
	top: 80px;
	width: 208px;
	z-index: 0;
}

.p-about::after {
	background: url(../img/about_icon_l.png) no-repeat center;
	background-size: contain;
	bottom: 83px;
	content: "";
	height: 148px;
	left: 38px;
	position: absolute;
	width: 137px;
	z-index: 0;
}

.p-about__inner {
	margin: 0 auto;
	max-width: 1440px;
	padding: 0 40px;
	position: relative;
	z-index: 1;
}

.p-about__title {
	color: #1B476B;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 60px;
	padding-bottom: 20px;
	position: relative;
	text-align: center;
}

.p-about__title::after {
	background: #f0cf67;
	bottom: 0;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 32px;
}

.p-about__content {
	display: grid;
	gap: 20px 60px;
	grid-template-columns: 60% 1fr;
	grid-template-rows: 1fr auto;
	margin: 0 auto;
	max-width: 1000px;
}

.p-about__content-message {
	grid-column: 1;
	grid-row: 1;
}

.p-about__content-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 45px;
}

.p-about__content-title h3 {
	font-size: inherit;
	font-weight: inherit;
	line-height: 1.6;
	margin-bottom: 25px;
}

.p-about__content-title p {
	font-size: 1rem;
	font-weight: normal;
	line-height: 1.8;
	margin-top: 20px;
}

.p-about__content-btn {
	grid-column: 1;
	grid-row: 2;
	margin-top: 30px;
}

.p-about__content-img {
	grid-column: 2;
	grid-row: 1/3;
	text-align: right;
}

.p-about__content-img img {
	border-radius: 8px;
	height: auto;
	width: 100%;
}

.p-contact-form {
	margin: 0 auto;
	max-width: 920px;
}

.p-contact-form__title {
	color: #1B476B;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 40px;
	text-align: center;
}

.p-contact-form__subtitle {
	color: #1B476B;
	font-size: 1rem;
	line-height: 1.8;
	margin-bottom: 36px;
	text-align: center;
}

.contactForm {
	background: #fafafa;
	padding: 80px 140px;
}

.contact_item {
	margin-bottom: 18px;
}

.label {
	color: #121212;
	display: block;
	font-size: 16px;
	letter-spacing: 1px;
	margin: 0 auto;
	max-width: 650px;
}

.label_tag {
	color: #fff;
	font-size: 10px;
	margin-left: 14px;
	padding: 3px 8px;
	vertical-align: middle;
}

.label_must {
	background: #034495;
}

input[type=text],
input[type=email],
input[type=tel] {
	border: 1px solid #ddd;
	border-radius: 4px;
	display: block;
	font-size: 16px;
	height: 45px;
	margin-top: 8px;
	padding: 0 16px;
	width: 100%;
}

textarea {
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	height: 200px;
	margin-top: 8px;
	padding: 16px;
	resize: none;
	width: 640px;
}

.contact_item-information {
	font-size: 16px;
	margin: 30px 0 56px;
}

.contact_item-information a {
	color: #034495;
	text-decoration: underline;
}

.contact_item-information a:hover {
	text-decoration: none;
}

.wpcf7-spinner {
	display: none;
}

.wpcf7 br {
	display: none;
}

.wpcf7-list-item {
	margin: 0;
}

.wpcf7-form-control-wrap {
	text-align: left;
}

.wpcf7-acceptance .wpcf7-list-item-label {
	font-size: 16px;
}

.p-contact-cta {
	background: url(../img/contact_bg.jpg) no-repeat center center;
	background-size: cover;
	padding: 80px 0;
}

.p-contact-cta__inner {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 40px;
}

.p-contact-cta__title {
	color: #1B476B;
	font-size: 2rem;
	font-weight: 700;
}

.p-contact-cta__description {
	color: #121212;
	font-size: 1rem;
	line-height: 1.8;
	margin-bottom: 40px;
}

.p-contact-cta__buttons {
	align-items: center;
	background: #fff;
	border-radius: 8px;
	display: flex;
	gap: 30px;
	justify-content: center;
	margin: 0 auto;
	max-width: 1200px;
	padding: 32px 0;
}

.p-contact-cta__tel-wrapper {
	align-items: center;
	display: flex;
	gap: 24px;
}

.p-contact-cta__tel {
	color: #121212;
	font-size: 45px;
	font-weight: 700;
	transition: opacity 0.3s;
}

.p-contact-cta__tel:hover {
	opacity: 0.7;
}

.p-contact-cta__business-hours {
	color: #121212;
	font-size: 16px;
	font-weight: 700;
	text-align: left;
}

.p-contact-cta__business-hours span {
	font-size: 14px;
}

.p-thanks-page .p-thanks {
	margin: 0 auto;
	max-width: 900px;
	padding: 120px 20px 160px;
}

.p-thanks-page .p-thanks__inner {
	text-align: center;
}

.p-thanks-page .p-thanks__title {
	color: #1B476B;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 30px;
}

.p-thanks-page .p-thanks__line {
	background: #1B476B;
	height: 3px;
	margin: 0 auto 40px;
	width: 60px;
}

.p-thanks-page .p-thanks__message {
	color: #121212;
	font-size: 16px;
	line-height: 2;
	margin-bottom: 40px;
}

.p-thanks-page .p-thanks__note {
	color: #666;
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 40px;
}

.p-thanks-page .p-thanks__company {
	color: #121212;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 40px;
}

.p-thanks-page .p-thanks__btn-link {
	align-items: center;
	background: #1B476B;
	border-radius: 36px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	color: #fff;
	display: inline-flex;
	font-size: 16px;
	font-weight: 700;
	justify-content: center;
	padding: 17px 80px;
	text-decoration: none;
	transition: opacity 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s;
}

.p-thanks-page .p-thanks__btn-link:hover {
	background: #fefffc;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), inset 0 0 0 3px #1B476B;
	color: #1B476B;
}

/* =========================
  404 Not Found
========================= */

.m_404 {
	align-items: center;
	background-color: #f7f8fa;
	display: flex;
	justify-content: center;
	min-height: 100vh;
}

.m_404 .inner {
	max-width: 960px;
	padding: 0 24px;
	width: 100%;
}

.m_404 .entry-404 {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
	padding: 80px 48px;
	text-align: center;
}

.m_404 .entry-404-head {
	color: #222;
	font-family: "Montserrat", sans-serif;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 24px;
}

.m_404 .entry-404-head span {
	color: #e1e4ea;
	display: block;
	font-size: 96px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 8px;
}

.m_404 .entry-404-lead {
	color: #111;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.6;
	margin-bottom: 16px;
}

.m_404 .entry-404-content {
	color: #666;
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 40px;
}

.p-footer {
	background: #fff;
	padding: 60px 0;
}

.p-footer__inner {
	margin: 0 auto;
	max-width: 1000px;
	padding: 0 40px;
}

.p-footer__top {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding-bottom: 40px;
}

.p-footer__logo a {
	display: block;
}

.p-footer__logo a img {
	height: auto;
	width: 90%;
}

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

.p-footer__privacy a {
	color: #121212;
	font-size: 0.875rem;
	text-decoration: none;
	transition: opacity 0.3s;
}

.p-footer__privacy a:hover {
	opacity: 0.7;
}

.p-footer__copyright {
	color: #666;
	font-size: 0.75rem;
	margin: 0;
}

.p-footer__nav-list {
	display: flex;
	gap: 30px;
}

.p-footer__nav-item a {
	color: #121212;
	font-size: 0.875rem;
	text-decoration: none;
	transition: opacity 0.3s;
	white-space: nowrap;
}

.p-footer__nav-item a:hover {
	opacity: 0.7;
}

.p-profile {
	background: #fff;
	padding: 80px 20px;
}

.p-profile__inner {
	margin: 0 auto;
	max-width: 1200px;
}

.p-profile__content {
	display: flex;
	gap: 10px;
	justify-content: space-between;
}

.p-profile__text {
	flex: 1;
}

.p-profile__message {
	color: #1B476B;
	font-size: 47px;
	font-weight: normal;
	letter-spacing: 2px;
	line-height: 1.8;
	margin: 44px 0 60px;
}

.p-profile__img {
	flex: 0 0 500px;
}

.p-profile__img img {
	border-radius: 8px;
	height: auto;
	width: 100%;
}

.p-profile__position {
	color: #1B476B;
	font-size: 24px;
	font-weight: normal;
	margin-bottom: 10px;
}

.p-profile__name {
	color: #121212;
	font-size: 40px;
	font-weight: normal;
}

.p-profile-message {
	background: #f2f9ff;
	padding: 80px 20px;
}

.p-profile-message__inner {
	margin: 0 auto;
	max-width: 1000px;
}

.p-profile-message__text {
	background: #fff;
	border-radius: 16px;
	padding: 40px;
	text-align: justify;
}

.p-profile-message__text p {
	color: #333;
	font-size: 18px;
	font-weight: 400;
	line-height: 2;
	margin-bottom: 1.5em;
}

.p-profile-message__text p:last-child {
	margin-bottom: 0;
}

.p-profile-message__highlight {
	color: #1b476b !important;
	font-size: 24px !important;
	font-weight: 400;
}

.p-profile-career {
	background: #fff;
	padding: 80px 20px;
}

.p-profile-career__inner {
	margin: 0 auto;
	max-width: 800px;
}

.p-profile-career__title {
	color: #1B476B;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 40px;
	padding-bottom: 20px;
	position: relative;
	text-align: center;
}

.p-profile-career__title::after {
	background: #f0cf67;
	bottom: 0;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 40px;
}

.p-profile-career__list {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.p-profile-career__item {
	background: #f8f6f2;
	border-radius: 8px;
	display: flex;
	gap: 40px;
	padding: 30px;
}

.p-profile-career__item dt {
	color: #1B476B;
	flex: 0 0 100px;
	font-size: 1rem;
	font-weight: 700;
}

.p-profile-career__item dd {
	flex: 1;
}

.p-profile-career__item dd ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.p-profile-career__item dd ul li {
	font-size: 1rem;
	line-height: 1.8;
	padding-left: 1em;
	position: relative;
}

.p-profile-career__item dd ul li::before {
	content: "・";
	left: 0;
	position: absolute;
}

.p-sub-fv {
	height: 270px;
	margin-top: 100px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.p-sub-fv__link {
	display: block;
	height: 100%;
	width: 100%;
}

.p-sub-fv picture,
.p-sub-fv img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-sub-fv__content {
	color: #fff;
	left: 50%;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.p-sub-fv__title {
	font-size: 42px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	white-space: nowrap;
}

.p-sub-fv__subtitle {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.2em;
	margin-top: 15px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.p-breadcrumb {
	background: #fff;
	padding: 40px 0 20px;
}

.p-breadcrumb--blue {
	background: #f2f9ff;
}

.p-breadcrumb__inner {
	margin: 0 auto;
	max-width: 1440px;
	padding: 0 40px;
}

.p-breadcrumb__list {
	align-items: center;
	display: flex;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.p-breadcrumb__item {
	align-items: center;
	color: #121212;
	display: flex;
	font-size: 14px;
}

.p-breadcrumb__item:not(:last-child)::after {
	color: #999;
	content: ">";
	margin-left: 10px;
}

.p-breadcrumb__link {
	align-items: center;
	display: flex;
	transition: opacity 0.3s;
}

.p-breadcrumb__link:hover {
	opacity: 0.7;
}

.p-breadcrumb__link img {
	height: auto;
	width: 20px;
}

.p-breadcrumb__current {
	color: #999999;
}

.p-service-page .p-sub-fv__title {
	font-size: 42px;
	font-weight: 900;
	letter-spacing: 0.03em;
	line-height: 1.6;
}

.p-service-intro {
	background: #f2f9ff;
	padding: 0 0 0;
}

.p-service-intro__inner {
	margin: 0 auto;
	max-width: 1200px;
	padding: 30px 40px 0;
}

.p-service-intro__title {
	color: #1B476B;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.6;
	margin-bottom: 70px;
	padding-bottom: 20px;
	position: relative;
	text-align: center;
}

.p-service-intro__title::after {
	background: #f0cf67;
	bottom: 0;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 32px;
}

.p-service-intro__cards {
	display: flex;
	gap: 30px;
	justify-content: center;
}

.p-service-intro__card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 0 8px rgba(0, 14, 141, 0.15);
	flex: 1;
	padding: 24px 20px;
	position: relative;
	text-align: center;
}

.p-service-intro__card-number {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(to right, #294a73, #4d8bd9);
	background-clip: text;
	font-family: "Courgette", cursive;
	font-size: 60px;
	font-weight: 400;
	left: 20px;
	letter-spacing: 0.03em;
	line-height: 1;
	position: absolute;
	top: -30px;
}

.p-service-intro__card-img {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-top: 10px;
	overflow: hidden;
	width: 100%;
}

.p-service-intro__card-img img {
	display: block;
	height: auto;
	width: 80%;
}

.p-service-intro__card-title {
	color: #1b476b;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6;
	margin: 16px 0 12px;
}

.p-service-intro__card-quote {
	color: #c8c8c8;
}

.p-service-intro__card-text {
	color: #121212;
	font-size: 16px;
	line-height: 1.8;
	text-align: left;
}

.p-service-features {
	background: #f2f9ff;
	padding: 110px 0 80px;
}

.p-service-features__block {
	background: #fff;
	border-radius: 0 20px 20px 0;
	box-shadow: 0 0 20px rgba(0, 14, 141, 0.08);
	margin-bottom: 130px;
	margin-right: auto;
	overflow: visible;
	padding: 80px 40px 80px 120px;
	width: calc(100% - 80px);
}

.p-service-features__block--reverse {
	border-radius: 20px 0 0 20px;
	margin-left: auto;
	margin-right: 0;
	padding: 80px 120px 80px 40px;
}

.p-service-features__block:last-child {
	margin-bottom: 0;
}

.p-service-features__content {
	align-items: center;
	display: flex;
	gap: 40px;
}

.p-service-features__block--reverse .p-service-features__content {
	flex-direction: row-reverse;
}

.p-service-features__text {
	flex: 1;
}

.p-service-features__number {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: flex-start;
	margin-bottom: 20px;
	margin-top: -130px;
}

.p-service-features__number--right {
	justify-content: flex-end;
	justify-content: flex-start;
	padding-left: 502px;
}

.p-service-features__number-label {
	color: #f0cf67;
	font-family: "Fira Sans", sans-serif;
	font-size: 50px;
	font-weight: 500;
	line-height: 1;
}

.p-service-features__number-value {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(to right, #294a73, #4d8bd9);
	background-clip: text;
	font-family: "Courgette", cursive;
	font-size: 100px;
	font-weight: 400;
	line-height: 1;
}

.p-service-features__heading {
	color: #1B476B;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 24px;
}

.p-service-features__body p {
	color: #121212;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.8;
	margin-bottom: 16px;
}

.p-service-features__body p:last-child {
	margin-bottom: 0;
}

.p-service-features__img {
	flex-shrink: 0;
	width: 462px;
}

.p-service-features__img img {
	border-radius: 8px;
	display: block;
	height: auto;
	width: 100%;
}

.p-service-compare {
	background: #fff;
	padding: 80px 0;
}

.p-service-compare__inner {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 40px;
}

.p-service-compare__title {
	color: #1B476B;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 24px;
	padding-bottom: 20px;
	position: relative;
	text-align: center;
}

.p-service-compare__title::after {
	background: #f0cf67;
	bottom: 0;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 32px;
}

.p-service-compare__description {
	color: #121212;
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 50px;
	text-align: center;
}

.p-service-compare__items {
	display: flex;
	gap: 30px;
}

.p-service-compare__item {
	flex: 1;
}

.p-service-compare__item-img {
	border-radius: 8px;
	margin-bottom: 16px;
	overflow: hidden;
	width: 100%;
}

.p-service-compare__item-img img {
	display: block;
	height: auto;
	width: 100%;
}

.p-service-compare__item-title {
	color: #1B476B;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.6;
	margin-bottom: 12px;
}

.p-service-compare__item-text {
	color: #121212;
	font-size: 16px;
	line-height: 1.8;
}

.p-service-list {
	background: #f2f9ff;
	padding: 80px 0;
}

.p-service-list__inner {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 40px;
}

.p-service-list__title {
	color: #1B476B;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 50px;
	padding-bottom: 20px;
	position: relative;
	text-align: center;
}

.p-service-list__title::after {
	background: #f0cf67;
	bottom: 0;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 32px;
}

.p-service-list__grid {
	display: grid;
	gap: 37px;
	grid-template-columns: repeat(2, 1fr);
}

.p-service-list__card {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 8px rgba(0, 14, 141, 0.08);
	overflow: hidden;
}

.p-service-list__card-img {
	overflow: hidden;
	width: 100%;
}

.p-service-list__card-img img {
	display: block;
	height: auto;
	width: 100%;
}

.p-service-list__card-body {
	padding: 24px 30px 30px;
}

.p-service-list__card-title {
	color: #1B476B;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 12px;
	text-align: center;
}

.p-service-list__card-text {
	color: #121212;
	font-size: 16px;
	line-height: 1.8;
}

.p-service {
	background: linear-gradient(to bottom, #fff 0%, #fff 50%, #f2f9ff 50%, #f2f9ff 100%);
	padding: 80px 0;
	position: relative;
}

.p-service__inner {
	margin: 0 auto;
	max-width: 1440px;
	padding: 0 40px;
}

.p-service__title {
	color: #1B476B;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 60px;
	padding-bottom: 20px;
	position: relative;
	text-align: center;
}

.p-service__title::after {
	background: #f0cf67;
	bottom: 0;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 32px;
}

.p-service__description {
	color: #121212;
	font-size: 1rem;
	line-height: 1.8;
	margin-bottom: 40px;
	text-align: center;
}

.p-service__subtitle {
	color: #1B476B;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
}

.p-service__subtitle-primary {
	color: #dca700;
	font-size: 1.5rem;
}

.p-service__subtitle-conjunction {
	font-size: 1.25rem;
}

.p-service__subtitle-text {
	font-size: 1.5rem;
}

.p-service__subtitle-emphasis {
	-webkit-text-emphasis-position: over;
	-webkit-text-emphasis: filled dot;
	-webkit-text-emphasis-position: over right;
	text-emphasis: filled dot;
	text-emphasis-position: over right;
}

.p-service__items {
	display: flex;
	gap: 40px;
	margin: 0 auto;
	max-width: 1200px;
}

.p-service__item {
	border-radius: 20px;
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 25px 20px;
	position: relative;
	text-align: center;
	transition: transform 0.3s, box-shadow 0.3s;
}

.p-service__item-img {
	align-items: center;
	display: flex;
	justify-content: center;
	overflow: hidden;
	width: 100%;
}

.p-service__item-img img {
	display: block;
	height: auto;
	width: 100%;
}

.p-service__item-title {
	color: #1B476B;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 20px 0 15px;
}

.p-service__item-description {
	color: #121212;
	flex-grow: 1;
	font-size: 1rem;
	line-height: 1.8;
	text-align: left;
}

.p-service__btn-wrapper {
	margin-top: 60px;
	text-align: center;
}

.p-service-old {
	margin: 0 auto;
	position: relative;
	z-index: 100;
}

.p-service-old .p-service-content {
	align-items: center;
	display: flex;
	gap: 40px;
	justify-content: space-between;
	padding: 0 5% 0 0; /* ▼▼▼ 並び替えの割当（SP時のみ grid-area を付与） ▼▼▼ */ /* ▲▲▲ ここまで（他の見た目は既存維持） ▲▲▲ */
}

.p-service-old .p-service-content .p-service-content__message .p-service-title {
	color: #1B476B;
	font-family: "Fira Sans", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
	font-size: clamp(14px, 96px, 8rem);
	font-weight: 700;
}

.p-service-old .p-service-content .p-service-content__message .p-service-message__text {
	color: #4D8CD9;
	font-size: clamp(14px, 2.7vw, 2rem);
	font-weight: 700;
	letter-spacing: 2px;
	margin-top: 10px;
}

.p-service-old .p-service-content .p-service-content__message .p-service-message__text-sub {
	font-size: clamp(14px, 1.4vw, 2rem);
	letter-spacing: 5px;
	margin: 30px 0;
	max-width: 800px;
}

.p-service-old .p-service-content .p-service-content__message .p-service-content__img-s {
	margin-top: 30px;
	width: 100%;
}

.p-service-old .p-service-content .p-service-content__img-f {
	width: 60%;
}

.p-service-old .p-service-content .p-service-content__img-f img {
	box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
}

.p-service-content__sec {
	background: #121212;
	bottom: -990px;
	left: 0;
	padding: 300px 0 150px;
	position: absolute;
	width: 100%;
	z-index: -1;
}

.p-service-content__sec .p-service-content__sec-title {
	color: #fff;
	font-size: clamp(14px, 2.5vw, 8rem);
	font-weight: 700;
	text-align: center;
}

.p-service-content__sec .p-service-content__sec-items {
	display: flex;
	gap: 40px;
	justify-content: center;
	margin-top: 80px;
	padding: 0 5%;
}

.p-service-content__sec .p-service-content__sec-items .p-service-content__sec-items-item {
	background: #fff;
	border: 1px solid #4D8CD9;
	border-radius: 0 20px 20px 20px;
	box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
	max-width: 370px;
	padding: 50px 20px 30px 60px;
	position: relative;
	width: 300px;
}

.p-service-content__sec .p-service-content__sec-items .p-service-content__sec-items-item:hover {
	box-shadow: none;
	opacity: 0.7;
}

.p-service-content__sec .p-service-content__sec-items .p-service-content__sec-items-item a .p-service-content__sec-items-item-number {
	color: #4D8CD9;
	font-size: 5rem;
	font-weight: 700;
	left: 70px;
	position: absolute;
	top: -66px;
}

.p-service-content__sec .p-service-content__sec-items .p-service-content__sec-items-item a .p-service-content__sec-items-item-title {
	color: #4D8CD9;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 2px;
}

.p-service-content__sec .p-service-content__sec-items .p-service-content__sec-items-item a .p-service-content__sec-items-item-img {
	margin: 17px 0 20px;
}

.p-service-content__sec .p-service-content__sec-items .p-service-content__sec-items-item a .p-service-content__sec-items-item-text p {
	color: #333;
	font-size: 0.8rem;
	line-height: 1.4;
}

.p-service-content__sec .p-service-content__sec-items .p-service-content__sec-items-item a .p-service-content__sec-items-item-left {
	background: #4D8CD9;
	left: -128px;
	padding: 5px 70px 5px 30px;
	position: absolute;
	rotate: 90deg;
	top: 126px;
	width: 290px;
}

.p-service-content__sec .p-service-content__sec-items .p-service-content__sec-items-item a .p-service-content__sec-items-item-left p {
	color: #fff;
	letter-spacing: 2px;
	white-space: nowrap;
}

.p-service-content__sec .p-service-content__sec-items-item-side {
	-webkit-font-smoothing: antialiased;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 2px #fff;
	color: transparent;
	font-size: 8rem;
	font-weight: 700;
	line-height: 1.2;
	margin-top: 60px;
	overflow: hidden;
	text-align: center;
	white-space: nowrap;
	z-index: 10000;
}

.p-service-content__sec .p-service-content__sec-items-item-side .ticker {
	animation: marquee 18s linear infinite;
	display: inline-flex;
	gap: 4rem;
	white-space: nowrap;
	will-change: transform;
}

.p-service-content__sec .p-service-content__sec-items-item-side .text {
	flex: 0 0 auto;
}

.p-business {
	background: #f2f9ff;
	padding: 40px 0 80px;
}

.p-business__inner {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 40px;
}

.p-business__filter {
	display: none; /* 一時的に非表示 */
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 40px;
}

.p-business__filter-btn {
	background: #fff;
	border: 1px solid #1B476B;
	border-radius: 4px;
	color: #1B476B;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	padding: 8px 20px;
	text-decoration: none;
	transition: all 0.3s;
}

.p-business__filter-btn:hover,
.p-business__filter-btn.is-active {
	background: #1B476B;
	color: #fff;
}

.p-business__items {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(2, 1fr);
}

.p-business__item {
	background: #fff;
	border-radius: 8px;
	transition: box-shadow 0.3s;
}

.p-business__link {
	color: inherit;
	display: block;
	padding: 30px;
	text-decoration: none;
}

.p-business__category {
	border: 1px solid #1B476B;
	border-radius: 4px;
	color: #1B476B;
	display: inline-block;
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 16px;
	padding: 4px 12px;
}

.p-business__item-title {
	color: #121212;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	margin-bottom: 20px;
}

.p-business__more {
	align-items: center;
	color: #1B476B;
	display: flex;
	font-size: 14px;
	gap: 8px;
	justify-content: flex-end;
}

.p-business__arrow {
	font-size: 16px;
	transition: transform 0.3s;
}

.p-business__item:hover .p-business__arrow {
	transform: translateX(4px);
}

.p-business__pagination {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 60px;
}

.p-business__pagination .page-numbers {
	align-items: center;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	color: #121212;
	display: flex;
	font-size: 14px;
	height: 36px;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s;
	width: 36px;
}

.p-business__pagination .page-numbers:hover {
	background: #e8f2ff;
	border-color: #1B476B;
}

.p-business__pagination .page-numbers.current {
	background: #1B476B;
	border-color: #1B476B;
	color: #fff;
}

.p-business__pagination .page-numbers.dots {
	background: transparent;
	border: none;
}

.p-business__pagination .page-numbers.prev,
.p-business__pagination .page-numbers.next {
	font-size: 14px;
}

.p-business__no-posts {
	color: #666;
	padding: 60px 20px;
	text-align: center;
}

body.single-business {
	background: #f2f9ff;
}

body.single-business .p-breadcrumb {
	margin-top: 95px;
}

body.single-business .container {
	margin-top: 0;
}

body.single-business .content {
	background: #fff;
	border-radius: 8px;
	max-width: 1000px;
	padding: 40px 140px;
}

.p-faq {
	background: #f2f9ff;
	padding: 40px 0 80px;
}

.p-faq__inner {
	margin: 0 auto;
	max-width: 900px;
	padding: 0 40px;
}

.p-faq__category {
	margin-bottom: 60px;
}

.p-faq__category:last-child {
	margin-bottom: 0;
}

.p-faq__category-title {
	border-bottom: 2px solid #1B476B;
	color: #1B476B;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 24px;
	padding-bottom: 12px;
}

.fade-in-up {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 1s, transform 1s;
}

.fade-in-up.is-in-view {
	opacity: 1;
	transform: translateY(0);
}

.fade-in-up-s {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 1.5s, transform 1.5s;
}

.fade-in-up-s.is-in-view {
	opacity: 1;
	transform: translateY(0);
}

.fade-in-up-t {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 2s, transform 2s;
}

.fade-in-up-t.is-in-view {
	opacity: 1;
	transform: translateY(0);
}

.fade-in-up-f {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 2.5s, transform 2.5s;
}

.fade-in-up-f.is-in-view {
	opacity: 1;
	transform: translateY(0);
}

.fade-in-up-h {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 3s, transform 3s;
}

.fade-in-up-h.is-in-view {
	opacity: 1;
	transform: translateY(0);
}

.fade-in-down {
	opacity: 0;
	transform: translateY(-24px);
	transition: opacity 1s, transform 1s;
}

.fade-in-down.is-in-view {
	opacity: 1;
	transform: translateY(0);
}

.fade-in-slide-l {
	opacity: 0;
	transform: translateX(-300px);
	transition: opacity 1s, transform 2s;
}

.fade-in-slide-l.is-in-view {
	opacity: 1;
	transform: translateY(0);
}

.fade-in-slide-r {
	opacity: 0;
	transform: translateX(100px);
	transition: opacity 1s, transform 2s;
}

.fade-in-slide-r.is-in-view {
	opacity: 1;
	transform: translateY(0);
}

.shrink-image {
	height: 100%; /* 縮小アニメーションの設定 */
	transform-origin: center;
	transition: transform 1s ease-in-out;
	width: 100%; /* 縮小の中心点を中央に設定 */
}

.shrink-image.shrink {
	transform: scale(1.3); /* 80% まで縮小 */
}

.delay-1 {
	transition-delay: 0.1s;
}

.delay-2 {
	transition-delay: 0.2s;
}

.delay-3 {
	transition-delay: 0.3s;
}

.delay-4 {
	transition-delay: 0.4s;
}

.delay-5 {
	transition-delay: 0.5s;
}

.fade-in {
	opacity: 0;
	transition: opacity 0.8s ease;
}

.fade-in.is-in-view {
	opacity: 1;
}

.scale-in {
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.is-in-view {
	opacity: 1;
	transform: scale(1);
}

.c-btn {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.c-btn:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transform: translateY(-3px);
}

.img-hover {
	overflow: hidden;
}

.img-hover img {
	transition: transform 0.5s ease;
}

.img-hover:hover img {
	transform: scale(1.05);
}

.scroll-down {
	bottom: 35%;
	padding-left: 140px;
	position: absolute;
	right: 50%;
	transform: translateX(-50%);
	transform: rotateZ(-90deg);
	transform-origin: right bottom;
	z-index: 201;
}

.scroll-down__line {
	height: 0px;
	position: absolute;
	right: 45%;
	top: 45%;
	width: 160px;
}

.scroll-down__line:after {
	border-bottom: 2px solid #fff;
	content: "";
	display: block;
	height: 0;
	opacity: 0;
	width: 100%;
}

.scroll-down__text {
	color: #fff;
	font-family: "Replica-Bold", sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	line-height: 1;
	overflow: hidden;
	text-transform: uppercase;
}

.scroll-down__text span {
	display: block;
}

.scroll-down.is-active.is-inview .scroll-down__text span {
	transform: none;
}

.scroll-down.is-active.is-inview .scroll-down__line {
	animation: scroll-down-line 2.5s infinite 851ms;
}

.scroll-down.is-active.is-inview .scroll-down__line:after {
	opacity: 1;
	transform: none;
}

.is-body-touch .scroll-down {
	display: none;
}

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

.u-is-pc {
	display: none;
}

}

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

.l-inner {
	padding: 0 20px;
}

.c-btn {
	font-size: 20px;
}

.drawer-content__btn {
	font-size: 0.9rem;
}

.mb {
	margin-bottom: 60px;
}

.p-contact-cta .c-btn {
	border-radius: 50px;
	max-width: 325px;
	text-align: left;
}

.p-contact-cta .c-btn::before {
	right: 45px;
	width: 40px;
}

.submit-btn input[type=submit] {
	width: 100%;
}

.m_404 .entry-404-btn .btn {
	max-width: 280px;
	width: 100%;
}

.header .header__inner {
	height: 50px;
	padding: 11px 20px;
}

.header .header__inner .p-header__logo a img {
	width: 190px;
}

.header .header__inner .header__top-row {
	display: none;
}

.header .header__inner .header__contact-info {
	display: none;
}

.header .header__inner .header__nav {
	display: none;
}

.header .header__inner .drawer-icon {
	display: block;
	z-index: 1009;
}

.drawer-overlay {
	display: block;
	pointer-events: none;
}

.drawer-content {
	display: block;
	width: 85%;
}

.drawer-content .drawer-content__menu .drawer-content__item .drawer-content__link {
	font-size: 0.875rem;
}

.privacy .privacy-title {
	font-size: 13px;
	margin-bottom: 30px;
}

.privacy .privacy-content {
	margin-top: 0;
	padding: 30px 25px;
}

.privacy .privacy-content .privacy-content-description {
	font-size: 13px;
	margin-bottom: 30px;
}

.privacy .privacy-content .section-title {
	font-size: 1.1rem;
	margin: 40px 0 15px;
}

.privacy .privacy-content p {
	font-size: 13px;
	line-height: 1.9;
	margin-bottom: 12px;
}

.privacy .privacy-content p.indent {
	margin-bottom: 8px;
	margin-left: 1.5em;
}

.privacy .privacy-content p.indent-sub {
	margin-bottom: 6px;
	margin-left: 3em;
}

.privacy .privacy-content .contact-box {
	padding: 20px;
}

.fv {
	margin-top: 50px;
}

.fv .p-fv-content .p-fv-content__items .p-fv-content__items-message .p-fv-content__items-message-title {
	font-size: 5.1vw;
	left: 20px;
	right: 20px;
	top: 50px;
}

.fv .p-fv-content .p-fv-content__items .p-fv-content__items-message .p-fv-content__items-message-title span {
	font-size: 6.1vw;
}

.fv .p-fv-content .p-fv-content__items .p-fv-content__items-message-title-sub {
	bottom: 45%;
	font-size: 3.6vw;
	left: 20px;
	max-width: none;
	right: 20px;
}

.fv .p-fv-content .p-fv-content__items .p-fv-content__items-img {
	margin-left: calc(50% - 50vw);
	width: 100vw;
}

.p-strengths {
	padding: 60px 0;
}

.p-strengths__inner {
	padding: 0 20px;
}

.p-strengths__title {
	font-size: 1.5rem;
	margin-bottom: 55px;
}

.p-strengths__items {
	flex-direction: column;
	gap: 50px;
}

.p-strengths__item {
	padding: 25px;
}

.p-strengths__item-number {
	font-size: 3.75rem;
	top: -57px;
}

.p-strengths__item-img img {
	width: 70%;
}

.p-strengths__item-description {
	font-size: 0.9rem;
}

.p-strengths__item-btn {
	margin: 15px auto 25px;
	padding: 10px 35px;
}

.p-strengths__btn-wrapper {
	margin-top: 40px;
}

.p-strengths__btn {
	font-size: 14px;
	padding: 12px 50px;
}

.p-company {
	padding: 40px 20px 20px;
}

.p-company__name {
	font-size: 24px;
	margin-bottom: 50px;
}

.p-company__table-wrapper {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	padding: 40px 20px;
}

.p-company__table th,
.p-company__table td {
	font-size: 14px;
	padding: 14px 12px;
}

.p-company-map {
	padding: 60px 20px;
}

.p-company-map__title {
	font-size: 1.25rem;
	margin-bottom: 30px;
}

.p-company-map__content {
	flex-direction: column;
	gap: 55px;
	position: relative;
}

.p-company-map__iframe {
	height: 300px;
	width: 100%;
}

.p-company-map__info {
	height: auto;
}

.p-company-map__name {
	font-size: 1.25rem;
}

.p-company-map__link {
	border-radius: 4px;
	color: #1B476B;
	font-size: 0.875rem;
	margin-top: 0;
	padding: 8px 12px;
	position: absolute;
	right: 0;
	top: 300px;
}

.p-company-map__link::after {
	background: url("../img/arrow.png") no-repeat center/contain;
}

.p-qa {
	padding: 60px 0;
}

.p-qa__inner {
	padding: 0 20px;
}

.p-qa__title {
	font-size: 1.5rem;
	margin-bottom: 30px;
}

.p-qa__items {
	gap: 20px;
}

.p-qa__question-wrapper {
	gap: 12px;
}

.p-qa__question {
	gap: 10px;
	padding: 16px;
}

.p-qa__question-label {
	font-size: 1rem;
}

.p-qa__question-text {
	font-size: 1rem;
	line-height: 1.2;
}

.p-qa__toggle {
	height: 32px;
	padding-right: 16px;
	width: 32px;
}

.p-qa__toggle-icon {
	height: 16px;
	width: 16px;
}

.p-qa__toggle-icon::before {
	width: 16px;
}

.p-qa__toggle-icon::after {
	height: 16px;
}

.p-qa__answer {
	align-items: center;
	gap: 12px;
	padding: 0 16px;
}

.p-qa__item.is-open .p-qa__answer {
	padding: 16px;
}

.p-qa__answer-label {
	font-size: 1rem;
}

.p-qa__answer-text {
	font-size: 0.9rem;
	padding-top: 4px;
}

.p-column {
	padding: 35px 0;
}

.p-column__inner {
	padding: 0 20px;
}

.p-column__header {
	margin-bottom: 40px;
}

.p-column__title {
	font-size: 1.5rem;
	margin-bottom: 30px;
}

.p-column__items {
	gap: 30px;
	grid-template-columns: 1fr;
}

.p-column__item-title {
	font-size: 0.9rem;
}

.p-column__btn-wrapper {
	margin-top: 40px;
}

.p-column__pagination {
	margin-top: 40px;
}

.container {
	margin: 120px auto 0;
}

.sidebar {
	margin-bottom: 40px;
}

article.post {
	margin-bottom: 0;
}

.container {
	flex-direction: column;
	gap: 48px;
}

.content,
.sidebar {
	width: 100%;
}

.entry-title {
	font-size: 22px;
}

.p-about::before {
	height: 160px;
	right: 15px;
	top: 22px;
	width: 130px;
}

.p-about::after {
	bottom: 0;
	height: 160px;
	left: 15px;
	width: 130px;
}

.p-about {
	padding: 60px 0;
}

.p-about__inner {
	padding: 0 20px;
}

.p-about__title {
	font-size: 1.5rem;
	margin-bottom: 30px;
}

.p-about__content {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.p-about__content-message {
	order: 1;
}

.p-about__content-title {
	margin-bottom: 0;
}

.p-about__content-title h3 {
	font-size: 1.5rem;
}

.p-about__content-title p {
	font-size: 0.875rem;
}

.p-about__content-btn {
	margin-top: 0;
	order: 3;
	text-align: center;
}

.p-about__content-img {
	order: 2;
	text-align: center;
}

.p-about__content-img img {
	width: 100%;
}

.p-contact-form__title {
	font-size: 1.25rem;
	margin-bottom: 30px;
	margin-top: 12px;
}

.p-contact-form__subtitle {
	font-size: 0.875rem;
	margin-bottom: 30px;
}

.contactForm {
	padding: 45px 20px;
}

.label {
	font-size: 14px;
	width: 100%;
}

.label_tag {
	font-size: 8px;
	padding: 3px 7px;
}

input[type=text],
input[type=email],
input[type=tel] {
	font-size: 14px;
	height: 50px;
}

textarea {
	font-size: 14px;
	height: 160px;
	width: 100%;
}

.contact_item-information {
	font-size: 14px;
}

.wpcf7-acceptance .wpcf7-list-item-label {
	font-size: 14px;
}

.p-contact-cta {
	padding: 60px 0;
}

.p-contact-cta__inner {
	padding: 0 20px;
}

.p-contact-cta__title {
	font-size: 1.5rem;
}

.p-contact-cta__description {
	font-size: 0.9rem;
	margin-bottom: 30px;
}

.p-contact-cta__buttons {
	display: block;
	padding: 24px 20px;
}

.p-contact-cta__tel-wrapper {
	align-items: stretch;
	flex-direction: column;
	gap: 0;
	margin-bottom: 32px;
	text-align: left;
}

.p-contact-cta__tel {
	font-size: 44px;
}

.p-contact-cta__business-hours span {
	font-size: 16px;
}

.p-thanks-page .p-thanks {
	padding: 80px 20px 100px;
}

.p-thanks-page .p-thanks__title {
	font-size: 22px;
	margin-bottom: 24px;
}

.p-thanks-page .p-thanks__line {
	margin-bottom: 30px;
}

.p-thanks-page .p-thanks__message {
	font-size: 14px;
	margin-bottom: 30px;
}

.p-thanks-page .p-thanks__note {
	font-size: 13px;
	margin-bottom: 30px;
}

.p-thanks-page .p-thanks__company {
	font-size: 16px;
	margin-bottom: 30px;
}

.p-thanks-page .p-thanks__btn-link {
	font-size: 15px;
	max-width: 300px;
	padding: 17px 40px;
	width: 100%;
}

.m_404 .entry-404 {
	padding: 56px 24px;
}

.m_404 .entry-404-head {
	font-size: 22px;
}

.m_404 .entry-404-head span {
	font-size: 72px;
}

.m_404 .entry-404-lead {
	font-size: 18px;
}

.m_404 .entry-404-content {
	font-size: 15px;
}

.p-footer {
	padding: 60px 0;
}

.p-footer__inner {
	padding: 0 25px;
}

.p-footer__top {
	display: block;
	gap: 30px;
	padding-bottom: 30px;
}

.p-footer__logo {
	margin-bottom: 60px;
}

.p-footer__logo a img {
	height: auto;
	width: 280px;
}

.p-footer__bottom {
	align-items: flex-start;
	flex-direction: column;
	gap: 10px;
}

.p-footer__privacy a {
	font-size: 0.75rem;
}

.p-footer__copyright {
	font-size: 0.625rem;
}

.p-footer__nav-list {
	display: grid;
	gap: 32px 50px;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 40px;
}

.p-profile {
	padding: 15px 20px 65px;
}

.p-profile__content {
	flex-direction: column;
	gap: 30px;
}

.p-profile__message {
	font-size: 24px;
	margin: 0 0 35px;
}

.p-profile__img {
	flex: none;
	width: 100%;
}

.p-profile__position {
	font-size: 16px;
}

.p-profile__name {
	font-size: 24px;
}

.p-profile-message {
	padding: 60px 20px;
}

.p-profile-message__text {
	padding: 20px;
}

.p-profile-message__text p {
	font-size: 14px;
}

.p-profile-message__highlight {
	font-size: 20px !important;
}

.p-profile-career {
	padding: 60px 20px;
}

.p-profile-career__title {
	font-size: 1.25rem;
	margin-bottom: 30px;
}

.p-profile-career__item {
	flex-direction: column;
	gap: 15px;
	padding: 20px;
}

.p-profile-career__item dt {
	flex: none;
}

.p-profile-career__item dd ul li {
	font-size: 0.875rem;
}

.p-sub-fv {
	margin-top: 50px;
}

.p-sub-fv__title {
	font-size: 30px;
}

.p-sub-fv__subtitle {
	font-size: 14px;
	margin-top: 10px;
}

.p-breadcrumb {
	padding: 15px 0;
}

.p-breadcrumb__inner {
	padding: 0 20px;
}

.p-breadcrumb__item {
	font-size: 12px;
}

.p-breadcrumb__link img {
	width: 16px;
}

.p-service-page .p-sub-fv__title {
	font-size: 24px;
	line-height: 1.6;
	white-space: nowrap;
	width: 100%;
}

.p-service-intro__inner {
	padding: 0 20px;
}

.p-service-intro__title {
	font-size: 22px;
	margin-bottom: 40px;
}

.p-service-intro__cards {
	flex-direction: column;
	gap: 50px;
}

.p-service-intro__card {
	padding: 20px 16px;
}

.p-service-intro__card-number {
	font-size: 50px;
	top: -25px;
}

.p-service-intro__card-img img {
	width: 70%;
}

.p-service-intro__card-title {
	font-size: 18px;
}

.p-service-intro__card-text {
	font-size: 14px;
}

.p-service-features {
	padding: 80px 0 60px;
}

.p-service-features__inner {
	padding: 0 20px;
}

.p-service-features__block {
	border-radius: 20px;
	margin-bottom: 70px;
	padding: 40px 20px;
	width: 100%;
}

.p-service-features__content {
	flex-direction: column !important;
	gap: 30px;
}

.p-service-features__number--right {
	justify-content: flex-start;
	padding-left: 0;
}

.p-service-features__number {
	margin-bottom: 16px;
	margin-top: -74px;
}

.p-service-features__number-label {
	font-size: 36px;
}

.p-service-features__number-value {
	font-size: 70px;
}

.p-service-features__heading {
	font-size: 22px;
	margin-bottom: 16px;
}

.p-service-features__body p {
	font-size: 15px;
	margin-bottom: 12px;
}

.p-service-features__img {
	width: 100%;
}

.p-service-compare {
	padding: 60px 0;
}

.p-service-compare__inner {
	padding: 0 20px;
}

.p-service-compare__title {
	font-size: 22px;
	margin-bottom: 20px;
}

.p-service-compare__description {
	font-size: 14px;
	margin-bottom: 30px;
	text-align: left;
}

.p-service-compare__items {
	flex-direction: column;
	gap: 40px;
}

.p-service-compare__item-title {
	font-size: 18px;
}

.p-service-compare__item-text {
	font-size: 14px;
}

.p-service-list {
	padding: 60px 0;
}

.p-service-list__inner {
	padding: 0 20px;
}

.p-service-list__title {
	font-size: 22px;
	margin-bottom: 40px;
}

.p-service-list__grid {
	gap: 30px;
	grid-template-columns: 1fr;
}

.p-service-list__card-body {
	padding: 20px 16px 24px;
}

.p-service-list__card-title {
	font-size: 18px;
}

.p-service-list__card-text {
	font-size: 14px;
}

.p-service {
	padding: 60px 0;
}

.p-service__inner {
	padding: 0 20px;
}

.p-service__title {
	font-size: 1.5rem;
	margin-bottom: 30px;
}

.p-service__description {
	font-size: 0.875rem;
	margin-bottom: 30px;
	text-align: left;
	text-align: justify;
}

.p-service__subtitle {
	font-size: 1.3rem;
	padding: 0 10px;
}

.p-service__subtitle-primary {
	font-size: 1.4rem;
}

.p-service__subtitle-conjunction {
	font-size: 1.4rem;
}

.p-service__items {
	flex-direction: column;
	gap: 30px;
}

.p-service__item {
	padding: 40px 0 0;
}

.p-service__item-title {
	font-size: 1.5rem;
}

.p-service__item-description {
	font-size: 0.9rem;
}

.p-service__btn-wrapper {
	margin-top: 40px;
}

.p-service-old {
	margin: 1vh auto 0;
	text-align: center;
}

.p-service-old .p-service-content {
	display: grid;
	grid-template-areas: "title" "text" "imgf" "sub" "imgs";
	grid-template-columns: 1fr;
	padding: 50px 0 70px;
	row-gap: 0;
	text-align: center;
}

.p-service-old .p-service-content .p-service-content__message {
	display: contents;
}

.p-service-old .p-service-content .p-service-content__message {
	width: 100%;
}

.p-service-old .p-service-content .p-service-content__message .p-service-title {
	font-size: 2rem;
}

.p-service-old .p-service-content .p-service-content__message .p-service-message__text {
	font-size: 1.1rem;
	margin-top: 20px;
}

.p-service-old .p-service-content .p-service-content__message .p-service-message__text-sub {
	color: #fff;
	font-size: 0.9rem;
	letter-spacing: 1px;
	margin: 20px 0 10px;
	padding: 0 20px;
}

.p-service-old .p-service-content .p-service-content__message .p-service-content__img-s {
	margin: 20px 0 20px auto;
	width: 80%;
}

.p-service-old .p-service-content .p-service-content__img-f {
	margin: 20px 0;
	width: 80%;
}

.p-service-old .p-service-content .p-service-title {
	grid-area: title;
}

.p-service-old .p-service-content .p-service-message__text {
	grid-area: text;
}

.p-service-old .p-service-content .p-service-content__img-f {
	grid-area: imgf;
}

.p-service-old .p-service-content .p-service-message__text-sub {
	grid-area: sub;
}

.p-service-old .p-service-content .p-service-content__img-s {
	grid-area: imgs;
}

.p-service-content__sec {
	bottom: -1520px;
	padding: 550px 0 50px;
}

.p-service-content__sec .p-service-content__sec-title {
	font-size: clamp(14px, 7vw, 10rem);
}

.p-service-content__sec .p-service-content__sec-items {
	display: block;
}

.p-service-content__sec .p-service-content__sec-items .p-service-content__sec-items-item {
	margin-bottom: 50px;
	width: 100%;
}

.p-service-content__sec .p-service-content__sec-items .p-service-content__sec-items-item:last-child {
	margin-bottom: 0;
}

.p-service-content__sec .p-service-content__sec-items .p-service-content__sec-items-item a .p-service-content__sec-items-item-text {
	text-align: left;
}

.p-service-content__sec .p-service-content__sec-items-item-side {
	font-size: 4rem;
	margin-top: 30px;
}

.p-business {
	padding: 30px 0 60px;
}

.p-business__inner {
	padding: 0 20px;
}

.p-business__filter {
	gap: 8px;
	margin-bottom: 30px;
}

.p-business__filter-btn {
	font-size: 13px;
	padding: 6px 14px;
}

.p-business__items {
	gap: 20px;
	grid-template-columns: 1fr;
}

.p-business__link {
	padding: 20px;
}

.p-business__category {
	font-size: 12px;
	margin-bottom: 12px;
}

.p-business__item-title {
	font-size: 15px;
	margin-bottom: 16px;
}

.p-business__pagination {
	margin-top: 40px;
}

body.single-business .p-breadcrumb {
	margin-top: 95px;
}

body.single-business .content {
	padding: 20px;
}

.p-faq {
	padding: 30px 0 60px;
}

.p-faq__inner {
	padding: 0 20px;
}

.p-faq__category {
	margin-bottom: 40px;
}

.p-faq__category-title {
	font-size: 18px;
	margin-bottom: 16px;
	padding-bottom: 10px;
}

.u-is-sp {
	display: none;
}

.scroll-down {
	bottom: -220px;
	right: 5%;
}

.scroll-down__line {
	width: 130px;
}

.scroll-down__line:after {
	border-bottom: 2px solid #000;
	width: 80%;
}

.scroll-down__text {
	color: #000;
	font-size: 0.8rem;
}

}

@keyframes marquee {

0% {
	transform: translateX(0);
}

100% {
	transform: translateX(-50%);
}

}

@keyframes scroll-down-line {

0% {
	transform: scale(1, 1);
	transform-origin: 0% 40%;
}

20% {
	transform: scale(0.001, 1);
	transform-origin: 0% 40%;
}

20.01% {
	transform-origin: 100% 50%;
}

38% {
	transform: scale(1, 1);
	transform-origin: 100% 50%;
}

}

