/*==========================================================================
# 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;
	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;
	vertical-align: bottom;
}

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

.wrapper {
	color: #333;
	font-family: "Noto Sans", sans-serif;
	font-weight: 500;
	line-height: 1;
	margin: 0 auto;
	max-width: 100%;
}

.inner {
	margin: 0 auto;
	max-width: 100%;
	padding-inline: 3rem;
	width: 1200px;
}

.sp_only {
	display: none;
}

img {
	display: block;
	height: auto;
	width: 100%;
}

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

a:hover {
	opacity: 0.8;
}

html {
	font-size: 10px;
	scroll-behavior: smooth;
}

.dn {
	display: none !important;
}

.bg-color {
	background: linear-gradient(90deg, rgba(44, 44, 194, 0.06) 22%, rgba(18, 199, 252, 0.06) 100%);
}

.lower-bg {
	background: #037EE1;
}

.hover-float {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-float:hover {
	box-shadow: 0px 8px 15px -1px rgba(0, 0, 0, 0.15);
	transform: translateY(-5px);
}

.card-hover {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
	box-shadow: 0px 8px 20px -1px rgba(0, 0, 0, 0.2);
	transform: translateY(-5px);
}

.link-hover {
	position: relative;
}

.link-hover::after {
	background-color: currentColor;
	bottom: -2px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transition: width 0.3s ease;
	width: 0;
}

.link-hover:hover::after {
	width: 100%;
}

.js-scroll-fade {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-scroll-fade.is-visible {
	opacity: 1;
	transform: translateY(0);
}

body:not(.is-loaded) .fade-in-load {
	opacity: 0;
}

body.is-loaded .fade-in-load {
	opacity: 1;
	transition: opacity 1s ease, transform 1s ease;
}

.pulse-animation {
	animation: pulse 2s infinite ease-in-out;
}

.page__contents {
	margin: 50px 0;
	margin: 5rem 0;
}

.page__wrapper {
	line-height: 1.75;
	margin: 0 auto;
	max-width: 100%;
	width: 1200px; /* Begin bidirectionality settings (do not change) */
}

.page__wrapper html,
.page__wrapper address,
.page__wrapper blockquote,
.page__wrapper body,
.page__wrapper dd,
.page__wrapper div,
.page__wrapper dl,
.page__wrapper dt,
.page__wrapper fieldset,
.page__wrapper form,
.page__wrapper frame,
.page__wrapper frameset,
.page__wrapper h1,
.page__wrapper h2,
.page__wrapper h3,
.page__wrapper h4,
.page__wrapper h5,
.page__wrapper h6,
.page__wrapper noframes,
.page__wrapper ol,
.page__wrapper p,
.page__wrapper ul,
.page__wrapper center,
.page__wrapper dir,
.page__wrapper hr,
.page__wrapper menu,
.page__wrapper pre {
	display: block;
	unicode-bidi: embed;
}

.page__wrapper li {
	display: list-item;
}

.page__wrapper head {
	display: none;
}

.page__wrapper table {
	display: table;
}

.page__wrapper tr {
	display: table-row;
}

.page__wrapper thead {
	display: table-header-group;
}

.page__wrapper tbody {
	display: table-row-group;
}

.page__wrapper tfoot {
	display: table-footer-group;
}

.page__wrapper col {
	display: table-column;
}

.page__wrapper colgroup {
	display: table-column-group;
}

.page__wrapper td,
.page__wrapper th {
	display: table-cell;
}

.page__wrapper caption {
	display: table-caption;
}

.page__wrapper th {
	font-weight: bolder;
	text-align: center;
}

.page__wrapper caption {
	text-align: center;
}

.page__wrapper body {
	margin: 8px;
}

.page__wrapper h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

.page__wrapper h2 {
	font-size: 1.5em;
	margin: 0.75em 0;
}

.page__wrapper h3 {
	font-size: 1.17em;
	margin: 0.83em 0;
}

.page__wrapper h4,
.page__wrapper p,
.page__wrapper blockquote,
.page__wrapper ul,
.page__wrapper fieldset,
.page__wrapper form,
.page__wrapper ol,
.page__wrapper dl,
.page__wrapper dir,
.page__wrapper menu {
	margin: 1.12em 0;
}

.page__wrapper h5 {
	font-size: 0.83em;
	margin: 1.5em 0;
}

.page__wrapper h6 {
	font-size: 0.75em;
	margin: 1.67em 0;
}

.page__wrapper h1,
.page__wrapper h2,
.page__wrapper h3,
.page__wrapper h4,
.page__wrapper h5,
.page__wrapper h6,
.page__wrapper b,
.page__wrapper strong {
	font-weight: bolder;
}

.page__wrapper blockquote {
	margin-left: 40px;
	margin-right: 40px;
}

.page__wrapper i,
.page__wrapper cite,
.page__wrapper em,
.page__wrapper var,
.page__wrapper address {
	font-style: italic;
}

.page__wrapper pre,
.page__wrapper tt,
.page__wrapper code,
.page__wrapper kbd,
.page__wrapper samp {
	font-family: monospace;
}

.page__wrapper pre {
	white-space: pre;
}

.page__wrapper button,
.page__wrapper textarea,
.page__wrapper input,
.page__wrapper select {
	display: inline-block;
}

.page__wrapper big {
	font-size: 1.17em;
}

.page__wrapper small,
.page__wrapper sub,
.page__wrapper sup {
	font-size: 0.83em;
}

.page__wrapper sub {
	vertical-align: sub;
}

.page__wrapper sup {
	vertical-align: super;
}

.page__wrapper table {
	border-spacing: 2px;
}

.page__wrapper thead,
.page__wrapper tbody,
.page__wrapper tfoot {
	vertical-align: middle;
}

.page__wrapper td,
.page__wrapper th,
.page__wrapper tr {
	vertical-align: inherit;
}

.page__wrapper s,
.page__wrapper strike,
.page__wrapper del {
	text-decoration: line-through;
}

.page__wrapper hr {
	border: 1px inset;
}

.page__wrapper ol,
.page__wrapper ul,
.page__wrapper dir,
.page__wrapper menu,
.page__wrapper dd {
	margin-left: 40px;
}

.page__wrapper ol {
	list-style-type: decimal;
}

.page__wrapper ol ul,
.page__wrapper ul ol,
.page__wrapper ul ul,
.page__wrapper ol ol {
	margin-bottom: 0;
	margin-top: 0;
}

.page__wrapper u,
.page__wrapper ins {
	text-decoration: underline;
}

.page__wrapper br:before {
	content: "\a";
	white-space: pre-line;
}

.page__wrapper center {
	text-align: center;
}

.page__wrapper :link,
.page__wrapper :visited {
	text-decoration: underline;
}

.page__wrapper :focus {
	outline: thin dotted invert;
}

.page__wrapper BDO[DIR=ltr] {
	direction: ltr;
	unicode-bidi: bidi-override;
}

.page__wrapper BDO[DIR=rtl] {
	direction: rtl;
	unicode-bidi: bidi-override;
}

.page__wrapper *[DIR=ltr] {
	direction: ltr;
	unicode-bidi: embed;
}

.page__wrapper *[DIR=rtl] {
	direction: rtl;
	unicode-bidi: embed;
}

.page__wrapper ul li {
	list-style-type: disc !important;
}

.page__wrapper ol li {
	list-style-type: decimal !important;
}

.header {
	color: #FFFFFF;
	left: 0;
	position: fixed;
	top: 0;
	transition: background-color 0.3s, box-shadow 0.3s;
	width: 100%;
	z-index: 100;
}

.header.is-scrolled {
	background-color: #037EE1;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header__inner {
	align-items: center;
	display: flex;
	height: 7.5rem;
	justify-content: space-between;
	margin: 0 auto;
	margin-left: 6rem;
}

.header__logo {
	color: #FFFFFF;
	font-size: 2.4rem;
	font-weight: 500;
	letter-spacing: 0.07em;
	line-height: 1.25;
}

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

.header__menu-item {
	margin-left: 5rem;
}

.header__menu-item:first-child {
	margin-left: 0;
}

.header__menu-item--contact {
	align-items: center;
	background-color: #2C2CC2;
	display: flex;
	height: 7.5rem;
	justify-content: center;
	width: 20.7rem;
}

.header__menu-link {
	color: #FFFFFF;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	line-height: 1.33;
	text-decoration: none;
	transition: opacity 0.3s;
}

.header__menu-link:hover {
	opacity: 0.7;
}

.header__menu-link--contact {
	align-items: center;
	display: flex;
	justify-content: center;
}

.header__contact-icon {
	display: inline-block;
	height: 1.9rem;
	margin-right: 1rem;
	width: 2.5rem;
}

.header__icon {
	height: auto;
}

.header__contact-text {
	color: #FFFFFF;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	line-height: 1.33;
}

.header__hamburger {
	background: transparent;
	border: none;
	cursor: pointer;
	display: none;
	height: 2.5rem;
	margin-right: 2rem;
	position: relative;
	width: 3rem;
	z-index: 10;
}

.header__hamburger-line {
	background-color: #FFFFFF;
	height: 0.2rem;
	left: 0;
	position: absolute;
	transition: transform 0.3s;
	width: 100%;
}

.header__hamburger-line:nth-child(1) {
	top: 0;
}

.header__hamburger-line:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

.header__hamburger-line:nth-child(3) {
	bottom: 0;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
	transform: translateY(1.1rem) rotate(45deg);
}

.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
	opacity: 0;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
	transform: translateY(-1.1rem) rotate(-45deg);
}

.header__sp-menu {
	background-color: rgba(0, 0, 0, 0.9);
	display: none;
	height: 100vh;
	left: 0;
	padding-top: 8rem;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9;
}

.header__sp-menu.is-active {
	display: block;
}

.header__sp-list {
	padding: 0 2rem;
}

.header__sp-item {
	margin-top: 3rem;
	text-align: center;
}

.header__sp-item:first-child {
	margin-top: 0;
}

.header__sp-link {
	color: #FFFFFF;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	line-height: 1.5;
	text-decoration: none;
}

/* ========================================
# メインビジュアル
======================================== */

