@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https: //css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https: //webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4159292035vw;
  }
}
@media (min-width: 1130px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #003865;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

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

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

.l-inner {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding: 0 25px;
    max-width: 1130px;
  }
}

.c-title {
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  text-align: center;
  padding-bottom: 1.25rem;
}
.c-title sup {
  font-size: 0.5em;
}
.c-title::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 0.1875rem;
  background-color: #003865;
}
@media screen and (min-width: 768px) {
  .c-title::before {
    height: 0.375rem;
  }
}
@media screen and (min-width: 768px) {
  .c-title {
    padding-bottom: 2.375rem;
    font-size: 2.5rem;
  }
}

.p-404 {
  margin-top: 3.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-404 {
    margin-top: 6.25rem;
  }
}

.p-404__title {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-404__title {
    font-size: 2.5rem;
  }
}

.p-404__btnWrap {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-404__btnWrap {
    margin-top: 4rem;
  }
}

.p-404__btn {
  display: inline-block;
  background-color: #003865;
  border-radius: 0.3125rem;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding: 0.9375rem 2.9375rem 0.9375rem 2.3125rem;
  font-size: 1rem;
  transition: all 0.3s;
  border: 1px solid #003865;
  max-width: 15.625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-404__btn {
    max-width: 18.75rem;
    padding: 1.3125rem 4.1875rem 1.3125rem 3.5625rem;
    font-size: 1.25rem;
  }
}
.p-404__btn::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 1.3125rem;
  transform: translateY(-50%);
  width: 0.5625rem;
  height: 0.9375rem;
  transition: all 0.3s;
  background: url("../images/common/icon-arrow-white.svg") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-404__btn:hover {
    opacity: 1;
    background-color: #fff;
    color: #003865;
  }
  .p-404__btn:hover::before {
    background-image: url("../images/common/icon-arrow-blue.svg");
  }
}

.p-contact {
  margin-top: 3.75rem;
  text-align: center;
  color: #003865;
}
@media screen and (min-width: 768px) {
  .p-contact {
    margin-top: 13.125rem;
  }
}

.p-contact__subtitle {
  font-size: 1.25rem;
  text-align: center;
  font-weight: 700;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__subtitle {
    font-size: 2rem;
    margin-top: 3.75rem;
  }
}

.p-contact__title {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-contact__title {
    font-size: 2.5rem;
  }
}

.p-contact__lead {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__lead {
    margin-top: 3.75rem;
  }
}

.p-contact__subtitle + .p-contact__lead {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__subtitle + .p-contact__lead {
    margin-top: 2.5rem;
  }
}

.p-contact__form {
  max-width: 59.5rem;
  margin: 2.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    margin-top: 4rem;
  }
}

.p-contact__form-group + .p-contact__form-group {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form-group + .p-contact__form-group {
    margin-top: 4rem;
  }
}

.p-contact__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact__label {
    font-size: 1.125rem;
  }
}

.p-contact__required {
  display: inline-block;
  font-size: 0.8125rem;
  background-color: #EA5514;
  color: #fff;
  padding: 0.0625rem 0.5rem;
  border-radius: 1px;
}

.p-contact__input {
  width: 100%;
  border: 1px solid #003865;
  padding: 1rem 1.25rem;
  background-color: #FCFDFF;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__input {
    font-size: 1rem;
  }
}
.p-contact__input::-moz-placeholder {
  color: #849FB4;
}
.p-contact__input::placeholder {
  color: #849FB4;
}

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

.p-contact__select-group {
  text-align: left;
  max-width: 20.4375rem;
  position: relative;
}
.p-contact__select-group select {
  display: block;
  width: 100%;
  border: 1px solid #003865;
  padding: 1rem 1.25rem;
  background-color: #FCFDFF;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
@media screen and (min-width: 768px) {
  .p-contact__select-group select {
    font-size: 1rem;
  }
}

.wpcf7-previous {
  display: inline-block !important; /* or flex など、欲しい形に */
}

/* カスタム矢印（ラッパーの擬似要素で描画） */
.p-contact__select-group::after {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border: 0;
  border-bottom: solid 2px #849FB4;
  border-right: solid 2px #849FB4;
  transform: rotate(45deg);
  position: absolute;
  top: 0.1875rem;
  right: 1.375rem;
  bottom: 0;
  margin: auto;
}

.p-contact__select:has(option:first-child:checked) {
  color: #849FB4;
}

.js-contact-number {
  display: none;
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 4.6875rem;
  border: 1px solid #003865;
  padding: 1rem 0;
  font-size: 1rem;
  text-align: center;
}
.js-contact-number::-moz-placeholder {
  color: #849FB4;
}
.js-contact-number::placeholder {
  color: #849FB4;
}

.p-contact__confirm-number {
  display: none;
}

.js-contact-unit {
  display: none;
  position: absolute;
  right: 0.8125rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 500;
  color: #003865;
}

.p-contact__checkbox-group .wpcf7-list-item {
  display: block;
}

.p-contact__checkbox span label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5625rem;
}

.p-contact__checkbox-group {
  padding-left: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact__checkbox-group {
    padding-left: 1.25rem;
  }
}

.p-contact__checkbox-text {
  font-weight: 500;
}

.p-contact__note {
  margin-left: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-contact__note {
    font-size: 0.875rem;
  }
}

.p-contact__textarea {
  margin-top: 1.5rem;
  width: 100%;
  height: 11.25rem;
  border: 1px solid #003865;
  border-radius: 0.25rem;
  padding: 0.875rem 1.125rem;
  resize: vertical;
  background-color: #FCFDFF;
}
@media screen and (min-width: 768px) {
  .p-contact__textarea {
    height: 15rem;
  }
}
.p-contact__textarea::-moz-placeholder {
  color: #849FB4;
}
.p-contact__textarea::placeholder {
  color: #849FB4;
}

.p-contact__submit {
  margin-top: 2.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-contact__submit {
    gap: 2rem;
    flex-direction: row;
    margin-top: 4rem;
  }
}

.p-contact__submit .p-contact__btnWrap2 input,
.p-contact__submit .p-contact__btnWrap input {
  width: 15.625rem;
}
@media screen and (min-width: 768px) {
  .p-contact__submit .p-contact__btnWrap2 input,
  .p-contact__submit .p-contact__btnWrap input {
    padding: 1.3125rem;
    width: 18.75rem;
  }
}

