@charset "UTF-8";
*,::after,::before {
	box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*--- iosのスタイルリセット  ---*/
input[type=submit],
input[type=button] {
  border-radius: 10px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

a:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.wrapper {
  position: relative;
}

/* =============================================================================
Image
========================================================================== */
a {
  display: block;
  cursor: pointer;
}

picture,
figure {
  display: block;
}

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

/* =============================================================================
Basic style
========================================================================== */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
	position: relative;
	overflow-x: hidden;
	word-break: break-all;
	font-family: "Noto Sans JP", sans-serif;
	color: #000;
	counter-reset: number 0;
}

@font-face {
  font-family: "Hitachi Sans";
  src: url(../fonts/HitachiSans-Bold.otf) format("opentype");
}
@font-face {
  font-family: "Hitachi Sans Light";
  src: url(../fonts/HitachiSans-Regular.otf) format("opentype");
}
/*==============================================================================
Media
============================================================================= */
/*
  sp
----------------------------------------------- */
/*
  pc
----------------------------------------------- */
/*
  xl-pc
----------------------------------------------- */
/*==============================================================================
Accessibility
============================================================================= */
.screen-reader-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

/*==============================================================================
font-size
============================================================================= */
/*
	  mobile
  ----------------------------------------------- */
@media screen and (max-width: 767px) {
  html {
    font-size: 2.1333333333vw;
  }
  p {
    font-size: 1rem;
  }
}
/*
  PC
  ----------------------------------------------- */
@media screen and (min-width: 768px) {
  html {
    font-size: 1.1111111111vw;
  }
  p {
    font-size: 1rem;
  }
}
/*
  xl-PC
  ----------------------------------------------- */
@media screen and (min-width: 2001px) {
  html {
    font-size: 1rem;
  }
  p {
    font-size: 1rem;
  }
}
/*==============================================================================
Responsive
============================================================================= */
@media screen and (max-width: 767px) {
  .inner {
    margin: 0 auto;
    position: relative;
	width: 41.875rem;
  }
  .pc-only {
    display: none;
  }
}
@media screen and (min-width: 768px) {
	.inner {
		width: 75rem;
		margin: 0 auto;
		position: relative;
	}
	.inner.mini {
		width: 62.5rem;
	}
	.inner.left-padding {
		width: 68.75rem;
		padding-left: 6.25rem;
	}
	.sp-only {
		display: none;
	}
}
/*==============================================================================
Header
============================================================================= */
@media screen and (max-width: 767px) {
  .header-bg {
    background: #fff;
  }
  .header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
  }
  .header-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5625rem;
  }
  .header-logo {
    width: 14.25rem;
    margin-left: 2.5rem;
  }
  .header-catch {
	font-size: 1.375rem;
    line-height: 1.27;
    letter-spacing: -0.02em;
  }
  .header-contact {
    background: #fa000f;
    text-decoration: none;
    width: 8.25rem;
    height: 8.25rem;
    place-content: center;
  }
  .header-contact .mail-icon {
    width: 2.875rem;
	display: block;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .header-bg {
    background: #fff;
    padding: 1.125rem 0;
  }
  .header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 75rem;
    margin: 0 auto;
  }
  .header-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
  }
  .header-logo {
    width: 14.75rem;
  }
  .header-catch {
    font-size: 0.875rem;
    line-height: 1.57;
  }
  .header-contact {
    position: relative;
    background: #fa000f;
    color: #fff;
    padding: 1.1875rem 0 1.1875rem 3.125rem;
    width: 17.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 100vmax;
    font-size: 1rem;
    place-content: center;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .header-contact:hover {
    opacity: 0.8;
  }
  .header-contact::before {
    content: "";
    position: absolute;
    top: 1.5625rem;
    right: 1.875rem;
    width: 1.9375rem;
    height: 0.3125rem;
    background: url(../images/cta-arrow.webp) no-repeat center center/cover;
  }
}
/*==============================================================================
fv
============================================================================= */
@media screen and (max-width: 767px) {

.fv {
	position: relative;
	background-color: #f5f5f5;
}
.fv::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	display: block;
	width: 100%;
	background-color: rgb(255,255,255);
	height: 19rem;
}
  .fv-bg {
	  position: relative;
	  z-index: 2;
    padding: 4.5rem 0 4rem;
  }