.fv {
	height: 100rem;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.fv__mv {
	height: 100%;
	position: relative;
	width: 100%;
}

.fv__background {
	background-image: url("../img/fv-background-p.webp");
	background-position: center;
	background-size: cover;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

.fv__polygon {
	background-image: url("../img/fv-polygon-p.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0;
	height: 95.3rem;
	left: 0;
	position: absolute;
	width: 59.9rem;
	z-index: 2;
}

.fv__create-tomorrow {
	bottom: 6.5rem;
	color: rgba(255, 255, 255, 0.3);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 0.71;
	position: absolute;
	right: -5.5rem;
	z-index: 3;
}

.fv__title {
	color: #FFFFFF;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 6.4rem;
	font-weight: 500;
	left: 9.2rem;
	letter-spacing: 0.07em;
	line-height: 1.56;
	position: absolute;
	text-shadow: 4px 4px 4px rgba(1, 82, 160, 0.6);
	top: 53.1rem;
	z-index: 4;
}

.fv__scroll {
	align-items: center;
	bottom: -5rem;
	display: flex;
	flex-direction: column;
	height: 17.4rem;
	left: 9.9rem;
	position: absolute;
	width: 4.2rem;
	z-index: 4;
}

.fv__scroll-text {
	color: #FFFFFF;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.07em;
	line-height: 1;
	margin-bottom: 1rem;
}

.fv__scroll-line {
	background-color: rgba(255, 255, 255, 0.3);
	height: 10rem;
	position: relative;
	width: 0.1rem;
}

.fv__scroll-line::after {
	animation: scrollDown 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
	background-color: #FFFFFF;
	content: "";
	height: 40%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

/* ========================================
# セクションタイトルのアニメーション
======================================== */

.section-title .section-title__en {
	transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.section-title .section-title__ja {
	transition: transform 0.5s ease-out 0.2s, opacity 0.5s ease-out 0.2s;
}

.section-title.aos-animate .section-title__en {
	opacity: 1;
	transform: translateY(0);
}

.section-title.aos-animate .section-title__ja {
	opacity: 1;
	transform: translateY(0);
}

/* ========================================
# お悩み
======================================== */

.trouble {
	padding-bottom: 10rem;
	padding-top: 10rem;
	position: relative;
}

.trouble .section-title {
	margin: 0 auto;
	text-align: center;
}

.trouble__content {
	height: 38.3rem;
	margin-top: 9rem;
	position: relative;
	width: 100%;
}

.trouble__bg {
	background: linear-gradient(90deg, #2C2CC2 21.99%, #12C7FC 100%);
	height: 29.4rem;
	left: 0;
	position: absolute;
	top: 8.9rem;
	width: 100%;
	z-index: 1;
}

.trouble__people {
	display: grid;
	gap: 4rem;
	grid-template-columns: repeat(4, 1fr);
	margin: 0 auto;
	max-width: 960px;
	position: relative;
	z-index: 2;
}

.trouble__person-text {
	color: #FFFFFF;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	line-height: 1.67;
	margin-top: 2rem;
	text-align: center;
}

/* ========================================
# 私たちについて
======================================== */

.about {
	overflow: hidden;
	padding-bottom: 8rem;
	padding-top: 2rem;
	position: relative;
}

.about .section-title {
	margin: 0 auto;
	text-align: center;
}

.about__content {
	background: url("../img/about-bg-p.webp") no-repeat center center/cover;
}

.about__content .inner {
	display: grid;
	gap: 6rem;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 7rem;
	padding-bottom: 4rem;
	padding-top: 11rem;
}

.about__image-wrapper {
	overflow: hidden;
}

.about__image {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.about__text {
	width: 51rem;
}

.about__text p {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
}

/* ========================================
# 私たちが選ばれる理由
======================================== */

.reason {
	color: #FFFFFF;
	padding-bottom: 24rem;
	padding-top: 4rem;
	position: relative;
}

.reason .section-title {
	margin: 0 auto;
	position: relative;
	text-align: center;
	z-index: 2;
}

.reason__bg {
	background: url("../img/reason-bg-j.webp") no-repeat center center/cover;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 0;
}

.reason__cards {
	display: flex;
	gap: 2.5rem;
	justify-content: space-between;
	margin-top: 20rem;
	position: relative;
	z-index: 2;
}

.reason__card {
	align-items: center;
	background-color: #FFFFFF;
	border-radius: 1.9rem;
	box-shadow: 0px 4px 15px -1px rgba(0, 0, 0, 0.16);
	display: flex;
	flex-direction: column;
	padding: 4rem 3rem 7rem;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: calc((100% - 5rem) / 3);
}

.reason__card:hover {
	box-shadow: 0px 8px 20px -1px rgba(0, 0, 0, 0.2);
	transform: translateY(-5px);
}

.reason__card-number {
	left: 0rem;
	position: absolute;
	top: -8rem;
	width: 9.1rem;
	z-index: 2;
}

.reason__card-icon {
	align-items: center;
	background-color: #2269D9;
	border-radius: 50%;
	display: flex;
	height: 22.2rem;
	justify-content: center;
	margin-bottom: 2rem;
	width: 22.2rem;
}

.reason__card-icon-img {
	height: auto;
	width: 50%;
}

.reason__card-title {
	color: #2269D9;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	line-height: 2;
	margin-bottom: 1rem;
	text-align: center;
}

.reason__card-text {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: 0.07em;
	line-height: 2;
	margin-top: 2rem;
	text-align: left;
}

/* ========================================
# 法人のお客様
======================================== */

.corporate {
	background-color: #FFFFFF;
	padding-top: 0rem;
	position: relative;
}

.corporate .section-title {
	margin: 0 auto;
	position: relative;
	text-align: center;
	z-index: 2;
}

.corporate__cards {
	background: url("../img/about-bg-p.webp") no-repeat center center/cover;
	padding-bottom: 6.8rem;
}

.corporate__cards .inner {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
	justify-content: center;
	padding-top: 9rem;
}

.corporate__card {
	align-items: center;
	background-color: #FFFFFF;
	border-radius: 1rem;
	box-shadow: 4px 4px 11px 0px rgba(0, 0, 0, 0.25);
	display: flex;
	flex-direction: column;
	padding: 4.1rem 2rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: calc((100% - 9rem) / 4);
}

.corporate__card:hover {
	box-shadow: 6px 6px 15px 0px rgba(0, 0, 0, 0.3);
	transform: translateY(-5px);
}

.corporate__card-icon {
	align-items: center;
	display: flex;
	height: 14rem;
	justify-content: center;
	margin-bottom: 2rem;
	width: 14rem;
}

.corporate__card-icon-img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.corporate__card-title {
	color: #2269D9;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	line-height: 1.45;
	text-align: center;
}

.corporate__contact {
	align-items: center;
	background: linear-gradient(90deg, #2C2CC2 21.99%, #12C7FC 100%);
	display: flex;
	height: 6rem;
	justify-content: center;
	margin: 6rem auto 0;
	padding-inline: 2.3rem;
	position: relative;
	width: 25.7rem;
}

.corporate__contact-link {
	color: #FFFFFF;
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
	height: 100%;
	letter-spacing: 0.1em;
	line-height: 1.45;
	padding-top: 1.8rem;
	width: 100%;
}

.corporate__contact-arrow {
	background-color: #FFFFFF;
	height: 0.2rem;
	position: absolute;
	right: 0rem;
	top: 50%;
	transform: translateY(-50%);
	transition: width 0.3s ease;
	width: 4rem;
}

.corporate__contact:hover .corporate__contact-arrow {
	width: 5rem;
}

/* ========================================
# 取り扱い保険会社
======================================== */

.insurance-companies {
	overflow: hidden;
	padding-bottom: 33rem;
	padding-top: 11.3rem;
	position: relative;
}

.insurance-companies .section-title {
	margin: 0 auto;
	position: relative;
	text-align: center;
	z-index: 2;
}

.insurance-companies__bg {
	background-color: #F3F9FD;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 0;
}

.insurance-companies__logos {
	background-color: #FFFFFF;
	border-radius: 1rem;
	box-shadow: 0px 4px 15px -1px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-wrap: wrap;
	gap: 4rem;
	justify-content: center;
	margin-top: 9rem;
	padding: 6rem 10rem;
	position: relative;
	z-index: 2;
}

.insurance-companies__logo-container {
	align-items: center;
	display: flex;
	height: 14rem;
	justify-content: center;
	width: calc((100% - 12rem) / 4);
}

.insurance-companies__logo {
	-o-object-fit: contain;
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

/* ========================================
# お知らせ
======================================== */

.news {
	background-color: #FFFFFF;
	margin-top: -5rem;
	padding-bottom: 11rem;
	padding-top: 0rem;
	position: relative;
}

.news .section-title {
	margin: 0 auto;
	position: relative;
	text-align: center;
	z-index: 2;
}

.news__list {
	margin-inline: auto;
	margin-top: 9rem;
	max-width: 1000px;
}

.news__item {
	border-top: 1px solid #D9D9D9;
	display: flex;
	padding: 2.2rem 0.6rem;
	position: relative;
}

.news__item:last-child {
	border-bottom: 1px solid #D9D9D9;
}

.news__date {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.45;
	width: 13rem;
}

.news__text {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.07em;
	line-height: 1.45;
	margin-left: 3rem;
}

.news__link {
	color: #333333;
	text-decoration: none;
	transition: opacity 0.3s;
}

/* ========================================
# お問い合わせ
======================================== */

.contact {
	overflow: hidden;
	padding-bottom: 11rem;
	padding-top: 10rem;
	position: relative;
}

.contact .section-title {
	margin: 0 auto;
	position: relative;
	text-align: center;
	z-index: 2;
}

.contact__bg {
	background-image: url("../img/contact-bg-j.webp");
	background-position: center;
	background-size: cover;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 0;
}

.contact__overlay {
	background: linear-gradient(90deg, #2C2CC2 21.99%, #12C7FC 100%);
	height: 100%;
	left: 0;
	opacity: 0.85;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

.contact__tel {
	color: #FFFFFF;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 4.6rem;
	font-weight: 500;
	letter-spacing: 0.07em;
	line-height: 1.45;
	margin-top: 7rem;
	position: relative;
	text-align: center;
	z-index: 2;
}

.contact__tel span {
	font-size: 2.6rem;
}

.contact__button-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 3rem;
	position: relative;
	z-index: 2;
}

.contact__button {
	align-items: center;
	background-color: #FFFFFF;
	color: #2C2CC2;
	display: flex;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
	height: 6rem;
	justify-content: space-between;
	letter-spacing: 0.1em;
	line-height: 1.45;
	padding: 0rem 0rem 0rem 2.8rem;
	position: relative;
	width: 34.8rem;
}

.contact__button-arrow {
	background-color: #2C2CC2;
	display: inline-block;
	height: 0.2rem;
	position: relative;
	transition: width 0.3s ease;
	width: 4.6rem;
}

.contact__button:hover .contact__button-arrow {
	width: 5.6rem;
}

/* ========================================
# アクセス
======================================== */

.access {
	background-color: #FFFFFF;
	padding-bottom: 14rem;
	padding-top: 12rem;
	position: relative;
}

.access .section-title {
	margin: 0 auto;
	position: relative;
	text-align: center;
}

.access__content {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin-inline: auto;
	margin-top: 9rem;
	max-width: 996px;
}

.access__info {
	align-self: flex-start;
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: 0.07em;
	line-height: 1.9;
	margin-bottom: 3rem;
}

.access__info span {
	color: #2C2CC2;
}

.access__map {
	height: 50.1rem;
	width: 100%;
}

.access__map iframe {
	aspect-ratio: 993/501;
	height: 100%;
	width: 100%;
}

/* ========================================
# スクロールアニメーション
======================================== */

.js-scroll-fade {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-scroll-fade.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ========================================
# ページロード時のアニメーション
======================================== */

body:not(.is-loaded) .fv__title,
body:not(.is-loaded) .fv__create-tomorrow,
body:not(.is-loaded) .fv__polygon {
	opacity: 0;
}

body.is-loaded .fv__title,
body.is-loaded .fv__create-tomorrow,
body.is-loaded .fv__polygon {
	transition: opacity 1s ease, transform 1s ease;
}

/* ========================================
# フッター
======================================== */

.footer {
	background-color: #333333;
	color: #FFFFFF;
	padding-bottom: 1rem;
	padding-top: 1.8rem;
	position: relative;
}

.footer__content {
	padding-bottom: 4rem;
}

.footer__content .inner {
	display: flex;
	justify-content: space-between;
	padding-inline: 4.5rem 19rem;
}

.footer__info {
	margin-top: 4rem;
}

.footer__company-name {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2.4rem;
	font-weight: 500;
	letter-spacing: 0.07em;
	line-height: 1.25;
	margin-bottom: 0.8rem;
}

.footer__address {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.07em;
	line-height: 2;
}

.footer__nav {
	display: flex;
	gap: 8rem;
	margin-top: 6rem;
}

.footer__nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer__nav-item {
	margin-bottom: 2rem;
}

.footer__nav-item:last-child {
	margin-bottom: 0;
}

.footer__nav-link {
	color: #FFFFFF;
	font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	line-height: 1.33;
	text-decoration: none;
	transition: opacity 0.3s;
}

.footer__nav-link:hover {
	opacity: 0.7;
}

.footer__copyright {
	align-items: center;
	display: flex;
	justify-content: center;
	padding: 1.5rem 0;
}

.footer__copyright p {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.07em;
	line-height: 2.5;
	margin: 0;
}

.pagetop {
	align-items: center;
	bottom: 33rem;
	display: flex;
	height: 6.1rem;
	justify-content: center;
	opacity: 0;
	position: fixed;
	right: 2rem;
	transform: translateY(20px);
	transition: opacity 0.3s, transform 0.3s;
	width: 6.1rem;
	z-index: 90;
}

.pagetop.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.pagetop:hover {
	opacity: 0.8;
}

.pagetop img {
	height: 100%;
	width: 100%;
}

/* 全体のスタイル */

.home-inner {
	margin: 0 auto;
	padding-bottom: 100px;
	padding-bottom: 10rem;
	padding-top: 50px;
	padding-top: 5rem;
	width: 1000px;
	width: 100rem;
}

.home__ttl {
	font-size: 16px;
	font-size: 1.6rem;
	margin-top: 50px;
	margin-top: 5rem;
	text-align: center;
}

.top-news__grid {
	display: grid;
	gap: 20px;
	gap: 2rem;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	margin-top: 50px;
	margin-top: 5rem;
}

.top-news__card {
	background-color: #fff;
	border-radius: 8px;
	border-radius: 0.8rem;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	position: relative;
}

.top-news__link {
	color: inherit;
	display: block;
	text-decoration: none;
}

.top-news__image img {
	-o-object-fit: cover;
	-o-object-position: 50% 50%;
	aspect-ratio: 16/10;
	height: auto;
	object-fit: cover;
	object-position: 50% 50%;
	width: 100%;
}

.no-image {
	border-bottom: 1px solid #ccc;
}

.top-news__badge {
	background-color: #b30000;
	border-radius: 4px;
	border-radius: 0.4rem;
	color: #fff;
	font-size: 14px;
	font-size: 1.4rem;
	left: 10px;
	left: 1rem;
	padding: 5px 10px;
	padding: 0.5rem 1rem;
	position: absolute;
	top: 10px;
	top: 1rem;
	z-index: 1;
}

.top-news__content {
	padding: 25px;
	padding: 2.5rem;
}

.top-news__text {
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 10px;
	margin-bottom: 1rem;
}

.top-news__date {
	color: #666;
	font-size: 14px;
	font-size: 1.4rem;
}

/* ページネーションのスタイル */

.pagination {
	display: flex;
	justify-content: center;
	padding: 50px 0 20px;
	padding: 5rem 0 2rem;
}

.pagination .page-numbers {
	background-color: #A41839;
	border-radius: 3px;
	border-radius: 0.3rem;
	color: #fff;
	display: inline-block;
	margin: 0 5px;
	margin: 0 0.5rem;
	padding: 8px 12px;
	padding: 0.8rem 1.2rem;
	text-decoration: none;
}

.pagination .current {
	background-color: #75543e;
}

.pagination .fa {
	margin: 0 5px;
	margin: 0 0.5rem;
}

/* ブログ一覧ページのスタイル */

.blog-archive {
	margin: 0 auto;
	max-width: 100rem;
	padding: 5rem 0 10rem;
	width: 100%;
}

.blog-archive__title {
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 4rem;
	text-align: center;
}

.blog-archive__description {
	font-size: 1.6rem;
	line-height: 1.6;
	margin-bottom: 4rem;
	text-align: center;
}

.blog-archive__no-posts {
	color: #666;
	font-size: 1.8rem;
	padding: 5rem 0;
	text-align: center;
}

/* 記事カード一覧 */

.blog-list {
	margin-bottom: 6rem;
}

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

.blog-card {
	background-color: #fff;
	border-radius: 0.8rem;
	box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.05);
	overflow: hidden;
	position: relative;
	transition: transform 0.3s;
}

.blog-card:hover {
	transform: translateY(-0.5rem);
}

.blog-card__link {
	color: inherit;
	display: block;
	text-decoration: none;
}

.blog-card__image {
	overflow: hidden;
	position: relative;
}

.blog-card__image img {
	-o-object-fit: cover;
	aspect-ratio: 16/9;
	display: block;
	height: auto;
	object-fit: cover;
	transition: transform 0.3s;
	width: 100%;
}

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

.blog-card__category {
	background-color: #037EE1;
	border-radius: 0.4rem;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 600;
	left: 1rem;
	padding: 0.5rem 1.2rem;
	position: absolute;
	top: 1rem;
	z-index: 1;
}

.blog-card__content {
	padding: 2rem;
}

.blog-card__title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 1rem;
	overflow: hidden;
}

.blog-card__date {
	color: #666;
	font-size: 1.4rem;
}

/* ページネーションのスタイル */

.pagination {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-top: 5rem;
}

.pagination .page-numbers {
	align-items: center;
	background-color: #fff;
	border: 0.1rem solid #ddd;
	border-radius: 0.4rem;
	color: #333;
	display: inline-flex;
	font-size: 1.6rem;
	font-weight: 600;
	height: 4rem;
	justify-content: center;
	margin: 0 0.5rem;
	min-width: 4rem;
	padding: 0 0.5rem;
	text-decoration: none;
	transition: all 0.3s;
}

.pagination .page-numbers:hover {
	background-color: #f5f5f5;
}

.pagination .page-numbers.current {
	background-color: #037EE1;
	border-color: #037EE1;
	color: #fff;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
	padding: 0 1.5rem;
}

/* 全体のコンテンツエリア */

.content-area {
	margin: 0 auto;
	max-width: 100rem;
	padding: 4rem 0 8rem;
	width: 100%;
}

/* 記事のコンテンツ */

.content-area__article {
	background-color: #fff;
	border-radius: 0.8rem;
	box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.05);
	margin-bottom: 4rem;
	padding: 4rem;
}

/* エントリーヘッダー */

.content-area__header {
	margin-bottom: 3rem;
}

.content-area__meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.content-area__category {
	background: #037EE1;
	border-radius: 0.4rem;
	color: #fff;
	display: inline-block !important;
	font-size: 1.4rem;
	font-weight: 600;
	padding: 0.6rem 1.5rem;
}

.content-area__category a {
	color: #fff;
	text-decoration: none;
}

.content-area__category a:hover {
	opacity: 0.8;
}

.content-area__date {
	color: #666;
	font-size: 1.6rem;
}

/* 記事のタイトル */

.content-area__title {
	font-size: 2.8rem;
	font-weight: 600;
	line-height: 1.4;
	margin-top: 1.5rem;
	overflow-wrap: break-word;
	word-break: break-word;
}

/* アイキャッチ画像 */

.content-area__thumbnail {
	border-radius: 0.8rem;
	margin-bottom: 3rem;
	overflow: hidden;
}

.content-area__thumbnail img {
	display: block;
	height: auto;
	width: 100%;
}

/* エントリーコンテンツ */

.content-area__content {
	font-size: 1.6rem;
	line-height: 1.8;
	margin-bottom: 5rem;
	overflow-wrap: break-word;
	word-break: break-word; /* WordPress標準のコンテンツスタイル */
}

.content-area__content h2 {
	border-bottom: 0.2rem solid #037EE1;
	font-size: 2.4rem;
	font-weight: 600;
	margin: 4rem 0 2rem;
	padding-bottom: 1rem;
}

.content-area__content h3 {
	border-left: 0.4rem solid #037EE1;
	font-size: 2rem;
	font-weight: 600;
	margin: 3rem 0 1.5rem;
	padding-left: 1.2rem;
}

.content-area__content h4 {
	font-size: 1.8rem;
	font-weight: 600;
	margin: 2.5rem 0 1.5rem;
}

.content-area__content p {
	margin-bottom: 2rem;
}

.content-area__content ul,
.content-area__content ol {
	margin: 2rem 0 2rem 2.5rem;
}

.content-area__content li {
	margin-bottom: 1rem;
}

.content-area__content a {
	color: #037EE1;
	text-decoration: underline;
}

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

.content-area__content blockquote {
	background-color: #f5f5f5;
	border-left: 0.4rem solid #ddd;
	font-style: italic;
	margin: 2rem 0;
	padding: 2rem;
}

.content-area__content img {
	height: auto;
	margin: 2rem 0;
	max-width: 100%;
}

.content-area__content table {
	border-collapse: collapse;
	margin: 2rem 0;
	width: 100%;
}

.content-area__content th,
.content-area__content td {
	border: 0.1rem solid #ddd;
	padding: 1rem;
}

.content-area__content th {
	background-color: #f5f5f5;
}

/* エントリーフッター */

.content-area__footer {
	margin-top: 4rem;
}

/* タグ */

.content-area__tags {
	margin-bottom: 3rem;
}

.content-area__tags ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.content-area__tags li {
	margin: 0;
}

.content-area__tags a {
	background-color: #f5f5f5;
	border-radius: 0.4rem;
	color: #666;
	display: inline-block;
	font-size: 1.4rem;
	padding: 0.5rem 1.2rem;
	text-decoration: none;
	transition: background-color 0.3s;
}

.content-area__tags a:hover {
	background-color: #e5e5e5;
	color: #333;
}

/* 投稿ナビゲーション */

.post-navigation {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}

.post-navigation__prev a {
	background-color: #037EE1;
	border-radius: 0.4rem;
	color: #fff;
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 600;
	min-width: 20rem;
	padding: 1.2rem 3rem;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.3s;
}

.post-navigation__prev a:hover {
	background-color: #0369c1;
	opacity: 0.8;
}

/* 関連記事 */

.related-posts {
	background-color: #fff;
	border-radius: 0.8rem;
	box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.05);
	padding: 4rem;
}

.related-posts__title {
	font-size: 2.2rem;
	font-weight: 600;
	margin-bottom: 2.5rem;
	position: relative;
	text-align: center;
}

.related-posts__title:after {
	background-color: #037EE1;
	content: "";
	display: block;
	height: 0.3rem;
	margin: 1.5rem auto 0;
	width: 4rem;
}

.related-posts__list {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: repeat(3, 1fr);
}

.related-posts__item {
	transition: transform 0.3s;
}

.related-posts__item:hover {
	transform: translateY(-0.5rem);
}

.related-posts__link {
	color: inherit;
	display: block;
	text-decoration: none;
}

.related-posts__image {
	aspect-ratio: 16/9;
	border-radius: 0.6rem;
	margin-bottom: 1.2rem;
	overflow: hidden;
}

.related-posts__image img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.related-posts__content {
	padding: 0.5rem;
}

.related-posts__item-title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 0.8rem;
	overflow: hidden;
}

.related-posts__meta {
	align-items: center;
	display: flex;
}

.related-posts__date {
	color: #666;
	font-size: 1.4rem;
}

/* ページャー */

.page__wrapper {
	width: 100%;
}

.error-404 {
	padding: 8rem 0 10rem;
}

.error-404__container {
	background-color: #fff;
	border-radius: 0.8rem;
	box-shadow: 0 0.2rem 2rem rgba(0, 0, 0, 0.05);
	margin: 0 auto;
	max-width: 80rem;
	padding: 6rem 4rem;
	text-align: center;
}

.error-404__code {
	color: #037EE1;
	font-size: 12rem;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 2rem;
}

.error-404__title {
	color: #333;
	font-size: 3.2rem;
	font-weight: 600;
	margin-bottom: 3rem;
}

.error-404__message {
	color: #666;
	font-size: 1.8rem;
	line-height: 1.6;
	margin-bottom: 4rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 60rem;
}

.error-404__button {
	background-color: #037EE1;
	border-radius: 0.4rem;
	color: #fff;
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 600;
	padding: 1.5rem 4rem;
	text-decoration: none;
	transition: background-color 0.3s;
}

.error-404__button:hover {
	background-color: #0369c1;
	opacity: 1;
}

.error-404__suggestions {
	margin-top: 6rem;
}

.error-404__suggestion-title {
	color: #333;
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 2rem;
}

.error-404__suggestion-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	list-style: none;
	margin: 0;
	margin: 0 auto;
	max-width: 40rem;
	padding: 0;
}

.error-404__suggestion-item {
	font-size: 1.6rem;
}

.error-404__suggestion-item a {
	color: #037EE1;
	text-decoration: none;
}

.error-404__suggestion-item a:hover {
	text-decoration: underline;
}

#breadcrumb {
	color: #0279D0; /* テキストの色 */
	font-size: 14px; /* フォントサイズの調整 */
	font-size: 1.4rem;
	padding-bottom: 20px;
	padding-bottom: 2rem;
	padding-top: 20px;
	padding-top: 2rem;
}

#breadcrumb span a span {
	color: #727171 !important; /* リンクの色を設定 */
	text-decoration: none; /* リンクの下線を消す */
}

#breadcrumb span {
	color: #0279D0; /* 非リンク部分のテキスト色 */
	margin: 0 5px;
	margin: 0 0.5rem;
}

/*========================================
# コンタクトフォーム
========================================  */

.page-contact {
	margin-bottom: 26rem;
	margin-inline: auto;
	margin-top: 9rem;
	max-width: 700px;
	width: 100%;
}

.contact-form {
	width: 100%;
}

.contact-form__inner {
	margin: 0 auto;
	max-width: 80rem;
	padding: 0 2rem;
	width: 100%;
}

.contact-form__content {
	display: flex;
	flex-direction: column;
	gap: 4rem;
	width: 100%;
}

.contact-form__item {
	width: 100%;
}

.contact-form__row {
	display: grid;
	gap: 2rem;
	grid-template-columns: 23.5rem 1fr;
	width: 100%;
}

.contact-form__label {
	align-items: center;
	display: flex;
	margin-bottom: 1.8rem;
}

.contact-form__label-text {
	color: #4D4139;
	font-size: 1.6rem;
	font-weight: 400;
}

.contact-form__label-sub {
	color: #4D4139;
	font-size: 1.6rem;
	font-weight: 400;
	margin-left: 2rem;
}

.contact-form__required {
	color: #FE1D0F;
	font-size: 1rem;
	margin-left: 0.5rem;
}

.contact-form__input-wrapper {
	width: 100%;
}

.contact-form__input {
	border: 1px solid rgba(77, 65, 57, 0.3);
	border-radius: 0.5rem;
	color: rgba(77, 65, 57, 0.7);
	font-size: 1.6rem;
	height: 5rem;
	padding: 0 2rem;
	width: 100%;
}

.contact-form__input::-moz-placeholder {
	color: rgba(77, 65, 57, 0.2);
}

.contact-form__input::placeholder {
	color: rgba(77, 65, 57, 0.2);
}

.contact-form__textarea {
	border: 1px solid rgba(77, 65, 57, 0.3);
	border-radius: 0.5rem;
	color: rgba(77, 65, 57, 0.7);
	font-size: 1.6rem;
	height: 20.5rem;
	padding: 1.5rem 2rem;
	resize: none;
	width: 100%;
}

.contact-form__checkbox-group {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem 4rem;
	margin-top: 1.5rem;
}

.contact-form__checkbox-group .wpcf7-list-item {
	align-items: center;
	display: flex;
	margin: 0;
}

.contact-form__checkbox-group .wpcf7-checkbox {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem 7rem;
}

.contact-form__checkbox-item,
.wpcf7-list-item {
	align-items: center;
	display: flex;
}

/* チェックボックスを非表示 */

.contact-form__checkbox,
.wpcf7-list-item input[type=checkbox] {
	display: none;
}

/* ラベルのスタイル */

.contact-form__checkbox + .contact-form__checkbox-label,
.wpcf7-list-item-label {
	color: #4D4139;
	cursor: pointer;
	font-size: 1.6rem;
	padding-left: 3rem;
	position: relative;
}

/* チェックボックスの枠 */

.contact-form__checkbox + .contact-form__checkbox-label::before,
.wpcf7-list-item-label::before {
	background-color: #fff;
	border: 1px solid rgba(77, 65, 57, 0.3);
	border-radius: 0.5rem;
	content: "";
	height: 2rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2rem;
}

/* チェック時の背景色 */

.contact-form__checkbox:checked + .contact-form__checkbox-label::before,
.wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::before {
	background-color: #0152A0;
	border-color: #0152A0;
}

/* チェックマーク */

.contact-form__checkbox:checked + .contact-form__checkbox-label::after,
.wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	content: "";
	height: 1rem;
	left: 0.7rem;
	position: absolute;
	top: 0.4rem;
	transform: rotate(45deg);
	width: 0.6rem;
}

/* Contact Form 7用の追加スタイル */

span.wpcf7-list-item-label::before {
	background-color: #fff;
	border: 1px solid rgba(77, 65, 57, 0.3);
	border-radius: 0.5rem;
	content: "";
	height: 2rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2rem;
}

input[type=checkbox]:checked + span.wpcf7-list-item-label::before {
	background-color: #0152A0;
	border-color: #0152A0;
}

input[type=checkbox]:checked + span.wpcf7-list-item-label::after {
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	content: "";
	height: 1rem;
	left: 0.7rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) translateY(-5px);
	transform: translateY(-50%) rotate(45deg);
	width: 0.6rem;
}