.wpcf7-spinner {
  display: none !important;
}

.p-contact__btnWrap {
  display: inline-block;
  position: relative;
}
.p-contact__btnWrap::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 1.3125rem;
  transform: translateY(-50%);
  width: 0.5625rem;
  height: 0.9375rem;
  background: url("../images/common/icon-arrow-white.svg") no-repeat center center/contain;
  transition: all 0.3s;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-contact__btnWrap:hover .p-contact__btn {
    opacity: 1;
    background-color: #fff;
    color: #003865;
  }
  .p-contact__btnWrap:hover::before {
    background-image: url("../images/common/icon-arrow-blue.svg");
  }
}

.p-contact__btn {
  cursor: pointer;
  display: inline-block;
  background-color: #003865;
  border-radius: 0.3125rem;
  font-weight: 500;
  padding: 0.9375rem;
  font-size: 1rem;
  color: #fff;
  border: 1px solid #003865;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .p-contact__btn {
    padding: 1.3125rem;
    font-size: 1.25rem;
  }
}

.p-contact__btnWrap2 {
  display: inline-block;
  position: relative;
}
.p-contact__btnWrap2::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 1.3125rem;
  transform: translateY(-50%);
  width: 0.5625rem;
  height: 0.9375rem;
  background: url("../images/common/icon-arrow-blue.svg") no-repeat center center/contain;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-contact__btnWrap2:hover input {
    opacity: 1;
    background-color: #fff;
    color: #003865;
  }
}

.p-contact__btnWrap2 input {
  cursor: pointer;
  display: inline-block;
  background-color: #E2E7EB;
  border-radius: 0.3125rem;
  font-weight: 500;
  padding: 0.9375rem;
  font-size: 1rem;
  color: #003865;
  border: 1px solid #003865;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .p-contact__btnWrap2 input {
    padding: 1.3125rem;
    font-size: 1.25rem;
  }
}

.wpcf7-not-valid-tip {
  text-align: left;
}

.p-contact__confirm {
  margin-top: 1.5625rem;
  padding-left: 1.25rem;
  text-align: left;
}

.wpcf7 form .wpcf7-response-output {
  display: none;
}

.p-cta {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-cta {
    margin-top: 6.0625rem;
  }
}

.p-cta__body {
  background-color: #003865;
  border-radius: 0.3125rem;
  color: #fff;
  text-align: center;
  padding: 2.5rem 20px;
  position: relative;
}
.p-cta__body::before {
  position: absolute;
  content: "";
  top: 0;
  width: 14.375rem;
  height: 100%;
  background: url("../images/top/logo-mask.png") no-repeat bottom center/contain;
  right: 5%;
}
@media screen and (min-width: 768px) {
  .p-cta__body::before {
    width: 21.25rem;
    right: 18%;
  }
}
@media screen and (min-width: 768px) {
  .p-cta__body {
    padding: 4rem 20px;
  }
}

.p-cta__title {
  font-size: clamp(1.188rem, -0.091rem + 5.455vw, 1.375rem);
}
@media screen and (min-width: 768px) {
  .p-cta__title {
    font-size: 2rem;
  }
}

.p-cta__btnWrap {
  margin-top: 2.1875rem;
}

.p-cta__btn {
  display: inline-block;
  background-color: #fff;
  border-radius: 0.3125rem;
  font-weight: 500;
  color: #003865;
  position: relative;
  padding: 0.9375rem;
  font-size: 1rem;
  transition: background-color 0.3s;
  max-width: 15.625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-cta__btn {
    max-width: 18.75rem;
    padding: 1.625rem;
    font-size: 1.25rem;
  }
}
.p-cta__btn::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 1.3125rem;
  transform: translateY(-50%);
  width: 0.5625rem;
  height: 0.9375rem;
  background: url("../images/common/icon-arrow-blue.svg") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-cta__btn:hover {
    opacity: 1;
    background-color: #F0BF56;
  }
}

.p-devices {
  overflow: hidden;
  background-color: #E2E7EB;
  padding: 3.75rem 0;
}
@media screen and (min-width: 768px) {
  .p-devices {
    padding: 6rem 0;
  }
}

.p-devices__figure {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .p-devices__figure {
    overflow-x: auto;
  }
}

.p-devices__figure img {
  width: 1080px;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .p-devices__figure img {
    max-width: 100%;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 1080/468;
  }
}

.p-faq {
  padding: 3.75rem 0 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-faq {
    padding: 5.625rem 0 6.25rem;
  }
}

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

.p-faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 1.25rem 1.875rem 1.25rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-faq__question {
    padding: 3.125rem 3.125rem 3.125rem 0;
  }
}

.p-faq__q-icon {
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  line-height: 1;
  color: #BDC6CD;
  display: inline-block;
  transform: translateY(-8px);
  font-size: 2.5rem;
  margin-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-faq__q-icon {
    margin-right: 1rem;
    transform: translateY(-18px);
    font-size: 4rem;
  }
}

.p-faq__q-text {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 700;
  color: #003865;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-faq__q-text {
    font-size: 1.5rem;
  }
}

.p-faq__a-text {
  letter-spacing: 0.05em;
}

.p-faq__question::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.1875rem solid #003865;
  border-right: 0.1875rem solid #003865;
  transform: translateY(-50%) rotate(135deg);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-faq__question::before {
    width: 0.8125rem;
    height: 0.8125rem;
  }
}

.p-faq__item.is-open .p-faq__question::before {
  transform: translateY(-50%) rotate(315deg);
}

.p-faq__answer {
  display: none;
  padding: 0.875rem 0 1.625rem;
}

.p-faq__a-icon {
  display: inline-block;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  color: #EA5514;
  transform: translateY(-8px);
  margin-right: 1.4375rem;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-faq__a-icon {
    transform: translateY(-12px);
    margin-right: 2.5rem;
    font-size: 2rem;
  }
}

.p-flow {
  padding: 3.75rem 0 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-flow {
    padding: 5.625rem 0 6.25rem;
  }
}

.p-flow__list {
  margin-top: 3rem;
  list-style: none;
  display: grid;
  gap: 4.1875rem;
}
@media screen and (min-width: 768px) {
  .p-flow__list {
    grid-template-columns: repeat(5, 1fr);
  }
}