.fv-bg-image {
	position: absolute;
	top: 16rem;
	right: 0;
	transform: translateX(20%);
	width: 52.5rem;
	height: auto;
  }
  .fv-inner {
    width: 41.875rem;
    margin: 0 auto;
  }
  .fv-subttl {
    position: relative;
    font-size: 2.125rem;
    line-height: 1.23;
	letter-spacing: 0.05em;
    font-weight: bold;
    padding-bottom: 1.5625rem;
    margin-bottom: 1.2rem;
	padding-left: 0.5rem;
}
.fv-ttl {
	font-size: 2.875rem;
    font-weight: bold;
    line-height: 1.1;
	margin-bottom: 2.9rem;
	padding-left: 0.5rem;
  }
 .fv-ttl-red {
    color: #fff;
	margin-top: 0.8rem;
	font-size: 3.5rem;
    background: #fa000f;
    padding: 0.8125rem 0.7rem;
    line-height: 1;
    display: inline-block;
  }

  .fv-txt {
    font-size: 1.75rem;
    line-height: 1.57;
    letter-spacing: 0.12em;
    margin-bottom: 3.1rem;
	padding-left: 0.5rem;
  }
  .fv-side-en {
	width: 3em;
	/* width: fit-content; */
	margin-left: auto;
	margin-bottom: 2.8rem;
		font-size: 4.375rem;
		font-family: "Hitachi Sans Light";
		color: rgb(255,255,255);
		writing-mode: tb-rl;
	}
	.fv-side-en span {
		writing-mode: tb-rl;
  	}

	.fv-side-en .bold{
		font-family: "Hitachi Sans";
		font-weight: 700;
	}
  .fv-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.3rem;
    margin: 0 auto;
  }
  .fv-item {
    position: relative;
}
  .fv-item:not(:last-child) {
	margin-bottom: 0.7rem;
  }

  .fv-item-txt {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
    line-height: 2.5rem;
	font-weight: 500;
	font-size: 1.875rem;
    letter-spacing: 0.02em;
    color: #fff;
    text-align: center;
	min-height: 6.25rem;
	padding: 5px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(22, 61, 99,0.9);
  }

  .fv-item-after-text {
	position: absolute;
	bottom: 13px;
	left: 0;
	text-align: center;
	width: 100%;
	font-size: 1.5rem;
	line-height: 2.375rem;
	color: rgb(255,255,255);
  }
}
@media screen and (min-width: 768px) {
	.fv {
		overflow: hidden;
		background-color: #f5f5f5;
	}
  .fv-bg {
	width: 75rem;
	margin: auto;
	position: relative;
    padding: 5.3125rem 0 5rem;
  }
  .fv-bg-image {
	position: absolute;
	top: 0;
	right: 0;
	transform: translateX(30%);
	width: 58rem;
	height: auto;
  }
  .fv-inner {
	  position: relative;
	  width: 75rem;
	  margin: 0 auto;
	}
	.fv-side-en {
	  position: absolute;
	  top: -1rem;
	  right: -0.5rem;
	  font-size: 4.375rem;
	  font-family: "Hitachi Sans Light";
	  color: rgb(255,255,255);
	  writing-mode: tb-rl;
	}
	.fv-side-en span {
		writing-mode:tb-rl;
	}
	.fv-side-en .bold{
		font-family: "Hitachi Sans";
		font-weight: 700;
	}
  .fv-subttl {
    position: relative;
    font-size: 1.75rem;
    font-weight: bold;
	letter-spacing: 0.05em;
    margin-bottom: 2.6rem;
  }
  .fv-ttl {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.3rem;
    line-height: 1.22;
  }
  .fv-ttl-red {
    color: #fff;
    background: #fa000f;
    padding: 0.2rem 0.6rem;
    line-height: 1;
	margin-top: 0.9rem;
    display: inline-block;
  }
  .fv-txt {
    font-size: 1.125rem;
    line-height: 2.05;
    letter-spacing: 0.1em;
    margin-bottom: 3.7rem;
  }
  .fv-txt .small {
    font-size: 1rem;
  }
  .fv-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0.08rem;
  }
  .fv-item {
    position: relative;
    width: calc((100% - 0.08rem * 2) / 3);
}
.fv-item::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent 35%, rgba(0, 0, 0,0.9) 90%);
}
.fv-item-text-box {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	color: rgb(255,255,255);
}
  .fv-item-txt {
	max-width: 80%;
	margin: auto;
    line-height: 1.5rem;
	font-weight: 500;
    letter-spacing: 0.02em;
    color: #fff;
    text-align: center;
	min-height: 3.75rem;
	padding: 5px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(22, 61, 99,0.9);
  }

  .fv-item-after-text {
	padding: 13px 10px 18px;
	font-size: 0.875rem;
	text-align: center;
	line-height: 1.4375;
  }
}
@media screen and (min-width: 2001px) {
  .fv-bg {
	position: relative;
	background-color: #f5f5f5;
    padding: 3.65rem 0 4.9375rem;
  }
}
/*==============================================================================
cta
============================================================================= */
@media screen and (max-width: 767px) {
  .cta-bg {
    background: url(../images/cta-bg_sp.webp) no-repeat center/cover;
    padding: 5.3125rem 0 5.7rem;
  }
  .cta-inner {
    width: 41.875rem;
    margin: 0 auto;
  }
  .cta-ttl01 {
    font-size: 2.6rem;
    line-height: 1.45;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .cta-contact {
    position: relative;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e2e2e2));
    background: linear-gradient(180deg, #ffffff 0%, #e2e2e2 100%);
    color: #333;
    padding: 3.5rem 0 3.5rem 4.6875rem;
    border-radius: 100vmax;
    width: 38.4375rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 2.375rem;
    letter-spacing: 0.04em;
    font-weight: bold;
    margin: 0 auto;
  }
  .cta-contact:hover {
    opacity: 0.8;
  }
  .cta-contact::before {
    content: "";
    position: absolute;
    top: 4.375rem;
    right: 4.0625rem;
    width: 3.75rem;
    height: 0.375rem;
    background: url(../images/cta-arrow02.webp) no-repeat center center/cover;
  }
  .cta-ttl02 {
    font-size: 1.625rem;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 0.04em;
    color: #fff;
    text-align: center;
    margin-top: 1.875rem;
  }
  .cta-tel {
    background: #0c0c0c;
    width: 31.25rem;
    margin: 1.5rem auto 0;
    font-size: 2.375rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: "Hitachi Sans";
    border-radius: 100vmax;
    text-align: center;
    padding: 1.875rem 0;
  }
  .cta-tel .sp-only {
    display: inline-block;
  }
  .cta-time {
    font-size: 1.375rem;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.9375rem;
  }
  .cta-time-label {
    color: #fff;
    border: 0.0625rem solid #fff;
    padding: 0.5625rem 0;
    font-size: 1.375rem;
    width: 8.4375rem;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .cta-bg {
    background: url(../images/cta-bg.webp) no-repeat center/cover;
    padding: 3.6875rem 0 3rem;
  }
  .cta-inner {
    width: 62.5rem;
    margin: 0 auto;
  }
  .cta-ttl01 {
    font-size: 2.125rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 2.2rem;
	letter-spacing: -0.05em;
  }
  .cta-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start
  }
  .cta-contact {
    position: relative;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e2e2e2));
    background: linear-gradient(180deg, #ffffff 0%, #e2e2e2 100%);
    color: #333;
    padding: 2.5625rem 0;
    border-radius: 0.3125rem;
    width: 31.25rem;
    font-size: 1.75rem;
    letter-spacing: 0.04em;
    font-weight: bold;
    text-align: center;
  }
  .cta-contact:hover {
    opacity: 0.8;
  }
  .cta-contact::before {
    content: "";
    position: absolute;
    top: 3.125rem;
    right: 1.875rem;
    width: 2.5625rem;
    height: 0.375rem;
    background: url(../images/cta-arrow02.webp) no-repeat center center/cover;
  }
  .cta-box-right {
    text-align: left;
  }
  .cta-ttl02 {
    font-size: 1.125rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    color: #fff;
    margin-bottom: 0.625rem;
  }
  .cta-tel {
    font-size: 2.7rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: "Hitachi Sans";
    pointer-events: none;
  }
  .cta-tel span {
    font-size: 2rem;
  }
  .cta-time {
    font-size: 1rem;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.9375rem;
  }
  .cta-time-label {
    background: #0c0c0c;
    color: #fff;
    padding: 0.5rem 0;
    border-radius: 0.1875rem;
    font-size: 1rem;
    width: 7.375rem;
    text-align: center;
  }
}
/*==============================================================================
capabilites
============================================================================= */
@media screen and (max-width: 767px) {
	.capabilites-section {
		padding: 6.1rem 0 0;
	}
	.capabilites-bg {
		position: relative;
		background: #fff;
		background-image: url("../images/capabilites-bg_sp.webp");
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
	}
	.red-border-ttl {
		font-family: "Hitachi Sans Light";
		font-size: 10.625rem;
		letter-spacing: 0.015em;
		line-height: 10.1875rem;
		color: transparent;
		-webkit-text-stroke: 1px #fa000f;
		text-stroke: 1px #fa000f;
		text-transform: uppercase;
	}
	.red-border-ttl.capabilites {
		margin-bottom: 2.1rem;
	}
	.capabilites-first-text {
		margin-bottom: 2.8rem;
		font-size: 2.375rem;
		line-height: 3.75rem;
	}
	.bg-title {
		margin-bottom: 2.9rem;
	}
	.bg-title span{
		display: inline-block;
		color: #fff;
		font-weight: 700;
	}
	.bg-title span.pc-only {
		display: none;
	}
	.bg-title span:not(:last-child){
		margin-bottom: 0.7rem;
	}
	.bg-title.black span {
		background-color: #000;
		font-size: 3rem;
		padding: 0.5rem 0.8rem;
	}
	.bg-title.red span{
		padding: 0 0.5rem;
		line-height: 4.5rem;
		font-size: 3.25rem;
		background-color: #fa000f;
	}
	.capabilites-text {
		font-size: 1.75rem;
		line-height: 2.75rem;
	}
	.capabilites-banner-wrapper {
		margin-top: 3.8rem;
	}
	.capabilites-banner-wrapper .inner {
		width: 100%;
	}
	.capabilites-banner {
		padding: 3.15rem 2.1rem 4rem;
		color: #fff;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		display: flex;
		justify-content: space-between;
	}
	.capabilites-banner:not(:last-child) {
		margin-bottom: 3.5rem;
	}
	.capabilites-banner.global {
		background-image: url("../images/capabilites-global-bg_sp.webp");
	}
	.capabilites-banner.achievements {
		padding-bottom: 0.9rem;
		flex-direction: row-reverse;
		background-image: url("../images/capabilites-achievements-bg_sp.webp");
	}
	.capabilites-banner-detail {
		width: 28.125rem;
	}
	.capabilites-banner.achievements .capabilites-banner-detail {
		width: 30rem;
	}
	.capabilites-banner-en {
		writing-mode: tb-rl;
		font-size: 3.2rem;
		font-family: "Hitachi Sans";
		text-transform: uppercase;
	}
	.capabilites-banner-ttl {
		margin-bottom: 1.5rem;
		font-weight: 700;
		font-size: 2.75rem;
		line-height: 4rem;
	}
	.capabilites-banner-list li {
		font-size: 1.75rem;
		line-height: 2.5rem;
	}
	.capabilites-banner-list li:not(:last-child) {
		margin-bottom: 1rem;
	}
	.capabilites-banner-list li::before{
		content: "";
		display: inline-block;
		width: 7px;
		vertical-align: middle;
		margin-right: 0.5em;
		height: 1px;
		background-color: #fff;
	}
	.capabilites-banner-list li span{
		display: inline-block;
		vertical-align: top;
	}
}
@media screen and (min-width: 768px) {

	.capabilites-section {
		padding: 6rem 0 4.625rem;
	}
  .capabilites-bg {
    position: relative;
    background: #fff;
	background-image: url("../images/capabilites-bg.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
  }
	.red-border-ttl {
		font-family: "Hitachi Sans Light";
		font-size: 10.9rem;
		color: transparent;
		-webkit-text-stroke: 1px #fa000f;
		text-stroke: 1px #fa000f;
		text-transform: uppercase;
	}
	.red-border-ttl.capabilites {
		margin-bottom: 1.9rem;
		margin-left: -0.8em;
	}
	.capabilites-first-text {
		margin-bottom: 1.8rem;
		font-size: 1.75rem;
		line-height: 3rem;
		letter-spacing: 0.02em;
	}
	.capabilites-section .bg-title {
		margin-bottom: 2rem;
		margin-left: -0.5rem;
	}
	.bg-title span:not(:last-child){
		margin-bottom: 1.5rem;
	}
	.bg-title span{
		display: inline-block;
		color: #fff;
		font-weight: 700;
	}
	.bg-title span.sp-only {
		display: none;
	}
	.bg-title span:not(:last-child){
		margin-bottom: 0.6rem;
	}
	.bg-title.black {
		margin-bottom: 2.3rem;
	}
	.bg-title.black span:not(:last-child) {
		margin-bottom: 1rem;
	}
	.bg-title.black span {
		background-color: #000;
		font-size: 2.375rem;
		padding: 0.5rem 1.9rem 0.6rem 1rem;
		letter-spacing: 0.02em;
	}
	.bg-title.red span{
		padding: 0.2rem  1.2rem 0.2rem 0.9rem;
		line-height: 4rem;
		font-size: 3.25rem;
		background-color: #fa000f;
	}
	.capabilites-text {
		font-size: 1.125rem;
		line-height: 2.375rem;
		letter-spacing: 0.02em;
	}
	.capabilites-banner-wrapper {
		margin-top: 2.5rem;
	}
	.capabilites-banner {
		padding: 4.2rem 4.2rem 4.7rem;
		color: #fff;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		display: flex;
		align-items: center;
		gap: 3.125rem;
	}
	.capabilites-banner:not(:last-child) {
		margin-bottom: 2.5rem;
	}
	.capabilites-banner.global {
		background-image: url("../images/capabilites-global-bg.webp");
	}
	.capabilites-banner.achievements {
		padding-block: 4rem 3.2rem;
		flex-direction: row-reverse;
		background-image: url("../images/capabilites-achievements-bg.webp");
	}
	.capabilites-banner >div{
		width: calc((100% - 3.125rem) / 2);
	}
	.capabilites-banner-en {
		text-align: center;
		font-size: 3.125rem;
		font-family: "Hitachi Sans";
		text-transform: uppercase;
	}
	.capabilites-banner-detail {
		padding-left: 2rem;
	}
	.capabilites-banner-ttl {
		margin-bottom: 1.3rem;
		font-weight: 700;
		font-size: 2.125rem;
		line-height: 3.5rem;
	}
	.capabilites-banner-list li {
		font-size: 1.15rem;
		line-height: 1.75rem;
	}
	.capabilites-banner-list li:not(:last-child) {
		margin-bottom: 1.25rem;
	}
	.capabilites-banner-list li::before{
		content: "";
		display: inline-block;
		width: 15px;
		vertical-align: middle;
		margin-right: 1em;
		height: 1px;
		background-color: #fff;
	}
	.capabilites-banner-list li span{
		display: inline-block;
		vertical-align: top;
	}
}
/*==============================================================================
capabilites-theme
============================================================================= */
@media screen and (max-width: 767px) {
  .capabilites-theme {
    position: relative;
    padding: 10.9375rem 0 5.9375rem;
  }
	.capabilites-theme .bg-title {
		margin-bottom: 3.5rem;
	}

  .capabilites-theme-first-text {
		font-size: 1.875rem;
		color: #fff;
		margin-bottom: 3.7rem;
	}
	.capabilites-theme-box-wrapper {
		counter-reset: number 0;
	}
	.capabilites-theme-box {
		counter-increment: number 1;
		display: flex;
		gap: 0.3rem;
	}
	.capabilites-theme-number {
		padding-top: 2rem;
		writing-mode: tb-rl;
		text-transform: uppercase;
		color: #fff;
		font-family: "Hitachi Sans";
		font-size: 0.875rem;
	}
	.capabilites-theme-number span {
		writing-mode: tb-rl;
	}
	.capabilites-theme-number::after {
		font-size: 3.4375rem;
		writing-mode: tb-rl;
		content: counter(number,decimal-leading-zero); 
	}
	.capabilites-theme-box-inner {
		width: 64.375rem;
		display: flex;
		flex-wrap: wrap;
		flex-direction: row-reverse;
		background: linear-gradient( to top, #fff 0%, #f4f4f4 99%);
	}
	.capabilites-theme-text-box {
		width: 100%;
		padding: 1.875rem 3rem 2.7rem 2.5rem;
	}
	.capabilites-theme-ttl {
		font-size: 2.25rem;
		line-height: 3.125rem;
		font-weight: 600;
		margin-bottom: 1.6rem;
	}
	.capabilites-theme-text {
		margin-bottom: 1rem;
		font-size: 1.75rem;
		line-height: 2.75rem;
	}
	.arrow-link {
		width: fit-content;
		margin-left: auto;
		display: block;
	}
	.arrow-link span{
		display: inline-block;
		padding:  0 1rem 0.5rem;
		font-size: 1.5rem;
		color: #000;
		border-bottom: 1px solid #000;
		vertical-align: middle;
		transition: 0.5s;
	}
	.arrow-link:hover span{
		border-color: transparent;
	}
	.arrow-link::after {
		vertical-align: middle;
		content: "";
		display: inline-block;
		margin-left: 0.875rem;
		border-radius: 50px;
		width: 5rem;
		height: 2.5rem;
		background-repeat: no-repeat;
		background-size: 8px;
		background-position: center;
		background-color: #fa000f;
		transition: 0.5s;
	}
	.arrow-link.bottom::after {
		background-image:url("../images/link-arrow-bottom.webp") ;
	}
	.arrow-link.bottom:hover::after {
		transform: translateY(5px);
	}
	.arrow-link.left::after {
		background-image:url("../images/link-arrow-left.webp") ;
	}
	.arrow-link.left:hover::after {
		transform: translateX(5px);
	}
}
@media screen and (min-width: 768px) {
	.capabilites-theme {
		position: relative;
		padding: 15.54rem 0 7.6rem;
	}
	.capabilites-theme .inner {
		padding-left: 6.2rem;
	}
	.capabilites-theme-first-text {
		font-size: 1.5rem;
		color: #fff;
		margin-bottom: 3.125rem;
	}
	.capabilites-theme-box-wrapper {
		counter-reset: number 0;
	}
	.capabilites-theme-box {
		counter-increment: number 1;
		display: flex;
		gap: 1.4rem;
	}
	.capabilites-theme-number {
		padding-top: 2.8rem;
		writing-mode: tb-rl;
		text-transform: uppercase;
		color: #fff;
		font-family: "Hitachi Sans";
		font-size: 0.875rem;
	}
	.capabilites-theme-number span {
		writing-mode: tb-rl;
	}
	.capabilites-theme-number::after {
		font-size: 3.125rem;
		writing-mode: tb-rl;
		content: counter(number,decimal-leading-zero); 
	}
	.capabilites-theme-box-inner {
		width: 64.375rem;
		display: flex;
		flex-direction: row-reverse;
		background: linear-gradient( to top, #fff 0%, #f4f4f4 99%);
	}
	.capabilites-theme-text-box {
		width: calc(100% - 22rem);
		padding: 1.7rem 1.25rem 1.3rem 3.6rem;
	}
	.capabilites-theme-img-box {
		width: 22rem;
		object-fit: cover;
		object-position: left;
		max-height: 280px;
	}
	.capabilites-theme-ttl {
		font-size: 1.875rem;
		line-height: 3rem;
		font-weight: 600;
		margin-bottom: 1.7rem;
	}
	.capabilites-theme-text {
		margin-bottom: 1.7rem;
		font-size: 1.15rem;
	}
	.arrow-link {
		width: fit-content;
		display: block;
	}
	.arrow-link span{
		display: inline-block;
		padding:  0 0.7rem 0.5rem;
		color: #000;
		border-bottom: 1px solid #000;
		vertical-align: middle;
		transition: 0.5s;
	}
	.arrow-link:hover span{
		border-color: transparent;
	}
	.arrow-link::after {
		vertical-align: middle;
		content: "";
		display: inline-block;
		border-radius: 50px;
		width: 2.7rem;
		height: 1.3rem;
		background-repeat: no-repeat;
		background-size: 8px;
		background-position: center;
		background-color: #fa000f;
		transition: 0.5s;
	}
	.arrow-link.bottom::after {
		background-image:url("../images/link-arrow-bottom.webp") ;
	}
	.arrow-link.bottom:hover::after {
		transform: translateY(5px);
	}
	.arrow-link.left::after {
		background-image:url("../images/link-arrow-left.webp") ;
	}
	.arrow-link.left:hover::after {
		transform: translateX(5px);
	}
}

/*==============================================================================
solution
============================================================================= */

@media screen and (max-width: 767px) {
	.solution-section {
		position: relative;
		background: #fff;
		counter-increment: number 1;
	}
	.solution-bg {
		padding: 8rem 0 6.5rem;
	}
	.solution-ttl {
		margin-bottom: 2.7rem;
		display: flex;
		flex-wrap: wrap;
		gap: 2.8rem 1.8rem;
	}
	.solution-number {
		width: 9.5rem;
		font-family: "Hitachi Sans";
		font-weight: 700;
		font-size: 1.5625rem;
		text-transform: uppercase;
	}
	.solution-number .text {
		margin-bottom: 1.2rem;
		display: block;
	}
	.solution-number .number::before {
		content: "";
		display: inline-block;
		width: 1.5rem;
		aspect-ratio: 24/7;
		background-color: #000;
	}
	.solution-number .number::after {
		font-size: 5.5rem;
		content: counter(number,decimal-leading-zero);
		color: #fa000f;
	}
	.solution-ttl-text {
		text-align: left;
		display: contents;
	}
	.solution-ttl-text  .bg-title {
		margin-bottom: 0;
		width: calc(100% - 9.5rem - 1.8rem);
	}
	.solution-section  .bg-title.black span{
		font-size: 2.3rem;
		line-height: 2.6rem;
		white-space: nowrap;
	}
	.solution-sub-title {
		font-weight: 700;
		font-size: 2.875rem;
		line-height: 4rem;
		letter-spacing: 0.02em;
	}
	.solution-text {
		margin-bottom: 3.125rem;
		line-height: 2.75rem;
		font-size: 1.75rem;
		letter-spacing: 0.02em;

	}
	.solution-img {
		object-fit: cover;
		height: auto;
		aspect-ratio: 670/400;
	}
	.solution-section .arrow-link {
		margin-left: auto;
		margin-top: 3rem;
		font-weight: 600;
	}
	.solution-section .arrow-link span {
		font-size: 1.75rem;
	}
	.solution-section .arrow-link::after {
		width: 6rem;
		height: 3rem;
	}
	#solution01 .solution-bg {
		padding-top: 6.5rem;
	}
	#solution03 .solution-bg {
		padding-bottom: 6rem;
	}
	#solution04 .solution-bg {
		padding-bottom: 7.5rem;
	}
	#solution05 .solution-bg {
		padding-top: 6.2rem;
		padding-bottom: 7.5rem
	}

}
@media screen and (min-width: 768px) {
	.solution-section {
		position: relative;
		background: #fff;
		counter-increment: number 1;
	}
	.solution-bg {
		padding: 7.4rem 0 7.5rem;
	}
	.solution-section .bg-title {
		margin-bottom: 0.9rem;
	}
	.solution-section .bg-title span {
		padding-left: 1.7rem;
	}
	.solution-ttl {
		margin-bottom: 0.8rem;
		display: flex;
		gap: 3.5rem;
	}
	.solution-ttl .bg-title span:not(:last-child) {
		margin-bottom: 0.5rem;
	}
	.solution-number {
		width: 7.5rem;
		font-family: "Hitachi Sans";
		font-weight: 700;
		font-size: 1.25rem;
		white-space: nowrap;
		text-transform: uppercase;
	}
	.solution-number .text {
		display: block;
		margin-bottom: 1rem;
	}
	.solution-number .number::before {
		content: "";
		display: inline-block;
		width: 1.5rem;
		aspect-ratio: 24/7;
		background-color: #000;
	}
	.solution-number .number::after {
		font-size: 4.375rem;
		content: counter(number,decimal-leading-zero);
		color: #fa000f;
	}
	.solution-ttl-text {
		text-align: left;
		width: calc(100% - 7.5rem - 3.125rem);
	}
	.solution-ttl-text .bg-title.black span{
		font-size: 2rem;
	}
	.solution-sub-title {
		font-weight: 700;
		font-size: 2.2rem;
		line-height: 4.125rem;
		letter-spacing: 0.1em;
	}
	.solution-text {
		margin-bottom: 5.8rem;
		line-height: 2.375rem;
		font-size: 1.1rem;
		letter-spacing: 0.04rem;
	}
	.solution-section .arrow-link {
		margin-left: auto;
		margin-top: 2rem;
		font-weight: 600;
	}
	.solution-section .arrow-link::after {
		width: 3.5rem;
		height: 1.8rem;
	}
	#solution02 .solution-bg {
		padding-bottom: 4.9rem;
	}
	#solution03 .solution-bg {
		padding-bottom: 7.2rem;
	}
	#solution04 .solution-bg {
		padding-bottom: 7.3rem;
	}
	#solution04 .bg-title span {
		white-space: nowrap;
		padding-right: 1.3rem;
	}
	#solution05 .solution-bg {
		padding-bottom: 7.2rem;
	}
	#solution05 .solution-sub-title {
		white-space: nowrap;
	}
}
/*==============================================================================
solution
============================================================================= */