.contact-form__checkbox-label {
	color: #4D4139;
	font-size: 1.6rem;
}

.contact-form__privacy {
	margin-top: 2.6rem;
	width: 100%;
}

.contact-form__privacy-title {
	color: #0279D0;
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 2rem;
	text-align: center;
}

.contact-form__privacy-content {
	background-color: #fff;
	border: 1px solid #CFCACA;
	border-radius: 0.4rem;
	height: 22.7rem;
	overflow-y: auto;
	padding: 2rem;
	width: 100%;
}

.contact-form__privacy-text {
	color: #333;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	line-height: 2;
}

/* 同意チェックボックス */

.contact-form__agreement {
	display: flex;
	justify-content: flex-start;
	margin-left: 1.5rem;
	margin-top: 0rem; /* Contact Form 7のacceptanceフィールド用スタイル */ /* チェックボックスを非表示 */ /* ラベルのスタイル */ /* チェックボックスの枠 */ /* チェックマーク */ /* チェック時の背景色 */
}

.contact-form__agreement .wpcf7-acceptance {
	align-items: center;
	display: flex;
}

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

.contact-form__agreement .wpcf7-acceptance input[type=checkbox] {
	display: none;
}

.contact-form__agreement .wpcf7-acceptance .wpcf7-list-item-label {
	align-items: center;
	color: #333;
	cursor: pointer;
	display: flex;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	padding-left: 4rem;
	position: relative;
}