.p-flow__item {
  max-width: 10.0625rem;
  width: 100%;
  margin: 0 auto;
}
.p-flow__item:last-child .p-flow__box::before {
  display: none;
}

.p-flow__box {
  background-color: #E2E7EB;
  padding: 1.9375rem;
  position: relative;
  border-radius: 0.3125rem;
  position: relative;
}
.p-flow__box::before {
  position: absolute;
  content: "";
  border-right: 0.1875rem solid #003865;
  border-bottom: 0.1875rem solid #003865;
  bottom: -3.75rem;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 0.75rem;
  height: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-flow__box::before {
    width: 1.125rem;
    height: 1.125rem;
    bottom: auto;
    left: auto;
    top: 50%;
    right: -2.1875rem;
    transform: translateY(-50%) rotate(-45deg);
  }
}

.p-flow__num {
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  color: #849FB4;
  position: absolute;
  top: 0;
  left: 0.3125rem;
  font-size: 1.625rem;
}

.p-flow__icon {
  max-width: 6.25rem;
  width: 100%;
}
.p-flow__icon img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 100/100;
}

.p-flow__text {
  text-align: center;
  margin-top: 0.3125rem;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-flow__text {
    font-size: 1.125rem;
  }
}

.p-footer {
  background-color: #EDEEF0;
  padding: 2.5rem 0;
  margin-top: 2.5rem;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-footer {
    margin-top: 6rem;
    margin-bottom: 0;
    padding: 3.5rem 0;
  }
}

.p-footer__box {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-footer__box {
    display: flex;
    justify-content: space-between;
    gap: 1.875rem;
    align-items: flex-end;
  }
}

.p-footer__col {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__col {
    margin-top: 0;
  }
}

.p-footer__col--left {
  flex: 1 1 auto;
}
@media screen and (min-width: 768px) {
  .p-footer__col--left {
    max-width: 36.75rem;
  }
}

.p-footer__col--right {
  flex: 0 0 auto;
}
@media screen and (min-width: 768px) {
  .p-footer__col--right {
    max-width: 26.125rem;
  }
}

.p-footer__logo {
  width: 100%;
  display: inline-block;
  max-width: 15.75rem;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    max-width: 22rem;
  }
}
.p-footer__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 352/90;
}

.p-footer__company {
  margin-top: 1.5625rem;
  font-weight: 700;
  line-height: 1;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-footer__company {
    margin-top: 3.125rem;
    font-size: 1.75rem;
  }
}

.p-footer__contact {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__contact {
    margin-top: 3rem;
    padding-bottom: 2.0625rem;
  }
}

.p-footer__contact-title {
  font-weight: 700;
  line-height: 1;
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-footer__contact-title {
    font-size: 2rem;
  }
}

.p-footer__contact-tel {
  margin-top: 1rem;
  font-weight: 700;
  line-height: 1;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-footer__contact-tel {
    font-size: 1.5rem;
  }
}

.p-footer__mission {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__mission {
    margin-top: 3.4375rem;
  }
}

.p-footer__mission-label {
  font-size: 1.125rem;
  color: #849FB4;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-footer__mission-label {
    font-size: 1.5rem;
  }
}

.p-footer__mission-text {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-footer__mission-text {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}

.p-footer__mission-note {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__mission-note {
    margin-top: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__office {
    max-width: 24.125rem;
    margin-left: auto;
    margin-top: 0;
  }
}

.p-footer__office-label {
  font-size: 1.125rem;
  color: #849FB4;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-footer__office-label {
    font-size: 1.5rem;
  }
}

.p-footer__office-address {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-footer__office-address {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}

.p-footer__business {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__business {
    padding-bottom: 1rem;
    padding-left: 1.125rem;
    border-left: 1px solid #003865;
    margin-top: 3.4375rem;
    padding-bottom: 2rem;
  }
}

.p-footer__business-label {
  font-size: 1.125rem;
  color: #849FB4;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-footer__business-label {
    font-size: 1.5rem;
  }
}

.p-footer__business-text {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-footer__business-text {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}

.p-footer__copyright {
  display: inline-block;
  font-size: 0.75rem;
  margin-top: 2.5rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    margin-top: 4.1875rem;
    font-size: 0.875rem;
  }
}

.p-greeting {
  background-color: #EDEEF0;
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-greeting {
    padding: 6rem 0;
  }
}

.p-greeting__content {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-greeting__content {
    margin-top: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 4.125rem;
  }
}

.p-greeting__image {
  max-width: 29.5625rem;
}

.p-greeting__image img {
  border-radius: 0.3125rem;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 473/459;
}

.p-greeting__text {
  margin-top: 1.875rem;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-greeting__text {
    margin-top: 0;
    flex: 1;
  }
}

.p-greeting__name {
  line-height: 1.75;
  margin-top: 1.6875rem;
  text-align: right;
}

.p-greeting__name span {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-greeting__name span {
    font-size: 1.125rem;
  }
}

.p-header {
  background-color: #003865;
  padding-top: 1.25rem;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-header {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 999;
    padding-top: 2.25rem;
  }
}

.p-header__inner {
  max-width: 77.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-header__logo {
  width: 100%;
  display: inline-block;
  max-width: 7.6875rem;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    max-width: 13.125rem;
  }
}
.p-header__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 210/54;
}

