@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=Kaushan+Script&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 {
  scroll-behavior: auto;
  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;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: clamp(16px, 1.111vw, 19px);
  }
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

#smooth-content {
  overflow: visible;
  width: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
}

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-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0.09375rem solid #2E44B9;
  border-radius: 1.875rem;
  background-color: #fff;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  position: relative;
  padding: 0.75rem 0.75rem 0.75rem 1.375rem;
  overflow: hidden;
}

.c-button__text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2E44B9;
  line-height: 1;
  position: relative;
  padding-right: 1.25rem;
}

.c-button__text::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.875rem;
  color: #2E44B9;
  transition: transform 0.3s, color 0.3s;
}

.c-button:hover {
  background-color: #2E44B9;
}

.c-button:hover .c-button__text {
  color: #fff;
}

.c-button:hover .c-button__text::after {
  color: #fff;
  transform: translateY(-50%) translateX(0.25rem);
}

@media screen and (min-width: 768px) {
  .c-button {
    padding: 0.9375rem 1.25rem 0.9375rem 1.5625rem;
  }
}
.c-section-title {
  text-align: center;
}
.c-section-title span {
  display: inline-block;
  font-weight: 700;
  line-height: 1.25;
  font-size: 1.5rem;
  border-bottom: 0.09375rem solid #333;
  padding-bottom: 0.375rem;
}
@media screen and (min-width: 768px) {
  .c-section-title span {
    font-size: 2.25rem;
    border-bottom: 0.1875rem solid #333;
  }
}

.c-sub-top {
  position: relative;
  width: 100%;
  height: 9.375rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("../images/about/sp/top-bg.jpg");
}
@media screen and (min-width: 768px) {
  .c-sub-top {
    background-image: url("../images/about/top-bg.jpg");
    height: 21rem;
  }
}
.c-sub-top.c-sub-top--network {
  background-image: url("../images/network/sp/top-bg.jpg");
}
@media screen and (min-width: 768px) {
  .c-sub-top.c-sub-top--network {
    background-image: url("../images/network/top-bg.jpg");
  }
}
.c-sub-top.c-sub-top--privacy-policy {
  background-image: url("../images/privacy-policy/sp/top-bg.jpg");
}
@media screen and (min-width: 768px) {
  .c-sub-top.c-sub-top--privacy-policy {
    background-image: url("../images/privacy-policy/top-bg.jpg");
  }
}
.c-sub-top.c-sub-top--customs-work {
  background-image: url("../images/customs-work/sp/top-bg.jpg");
}
@media screen and (min-width: 768px) {
  .c-sub-top.c-sub-top--customs-work {
    background-image: url("../images/customs-work/top-bg.jpg");
  }
}
.c-sub-top.c-sub-top--sea-transportation {
  background-image: url("../images/sea-transportation/sp/top-bg.jpg");
}
@media screen and (min-width: 768px) {
  .c-sub-top.c-sub-top--sea-transportation {
    background-image: url("../images/sea-transportation/top-bg.jpg");
  }
}
.c-sub-top.c-sub-top--faq {
  background-image: url("../images/faq/sp/top-bg.jpg");
}
@media screen and (min-width: 768px) {
  .c-sub-top.c-sub-top--faq {
    background-image: url("../images/faq/top-bg.jpg");
  }
}
.c-sub-top.c-sub-top--news {
  background-image: url("../images/news/sp/top-bg.jpg");
}
@media screen and (min-width: 768px) {
  .c-sub-top.c-sub-top--news {
    background-image: url("../images/news/top-bg.jpg");
  }
}

.c-sub-top__content {
  text-align: center;
  color: #fff;
  height: 100%;
}

.c-sub-top__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-sub-top__title {
    font-size: 2.25rem;
  }
}

.c-sub-top__text {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-sub-top__text {
    margin-top: 1.25rem;
    font-size: 1.25rem;
  }
}

.p-404 {
  text-align: center;
  padding: 3.75rem 0 8.125rem;
}
@media screen and (min-width: 768px) {
  .p-404 {
    padding: 5.25rem 0 9.375rem;
  }
}

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

.p-404__btnWrap {
  margin-top: 2.5rem;
}

.p-footer {
  background-color: #2E44B9;
  padding: 3rem 0;
  color: #fff;
  position: relative;
}
.p-footer::before {
  pointer-events: none;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: url("../images/common/footer-bg.svg") no-repeat bottom center/contain;
}

.p-footer__inner {
  margin: 0 auto;
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.p-footer__body {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__body {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.p-footer__company {
  display: inline-block;
  font-size: 1.125rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-footer__company {
    font-size: 1.5rem;
  }
}

.p-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    gap: 5.4375rem;
  }
}

.p-footer__nav-group {
  list-style: none;
}

.p-footer__nav-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-title {
    font-size: 1.125rem;
  }
}

.p-footer__nav-item {
  margin-top: 0.3125rem;
}
.p-footer__nav-item:first-child {
  margin-top: 2.25rem;
}
.p-footer__nav-item a {
  font-size: 0.875rem;
  padding: 0.1875rem;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
  text-indent: 1em;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-item a {
    font-size: 1rem;
  }
}
.p-footer__nav-item a:hover {
  opacity: 0.7;
}

.p-footer__copyright {
  display: block;
  font-size: 0.75rem;
  text-align: center;
  margin-top: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    margin-top: 6.875rem;
  }
}

.l-header {
  position: sticky;
  top: 0;
  z-index: 900;
}

.p-header {
  background-color: #fff;
  border-bottom: 0.125rem solid #333;
  height: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 4.5rem;
  }
}

.p-header__inner {
  margin: 0 auto;
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.p-header__logo {
  height: inherit;
}

.p-header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 8.4375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-header__logo a {
    max-width: 11.0625rem;
  }
}

.p-header__nav {
  display: none;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: block;
  }
}

.p-header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, -3.75rem + 8.333vw, 3.75rem);
  height: 100%;
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  font-size: 1rem;
  color: #333;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.25s;
}
@media screen and (min-width: 768px) {
  .p-header__nav-item a {
    font-size: 0.875rem;
  }
}

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

.p-header__hamburger {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger span {
  position: absolute;
  left: 50%;
  width: 1.25rem;
  height: 2px;
  background: #333;
  transform: translateX(-50%);
  transition: 0.3s;
}

.p-header__hamburger span:nth-of-type(1) {
  top: 0.75rem;
}

.p-header__hamburger span:nth-of-type(2) {
  top: 1.1875rem;
}

.p-header__hamburger span:nth-of-type(3) {
  top: 1.625rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 1.1875rem;
  transform: translateX(-50%) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
  top: 1.1875rem;
  transform: translateX(-50%) rotate(-45deg);
}

.p-header__drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 890;
  background: rgba(0, 0, 0, 0.5);
}