.contact-form__agreement .wpcf7-acceptance .wpcf7-list-item-label::before {
	background-color: #fff;
	border: 1px solid #CCCCCC;
	border-radius: 0.7rem;
	content: "";
	height: 2.8rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2.8rem;
}

.contact-form__agreement .wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::after {
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	content: "";
	height: 1.4rem;
	left: 1rem;
	position: absolute;
	top: 50%;
	transform: translateY(-70%) rotate(45deg);
	width: 0.8rem;
}

.contact-form__agreement .wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::before {
	background-color: #0152A0;
	border-color: #0152A0;
}

/* 通常のチェックボックス用スタイルは維持 */

.contact-form__agreement-label {
	align-items: center;
	cursor: pointer;
	display: flex;
}

.contact-form__agreement-checkbox {
	display: none;
}

.contact-form__agreement-text {
	color: #333;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	padding-left: 4rem;
	position: relative;
}

.contact-form__agreement-text::before {
	background-color: #fff;
	border: 1px solid #CCCCCC;
	border-radius: 0.7rem;
	content: "";
	height: 2.8rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2.8rem;
}

.contact-form__agreement-checkbox:checked + .contact-form__agreement-text::before {
	background-color: #0152A0;
	border-color: #0152A0;
}

.contact-form__agreement-checkbox:checked + .contact-form__agreement-text::after {
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	content: "";
	height: 1.4rem;
	left: 1rem;
	position: absolute;
	top: 50%;
	transform: translateY(-70%) rotate(45deg);
	width: 0.8rem;
}

.contact-form__submit {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
	position: relative; /* Contact Form 7のボタン用の追加スタイル */ /* 送信ボタンの右側の線 */
}

.contact-form__submit input[type=submit] {
	background: linear-gradient(90deg, #2C2CC2 22%, #12C7FC 100%);
	border: none;
	border-radius: 0 !important;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 1.6rem;
	font-weight: 700;
	height: 6rem;
	justify-content: center;
	letter-spacing: 0.1em;
	padding: 0;
	transition: all 0.3s;
	width: 24rem;
}

.contact-form__submit input[type=submit]:hover {
	opacity: 0.8;
}

.contact-form__submit input[type=submit]:disabled {
	background: #999999 !important;
	cursor: not-allowed;
	opacity: 0.5;
}

.contact-form__submit .wpcf7-submit {
	align-items: center !important;
	background: linear-gradient(90deg, #2C2CC2 22%, #12C7FC 100%) !important;
	border: none !important;
	color: #fff !important;
	cursor: pointer;
	display: flex !important;
	font-size: 1.6rem !important;
	font-weight: 700 !important;
	height: 6rem !important;
	justify-content: flex-start !important;
	letter-spacing: 0.1em !important;
	padding: 0 !important;
	padding-left: 8rem !important;
	text-align: left;
	transition: all 0.3s;
	width: 24rem !important;
}

.contact-form__submit .wpcf7-submit:hover {
	opacity: 0.8;
}

.contact-form__submit .wpcf7-submit:disabled {
	background: #999999 !important;
	cursor: not-allowed !important;
	opacity: 0.5 !important;
}

.contact-form__submit::after {
	background-color: #fff;
	content: "";
	height: 0.2rem;
	pointer-events: none;
	position: absolute;
	right: calc(50% - 12rem);
	top: 50%;
	transition: width 0.3s ease, background-color 0.3s ease;
	width: 4.669rem;
}

.contact-form__submit:hover::after {
	width: 5.669rem;
}

.contact-form__submit.is-disabled:hover::after {
	width: 4.669rem;
}

.contact-form__submit-text {
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.contact-form__submit-line {
	background-color: #fff;
	height: 0.2rem;
	position: absolute;
	right: 0rem;
	top: 50%;
	width: 4.669rem;
}

input[type=button],
input[type=submit] {
	-webkit-appearance: none !important;
}

.p-contact__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1000px;
	padding: 0 25px 100px;
	padding-left: 25px;
	padding-right: 25px;
	width: 100%;
}

.p-form__item {
	border-bottom: 1px solid #B5B5B5;
	display: flex;
	padding: 20px 0;
}

.p-form__item:first-of-type {
	border-top: 1px solid #B5B5B5;
}

.p-form__title {
	align-items: center;
	display: flex;
	font-size: 18px;
	gap: 10px;
	padding: 0 30px;
	width: 30%;
}

.p-form__title span {
	background-color: #D00000;
	color: #fff;
	display: inline-block;
	font-size: 12px;
	padding: 5px;
}

.p-form__title--type02 {
	justify-content: space-between;
}

.p-form__title--type03 {
	flex-direction: column;
}

.p-form__title--aiStart {
	align-items: flex-start;
}

.p-form__input {
	flex: 1;
}

.p-formInput input::-moz-placeholder,
.p-formTextarea textarea::-moz-placeholder {
	color: lightgray;
	font-size: 16px;
}

.p-formInput input::placeholder,
.p-formTextarea textarea::placeholder {
	color: lightgray;
	font-size: 16px;
}

.p-formInput input {
	border: 1px solid #B5B5B5;
	border-radius: 0;
	font-size: 16px;
	height: 60px;
	padding-left: 20px;
	width: 100%;
}

.p-formInput input:focus,
.p-formTextarea textarea:focus {
	outline: 2px solid #B5B5B5;
}

.p-formInput--sm input {
	max-width: 100%;
	width: 350px;
}

.p-formInput__post {
	align-items: center;
	display: flex;
	gap: 10px;
}

.p-formInput__post input {
	margin-left: auto;
	margin-right: auto;
	width: 320px;
}

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

.p-formInput__address input {
	width: 70%;
}

.p-formInput--tel {
	align-items: center;
	display: flex;
	gap: 5px;
}

.p-formInput--tel > * {
	min-width: 0;
}

.p-formInput--tel input {
	max-width: 100%;
	width: 150px;
}

.p-formSelect select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url(../images/common/pulldown.svg) right 10px center/10px no-repeat;
	border: 1px solid #B5B5B5;
	border-radius: 0;
	color: lightgray;
	font-size: 16px;
	height: 60px;
	max-width: 100%;
	padding-left: 20px;
	width: 250px;
}

.p-formSelect select:focus {
	outline: 2px solid #B5B5B5;
}

.p-formSelect--selected select {
	color: #333;
}

.p-formDate__flex {
	align-items: center;
	display: flex;
	gap: 35px;
}

.p-formDate__flex + .p-formDate__flex {
	margin-top: 20px;
}

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

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

.p-form__dataBlockFlex + .p-form__dataBlockFlex {
	margin-top: 20px;
}

.p-form__dataBlockLabel {
	font-size: 16px;
	width: 80px;
}

.p-formCalendar {
	position: relative;
}

.p-formCalendar input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url(../images/common/calendar.svg) right 8px center/15px no-repeat;
	background-color: #fff;
	border: 1px solid #B5B5B5;
	border-radius: 0;
	color: lightgray;
	font-size: 16px;
	height: 60px;
	padding-left: 20px;
	padding-right: 5px;
	position: relative;
	width: 250px;
}

.p-formCalendar input::-webkit-calendar-picker-indicator {
	background: transparent;
	bottom: 0;
	color: transparent;
	height: 100%;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 1;
}

.p-formCalendar input::-webkit-date-and-time-value {
	text-align: left;
}

.p-formCalendar input:focus {
	outline: 2px solid #B5B5B5;
}

.p-form__dataBlockDate input:not(.p-formDate__default) {
	color: #333;
}

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

.p-formNumber__flex {
	align-items: center;
	display: flex;
	gap: 30px;
	margin-top: 20px;
}

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

.p-formNumber__blockLabel01 {
	font-size: 16px;
	margin-right: 30px;
}

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

.p-formNumber__blockInput {
	margin-right: 10px;
	width: 150px;
}

.p-formCheckbox input {
	display: none;
}

.p-formCheckbox .wpcf7-checkbox {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.p-formCheckbox .wpcf7-list-item {
	margin-left: 0;
}

.p-formCheckbox--vertical .wpcf7-checkbox {
	display: block;
}

.p-formCheckbox--vertical .wpcf7-list-item {
	display: block;
	margin: 0;
}

.p-formCheckbox--vertical .wpcf7-list-item + .wpcf7-list-item {
	margin-top: 20px;
}

.p-formCheckbox input + span {
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	padding: 0 0 0 35px;
	position: relative;
	width: auto;
}

.p-formCheckbox input + span::before {
	background-color: #fff;
	border: 1px solid #B5B5B5;
	content: "";
	display: block;
	height: 20px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
}

.p-formCheckbox input + span::after {
	border-bottom: 3px solid blue;
	border-right: 3px solid blue;
	content: "";
	display: block;
	height: 13px;
	left: 6px;
	margin-top: -8px;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: rotate(45deg);
	width: 8px;
}

.p-formCheckbox input:checked + span::after {
	opacity: 1;
}

.p-formRadio .wpcf7-radio {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.p-formRadio--vertical .wpcf7-radio {
	display: block;
}

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

.p-formRadio--vertical .wpcf7-list-item {
	display: block;
	margin: 0;
}

.p-formRadio--vertical .wpcf7-list-item + .wpcf7-list-item {
	margin-top: 20px;
}

.p-formRadio input + span {
	cursor: pointer;
	display: flex;
	font-size: 16px;
}

.p-formRadio input[type=radio] {
	display: none;
}

.p-formRadio input + span::before {
	background: #fff;
	border: 1px solid #B5B5B5;
	border-radius: 100%;
	content: "";
	height: 20px;
	margin-bottom: auto;
	margin-right: 0.5em;
	margin-top: auto;
	transition: background-color 0.5s;
	width: 20px;
}

.p-formRadio input:checked + span::before {
	background-color: blue;
	box-shadow: inset 0 0 0 3px #fff;
}

.p-formFile .wpcf7-form-control-wrap {
	display: block;
}

.p-formFile .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
	margin-top: 20px;
}

.p-formFile input {
	font-size: 16px;
	line-height: 1;
	max-width: 100%;
}

.p-formTextarea textarea {
	border: 1px solid #B5B5B5;
	border-radius: 0;
	font-size: 16px;
	min-height: 350px;
	padding-left: 20px;
	padding-top: 10px;
	width: 100%;
}

.p-form__privacy {
	font-size: 16px;
	margin-top: 30px;
	text-align: center;
}

.p-form__privacy a {
	line-height: 1;
	text-decoration: underline;
}

.p-form__acceptance {
	margin-top: 30px;
	text-align: center;
}

.p-form__submit {
	margin-top: 50px;
	text-align: center;
}

.p-formBtn input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #313D58;
	border: none;
	border: none;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	padding: 20px 0;
	text-align: center;
	transition: opacity 0.5s;
	width: 300px;
}