@media screen and (max-width: 767px) {
  .p-header__btnWrap {
    display: none;
  }
  .p-header__btnWrap.is-fixed {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  .p-header__btnWrap.is-fixed .p-header__btn {
    text-align: center;
    padding: 1.4375rem 0;
    background-color: #003865;
    border-radius: 0.3125rem 0.3125rem 0 0;
    animation: slideUp 0.3s ease-out;
    color: #fff;
    width: 100%;
    text-align: center;
    display: block;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.p-header__btn {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-header__btn {
    display: inline-block;
    background-color: #fff;
    border-radius: 0.3125rem;
    font-weight: 500;
    color: #003865;
    transition: background-color 0.3s;
    padding: 1.3125rem 2.3125rem;
  }
}
.p-header__btn span {
  position: relative;
  display: inline-block;
  padding-left: 2.125rem;
}
.p-header__btn span::before {
  position: absolute;
  content: "";
  top: 60%;
  left: 0;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.125rem;
  background: url("../images/top/sp/icon-mail.svg") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-header__btn span::before {
    background-image: url("../images/top/icon-mail.svg");
  }
}
@media (min-width: 768px) and (max-width: 1130px) {
  .p-header__btn span::before {
    top: 53%;
  }
}
@media screen and (min-width: 768px) {
  .p-header__btn:hover {
    opacity: 1;
    background-color: #F0BF56;
  }
}

.p-hero {
  padding-top: 1rem;
  position: relative;
  overflow: hidden;
  padding-bottom: 1.5rem;
  background-color: #003865;
}
@media screen and (min-width: 768px) {
  .p-hero {
    padding-top: 7.5rem;
    padding-bottom: 0;
  }
}
.p-hero::before {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: clamp(12.5rem, 7.715rem + 17.804vw, 16.25rem);
  background-color: #fff;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-hero::before {
    height: 13.75rem;
  }
}

.p-hero__inner {
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .p-hero__inner {
    padding-right: 0;
    padding-left: 25px;
  }
}

.p-hero__body {
  display: flex;
  margin-left: auto;
  flex-direction: column-reverse;
  max-width: 82.5rem;
}
@media screen and (min-width: 768px) {
  .p-hero__body {
    flex-direction: row;
    justify-content: space-between;
  }
}

.p-hero__content {
  flex: 1;
  max-width: 45.4375rem;
  position: relative;
  width: 100%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-hero__content {
    margin-right: -10rem;
    white-space: nowrap;
    padding: 3.4375rem 0 1.875rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-hero__content {
    transform: translateX(10px);
  }
}

.p-hero__lead {
  font-size: clamp(1.313rem, 0.416rem + 3.827vw, 2.25rem);
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-hero__lead {
    font-size: 2.875rem;
  }
}

.p-hero__lead--strong {
  color: #F0BF56;
}

.p-hero__lead--underline {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-color: #F0BF56;
          text-decoration-color: #F0BF56;
  text-decoration-thickness: 0.1875rem;
  text-underline-offset: 0.25rem;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media screen and (min-width: 768px) {
  .p-hero__lead--underline {
    text-decoration-thickness: 0.5625rem;
    text-underline-offset: 0.375rem;
  }
}

.p-hero__points {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-hero__points {
    margin-top: 1.875rem;
  }
}

.p-hero__point-item {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 400;
  padding-left: 1em;
  position: relative;
}
.p-hero__point-item + .p-hero__point-item {
  margin-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-hero__point-item {
    font-size: 1.125rem;
  }
}
.p-hero__point-item::before {
  position: absolute;
  content: "";
  left: 0;
  transform: translateY(-50%);
  width: 0.2em;
  height: 0.2em;
  border-radius: 50%;
  background-color: #fff;
  top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-hero__point-item::before {
    top: 0.75rem;
  }
}

.p-hero__img {
  margin-top: 1.5rem;
  width: calc(100vw - 20px);
  overflow: hidden;
}
.p-hero__img img {
  border-radius: 0.625rem 0 0 0.625rem;
}

.p-hero__visual {
  background: url("../images/top/hero-img.jpg") no-repeat center center/cover;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-hero__visual {
    border-radius: 0.625rem 0 0 0.625rem;
    width: 47.875rem;
  }
}

.p-hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 33.3125rem;
  margin: 2.1875rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-hero-badges {
    gap: 1.25rem;
    margin: 6rem 0 0;
  }
}

.p-hero-badges__item {
  width: 100%;
  margin: 0 auto;
}
.p-hero-badges__item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 161/161;
}

.p-installation {
  padding: 3.75rem 0 5rem;
  background-color: #EDEEF0;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-installation {
    margin-top: 6rem;
    padding: 5.625rem 0 6.875rem;
  }
}

.p-installation__title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #003865;
}
@media screen and (min-width: 768px) {
  .p-installation__title {
    font-size: 2rem;
  }
}

.p-installation__strong {
  font-size: 1.5rem;
  display: inline;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-color: #849FB4;
          text-decoration-color: #849FB4;
  text-decoration-thickness: 0.3125rem;
  text-underline-offset: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media screen and (min-width: 768px) {
  .p-installation__strong {
    font-size: 2.5rem;
    text-decoration-thickness: 0.5625rem;
  }
}

.p-installation__figure {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .p-installation__figure {
    overflow-x: auto;
  }
}

.p-installation__figure img {
  width: 1080px;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .p-installation__figure img {
    max-width: 100%;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 1080/521;
  }
}

.p-issues-solution {
  padding: 3.75rem 0;
  background-color: #E2E7EB;
  margin-top: 5.3125rem;
}
@media screen and (min-width: 768px) {
  .p-issues-solution {
    padding: 5.625rem 0 6.875rem;
  }
}

.p-issues-solution__list {
  list-style: none;
}

.p-issues-solution__item {
  overflow: hidden;
  background-color: #fff;
  padding: 2.5rem 20px;
  border-radius: 0.3125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-issues-solution__item {
    padding: 5rem 3rem;
  }
}

.p-issues-solution__item + .p-issues-solution__item {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-issues-solution__item + .p-issues-solution__item {
    margin-top: 4rem;
  }
}

.p-issues-solution-title {
  display: flex;
  align-items: center;
  border-left: 0.25rem solid #003865;
  padding-left: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-issues-solution-title {
    border-left: 0.5rem solid #003865;
    padding-left: 1.5rem;
  }
}

.p-issues-solution-title__label {
  display: flex;
  gap: 1rem;
}

.p-issues-solution-title__label-text {
  font-weight: 700;
  line-height: 1;
  color: #849FB4;
  font-size: 1.5rem;
  transform: translateY(-7px);
}
@media screen and (min-width: 768px) {
  .p-issues-solution-title__label-text {
    transform: translateY(-15px);
    font-size: 2rem;
  }
}
.p-issues-solution-title__label-text span {
  display: inline-block;
  font-family: "Barlow", sans-serif;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .p-issues-solution-title__label-text span {
    transform: translateY(5px);
    font-size: 3rem;
  }
}

.p-issues-solution-title__icon {
  width: 100%;
  max-width: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-issues-solution-title__icon {
    max-width: 2rem;
  }
}
.p-issues-solution-title__icon img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 32/32;
}

.p-issues-solution-title__text {
  font-weight: 700;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-issues-solution-title__text {
    font-size: clamp(2.375rem, 1.955rem + 0.606vw, 2.5rem);
  }
}

