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

* {
	box-sizing: border-box;
}

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

html {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

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

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

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

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

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

html {
	scroll-behavior: smooth;
}

html {
	margin-top: 0 !important;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: #FEFFFC;
	color: #1A1A1A;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.6;
	margin: 0;
	padding: 0;
}

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

img {
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}

button {
	font-family: inherit;
}

input,
textarea,
select {
	font-family: inherit;
}

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

.c-btn {
	align-items: center;
	background: #E18700;
	border: 1px solid transparent;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 20px;
	font-weight: 700;
	gap: 12px;
	height: 58px;
	justify-content: center;
	min-width: 380px;
	padding: 17px 50px;
	position: relative;
	text-decoration: none;
	transition: all 0.3s ease;
}

.c-btn:hover,
.c-btn:active {
	background: #ffffff;
	border: 1px solid #E18700;
	color: #E18700;
}

.c-btn:hover svg,
.c-btn:active svg {
	fill: #E18700;
}

.c-btn:hover svg path,
.c-btn:active svg path {
	fill: #E18700;
}

.c-btn svg {
	bottom: 9px;
	position: absolute;
	right: 7px;
}

.section-divider {
	line-height: 0;
	position: relative;
	text-align: center;
	z-index: 2;
}

.section-divider img {
	display: inline-block;
	transform: translateY(-50%);
}

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

.section-title__ja {
	color: #1A1A1A;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0;
}

.section-title__en {
	color: #497CED;
	font-family: "Roboto", "Inter", sans-serif;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.05em;
	margin: 4px 0 0;
}

.header {
	background: #497CED;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 50;
}

.header__inner {
	align-items: center;
	display: flex;
	height: 69px;
	justify-content: space-between;
	margin: 0 auto;
	padding: 20px 20px 20px 100px;
}

.header__logo a {
	color: #444;
	font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", "Inter", sans-serif;
	font-size: 30px;
	font-weight: 800;
	text-decoration: none;
}

.header__nav {
	display: none;
}

.header__nav-list {
	align-items: center;
	display: flex;
	gap: 40px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.header__nav-link {
	color: #ffffff;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	transition: color 0.3s ease;
}

.header__contact-btn {
	align-items: center;
	background: #E18700;
	color: #ffffff;
	display: flex;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 13px;
	font-weight: 700;
	height: 69px;
	justify-content: center;
	margin-left: 40px;
	margin-right: -20px;
	text-decoration: none;
	transition: opacity 0.3s ease;
	width: 126px;
}

.header__contact-btn:hover {
	opacity: 0.85;
}

.drawer-icon {
	background: transparent;
	border: none;
	cursor: pointer;
	height: 24px;
	position: relative;
	width: 24px;
	z-index: 45;
}

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

.drawer-icon__bar:nth-of-type(1) {
	top: 2px;
}

.drawer-icon__bar:nth-of-type(2) {
	top: 10px;
}

.drawer-icon__bar:nth-of-type(3) {
	top: 18px;
}

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

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

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

.drawer-content {
	inset: 0;
	position: fixed;
	transition: visibility 0.3s;
	visibility: hidden;
	z-index: 40;
}

.drawer-content.is-checked {
	visibility: visible;
}

.drawer-content.is-checked .drawer-content__overlay {
	opacity: 1;
}

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

.drawer-content__overlay {
	background: #4f4f4f;
	cursor: pointer;
	inset: 0;
	opacity: 0;
	position: absolute;
	transition: opacity 0.3s ease;
}

.drawer-content__panel {
	background: #ffffff;
	height: calc(100% - 52px);
	overflow-y: auto;
	position: absolute;
	right: 0;
	top: 52px;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	width: calc(100% - 40px);
}

.drawer-content__menu {
	padding: 64px 48px 40px;
}

.drawer-content__list {
	display: flex;
	flex-direction: column;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.drawer-content__link {
	color: #444;
	display: block;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	text-decoration: none;
}

.drawer-content__cta {
	align-items: center;
	background: #E18700;
	border-radius: 24px;
	color: #ffffff;
	display: flex;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 13px;
	font-weight: 700;
	height: 39px;
	justify-content: center;
	margin-top: 32px;
	text-decoration: none;
	transition: opacity 0.3s ease;
	width: 100%;
}

.drawer-content__cta:hover {
	opacity: 0.85;
}

.fv {
	height: 752px;
	margin-top: 69px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.fv__bg {
	background: #497CED;
	inset: 0;
	position: absolute;
}

.fv__image {
	background: url("../img/fv_bg.jpg") center/cover no-repeat;
	height: 85%;
	position: absolute;
	right: 0;
	top: 0;
	width: 81.7%;
}

.fv__content {
	left: 6%;
	position: absolute;
	top: 15%;
	z-index: 2;
}

.fv__keywords {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.fv__keyword {
	align-items: center;
	background: #ffffff;
	border: 2px solid #497CED;
	color: #050505;
	display: inline-flex;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 40px;
	font-weight: 900;
	justify-content: center;
	line-height: 1.2;
	padding: 10px 20px;
}

.fv__keyword-divider {
	align-items: center;
	display: inline-flex;
	margin: 0 -14px;
	position: relative;
	z-index: 1;
}

.fv__keyword-slash {
	color: #050505;
	font-size: 28px;
	font-weight: 900;
}

.fv__keyword-nara {
	color: #050505;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 35px;
	font-weight: 900;
	margin-left: 4px;
}

.fv__title::after {
	background: #050505;
	content: "";
	display: block;
	height: 2px;
	width: 74%;
}

.fv__line {
	display: flex;
	justify-content: center;
	margin-top: -25px;
	position: relative;
	z-index: 10;
}

.miurack-hero {
	align-items: center;
	display: flex;
	height: 238px;
	justify-content: center;
	margin-top: 68px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.miurack-hero__bg {
	background: url("../img/about_hero.jpg") center/cover no-repeat;
	inset: 0;
	position: absolute;
	z-index: 0;
}

.miurack-hero__overlay {
	background: rgba(51, 65, 108, 0.85);
	inset: 0;
	position: absolute;
}

.miurack-hero__content {
	align-items: center;
	display: flex;
	justify-content: center;
	margin: 0 auto;
	max-width: 1200px;
	padding: 55px 20px;
	position: relative;
	width: 100%;
	z-index: 1;
}

.miurack-hero__title {
	color: #FEFFFC;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-align: center;
}

.miurack-breadcrumb {
	align-items: center;
	color: #333333;
	display: flex;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 12px;
	gap: 11px;
}

.miurack-breadcrumb a {
	color: #333333;
	text-decoration: none;
}

.miurack-breadcrumb a:hover {
	text-decoration: underline;
}

.miurack-breadcrumb__arrow {
	align-items: center;
	display: inline-flex;
}

.miurack-intro {
	background: url("../img/about_intro_bg.jpg") center/cover no-repeat;
	padding: 55px 0;
	position: relative;
	width: 100%;
}

.miurack-intro::before {
	background: rgba(255, 255, 255, 0.8);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 0;
}

.miurack-intro__inner {
	display: flex;
	flex-direction: column;
	gap: 41px;
	margin: 0 auto;
	max-width: 1080px;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.miurack-intro__heading {
	color: #497CED;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.9px;
	line-height: 48px;
}

.miurack-intro__body {
	align-items: center;
	display: flex;
	gap: 89px;
}

.miurack-intro__img-wrap {
	flex-shrink: 0;
	height: 352px;
	min-width: 459px;
	position: relative;
	width: 459px;
}

.miurack-intro__img-wrap img {
	-o-object-fit: cover;
	height: 339px;
	object-fit: cover;
	position: relative;
	width: 446px;
	z-index: 1;
}

.miurack-intro__img-accent {
	background: #497CED;
	height: 339px;
	left: 13px;
	position: absolute;
	top: 12px;
	width: 446px;
	z-index: 0;
}

.miurack-intro__text {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.5px;
	line-height: 26px;
}

.miurack-intro__text strong {
	font-weight: 700;
}

.miurack-intro__text p + p {
	margin-top: 16px;
}

.miurack-section-heading__text {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 34px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 48px;
}

.miurack-section-heading__line {
	align-items: center;
	display: flex;
	gap: 0;
	margin-top: 8px;
}

.miurack-section-heading__line-long {
	background: #E18700;
	display: block;
	height: 2px;
	width: 100px;
}

.miurack-section-heading__line-short {
	background: #1A1A1A;
	display: block;
	flex: 1;
	height: 2px;
}

.miurack-features {
	background: #ffffff;
	padding: 80px 220px;
}

.miurack-features__inner {
	display: flex;
	flex-direction: column;
	gap: 80px;
	margin: 0 auto;
	max-width: 1000px;
}

.miurack-features__cards {
	display: flex;
	gap: 5.07vw;
	justify-content: center;
}

.miurack-features__card {
	align-items: center;
	border: 3px solid #497CED;
	display: flex;
	flex-direction: column;
	gap: 1.11vw;
	padding: 1.67vw 2.22vw;
	width: 19.8vw;
}

.miurack-features__card-icon {
	align-items: center;
	display: flex;
	height: 8.61vw;
	justify-content: center;
	width: 8.61vw;
}

.miurack-features__card-icon svg {
	height: 100%;
	width: 100%;
}

.miurack-features__card-title {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 1.67vw;
	font-weight: 700;
	line-height: 1.2;
	margin-top: 1.11vw;
	text-align: center;
}

.miurack-features__card-text {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 1.11vw;
	font-weight: 400;
	letter-spacing: 0.5px;
	line-height: 1.625;
	text-align: center;
}

.miurack-spec {
	background: #ffffff;
	padding: 0 220px 80px;
}

.miurack-spec__inner {
	display: flex;
	flex-direction: column;
	gap: 60px;
	margin: 0 auto;
	max-width: 1000px;
}

.miurack-spec__size {
	box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.1);
	padding: 32px 24px;
}

.miurack-spec__size-heading {
	align-items: center;
	display: flex;
	gap: 15px;
	margin-bottom: 40px;
}

.miurack-spec__size-heading h3 {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 40px;
	font-weight: 700;
}

.miurack-spec__size-bar {
	background: #1A1A1A;
	display: block;
	height: 37px;
	width: 4px;
}

.miurack-spec__size-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.miurack-spec__size-images {
	align-items: flex-start;
	display: flex;
	gap: 40px;
}

.miurack-spec__size-img-main {
	flex: 1;
}

.miurack-spec__size-img-main img {
	-o-object-fit: cover;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.miurack-spec__size-img-sub {
	flex: 1;
	position: relative;
}

.miurack-spec__size-img-sub img {
	-o-object-fit: cover;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.miurack-spec__size-img-label {
	margin-bottom: 12px;
	text-align: center;
}

.miurack-spec__size-img-label span {
	background: #ffffff;
	border: 1px solid #497CED;
	color: #497CED;
	display: inline-block;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 24px;
	font-weight: 700;
	padding: 8px 8px;
}

.miurack-spec__size-note {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 16px;
	letter-spacing: 0.5px;
	text-align: right;
}

.miurack-spec__capacity {
	box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.1);
	margin-top: 20px;
	padding: 32px 24px;
}

.miurack-spec__capacity-heading {
	align-items: center;
	display: flex;
	gap: 15px;
	margin-bottom: 40px;
}

.miurack-spec__capacity-heading h3 {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 34px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 48px;
}

.miurack-spec__capacity-bar {
	background: #1A1A1A;
	display: block;
	height: 37px;
	width: 4px;
}

.miurack-spec__table {
	border-collapse: collapse;
	table-layout: fixed;
	width: 100%;
}

.miurack-spec__table th,
.miurack-spec__table td {
	border: 1px solid #050505;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 28px;
	font-weight: 500;
	padding: 5px 8px;
	text-align: center;
}

.miurack-spec__table th {
	background: #497CED;
	color: #FEFFFC;
}

.miurack-spec__table td {
	background: #ffffff;
	color: #050505;
}

.miurack-spec__custom {
	border: 1px solid #060606;
	margin-top: 60px;
	padding: 40px 24px;
	position: relative;
}

.miurack-spec__custom-badge {
	background: #FEFFFC;
	border: 1px solid #060606;
	font-weight: 700;
	left: 50%;
	padding: 16px 32px;
	position: absolute;
	text-align: center;
	top: 0;
	transform: translate(-50%, -50%);
	white-space: nowrap;
	z-index: 1;
}

.miurack-spec__custom-badge p {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 32px;
	font-weight: 400;
	font-weight: 700;
}

.miurack-spec__custom-highlight {
	color: #497CED;
	font-weight: 700;
}

.miurack-spec__custom-cards {
	display: flex;
	gap: 48px;
	justify-content: center;
	width: 100%;
}

.miurack-spec__custom-card {
	overflow: hidden;
	width: 447px;
}

.miurack-spec__custom-card h4 {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.8px;
	padding: 30px 0 10px 0;
}

.miurack-spec__custom-card-img {
	height: 260px;
	width: 100%;
}

.miurack-spec__custom-card-img img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.miurack-cta {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 300px;
	overflow: hidden;
	position: relative;
}

.miurack-cta__bg {
	background: url("../img/about_cta_bg.jpg") center/cover no-repeat;
	inset: 0;
	position: absolute;
	z-index: 0;
}

.miurack-cta__overlay {
	background: rgba(255, 255, 255, 0.6);
	box-shadow: inset 0 8px 16px rgba(0, 0, 0, 0.15);
	inset: 0;
	position: absolute;
	z-index: 1;
}

.miurack-cta__inner {
	padding: 40px 20px;
	position: relative;
	text-align: center;
	z-index: 2;
}

.problem {
	background: #ffffff;
	padding: 80px 0;
}

.problem__inner {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 20px;
}

.problem__heading {
	color: #050505;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.6;
	margin-bottom: 40px;
	text-align: center;
}

.problem__heading span {
	color: #497CED;
	font-weight: 700;
}

.problem__worries {
	display: flex;
	gap: 80px;
	justify-content: center;
	margin-bottom: 30px;
}

.problem__worry {
	text-align: center;
}

.problem__worry-img {
	height: 201px;
	margin: 0 auto 12px;
	position: relative;
	width: 241px;
}

.problem__worry-img img {
	-o-object-fit: contain;
	height: 100%;
	inset: 0;
	object-fit: contain;
	position: absolute;
	width: 100%;
	z-index: 1;
}

.problem__worry-shape {
	-webkit-clip-path: ellipse(50% 50% at 50% 50%);
	background: #FAF5D0;
	clip-path: ellipse(50% 50% at 50% 50%);
	height: 100%;
	width: 100%;
}

.problem__worry-text {
	color: #050505;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
}

.problem__arrow {
	margin: 30px 0;
	text-align: center;
}

.problem__solution {
	margin-top: 40px;
	position: relative;
}

.problem__solution-inner {
	background: url("../img/solution_bg.jpg") center/cover no-repeat;
	border-radius: 10px;
	overflow: hidden;
	padding: 40px 60px;
	position: relative;
	text-align: center;
}

.problem__solution-inner::before {
	background: rgba(73, 124, 237, 0.6);
	content: "";
	inset: 0;
	position: absolute;
}

.problem__solution-inner > * {
	position: relative;
	z-index: 1;
}

.problem__solution-dots {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.problem__solution-dots span {
	background: #ffffff;
	border-radius: 50%;
	height: 4px;
	width: 4px;
}

.problem__solution-subtitle {
	color: #ffffff;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.6px;
	line-height: 1.6;
	margin-bottom: 16px;
}

.problem__solution-main {
	background: linear-gradient(90deg, rgba(73, 124, 237, 0) 0%, #3961BA 33.65%, #3961BA 65.38%, rgba(42, 71, 135, 0) 100%);
	margin-bottom: 16px;
	padding: 16px 0;
}

.problem__solution-main-text {
	color: #FFF;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0.9px;
	line-height: 140%;
	text-align: center;
}

.problem__solution-highlight {
	color: #EBD000;
}

.problem__solution-underline {
	text-decoration: underline;
	text-decoration-color: #ffffff;
	text-underline-offset: 4px;
}

.problem__solution-line {
	background: #ffffff;
	height: 1px;
	margin: 20px auto;
	max-width: 100%;
	width: 308px;
}

.problem__solution-detail {
	color: #ffffff;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.6px;
	line-height: 1.6;
}

.reason {
	background: #ffffff;
	padding: 21px 0 80px;
	position: relative;
}

.reason::after {
	background: #497CED;
	bottom: 0;
	content: "";
	height: 489px;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: 0;
}

.reason__inner {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.reason__cards {
	align-items: flex-start;
	display: flex;
	gap: 54px;
	margin-top: 60px;
}

.reason__card {
	box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.25);
	flex: 1;
	position: relative;
}

.reason__card--2 {
	margin-top: 50px;
}

.reason__card--3 {
	margin-top: 95px;
}

.reason__card-header {
	display: flex;
	position: relative;
}

.reason__card-header::before {
	background: linear-gradient(to bottom, #598DFF, #183A85);
	border-radius: 10px 10px 0 0;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.reason__card-header::after {
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 20px solid #183A85;
	bottom: -20px;
	content: "";
	height: 0;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 0;
}

.reason__card-label {
	color: #EBCF00;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 28px;
	font-weight: 700;
	padding: 0 20px 4px;
	position: relative;
	text-align: center;
	width: 100%;
	z-index: 1;
}

.reason__card-img {
	height: 223px;
	overflow: hidden;
	width: 100%;
}

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

.reason__card-body {
	background: #FAFAFA;
	padding: 18px 42px;
}

.reason__card-body p {
	color: #1A1A1A;
	font-family: "Inter", "Noto Sans JP", "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
}

.reason__btn-wrap {
	margin-top: 60px;
	text-align: center;
}

.technology {
	background: #ffffff;
	padding: 80px 0;
}

.technology__inner {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 20px;
}

.technology__banner {
	align-items: center;
	background: #1A366D;
	display: flex;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
	margin-top: 80px;
	max-width: 770px;
	min-height: 318px;
	padding: 0 50px 40px;
	position: relative;
}

.technology__banner-content {
	flex: 1;
	min-width: 0;
}

.technology__banner-line {
	background: #ffffff;
	display: inline-block;
	height: 2px;
	vertical-align: middle;
	width: 155px;
}

.technology__banner-sub1 {
	align-items: center;
	color: #ffffff;
	display: flex;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 24px;
	font-weight: 400;
	gap: 16px;
	justify-content: center;
	margin-bottom: 8px;
}

.technology__banner-company {
	color: #ffffff;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 23px;
	font-weight: 400;
	letter-spacing: 1.39px;
	text-align: center;
}

.technology__banner-title-wrap {
	background: #ffffff;
	display: inline-block;
	margin: 8px 0;
	padding: 10px 11px;
}

.technology__banner-title {
	color: #1A366D;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 42px;
	font-weight: 700;
	letter-spacing: 1.26px;
}

.technology__banner-product {
	color: #EBCF00;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 87px;
	font-weight: 700;
	letter-spacing: 2.61px;
	line-height: 1.6;
}

.technology__banner-patent-text {
	color: #ffffff;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 1.44px;
	margin-top: 8px;
}

.technology__banner-patent-number-wrap {
	border: 1px solid #ffffff;
	display: inline-block;
	margin-top: 0;
	padding: 0 5px;
}

.technology__banner-patent-number {
	color: #ffffff;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.72px;
}

.technology__banner-badge {
	align-items: center;
	align-self: flex-start;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	gap: 0;
}

.technology__badge-img {
	height: auto;
	width: 195px;
}

.technology__detail {
	display: flex;
	gap: 0;
	margin-top: 80px;
	position: relative;
}

.technology__detail-img {
	background: #d9d9d9 url("../img/technology_bg.jpg") center/cover no-repeat;
	height: 674px;
	position: relative;
	width: 82%;
}

.technology__detail-img::after {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(32, 32, 32, 0.5) 100%);
	content: "";
	inset: 0;
	position: absolute;
}

.technology__detail-text {
	background: #497CED;
	padding: 47px 54px;
	position: absolute;
	right: 0;
	top: 93px;
	width: 52%;
}

.technology__detail-lead {
	color: #ffffff;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.6;
	margin-bottom: 20px;
}

.technology__detail-line {
	background: #ffffff;
	height: 1px;
	margin: 20px 0;
	width: 80px;
}

.technology__detail-body {
	color: #ffffff;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.54px;
	line-height: 1.6;
}

.case {
	background: #F1F5FF;
	padding: 80px 0;
}

.case__inner {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 20px;
}

.case__cards {
	display: flex;
	gap: 54px;
	margin-top: 100px;
}

.case__card {
	color: inherit;
	display: block;
	flex: 1 1 0;
	min-width: 0;
	text-decoration: none;
}

.case__card-img {
	background: #d9d9d9;
	height: 240px;
	overflow: hidden;
	width: 100%;
}

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

.case__card-placeholder {
	background: #d9d9d9;
	height: 100%;
	width: 100%;
}

.case__card-content {
	padding: 24px 0;
}

.case__card-meta {
	align-items: center;
	display: flex;
	gap: 12px;
	margin-bottom: 12px;
}

.case__card-tag {
	align-items: center;
	background: #ffffff;
	border: 1px solid #777777;
	color: #777777;
	display: inline-flex;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 12px;
	font-weight: 500;
	padding: 1px 12px 2px;
}

.case__card-date {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 14px;
	font-weight: 400;
}

.case__card-title {
	color: #497CED;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 8px;
}

.case__card-company {
	color: #060606;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 4px;
}

.case__card-more {
	align-items: center;
	display: flex;
	gap: 8px;
	transition: gap 0.3s ease;
}

.case__card-more span {
	color: #777777;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 14px;
	font-weight: 700;
	transition: color 0.3s ease;
}

.case__card-more svg {
	transition: transform 0.3s ease;
}

.case__card:hover .case__card-more {
	gap: 12px;
}

.case__card:hover .case__card-more span {
	color: #497CED;
}

.case__card:hover .case__card-more svg {
	transform: translateX(4px);
}

.case__card:hover .case__card-more svg line {
	stroke: #497CED;
}

.case__card:hover .case__card-more svg polygon {
	fill: #497CED;
}

.case__btn-wrap {
	margin-top: 60px;
	text-align: center;
}

.flow-breadcrumb-wrap {
	padding: 90px 0 70px 6.25vw;
}

.flow-breadcrumb {
	align-items: center;
	color: #333333;
	display: flex;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 12px;
	gap: 11px;
}

.flow-breadcrumb a {
	color: #333333;
	text-decoration: none;
}

.flow-breadcrumb a:hover {
	text-decoration: underline;
}

.flow-breadcrumb__arrow {
	align-items: center;
	display: inline-flex;
}

.flow {
	background: #ffffff;
	padding: 0 20px 120px;
}

.flow__inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 48px;
	margin: 0 auto;
	max-width: 1000px;
}

.flow__intro {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 16px;
	line-height: 28px;
	text-align: center;
}

.flow__intro p + p {
	margin-top: 16px;
}

.flow__steps {
	display: flex;
	flex-direction: column;
	gap: 60px;
	position: relative;
	width: 100%;
}

.flow__timeline {
	background: #497CED;
	height: 100%;
	left: 20px;
	position: absolute;
	top: 0;
	width: 3px;
}

.flow__step {
	padding-left: 60px;
	position: relative;
}

.flow__step-dot {
	background: #497CED;
	border-radius: 50%;
	height: 19px;
	left: 12px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 19px;
	z-index: 1;
}

.flow__step-dot::before,
.flow__step-dot::after {
	background: #ffffff;
	content: "";
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 7px;
}

.flow__step-dot::before {
	bottom: 100%;
	height: 7px;
}

.flow__step-dot::after {
	height: 7px;
	top: 100%;
}

.flow__step-content {
	align-items: flex-start;
	display: flex;
	gap: 40px;
}

.flow__step-text {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 8px;
}

.flow__step-number {
	color: #497CED;
	font-family: "Roboto", "Inter", sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.flow__step-title {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
}

.flow__step-desc {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
}

.flow__step-img {
	flex-shrink: 0;
	height: 208px;
	min-width: 247px;
	position: relative;
	width: 247px;
}

.flow__step-img img {
	-o-object-fit: cover;
	display: block;
	height: 208px;
	object-fit: cover;
	position: relative;
	width: 247px;
	z-index: 1;
}

.flow__step-img-accent {
	background: #497CED;
	height: 100%;
	left: 10px;
	position: absolute;
	top: 10px;
	width: 100%;
	z-index: 0;
}

.works-breadcrumb-wrap {
	background: #F1F5FF;
	padding: 90px 0 70px 6.25vw;
	width: 100%;
}

.works-breadcrumb {
	align-items: center;
	background: #F1F5FF;
	color: #333333;
	display: flex;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 12px;
	gap: 11px;
}

.works-breadcrumb a {
	color: #333333;
	text-decoration: none;
}

.works-breadcrumb a:hover {
	text-decoration: underline;
}

.works-breadcrumb__arrow {
	align-items: center;
	display: inline-flex;
}

.works {
	background: #F2F6FF;
	padding: 0 20px 80px;
}

.works__inner {
	display: flex;
	flex-direction: column;
	gap: 48px;
	margin: 0 auto;
	max-width: 1080px;
}

.works__heading {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.works__title {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 34px;
	font-weight: 700;
}

.works__title-line {
	background: #8C8C8C;
	height: 2px;
	width: 100%;
}

.works__cards {
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(3, 1fr);
}

.works__no-posts {
	color: #777777;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 16px;
	grid-column: 1/-1;
	padding: 40px 0;
	text-align: center;
}

.works__card {
	color: inherit;
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	text-decoration: none;
	transition: box-shadow 0.3s ease;
	width: 100%;
}

.works__card-img {
	aspect-ratio: 16/10;
	overflow: hidden;
	width: 100%;
}

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

.works__card-placeholder {
	background: #F1F5FF;
	height: 100%;
	width: 100%;
}

.works__card-content {
	padding: 24px 0;
}

.works__card-meta {
	align-items: center;
	display: flex;
	gap: 12px;
	margin-bottom: 6px;
}

.works__card-tag {
	background: transparent;
	border: 1px solid #777777;
	color: #777777;
	display: inline-block;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 12px;
	font-weight: 500;
	padding: 1px 12px 2px;
}

.works__card-date {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 14px;
	font-weight: 400;
}

.works__card-title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: #497CED;
	display: -webkit-box;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 8px;
	overflow: hidden;
}

.works__card-company {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: #060606;
	display: -webkit-box;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 16px;
	overflow: hidden;
}

.works__card-company p {
	margin: 0;
	padding: 0;
}

.works__card-more {
	align-items: center;
	display: flex;
	gap: 8px;
	margin-top: 30px;
	transition: gap 0.3s ease;
}

.works__card-more span {
	color: #777777;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 14px;
	font-weight: 700;
	transition: color 0.3s ease;
}

.works__card-more svg {
	transition: transform 0.3s ease;
}

.works__card:hover .works__card-more {
	gap: 12px;
}

.works__card:hover .works__card-more span {
	color: #497CED;
}

.works__card:hover .works__card-more svg {
	transform: translateX(4px);
}

.works__card:hover .works__card-more svg line {
	stroke: #497CED;
}

.works__card:hover .works__card-more svg polygon {
	fill: #497CED;
}

.works__pagination {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: center;
}

.works__pagination .page-numbers {
	align-items: center;
	background: #ffffff;
	border: 1px solid #497CED;
	border-radius: 4px;
	color: #333333;
	display: inline-flex;
	font-family: "Roboto", "Inter", sans-serif;
	font-size: 16px;
	font-weight: 500;
	height: 44px;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
	width: 44px;
}

.works__pagination .page-numbers:hover {
	background: #F1F5FF;
}

.works__pagination .page-numbers.current {
	background: #497CED;
	border-color: #497CED;
	color: #ffffff;
	font-weight: 700;
}

.works__pagination .page-numbers.dots {
	border: none;
	font-size: 12px;
	width: auto;
}

.works__pagination .page-numbers.prev,
.works__pagination .page-numbers.next {
	background: #ffffff;
	border: 1px solid #497CED;
	border-radius: 4px;
}

.single-case-breadcrumb-wrap {
	background: #F2F6FF;
	padding: 90px 0 70px 6.25vw;
}

.single-case-breadcrumb {
	align-items: center;
	color: #333333;
	display: flex;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 12px;
	gap: 11px;
}

.single-case-breadcrumb a {
	color: #333333;
	text-decoration: none;
}

.single-case-breadcrumb a:hover {
	text-decoration: underline;
}

.single-case-breadcrumb__arrow {
	align-items: center;
	display: inline-flex;
}

.single-case {
	background: #F1F5FF;
	padding: 0 100px 120px;
}

.single-case__inner {
	margin: 0 auto;
	max-width: 1000px;
}

.single-case__card {
	background: #ffffff;
	padding: 31px 128px;
}

.single-case__content {
	display: flex;
	flex-direction: column;
	gap: 31px;
}

.single-case__header {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.single-case__title {
	color: #497CED;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 58px;
}

.single-case__company {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 26px;
	font-weight: 700;
	font-weight: 700;
	line-height: 58px;
	margin-bottom: 4px;
}

.single-case__title-line {
	background: #8C8C8C;
	height: 2px;
	width: 100%;
}

.single-case__thumbnail {
	height: 564px;
	overflow: hidden;
	width: 100%;
}

.single-case__thumbnail img {
	-o-object-fit: cover;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.single-case__tag-wrap {
	display: flex;
}

.single-case__tag {
	background: #ffffff;
	border: 1px solid #777777;
	color: #777777;
	display: inline-block;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 29px;
	padding: 6px 12px;
}

.single-case__body {
	color: #050505;
	display: flex;
	flex-direction: column;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	gap: 80px;
	letter-spacing: 0.5px;
	line-height: 26px;
}

.single-case__body h2 {
	border-left: 4px solid #497CED;
	color: #050505;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.7px;
	line-height: 26px;
	margin-bottom: 24px;
	padding-left: 16px;
}

.single-case__body h3 {
	color: #050505;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 13px;
}

.single-case__body p {
	margin-bottom: 0;
}

.single-case__body p + p {
	margin-top: 0;
}

.single-case__body strong {
	font-weight: 700;
}

.single-case__body img {
	height: auto;
	max-width: 100%;
}

.single-case__body ul,
.single-case__body ol {
	list-style: none;
	margin-bottom: 0;
	padding-left: 0;
}

.single-case__body ul li,
.single-case__body ol li {
	font-weight: 700;
	letter-spacing: 0.5px;
	line-height: 26px;
}

.single-case__body ul li::before,
.single-case__body ol li::before {
	content: "・";
}

.single-case__body ul li + li,
.single-case__body ol li + li {
	margin-top: 8px;
}

.single-case__back {
	display: flex;
	justify-content: flex-start;
}

.single-case__back-btn {
	align-items: center;
	display: inline-flex;
	flex-direction: column;
	gap: 14px;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.single-case__back-btn:hover {
	opacity: 0.7;
}

.single-case__back-link {
	align-items: center;
	display: inline-flex;
	gap: 8px;
}

.single-case__back-icon {
	align-items: center;
	display: inline-flex;
}

.single-case__back-text {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.3px;
}

.single-case__back-line {
	background: #000;
	display: block;
	height: 1px;
	width: 100%;
}

.column-breadcrumb-wrap {
	padding: 90px 0 70px 6.25vw;
}

.column-breadcrumb {
	align-items: center;
	color: #333333;
	display: flex;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 12px;
	gap: 11px;
}

.column-breadcrumb a {
	color: #333333;
	text-decoration: none;
}

.column-breadcrumb a:hover {
	text-decoration: underline;
}

.column-breadcrumb__arrow {
	align-items: center;
	display: inline-flex;
}

.column-archive {
	background: #ffffff;
	padding: 0 20px 80px;
}

.column-archive__inner {
	display: flex;
	flex-direction: column;
	gap: 48px;
	margin: 0 auto;
	max-width: 1080px;
}

.column-archive__heading {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.column-archive__title {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 34px;
	font-weight: 700;
}

.column-archive__title-line {
	background: linear-gradient(to right, #E18700 100px, #1A1A1A 100px);
	height: 2px;
	width: 100%;
}

.column-archive__cards {
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(3, 1fr);
}

.column-archive__no-posts {
	color: #777777;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 16px;
	grid-column: 1/-1;
	padding: 40px 0;
	text-align: center;
}

.column-archive__card {
	background: #ffffff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	color: inherit;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	transition: box-shadow 0.3s ease;
}

.column-archive__card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.column-archive__card-img {
	aspect-ratio: 16/10;
	overflow: hidden;
	width: 100%;
}

.column-archive__card-img img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.column-archive__card-placeholder {
	background: #F1F5FF;
	height: 100%;
	width: 100%;
}

.column-archive__card-content {
	padding: 24px 0;
}

.column-archive__card-meta {
	align-items: center;
	display: flex;
	gap: 12px;
	margin-bottom: 12px;
}

.column-archive__card-tag {
	background: #ffffff;
	border: 1px solid #777777;
	color: #777777;
	display: inline-block;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 12px;
	font-weight: 500;
	padding: 2px 12px;
}

.column-archive__card-date {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 14px;
	font-weight: 400;
}

.column-archive__card-title {
	color: #497CED;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 8px;
}

.column-archive__card-excerpt {
	color: #060606;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 16px;
}

.column-archive .works__card-tag {
	background: #497CED;
	border: none;
	color: #fff;
}

.column-archive__pagination {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: center;
}

.column-archive__pagination .page-numbers {
	align-items: center;
	background: #ffffff;
	border: 1px solid #497CED;
	border-radius: 4px;
	color: #333333;
	display: inline-flex;
	font-family: "Roboto", "Inter", sans-serif;
	font-size: 16px;
	font-weight: 500;
	height: 44px;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
	width: 44px;
}

.column-archive__pagination .page-numbers:hover {
	background: #F1F5FF;
}

.column-archive__pagination .page-numbers.current {
	background: #497CED;
	border-color: #497CED;
	color: #ffffff;
	font-weight: 700;
}

.column-archive__pagination .page-numbers.dots {
	border: none;
	font-size: 12px;
	width: auto;
}

.column-archive__pagination .page-numbers.prev,
.column-archive__pagination .page-numbers.next {
	background: #ffffff;
	border: 1px solid #497CED;
	border-radius: 4px;
}

.single-column-breadcrumb-wrap {
	padding: 90px 0 70px 6.25vw;
}

.single-column-breadcrumb {
	align-items: center;
	color: #333333;
	display: flex;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 12px;
	gap: 11px;
}

.single-column-breadcrumb a {
	color: #333333;
	text-decoration: none;
}

.single-column-breadcrumb a:hover {
	text-decoration: underline;
}

.single-column-breadcrumb__arrow {
	align-items: center;
	display: inline-flex;
}

.single-column {
	background: #ffffff;
	padding: 0 20px 80px;
}

.single-column__inner {
	margin: 0 auto;
	max-width: 900px;
}

.single-column__content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.single-column__meta {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.single-column__meta-left {
	align-items: center;
	display: flex;
	gap: 12px;
}

.single-column__tag {
	background: #497CED;
	color: #ffffff;
	display: inline-block;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 12px;
	font-weight: 500;
	padding: 2px 12px;
}

.single-column__date {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 14px;
}

.single-column__title {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.4;
}

.single-column__company {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 16px;
}

.single-column__thumbnail {
	overflow: hidden;
	width: 100%;
}

.single-column__thumbnail img {
	-o-object-fit: cover;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.single-column__body {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 16px;
	line-height: 28px;
}

.single-column__body h2 {
	border-left: 4px solid #497CED;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 12px;
	margin-top: 32px;
	padding-left: 12px;
}

.single-column__body h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
	margin-top: 24px;
}

.single-column__body p {
	margin-bottom: 16px;
}

.single-column__body img {
	height: auto;
	max-width: 100%;
}

.single-column__body ul,
.single-column__body ol {
	margin-bottom: 16px;
	padding-left: 24px;
}

.single-column__body ul li,
.single-column__body ol li {
	line-height: 1.6;
	margin-bottom: 8px;
}

.single-column__body ul {
	list-style: disc;
}

.single-column__body ol {
	list-style: decimal;
}

.single-column-related {
	background: #ffffff;
	padding: 80px 20px;
}

.single-column-related__inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin: 0 auto;
	max-width: 1080px;
}

.single-column-related__heading {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 28px;
	font-weight: 700;
	text-align: center;
}

.single-column-related__cards {
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(3, 1fr);
}

.single-column-related__card {
	background: #ffffff;
	color: inherit;
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.single-column-related__card-img {
	aspect-ratio: 16/10;
	overflow: hidden;
	width: 100%;
}

.single-column-related__card-img img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.single-column-related__card-placeholder {
	background: #d9d9d9;
	height: 100%;
	width: 100%;
}

.single-column-related__card-content {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px 0;
}

.single-column-related__card-meta {
	align-items: center;
	display: flex;
	gap: 12px;
}

.single-column-related__card-tag {
	background: #497CED;
	border: none;
	color: #fff;
	display: inline-block;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 12px;
	font-weight: 500;
	padding: 2px 12px;
}

.single-column-related__card-date {
	color: #777777;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 12px;
}

.single-column-related__card-title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: #333333;
	display: -webkit-box;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	overflow: hidden;
}

.single-column-related__card-excerpt {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: #777777;
	display: -webkit-box;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 14px;
	line-height: 1.6;
	overflow: hidden;
}

.single-column-related__btn-wrap {
	text-align: center;
}

.faq-breadcrumb-wrap {
	background: #F2F6FF;
	padding: 90px 0 70px 6.25vw;
	width: 100%;
}

.faq-breadcrumb {
	align-items: center;
	color: #333333;
	display: flex;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 12px;
	gap: 11px;
}

.faq-breadcrumb a {
	color: #333333;
	text-decoration: none;
}

.faq-breadcrumb a:hover {
	text-decoration: underline;
}

.faq-breadcrumb__arrow {
	align-items: center;
	display: inline-flex;
}

.faq {
	background: #F2F6FF;
	padding: 50px 80px;
}

.faq__inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 48px;
	margin: 0 auto;
	max-width: 1000px;
}

.faq__heading {
	align-items: center;
	display: flex;
	flex-direction: column;
	position: relative;
	text-align: center;
}

.faq__heading-en {
	color: #777777;
	font-family: "Roboto", sans-serif;
	font-size: 120px;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 1;
	opacity: 0.1;
}

.faq__heading-ja {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 32px;
	font-weight: 700;
	margin-top: -60px;
}

.faq__list {
	background: #ffffff;
	padding: 60px 40px;
	width: 100%;
}

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

.faq__item {
	border-bottom: 1px solid #ddd;
}

.faq__question {
	align-items: center;
	display: flex;
	gap: 16px;
	padding: 20px 0;
}

.faq__q-icon {
	align-items: center;
	background: #497CED;
	border-radius: 50%;
	color: #ffffff;
	display: flex;
	font-family: "Futura", "Roboto", "Inter", sans-serif, sans-serif;
	font-size: 22px;
	font-weight: 500;
	height: 40px;
	justify-content: center;
	min-width: 40px;
	width: 40px;
}

.faq__q-text {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.5;
}

.faq__answer {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 16px;
	line-height: 26px;
	padding: 0 0 20px 56px;
}

.faq__answer a {
	color: #497CED;
	text-decoration: underline;
}

.faq__answer a:hover {
	text-decoration: none;
}

.faq__cta {
	text-align: center;
}

.contact-breadcrumb-wrap {
	padding: 90px 0 70px 6.25vw;
}

.contact-breadcrumb {
	align-items: center;
	color: #333333;
	display: flex;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 12px;
	gap: 11px;
}

.contact-breadcrumb a {
	color: #333333;
	text-decoration: none;
}

.contact-breadcrumb a:hover {
	text-decoration: underline;
}

.contact-breadcrumb__arrow {
	align-items: center;
	display: inline-flex;
}

.contact {
	background: #ffffff;
	padding: 0 20px 80px;
}

.contact__inner {
	display: flex;
	flex-direction: column;
	gap: 80px;
	margin: 0 auto;
	max-width: 632px;
}

.contact__heading {
	display: flex;
	flex-direction: column;
	gap: 32px;
	text-align: center;
}

.contact__title {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 40px;
	font-weight: 700;
}

.contact__subtitle {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 16px;
	font-weight: 700;
}

.contact-wrapper {
	margin: 0 auto;
	max-width: 584px;
	padding: 0 20px;
}

.contactForm {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.contact_item {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.label {
	align-items: center;
	color: #333333;
	display: flex;
	flex-wrap: wrap;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 14px;
	font-weight: 700;
	gap: 8px 16px;
}

.label .wpcf7-form-control-wrap {
	width: 100%;
}

.label_note {
	align-self: center;
	color: #333333;
	flex: 1;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-weight: 500;
	margin-left: 13px;
	min-width: 0;
	white-space: nowrap;
}

.label_tag {
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.8;
	padding: 2px 10px;
	vertical-align: middle;
}

.label_must {
	background: #E18700;
	color: #ffffff;
}

.contactForm input[type=text],
.contactForm input[type=email],
.contactForm input[type=tel],
.contactForm textarea {
	background: #ffffff;
	border: 1px solid #DDDDDD;
	border-radius: 5px;
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 14px;
	font-weight: 500;
	padding: 10px 16px;
	transition: box-shadow 0.3s ease;
	width: 100%;
}

.contactForm input[type=text]::-moz-placeholder,
.contactForm input[type=email]::-moz-placeholder,
.contactForm input[type=tel]::-moz-placeholder,
.contactForm textarea::-moz-placeholder {
	color: #999999;
}

.contactForm input[type=text]::placeholder,
.contactForm input[type=email]::placeholder,
.contactForm input[type=tel]::placeholder,
.contactForm textarea::placeholder {
	color: #999999;
}

.contactForm input[type=text]:focus,
.contactForm input[type=email]:focus,
.contactForm input[type=tel]:focus,
.contactForm textarea:focus {
	box-shadow: 0 0 0 2px #497CED;
	outline: none;
}

.contactForm textarea {
	min-height: 214px;
	resize: vertical;
}

.contact_item-p {
	margin-top: 0;
}

.contact_item-information {
	align-items: center;
	color: #333333;
	display: flex;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 14px;
	font-weight: 500;
	gap: 16px;
}

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

.contact_item-information input[type=checkbox] {
	flex-shrink: 0;
	height: 15px;
	margin: 0 8px 0 0;
	vertical-align: middle;
	width: 15px;
}

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

.submit-btn-wrapper {
	margin-top: 24px;
}

.submit-btn input[type=submit] {
	align-items: center;
	background: #E18700;
	border: none;
	color: #ffffff;
	cursor: pointer;
	display: flex;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 16px;
	font-weight: 500;
	justify-content: center;
	padding: 20px 0;
	transition: opacity 0.3s ease;
	width: 100%;
}

.submit-btn input[type=submit]:hover {
	opacity: 0.85;
}

.wpcf7-not-valid-tip {
	color: #e74c3c;
	font-size: 13px;
	margin-top: 4px;
}

.wpcf7-response-output {
	font-size: 14px;
	padding: 12px;
	text-align: center;
}

.company-title-wrap {
	background: #F2F6FF;
	margin-top: 69px;
	padding: 80px 20px;
}

.company-title {
	margin: 0 auto;
	max-width: 1200px;
	text-align: center;
}

.company-title__ja {
	color: #1B1B1B;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 34px;
	font-weight: 700;
}

.company-title__en {
	color: #497CED;
	display: block;
	font-family: "Roboto", "Inter", sans-serif;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.1em;
	margin-top: 4px;
}

.company-breadcrumb-wrap {
	padding: 90px 0 70px 6.25vw;
}

.company-breadcrumb {
	align-items: center;
	color: #333333;
	display: flex;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 12px;
	gap: 11px;
}

.company-breadcrumb a {
	color: #333333;
	text-decoration: none;
}

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

.company-breadcrumb__arrow {
	align-items: center;
	display: inline-flex;
}

.company-hero {
	align-items: center;
	display: flex;
	height: 473px;
	justify-content: center;
	position: relative;
	width: 100%;
}

.company-hero__bg {
	inset: 0;
	position: absolute;
	z-index: 0;
}

.company-hero__bg img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.company-hero__placeholder {
	background: url("../img/company_pc.png") center/cover no-repeat;
	height: 100%;
	width: 100%;
}

.company-hero__message {
	margin: 0 auto;
	max-width: 1000px;
	padding: 0 20px;
	position: relative;
	width: 100%;
	z-index: 1;
}

.company-hero__message-border {
	align-items: center;
	background: rgba(255, 255, 255, 0.95);
	border: 3px solid #497CED;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 40px 48px;
	position: relative;
}

.company-hero__message-border::after {
	border: 3px solid #497CED;
	bottom: 20px;
	content: "";
	left: 20px;
	pointer-events: none;
	position: absolute;
	right: 20px;
	top: 20px;
}

.company-hero__message-inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.company-hero__message-en {
	color: #497CED;
	font-family: "Roboto", sans-serif;
	font-size: 70px;
	font-weight: 700;
	line-height: 1.2;
}

.company-hero__message-text {
	align-items: center;
	display: flex;
	gap: 8px;
}

.company-hero__message-quote {
	color: rgba(119, 119, 119, 0.47);
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 60px;
	font-weight: 700;
	line-height: 1;
}

.company-hero__message-quote--open {
	align-self: flex-start;
}

.company-hero__message-quote--close {
	align-self: flex-start;
}

.company-hero__message-body {
	align-items: center;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.company-hero__message-sub {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 40px;
	font-weight: 700;
}

.company-hero__message-main {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 60px;
	font-weight: 700;
}

.company-info {
	background: #ffffff;
	padding: 120px 20px;
}

.company-info__inner {
	margin: 0 auto;
	max-width: 1000px;
}

.company-info__card {
	background: #F2F6FF;
	display: flex;
	flex-direction: column;
	gap: 48px;
	padding: 60px 100px;
}

.company-info__table {
	margin: 0 auto;
	max-width: 800px;
	width: 100%;
}

.company-info__row {
	align-items: baseline;
	border-bottom: 1px solid #ddd;
	display: flex;
	padding: 16px 0;
}

.company-info__row--last {
	border-bottom: none;
}

.company-info__label {
	color: #034495;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 16px;
	font-weight: 700;
	min-width: 180px;
	width: 180px;
}

.company-info__value {
	color: #333333;
	flex: 1;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

.company-info__map {
	margin: 0 auto;
	max-width: 800px;
	width: 100%;
}

.company-info__map iframe {
	display: block;
	height: 350px;
	width: 100%;
}

.privacy-breadcrumb-wrap {
	padding: 90px 0 70px 6.25vw;
}

.privacy-breadcrumb {
	align-items: center;
	color: #333333;
	display: flex;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 12px;
	gap: 11px;
}

.privacy-breadcrumb a {
	color: #333333;
	text-decoration: none;
}

.privacy-breadcrumb a:hover {
	text-decoration: underline;
}

.privacy-breadcrumb__arrow {
	align-items: center;
	display: inline-flex;
}

.privacy {
	background: #ffffff;
	padding: 0 20px 80px;
}

.privacy__inner {
	margin: 0 auto;
	max-width: 900px;
}

.privacy__card {
	background: #F2F6FF;
	padding: 80px 80px;
}

.privacy__content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.privacy__title {
	border-bottom: 2px solid #497CED;
	color: #497CED;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 40px;
	font-weight: 700;
	padding-bottom: 80px;
	text-align: center;
}

.privacy__body {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 16px;
	line-height: 28px;
}

.privacy__body h2 {
	border-left: 4px solid #497CED;
	color: #333333;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 12px;
	margin-top: 32px;
	padding-left: 12px;
}

.privacy__body p {
	margin-bottom: 16px;
}

.privacy__body ul,
.privacy__body ol {
	margin-bottom: 16px;
	padding-left: 24px;
}

.privacy__body ul li,
.privacy__body ol li {
	line-height: 1.6;
	margin-bottom: 8px;
}

.privacy__body ul {
	list-style: disc;
}

.privacy__body ol {
	list-style: decimal;
}

.thanks {
	margin-top: 69px;
}

.thanks__hero {
	align-items: center;
	display: flex;
	height: 200px;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.thanks__hero-bg {
	background: #497CED;
	inset: 0;
	position: absolute;
}

.thanks__hero-content {
	position: relative;
	text-align: center;
	z-index: 1;
}

.thanks__hero-en {
	color: rgba(255, 255, 255, 0.7);
	font-family: "Roboto", "Inter", sans-serif;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.1em;
	margin: 0 0 8px;
}

.thanks__hero-title {
	color: #ffffff;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 34px;
	font-weight: 700;
	margin: 0;
}

.thanks__body {
	background: #F1F5FF;
	padding: 80px 20px 100px;
}

.thanks__inner {
	background: #ffffff;
	margin: 0 auto;
	max-width: 700px;
	padding: 60px 40px;
	text-align: center;
}

.thanks__icon {
	margin-bottom: 32px;
}

.thanks__icon svg {
	height: 80px;
	width: 80px;
}

.thanks__heading {
	color: #1A1A1A;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.5;
	margin: 0 0 24px;
}

.thanks__text {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 2;
	margin: 0 0 24px;
}

.thanks__note {
	background: #F1F5FF;
	margin-bottom: 40px;
	padding: 16px 20px;
}

.thanks__note p {
	color: #777777;
	font-size: 13px;
	line-height: 1.8;
	margin: 0;
}

.thanks__btn-wrap {
	display: flex;
	justify-content: center;
}

.m_404 {
	padding: 120px 20px;
}

.entry-404 {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 0 auto;
	max-width: 700px;
	text-align: center;
}

.entry-404-head {
	align-items: center;
	color: #333333;
	display: flex;
	flex-direction: column;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 28px;
	font-weight: 700;
	gap: 8px;
}

.entry-404-head span {
	color: #497CED;
	font-family: "Roboto", "Inter", sans-serif;
	font-size: 80px;
	font-weight: 900;
	line-height: 1;
}

.entry-404-lead {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 20px;
	font-weight: 700;
}

.entry-404-content {
	color: #333333;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 16px;
	line-height: 28px;
}

.entry-404-btn {
	margin-top: 16px;
}

.entry-404-btn .btn {
	align-items: center;
	background: #E18700;
	color: #ffffff;
	display: inline-flex;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 18px;
	font-weight: 700;
	justify-content: center;
	padding: 14px 40px;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.entry-404-btn .btn:hover {
	opacity: 0.85;
}

.footer {
	background: #497CED;
	padding: 60px 20px;
	white-space: nowrap;
}

.footer__inner {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1000px;
}

.footer__logo {
	color: #FEFFFC;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 36px;
	font-weight: 900;
	letter-spacing: 2.88px;
	margin-bottom: 16px;
}

.footer__logo--sp {
	display: none;
}

.footer__company-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.footer__company-info p {
	color: #ffffff;
	margin: 0;
}

.footer__company-name {
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 1.6px;
}

.footer__address,
.footer__tel,
.footer__fax {
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 14px;
	font-weight: 500;
}

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

.footer__nav {
	display: flex;
	gap: 40px;
	justify-content: space-between;
}

.footer__nav--sp {
	display: none;
}

.footer__nav-col {
	display: flex;
	flex-direction: column;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer__nav-col a {
	color: #FEFFFC;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.2;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer__bottom {
	margin-top: 40px;
}

.footer__privacy {
	color: #FEFFFC;
	display: none;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 13px;
	font-weight: 400;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.footer__privacy:hover {
	opacity: 0.7;
}

.footer__copyright {
	color: #FEFFFC;
	font-family: "Noto Sans JP", "Inter", sans-serif;
	font-size: 13px;
	font-weight: 400;
	margin: 0;
	text-align: right;
}

.section-title,
.problem__heading,
.problem__worry,
.problem__arrow,
.problem__solution,
.reason__card,
.reason__btn-wrap,
.technology__banner,
.technology__detail,
.case__card,
.case__btn-wrap,
.flow__intro,
.flow__step,
.faq__item,
.company__table,
.company__map {
	opacity: 0;
	transition: opacity 0.9s ease;
}

.is-visible {
	opacity: 1 !important;
}

.anim-delay-1 {
	transition-delay: 0.13s;
}

.anim-delay-2 {
	transition-delay: 0.26s;
}

.anim-delay-3 {
	transition-delay: 0.39s;
}

.anim-delay-4 {
	transition-delay: 0.52s;
}

.anim-delay-5 {
	transition-delay: 0.65s;
}

.anim-delay-6 {
	transition-delay: 0.78s;
}

.is-loading .fv .fv__image,
.is-loading .fv .fv__keyword,
.is-loading .fv .fv__keyword-divider,
.is-loading .fv .fv__keyword-nara,
.is-loading .fv .fv__title {
	animation-play-state: paused;
}

.fv .fv__image {
	animation: fvImageIn 1.2s ease 0.3s forwards;
	opacity: 0;
	transform: scale(1.05);
}

.fv .fv__keyword {
	animation: fvFadeUp 0.6s ease forwards;
	opacity: 0;
	transform: translateY(20px);
}

.fv .fv__keyword:nth-child(1) {
	animation-delay: 0.8s;
}

.fv .fv__keyword:nth-child(2) {
	animation-delay: 0.9s;
}

.fv .fv__keyword:nth-child(3) {
	animation-delay: 1s;
}

.fv .fv__keyword:nth-child(4) {
	animation-delay: 1.1s;
}

.fv .fv__keyword:nth-child(5) {
	animation-delay: 1.2s;
}

.fv .fv__keyword-divider {
	animation: fvFadeUp 0.6s ease forwards;
	opacity: 0;
}

.fv .fv__keyword-divider:nth-child(2) {
	animation-delay: 0.9s;
}

.fv .fv__keyword-divider:nth-child(4) {
	animation-delay: 1.1s;
}

.fv .fv__keyword-nara {
	animation: fvFadeUp 0.6s ease 1.3s forwards;
	opacity: 0;
}

.fv .fv__title {
	animation: fvFadeUp 0.8s ease 1.5s forwards;
	opacity: 0;
	transform: translateY(20px);
}

.section-title__en {
	display: inline-block;
	position: relative;
}

.section-title__en::after {
	background: #497CED;
	bottom: -4px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	transition: width 0.6s ease 0.3s;
	width: 0;
}

.section-title.is-visible .section-title__en::after {
	width: 100%;
}

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

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

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

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

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

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

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

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

.shrink-image {
	height: 100%;
	transform-origin: center;
	transition: transform 1s ease-in-out;
	width: 100%;
}

.shrink-image.shrink {
	transform: scale(1.3);
}

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

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

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

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

.scroll-down__text span {
	display: block;
}

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

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

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

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

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

.header__nav {
	align-items: center;
	display: flex;
	gap: 0;
}

.header__open {
	display: none;
}

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

}

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

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

.c-btn {
	font-size: 18px;
	height: 58px;
	min-width: auto;
	padding: 14px 30px;
	width: 100%;
}

.section-title__ja {
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0.72px;
	line-height: 1.4;
}

.section-title__en {
	font-size: 16px;
	letter-spacing: 0.48px;
	margin: 3px 0 0;
}

.header__inner {
	height: 52px;
	padding: 12px 20px;
}

.header__logo a {
	font-size: 24px;
}

.fv {
	height: 551px;
	margin-top: 52px;
}

.fv__image {
	background-image: url("../img/fv_bg_sp.jpg");
	height: 88.5%;
	right: 0;
	width: 82.4%;
}

.fv__content {
	left: 5%;
	top: 6%;
	transform: none;
}

.fv__keywords {
	gap: 4px;
}

.fv__keyword {
	font-size: 18px;
	padding: 4px;
}

.fv__keyword-divider {
	margin: 0 -8px;
}

.fv__keyword-divider svg {
	height: 14px;
	width: 15px;
}

.fv__keyword-slash {
	font-size: 16px;
}

.fv__keyword-nara {
	font-size: 14px;
}

.fv__title {
	font-size: 36px;
}

.miurack-hero {
	margin-top: 50px;
}

.miurack-hero__overlay {
	margin-top: 0;
}

.miurack-hero__title {
	font-size: 20px;
	letter-spacing: 0.6px;
	line-height: 32px;
}

.miurack-intro {
	padding: 64px 0;
}

.miurack-intro__heading {
	font-size: 24px;
	letter-spacing: 0.7px;
	line-height: 38px;
}

.miurack-intro__body {
	flex-direction: column;
	gap: 40px;
}

.miurack-intro__img-wrap {
	aspect-ratio: 446/339;
	height: auto;
	max-width: 335px;
	min-width: 0;
	width: 100%;
}

.miurack-intro__img-wrap img {
	height: 100%;
	width: 100%;
}

.miurack-intro__img-accent {
	height: 100%;
	left: 9px;
	top: 9px;
	width: 100%;
}

.miurack-section-heading__text {
	font-size: 34px;
	line-height: 48px;
}

.miurack-features {
	padding: 80px 20px;
}

.miurack-features__cards {
	align-items: center;
	flex-direction: column;
	gap: 40px;
}

.miurack-features__card {
	gap: 16px;
	padding: 24px 32px;
	width: 76vw;
}

.miurack-features__card-icon {
	height: 100px;
	width: 100px;
}

.miurack-features__card-title {
	font-size: 20px;
	margin-top: 16px;
}

.miurack-features__card-text {
	font-size: 14px;
}

.miurack-spec {
	padding: 0 20px 80px;
}

.miurack-spec__size-heading h3 {
	font-size: 28px;
}

.miurack-spec__size-images {
	flex-direction: column;
	gap: 24px;
}

.miurack-spec__size-img-label span {
	font-size: 16px;
	padding: 5px 5px;
}

.miurack-spec__capacity-heading h3 {
	font-size: 24px;
	line-height: 36px;
}

.miurack-spec__table th,
.miurack-spec__table td {
	font-size: 14px;
	padding: 5px 4px;
}

.miurack-spec__custom {
	padding: 32px 16px;
}

.miurack-spec__custom-badge {
	padding: 16px 5px;
}

.miurack-spec__custom-badge p {
	font-size: 20px;
	letter-spacing: 0.6px;
}

.miurack-spec__custom-cards {
	align-items: center;
	flex-direction: column;
	gap: 24px;
}

.miurack-spec__custom-card {
	max-width: 335px;
	width: 100%;
}

.miurack-spec__custom-card-img {
	height: 200px;
}

.problem {
	padding: 0;
}

.problem__heading {
	font-size: 18px;
	margin-bottom: 30px;
}

.problem__worries {
	align-items: center;
	flex-direction: column;
	gap: 40px;
}

.problem__worry-img {
	height: 201px;
	width: 241px;
}

.problem__worry-text {
	font-size: 16px;
}

.problem__arrow svg {
	height: 40px;
	width: 120px;
}

.problem__solution-inner {
	padding: 30px 20px;
}

.problem__solution-subtitle {
	font-size: 17px;
}

.problem__solution-main-text {
	font-size: 19px;
}

.problem__solution-line {
	width: 330px;
}

.problem__solution-detail {
	font-size: 15px;
}

.reason {
	padding: 0 0 64px;
}

.reason::after {
	height: 336px;
}

.reason__cards {
	flex-direction: column;
	gap: 37px;
	margin-top: 40px;
}

.reason__card--2 {
	margin-top: 0;
}

.reason__card--3 {
	margin-top: 0;
}

.reason__card-label {
	font-size: 28px;
}

.reason__card-img {
	height: 218px;
}

.reason__card-body {
	padding: 18px 19px;
}

.reason__card-body p {
	font-size: 16px;
}

.reason__btn-wrap {
	margin-top: 40px;
}

.technology {
	padding: 64px 0;
}

.technology__banner {
	align-items: center;
	gap: 4px;
	margin-top: 40px;
	min-height: auto;
	padding: 12px 7px;
}

.technology__banner-content {
	text-align: center;
}

.technology__banner-sub1 {
	font-size: 14px;
	gap: 8px;
	margin-bottom: 4px;
}

.technology__banner-sub1 .technology__banner-line {
	width: 30px;
}

.technology__banner-company {
	font-size: 13px;
	letter-spacing: 0.5px;
}

.technology__banner-title-wrap {
	margin: 6px 0;
	padding: 4px 8px;
}

.technology__banner-title {
	font-size: 14px;
	letter-spacing: 0.5px;
}

.technology__banner-product {
	font-size: 32px;
	letter-spacing: 1px;
	line-height: 1.3;
}

.technology__banner-patent-text {
	font-size: 10px;
	letter-spacing: 0.3px;
	margin-top: 4px;
}

.technology__banner-patent-number-wrap {
	margin-top: 4px;
	padding: 0 3px;
}

.technology__banner-patent-number {
	font-size: 10px;
	letter-spacing: 0;
}

.technology__banner-badge {
	align-self: center;
	gap: 4px;
}

.technology__badge-img {
	width: 100px;
}

.technology__detail {
	flex-direction: column;
	margin-top: 32px;
}

.technology__detail-img {
	height: 231px;
	width: 100%;
}

.technology__detail-text {
	padding: 32px 15px;
	position: relative;
	top: 0;
	width: 100%;
}

.technology__detail-lead {
	font-size: 18px;
}

.technology__detail-body {
	font-size: 14px;
}

.case {
	padding: 64px 0;
}

.case__cards {
	flex-direction: column;
	gap: 40px;
	margin-top: 40px;
}

.case__card {
	width: 100%;
}

.case__card-img {
	height: 240px;
}

.case__card-title {
	font-size: 20px;
}

.case__btn-wrap {
	margin-top: 40px;
}

.flow-breadcrumb-wrap {
	padding: 20px;
}

.flow {
	padding: 0 20px 60px;
}

.flow__inner {
	gap: 32px;
}

.flow__intro {
	font-size: 14px;
	line-height: 24px;
	text-align: left;
}

.flow__steps {
	gap: 80px;
}

.flow__timeline {
	display: none;
}

.flow__step {
	padding-left: 0;
}

.flow__step-dot {
	display: none;
}

.flow__step-content {
	align-items: center;
	flex-direction: column;
	gap: 20px;
}

.flow__step-img::after {
	background: #497CED;
	content: "";
	display: block;
	height: 40px;
	margin: 20px auto 0;
	width: 2px;
}

.flow__step:last-child .flow__step-img::after {
	display: none;
}

.flow__step-title {
	font-size: 20px;
}

.flow__step-desc {
	font-size: 14px;
	line-height: 24px;
}

.flow__step-img {
	height: 208px;
	min-width: 247px;
	width: 247px;
}

.flow__step-img-accent {
	left: 8px;
	top: 8px;
}

.works-breadcrumb-wrap {
	padding: 20px;
}

.works {
	padding: 0 20px 60px;
}

.works__inner {
	gap: 32px;
}

.works__title {
	font-size: 24px;
}

.works__cards {
	gap: 24px;
	grid-template-columns: 1fr;
}

.works__card-title {
	font-size: 20px;
}

.single-case-breadcrumb-wrap {
	padding: 20px;
}

.single-case {
	padding: 0 20px 60px;
}

.single-case__card {
	padding: 24px 0;
}

.single-case__title {
	font-size: 22px;
	line-height: 36px;
}

.single-case__company {
	font-size: 22px;
	line-height: 36px;
}

.single-case__thumbnail {
	height: auto;
}

.single-case__tag {
	font-size: 14px;
	line-height: 1.4;
	padding: 4px 10px;
}

.single-case__body {
	font-size: 14px;
	gap: 48px;
	line-height: 24px;
}

.single-case__body h2 {
	font-size: 20px;
	margin-bottom: 16px;
}

.single-case__body h3 {
	font-size: 18px;
}

.column-breadcrumb-wrap {
	padding: 20px;
}

.column-archive {
	padding: 0 20px 60px;
}

.column-archive__inner {
	gap: 32px;
}

.column-archive__title {
	font-size: 24px;
}

.column-archive__cards {
	gap: 24px;
	grid-template-columns: 1fr;
}

.column-archive__card-title {
	font-size: 20px;
}

.single-column-breadcrumb-wrap {
	padding: 20px;
}

.single-column {
	padding: 0 20px 60px;
}

.single-column__content {
	gap: 11px;
}

.single-column__title {
	font-size: 22px;
}

.single-column__company {
	font-size: 14px;
}

.single-column__body {
	font-size: 14px;
	line-height: 24px;
}

.single-column__body h2 {
	font-size: 18px;
}

.single-column__body h3 {
	font-size: 16px;
}

.single-column-related {
	padding: 60px 20px;
}

.single-column-related__heading {
	font-size: 22px;
}

.single-column-related__cards {
	gap: 24px;
	grid-template-columns: 1fr;
}

.faq-breadcrumb-wrap {
	padding: 20px;
}

.faq {
	padding: 20px 20px;
}

.faq__inner {
	gap: 32px;
}

.faq__heading-en {
	font-size: 60px;
}

.faq__heading-ja {
	font-size: 24px;
	margin-top: -35px;
}

.faq__list {
	padding: 40px 20px;
}

.faq__question {
	gap: 12px;
	padding: 16px 0;
}

.faq__q-icon {
	font-size: 18px;
	height: 32px;
	min-width: 32px;
	width: 32px;
}

.faq__q-text {
	font-size: 16px;
}

.faq__answer {
	font-size: 14px;
	line-height: 24px;
	padding: 0 0 16px 44px;
}

.faq__cta .c-btn {
	font-size: 18px;
}

.contact-breadcrumb-wrap {
	padding: 20px;
}

.contact {
	padding: 0 20px 60px;
}

.contact__inner {
	gap: 48px;
}

.contact__title {
	font-size: 28px;
}

.contact__subtitle {
	font-size: 14px;
}

.contact-wrapper {
	padding: 0;
}

.contactForm {
	gap: 32px;
}

.label_note {
	flex: 0 0 100%;
	font-size: 11px;
	margin-left: 0;
}

.contactForm input[type=text],
.contactForm input[type=email],
.contactForm input[type=tel],
.contactForm textarea {
	padding: 10px 12px;
}

.company-title-wrap {
	margin-top: 52px;
	padding: 52px 20px;
}

.company-title__ja {
	font-size: 24px;
}

.company-breadcrumb-wrap {
	padding: 20px;
}

.company-hero {
	height: 350px;
}

.company-hero__placeholder {
	background-image: url("../img/company_sp.png");
}

.company-hero__message-border {
	padding: 30px 20px;
}

.company-hero__message-border::after {
	bottom: 15px;
	left: 15px;
	right: 15px;
	top: 15px;
}

.company-hero__message-en {
	font-size: 40px;
}

.company-hero__message-quote {
	font-size: 36px;
}

.company-hero__message-quote--close {
	align-self: flex-end;
}

.company-hero__message-body {
	flex-direction: column;
}

.company-hero__message-sub {
	font-size: 22px;
}

.company-hero__message-main {
	font-size: 36px;
}

.company-info {
	padding: 40px 20px 60px;
}

.company-info__card {
	gap: 32px;
	padding: 40px 0;
}

.company-info__row {
	flex-direction: column;
	padding: 12px 0;
}

.company-info__label {
	font-size: 14px;
	margin-bottom: 4px;
	min-width: 0;
	width: 100%;
}

.company-info__value {
	font-size: 14px;
}

.company-info__map iframe {
	height: 250px;
}

.privacy-breadcrumb-wrap {
	padding: 20px;
}

.privacy {
	padding: 0 20px 60px;
}

.privacy__card {
	padding: 65px 10px;
}

.privacy__title {
	font-size: 30px;
	padding-bottom: 40px;
}

.privacy__body {
	font-size: 14px;
	line-height: 24px;
}

.privacy__body h2 {
	font-size: 18px;
	margin-bottom: 8px;
	margin-top: 24px;
}

.thanks {
	margin-top: 52px;
}

.thanks__hero {
	height: 150px;
}

.thanks__hero-en {
	font-size: 14px;
}

.thanks__hero-title {
	font-size: 24px;
}

.thanks__body {
	padding: 60px 20px 80px;
}

.thanks__inner {
	padding: 40px 20px;
}

.thanks__icon svg {
	height: 60px;
	width: 60px;
}

.thanks__heading {
	font-size: 22px;
}

.thanks__text {
	font-size: 14px;
	line-height: 1.8;
}

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

.m_404 {
	padding: 80px 20px;
}

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

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

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

.entry-404-content {
	font-size: 14px;
	line-height: 24px;
}

.entry-404-btn .btn {
	font-size: 16px;
	padding: 12px 32px;
}

.footer {
	padding: 64px 24px 44px;
}

.footer__inner {
	flex-direction: column;
	gap: 0;
}

.footer__left {
	display: none;
}

.footer__logo--sp {
	display: block;
	margin-bottom: 30px;
}

.footer__right {
	width: 100%;
}

.footer__nav--pc {
	display: none;
}

.footer__nav--sp {
	display: flex;
	gap: 40px;
}

.footer__nav-col {
	gap: 15px;
}

.footer__bottom {
	margin-top: 64px;
}

.footer__privacy {
	display: block;
	margin-bottom: 24px;
}

.footer__copyright {
	font-size: 12px;
	text-align: left;
}

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

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

.scroll-down__line {
	width: 130px;
}

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

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

}

@keyframes fvImageIn {

to {
	opacity: 1;
	transform: scale(1);
}

}

@keyframes fvFadeUp {

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

}

@keyframes scroll-down-line {

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

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

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

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

}