.p-formBtn input:disabled {
	background-color: #eee;
	border-color: #eee;
	color: #fff;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #2C94DE;
	font-size: 24px;
	padding: 15px 10px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: red;
	font-size: 24px;
	padding: 15px 10px;
}

.wpcf7-spinner {
	display: none;
}

.wpcf7-not-valid-tip {
	color: red;
	display: block;
	font-size: 16px;
	font-weight: normal;
}

.wpcf7-form.hide_error_message .wpcf7-not-valid-tip {
	display: none;
}

.p-formValidation .wpcf7-not-valid-tip {
	display: none;
}

.p-formValidation__error {
	color: red;
	display: none;
	font-size: 16px;
	font-weight: normal;
	margin-top: 10px;
}

.wpcf7-form:not(.hide_error_message) .p-formValidation:has(.wpcf7-not-valid-tip) .p-formValidation__error {
	display: block;
}

/*========================================
# サンクスページ
========================================  */

.thanks {
	padding: 10rem 0;
	width: 100%;
}

.thanks__container {
	margin: 0 auto;
	max-width: 80rem;
	padding: 0 2rem;
	width: 100%;
}

.thanks__content {
	align-items: center;
	display: flex;
	flex-direction: column;
	text-align: center;
	width: 100%;
}

.thanks__title {
	color: #0152A0;
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 4rem;
}

.thanks__text {
	color: #4D4139;
	font-size: 1.6rem;
	line-height: 2;
	margin-bottom: 6rem;
}

.thanks__button-wrapper {
	display: flex;
	justify-content: center;
	width: 100%;
}