.p-issues-solution__lead {
  margin-top: 1.5rem;
  font-size: 1.1875rem;
  font-weight: 700;
}
.p-issues-solution__lead span {
  display: block;
  color: #EA5514;
}
@media screen and (min-width: 768px) {
  .p-issues-solution__lead {
    margin-top: 3rem;
    font-size: 2rem;
  }
}

.p-issues-solution__lead-strong {
  display: inline;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-color: #F0BF56;
          text-decoration-color: #F0BF56;
  text-decoration-thickness: 0.3125rem;
  text-underline-offset: 0.25rem;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media screen and (min-width: 768px) {
  .p-issues-solution__lead-strong {
    text-decoration-thickness: 0.5625rem;
    text-underline-offset: 0.375rem;
  }
}

.p-issues-solution__content {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-issues-solution__content {
    display: flex;
    justify-content: space-between;
    gap: 3.25rem;
    margin-top: 2.5rem;
  }
}

.p-issues-solution__texts {
  flex: 1;
}

.p-issues-solution__figure {
  margin: 2.5rem auto 0;
  flex: 1;
  border-radius: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-issues-solution__figure {
    max-width: 29.125rem;
    margin-top: 0;
  }
}
.p-issues-solution__figure img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 466/394;
}

.p-issues-solution__figure--second img {
  aspect-ratio: 466/439;
}

.p-issues-solution__tag {
  display: inline-block;
  border: 0.125rem solid #003865;
  border-radius: 0.3125rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.375rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-issues-solution__tag {
    padding: 0.75rem 1rem;
    font-size: 1.25rem;
  }
}

.p-issues-solution__text {
  font-weight: 500;
  margin-top: 1.5rem;
}
.p-issues-solution__text:not(:first-child) {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-issues-solution__text {
    white-space: nowrap;
  }
}

.p-issues-solution__text2 {
  font-weight: 700;
  margin-top: 0.75rem;
  font-size: 1.25rem;
}

.p-issues-solution__points + .p-issues-solution__text2 {
  margin-top: 1.5rem;
}

.p-issues-solution__text-strong {
  font-weight: 700;
  display: inline;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-color: #F0BF56;
          text-decoration-color: #F0BF56;
  text-decoration-thickness: 0.25rem;
  text-underline-offset: 0.1875rem;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-issues-solution__text-strong {
    text-decoration-thickness: 0.375rem;
    text-underline-offset: 0.3125rem;
    font-size: 1.5rem;
  }
}

.p-issues-solution__balloon {
  color: #EA5514;
  font-size: 700;
  border: 0.125rem solid #003865;
  padding: 0.9375rem;
  border-radius: 0.3125rem;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  margin-top: 3.125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-issues-solution__balloon {
    font-size: 1.5rem;
  }
}
.p-issues-solution__balloon::before {
  content: "";
  position: absolute;
  width: 1.5625rem;
  height: 1.5625rem;
  top: -0.875rem;
  left: 50%;
  border-left: 0.125rem solid #003865;
  border-top: 0.125rem solid #003865;
  transform: translateX(-50%) rotate(45deg);
  z-index: 3;
}
.p-issues-solution__balloon::after {
  content: "";
  position: absolute;
  width: 2.0625rem;
  height: 0.3125rem;
  left: 50%;
  top: -0.1875rem;
  transform: translateX(-50%);
  z-index: 2;
  background-color: #fff;
}

.p-issues-solution__alert {
  font-size: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-issues-solution__alert {
    font-size: 1.75rem;
  }
}

.p-issues-solution__points {
  margin-top: 0.625rem;
  list-style: none;
}
.p-issues-solution__point {
  position: relative;
  padding-left: 0.75rem;
  line-height: 1.75;
}

.p-issues-solution__point::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0.25rem;
  height: 0.25rem;
  background-color: #003865;
  border-radius: 50%;
  top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-issues-solution__point::before {
    top: 0.8125rem;
  }
}

.p-issues-solution__item-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  background-color: #EA5514;
  color: #fff;
  border-radius: 0.3125rem;
  width: 100%;
  font-weight: 700;
  gap: 0.3125rem;
  padding: 1.25rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-issues-solution__item-cta {
    padding: 2.125rem;
    gap: 1.875rem;
  }
}

.p-issues-solution__item-icon {
  width: 100%;
  max-width: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-issues-solution__item-icon {
    max-width: 4.75rem;
  }
}
.p-issues-solution__item-icon img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 76/89;
}