@media screen and (max-width: 767px) {
	.reason-section {
		padding: 7.5rem 0 8.2rem;
		position: relative;
	}
	.reason-inner {
		position: relative;
	}
	.red-border-ttl.reason {
		position: absolute;
		top: 0;
		right: -1.5rem;
		white-space: nowrap;
		font-size: 15.125rem;
		writing-mode: tb-rl;
	}
	.reason-ttl {
		margin-bottom: 2.5rem;
		font-weight: 700;
		font-size: 5rem;
		line-height: 6.5rem;
	}
	.reason-ttl .big {
		font-size: 5.625rem;
	}
	.reason-first-text {
		margin-bottom: 5rem;
		font-size: 2.5rem;
		line-height: 1.7em;
		font-weight: 600;
	}
	.reason-box {
		padding: 3.125rem 0 10rem 3.5rem;
		position: relative;
	}
	.reason-box::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: calc(100vw - ((100vw - 75rem) / 2));
		height: 100%;
		background-image: url("../images/reason-bg_sp.webp");
		background-position: left bottom;
		background-repeat: no-repeat;
		background-size: cover;
		z-index: -1;
	}
	.reason-list {
		counter-reset: number 0;
		color: #fff;
	}
	.reason-list li {
		counter-increment: number 1;
	}
	.reason-list li:not(:last-child) {
		margin-bottom: 5.5rem;
	}
	.reason-list li::before {
		margin-bottom: 1.5rem;
		display: block;
		font-family: "Hitachi Sans";
		font-size: 3.75rem;
		content: counter(number,decimal-leading-zero);
	}
	.reason-list-ttl {
		margin-bottom: 1.5rem;
		font-weight: 700;
		line-height: 3.125rem;
		font-size: 2.375rem;
	}
	.reason-list li p {
		font-size: 1.6rem;
		line-height: 2.75rem;
		letter-spacing: 0.07em;
	}
}
@media screen and (min-width: 768px) {
	.reason-section {
		padding: 5.4rem 0 7.6rem;
		position: relative;
	}
	.reason-inner {
		position: relative;
	}
	.red-border-ttl.reason {
		position: absolute;
		top: -0.5rem;
		right: -1rem;
		letter-spacing: 0.08em;
		white-space: nowrap;
		font-size: 10.5rem;
		writing-mode: tb-rl;
		width: 1em;
	}
	.reason-ttl {
		margin-bottom: 2rem;
		font-weight: 700;
		font-size: 6.2rem;
		line-height: 8rem;
	}
	.reason-ttl .big {
		display: inline-block;
		margin-top: 5.5px;
		font-size: 7.5rem;
	}
	.reason-first-text {
		margin-bottom: 5.5rem;
		font-size: 2.5rem;
		font-weight: 600;
	}
	.reason-box {
		padding: 7.3rem 0.125rem 7.6rem 9.25rem;
		position: relative;
	}
	.reason-box::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: calc(100vw - ((100vw - 75rem) / 2));
		height: 100%;
		background-image: url("../images/reason-bg.webp");
		background-position: left bottom;
		background-repeat: no-repeat;
		background-size: cover;
		z-index: -1;
	}
	.reason-list {
		counter-reset: number 0;
		color: #fff;
	}
	.reason-list li {
		display: flex;
		align-items: center;
		gap: 3.1rem;
		counter-increment: number 1;
	}
	.reason-list li:not(:last-child) {
		margin-bottom: 4.5rem;
	}
	.reason-list li::before {
		font-family: "Hitachi Sans";
		font-size: 3.125rem;
		content: counter(number,decimal-leading-zero);
	}
	.reason-list-ttl {
		margin-bottom: 1.2rem;
		font-weight: 700;
		font-size: 1.875rem;
		letter-spacing: -0.03em;
	}
	.reason-list li p {
		line-height: 1.875rem;
		letter-spacing: 0.02em;
	}
}
/*==============================================================================
flow
============================================================================= */
@media screen and (max-width: 767px) {
  .flow-bg {
    background: #f4f4f4;
    padding: 7.3125rem 0 4rem;
  }
  .flow-head {
    font-size: 7.5rem;
    font-family: "Hitachi Sans";
    text-align: center;
    margin-bottom: 1.625rem;
  }
  .flow-ttl {
    font-size: 2.375rem;
    line-height: 1.47;
    text-align: center;
    margin-bottom: 2.3125rem;
    margin-right: -0.9375rem;
  }
  .flow-txt {
    font-size: 1.875rem;
    line-height: 1.66;
    margin-bottom: 2.875rem;
    text-align: center;
  }
  .flow-steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: url(../images/flow-step_sp.webp) no-repeat top center/cover;
    width: 42.5rem;
    margin: 0 auto;
  }
  .flow-step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0 2.1875rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    padding-top: 1.25rem;
  }
  .flow-step:first-child {
    height: 9.375rem;
  }
  .flow-step:first-child .flow-step-number {
    margin-top: 0.375rem;
  }
  .flow-step:first-child .flow-step-txt {
    margin-top: -2.5rem;
  }
  .flow-step:nth-of-type(2) {
    height: 11.875rem;
  }
  .flow-step:nth-of-type(2) .flow-step-number {
    margin-top: 0.125rem;
  }
  .flow-step:nth-of-type(2) .flow-step-txt {
    margin-top: -2.1875rem;
  }
  .flow-step:nth-of-type(3) {
    height: 9.4375rem;
  }
  .flow-step:nth-of-type(3) .flow-step-number {
    margin-top: -0.3125rem;
  }
  .flow-step:nth-of-type(3) .flow-step-txt {
    margin-top: -3.125rem;
  }
  .flow-step:nth-of-type(4) {
    height: 9.4375rem;
  }
  .flow-step:nth-of-type(4) .flow-step-number {
    margin-top: -0.9375rem;
  }
  .flow-step:nth-of-type(4) .flow-step-txt {
    margin-top: -3.4375rem;
  }
  .flow-step:last-child {
    height: 12rem;
  }
  .flow-step:last-child .flow-step-number {
    margin-top: -1.875rem;
  }
  .flow-step:last-child .flow-step-txt {
    margin-top: -4.375rem;
  }
  .flow-step-number {
    font-size: 1.5rem;
    color: #cc0000;
    font-family: "Hitachi Sans Light";
    font-weight: bold;
    grid-column: 2;
    grid-row: 1;
    margin: 0;
  }
  .flow-step-number .num {
    font-size: 1.875rem;
    font-family: "Hitachi Sans";
  }
  .flow-step-icon {
    grid-column: 1;
    grid-row: 1/3;
    justify-self: center;
    align-self: center;
    width: 8.75rem;
  }
  .flow-step-icon01 {
    width: 4.625rem;
    margin-left: auto;
  }
  .flow-step-icon02 {
    width: 4.5625rem;
    margin-left: auto;
  }
  .flow-step-icon03 {
    width: 4.375rem;
    margin-left: auto;
  }
  .flow-step-icon04 {
    width: 4.6875rem;
    margin-left: auto;
  }
  .flow-step-icon05 {
    width: 4.625rem;
    margin-left: auto;
  }
  .flow-step-txt {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
  }
  .flow-step-txt .txt {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: left;
    line-height: 1.4;
  }
  .flow-step-txt .txt .small {
    display: inline-block;
    font-size: 1.625rem;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .flow-bg {
    background: #f4f4f4;
    padding: 6.8rem 0 2rem;
  }
  .flow-inner {
    width: 62.5rem;
    margin: 0 auto;
  }
  .flow-head {
    font-size: 5.7rem;
    font-family: "Hitachi Sans";
    text-align: center;
    margin-bottom: 2.8125rem;
  }
  .flow-ttl {
    font-size: 1.875rem;
    text-align: center;
    margin-bottom: 1.75rem;
  }
  .flow-txt {
    font-size: 1.25rem;
    line-height: 2;
    margin-bottom: 2.25rem;
    text-align: center;
  }
  .flow-steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
  }
  .flow-step {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding: 2.6875rem 1.25rem 3.6875rem;
    position: relative;
    background: url(../images/flow-step02.webp) no-repeat top center/contain;
    margin: 0 -1.25rem;
  }
  .flow-step:first-child {
    background: url(../images/flow-step01.webp) no-repeat top center/contain;
    z-index: 5;
  }
  .flow-step:nth-of-type(2) {
    z-index: 4;
  }
  .flow-step:nth-of-type(3) {
    z-index: 3;
  }
  .flow-step:nth-of-type(4) {
    z-index: 2;
  }
  .flow-step:last-child {
    background: url(../images/flow-step03.webp) no-repeat top center/contain;
    z-index: 1;
  }
  .flow-step-number {
    font-size: 0.875rem;
    color: #cc0000;
    font-family: "Hitachi Sans Light";
  }
  .flow-step-number .num {
    font-size: 1.25rem;
    font-family: "Hitachi Sans";
  }
  .flow-step-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 4.75rem;
  }
  .flow-step-icon01 {
    width: 2.8125rem;
  }
  .flow-step-icon02 {
    width: 2.75rem;
  }
  .flow-step-icon03 {
    width: 2.5rem;
  }
  .flow-step-icon04 {
    width: 2.6875rem;
  }
  .flow-step-icon05 {
    width: 2.8125rem;
  }
  .flow-step-txt {
    height: 4.375rem;
    place-content: center;
    text-align: center;
  }
  .flow-step-txt .txt {
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
  }
  .flow-step-txt .txt .small {
    display: inline-block;
    font-size: 0.9375rem;
    line-height: 1.33;
  }
  .flow-step-txt.small .txt {
    font-size: 1.125rem;
    line-height: 1.55;
  }
}
/*==============================================================================
faq
============================================================================= */
@media screen and (max-width: 767px) {
  .faq-bg {
    background: #f4f4f4;
    padding: 5.6875rem 0 7.2rem;
  }
  .faq-inner {
    width: 41.875rem;
    margin: 0 auto;
  }
  .faq-head {
    font-size: 6.25rem;
    text-align: center;
    font-family: "Hitachi Sans";
    margin-bottom: 3rem;
  }
  .faq-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.6875rem;
  }
  .faq-item {
    background: #fff;
    border-radius: 0.625rem;
    overflow: hidden;
    -webkit-box-shadow: 0 0.25rem 1rem rgba(188, 186, 186, 0.1);
            box-shadow: 0 0.25rem 1rem rgba(188, 186, 186, 0.1);
    width: 41.875rem;
  }
  .faq-item-ttl {
    position: relative;
    padding: 3.25rem 3.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    font-size: 1.875rem;
    font-weight: bold;
    line-height: 1.33;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .faq-item-ttl .faq-q {
    font-size: 1.875rem;
    margin-right: 0.9375rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-family: "Hitachi Sans";
    font-weight: normal;
  }
  .faq-item-ttl .arrow {
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: auto;
  }
  .faq-item-ttl .arrow::before, .faq-item-ttl .arrow::after {
    content: "";
    position: absolute;
    background: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .faq-item-ttl .arrow::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 0.25rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .faq-item-ttl .arrow::after {
    top: 0;
    left: 50%;
    width: 0.25rem;
    height: 100%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .faq-item-ttl.open .arrow::after {
    opacity: 0;
    -webkit-transform: translateX(-50%) scale(0);
            transform: translateX(-50%) scale(0);
  }

  .faq-item-answer {
    padding: 0 5rem 3.75rem 3.75rem;
    font-size: 1.125rem;
    line-height: 1.6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .faq-item-answer .faq-a {
    font-size: 1.875rem;
    margin-right: 0.9375rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-family: "Hitachi Sans";
  }
  .faq-item-answer .faq-a-txt {
    font-size: 1.75rem;
    display: inline-block;
    text-indent: 0.375rem;
  }
}
@media screen and (min-width: 768px) {
  .faq-bg {
    background: #f4f4f4;
    padding: 5.25rem 0 7.6rem;
  }
  .faq-inner {
    width: 62.5rem;
    margin: 0 auto;
  }
  .faq-head {
    font-size: 5.625rem;
    text-align: center;
    font-family: "Hitachi Sans";
    margin-bottom: 3rem;
  }
  .faq-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.25rem;
  }
  .faq-item {
    background: #fff;
    border-radius: 0.625rem;
    overflow: hidden;
    -webkit-box-shadow: 0 0.25rem 1rem rgba(188, 186, 186, 0.1);
            box-shadow: 0 0.25rem 1rem rgba(188, 186, 186, 0.1);
    width: 30.625rem;
  }
  .faq-item-ttl {
    position: relative;
    padding: 0 1.8rem 0 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.5;
    height: 6.25rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .faq-item-ttl .faq-q {
    font-size: 1.25rem;
    margin-right: 1.25rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-family: "Hitachi Sans";
    font-weight: normal;
  }
  .faq-item-ttl .arrow {
    position: relative;
    width: 1rem;
    height: 1rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: auto;
  }
  .faq-item-ttl .arrow::before, .faq-item-ttl .arrow::after {
    content: "";
    position: absolute;
    background: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .faq-item-ttl .arrow::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 0.125rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .faq-item-ttl .arrow::after {
    top: 0;
    left: 50%;
    width: 0.125rem;
    height: 100%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .faq-item-ttl.open .arrow::after {
    opacity: 0;
    -webkit-transform: translateX(-50%) scale(0);
            transform: translateX(-50%) scale(0);
  }
  .faq-item-answer {
    padding: 0.5rem 1.25rem 2rem;
    font-size: 1.125rem;
    line-height: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .faq-item-answer .faq-a {
    font-size: 1.25rem;
    margin-right: 1.25rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-family: "Hitachi Sans";
  }
  .faq-item-answer .faq-a-txt {
    display: inline-block;
    text-indent: 0.375rem;
  }
}
/*==============================================================================
tips
============================================================================= */
@media screen and (max-width: 767px) {
  .tips-bg {
    background: url(../images/tips-bg_sp.webp) no-repeat center center/cover;
    padding: 6.375rem 0 5.875rem;
    margin-bottom: -0.1875rem;
  }
  .tips-inner {
    width: 41.875rem;
    margin: 0 auto;
  }
  .tips-ttl {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 3.4375rem;
  }
  .tips-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.25rem;
  }
  .tips-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5625rem;
  }
  .tips-card-img {
    width: 15.625rem;
  }
  .tips-card-txt {
    font-size: 1.75rem;
    letter-spacing: 0.02em;
    line-height: 1.42;
    color: #fff;
    width: 25rem;
    margin-right: -0.3125rem;
  }
}
@media screen and (min-width: 768px) {
  .tips-bg {
    background: url(../images/tips-bg.webp) no-repeat center center/cover;
    padding: 4.875rem 0 4.6875rem;
    margin-bottom: -0.125rem;
  }
  .tips-inner {
    width: 62.5rem;
    margin: 0 auto;
  }
  .tips-ttl {
    font-size: 1.875rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 2.625rem;
  }
  .tips-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
  }
  .tips-card-txt {
    font-size: 1.125rem;
    letter-spacing: 0.04em;
    line-height: 1.66;
    color: #fff;
    text-align: center;
    margin-top: 1.4375rem;
  }
}
/*==============================================================================
company
============================================================================= */
@media screen and (max-width: 767px) {
  .company-bg {
    background: #4d4d4d;
    padding: 6.25rem 0 4.1875rem;
  }
  .company-inner {
    width: 41.875rem;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .company-head {
    font-size: 6.25rem;
    color: #636363;
    text-align: center;
    font-family: "Hitachi Sans";
    margin-bottom: 3.25rem;
  }
  .company-img {
    margin: 0 auto 2.5rem;
    width: 41.875rem;
  }
  .company-row {
    display: grid;
    grid-template-columns: 8.75rem 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 2.1875rem;
  }
  .company-row dt {
    font-size: 1.75rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.35;
  }
  .company-row dd {
    font-size: 1.625rem;
    line-height: 1.46;
    color: #fff;
  }
  .company-row dd .company-txt {
    display: inline-block;
    text-indent: -1rem;
    padding-left: 1rem;
    margin-bottom: 0.3125rem;
  }
  .company-row.company-name dt {
    margin-top: 0.3125rem;
  }
  .company-row.company-name dd {
    font-size: 1.875rem;
  }
  .company-row.diff {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .company-bg {
    background: #4d4d4d;
    padding: 3.6875rem 0 4.5rem;
  }
  .company-inner {
    position: relative;
    width: 62.5rem;
    margin: 0 auto;
  }
  .company-head {
    font-size: 5.625rem;
    color: #636363;
    text-align: center;
    font-family: "Hitachi Sans";
    margin-bottom: 2.4rem;
  }
  .company-img {
    position: absolute;
    top: 0.5rem;
    right: -31.25rem;
    width: 53.125rem;
  }
  .company-row {
    display: grid;
    grid-template-columns: 7.5rem 1fr;
    gap: 1.875rem 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 1.3rem;
  }
  .company-row dt {
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    margin-top: 0.3125rem;
  }
  .company-row dd {
    font-size: 0.875rem;
    line-height: 1.85;
    color: #fff;
  }
  .company-row.company-name dt {
    margin-top: 0.5625rem;
  }
  .company-row.company-name dd {
    font-size: 1.125rem;
  }
  .company-row.diff {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
/*==============================================================================
Footer
============================================================================= */
@media screen and (max-width: 767px) {
  .footer-bg {
    background: #fff;
    padding: 4.1875rem 0;
  }
  .footer-copy {
    font-size: 1.5rem;
    text-align: center;
    color: #4d4d4d;
  }
}
@media screen and (min-width: 768px) {
  .footer-bg {
    background: #fff;
    padding: 2.6875rem 0;
  }
  .footer-copy {
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    text-align: center;
    color: #4d4d4d;
  }
}