.p-header__drawer.is-open {
  display: block;
}

.p-header__drawer-nav {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(80vw, 18.75rem);
  background: #fff;
  padding: 1.5rem;
}

.p-header__drawer-list .p-header__drawer-item + .p-header__drawer-item {
  margin-top: 0.75rem;
}

.p-header__drawer-item a {
  display: block;
  padding: 0.4375rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}

.p-hero {
  min-height: 100vh;
  position: relative;
  width: 100%;
  padding-top: 5.4375rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-hero {
    padding-top: 14.0625rem;
  }
}

.p-hero__heading {
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  position: absolute;
  z-index: 1;
  top: 3rem;
  font-size: 1.25rem;
  left: 2rem;
}
@media screen and (min-width: 768px) {
  .p-hero__heading {
    left: 3.75rem;
    top: 7.2rem;
    font-size: 3.5rem;
  }
}

.p-hero__heading-line {
  display: block;
  height: auto;
  overflow: hidden;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.p-hero__heading-line span {
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.p-hero__heading-line span span {
  display: block;
  position: relative;
  transform: translateY(calc(100% + 2px));
}

.p-hero.appear .p-hero__heading-line span span {
  transform: translateY(0);
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.p-hero.appear .p-hero__heading-line:first-child span span {
  transition-delay: 0.35s;
}

.p-hero.appear .p-hero__heading-line:nth-child(2) span span {
  transition-delay: 0.45s;
}

.p-hero.appear .p-hero__heading-line:nth-child(3) span span {
  transition-delay: 0.55s;
}

.p-hero.appear .p-hero__heading-line:nth-child(4) span span {
  transition-delay: 0.65s;
}

.p-hero.appear .p-hero__heading-line:nth-child(5) span span {
  transition-delay: 0.75s;
}

.p-hero.appear .p-hero__heading-line:nth-child(6) span span {
  transition-delay: 0.85s;
}

.p-hero.appear .p-hero__heading-line:nth-child(7) span span {
  transition-delay: 0.95s;
}

.p-hero.appear .p-hero__heading-line:nth-child(8) span span {
  transition-delay: 1.05s;
}

.p-hero.appear .p-hero__heading-line:nth-child(9) span span {
  transition-delay: 1.15s;
}

.p-hero.appear .p-hero__heading-line:nth-child(10) span span {
  transition-delay: 1.25s;
}

.p-hero__heading-emphasis {
  font-size: 1.5rem;
  color: #2E44B9;
  padding-top: 0.375rem;
  filter: drop-shadow(2px 2px 0 rgba(124, 145, 186, 0.8));
}
@media screen and (min-width: 768px) {
  .p-hero__heading-emphasis {
    padding-top: 0.75rem;
    font-size: 4.375rem;
  }
}

.p-hero__heading-sub-line {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-hero__heading-sub-line {
    margin-top: 0;
  }
}

.p-hero.appear .p-hero__heading-sub-line span span {
  transition-delay: 0.65s;
}

.p-hero__heading-sub {
  max-width: 47.6875rem;
  width: 100%;
  display: block;
}

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

.p-hero__slider {
  flex: 1;
  position: relative;
  width: 100%;
  z-index: 0;
  min-height: 0;
}

.p-hero__slider-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  will-change: transform;
  transform: translateZ(0);
}

.p-hero__slider-wrapper:before {
  background: linear-gradient(0deg, hsla(0, 0%, 100%, 0), #fff 300%);
  content: "";
  display: block;
  height: 6.25rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.p-hero__slide-container, .p-hero__slide-container {
  top: 0;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
}

.p-hero__slide {
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: scale(1);
  transition: opacity 0s linear 1s, transform 0s linear 1s;
  width: 100%;
  z-index: 0;
}

.p-hero__slide.is-active, .p-hero__slide.is-previous {
  opacity: 1;
  transition: opacity 1s linear 0s;
}

.p-hero__slide.is-active {
  z-index: 2;
}

.p-hero__slide.is-previous, .p-hero__slide.is-previous.is-active {
  z-index: 1;
}

.p-hero__slide.is-first {
  opacity: 1;
  z-index: 2;
}

.p-hero__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-hero__slide img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-hero__slider.is-offscreen .p-hero__slide img {
  animation-play-state: paused;
}

.p-hero__slide.is-center img {
  -o-object-position: center center;
  object-position: center center;
}

.p-hero__slide.is-left img {
  -o-object-position: left center;
  object-position: left center;
}

.p-hero__slide.is-right img {
  -o-object-position: right center;
  object-position: right center;
}

@keyframes hero-slide-zoom {
  0% {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
.p-hero__controls {
  bottom: 3.25rem;
  color: #fff;
  height: 4.125rem;
  left: 3.75rem;
  padding-left: 5.625rem;
  position: absolute;
  width: calc(100% - 7.5rem);
  z-index: 99;
  --progress-value: 0;
}

.p-hero__progress {
  height: 4.125rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 4.125rem;
}

.p-hero__indicator {
  height: 1.25rem;
  left: 0;
  position: absolute;
  top: calc(50% - 0.625rem);
  width: 100%;
}

.p-hero__indicator-number {
  font-size: max(0.875rem, 10px);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4285714286;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  visibility: hidden;
}

.p-hero__indicator-number, .p-hero__progress-ring {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-hero__progress-ring:before {
  border: 1px solid hsla(0, 0%, 100%, 0.5);
  border-radius: 50%;
  content: "";
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 0;
}

.p-hero__progress-svg {
  display: block;
  height: 4.25rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4.25rem;
}

.p-hero__progress-svg circle {
  stroke: #fff;
  stroke-width: 0.1875rem;
  fill: transparent;
  stroke-dasharray: 204.2;
  stroke-dashoffset: calc(204.2px - 204.2px * var(--progress-value));
  transform: rotate(-90deg);
  transform-origin: center;
  transition: stroke-dashoffset 0.3s linear;
  position: relative;
  z-index: 2;
}

.p-hero__slider.is-transitioning .p-hero__progress-svg circle {
  stroke-dashoffset: 204.2px !important;
  transform: scaleX(-1) rotate(-90deg);
  transition: stroke-dashoffset 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.p-hero__controls-text-wrapper {
  height: 100%;
  position: relative;
  width: auto;
}

.p-hero__controls-text {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  visibility: hidden;
}

.p-hero__controls-text-link {
  display: block;
  font-family: neue-haas-grotesk-text, source-han-sans-japanese, sans-serif;
  font-size: max(1.125rem, 10px);
  font-style: normal;
  font-weight: 500;
  height: auto;
  letter-spacing: 0;
  line-height: 1.1111111111;
  padding-right: 1.25rem;
  width: -moz-fit-content;
  width: fit-content;
}

.p-hero__controls-text-link:after {
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  display: block;
  height: 0.5rem;
  position: absolute;
  right: 0;
  top: calc(50% - 0.25rem);
  width: 0.5rem;
}

body:not(.touch) .p-hero__controls-text-link.clicked:after, body:not(.touch) .p-hero__controls-text-link:hover:after {
  animation: boxbuttonArrowHover 1s cubic-bezier(0.19, 1, 0.22, 1) 0s infinite normal both;
}

.p-hero__slider[data-current="1"] .p-hero__indicator-number[data-index="1"], .p-hero__slider[data-current="1"] .p-hero__controls-text[data-index="1"], .p-hero__slider[data-current="10"] .p-hero__indicator-number[data-index="10"], .p-hero__slider[data-current="10"] .p-hero__controls-text[data-index="10"], .p-hero__slider[data-current="2"] .p-hero__indicator-number[data-index="2"], .p-hero__slider[data-current="2"] .p-hero__controls-text[data-index="2"], .p-hero__slider[data-current="3"] .p-hero__indicator-number[data-index="3"], .p-hero__slider[data-current="3"] .p-hero__controls-text[data-index="3"], .p-hero__slider[data-current="4"] .p-hero__indicator-number[data-index="4"], .p-hero__slider[data-current="4"] .p-hero__controls-text[data-index="4"], .p-hero__slider[data-current="5"] .p-hero__indicator-number[data-index="5"], .p-hero__slider[data-current="5"] .p-hero__controls-text[data-index="5"], .p-hero__slider[data-current="6"] .p-hero__indicator-number[data-index="6"], .p-hero__slider[data-current="6"] .p-hero__controls-text[data-index="6"], .p-hero__slider[data-current="7"] .p-hero__indicator-number[data-index="7"], .p-hero__slider[data-current="7"] .p-hero__controls-text[data-index="7"], .p-hero__slider[data-current="8"] .p-hero__indicator-number[data-index="8"], .p-hero__slider[data-current="8"] .p-hero__controls-text[data-index="8"], .p-hero__slider[data-current="9"] .p-hero__indicator-number[data-index="9"], .p-hero__slider[data-current="9"] .p-hero__controls-text[data-index="9"] {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.5s linear 0.1s;
  visibility: visible;
}

.p-hero__banner {
  bottom: 10.875rem;
  height: 4.8125rem;
  overflow: hidden;
  position: absolute;
  right: 2.5rem;
  width: 22.5rem;
  z-index: 1;
}

.p-hero__banner .boxbutton.p-hero__banner-btn {
  border: 0;
  height: 4.8125rem;
  left: 0;
  padding: 0.3125rem 5.75rem 0.3125rem 6.625rem;
  position: relative;
  top: 0;
  width: 22.5rem;
}

.p-hero__banner .boxbutton.p-hero__banner-btn:before {
  right: 4.8125rem;
}

.p-hero__banner .boxbutton.p-hero__banner-btn:after {
  right: 2.15625rem;
}

.p-hero__banner .p-hero__banner-text {
  display: block;
}

.p-hero__banner .p-hero__banner-btn-img {
  height: 4.1875rem;
  left: 0.3125rem;
  overflow: hidden;
  position: absolute;
  top: 0.3125rem;
  width: 5.375rem;
}

.p-hero__banner .p-hero__banner-btn-img img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.p-hero__banner .p-hero__banner-btn-label {
  font-size: max(0.6875rem, 10px);
  font-weight: 500;
  line-height: 1.1818181818;
}

.p-hero__banner .p-hero__banner-btn-label, .p-hero__banner .p-hero__banner-btn-title {
  display: block;
  font-family: neue-haas-grotesk-text, source-han-sans-japanese, sans-serif;
  font-style: normal;
  letter-spacing: 0;
}

.p-hero__banner .p-hero__banner-btn-title {
  font-size: max(1rem, 10px);
  font-weight: 700;
  height: auto;
  line-height: 1.125;
  margin-top: 0.3125rem;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}

.p-hero__banner .p-hero__banner-btn-title > span {
  transform: translateY(calc(100% + 1px));
}

.p-hero.appear .p-hero__banner .p-hero__banner-btn-title > span {
  transform: translateY(0);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.55s;
}

@media (max-width: 767px) {
  .p-hero {
    min-height: 100vh;
    position: relative;
    width: 100%;
  }
  .p-hero__heading-line span {
    display: block;
  }
  .p-hero.appear .p-hero__heading-line:first-child span:first-child span {
    transition-delay: 0.35s;
  }
  .p-hero.appear .p-hero__heading-line:first-child span:nth-child(2) span {
    transition-delay: 0.4s;
  }
  .p-hero.appear .p-hero__heading-line:nth-child(2) span:first-child span {
    transition-delay: 0.45s;
  }
  .p-hero.appear .p-hero__heading-line:nth-child(2) span:nth-child(2) span {
    transition-delay: 0.5s;
  }
  .p-hero__slider-wrapper:before {
    background: linear-gradient(0deg, hsla(0, 0%, 100%, 0), #fff 150%);
    height: 12.5rem;
  }
  .p-hero__controls {
    height: auto;
    left: 0.9375rem;
    padding: 5.375rem 0 0;
    width: calc(100% - 1.875rem);
  }
  .p-hero:has(.p-hero__banner) .p-hero__controls {
    top: calc(100svh - 20.6875rem);
  }
  .p-hero__controls-text-wrapper {
    height: 1.25rem;
    position: relative;
    width: 100%;
  }
  .p-hero__controls-text, .p-hero__controls-text-link {
    max-width: 100%;
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-hero__controls-text-link {
    font-family: neue-haas-grotesk-text, source-han-sans-japanese, sans-serif;
    font-size: max(0.875rem, 10px);
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.1428571429;
    padding-right: 1rem;
  }
  .p-hero__controls-text-link, .p-hero__controls-text-link span {
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .p-hero__controls-text-link:after {
    height: 0.375rem;
    top: calc(50% - 0.1875rem);
    width: 0.375rem;
  }
  .p-hero__banner {
    bottom: auto;
    height: 3.4375rem;
    position: absolute;
    right: 0.9375rem;
    top: calc(100svh - 4.375rem);
    width: 21.5625rem;
  }
  .p-hero__banner .boxbutton.p-hero__banner-btn {
    height: 3.4375rem;
    padding: 0.1875rem 4.375rem 0.1875rem 4.875rem;
    width: 100%;
  }
  .p-hero__banner .boxbutton.p-hero__banner-btn:before {
    right: 3.4375rem;
  }
  .p-hero__banner .boxbutton.p-hero__banner-btn:after {
    right: 1.5rem;
  }
  .p-hero__banner .p-hero__banner-btn-img {
    height: 3.0625rem;
    left: 0.1875rem;
    top: 0.1875rem;
    width: 4rem;
  }
  .p-hero__banner .p-hero__banner-btn-label {
    font-size: max(0.625rem, 10px);
    letter-spacing: 0;
    line-height: 1.2;
  }
  .p-hero__banner .p-hero__banner-btn-title {
    font-size: max(0.875rem, 10px);
    letter-spacing: 0;
    line-height: 1.1428571429;
    margin-top: 0.3125rem;
  }
}
.p-news {
  padding: 5rem 0;
}
@media screen and (min-width: 768px) {
  .p-news {
    padding: 7.1875rem 0;
  }
}

.p-news__list {
  margin-top: 3.875rem;
  border-top: 1px solid #ddd;
}

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

.p-news__link {
  display: flex;
  gap: 0.5rem;
  padding: 0.9375rem 0;
  position: relative;
  overflow: hidden;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-news__link {
    gap: 1.5625rem;
    flex-direction: row;
  }
}
.p-news__link::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f9f9f9;
  pointer-events: none;
  z-index: -1;
  transition: transform 0.3s;
  transform: translateY(100%);
}
.p-news__link:hover {
  opacity: 1;
}
.p-news__link.hovered::after {
  transform: translateY(0);
}
.p-news__link.leaving::after {
  transform: translateY(-100%);
}
.p-news__link.resetting::after {
  background: transparent;
  transition: none;
  transform: translateY(100%);
}

.p-news__date {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  color: #555;
  line-height: 1;
  padding-top: 0.5rem;
  white-space: nowrap;
}

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

.p-news__text {
  margin-top: 0.375rem;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-news__text {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
}

.p-news__btnWrap {
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-news__btnWrap {
    margin-top: 3.125rem;
  }
}

.p-opening {
  display: block;
  height: 100lvh;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  transform: translateZ(10000px);
  transform-style: preserve-3d;
  width: 100vw;
  z-index: 1000;
}

.p-opening__intro,
.p-opening__outro {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-opening__logo {
  aspect-ratio: 498/100;
  display: block;
  height: auto;
  left: 50%;
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% 200%;
  -webkit-mask-size: 100% 200%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) translateZ(1px);
  width: 60vw;
  z-index: 2;
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .p-opening__logo {
    top: 50%;
    transform: translate(-50%, -50%) translateZ(1px);
    width: 30.666667vw;
  }
}

.p-opening__logo img,
.p-opening__logo svg {
  display: block;
  height: 100%;
  width: 100%;
}

.p-opening__cover {
  background-color: #fff;
  display: block;
  height: 100%;
  left: 0;
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% 200%;
  -webkit-mask-size: 100% 200%;
  position: absolute;
  top: 0;
  transform: translateY(0) translateZ(10px);
  width: 100%;
  z-index: 1;
}

.p-opening__intro {
  z-index: 1;
}

.p-opening__intro .p-opening__cover,
.p-opening__intro .p-opening__logo {
  mask-image: linear-gradient(#fff, #fff 50%, hsla(0, 0%, 100%, 0));
  -webkit-mask-image: linear-gradient(#fff, #fff 50%, hsla(0, 0%, 100%, 0));
  mask-position: 0 0;
  -webkit-mask-position: 0 0;
}

.p-opening__outro {
  z-index: 2;
}

.p-opening__outro .p-opening__cover,
.p-opening__outro .p-opening__logo {
  mask-image: linear-gradient(hsla(0, 0%, 100%, 0), #fff 50%, #fff);
  -webkit-mask-image: linear-gradient(hsla(0, 0%, 100%, 0), #fff 50%, #fff);
  mask-position: 0 -100%;
  -webkit-mask-position: 0 -100%;
}

body.ready .p-opening,
body.standby html.ready .p-opening,
html.standby .p-opening {
  pointer-events: none;
  transition: width 0s linear 9s;
  width: 0;
}

body.ready .p-opening .p-opening__intro .p-opening__logo,
body.standby html.ready .p-opening .p-opening__intro .p-opening__logo,
html.standby .p-opening .p-opening__intro .p-opening__logo {
  animation: maskwipein 3s cubic-bezier(0.19, 1, 0.22, 1) 1s 1 normal both;
}

body.ready .p-opening .p-opening__intro .p-opening__cover,
body.standby html.ready .p-opening .p-opening__intro .p-opening__cover,
html.standby .p-opening .p-opening__intro .p-opening__cover {
  animation: maskwipein 3s cubic-bezier(0.19, 1, 0.22, 1) 1.5s 1 normal both;
}

@keyframes maskwipein {
  0% {
    mask-position: 0 0;
    -webkit-mask-position: 0 0;
  }
  to {
    mask-position: 0 200%;
    -webkit-mask-position: 0 200%;
  }
}
body.ready.transit-ready .p-opening,
body.transit-ready .p-opening,
html.ready.transit-ready .p-opening,
html.transit-ready .p-opening {
  pointer-events: auto !important;
  transition: none !important;
  width: 100% !important;
}

body.ready.transit-ready.transit .p-opening .p-opening__outro .p-opening__logo,
body.transit-ready.transit .p-opening .p-opening__outro .p-opening__logo,
html.ready.transit-ready.transit .p-opening .p-opening__outro .p-opening__logo,
html.transit-ready.transit .p-opening .p-opening__outro .p-opening__logo {
  animation: maskwipeout 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.2s 1 normal both;
}

body.ready.transit-ready.transit .p-opening .p-opening__outro .p-opening__cover,
body.transit-ready.transit .p-opening .p-opening__outro .p-opening__cover,
html.ready.transit-ready.transit .p-opening .p-opening__outro .p-opening__cover,
html.transit-ready.transit .p-opening .p-opening__outro .p-opening__cover {
  animation: maskwipeout 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0s 1 normal both;
}

@keyframes maskwipeout {
  0% {
    mask-position: 0 -100%;
    -webkit-mask-position: 0 -100%;
  }
  to {
    mask-position: 0 100%;
    -webkit-mask-position: 0 100%;
  }
}
.p-pagination {
  margin-top: 2.5rem;
  color: #2E44B9;
}
.p-pagination .page-numbers.current {
  background-color: #2E44B9;
  color: #fff;
}
.p-pagination .p-pagination__body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-pagination .p-pagination__body {
    gap: 1rem;
  }
}
.p-pagination .page-numbers {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-pagination .page-numbers {
    font-size: 1rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}
.p-pagination .p-pagination {
  text-align: center;
}
.p-pagination .next, .p-pagination .prev {
  border: 1px solid #2E44B9;
  width: 3.5rem;
  border-radius: 1.875rem;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-pagination .next, .p-pagination .prev {
    width: 4.5rem;
  }
}
.p-pagination .prev:hover {
  transform: translateX(-4px);
}
.p-pagination .next:hover {
  transform: translateX(4px);
}

.p-sub-privacy-policy {
  background-color: #fff;
  padding: 3.75rem 0 8.125rem;
}
@media screen and (min-width: 768px) {
  .p-sub-privacy-policy {
    padding: 5.25rem 0 9.375rem;
  }
}

.p-sub-privacy-policy__list {
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
  max-width: 50.4375rem;
  margin: 0 auto;
}

.p-sub-privacy-policy__item {
  display: flex;
  flex-direction: column;
}

.p-sub-privacy-policy__title {
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-sub-privacy-policy__title {
    font-size: 1.25rem;
  }
}

.p-sub-privacy-policy__text {
  margin-top: 1.3125rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-privacy-policy__text {
    font-size: 1rem;
  }
}

.p-sub-privacy-policy__sublist {
  margin-top: 0.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-left: 0.9375rem;
}

.p-sub-privacy-policy__subitem {
  font-size: 0.875rem;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .p-sub-privacy-policy__subitem {
    font-size: 1rem;
  }
}

.p-sub-privacy-policy__contact {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

.p-sub-privacy-policy__contact-item {
  display: flex;
  flex-wrap: wrap;
}

.p-sub-privacy-policy__contact-label {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-privacy-policy__contact-label {
    font-size: 1rem;
  }
}

.p-sub-privacy-policy__contact-text,
.p-sub-privacy-policy__contact-link {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-privacy-policy__contact-text,
  .p-sub-privacy-policy__contact-link {
    font-size: 1rem;
  }
}

.p-sub-privacy-policy__contact-link {
  color: inherit;
  text-decoration: none;
  transform: opacity 0.3s ease;
}
.p-sub-privacy-policy__contact-link:hover {
  opacity: 0.7;
}

.p-problem {
  padding: 5rem 0 0;
  background-color: #E1F2FD;
}
@media screen and (min-width: 768px) {
  .p-problem {
    padding: 8.125rem 0 0;
  }
}

.p-problem__list {
  display: grid;
  gap: 1.5625rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-problem__list {
    margin-top: 4.375rem;
    gap: 3.75rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-problem__title {
  font-size: 1rem;
  font-weight: 700;
  max-width: 14.0625rem;
  padding: 0.625rem 0.3125rem;
  text-align: center;
  color: #2E44B9;
  margin: 0 auto;
  width: 100%;
  border: 0.09375rem solid #2E44B9;
  background-color: #fff;
  border-radius: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-problem__title {
    padding: 1rem 0.3125rem;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1441px) {
  .p-problem__title {
    font-size: 1.0625rem;
  }
}

.p-problem__text {
  font-size: 0.9375rem;
  max-width: 10.375rem;
  margin: 1.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-problem__text {
    margin: 2rem auto 0;
    font-size: 1rem;
  }
}

.p-reasons {
  position: relative;
  width: 100%;
  height: auto;
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-reasons {
    height: 250vh;
  }
}

.p-reasons__img {
  position: relative;
}
.p-reasons__img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  z-index: 1;
}

.p-reasons__pin {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: auto;
  overflow: visible;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-reasons__pin {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
  }
}

.p-reasons__wrapper {
  height: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-reasons__wrapper {
    height: 100vh;
  }
}

.p-reasons__headWrap {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1200px;
  padding: 2.5rem 1.25rem 1.875rem 1.25rem;
  background-color: #f1f1f1;
  text-align: center;
  transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-reasons__headWrap {
    background-color: transparent;
    position: absolute;
    left: 50%;
    top: 8.125rem;
    transform: translateX(-50%);
    padding: 0 1.25rem;
  }
}

.p-reasons__headWrap.is-up {
  opacity: 0;
}

.p-reasons__lead {
  margin-top: 1.25rem;
}

.p-reasons__list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  height: auto;
  width: 100%;
  pointer-events: auto;
  list-style: none;
}
@media (max-width: 767px) {
  .p-reasons__list {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .p-reasons__list {
    height: 100vh;
  }
}

.p-reasons__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 0;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  background-color: #f1f1f1;
  border-right: 1px solid #c7c7c7;
  transition: -webkit-clip-path 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transition: clip-path 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transition: clip-path 0.6s cubic-bezier(0.23, 1, 0.32, 1), -webkit-clip-path 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
@media (max-width: 767px) {
  .p-reasons__item {
    border-right: none;
    border-bottom: 1px solid #c7c7c7;
  }
}

.p-reasons__item:last-child {
  border-right: none;
}
@media (max-width: 767px) {
  .p-reasons__item:last-child {
    border-bottom: none;
  }
}

.p-reasons__item.is-left.is-up {
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}

.p-reasons__item.is-center.is-up {
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition-delay: 0.05s;
}

.p-reasons__item.is-right.is-up {
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  transition-delay: 0.1s;
}

.p-reasons__item-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 1.875rem 1.25rem;
  max-width: 25rem;
}
@media screen and (min-width: 768px) {
  .p-reasons__item-inner {
    padding: 2.5rem;
    margin-top: 9.375rem;
  }
}

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

.p-reasons__text {
  margin: 1.25rem auto 0;
  font-size: 1rem;
  text-align: left;
  line-height: 1.5555555556;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-reasons__text {
    max-width: 16.125rem;
    margin-top: 2.0625rem;
    font-size: 1.125rem;
  }
}

.p-reasons__image {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-reasons__image {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100vh;
  }
}

.p-reasons__image-item {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-reasons__image-item {
    background: url("../images/top/reasons-bg.jpg") no-repeat center center/cover;
  }
}
.p-reasons__image-item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  z-index: 1;
}

.p-reasons__trigger {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-reasons__trigger {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    flex-direction: column;
    width: 1%;
    height: 250vh;
    pointer-events: none;
  }
}

.p-reasons__trigger-item {
  width: 100%;
  height: 125vh;
}

.p-reasons__trigger-item:last-of-type {
  height: 125vh;
}

@media (min-width: 768px) and (max-height: 850px) {
  .p-reasons__headWrap {
    top: calc(4.5rem + 3.125rem);
    padding: 0 0.9375rem;
  }
  .p-reasons__headWrap .c-section-title span {
    font-size: 2rem;
    padding-bottom: 0.3125rem;
  }
  .p-reasons__lead {
    margin-top: 0.75rem;
    font-size: 1rem;
  }
  .p-reasons__title {
    font-size: 1.25rem;
  }
  .p-reasons__text {
    margin-top: 1.125rem;
    font-size: 1rem;
    line-height: 1.6;
  }
  .p-reasons__item-inner {
    margin-top: 7.5rem;
  }
}
@media (min-width: 768px) and (max-height: 750px) {
  .p-reasons__headWrap {
    top: calc(4.5rem + 3.125rem);
  }
  .p-reasons__headWrap .c-section-title span {
    font-size: 1.75rem;
    padding-bottom: 0.25rem;
  }
  .p-reasons__lead {
    margin-top: 0.625rem;
    font-size: 0.9375rem;
  }
  .p-reasons__title {
    font-size: 1.125rem;
  }
  .p-reasons__text {
    margin-top: 0.9375rem;
    font-size: 0.9375rem;
    line-height: 1.6;
  }
  .p-reasons__item-inner {
    padding: 1.5625rem;
    margin-top: 6.875rem;
  }
}
@media (min-width: 768px) and (max-height: 650px) {
  .p-reasons__headWrap {
    top: calc(4.5rem + 2.5rem);
  }
  .p-reasons__headWrap .c-section-title span {
    font-size: 1.5rem;
    padding-bottom: 0.1875rem;
  }
  .p-reasons__lead {
    margin-top: 0.5rem;
    font-size: 0.875rem;
  }
  .p-reasons__title {
    font-size: 1rem;
  }
  .p-reasons__text {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .p-reasons__item-inner {
    margin-top: 6.25rem;
  }
}
.p-single-news {
  padding: 5rem 0;
}
@media screen and (min-width: 768px) {
  .p-single-news {
    padding: 7.1875rem 0;
  }
}

.p-single-news__title {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-single-news__title {
    font-size: 2.25rem;
  }
}

.p-single-news-list__date {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-single-news-list__date {
    font-size: 1rem;
  }
}

.p-single-news__body {
  max-width: 50rem;
  margin: 0 auto;
}

.p-single-news__content > * {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-single-news__content > * {
    margin-top: 2.5rem;
  }
}

.p-solution {
  padding: 7.5rem 0 3.125rem;
  background-color: #E1F2FD;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-solution {
    padding: 10rem 0 4.375rem;
  }
}

.p-solution__lead {
  margin-top: 1.25rem;
}

.p-solution__list {
  margin-top: 2.5rem;
  display: flex;
  gap: 3.75rem;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-solution__list {
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
  }
}

.p-solution__item {
  max-width: 27.1875rem;
}

.p-solution__img {
  max-width: 27.1875rem;
  width: 100%;
}
.p-solution__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 435/285;
}

.p-solution__category {
  margin: 2.125rem auto 0;
  max-width: 12.5rem;
  width: 100%;
}
.p-solution__category img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 200/66;
}

.p-solution__text {
  margin-top: 0.875rem;
  max-width: 20.625rem;
  margin: 0 auto;
  margin-top: 1.6875rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-solution__text {
    font-size: 1rem;
  }
}

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

.p-sub-access {
  background-color: #E1F2FD;
  padding: 2.8125rem 0 6.6875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-access {
    padding: 4.0625rem 0 11.0625rem;
  }
}

.p-sub-access__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  margin-top: 3.75rem;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-sub-access__body {
    flex-direction: row;
    margin-top: 6.125rem;
    gap: 9.1875rem;
    align-items: center;
  }
}
@media screen and (min-width: 1441px) {
  .p-sub-access__body {
    gap: 130px;
  }
}

.p-sub-access__info {
  flex: 1;
}

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

.p-sub-access__list {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}

.p-sub-access__item {
  display: flex;
  align-items: flex-start;
}

.p-sub-access__item img {
  max-width: 2rem;
  flex-shrink: 0;
  margin-right: 0.8125rem;
}

.p-sub-access__content {
  display: flex;
  flex-direction: column;
}

.p-sub-access__label {
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-sub-access__label {
    font-size: 1.25rem;
  }
}

.p-sub-access__text {
  font-size: 0.875rem;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin-top: 0.25rem;
}

.p-sub-access__link {
  font-size: 0.875rem;
  text-decoration: none;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-access__link {
    font-size: 1rem;
  }
}
.p-sub-access__link:hover {
  text-decoration: underline;
}

.p-sub-access__map {
  max-width: 42.9375rem;
  width: 100%;
}
@media screen and (min-width: 1441px) {
  .p-sub-access__map {
    max-width: 660px;
  }
}
.p-sub-access__map iframe {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 687/380;
}

.p-sub-contact {
  padding: 4.25rem 0 4.875rem;
  background-color: #E1F2FD;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-contact {
    padding: 6.125rem 0 6.75rem;
  }
}

.p-sub-contact__lead {
  text-align: center;
}
.p-sub-contact__lead span {
  display: inline-block;
  font-weight: 700;
  line-height: 1.25;
  font-size: 1.125rem;
  border-bottom: 0.0625rem solid #333;
  padding-bottom: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-sub-contact__lead span {
    font-size: 1.5rem;
    border-bottom: 0.125rem solid #333;
  }
}

.p-sub-contact__sub {
  margin-top: 0.8125rem;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-sub-contact__sub {
    font-size: 1.125rem;
  }
}

.p-sub-contact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2E44B9;
  border-radius: 3.125rem;
  margin-top: 2.25rem;
  padding: 0.75rem 1.875rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #2E44B9;
  line-height: 1;
  text-decoration: none;
  background-color: #fff;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .p-sub-contact__btn {
    margin-top: 3.5rem;
    padding: 0.9375rem 2.8125rem;
    font-size: 2.25rem;
  }
}
.p-sub-contact__btn:hover {
  opacity: 0.7;
}

.p-sub-contact__icon {
  margin-top: 0.125rem;
  display: inline-block;
  margin-right: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-contact__icon {
    margin-right: 1rem;
    width: 1.875rem;
    height: 1.875rem;
  }
}

.p-sub-contact__time {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-contact__time {
    font-size: 1rem;
  }
}
.p-sub-contact__time span {
  font-weight: 700;
  display: inline-block;
  margin-right: 0.625rem;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-sub-contact__time span {
    font-size: 1.125rem;
  }
}

.p-sub-customs {
  padding: 5rem 0 4rem;
}
@media screen and (min-width: 768px) {
  .p-sub-customs {
    padding: 6.25rem 0 5.25rem;
  }
}

.p-sub-customs__title {
  font-size: 1.75rem;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-sub-customs__title {
    font-size: 2.25rem;
  }
}

.p-sub-customs__list {
  display: grid;
  gap: 3.125rem;
  margin-top: 4rem;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .p-sub-customs__list {
    margin-top: 5.875rem;
    gap: 1.875rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-sub-customs__item {
  text-align: left;
  display: flex;
  width: 100%;
  gap: 1.875rem;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-sub-customs__item {
    gap: 3.125rem;
    max-width: 18.75rem;
  }
}

.p-sub-customs__head {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2E44B9;
  transform: skew(-20deg);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  height: 4.375rem;
  text-align: center;
  line-height: 1.4;
}
.p-sub-customs__head span {
  transform: skew(20deg);
}
@media screen and (min-width: 768px) {
  .p-sub-customs__head {
    font-size: 1.25rem;
  }
}

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

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

@media screen and (min-width: 768px) {
  .p-sub-faq__inner.l-inner {
    max-width: 53.125rem;
  }
}

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

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

.p-sub-faq__item + .p-sub-faq__item {
  margin-top: 2.125rem;
}

.p-sub-faq__question,
.p-sub-faq__answer {
  display: flex;
  align-items: flex-start;
}

.p-sub-faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
  color: #fff;
  flex-shrink: 0;
  border: 1px solid #2E44B9;
  width: 1.875rem;
  height: 1.875rem;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-sub-faq__icon {
    width: 2.1875rem;
    height: 2.1875rem;
    font-size: 1.125rem;
  }
}

.p-sub-faq__icon--q {
  background-color: #2E44B9;
}
.p-sub-faq__icon--q span {
  transform: translateY(-2px);
}

.p-sub-faq__icon--a {
  color: #2E44B9;
}
.p-sub-faq__icon--a span {
  transform: translateY(-2px);
}

.p-sub-faq__question-text,
.p-sub-faq__answer-text {
  margin-left: 0.625rem;
  font-size: 0.875rem;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-sub-faq__question-text,
  .p-sub-faq__answer-text {
    margin-top: 0.375rem;
    margin-left: 0.75rem;
    font-size: 0.9375rem;
  }
}

.p-sub-faq__question-text {
  font-weight: 700;
  margin-top: 0.1875rem;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-sub-faq__question-text {
    margin-top: 0.25rem;
    font-size: 1.125rem;
  }
}

.p-sub-faq__answer {
  margin-top: 0.9375rem;
}

.p-sub-feature {
  padding: 4.125rem 0 6.875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-feature {
    padding: 6rem 0 8.75rem;
  }
}

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

.p-sub-feature__box {
  margin-top: 4.375rem;
  padding: 2.5rem 1.25rem;
  border: 0.1875rem solid #2E44B9;
  border-radius: 0 3.125rem 0 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-sub-feature__box {
    padding: 4.5rem;
    margin-top: 6.25rem;
  }
}

.p-sub-feature__list {
  counter-reset: number;
  list-style: none;
  max-width: 45.625rem;
  margin: 0 auto;
}

.p-sub-feature__item {
  position: relative;
  padding-left: 1.25rem;
  counter-increment: number;
}
@media screen and (min-width: 768px) {
  .p-sub-feature__item {
    padding-left: 1.875rem;
  }
}

.p-sub-feature__item::before {
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 0.25rem;
  color: #333;
  line-height: 1;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-sub-feature__item::before {
    top: 0.3125rem;
    font-size: 1.25rem;
  }
}

.p-sub-feature__item + .p-sub-feature__item {
  margin-top: 1.5625rem;
}

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

.p-sub-feature__item-text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-feature__item-text {
    font-size: 1rem;
  }
}

.p-sub-flow {
  padding: 4.75rem 0 6.0625rem;
}
@media screen and (min-width: 768px) {
  .p-sub-flow {
    padding: 6rem 0 7.3125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-sub-flow__inner.l-inner {
    max-width: 79.375rem;
  }
}

.p-sub-flow__list {
  display: flex;
  gap: 2.5rem;
  margin-top: 4.875rem;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-sub-flow__list {
    flex-direction: row;
    gap: 1.5625rem;
    margin-top: 7.375rem;
    justify-content: space-between;
  }
}

.p-sub-flow__item {
  text-align: center;
}

.p-sub-flow__head {
  display: flex;
  align-items: center;
  gap: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-flow__head {
    justify-content: center;
  }
}

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

.p-sub-flow__title {
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-sub-flow__title {
    font-size: 1.25rem;
  }
}

.p-sub-flow__text {
  font-size: 0.875rem;
  margin-top: 1.5625rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-sub-flow__text {
    max-width: 11rem;
    margin: 2.5rem auto 0;
    font-size: 1rem;
  }
}

.p-sub-info {
  padding: 2.5rem 0 5rem;
  background-color: #E1F2FD;
}
@media screen and (min-width: 768px) {
  .p-sub-info {
    padding: 3.75rem 0 6.0625rem;
  }
}

.p-sub-info__body {
  max-width: 41.75rem;
  margin: 0 auto;
}

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

.p-sub-info__list {
  margin-top: 4.0625rem;
}

.p-sub-info__item {
  display: flex;
  flex-direction: column;
  padding: 0.9375rem 0;
  border-top: 1px solid #d0dee5;
}
@media screen and (min-width: 768px) {
  .p-sub-info__item {
    flex-direction: row;
    align-items: flex-start;
  }
}

.p-sub-info__item:last-child {
  border-bottom: 1px solid #d0dee5;
}

.p-sub-info__term {
  width: 100%;
  font-size: 0.875rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-sub-info__term {
    font-size: 1rem;
    max-width: 9.375rem;
  }
}

.p-sub-info__desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-info__desc {
    font-size: 1rem;
    margin-top: 0;
    margin-left: 2.5rem;
    flex: 1;
  }
}

.p-sub-message__inner.l-inner {
  max-width: 72.1875rem;
}

.p-sub-message__body {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2.5rem 0 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-sub-message__body {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 3.9375rem 0 7.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-sub-message__content {
    flex: 1;
  }
}

.p-sub-message__title {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-sub-message__title {
    font-size: 2.25rem;
  }
}

.p-sub-message__text {
  margin-top: 2.5rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-message__text {
    font-size: 1rem;
    margin-top: 3.5rem;
  }
}

.p-sub-message__text + .p-sub-message__text {
  margin-top: 1.6875rem;
}

.p-sub-message__name {
  max-width: 15.8125rem;
  width: 100%;
  margin-left: auto;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-message__name {
    max-width: 20rem;
  }
}
.p-sub-message__name img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 639/78;
}

.p-sub-message__img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-message__img {
    max-width: 34.75rem;
    margin-top: 4.0625rem;
  }
}
.p-sub-message__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 556/370;
}

.p-sub-movie__video {
  width: 100%;
  height: 18.75rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 0;
}
@media screen and (min-width: 768px) {
  .p-sub-movie__video {
    height: 31.25rem;
  }
}

.p-sub-partnership {
  background-color: #e8f6fc;
  padding: 7.3125rem 0 8.8125rem;
}
@media screen and (min-width: 768px) {
  .p-sub-partnership {
    padding: 9.8125rem 0 11.9375rem;
  }
}

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

.p-sub-partnership__text {
  margin-top: 1.875rem;
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-partnership__text {
    margin-top: 3.375rem;
    font-size: 1.25rem;
  }
}

.p-sub-partnership__list {
  display: grid;
  gap: 1.125rem;
  grid-template-columns: repeat(2, 1fr);
  max-width: 28.125rem;
  margin: 5rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-sub-partnership__list {
    max-width: 54.875rem;
    margin-top: 7.625rem;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.375rem;
  }
}

.p-sub-partnership__item {
  position: relative;
  max-width: 12.5rem;
  margin: 0 auto;
  border: 2px solid #1B7BB8;
  border-radius: 50%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.p-sub-partnership__cap {
  background-color: #1B7BB8;
  height: 36%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-sub-partnership__item-title {
  font-weight: 700;
  text-align: center;
  color: #fff;
  transform: translateY(3px);
  font-size: 1.125rem;
  transform: translateY(5px);
}
@media screen and (min-width: 768px) {
  .p-sub-partnership__item-title {
    font-size: 1.25rem;
  }
}

.p-sub-partnership__item-title--sm {
  font-size: 0.875rem;
  transform: translateY(10px);
}
@media screen and (min-width: 768px) {
  .p-sub-partnership__item-title--sm {
    font-size: 1rem;
  }
}

.p-sub-partnership__item-text {
  margin-top: 1.25rem;
  margin-left: 1.875rem;
  margin-right: 1.25rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-partnership__item-text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 429px) {
  .p-sub-partnership__item-text {
    margin-top: 0.9375rem;
    margin-left: 1.75rem;
    font-size: 0.8125rem;
    margin-right: 1.4375rem;
  }
}

.p-sub-partnership__item-text--sm {
  margin-left: 1.75rem;
  margin-right: 1.125rem;
}
@media screen and (max-width: 429px) {
  .p-sub-partnership__item-text--sm {
    margin-left: 1.375rem;
    margin-right: 1.375rem;
  }
}

.p-sub-partnership__network-title {
  width: 100%;
  margin: 6.25rem auto 0;
  max-width: clamp(17.5rem, 8.125rem + 40vw, 23.125rem);
}
@media screen and (min-width: 768px) {
  .p-sub-partnership__network-title {
    max-width: 39.25rem;
    margin-top: 8.75rem;
  }
}
.p-sub-partnership__network-title img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 628/80;
}

.p-sub-partnership__network-img {
  width: 100%;
  margin-top: 1.6875rem;
}
.p-sub-partnership__network-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1420/800;
}

.p-sub-philosophy {
  padding: 4.375rem 0 5.3125rem;
}
@media screen and (min-width: 768px) {
  .p-sub-philosophy {
    padding: 6.25rem 0 7.1875rem;
  }
}

.p-sub-philosophy__top {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-sub-philosophy__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.p-sub-philosophy__left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-philosophy__left {
    width: 44%;
  }
}

.p-sub-philosophy__venn {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 100%;
}

.p-sub-philosophy__venn-item {
  position: absolute;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-sub-philosophy__venn-item--mission {
  width: 53%;
  top: 3.3%;
  left: 23%;
  z-index: 2;
}

.p-sub-philosophy__venn-item--vision {
  width: 53%;
  left: 0;
  bottom: 3.3%;
}

.p-sub-philosophy__venn-item--value {
  width: 53%;
  right: 0;
  bottom: 3.3%;
}

.p-sub-philosophy__venn-item--core {
  width: 32%;
  left: 33%;
  top: 43%;
  z-index: 3;
}

.p-sub-philosophy__right {
  margin-top: 3.75rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-philosophy__right {
    margin-top: 0;
    width: 50%;
  }
}

.p-sub-philosophy__visual {
  max-width: 100%;
}

.p-sub-philosophy__visual img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.375rem;
}

.p-sub-philosophy__bottom {
  text-align: center;
  max-width: 48.5rem;
  margin: 3.75rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-sub-philosophy__bottom {
    margin: 5.5rem auto 0;
  }
}

.p-sub-philosophy__description {
  font-size: 0.875rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-sub-philosophy__description {
    font-size: 1rem;
  }
}

.p-sub-philosophy__message {
  margin-top: 1.875rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #2E44B9;
}
@media screen and (min-width: 768px) {
  .p-sub-philosophy__message {
    font-size: 1.5rem;
    margin-top: 2.75rem;
  }
}

.p-sub-philosophy__promise {
  font-size: 0.875rem;
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-philosophy__promise {
    margin-top: 3rem;
    font-size: 1rem;
  }
}

.p-sub-strength {
  padding: 5rem 0 4rem;
  background-color: #E1F2FD;
}
@media screen and (min-width: 768px) {
  .p-sub-strength {
    padding: 6.25rem 0 5.25rem;
  }
}

.p-sub-strength__title {
  font-size: 1.75rem;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-sub-strength__title {
    font-size: 2.25rem;
  }
}

.p-sub-strength__content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.p-sub-strength__body {
  max-width: 87.5rem;
  width: 100%;
  margin: 3.9375rem auto 0;
  padding: 0 3.125rem;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-sub-strength__body {
    margin-top: 5.8125rem;
    flex-direction: row;
    gap: 3.125rem;
    align-items: center;
  }
}

.p-sub-strength__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-sub-strength__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 4.625rem 2.25rem;
    max-width: 42.25rem;
  }
}

.p-sub-strength__item {
  background-color: #fff;
  padding: 2rem 2.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.p-sub-strength__num {
  background-color: #F3FF98;
  font-family: "Kaushan Script", cursive;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  font-size: 1.75rem;
  width: 4.375rem;
  height: 4.375rem;
  top: -1.5625rem;
  left: -0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-sub-strength__num {
    font-size: 2rem;
    width: 5rem;
    height: 5rem;
    top: -1.6875rem;
    left: -1.375rem;
  }
}
.p-sub-strength__num span {
  display: inline-block;
  transform: translateX(-4px);
}

.p-sub-strength__head {
  font-size: 1.125rem;
  font-weight: 700;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-sub-strength__head {
    font-size: 1.25rem;
  }
}

.p-sub-strength__text {
  font-size: 0.875rem;
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-strength__text {
    margin-top: 3.125rem;
    font-size: 1rem;
  }
}

.p-sub-strength__image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-strength__image {
    max-width: 34.4375rem;
  }
}
.p-sub-strength__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 551/370;
}

.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 */