.p-issues-solution__item-title {
  font-size: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-issues-solution__item-title {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 413px) {
  .p-issues-solution__item-title {
    font-size: 1.0625rem;
  }
}

.p-issues-solution__item-caption {
  padding-left: 0.8em;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-issues-solution__item-caption {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 413px) {
  .p-issues-solution__item-caption {
    font-size: 0.9375rem;
  }
}

.p-issues {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-issues {
    margin-top: 3.1875rem;
  }
}

.p-issues__subtitle {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-issues__subtitle {
    margin-top: 3rem;
    font-size: 2rem;
  }
}
.p-issues__subtitle span {
  display: inline;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-color: #849FB4;
          text-decoration-color: #849FB4;
  text-decoration-thickness: 0.3125rem;
  text-underline-offset: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media screen and (min-width: 768px) {
  .p-issues__subtitle span {
    text-decoration-thickness: 0.5625rem;
  }
}

.p-issues__top {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 5rem 1.25rem;
  background-color: #E2E7EB;
  border-radius: 0.3125rem;
  position: relative;
}
.p-issues__top::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -1.875rem;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 1.9375rem solid transparent;
  border-left: 1.9375rem solid transparent;
  border-top: 1.875rem solid #E2E7EB;
  border-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-issues__top {
    width: 100%;
    margin-left: 0;
    padding: 5rem 0.125rem;
  }
}

.p-issues__list {
  margin: 1.875rem auto 0;
  display: flex;
  gap: 1.5625rem;
  max-width: 61.5625rem;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-issues__list {
    flex-direction: row;
    gap: 3.25rem;
    margin-top: 2.5rem;
  }
}

.p-issues-list__item {
  text-align: center;
  padding: 1.875rem 1.25rem;
  border-radius: 0.3125rem;
  background-color: #fff;
  position: relative;
  margin: 0 auto;
  flex: 1;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-issues-list__item {
    max-width: 29.125rem;
    padding: 3rem 2rem;
  }
}

.p-issues-list__num {
  position: absolute;
  font-size: 3.75rem;
  line-height: 1;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  color: #E2E7EB;
  left: 0.75rem;
  top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-issues-list__num {
    left: 1.5rem;
    top: 0.625rem;
    font-size: 6rem;
  }
}

.p-issues-list__img {
  width: 100%;
  margin: 0 auto;
  max-width: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-issues-list__img {
    max-width: 11.25rem;
  }
}
.p-issues-list__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 180/180;
}

.p-issues-list__text {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-issues-list__text {
    margin-top: 1.5625rem;
    font-size: 1.5rem;
  }
}

.p-issues__supplement {
  margin: 1.875rem auto 0;
  max-width: 61.5625rem;
}

.p-machine {
  padding: 3.75rem 0;
}
@media screen and (min-width: 768px) {
  .p-machine {
    padding: 6rem 0;
  }
}

.p-machine-table {
  width: 100%;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .p-machine-table {
    overflow-x: auto;
    overflow-y: hidden;
  }
}

.p-machine-table__table {
  min-width: 67.5rem;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
}
.p-machine-table__table sup {
  font-size: 0.6em;
}
@media screen and (min-width: 768px) {
  .p-machine-table__table {
    min-width: initial;
  }
}

.p-machine-table__head {
  background-color: #003865;
}

.p-machine-table__row--head {
  border-bottom: 0.125rem solid #fff;
}

.p-machine-table__th,
.p-machine-table__cell {
  padding: 1rem;
  border-right: 0.125rem solid #fff;
  border-bottom: 0.125rem solid #fff;
  vertical-align: middle;
}

.p-machine-table__th:last-child,
.p-machine-table__cell:last-child {
  border-right: none;
}

.p-machine-table__th {
  background-color: #225678;
}

.p-machine-table__th--role {
  background-color: #F0F2F5;
  font-weight: 500;
}

.p-machine-table__cell {
  background-color: #F0F2F5;
}

.p-machine-table__row--highlight .p-machine-table__th {
  background-color: #FFF2DA;
}

.p-machine-table__row--highlight .p-machine-table__cell {
  background-color: #FFF2DA;
}

.p-machine-table__symbol {
  font-size: 1.5625rem;
  font-weight: 300;
}

.p-machine-table__symbol--triangle {
  font-weight: 400;
}

.p-machine-table__cel-list {
  font-size: 1rem;
  text-align: left;
  padding-left: 1.8em;
}

.p-machine-table__cel-item {
  list-style-type: disc;
}

.p-machine-table__head-text {
  color: #fff;
}

.p-machine-table__symbol {
  display: inline-block;
  color: #205373;
}

.p-machine-table__cell--device {
  white-space: nowrap;
}

.p-machine-table__device-text {
  font-size: 1rem;
}

.p-machine-table__procurement {
  font-size: 1rem;
}

.p-machine-table__legend {
  display: flex;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-machine-table__legend {
    margin-top: 0;
  }
}

.p-machine-table__legend-item + .p-machine-table__legend-item {
  margin-left: 1.5rem;
}

.p-machine-table__note {
  line-height: 1;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-machine-table__note {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.p-machine__cta {
  margin-top: 2.8125rem;
}

.p-machine__cta-title {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-machine__cta-title {
    font-size: 1.5rem;
    font-weight: 700;
  }
}

.p-machine__cta-btnWrap {
  text-align: center;
  margin-top: 2rem;
}

.p-machine__cta-btn {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #003865;
  border-radius: 0.3125rem;
  font-weight: 500;
  color: #003865;
  position: relative;
  padding: 0.9375rem;
  font-size: 1rem;
  transition: background-color 0.3s;
  max-width: 15.625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-machine__cta-btn {
    max-width: 18.75rem;
    padding: 1.625rem;
    font-size: 1.25rem;
  }
}
.p-machine__cta-btn::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 1.3125rem;
  transform: translateY(-50%);
  width: 0.875rem;
  height: 1rem;
  background: url("../images/top/icon-pdf.svg") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-machine__cta-btn::before {
    width: 1.125rem;
    height: 1.1875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-machine__cta-btn:hover {
    opacity: 1;
    background-color: #F0BF56;
  }
}

.p-operation {
  overflow: hidden;
  padding: 3.75rem 0;
}
@media screen and (min-width: 768px) {
  .p-operation {
    padding: 6rem 0;
  }
}

.c-title__br--operation {
  display: none;
}
@media (max-width: 570px) {
  .c-title__br--operation {
    display: block;
  }
}

.p-operation__figure {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .p-operation__figure {
    overflow-x: auto;
  }
}

.p-operation__figure img {
  width: 1080px;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .p-operation__figure img {
    max-width: 100%;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 1080/1074;
  }
}

.p-operation__improve {
  text-align: center;
  margin-top: 3.75rem;
  border-radius: 0.3125rem;
  background-color: #FCFDFF;
  border: 1px solid #BDC6CD;
  padding: 2.5rem 20px;
}
@media screen and (min-width: 768px) {
  .p-operation__improve {
    padding: 5rem 25px;
    margin-top: 6rem;
  }
}

.p-operation__improve-title {
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
  display: inline;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-color: #849FB4;
          text-decoration-color: #849FB4;
  text-decoration-thickness: 0.3125rem;
  text-underline-offset: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media screen and (min-width: 768px) {
  .p-operation__improve-title {
    font-size: 2rem;
    text-decoration-thickness: 0.5625rem;
  }
}

.p-operation__improve-top {
  text-align: left;
  margin: 2.5rem auto 0;
  gap: 1.75rem;
  display: grid;
  max-width: 61.9375rem;
  position: relative;
}
.p-operation__improve-top::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -1.5625rem;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 1rem solid transparent;
  border-left: 1rem solid transparent;
  border-top: 1rem solid #003865;
  border-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-operation__improve-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-operation__improve-card {
  padding: 1.75rem 1.25rem 0;
  border-radius: 0.3125rem;
  background-color: #fff;
  border: 0.125rem solid #003865;
}
.p-operation__improve-card:nth-child(2) .p-operation__improve-card-figure {
  max-width: 5rem;
}
@media screen and (min-width: 768px) {
  .p-operation__improve-card:nth-child(2) .p-operation__improve-card-figure {
    max-width: 6.25rem;
  }
}
.p-operation__improve-card:nth-child(2) .p-operation__improve-card-figure img {
  aspect-ratio: 100/146;
}
.p-operation__improve-card:nth-child(2) .p-operation__improvement-box {
  margin-left: -0.625rem;
  margin-top: -0.625rem;
}
.p-operation__improve-card:nth-child(2) .p-operation__improve-list {
  margin-top: 1.25rem;
}

.p-operation__improve-card-figure {
  text-align: center;
  max-width: 5.3125rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-operation__improve-card-figure {
    max-width: 6.8125rem;
  }
}
.p-operation__improve-card-figure img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 109/135;
}

.p-operation__improvement-box {
  display: flex;
  align-items: center;
  margin-left: -0.9375rem;
  margin-top: -0.5rem;
  gap: 1.125rem;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-operation__improvement-box {
    justify-content: space-between;
    margin-top: 0;
  }
}
@media (max-width: 429px) {
  .p-operation__improvement-box {
    align-items: flex-end;
    margin-top: 0.625rem !important;
  }
}

.p-operation__improve-card-head {
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 0.75px solid #003865;
}
.p-operation__improve-card-head span {
  color: #EA5514;
}
@media screen and (min-width: 768px) {
  .p-operation__improve-card-head {
    line-height: 1;
    font-size: 1.125rem;
  }
}

.p-operation__improve-list {
  list-style: none;
}
@media (max-width: 429px) {
  .p-operation__improve-list {
    padding-bottom: 0.625rem;
    transform: translateY(-12px);
  }
}

.p-operation__improve-list li {
  position: relative;
  font-weight: 500;
  padding-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-operation__improve-list li {
    padding-left: 1.25rem;
  }
}

.p-operation__improve-list li::before {
  content: "";
  position: absolute;
  left: 0;
  background-color: #003865;
  border-radius: 50%;
  top: 0.5rem;
  width: 0.4375rem;
  height: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-operation__improve-list li::before {
    top: 0.5rem;
    width: 0.625rem;
    height: 0.625rem;
  }
}

.p-operation__improve-bottom {
  text-align: left;
  margin: 1.875rem auto 0;
  padding: 2.5rem 20px 0;
  max-width: 61.9375rem;
  position: relative;
  z-index: 2;
}
.p-operation__improve-bottom::before {
  position: absolute;
  content: "";
  width: 100%;
  background-color: #003865;
  border-radius: 0.3125rem;
  left: 0;
  pointer-events: none;
  z-index: -1;
  height: 100%;
  top: 0;
}
@media screen and (min-width: 768px) {
  .p-operation__improve-bottom::before {
    height: 97%;
    top: 3%;
  }
}
@media screen and (min-width: 768px) {
  .p-operation__improve-bottom {
    padding: 0rem 3.5rem 0 0;
  }
}

@media screen and (min-width: 768px) {
  .p-operation__improve-bottom-inner {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.3125rem;
    margin-left: -1.25rem;
  }
}

.p-operation__improve-bottom-texts {
  color: #fff;
  flex: 1;
}

.p-operation__improve-bottom-title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 1rem;
  border-bottom: 1px solid #fff;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-operation__improve-bottom-title {
    text-align: left;
    font-size: 1.625rem;
  }
}

.p-operation__improve-bottom-title span {
  position: relative;
}

.p-operation__improve-bottom-title span::before {
  content: "";
  position: absolute;
  background-color: #fff;
  border-radius: 50%;
  left: 0.5625rem;
  top: -0.125rem;
  width: 0.25rem;
  height: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-operation__improve-bottom-title span::before {
    left: 0.75rem;
    top: -0.625rem;
    width: 0.375rem;
    height: 0.375rem;
  }
}

.p-operation__improve-bottom-title span::after {
  content: "";
  position: absolute;
  background-color: #fff;
  border-radius: 50%;
  left: 1.8125rem;
  top: -0.125rem;
  width: 0.25rem;
  height: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-operation__improve-bottom-title span::after {
    left: 2.25rem;
    top: -0.625rem;
    width: 0.375rem;
    height: 0.375rem;
  }
}

.p-operation__improve-bottom-desc {
  margin-top: 0.75rem;
}

.p-operation__improve-bottom-figure {
  max-width: 16rem;
  width: 100%;
  margin: 1.25rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-operation__improve-bottom-figure {
    margin: 0;
  }
}
.p-operation__improve-bottom-figure img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 256/165;
}