.thanks__button {
	align-items: center;
	background: linear-gradient(90deg, #2C2CC2 22%, #12C7FC 100%);
	color: #fff;
	display: flex;
	font-size: 1.6rem;
	font-weight: 700;
	height: 6rem;
	justify-content: center;
	letter-spacing: 0.1em;
	position: relative;
	text-decoration: none;
	transition: opacity 0.3s;
	width: 24rem;
}

.thanks__button:hover {
	opacity: 0.8;
}

.thanks__button::after {
	background-color: #fff;
	content: "";
	height: 0.2rem;
	position: absolute;
	right: 0rem;
	top: 50%;
	transform: translateX(100%);
	width: 4.669rem;
}

.company {
	background: linear-gradient(90deg, rgba(44, 44, 194, 0.06) 22%, rgba(18, 199, 252, 0.06) 100%);
	padding: 7rem 0 10rem;
	position: relative;
}

.company-info {
	margin: 8rem auto 0;
	max-width: 99.4rem;
}

.company-info__table {
	border-collapse: separate;
	border-spacing: 0.6rem 0.6rem;
	width: 100%;
}

.company-info__header {
	background: linear-gradient(90deg, #2C2CC2 22%, #12C7FC 100%);
	color: #FFFFFF;
	font-size: 1.6rem;
	font-weight: 700;
	height: 7rem;
	letter-spacing: 0.07em;
	line-height: 1.45;
	padding: 2rem 0;
	text-align: center;
	vertical-align: middle;
	width: 21.2rem;
}

.company-info__header--large {
	height: 14.2rem;
}

.company-info__header--xlarge {
	height: 15.6rem;
}

.company-info__data {
	background-color: #FFFFFF;
	color: #333333;
	font-size: 1.6rem;
	font-weight: 500;
	height: 7rem;
	letter-spacing: 0.07em;
	line-height: 1.45;
	padding: 2rem 3rem;
	vertical-align: middle;
	width: 77.6rem;
}

.company-info__data--large {
	height: 14.2rem;
}

.company-info__data--xlarge {
	height: 15.6rem;
}

.company-info__address {
	margin-bottom: 1rem;
}

.company-info__address:last-child {
	margin-bottom: 0;
}

.company-info__partner {
	margin-bottom: 0.5rem;
}

.company-info__partner:last-child {
	margin-bottom: 0;
}

/* 代表挨拶セクション */

.company-message {
	padding: 11rem 0 19rem;
	position: relative;
}

.company-message__inner {
	margin: 0 auto;
	max-width: 110.1rem;
	position: relative;
}

.company-message__content {
	margin: 9.3rem auto 0;
	max-width: 99.2rem;
}

.company-message__text {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 2.375;
	margin-bottom: 4rem;
	position: relative;
	z-index: 10;
}

.company-message__signature {
	display: flex;
	flex-direction: column;
	margin-left: auto;
	margin-top: 8rem;
	width: -moz-fit-content;
	width: fit-content;
}

.company-message__company {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.6;
}

.company-message__name {
	margin-top: 1.4rem;
	width: 24rem;
}

.company-message__decoration {
	background: linear-gradient(90deg, rgba(44, 44, 194, 0.15) 22%, rgba(18, 199, 252, 0.15) 100%);
	position: absolute;
}

.company-message__decoration--left {
	bottom: 9.2rem;
	height: 24.3rem;
	left: 0;
	width: 23.4rem;
	z-index: -1;
}

.company-message__decoration--right {
	bottom: 3.2rem;
	height: 13rem;
	left: 16.4rem;
	width: 12.5rem;
}

.service-tab-box {
	padding-bottom: 2rem;
	padding-inline: 2rem;
}

.service-tab-box .inner {
	padding-inline: 0;
}

.service__tabs {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(5, 1fr);
	margin-left: auto;
	margin-right: auto;
	margin-top: 6rem;
	max-width: 120rem;
}

.service__tab {
	background-color: #FFFFFF;
	border: 3px solid rgba(44, 44, 194, 0.5);
	border-radius: 0.4rem;
	cursor: pointer;
	display: block;
	padding: 2rem 1rem;
	position: relative;
	text-decoration: none;
	transition: all 0.3s ease;
}

.service__tab:hover {
	background-color: rgba(44, 44, 194, 0.05);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
}

.service__tab::before {
	background: url(../img/arrow.svg) no-repeat center/cover;
	content: "";
	height: 1rem;
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	width: 1rem;
}

.service__tab-text {
	color: #2C2CC2;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 2.14;
	text-align: center;
}

.business-construction {
	color: #333333;
	margin-top: 6rem;
	position: relative;
	scroll-margin-top: 0rem;
}

.business-construction__inner {
	background: linear-gradient(90deg, rgba(44, 44, 194, 0.06) 22%, rgba(18, 199, 252, 0.06) 100%);
	margin-bottom: 6rem;
	padding: 12rem 0;
}

.business-construction__title-wrapper {
	display: flex;
	justify-content: center;
}

.business-construction__content {
	margin-top: 9rem;
	scroll-margin-top: 0rem;
}

.business-construction__heading {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2.4rem;
	font-weight: 500;
	letter-spacing: 0.07em;
	line-height: 1.448;
	margin-bottom: 4rem;
	text-align: center;
}

.business-construction__description {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
	margin: 0 auto;
	margin-top: 5rem;
	max-width: 74.3rem;
}

.business-construction__risks {
	display: flex;
	gap: 4rem;
	justify-content: space-between;
}

.business-construction__risk-item {
	align-items: center;
	background-color: #FFFFFF;
	border: 0.7rem solid rgba(29, 136, 229, 0.5);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	height: 36rem;
	justify-content: center;
	position: relative;
	width: 36rem;
}

.business-construction__risk-icon {
	align-items: center;
	display: flex;
	height: 13rem;
	justify-content: center;
}

.business-construction__risk-icon img {
	height: 13rem;
	width: 13rem;
}

.business-construction__risk-text {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.07em;
	line-height: 1.6;
	margin-top: 3rem;
	text-align: center;
}

.business-transport {
	color: #333333;
	margin-top: 6rem;
	position: relative;
	scroll-margin-top: 0rem;
}

.business-transport__inner {
	background: linear-gradient(90deg, rgba(44, 44, 194, 0.06) 22%, rgba(18, 199, 252, 0.06) 100%);
	margin-bottom: 6rem;
	padding: 12rem 0;
}

.business-transport__title-wrapper {
	display: flex;
	justify-content: center;
}

.business-transport__content {
	margin-top: 9rem;
	scroll-margin-top: 0rem;
}

.business-transport__heading {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2.4rem;
	font-weight: 500;
	letter-spacing: 0.07em;
	line-height: 1.448;
	margin-bottom: 4rem;
	text-align: center;
}

.business-transport__description {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
	margin: 0 auto;
	margin-top: 5rem;
	max-width: 74.3rem;
}

.business-transport__risks {
	display: flex;
	gap: 4rem;
	justify-content: space-between;
}

.business-transport__risk-item {
	align-items: center;
	background-color: #FFFFFF;
	border: 0.7rem solid rgba(29, 136, 229, 0.5);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	height: 36rem;
	justify-content: center;
	position: relative;
	width: 36rem;
}

.business-transport__risk-icon {
	align-items: center;
	display: flex;
	height: 13rem;
	justify-content: center;
}

.business-transport__risk-icon img {
	height: 13rem;
	width: 13rem;
}

.business-transport__risk-text {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.07em;
	line-height: 1.6;
	margin-top: 3rem;
	text-align: center;
}

.business-it {
	color: #333333;
	margin-top: 6rem;
	position: relative;
	scroll-margin-top: 0rem;
}

.business-it__inner {
	background: linear-gradient(90deg, rgba(44, 44, 194, 0.06) 22%, rgba(18, 199, 252, 0.06) 100%);
	margin-bottom: 6rem;
	padding: 12rem 0;
}

.business-it__title-wrapper {
	display: flex;
	justify-content: center;
}

.business-it__content {
	margin-top: 9rem;
	scroll-margin-top: 0rem;
}

.business-it__risks {
	display: flex;
	gap: 4rem;
	justify-content: space-between;
	margin-bottom: 4rem;
}

.business-it__risk-item {
	align-items: center;
	background-color: rgba(0, 196, 233, 0.1);
	border: 0.7rem solid #00C4E9;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	height: 36rem;
	justify-content: center;
	position: relative;
	width: 36rem;
}

.business-it__risk-icon {
	align-items: center;
	display: flex;
	height: 13rem;
	height: auto;
	justify-content: center;
}

.business-it__risk-icon img {
	height: 13rem;
	width: 13rem;
}

.business-it__risk-icon img {
	height: auto;
	width: 19.1rem;
}

.business-it__risk-text {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.07em;
	line-height: 1.6;
	line-height: 1.448;
	margin-top: 3rem;
	margin-top: 1rem;
	text-align: center;
}

.business-it__descriptions {
	display: flex;
	gap: 4rem;
	justify-content: space-between;
}

.business-it__description {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
	margin: 0 auto;
	margin-top: 5rem;
	margin-top: 0;
	max-width: 74.3rem;
	max-width: 32.9rem;
}

.business-welfare {
	color: #333333;
	margin-bottom: 19rem;
	margin-top: 6rem;
	position: relative;
	scroll-margin-top: 0rem;
}

.business-welfare__inner {
	background: linear-gradient(90deg, rgba(44, 44, 194, 0.06) 22%, rgba(18, 199, 252, 0.06) 100%);
	margin-bottom: 6rem;
	padding: 12rem 0;
}

.business-welfare__title-wrapper {
	display: flex;
	justify-content: center;
}

.business-welfare__content {
	margin-top: 9rem;
	scroll-margin-top: 0rem;
}

.business-welfare__heading {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2.4rem;
	font-weight: 500;
	letter-spacing: 0.07em;
	line-height: 1.448;
	margin-bottom: 4rem;
	text-align: center;
}

.business-welfare__description {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
	margin: 0 auto;
	margin-top: 5rem;
	max-width: 74.3rem;
}

.personal-insurance__item:last-child,
.personal-life-insurance__item:last-child {
	margin-bottom: 0;
}

.personal-insurance {
	color: #333333;
	margin-top: 6rem;
	position: relative;
	scroll-margin-top: 0rem;
}

.personal-insurance__inner {
	background: linear-gradient(90deg, rgba(34, 105, 217, 0.06) 22%, rgba(18, 199, 252, 0.06) 100%);
	margin-bottom: 6rem;
	padding: 12rem 0;
}

.personal-insurance__title-wrapper {
	display: flex;
	justify-content: center;
}

.personal-insurance__content {
	margin-top: 6.7rem;
	scroll-margin-top: 0rem;
}

.personal-insurance__intro {
	background-color: #FFFFFF;
	border: 2px solid rgba(34, 105, 217, 0.5);
	margin: 0 auto;
	margin-bottom: 6rem;
	max-width: 79.3rem;
	padding: 3rem 2rem;
}

.personal-insurance__intro-text {
	color: #2269D9;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 0.5rem;
	text-align: center;
}

.personal-insurance__intro-description {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
	text-align: center;
}

.personal-insurance__item {
	margin: 0 auto 6rem;
	max-width: 79.7rem;
}

.personal-insurance__item-title {
	background-color: #1D88E5;
	border-radius: 0.6rem;
	display: inline-block;
	margin-bottom: 2rem;
	padding: 0.5rem 3rem;
}

.personal-insurance__item-title-text {
	color: #FFFFFF;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.07em;
	line-height: 1.6;
	text-align: center;
	width: -moz-max-content;
	width: max-content;
}

.personal-insurance__item-description {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
}

.personal-life-insurance {
	color: #333333;
	margin-bottom: 20rem;
	margin-top: 6rem;
	position: relative;
	scroll-margin-top: 0rem;
}

.personal-life-insurance__inner {
	background: linear-gradient(90deg, rgba(34, 105, 217, 0.06) 22%, rgba(18, 199, 252, 0.06) 100%);
	margin-bottom: 6rem;
	padding: 12rem 0;
}

.personal-life-insurance__title-wrapper {
	display: flex;
	justify-content: center;
}

.personal-life-insurance__content {
	margin-top: 6.7rem;
	scroll-margin-top: 0rem;
}

.personal-life-insurance__intro {
	background-color: #FFFFFF;
	border: 2px solid rgba(34, 105, 217, 0.5);
	margin: 0 auto;
	margin-bottom: 6rem;
	max-width: 79.3rem;
	padding: 3rem 2rem;
}

.personal-life-insurance__intro-text {
	color: #2269D9;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 0.5rem;
	text-align: center;
}

.personal-life-insurance__intro-description {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
	margin: 0 auto;
	max-width: 73rem;
	text-align: left;
}

.personal-life-insurance__item {
	margin: 0 auto 6rem;
	max-width: 79.7rem;
}

.personal-life-insurance__item-title {
	background-color: #1D88E5;
	border-radius: 0.6rem;
	display: inline-block;
	margin-bottom: 2rem;
	padding: 0.5rem 3rem;
}

.personal-life-insurance__item-title-text {
	color: #FFFFFF;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.07em;
	line-height: 1.6;
	text-align: center;
	width: -moz-max-content;
	width: max-content;
}

.personal-life-insurance__item-description {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
}

/* この記述は必ず記述してください */

.solicitation-policy {
	padding: 5rem 0 21rem;
}

.solicitation-policy__inner {
	margin: 0 auto;
	max-width: 120rem;
	padding: 0 2rem;
}

.solicitation-policy__title {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 6rem;
	text-align: center;
}

.solicitation-policy__introduction {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
	margin-bottom: 4rem;
}

.solicitation-policy__section {
	margin-bottom: 4rem;
}

.solicitation-policy__section:last-child {
	margin-bottom: 0;
}

.solicitation-policy__section-title {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.solicitation-policy__section-content {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
}

.solicitation-policy__section-content p {
	margin-bottom: 2rem;
}

.solicitation-policy__section-content p:last-child {
	margin-bottom: 0;
}

.solicitation-policy__line {
	background-color: #B5B3B3;
	height: 1px;
	margin: 4rem 0;
	width: 100%;
}

/* この記述は必ず記述してください */

.privacy-policy {
	padding: 4rem 0 25rem;
}

.privacy-policy__inner {
	margin: 0 auto;
	max-width: 120rem;
	padding: 0 2rem;
}

.privacy-policy__title {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 6rem;
	text-align: center;
}

.privacy-policy__introduction {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
	margin-bottom: 4rem;
}

.privacy-policy__section {
	margin-bottom: 4rem;
}

.privacy-policy__section:last-child {
	margin-bottom: 0;
}

.privacy-policy__section-title {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.privacy-policy__section-content {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
}

.privacy-policy__section-content p {
	margin-bottom: 2rem;
}

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

.privacy-policy__line {
	background-color: #B5B3B3;
	height: 1px;
	margin: 4rem 0;
	width: 100%;
}

.privacy-policy__list {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.privacy-policy__list-item {
	font-size: 1.6rem;
	margin-bottom: 2rem;
	position: relative;
}

.privacy-policy__link:hover {
	text-decoration: none;
}

/* この記述は必ず記述してください */

.claim {
	padding: 6rem 0 21rem;
}

.claim__inner {
	margin: 0 auto;
	max-width: 120rem;
	padding: 0 2rem;
}

.claim__title {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 6rem;
	text-align: center;
}

.claim__section {
	margin-bottom: 5rem;
}

.claim__section-title {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.claim__title-lines {
	align-items: center;
	display: flex;
	height: 0.4rem;
	margin-bottom: 2rem;
	margin-top: 2rem;
	position: relative;
}

.claim__title-line {
	height: 0.4rem;
	left: 0;
	position: absolute;
	width: 100%;
}

.claim__title-line:first-child {
	z-index: 1;
}

.claim__title-line:last-child {
	width: 27.3rem;
	z-index: 2;
}

.claim__contact-box {
	display: grid;
	gap: 4rem;
	grid-template-columns: 27.7rem 1fr;
	margin-top: 2rem;
}

.claim__company-info {
	align-items: center;
	background-color: #F3F9FD;
	display: flex;
	padding: 3rem 2rem;
}

.claim__company-name {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.8;
	margin-bottom: 1rem;
}

.claim__contact-info {
	display: grid;
	grid-template-rows: auto auto;
	padding-block: 3rem;
}

.claim__address {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
}

.claim__contact-details {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
}

.claim__description {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
	margin-bottom: 6rem;
}

.claim__description:last-child {
	margin-bottom: 0;
}

.claim__insurance-box {
	display: grid;
	gap: 2rem;
	grid-template-columns: 48rem 1fr;
	margin-top: 1rem;
}

.claim__insurance-name {
	background: #F3F9FD;
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.8;
	padding: 4rem;
}

.claim__insurance-url {
	align-items: center;
	color: #333333;
	display: flex;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
	text-decoration: underline;
}

.claim__insurance-url a {
	color: #333333;
	text-decoration: none;
	transition: opacity 0.3s;
}

.claim__insurance-url a:hover {
	opacity: 0.7;
}

/* アーカイブページのスタイル */

.archive-page {
	margin: 0 auto;
	max-width: 100rem;
	padding: 5rem 0 10rem;
	width: 100%;
}

/* アーカイブヘッダー */

.archive-header {
	margin-bottom: 5rem;
}

.archive-header__title {
	font-size: 2.8rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	position: relative;
	text-align: center;
}

.archive-header__title:after {
	background-color: #037EE1;
	bottom: 0;
	content: "";
	height: 0.3rem;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 6rem;
}

.archive-header__description {
	color: #666;
	font-size: 1.6rem;
	line-height: 1.6;
	margin: 0 auto;
	max-width: 70rem;
	text-align: center;
}

/* カテゴリー一覧 */

.category-nav {
	margin-bottom: 4rem;
}

.category-nav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.category-nav__item {
	margin: 0;
}

.category-nav__link {
	background-color: #f5f5f5;
	border-radius: 3rem;
	color: #333;
	display: inline-block;
	font-size: 1.4rem;
	padding: 0.8rem 2rem;
	text-decoration: none;
	transition: all 0.3s;
}

.category-nav__link:hover {
	background-color: #e0e0e0;
}

.category-nav__link.is-active {
	background-color: #037EE1;
	color: #fff;
}

/* 記事一覧 */

.archive-list {
	margin-bottom: 6rem;
}

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

.archive-card {
	background-color: #fff;
	border-radius: 0.8rem;
	box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.05);
	overflow: hidden;
	position: relative;
	transition: transform 0.3s;
}

.archive-card:hover {
	transform: translateY(-0.5rem);
}

.archive-card__link {
	color: inherit;
	display: block;
	text-decoration: none;
}

.archive-card__image {
	overflow: hidden;
	position: relative;
}

.archive-card__image img {
	-o-object-fit: cover;
	aspect-ratio: 16/9;
	display: block;
	height: auto;
	object-fit: cover;
	transition: transform 0.3s;
	width: 100%;
}

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

.archive-card__category {
	background-color: #037EE1;
	border-radius: 0.4rem;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 600;
	left: 1rem;
	padding: 0.5rem 1.2rem;
	position: absolute;
	top: 1rem;
	z-index: 1;
}

.archive-card__content {
	padding: 2rem;
}

.archive-card__title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 1rem;
	overflow: hidden;
}

.archive-card__meta {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.archive-card__date {
	color: #666;
	font-size: 1.4rem;
}

.archive-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}

.archive-card__tag {
	color: #037EE1;
	font-size: 1.2rem;
}

/* ページネーションのスタイル */

.archive-pagination {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-top: 5rem;
}

.archive-pagination .page-numbers {
	align-items: center;
	background-color: #fff;
	border: 0.1rem solid #ddd;
	border-radius: 0.4rem;
	color: #333;
	display: inline-flex;
	font-size: 1.6rem;
	font-weight: 600;
	height: 4rem;
	justify-content: center;
	margin: 0 0.5rem;
	min-width: 4rem;
	padding: 0 0.5rem;
	text-decoration: none;
	transition: all 0.3s;
}

.archive-pagination .page-numbers:hover {
	background-color: #f5f5f5;
}

.archive-pagination .page-numbers.current {
	background-color: #037EE1;
	border-color: #037EE1;
	color: #fff;
}

.archive-pagination .page-numbers.prev,
.archive-pagination .page-numbers.next {
	padding: 0 1.5rem;
}

/* 記事がない場合 */

.archive-no-posts {
	color: #666;
	font-size: 1.8rem;
	padding: 5rem 0;
	text-align: center;
}

.section-title {
	margin-inline: auto;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.section-title__text-group {
	align-items: flex-start;
	display: flex;
	width: -moz-fit-content;
	width: fit-content;
}

.section-title__text {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 3.6rem;
	font-weight: 500;
	letter-spacing: 0.07em;
	line-height: 1.448;
	margin: 0;
	opacity: 0;
	padding: 0;
	text-align: left;
	transform: translateY(20px);
	transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.section-title__text--white {
	color: #FFFFFF;
}

.section-title__lines {
	align-items: center;
	display: flex;
	gap: 0rem;
	height: 0.4rem;
	left: 50%;
	opacity: 0;
	position: absolute;
	top: 7.2rem;
	transform: translateX(-50%);
	transition: opacity 0.6s ease-out 0.3s;
	width: 10rem;
}

.section-title__line {
	display: inline-block;
	height: 0.4rem;
}

.section-title__line--gray {
	background: #D9D9DB;
	border-radius: 0.2rem;
	height: 0.4rem;
	width: 10rem;
}

.section-title__line--blue {
	background: linear-gradient(to right, #2C2CC2 22%, #12C7FC 100%);
	border-radius: 0.2rem;
	height: 0.4rem;
	left: 0;
	position: absolute;
	top: 0;
	transition: width 0.8s ease-out 0.5s;
	width: 0;
}

.section-title.aos-animate .section-title__text {
	opacity: 1;
	transform: translateY(0);
}

.section-title.aos-animate .section-title__lines {
	opacity: 1;
}

.section-title.aos-animate .section-title__line--blue {
	width: 5rem;
}

.page-mv {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 27.1rem;
	justify-content: center;
	margin-top: 7.5rem;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.page-mv__bg {
	background-image: url("../img/mv-bg-j.webp");
	background-position: center;
	background-size: cover;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

.page-mv__en {
	color: #73BFED;
	font-family: "Afacad Flux", sans-serif;
	font-size: 10rem;
	font-weight: 400;
	line-height: 0.39;
	margin-bottom: 1rem;
	position: relative;
	z-index: 3;
}

.page-mv__title {
	color: #FFFFFF;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 5rem;
	font-weight: 500;
	letter-spacing: 0.07em;
	line-height: 1.45;
	margin-top: -2.5rem;
	position: relative;
	text-shadow: 0px 4px 4px rgba(44, 44, 194, 0.5);
	z-index: 3;
}

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

html {
	font-size: 2.6666666667vw;
}

}

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

.p-formBtn input:disabled:hover {
	cursor: not-allowed;
}

.p-formBtn input:hover {
	opacity: 0.7;
	transition: opacity 0.5s;
}

}

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

html {
	font-size: 0.8333333333vw;
}

}

@media (max-width: 767px) {

.inner {
	padding-inline: 2rem;
}

.pc_only {
	display: none;
}

.sp_only {
	display: block;
}

.u-sp-fz50 {
	font-size: 5rem !important;
}

.u-sp-fz40 {
	font-size: 4rem !important;
}

.u-sp-fz24 {
	font-size: 2.4rem !important;
}

.u-sp-tc {
	text-align: center;
}

.header__inner {
	height: 6rem;
	margin-left: 2rem;
}

.header__logo {
	font-size: 1.8rem;
}

.header__nav {
	display: none;
}

.header__hamburger {
	display: block;
}

.fv {
	height: 66.7rem;
}

.fv__background {
	background-position: 0;
	background-repeat: no-repeat;
}

.fv__polygon {
	height: 53rem;
	left: -13rem;
	top: 15rem;
	width: 48rem;
}

.fv__create-tomorrow {
	bottom: 3rem;
	font-size: 6rem;
	right: 1rem;
	text-align: right;
}

.fv__title {
	font-size: 3.6rem;
	left: 2rem;
	top: 38rem;
	width: 100%;
}

.fv__scroll {
	height: 15rem;
	left: 2rem;
}

.fv__scroll-text {
	font-size: 1.2rem;
}

.fv__scroll-line {
	height: 8rem;
}

.trouble {
	padding-bottom: 8rem;
	padding-top: 8rem;
}

.trouble__content {
	height: 58rem;
	margin-top: 7rem;
	overflow: hidden;
}

.trouble__bg {
	height: 10rem;
	top: 14rem;
}

.trouble__bg-2 {
	background: linear-gradient(90deg, #2C2CC2 21.99%, #12C7FC 100%);
	bottom: 5rem;
	content: "";
	height: 11rem;
	left: 0;
	position: absolute;
	width: 100%;
}

.trouble__people {
	gap: 6rem 2rem;
	grid-template-columns: repeat(2, 1fr);
	margin-inline: 2rem;
}

.trouble__person-text {
	font-size: 1.4rem;
	margin-top: 1rem;
}

.about {
	margin-top: -5rem;
	padding-top: 0;
}

.about__content .inner {
	gap: 3rem;
	grid-template-columns: 1fr;
	margin-bottom: 5rem;
	padding-bottom: 3rem;
	padding-top: 8rem;
}

.about__image-wrapper {
	aspect-ratio: 508/334;
	height: auto;
	width: 100%;
}

.about__text {
	width: 100%;
}

.about__text p {
	font-size: 1.4rem;
}

.reason {
	padding-bottom: 25rem;
	padding-top: 1rem;
}

.reason__cards {
	flex-direction: column;
	gap: 9rem;
	margin-top: 13rem;
}

.reason__card {
	padding: 3rem 2rem 5rem;
	width: 100%;
}

.reason__card-number {
	top: -6.5rem;
	width: 7rem;
}

.reason__card-icon {
	height: 15rem;
	width: 15rem;
}

.reason__card-title {
	font-size: 1.8rem;
}

.reason__card-text {
	font-size: 1.4rem;
}

.corporate {
	margin-top: -8rem;
	padding-top: 0rem;
}

.corporate__cards {
	background: url("../img/about-bg-p.webp") no-repeat top/cover;
	padding-bottom: 8rem;
}

.corporate__cards .inner {
	gap: 2rem;
	padding-top: 8rem;
}

.corporate__card {
	padding: 3rem 1.5rem;
	width: calc((100% - 2rem) / 2);
}

.corporate__card-icon {
	height: 10rem;
	margin-bottom: 1.5rem;
	width: 10rem;
}

.corporate__card-title {
	font-size: 1.6rem;
}

.corporate__contact {
	margin-top: 4rem;
}

.corporate__contact-link {
	font-size: 1.4rem;
	padding-top: 2rem;
}

.insurance-companies {
	padding-bottom: 34rem;
	padding-top: 8rem;
}

.insurance-companies__logos {
	align-items: center;
	flex-direction: column;
	gap: 5rem;
	margin-top: 8rem;
	padding: 4rem 6rem;
}

.insurance-companies__logo-container {
	height: auto;
	max-width: 20rem;
	width: 100%;
}

.news {
	margin-top: -18rem;
	padding-bottom: 8rem;
	padding-top: 0rem;
}

.news__list {
	margin-top: 7rem;
}

.news__item {
	flex-direction: column;
	padding: 1.5rem 0.3rem;
}

.news__date {
	margin-bottom: 0.5rem;
	width: 100%;
}

.news__text {
	font-size: 1.4rem;
	margin-left: 1.5rem;
}

.contact {
	padding-bottom: 7rem;
	padding-top: 7rem;
}

.contact__tel {
	font-size: 3.6rem;
	margin-top: 5rem;
}

.contact__tel span {
	font-size: 2rem;
}

.contact__button-wrapper {
	margin-top: 3rem;
}

.contact__button {
	font-size: 1.4rem;
	height: 6rem;
	padding: 0rem 0rem 0rem 2rem;
	width: 28rem;
}

.contact__button-arrow {
	width: 3rem;
}

.contact__button:hover .contact__button-arrow {
	width: 4rem;
}

.access {
	padding-bottom: 8rem;
	padding-top: 8rem;
}

.access__content {
	margin-top: 8rem;
}

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

.footer__content .inner {
	flex-direction: column;
	padding-inline: 2rem;
}

.footer__info {
	margin-top: 3rem;
	text-align: center;
}

.footer__company-name {
	font-size: 2rem;
}

.footer__address {
	font-size: 1.3rem;
}

.footer__nav {
	align-items: center;
	flex-direction: column;
	gap: 2rem;
	margin-top: 4rem;
}

.footer__nav-item {
	margin-bottom: 1.5rem;
	text-align: center;
}

.footer__nav-link {
	font-size: 1.3rem;
}

.pagetop {
	bottom: 1rem;
	height: 5rem;
	right: 1rem;
	width: 5rem;
}

.home-inner {
	padding-bottom: 50px;
	padding-bottom: 5rem;
	width: 100%;
}

.home__ttl {
	line-height: 1.3;
	margin-top: 30px;
	margin-top: 3rem;
}

.top-news__grid {
	grid-template-columns: 1fr;
}

.blog-archive {
	padding: 3rem 0 6rem;
}

.blog-archive__title {
	font-size: 2rem;
	margin-bottom: 3rem;
}

.blog-archive__description {
	font-size: 1.5rem;
	line-height: 1.5;
	margin-bottom: 3rem;
}

.blog-archive__no-posts {
	font-size: 1.6rem;
	padding: 3rem 0;
}

.blog-list {
	margin-bottom: 4rem;
}

.blog-list__grid {
	gap: 2rem;
	grid-template-columns: 1fr;
}

.blog-card {
	border-radius: 0.4rem;
}

.blog-card__category {
	font-size: 1.2rem;
	padding: 0.4rem 1rem;
}

.blog-card__content {
	padding: 1.5rem;
}

.blog-card__title {
	font-size: 1.6rem;
	margin-bottom: 0.8rem;
}

.blog-card__date {
	font-size: 1.2rem;
}

.pagination {
	margin-top: 3rem;
}

.pagination .page-numbers {
	font-size: 1.4rem;
	height: 3.5rem;
	margin: 0 0.3rem;
	min-width: 3.5rem;
}

.content-area {
	padding: 3rem 0 5rem;
}

.content-area__article {
	border-radius: 0.4rem;
	margin-bottom: 3rem;
	padding: 2rem;
}

.content-area__header {
	margin-bottom: 2rem;
}

.content-area__meta {
	gap: 1rem;
	margin-bottom: 1rem;
}

.content-area__date {
	font-size: 1.4rem;
}

.content-area__title {
	font-size: 2.2rem;
	margin-top: 1rem;
}

.content-area__thumbnail {
	border-radius: 0.4rem;
	margin-bottom: 2rem;
}

.content-area__content {
	font-size: 1.5rem;
	margin-bottom: 3rem;
}

.content-area__content h2 {
	font-size: 2rem;
	margin: 3rem 0 1.5rem;
}

.content-area__content h3 {
	font-size: 1.8rem;
	margin: 2.5rem 0 1.5rem;
}

.content-area__content h4 {
	font-size: 1.6rem;
	margin: 2rem 0 1rem;
}

.content-area__content p {
	margin-bottom: 1.5rem;
}

.content-area__content ul,
.content-area__content ol {
	margin: 1.5rem 0 1.5rem 2rem;
}

.content-area__content li {
	margin-bottom: 0.8rem;
}

.content-area__content blockquote {
	margin: 1.5rem 0;
	padding: 1.5rem;
}

.content-area__content img {
	margin: 1.5rem 0;
}

.content-area__content table {
	margin: 1.5rem 0;
}

.content-area__content th,
.content-area__content td {
	padding: 0.8rem;
}

.content-area__footer {
	margin-top: 3rem;
}

.content-area__tags {
	margin-bottom: 2rem;
}

.content-area__tags a {
	font-size: 1.2rem;
	padding: 0.4rem 1rem;
}

.post-navigation__prev a {
	font-size: 1.4rem;
	min-width: 18rem;
	padding: 1rem 2rem;
}

.related-posts {
	border-radius: 0.4rem;
	padding: 2rem;
}

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

.related-posts__title:after {
	margin-top: 1rem;
	width: 3rem;
}

.related-posts__list {
	gap: 2rem;
	grid-template-columns: 1fr;
}

.related-posts__image {
	border-radius: 0.4rem;
	margin-bottom: 1rem;
}

.related-posts__item-title {
	font-size: 1.5rem;
	margin-bottom: 0.6rem;
}

.related-posts__date {
	font-size: 1.2rem;
}

.error-404 {
	padding: 5rem 0 8rem;
}

.error-404__container {
	border-radius: 0.4rem;
	padding: 4rem 2rem;
}

.error-404__code {
	font-size: 8rem;
	margin-bottom: 1.5rem;
}

.error-404__title {
	font-size: 2.4rem;
	margin-bottom: 2rem;
}

.error-404__message {
	font-size: 1.6rem;
	line-height: 1.5;
	margin-bottom: 3rem;
}

.error-404__button {
	font-size: 1.5rem;
	padding: 1.2rem 3rem;
}

.error-404__suggestions {
	margin-top: 4rem;
}

.error-404__suggestion-title {
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
}

.error-404__suggestion-list {
	gap: 0.8rem;
}

.error-404__suggestion-item {
	font-size: 1.5rem;
}

#breadcrumb.inner {
	padding-left: 0;
	padding-left: 0rem;
	padding-right: 0;
	padding-right: 0rem;
}

.page-contact {
	margin-bottom: 10rem;
	margin-top: 6rem;
}

.contact-form__content {
	gap: 3rem;
}

.contact-form__row {
	gap: 3rem;
	grid-template-columns: 1fr;
}

.contact-form__checkbox-group {
	gap: 1rem 2rem;
}

.contact-form__checkbox-group .wpcf7-checkbox {
	gap: 1.6rem 4rem;
}

.contact-form__privacy {
	margin-top: 1.6rem;
}

.p-contact__inner {
	max-width: 550px;
	padding-left: 15px;
	padding-right: 15px;
}

.p-form__item {
	align-items: flex-start;
	flex-direction: column;
	margin-left: auto;
	margin-right: auto;
}

.p-form__title {
	padding: 0 10px;
	width: 100%;
}

.p-form__title--type02 {
	align-items: flex-start;
	flex-direction: column;
}

.p-form__input {
	margin-top: 10px;
	padding: 0 10px;
	width: 100%;
}

.p-formInput input {
	height: 50px;
	margin-left: 0;
	padding-left: 15px;
	width: 100%;
}

.p-formInput--sm input {
	width: 100%;
}

.p-formInput__post input {
	width: 100%;
}

.p-formInput__address input {
	width: 100%;
}

.p-formSelect select {
	height: 50px;
	width: 100%;
}

.p-formDate__flex {
	align-items: flex-start;
	gap: 20px;
}

.p-form__dataBlock {
	flex: 1;
}

.p-form__dataBlockLabel {
	display: none;
}

.p-form__dataBlockDate {
	width: 100%;
}

.p-formCalendar input {
	height: 50px;
	width: 100%;
}

.Android .p-formCalendar input {
	padding-left: 15px;
}

.p-form__dataBlockSelect {
	width: 100%;
}

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

.p-formNumber__blockLabel01 {
	width: 55px;
}

.p-formNumber__blockInput {
	flex: 1;
	margin-right: 20px;
}

.p-formTextarea textarea {
	margin-left: 0;
	min-height: 300px;
	padding-left: 15px;
	width: 100%;
}

.p-form__privacy {
	text-align: left;
}

.p-form__acceptance {
	text-align: left;
}

.p-form__submit {
	margin-top: 30px;
}

.wpcf7 form.sent .wpcf7-response-output {
	font-size: 16px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	font-size: 16px;
}

.thanks {
	padding: 6rem 0;
}

.thanks__title {
	font-size: 2.4rem;
	margin-bottom: 3rem;
}

.thanks__text {
	margin-bottom: 4rem;
}

.company {
	padding: 5rem 0 6rem;
}

.company-info {
	margin-top: 5rem;
	padding: 0;
}

.company-info__table {
	border-spacing: 0.4rem 0.4rem;
}

.company-info__header {
	font-size: 1.4rem;
	height: 6rem;
	padding: 1rem 0.5rem;
	width: 10rem;
}

.company-info__header--large {
	height: 12rem;
}

.company-info__header--xlarge {
	height: 14rem;
}

.company-info__data {
	font-size: 1.4rem;
	height: 6rem;
	padding: 1rem 1.5rem;
	width: calc(100% - 10rem);
}

.company-info__data--large {
	height: 12rem;
}

.company-info__data--xlarge {
	height: 14rem;
}

.company-message {
	padding: 6rem 0;
}

.company-message__inner {
	padding: 0 2rem;
}

.company-message__content {
	margin-top: 5rem;
}

.company-message__text {
	font-size: 1.4rem;
	line-height: 2;
	margin-bottom: 3rem;
}

.company-message__signature {
	margin-top: 4rem;
}

.company-message__company {
	font-size: 1.6rem;
}

.company-message__name {
	width: 16rem;
}

.company-message__decoration--left {
	bottom: 6rem;
	height: 15rem;
	width: 15rem;
}

.company-message__decoration--right {
	bottom: 2rem;
	height: 8rem;
	left: 10rem;
	width: 8rem;
	z-index: -1;
}

.service-tab-box {
	padding-bottom: 2rem;
}

.service__tabs {
	gap: 0.8rem;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 4rem;
}

.service__tab {
	height: 7rem;
	padding: 1.5rem 1rem;
}

.service__tab-text {
	font-size: 1.2rem;
}

.business-construction {
	margin-top: 4rem;
}

.business-construction__inner {
	margin-bottom: 4rem;
	padding: 8rem 0;
}

.business-construction__content {
	margin-top: 6rem;
}

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

.business-construction__description {
	font-size: 1.4rem;
	margin-top: 3rem;
}

.business-construction__risks {
	align-items: center;
	flex-direction: column;
	gap: 3rem;
}

.business-construction__risk-item {
	height: 28rem;
	width: 28rem;
}

.business-construction__risk-icon {
	height: 10rem;
}

.business-construction__risk-icon img {
	height: 10rem;
	width: 10rem;
}

.business-construction__risk-icon {
	height: 10rem;
	margin-top: -1rem;
}

.business-construction__risk-text {
	font-size: 1.6rem;
	margin-top: 0rem;
}

.business-transport {
	margin-top: 4rem;
}

.business-transport__inner {
	margin-bottom: 4rem;
	padding: 8rem 0;
}

.business-transport__content {
	margin-top: 6rem;
}

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

.business-transport__description {
	font-size: 1.4rem;
	margin-top: 3rem;
}

.business-transport__risks {
	align-items: center;
	flex-direction: column;
	gap: 3rem;
}

.business-transport__risk-item {
	height: 28rem;
	width: 28rem;
}

.business-transport__risk-icon {
	height: 10rem;
}

.business-transport__risk-icon img {
	height: 10rem;
	width: 10rem;
}

.business-transport__risk-icon {
	height: 10rem;
	margin-top: -1rem;
}

.business-transport__risk-text {
	font-size: 1.6rem;
	margin-top: 0rem;
}

.business-it {
	margin-top: 4rem;
}

.business-it__inner {
	margin-bottom: 4rem;
	padding: 8rem 0;
}

.business-it__content {
	margin-top: 6rem;
}

.business-it__risks {
	align-items: center;
	flex-direction: column;
	gap: 3rem;
}

.business-it__risks {
	margin-bottom: 3rem;
}

.business-it__risk-item {
	height: 28rem;
	width: 28rem;
}

.business-it__risk-icon {
	height: 10rem;
}

.business-it__risk-icon img {
	height: 10rem;
	width: 10rem;
}

.business-it__risk-icon {
	height: 10rem;
	margin-top: -1rem;
}

.business-it__risk-icon img {
	height: auto;
	width: 13rem;
}

.business-it__risk-text {
	font-size: 1.6rem;
	margin-top: 0rem;
}

.business-it__risk-text {
	margin-top: 1.6rem;
}

.business-it__descriptions {
	flex-direction: column;
	gap: 2rem;
}

.business-it__description {
	font-size: 1.4rem;
	margin-top: 3rem;
}

.business-it__description {
	max-width: 100%;
}

.business-welfare {
	margin-top: 4rem;
}

.business-welfare {
	margin-bottom: 10rem;
}

.business-welfare__inner {
	margin-bottom: 4rem;
	padding: 8rem 0;
}

.business-welfare__content {
	margin-top: 6rem;
}

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

.business-welfare__description {
	font-size: 1.4rem;
	margin-top: 3rem;
}

.personal-insurance__inner {
	margin-bottom: 4rem;
	padding: 8rem 0;
}

.personal-insurance__content {
	margin-top: 4rem;
}

.personal-insurance__intro {
	margin-bottom: 4rem;
	padding: 2rem 1.5rem;
}

.personal-insurance__intro-text {
	font-size: 1.6rem;
	margin-bottom: 0.5rem;
}

.personal-insurance__intro-description {
	font-size: 1.4rem;
	line-height: 1.8;
}

.personal-insurance__item {
	margin-bottom: 4rem;
}

.personal-insurance__item-title {
	margin-bottom: 1.5rem;
}

.personal-insurance__item-title-text {
	font-size: 1.6rem;
}

.personal-insurance__item-description {
	font-size: 1.4rem;
	line-height: 1.8;
}

.personal-life-insurance {
	margin-bottom: 10rem;
}

.personal-life-insurance__inner {
	margin-bottom: 4rem;
	padding: 8rem 0;
}

.personal-life-insurance__content {
	margin-top: 4rem;
}

.personal-life-insurance__intro {
	margin-bottom: 4rem;
	padding: 2rem 1.5rem;
}

.personal-life-insurance__intro-text {
	font-size: 1.6rem;
	margin-bottom: 0.5rem;
}

.personal-life-insurance__intro-description {
	font-size: 1.4rem;
	line-height: 1.8;
}

.personal-life-insurance__item {
	margin-bottom: 4rem;
}

.personal-life-insurance__item-title {
	margin-bottom: 1.5rem;
}

.personal-life-insurance__item-title-text {
	font-size: 1.6rem;
}

.personal-life-insurance__item-description {
	font-size: 1.4rem;
	line-height: 1.8;
}

.solicitation-policy {
	padding: 4rem 0 10rem;
}

.solicitation-policy__title {
	font-size: 2.4rem;
	margin-bottom: 4rem;
}

.solicitation-policy__introduction {
	font-size: 1.4rem;
	margin-bottom: 3rem;
}

.solicitation-policy__section {
	margin-bottom: 3rem;
}

.solicitation-policy__section-title {
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
}

.solicitation-policy__section-content {
	font-size: 1.4rem;
}

.solicitation-policy__section-content p {
	margin-bottom: 1.5rem;
}

.solicitation-policy__line {
	margin: 3rem 0;
}

.privacy-policy {
	padding: 4rem 0 12rem;
}

.privacy-policy__title {
	font-size: 2.4rem;
	margin-bottom: 4rem;
}

.privacy-policy__introduction {
	font-size: 1.4rem;
	margin-bottom: 3rem;
}

.privacy-policy__section {
	margin-bottom: 3rem;
}

.privacy-policy__section-title {
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
}

.privacy-policy__section-content {
	font-size: 1.4rem;
}

.privacy-policy__section-content p {
	margin-bottom: 1.5rem;
}

.privacy-policy__line {
	margin: 3rem 0;
}

.privacy-policy__list-item {
	margin-bottom: 1.5rem;
}

.privacy-policy__list-item::before {
	height: 0.5rem;
	top: 1rem;
	width: 0.5rem;
}

.claim {
	padding: 6rem 0 10rem;
}

.claim__title {
	font-size: 2.4rem;
	margin-bottom: 4rem;
}

.claim__section {
	margin-bottom: 3rem;
}

.claim__section-title {
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
}

.claim__title-lines {
	margin-bottom: 3rem;
	margin-top: 1.5rem;
}

.claim__title-line:last-child {
	width: 18rem;
}

.claim__contact-box {
	gap: 1rem;
	grid-template-columns: 1fr;
	margin-top: 3rem;
}

.claim__company-info {
	padding: 2rem 1.5rem;
}

.claim__company-name {
	font-size: 1.6rem;
	margin-bottom: 0.8rem;
}

.claim__contact-info {
	padding-block: 0rem;
	padding-inline: 1.5rem;
}

.claim__address {
	font-size: 1.4rem;
}

.claim__contact-details {
	font-size: 1.4rem;
}

.claim__description {
	font-size: 1.4rem;
	margin-bottom: 3rem;
}

.claim__insurance-box {
	gap: 0.5rem;
	grid-template-columns: 1fr;
}

.claim__insurance-name {
	font-size: 1.6rem;
	padding: 2rem;
}

.claim__insurance-url {
	font-size: 1.4rem;
	justify-self: start;
	margin-bottom: 2rem;
	padding-inline: 2rem;
}

.archive-page {
	padding: 3rem 0 6rem;
}

.archive-header {
	margin-bottom: 3rem;
}

.archive-header__title {
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1.2rem;
}

.archive-header__title:after {
	width: 4rem;
}

.archive-header__description {
	font-size: 1.4rem;
	line-height: 1.5;
}

.category-nav {
	margin-bottom: 3rem;
}

.category-nav__list {
	gap: 1rem;
}

.category-nav__link {
	font-size: 1.3rem;
	padding: 0.6rem 1.5rem;
}

.archive-list {
	margin-bottom: 4rem;
}

.archive-list__grid {
	gap: 2rem;
	grid-template-columns: 1fr;
}

.archive-card {
	border-radius: 0.4rem;
}

.archive-card__category {
	font-size: 1.2rem;
	padding: 0.4rem 1rem;
}

.archive-card__content {
	padding: 1.5rem;
}

.archive-card__title {
	font-size: 1.6rem;
	margin-bottom: 0.8rem;
}

.archive-card__date {
	font-size: 1.2rem;
}

.archive-card__tag {
	font-size: 1.1rem;
}

.archive-pagination {
	margin-top: 3rem;
}

.archive-pagination .page-numbers {
	font-size: 1.4rem;
	height: 3.5rem;
	margin: 0 0.3rem;
	min-width: 3.5rem;
}

.archive-no-posts {
	font-size: 1.6rem;
	padding: 3rem 0;
}

.section-title {
	width: 100%;
}

.section-title__text-group {
	justify-content: center;
	width: 100%;
}

.section-title__text {
	font-size: 2.4rem;
	text-align: center;
}

.section-title__lines {
	top: 5rem;
	width: 8rem;
}

.section-title__line--gray {
	width: 8rem;
}

.section-title__line--blue {
	width: 0;
}

.section-title.aos-animate .section-title__line--blue {
	width: 4rem;
}

.page-mv {
	height: 20rem;
	margin-top: 6rem;
}

.page-mv__en {
	font-size: 6.5rem;
	margin-bottom: 0.5rem;
}

.page-mv__title {
	font-size: 2.8rem;
	letter-spacing: 0.05em;
	margin-top: -1.4rem;
}

}

@media print {

.page__wrapper h1 {
	page-break-before: always;
}

.page__wrapper h1,
.page__wrapper h2,
.page__wrapper h3,
.page__wrapper h4,
.page__wrapper h5,
.page__wrapper h6 {
	page-break-after: avoid;
}

.page__wrapper ul,
.page__wrapper ol,
.page__wrapper dl {
	page-break-before: avoid;
}

}

@keyframes pulse {

0% {
	transform: scale(1);
}

50% {
	transform: scale(1.05);
}

100% {
	transform: scale(1);
}

}

@keyframes stretchLine {

0% {
	height: 0;
	top: 0;
}

50% {
	height: 100%;
	top: 0;
}

100% {
	height: 0;
	top: 100%;
}

}

@keyframes fadeInOut {

0%,100% {
	opacity: 0.5;
}

50% {
	opacity: 1;
}

}

@keyframes scrollDown {

0% {
	top: 0;
}

100% {
	top: 100%;
}

}


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