.p-risks {
  padding: 3.75rem 0;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-risks {
    margin-top: 6rem;
    padding: 6rem 0;
  }
}

.p-risks__figure {
  max-width: 52.4375rem;
  width: 100%;
  margin: 0 auto;
}
.p-risks__figure img {
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 335/92;
}
@media screen and (min-width: 768px) {
  .p-risks__figure img {
    aspect-ratio: 839/230;
  }
}

.p-risks__body {
  display: flex;
  gap: 0.625rem;
  align-items: stretch;
  flex-direction: column;
  padding-bottom: 0.625rem;
  background-color: #FCFDFF;
  border: 1px solid #F0F2F5;
  border-radius: 0.3125rem;
  padding: 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-risks__body {
    padding: 3.5rem 3rem;
    gap: 0.8125rem;
    flex-direction: row;
  }
}

.p-risks__label {
  background-color: #003865;
  color: #fff;
  font-weight: 700;
  border-radius: 0.3125rem;
  padding: 0.75rem;
  font-size: 1.125rem;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-risks__label {
    width: initial;
    font-size: 1.5rem;
    padding: 2.3125rem 1.5625rem;
    writing-mode: vertical-lr;
  }
}

.p-risks__list {
  width: 100%;
}

.p-risks-list__item {
  border-radius: 0.3125rem;
  display: flex;
  align-items: center;
  border-radius: 0.3125rem;
  font-weight: 500;
  font-size: 0.75rem;
  padding: 0.625rem 0.625rem 0.625rem clamp(0.625rem, -17.292rem + 66.667vw, 9.375rem);
}
@media screen and (max-width: 413px) {
  .p-risks-list__item {
    font-size: 0.6875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-risks-list__item {
    font-size: 1.5rem;
    padding: 1.25rem 1.5rem;
  }
}
.p-risks-list__item + .p-risks-list__item {
  margin-top: 0.75rem;
}

.p-risks-list__item.is-blue {
  background-color: #D3EBEC;
}

.p-risks-list__item.is-yellow {
  background-color: #FDEED2;
}

.p-risks-list__item.is-red {
  background-color: #F3D5C8;
}

.p-risks-list__item-box {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 7.6875rem;
}
@media screen and (max-width: 413px) {
  .p-risks-list__item-box {
    max-width: 7.1875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-risks-list__item-box {
    max-width: 15.625rem;
  }
}

.p-risks-list__num {
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #003865;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  font-family: "Barlow", sans-serif;
  font-size: 0.625rem;
  width: 0.875rem;
  height: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-risks-list__num {
    font-size: 1.75rem;
    width: 2.4375rem;
    height: 2.4375rem;
  }
}

.p-risks-list__title {
  margin-left: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-risks-list__title {
    margin-left: 0.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-risks-list__text {
    margin-left: 1.25rem;
  }
}

.p-security {
  margin-top: 3.75rem;
  padding: 3.75rem 0 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-security {
    margin-top: 6.0625rem;
    padding: 5.625rem 0 6.25rem;
  }
}

.p-security__box {
  margin-top: 2rem;
  background-color: #E2E7EB;
  padding: 2rem 1.5rem;
  border-radius: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-security__box {
    margin-top: 3rem;
    padding: 3.5rem 3rem;
  }
}

.p-security__list {
  list-style: none;
}

.p-security__item {
  position: relative;
  padding-left: 1.25rem;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-security__item {
    font-size: 1.125rem;
  }
}

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

.p-security__item::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #003865;
  border-radius: 50%;
  top: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .p-security__item::before {
    top: 0.625rem;
  }
}

.p-service-points {
  padding: 2.5rem 20px;
  margin-top: 3rem;
  border-radius: 0.3125rem;
  border: 1px solid #BDC6CD;
}
@media screen and (min-width: 768px) {
  .p-service-points {
    padding: 3.5rem 25px;
  }
}

.p-service-points__title {
  font-size: 1.3125rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 2;
}
.p-service-points__title::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: #849FB4;
  width: 17.5rem;
  height: 0.375rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-service-points__title::before {
    width: 47.5rem;
    height: 0.625rem;
  }
}
.p-service-points__title::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 1.8125rem;
  transform: translateX(-50%);
  background-color: #849FB4;
  width: 13.75rem;
  height: 0.375rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-service-points__title::after {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-service-points__title {
    font-size: 2rem;
  }
}

.p-service-points__item {
  margin: 1.875rem auto 0;
  max-width: 60.5rem;
}
@media screen and (min-width: 768px) {
  .p-service-points__item {
    margin-top: 3rem;
  }
}

.p-service-points__num {
  font-size: 2rem;
  font-weight: 700;
  color: #BDC6CD;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-service-points__num {
    font-size: 4rem;
  }
}

.p-service-points__text {
  font-size: 1rem;
  margin-top: 0.875rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-service-points__text {
    font-size: 1.125rem;
  }
}

.p-service-points__text ul {
  margin-top: 1.25rem;
  font-weight: 400;
}

.p-service-points__text li {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-service-points__text li {
    font-size: 1rem;
  }
}

.p-service-risk {
  margin: 4rem auto 0;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-service-risk {
    font-size: 2.25rem;
    max-width: 47.125rem;
  }
}

.p-service-risk__labels {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-service-risk__labels {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}

.p-service-risk-labels__item {
  border-radius: 0.25rem;
  color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3125rem;
  font-size: 1.375rem;
  height: 4.0625rem;
}
@media screen and (min-width: 768px) {
  .p-service-risk-labels__item {
    font-size: 1.75rem;
    height: 4.875rem;
  }
}
.p-service-risk-labels__item span {
  font-weight: 500;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-service-risk-labels__item span {
    font-size: 1.125rem;
  }
}

.p-service-risk-labels__item--orange {
  background-color: #EA5514;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-service-risk-labels__item--orange {
    font-size: 2rem;
    max-width: 15.5rem;
  }
}

.p-service-risk-labels__item--blue {
  background-color: #849FB4;
}
@media screen and (min-width: 768px) {
  .p-service-risk-labels__item--blue {
    max-width: 15.75rem;
  }
}

.p-service-risk-labels__item--navy {
  background-color: #003865;
}
@media screen and (min-width: 768px) {
  .p-service-risk-labels__item--navy {
    max-width: 12.0625rem;
  }
}

.p-service-risk__description {
  line-height: 1.75;
  margin-top: 0.625rem;
}

.p-service-risk__strong {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-color: #F0BF56;
          text-decoration-color: #F0BF56;
  text-decoration-thickness: 0.3125rem;
  text-underline-offset: 0.25rem;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media screen and (min-width: 768px) {
  .p-service-risk__strong {
    text-decoration-thickness: 0.5625rem;
    text-underline-offset: 0.375rem;
  }
}

.p-watch {
  background: url("../images/top/watch-bg.png") no-repeat center center/cover;
  padding: 3.75rem 0 5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-watch {
    padding: 5.625rem 0 6.875rem;
  }
}

.p-watch__lead {
  text-align: center;
  font-size: 1.375rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-watch__lead {
    font-size: 2.5rem;
  }
}

.p-watch__sub {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-watch__sub {
    margin-top: 2.5rem;
    font-size: 1.125rem;
  }
}

.p-watch__middle {
  margin-top: 1.5rem;
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 0.3125rem;
  color: #EA5514;
}
@media screen and (min-width: 768px) {
  .p-watch__middle {
    margin-bottom: -0.3125rem;
    margin-top: 2rem;
    font-size: 1.875rem;
  }
}

.p-watch__strong {
  font-weight: 700;
  color: #EA5514;
  font-size: 1.1875rem;
  display: inline;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-color: #F0BF56;
          text-decoration-color: #F0BF56;
  text-decoration-thickness: 0.3125rem;
  text-underline-offset: 0.25rem;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .p-watch__strong {
    padding-top: 0.3125rem;
    text-decoration-thickness: 0.5625rem;
    text-underline-offset: 0.375rem;
    margin-top: 0;
    font-size: 1.875rem;
  }
}

.u-pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-pc-only {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
