@charset "UTF-8";
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
figure {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

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

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

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* foundation > base
--------------------------------------------- */
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #002366;
}
body.js-no-scroll {
  overflow-y: clip;
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

/* layout > header
--------------------------------------------- */
.l-header {
  height: clamp(70px, 4.167rem + 0.93vw, 80px);
  padding-inline: clamp(13px, -1.417rem + 9.91vw, 120px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

/* layout > footer
--------------------------------------------- */
.l-footer {
  background: #0c328b;
  color: #F7F7F7;
  padding-right: clamp(25px, -3.46rem + 22.32vw, 173px);
  padding-left: clamp(25px, -2.408rem + 17.65vw, 142px);
  padding-top: 160px;
  margin-top: -1px;
  position: relative;
}
@media screen and (max-width: 360px) {
  .l-footer {
    padding-inline: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer {
    padding-left: clamp(30px, -15.356rem + 26.92vw, 142px);
    padding-right: clamp(30px, -20.125rem + 34.38vw, 173px);
  }
}
.l-footer.l-footer--top {
  background: rgba(12, 50, 139, 0.8);
  margin-top: 0;
}

/* layout > inner
--------------------------------------------- */
/* object > component > button
--------------------------------------------- */
/* リンクボタン */
.c-link-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .c-link-button {
    gap: 16px;
  }
  .c-link-button svg {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .c-link-button .rect01 {
    -webkit-transition: fill 0.3s;
    transition: fill 0.3s;
  }
  .c-link-button .rect02 {
    -webkit-transition: stroke 0.3s;
    transition: stroke 0.3s;
  }
  .c-link-button .path {
    -webkit-transition: stroke 0.3s;
    transition: stroke 0.3s;
  }
}
@media screen and (min-width: 768px) and (any-hover: hover) {
  .c-link-button:hover .rect01 {
    fill: #0c328b;
  }
  .c-link-button:hover .path {
    stroke: #FFFFFF;
  }
  .c-link-button:hover .c-link-button__text {
    opacity: 0.8;
  }
}
.c-link-button.c-link-button--recruit {
  color: #1391E6;
}
.c-link-button.c-link-button--recruit:hover .rect01, .c-link-button.c-link-button--recruit:focus .rect01 {
  fill: #1391E6;
}
.c-link-button.c-link-button--recruit:hover .rect02, .c-link-button.c-link-button--recruit:focus .rect02 {
  stroke: #1391E6;
}

.c-link-button__text {
  font-size: 16px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .c-link-button__text {
    font-size: 18px;
  }
}
.c-link-button__text--lg {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .c-link-button__text--lg {
    font-size: 20px;
  }
}

/* 更新するボタン */
.c-update-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid #0c328b;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-update-button path {
  -webkit-transition: stroke 0.3s;
  transition: stroke 0.3s;
}
@media screen and (min-width: 768px) and (any-hover: hover) {
  .c-update-button {
    background-color: #0c328b;
  }
  .c-update-button path {
    stroke: #FFFFFF;
  }
  .c-update-button .c-update-button__text {
    color: #FFFFFF;
  }
}

.c-update-button__text {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.32px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

/* 一覧に戻るボタン */
.c-back-button {
  display: inline-block;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 20px;
  background-color: #0c328b;
  border: 1px solid #0c328b;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (min-width: 768px) {
  .c-back-button {
    font-size: 18px;
    padding: 12px 20px;
  }
}
@media (any-hover: hover) {
  .c-back-button:hover {
    color: #0c328b;
    background-color: #FFFFFF;
  }
}

/* 送信・確認・戻るボタン */
.c-submit-button {
  display: inline-grid;
  place-items: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  padding: 12px 10px;
  width: 264px;
  background-color: #1391E6;
  color: #FFFFFF;
  border-radius: 2px;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.45);
          box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .c-submit-button:hover {
    opacity: 0.8;
  }
}
.c-submit-button.c-submit-button--amend {
  background-color: #6F6F6F;
}
.c-submit-button[disabled] {
  color: #0c328b;
  opacity: 0.5;
  background: #F1F1F1;
  border: 1px solid #0c328b;
  pointer-events: none;
  cursor: default;
}

/* object > component > heading
--------------------------------------------- */
/* トップページ：セクション見出し */
.c-top-section-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-top-section-heading__en {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .c-top-section-heading__en {
    font-size: 56px;
    line-height: 1;
  }
}

.c-top-section-heading__jp {
  font-size: 16px;
  letter-spacing: 0.3px;
}

/* 下層ページ：セクション見出し(黄色装飾あり) */
.c-page-section-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  /* SPのみ改行あり */
}
@media screen and (min-width: 768px) {
  .c-page-section-heading {
    gap: 40px;
  }
}
.c-page-section-heading.c-page-section-heading--start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .c-page-section-heading.c-page-section-heading--start {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-page-section-heading__number {
  font-family: "Roboto", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.92px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-page-section-heading__number {
    font-size: 56px;
    letter-spacing: 8px;
  }
}
.c-page-section-heading__number::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/common/icon/icon-page-title-deco.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
  width: 40px;
  height: 10px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .c-page-section-heading__number::after {
    bottom: 13px;
    width: 109px;
    height: 20px;
  }
}

.c-page-section-heading__jp {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}
@media screen and (min-width: 768px) {
  .c-page-section-heading__jp {
    font-size: 40px;
    line-height: 1.6;
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
}

/* 下層ページ見出し(日本語/英語/黄色装飾あり) */
.c-page-section-heading02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  gap: 2px;
  z-index: 1;
  /* くまおアイコンあり */
}
@media screen and (min-width: 768px) {
  .c-page-section-heading02 {
    gap: 7px;
  }
}
.c-page-section-heading02.c-page-section-heading02--width-icon01, .c-page-section-heading02.c-page-section-heading02--width-icon02 {
  position: relative;
}
.c-page-section-heading02.c-page-section-heading02--width-icon01::before, .c-page-section-heading02.c-page-section-heading02--width-icon02::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
}
.c-page-section-heading02.c-page-section-heading02--width-icon01::before {
  top: -55px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/use/kumao/use-kumao1.webp);
  width: 70px;
  height: 55px;
}
@media screen and (min-width: 768px) {
  .c-page-section-heading02.c-page-section-heading02--width-icon01::before {
    content: none;
  }
}
.c-page-section-heading02.c-page-section-heading02--width-icon02::before {
  top: -64px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/use/kumao/use-kumao2-sp.webp);
  width: 59px;
  height: 64px;
}
@media screen and (min-width: 768px) {
  .c-page-section-heading02.c-page-section-heading02--width-icon02::before {
    content: none;
  }
}

.c-page-section-heading02__en {
  text-transform: uppercase;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-page-section-heading02__en {
    font-size: 48px;
  }
}
.c-page-section-heading02__en::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -2px;
  background-image: url(../img/common/icon/icon-page-title-deco02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
  width: 110px;
  height: 10px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .c-page-section-heading02__en::after {
    bottom: -5px;
    width: 210px;
    height: 20px;
  }
}

.c-page-section-heading02__jp {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-page-section-heading02__jp {
    font-size: 24px;
  }
}

/* object > component > hamburger
--------------------------------------------- */
.c-hamburger {
  width: 38px;
  height: 24px;
  position: fixed;
  top: 26px;
  right: clamp(13px, -1.417rem + 9.91vw, 120px);
  z-index: 102;
}
.c-hamburger.is-checked .c-hamburger__bar {
  background: #FDFCF8;
}
.c-hamburger.is-checked .c-hamburger__bar:nth-of-type(1) {
  top: 12px;
  -webkit-transform: translateX(-50%) rotate(-30deg);
          transform: translateX(-50%) rotate(-30deg);
}
.c-hamburger.is-checked .c-hamburger__bar:nth-of-type(2) {
  display: none;
}
.c-hamburger.is-checked .c-hamburger__bar:nth-of-type(3) {
  top: 12px;
  -webkit-transform: translateX(-50%) rotate(30deg);
          transform: translateX(-50%) rotate(30deg);
}

.c-hamburger__bar {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: clamp(34px, 1.958rem + 0.74vw, 42px);
  height: 3px;
  background: #002366;
  border-radius: 6px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-hamburger__bar:nth-of-type(2) {
  width: clamp(36px, 2.083rem + 0.74vw, 44px);
  top: clamp(10.5px, 0.615rem + 0.19vw, 12.5px);
}
.c-hamburger__bar:nth-of-type(3) {
  top: clamp(21px, 1.229rem + 0.37vw, 25px);
}

/* object > component > tag
--------------------------------------------- */
/* object > component > button
--------------------------------------------- */
.c-fv-link__wrap {
  position: fixed;
  right: 0;
  bottom: 95px;
  background-color: #FFE253;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.35);
  border-radius: 10px 0 0 10px;
  z-index: 3;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.c-fv-link__wrap.is-page, .c-fv-link__wrap.is-loaded {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .c-fv-link__wrap {
    bottom: 122px;
  }
}
@media screen and (min-width: 768px) {
  .c-fv-link__wrap:hover .c-fv-link__icon {
    opacity: 1;
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
}

.c-fv-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 52px;
  height: 142px;
  font-family: "Noto Sans JP", serif;
  font-size: clamp(16px, 0.875rem + 0.28vw, 18px);
  font-weight: 500;
  line-height: 1.2;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  background-color: #FFE253;
  border-radius: 10px 0 0 10px;
}
.c-fv-link span {
  display: inline-block;
}

.c-fv-link__icon {
  position: absolute;
  top: 12px;
  right: 26px;
  z-index: -1;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}
@media screen and (min-width: 768px) {
  .c-fv-link__icon {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
}

/* object > component > to top
--------------------------------------------- */
.c-to-top {
  position: fixed;
  right: 0;
  bottom: 33px;
  width: 52px;
  height: 50px;
  border-radius: 10px 0 0 10px;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.35);
  display: grid;
  place-items: center;
  background-color: #002366;
  z-index: 3;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.c-to-top.is-page, .c-to-top.is-loaded {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .c-to-top {
    bottom: 60px;
  }
}
.c-to-top svg {
  width: 20px;
  height: 8px;
}

/* object > project > トップページ
--------------------------------------------- */
.bg-img-bubble {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fdfdfd;
  z-index: 0;
}
.bg-img-bubble::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url(../img/top/fv/bg-bubble-sp.jpg) no-repeat bottom center/cover;
  opacity: 0.8;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .bg-img-bubble::before {
    background: url(../img/top/fv/bg-bubble-pc.jpg) no-repeat bottom center/cover;
  }
}
.bg-img-bubble::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fdfdfd;
  opacity: 0.75;
  z-index: 2;
  pointer-events: none;
}

.p-top-about {
  position: relative;
  padding-top: clamp(40px, 25.9px + 3.76vw, 80px);
  padding-bottom: clamp(60px, 2.083rem + 4.63vw, 100px);
  padding-inline: 22.5px;
  z-index: 3;
}

.p-top-about__title {
  text-align: center;
  font-size: clamp(30px, 1.5rem + 1.67vw, 48px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.96px;
}
@media screen and (min-width: 768px) {
  .p-top-about__title {
    line-height: 1.8;
  }
}
.p-top-about__title ._montserrat {
  font-family: "Montserrat Alternates", sans-serif;
}
.p-top-about__title ._spacing01 {
  letter-spacing: -5.76px;
}

.p-top-about__description {
  text-align: center;
  font-size: clamp(14px, 0.792rem + 0.37vw, 18px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: clamp(1.28px, 0.077rem + 0.01vw, 1.44px);
  margin-top: clamp(1.5rem, 1.28rem + 0.94vw, 2.125rem);
}
@media screen and (min-width: 768px) {
  .p-top-about__description {
    line-height: 2.2;
  }
}

.p-top-about__steps {
  padding-inline: 22.5px;
  margin-top: clamp(50px, 2.5rem + 2.78vw, 100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(24px, 15.6px + 2.25vw, 48px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .p-top-about__steps {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.about-step {
  position: relative;
  width: 186px;
}

.about-step__number {
  font-size: 22.892px;
  font-weight: 700;
  letter-spacing: 0.2px;
  position: absolute;
  top: 16.5px;
  left: 0;
}

.about-step__img {
  width: 100%;
  height: auto;
}
.about-step__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-step__text {
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.36px;
  margin-top: 0px;
}
@media screen and (min-width: 900px) {
  .about-step__text {
    margin-top: 12px;
  }
}
.about-step__text span {
  font-size: 13px;
  letter-spacing: 0.26px;
}

.p-top-service {
  padding-top: clamp(40px, 1.62rem + 3.76vw, 80px);
  padding-bottom: 80px;
  position: relative;
  padding-inline: 22.5px;
  z-index: 3;
}
@media screen and (min-width: 900px) {
  .p-top-service {
    padding-bottom: 0;
  }
}

.p-top-section-heading02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-top-section-heading02__en {
  text-align: center;
  font-size: clamp(32px, 1.5rem + 2.22vw, 56px);
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
}

.p-top-section-heading02__jp {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.32px;
}
.p-top-section-heading02__jp--service {
  margin-top: clamp(4px, 0.162rem + 0.38vw, 8px);
  text-align: center;
}

.p-top-service__contents {
  max-width: 889px;
  margin-inline: auto;
}

.p-top-service__content {
  margin-top: clamp(24px, 0.796rem + 3vw, 56px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-top-service__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}

.p-top-service__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(8px, 0.324rem + 0.75vw, 16px);
  counter-reset: item;
}

.p-top-service__tag-item {
  display: inline-block;
  counter-increment: item;
  position: relative;
  padding-left: 2em;
  color: #0f3c77;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(16px, 0.912rem + 0.38vw, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
  padding-block: 8px;
  padding-right: 16px;
  padding-left: 2.5em;
  white-space: nowrap;
  background: #FDFDFD;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-top-service__tag-item::before {
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-top-service__tag-item:hover {
  color: #ffffff;
  background: #0f3c77;
}

.p-top-service__img {
  display: block;
  width: 330px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-top-service__img {
    width: 49.3685419059%;
  }
}
.p-top-service__img img {
  width: 100%;
}

.p-top-service__title {
  font-size: clamp(20px, 1rem + 1.11vw, 32px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: clamp(1px, 0.05rem + 0.06vw, 1.6px);
}

.p-top-service__text {
  font-size: clamp(16px, 0.958rem + 0.19vw, 18px);
  font-weight: 400;
  line-height: normal;
  letter-spacing: clamp(0.32px, 0.008rem + 0.05vw, 0.9px);
  margin-top: clamp(16px, 0.833rem + 0.74vw, 24px);
}

.p-top-service__link-button {
  margin-top: clamp(24px, 0.796rem + 3vw, 56px);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-service__link-button {
    text-align: right;
  }
}

.p-top-how-to-use {
  position: relative;
  padding-inline: 17.5px;
  padding-top: clamp(40px, 1.667rem + 3.7vw, 80px);
  padding-bottom: clamp(60px, 3.333rem + 1.85vw, 80px);
  --left: 0%;
  --rotate: 0deg;
  --scale: 1;
  z-index: 3;
}
.p-top-how-to-use::before {
  content: "";
  background: url("../img/top/treat/top-treat.webp") no-repeat center center/cover;
  width: clamp(4.177rem, 2.567rem + 6.87vw, 8.75rem);
  height: clamp(4.642rem, 2.853rem + 7.63vw, 9.722rem);
  position: absolute;
  top: clamp(740px, 44.36rem + 8.06vw, 750px);
  left: 70%;
  -webkit-transform: translateX(var(--left)) rotate(var(--rotate)) scaleX(var(--scale));
          transform: translateX(var(--left)) rotate(var(--rotate)) scaleX(var(--scale));
}
@media screen and (min-width: 500px) {
  .p-top-how-to-use::before {
    top: clamp(760px, 42.818rem + 14.98vw, 800px);
  }
}
@media screen and (min-width: 768px) {
  .p-top-how-to-use::before {
    left: 65%;
    top: clamp(510px, 26.161rem + 11.9vw, 590px);
  }
}
@media screen and (min-width: 900px) {
  .p-top-how-to-use::before {
    left: 60%;
  }
}

.p-top-how-to-use__contents {
  max-width: 981px;
  margin-inline: auto;
  padding-inline: 0px;
  margin-top: clamp(24px, 0.972rem + 2.25vw, 48px);
  padding-bottom: clamp(104px, 3.507rem + 12.77vw, 240px);
}
@media screen and (min-width: 768px) {
  .p-top-how-to-use__contents {
    padding-inline: clamp(0px, -0.88rem + 3.76vw, 40px);
  }
}

.p-top-how-to-use__content {
  width: 90.9333333333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-top-how-to-use__content {
    width: 56.8257491676%;
  }
}

.p-top-how-to-use__content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(24px, 0.972rem + 2.25vw, 48px);
}
@media screen and (min-width: 768px) {
  .p-top-how-to-use__content-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.top-hou-to__img {
  width: 341px;
  height: 280px;
}
@media screen and (min-width: 768px) {
  .top-hou-to__img {
    width: 37.8468368479%;
    aspect-ratio: 341/280;
  }
  .top-hou-to__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-top-hou-to__tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.p-top-hou-to__tag {
  display: block;
  color: #0f3c77;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(16px, 0.912rem + 0.38vw, 20px);
  font-weight: 500;
  line-height: 1.5;
  background: #FDFDFD;
  padding-block: 8px;
  padding-inline: clamp(8px, 0.324rem + 0.75vw, 16px);
  white-space: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-top-hou-to__tag {
    line-height: 1.6;
  }
}
.p-top-hou-to__tag:hover {
  color: #ffffff;
  background: #0f3c77;
}

.p-top-hou-to__link-button {
  text-align: center;
  margin-top: clamp(8px, 0.333rem + 0.74vw, 16px);
}
@media screen and (min-width: 768px) {
  .p-top-hou-to__link-button {
    text-align: right;
  }
}

.bg-gray {
  background-color: #FDFDFD;
  position: relative;
}

.p-top-qa {
  background: rgba(241, 247, 255, 0.9);
  position: relative;
  padding-top: 80px;
  padding-bottom: 120px;
  padding-inline: 17.5px;
}

.p-top-qa__wrap {
  padding-top: 107px;
  position: relative;
}

.p-top-qa__wrap-in .p-top-qa__img {
  top: 0;
}

.l-top-qa__link {
  margin-top: 32px;
  text-align: center;
}

.p-top-qa__link {
  display: block;
  padding-top: clamp(26px, 1.097rem + 2.25vw, 50px);
  padding-bottom: clamp(34px, 1.597rem + 2.25vw, 58px);
  padding-inline: clamp(20px, -8.2px + 7.51vw, 100px);
  background: #FDFDFD;
  z-index: 2;
  position: relative;
  border-radius: 15px;
  max-width: 856px;
  margin-inline: auto;
}

.p-top-qa__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-top-qa__heading-en {
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(40px, 2.148rem + 1.5vw, 56px);
  font-weight: 700;
  line-height: 56px;
  white-space: nowrap;
}

.p-top-qa__heading-ja {
  text-align: center;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
  white-space: nowrap;
}

.p-top-qa__img {
  width: 144px;
  height: 107px;
  position: absolute;
  top: 107px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.p-top-qa__img img {
  width: 100%;
  height: 100%;
}

.p-top-shops {
  position: relative;
  background-color: #FDFDFD;
  padding-top: 115px;
  padding-bottom: 60px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-top-shops {
    padding-top: 234px;
    padding-bottom: 53px;
  }
}

.c-scroll-texts {
  padding-bottom: 50px;
  background-color: #FDFDFD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.c-scroll-text {
  color: rgba(0, 35, 102, 0.02);
  font-family: "Montserrat Alternates", sans-serif;
  font-size: clamp(114px, 48.5px + 17.46vw, 300px);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1.17px;
  white-space: nowrap;
  padding: 0 1em 0 0;
  -webkit-animation: marquee-left 50s linear infinite;
          animation: marquee-left 50s linear infinite;
}

@-webkit-keyframes marquee-left {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes marquee-left {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.p-top-section-heading02__front {
  position: relative;
  z-index: 1;
}

.p-top-shops__slider {
  margin-top: clamp(24px, 0.62rem + 3.76vw, 64px);
  max-width: 1148px;
  padding-inline: clamp(16px, -13.6px + 7.89vw, 100px);
  margin-inline: auto;
}

.p-top-shops__wrapper {
  padding-bottom: clamp(100px, 5.417rem + 3.7vw, 140px);
}

.p-top-shops__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-right: 24px;
}
@media screen and (min-width: 768px) {
  .p-top-shops__slide {
    width: 33.3%;
  }
}

.p-top-shops__card {
  display: block;
  width: 330px;
}

.p-top-shops-card__img img {
  width: 100%;
  aspect-ratio: 330/221;
}

.p-top-shops-card__name {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.p-top-shops-card__address {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.p-top-shops__prev,
.p-top-shops__next {
  position: absolute;
  bottom: 0;
  cursor: pointer;
}

.p-top-shops__prev {
  left: 15%;
}
@media screen and (min-width: 900px) {
  .p-top-shops__prev {
    left: 30%;
  }
}

.p-top-shops__button-text {
  font-size: 18px;
  font-weight: 400;
  position: absolute;
  left: 50%;
  bottom: 17px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-top-shops__next {
  right: 15%;
}
@media screen and (min-width: 900px) {
  .p-top-shops__next {
    right: 30%;
  }
}

.p-top-news {
  position: relative;
  background-color: #FDFDFD;
  padding-inline: 21.5px;
  padding-bottom: clamp(0px, -2.5rem + 11.11vw, 120px);
}
@media screen and (min-width: 768px) {
  .p-top-news {
    padding-top: 80px;
  }
}

.p-top-news__card {
  margin-inline: auto;
  max-width: 1064px;
  background-color: #F1F7FF;
  padding-inline: clamp(16px, -0.408rem + 6.01vw, 80px);
  padding-block: clamp(32px, 1.384rem + 2.63vw, 60px);
}

.p-top-news__lists {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "游ゴシック", "Yu Gothic", sans-serif;
  margin-top: clamp(28px, 1.167rem + 2.59vw, 56px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news-link {
  max-width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  border-radius: 4px;
  background: var(--fdfdfd, #fdfdfd);
  -webkit-box-shadow: 0px 1px 4px 0px rgba(15, 60, 119, 0.25);
          box-shadow: 0px 1px 4px 0px rgba(15, 60, 119, 0.25);
  padding: clamp(20px, 0.81rem + 1.88vw, 40px);
  border-bottom: 1px solid #7795cf;
}
@media screen and (min-width: 768px) {
  .news-link {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
  }
}
@media (any-hover: hover) {
  .news-link:hover .news-link__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.news-link__img {
  width: 260px;
  height: 130px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}
.news-link__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.news-link__meta--sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .news-link__meta--sp {
    display: none;
  }
}

.news-link__meta {
  display: none;
}
@media screen and (min-width: 768px) {
  .news-link__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: clamp(10px, 0.479rem + 0.65vw, 17px);
  }
}

.news-link__date {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.32px;
}

.news-link__label-oshirase,
.news-link__label-campaign,
.news-link__label-column {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  width: 120px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news-link__label-oshirase {
  background-color: #018BA7;
}

.news-link__label-campaign {
  background-color: #002366;
}

.news-link__label-column {
  background-color: #6899FA;
}

.news-link__title {
  color: #0f3c77;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(16px, 0.912rem + 0.38vw, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.64px;
  padding-top: 20px;
  border-top: 0.5px solid rgba(0, 35, 102, 0.2);
}
@media screen and (min-width: 768px) {
  .news-link__title {
    border-top: none;
    padding-top: 8px;
  }
}

.news-link__description {
  display: none;
}
@media screen and (min-width: 768px) {
  .news-link__description {
    display: block;
    padding-top: 16px;
  }
}

.p-top-news__link-button {
  text-align: center;
  margin-top: clamp(28px, 1.5rem + 1.11vw, 40px);
}

.p-top-recruit {
  position: relative;
  background-color: #FDFDFD;
}

.p-top-recruit__inner {
  padding-top: clamp(56px, 47.6px + 2.25vw, 80px);
  padding-bottom: clamp(4rem, 2.768rem + 5.26vw, 7.5rem);
  margin-inline: clamp(0px, -3.542rem + 15.74vw, 170px);
}

.p-top-recruit__heading {
  text-align: center;
  font-size: clamp(1.75rem, 1.662rem + 0.38vw, 2rem);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: clamp(0.96px, 0.053rem + 0.03vw, 1.28px);
  padding-inline: clamp(22.5px, -0.104rem + 6.71vw, 95px);
}
.p-top-recruit__text {
  font-size: clamp(16px, 0.958rem + 0.19vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: clamp(0.64px, 0.035rem + 0.02vw, 0.9px);
  margin-top: 16px;
  text-align: center;
  display: block;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__text {
    margin-top: 24px;
    max-width: initial;
    text-align: center;
  }
}

.p-top-recruit__contents {
  max-width: 88%;
  margin: 52px auto 0;
  background-color: #F7F7F7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__contents {
    max-width: initial;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-top-recruit__content {
  position: relative;
  padding-inline: clamp(22.5px, -0.104rem + 6.71vw, 95px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.p-top-recruit__content:nth-of-type(1) {
  position: relative;
  padding-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__content:nth-of-type(1) {
    padding-bottom: 44px;
  }
}
.p-top-recruit__content:nth-of-type(1)::before {
  position: absolute;
  top: 0;
  left: 6%;
  width: 88%;
  height: 1px;
  background-color: #002366;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__content:nth-of-type(1)::before {
    display: none;
  }
}
.p-top-recruit__content:nth-of-type(2) {
  position: relative;
  padding-bottom: 52px;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__content:nth-of-type(2) {
    padding-bottom: 44px;
  }
}
.p-top-recruit__content:nth-of-type(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6%;
  width: 88%;
  height: 1px;
  background-color: #002366;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__content:nth-of-type(2)::before {
    top: 6%;
    left: 0;
    width: 1px;
    height: 88%;
  }
}

.p-top-recruit__content-title {
  font-size: clamp(24px, 1.417rem + 0.37vw, 28px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: clamp(0.96px, 0.057rem + 0.01vw, 1.12px);
  margin-top: clamp(32px, 1.75rem + 1.11vw, 44px);
  text-align: center;
}

.p-top-recruit__content-title--blue {
  color: #1391E6;
  font-size: clamp(24px, 1.417rem + 0.37vw, 28px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: clamp(0.96px, 0.057rem + 0.01vw, 1.12px);
  margin-top: clamp(32px, 1.75rem + 1.11vw, 44px);
  text-align: center;
}

.p-top-recruit__content-text {
  margin-top: 16px;
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__content-text {
    max-width: 360px;
  }
}

.p-top-recruit__content-link {
  text-align: center;
  margin-top: 16px;
}

.c-link-button__text--blue {
  color: #1391E6;
}

/* object > project > サービスページ
--------------------------------------------- */
.p-service {
  padding: 40px 0 80px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-service {
    padding: 80px 0 100px;
  }
}

.p-service__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 22px;
}

.p-service__item:not(:first-child) {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-service__item:not(:first-child) {
    margin-top: 80px;
  }
}

.p-service__item-title {
  padding: 0 15px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 500px) {
  .p-service__item-title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .p-service__item-title {
    padding: 0 45px;
  }
}
@media screen and (min-width: 1024px) {
  .p-service__item-title {
    padding: 0 70px;
  }
}

.p-service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-service__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}

.p-service__list-title-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.p-service__list-title-block img {
  width: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-service__img-wrap {
  margin-top: 24px;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .p-service__img-wrap {
    padding: 0;
    max-width: 600px;
    margin: 33px auto 0;
  }
}

.p-service__list {
  margin-top: 24px;
  padding: 0 35px;
}
@media screen and (min-width: 768px) {
  .p-service__list {
    margin-top: 50px;
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-service__list-item {
    width: calc((100% - 80px) / 3);
  }
}

.p-service__list-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0.36px;
}
@media screen and (min-width: 1024px) {
  .p-service__list-title {
    font-size: 26px;
  }
}

.p-service__list-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .p-service__list-text {
    margin-top: 20px;
    font-size: 20px;
  }
}

/* object > component > about:ご利用方法&料金ページ
--------------------------------------------- */
.p-about {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "游ゴシック", "Yu Gothic", sans-serif;
  padding: 45px 0 72px;
}
@media screen and (min-width: 768px) {
  .p-about {
    padding: 88px 0 120px;
  }
}

.p-about__section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.p-about__section-title img {
  width: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-about__section-title img {
    width: 58px;
  }
}
@media screen and (min-width: 768px) {
  .p-about__section-title--top img {
    width: 40px;
  }
}

.p-about__section-title-text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-about__section-title-text {
    font-size: 32px;
  }
}
@media screen and (min-width: 768px) {
  .p-about__section-title-text--top {
    font-size: 32px;
  }
}

/* section01: 料金 */
.p-about__price {
  padding: 0 0 40px;
}
@media screen and (min-width: 768px) {
  .p-about__price {
    padding: 0 0 80px;
  }
}

.p-about__price-content {
  margin-top: 26px;
}
@media screen and (min-width: 768px) {
  .p-about__price-content {
    margin-top: 48px;
  }
}
.p-about__price-content--top {
  margin-top: 0;
}

.p-about__price-inner {
  max-width: 964px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (min-width: 500px) {
  .p-about__price-inner {
    padding: 0 22px;
  }
}
.p-about__price-inner--top {
  max-width: 1080px;
  background: #fdfdfd;
  padding-inline: clamp(16px, -0.408rem + 6.01vw, 80px);
  padding-top: clamp(32px, 1.384rem + 2.63vw, 60px);
  padding-bottom: clamp(40px, 1.62rem + 3.76vw, 80px);
}

.p-about__price-item:not(:first-child) {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-about__price-item:not(:first-child) {
    margin-top: 80px;
  }
}

.p-about__price-table {
  margin-top: 10px;
}

.p-about__price-table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-about__price-table-row:first-child {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-about__price-table-row:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-about__price-table-row.has-margin {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-about__price-table-row.has-margin {
    margin-top: 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-about__price-table-row.has-pc-margin {
    margin-top: 16px;
  }
}

.p-about__price-table-head {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 24px;
  font-weight: 32;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 2.56px;
}
@media screen and (min-width: 900px) {
  .p-about__price-table-head {
    font-size: 24px;
  }
}
.p-about__price-table-head.is-first {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 150px;
          flex: 0 0 150px;
  padding: 27px 0 11px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .p-about__price-table-head.is-first {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
  }
}
.p-about__price-table-head.is-second {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 27px 0 11px 70px;
}
.p-about__price-table-head.is-third {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  padding: 27px 0 11px;
}
@media screen and (min-width: 768px) {
  .p-about__price-table-head--top {
    font-size: 24px;
    padding-block: 11px;
  }
}

.p-about__price-table-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-about__price-table-data:not(.is-colored) {
  border-bottom: 1px solid #002366;
}
.p-about__price-table-data.is-first {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
}
@media screen and (min-width: 768px) {
  .p-about__price-table-data.is-first {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
  }
}
@media screen and (min-width: 900px) {
  .p-about__price-table-data.is-first {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
  }
}
.p-about__price-table-data.is-second {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 6px 0 2px;
}
@media screen and (min-width: 768px) {
  .p-about__price-table-data.is-second {
    padding: 7px 9px 7px 60px;
  }
}
.p-about__price-table-data.is-second span:first-of-type {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 85px;
          flex: 0 0 85px;
}
@media screen and (min-width: 768px) {
  .p-about__price-table-data.is-second span:first-of-type {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
  }
}
.p-about__price-table-data.is-second span:first-of-type.no-flex {
  -webkit-box-flex: initial;
      -ms-flex: initial;
          flex: initial;
}
.p-about__price-table-data.is-third {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  padding: 6px 0 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.p-about__price-table-data.is-third._top {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 900px) {
  .p-about__price-table-data.is-third._top {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .p-about__price-table-data.is-third {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
  }
}
@media screen and (min-width: 900px) {
  .p-about__price-table-data.is-third {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
    padding: 7px 0;
  }
}
.p-about__price-table-data.is-colored {
  background-color: #F7F7F7;
  margin-right: 8px;
}
@media screen and (min-width: 768px) {
  .p-about__price-table-data.is-colored {
    margin-right: 10px;
  }
}
.p-about__price-table-data.is-text {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about__price-table-data.is-text {
    font-size: 32px;
  }
}
@media screen and (min-width: 900px) {
  .p-about__price-table-data.is-text {
    font-size: 36px;
  }
}
.p-about__price-table-data.has-sm-margin {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-about__price-table-data.has-sm-margin {
    margin-top: 0;
  }
}
.p-about__price-table-data span {
  display: inline-block;
}
.p-about__price-table-data span.is-lg {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-about__price-table-data span.is-lg {
    font-size: 26px;
  }
}
@media screen and (min-width: 900px) {
  .p-about__price-table-data span.is-lg {
    font-size: 24px;
    letter-spacing: 2.56px;
  }
}
.p-about__price-table-data span.is-md {
  margin-left: 4px;
  font-size: clamp(0.75rem, 0.486rem + 1.13vw, 1.5rem);
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .p-about__price-table-data span.is-md {
    margin-left: 10px;
    letter-spacing: 2.56px;
  }
}
.p-about__price-table-data span.is-md.dry {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .p-about__price-table-data span.is-md.dry {
    margin-left: 10px;
    font-size: 24px;
    letter-spacing: 2.56px;
  }
}
.p-about__price-table-data span.is-sm {
  font-size: clamp(0.625rem, 0.493rem + 0.56vw, 1rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) {
  .p-about__price-table-data span.is-sm {
    margin-top: 4px;
    letter-spacing: 1.28px;
  }
}
.p-about__price-table-data span.is-sm.no-flex {
  -webkit-box-flex: initial;
      -ms-flex: initial;
          flex: initial;
}
.p-about__price-table-data span.is-sm.dry {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-about__price-table-data span.is-sm.dry {
    margin-top: 4px;
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}
.p-about__price-table-data span.is-price {
  font-size: clamp(1rem, 0.824rem + 0.75vw, 1.5rem);
  line-height: 1.5;
}
@media screen and (min-width: 900px) {
  .p-about__price-table-data span.is-price {
    letter-spacing: 2.56px;
  }
}

/* お支払い方法 */
.p-about__pay {
  padding: 88px 0 40px;
  background-color: #F7F7F7;
}
@media screen and (min-width: 768px) {
  .p-about__pay {
    padding: 88px 0 80px;
    background-color: #FDFDFD;
  }
}

.p-about__pay-inner {
  max-width: 956px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (min-width: 500px) {
  .p-about__pay-inner {
    padding: 0 22px;
  }
}

.p-about__pay-content {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .p-about__pay-content {
    margin-top: 48px;
  }
}

.p-about__pay-item-wrap {
  margin-top: 17px;
}
@media screen and (min-width: 768px) {
  .p-about__pay-item-wrap {
    margin-top: 0;
  }
}

.p-about__pay-items {
  background-color: #F7F7F7;
  max-width: 914px;
  margin: 25px auto 0;
  padding: 0 15px;
  padding: 0 15px;
  position: relative;
}
@media screen and (min-width: 500px) {
  .p-about__pay-items {
    width: 70%;
  }
}
@media screen and (min-width: 768px) {
  .p-about__pay-items {
    width: auto;
    max-width: 1044px;
    margin: 0 auto;
    padding: 31px 15px 30px;
    background-color: #F7F7F7;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  }
  .p-about__pay-items::before {
    content: "";
    position: absolute;
    top: -140px;
    right: 90px;
    background-image: url(../img/use/kumao/use-kumao1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: inline-block;
    width: 175px;
    height: 140px;
  }
}
@media screen and (min-width: 900px) {
  .p-about__pay-items {
    padding: 31px 32px 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-about__pay-items {
    padding: 31px 40px 30px;
  }
}
@media screen and (min-width: 1024px) {
  .p-about__pay-items {
    padding: 31px 60px 30px;
  }
}
@media screen and (min-width: 1440px) {
  .p-about__pay-items {
    padding: 56px 56px;
  }
}

.p-about__pay-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-about__pay-item-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0px;
    margin-top: 20px;
  }
}

.p-about__pay-desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 800px;
}
@media screen and (min-width: 768px) {
  .p-about__pay-desc {
    font-size: 20px;
  }
}

.p-about__pay-item {
  padding: 10px 18px 20px;
  background-color: #FDFDFD;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-about__pay-item {
    background-color: #FFFFFF;
    width: calc((100% - 40px) / 2);
    padding: 30px 25px 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-about__pay-item {
    padding: 42px 50px 33px;
  }
}

.p-about__pay-item-title {
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.6px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid #002366;
}
@media screen and (min-width: 768px) {
  .p-about__pay-item-title {
    font-size: 24px;
    padding-bottom: 20px;
  }
}

.p-about__pay-item-sub-title {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1.12px;
}
@media screen and (min-width: 768px) {
  .p-about__pay-item-sub-title {
    margin-top: 30px;
  }
}
@media screen and (min-width: 900px) {
  .p-about__pay-item-sub-title {
    font-size: 14px;
  }
}

.p-about__pay-img {
  margin-top: 10px;
}
.p-about__pay-img.is-second {
  padding: 0 12px;
}
@media screen and (min-width: 768px) {
  .p-about__pay-img.is-second {
    padding: 0;
  }
}
.p-about__pay-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* 基本の使い方 */
.p-about__use {
  padding: 97px 0 60px;
  background-color: #FDFDFD;
}
@media screen and (min-width: 768px) {
  .p-about__use {
    padding: 88px 0 40px;
  }
}

.p-about__use-content {
  margin-top: 4px;
}
@media screen and (min-width: 768px) {
  .p-about__use-content {
    margin-top: 44px;
  }
}

.p-about__use-inner {
  max-width: 944px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (min-width: 500px) {
  .p-about__use-inner {
    padding: 0 22px;
  }
}

.p-about__use-list {
  margin-top: 16px;
  padding-left: 7px;
  border-left: 0.5px solid #002366;
}
@media screen and (min-width: 768px) {
  .p-about__use-list {
    padding-left: 21px;
  }
}

.p-about__use-item {
  padding: 26px 20px 10px;
  background-color: #F7F7F7;
}
@media screen and (min-width: 768px) {
  .p-about__use-item {
    padding: 38px 60px 30px;
  }
}
.p-about__use-item:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-about__use-item:not(:first-child) {
    margin-top: 40px;
  }
}
.p-about__use-item.has-icon {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about__use-item.has-icon::before {
    content: "";
    position: absolute;
    top: -155px;
    right: 54px;
    display: inline-block;
    background-image: url(../img/use/kumao/use-kumao2-pc.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 98px;
    height: 165px;
  }
}
@media screen and (min-width: 900px) {
  .p-about__use-item.has-icon::before {
    right: 142px;
    top: -155px;
  }
}

.p-about__use-item-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-about__use-item-title {
    font-size: 34px;
  }
}

.p-about__use-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .p-about__use-list-item {
    gap: 31px;
  }
}
.p-about__use-list-item:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-about__use-list-item:not(:first-child) {
    margin-top: 20px;
  }
}

.p-about__use-list-number {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2.24px;
}
@media screen and (min-width: 768px) {
  .p-about__use-list-number {
    font-size: 32px;
  }
}

.p-about__use-list-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .p-about__use-list-title {
    font-size: 24px;
  }
}

.p-about__use-list-text {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-about__use-list-text {
    margin-top: 0;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 1.6px;
  }
}

.p-about__use-list-body.is-last {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-about__use-list-body.is-last {
    padding-bottom: 20px;
  }
}

/* ご利用前に... */
.p-about__notice {
  padding: 100px 0 40px;
  background-color: #FDFDFD;
}
@media screen and (min-width: 768px) {
  .p-about__notice {
    padding: 230px 0 80px;
  }
}

.p-about__notice-inner {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (min-width: 500px) {
  .p-about__notice-inner {
    padding: 0 22px;
  }
}

.p-about__notice-title-block {
  padding: 10px 16px;
  background-color: #002366;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about__notice-title-block {
    padding: 14px 42px;
  }
}
.p-about__notice-title-block::before {
  content: "";
  position: absolute;
  left: 16px;
  top: -84px;
  background-image: url(../img/use/kumao/use-kumao3.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
  width: 84px;
  height: 94px;
}
@media screen and (min-width: 768px) {
  .p-about__notice-title-block::before {
    top: -170px;
    width: 139px;
    height: 191px;
  }
}

.p-about__notice-title {
  text-align: center;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-about__notice-title {
    font-size: 42px;
  }
}
@media screen and (min-width: 1024px) {
  .p-about__notice-title {
    font-size: 52px;
  }
}

.p-about__notice-sub-text {
  text-align: center;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-about__notice-sub-text {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-about__notice-sub-text {
    font-size: 28px;
  }
}

.p-about__notice-table {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-about__notice-table {
    margin-top: 24px;
  }
}

.p-about__notice-table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-about__notice-table-row:first-of-type .p-about__notice-table-head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 56px;
          flex: 0 0 56px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about__notice-table-row:first-of-type .p-about__notice-table-head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
            flex: 0 0 160px;
  }
}
.p-about__notice-table-row:first-of-type .p-about__notice-table-head:first-of-type {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.p-about__notice-table-row:not(:first-of-type) {
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  .p-about__notice-table-row:not(:first-of-type) {
    margin-top: 9px;
  }
}
.p-about__notice-table-row:not(:first-of-type) .p-about__notice-table-head {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 6px 7px;
}
@media screen and (min-width: 768px) {
  .p-about__notice-table-row:not(:first-of-type) .p-about__notice-table-head {
    padding: 15px 15px 15px 36px;
  }
}

.p-about__notice-table-head {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .p-about__notice-table-head {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .p-about__notice-table-head.is-lg {
    font-size: 32px;
  }
}
.p-about__notice-table-head.is-colored {
  background-color: #F7F7F7;
}

.p-about__notice-table-data {
  font-family: Helvetica, Arial, sans-serif;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 56px;
          flex: 0 0 56px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  padding: 10px 0;
  display: grid;
  place-items: center;
  max-height: 32px;
}
@media screen and (min-width: 768px) {
  .p-about__notice-table-data {
    max-height: 75px;
    font-size: 44px;
    padding: 15px 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
            flex: 0 0 160px;
  }
}
.p-about__notice-table-data.is-high {
  min-height: 54px;
}
@media screen and (min-width: 768px) {
  .p-about__notice-table-data.is-high {
    max-height: initial;
    min-height: 120px;
  }
}
.p-about__notice-table-data.is-ok {
  color: #32CD32;
}
.p-about__notice-table-data.is-ng {
  color: #FF6347;
}

.p-about__notice-annotation-area {
  margin-top: 20px;
}

.p-about__notice-annotation-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-about__notice-annotation-text {
    font-size: 16px;
  }
}

.p-about__notice-annotation-link {
  color: #4D48E7;
}

/* 乾燥温度設定 */
.p-about__setting {
  padding: 40px 0 40px;
  background-color: #F1F7FF;
}
@media screen and (min-width: 768px) {
  .p-about__setting {
    padding: 60px 0 80px;
  }
}

.p-about__setting-inner {
  max-width: 1144px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (min-width: 500px) {
  .p-about__setting-inner {
    padding: 0 22px;
  }
}

.p-about__setting-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
}
.p-about__setting-heading img {
  width: 56px;
}
@media screen and (min-width: 768px) {
  .p-about__setting-heading img {
    width: 100px;
  }
}

.p-about__setting-heading-text {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-about__setting-heading-text {
    font-size: 48px;
  }
}

.p-about__setting-items {
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (min-width: 1024px) {
  .p-about__setting-items {
    padding: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
  }
}

.p-about__setting-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 310px;
          flex: 0 0 310px;
  width: 310px;
  height: 310px;
  background-color: #FFFFFF;
  border-radius: 50%;
  padding: 50px 50px 86px;
}
@media screen and (min-width: 1024px) {
  .p-about__setting-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 330px;
            flex: 0 0 330px;
    width: 330px;
    height: 320px;
  }
}
@media screen and (min-width: 1240px) {
  .p-about__setting-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 360px;
            flex: 0 0 360px;
    height: 350px;
    padding: 30px 60px 57px;
  }
}

.p-about__setting-item-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about__setting-item-title {
    font-size: 32px;
  }
}

.p-about__setting-item-sub {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.p-about__setting-item-text {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 1240px) {
  .p-about__setting-item-text {
    font-size: 15px;
  }
}

/* 1回ご利用の洗濯物量目安 */
.p-about__guide {
  padding: 60px 0 0;
  background-color: #FDFDFD;
}
@media screen and (min-width: 768px) {
  .p-about__guide {
    padding: 100px 0 0;
  }
}

.p-about__guide-inner {
  max-width: 892px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (min-width: 500px) {
  .p-about__guide-inner {
    padding: 0 22px;
  }
}

.p-about__guide-heading {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-about__guide-heading {
    font-size: 42px;
  }
}
@media screen and (min-width: 900px) {
  .p-about__guide-heading {
    font-size: 48px;
  }
}

.p-about__guide-content {
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .p-about__guide-content {
    margin-top: 40px;
  }
}

.p-about__guide-table-wrap {
  max-width: 550px;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .p-about__guide-table-wrap {
    max-width: initial;
    margin: initial;
    padding: 30px;
    background-color: #F7F7F7;
  }
}
.p-about__guide-table-wrap:not(:first-child) {
  margin-top: 44px;
}
@media screen and (min-width: 900px) {
  .p-about__guide-table-wrap:not(:first-child) {
    margin-top: 40px;
  }
}

.p-about__guide-table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-about__guide-table-row:first-of-type .p-about__guide-table-head:first-of-type {
  background-color: #002366;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .p-about__guide-table-row:first-of-type .p-about__guide-table-head:first-of-type {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
            flex: 0 0 300px;
    font-size: 40px;
    height: 90px;
    line-height: 90px;
  }
}
.p-about__guide-table-row:first-of-type .p-about__guide-table-head:not(:first-of-type) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 65px;
          flex: 0 0 65px;
}
@media screen and (min-width: 900px) {
  .p-about__guide-table-row:first-of-type .p-about__guide-table-head:not(:first-of-type) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
    height: 90px;
    line-height: 90px;
  }
}
.p-about__guide-table-row:not(:first-of-type) {
  margin-top: 2px;
}
@media screen and (min-width: 900px) {
  .p-about__guide-table-row:not(:first-of-type) {
    margin-top: 10px;
  }
}

.p-about__guide-table-head,
.p-about__guide-table-data {
  background-color: #F7F7F7;
  font-size: 16px;
}
@media screen and (min-width: 900px) {
  .p-about__guide-table-head,
  .p-about__guide-table-data {
    background-color: #FFFFFF;
  }
}

.p-about__guide-table-head {
  margin-left: 2px;
}
.p-about__guide-table-head:has(span) {
  text-align: center;
}
.p-about__guide-table-head:first-of-type {
  margin-left: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 2px 0;
  padding: 2px 0 2px 4px;
}
@media screen and (min-width: 900px) {
  .p-about__guide-table-head:first-of-type {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
            flex: 0 0 300px;
    font-size: 32px;
    padding: 4px 0 4px 20px;
  }
}
.p-about__guide-table-head.has-margin {
  margin-left: 4px;
}
.p-about__guide-table-head span {
  display: inline-block;
}
.p-about__guide-table-head span.is-lg {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 900px) {
  .p-about__guide-table-head span.is-lg {
    font-size: 56px;
    letter-spacing: 5.6px;
  }
}
.p-about__guide-table-head span.is-sm {
  margin-left: 0.25em;
  font-size: 12px;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .p-about__guide-table-head span.is-sm {
    font-size: 24px;
  }
}

.p-about__guide-table-data {
  margin-left: 2px;
  text-align: center;
  padding: 2px 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 65px;
          flex: 0 0 65px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .p-about__guide-table-data {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
    font-size: 32px;
    height: 60px;
    line-height: 60px;
  }
}
.p-about__guide-table-data.has-margin {
  margin-left: 4px;
}

/* object > component > faw:よくあるご質問
--------------------------------------------- */
.p-faq {
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .p-faq {
    padding: 120px 0 80px;
  }
}

.p-faq__inner {
  max-width: 744px;
  margin: 0 auto;
  padding: 0 22px;
}

.p-faq__lead {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1.28px;
}

.p-faq__list {
  margin-top: 40px;
}

.p-faq__item {
  border-radius: 15px;
  overflow: hidden;
}
.p-faq__item:not(:first-child) {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-faq__item:not(:first-child) {
    margin-top: 24px;
  }
}

.p-faq__term {
  padding: 8px 62px 8px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  background-color: #F1F7FF;
  border-radius: 15px 15px 15px 15px;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-faq__term {
    padding: 8px 78px 8px 16px;
  }
}
.p-faq__term::before, .p-faq__term::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 26px;
  width: 22px;
  height: 1px;
  background-color: #002366;
  -webkit-transition: border-radius 0.5s, -webkit-transform 0.5s;
  transition: border-radius 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, border-radius 0.5s;
  transition: transform 0.5s, border-radius 0.5s, -webkit-transform 0.5s;
}
.p-faq__term::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.p-faq__term.is-open {
  border-radius: 15px 15px 0 0;
}
.p-faq__term.is-open::after {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}

.p-faq__q {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #002366;
  background-color: #FFFFFF;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.44px;
}

.p-faq__term-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.64px;
}

.p-faq__desc {
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  background-color: #F2F2F2;
  opacity: 0;
  line-height: 0;
  height: 0;
  -webkit-transition: padding 0.5s, line-height 0.5s, opacity 0.5s, height 0.5s;
  transition: padding 0.5s, line-height 0.5s, opacity 0.5s, height 0.5s;
}
.p-faq__desc.is-open {
  padding: 8px 16px;
  opacity: 1;
  height: initial;
  line-height: initial;
}

.p-faq__a {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: #2E73F9;
  color: #FFFFFF;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.44px;
}

.p-faq__desc-text {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.64px;
}

/* object > project > archive-newsニュース&コラム一覧ページ
--------------------------------------------- */
.p-archive-news {
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .p-archive-news {
    padding: 120px 0;
  }
}

.p-archive-news__inner {
  max-width: 1154px;
  margin: 0 auto;
  padding: 0 22px;
}

.p-archive-news__tab {
  max-width: 1242px;
  margin: 0 auto;
  padding: 0 22px;
  text-align: center;
}

.p-archive-news__articles {
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0 28px;
  max-width: 500px;
}
@media screen and (min-width: 768px) {
  .p-archive-news__articles {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 60px auto 0;
    max-width: initial;
    padding: 0;
  }
}
@media screen and (min-width: 900px) {
  .p-archive-news__articles {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1240px) {
  .p-archive-news__articles {
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-archive-news__pagination {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-archive-news__pagination {
    margin-top: 60px;
  }
}

/* object > project > ニュース&コラム詳細ページ
--------------------------------------------- */
.p-single-news {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "游ゴシック", "Yu Gothic", sans-serif;
  padding: 40px 0 60px;
}
@media screen and (min-width: 768px) {
  .p-single-news {
    padding: 80px 0 120px;
  }
}

.p-single-news__inner {
  max-width: 844px;
  margin: 0 auto;
  padding: 0 22px;
}

.p-single-news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.p-single-news__date {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.32px;
}

.p-single-news__tag {
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.6;
  padding: 5px 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 110px;
          flex: 0 0 110px;
  text-align: center;
}
.p-single-news__tag.p-single-news__tag--news {
  background-color: #018BA7;
}
.p-single-news__tag.p-single-news__tag--column {
  background-color: #6899FA;
}
.p-single-news__tag.p-single-news__tag--campaign {
  background-color: #0B408B;
}

.p-single-news__content-title {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-single-news__content-title {
    margin-top: 20px;
    font-size: 32px;
  }
}

.p-single-news__thumbnail {
  margin-top: 20px;
  aspect-ratio: 280/200;
}
@media screen and (min-width: 768px) {
  .p-single-news__thumbnail {
    height: auto;
    aspect-ratio: 800/400;
  }
}
.p-single-news__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-single-news__pager {
  margin-top: 60px;
}

.p-single-news__content {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 35, 102, 0.2);
}
.p-single-news__content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 1.28px;
}
@media screen and (min-width: 768px) {
  .p-single-news__content p {
    font-size: 18px;
    letter-spacing: 2.88px;
  }
}
.p-single-news__content p + p {
  margin-top: 1em;
}
.p-single-news__content strong {
  font-weight: 700;
}

/* object > component > ニュース&コラムのカテゴリー一覧ページ
--------------------------------------------- */
/* object > project > archive-shop
店舗一覧ページ
--------------------------------------------- */
.p-archive-shop {
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .p-archive-shop {
    padding: 80px 0;
  }
}

.p-archive-shop__inner {
  max-width: 824px;
  margin: 0 auto;
  padding: 0 22px;
}

.p-archive-shop__cards {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-archive-shop__cards {
    gap: 40px;
  }
}

.p-archive-shop__list {
  margin-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -6px;
  margin-right: -6px;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .p-archive-shop__list {
    margin-top: 90px;
    margin-left: 0;
    margin-right: 0;
  }
}

.p-archive-shop__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
.p-archive-shop__item img {
  width: 60px;
}

.p-archive-shop__item-text {
  font-size: 16px;
  line-height: 1.6;
}

.p-archive-shop__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.64px;
}

.p-archive-shop__btn-wrap {
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-archive-shop__btn-wrap {
    margin-top: 80px;
  }
}

/* object > project > 店舗詳細ページ
--------------------------------------------- */
.p-single-shop {
  padding: 32px 0 40px;
}
@media screen and (min-width: 768px) {
  .p-single-shop {
    padding: 80px 0;
  }
}

.p-single-shop__info-inner {
  max-width: 744px;
  margin: 0 auto;
  padding: 0 22px;
}
@media screen and (min-width: 1024px) {
  .p-single-shop__info-inner {
    max-width: 1144px;
  }
}

.p-single-shop__info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .p-single-shop__info-wrap {
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media screen and (min-width: 1024px) {
  .p-single-shop__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 26px;
  }
}

@media screen and (min-width: 1024px) {
  .p-single-shop__card {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}

.p-single-shop__bottom {
  margin-left: -22px;
  margin-right: -22px;
  height: 200px;
}
@media screen and (min-width: 768px) {
  .p-single-shop__bottom {
    margin-left: 0;
    margin-right: 0;
    height: 374px;
  }
}
.p-single-shop__bottom .swiper {
  height: 100%;
}
.p-single-shop__bottom .swiper-wrapper {
  height: 100%;
}
.p-single-shop__bottom .swiper-slide {
  height: 100%;
}
.p-single-shop__bottom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-single-shop__gallery {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-single-shop__gallery {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 518px;
            flex: 0 0 518px;
    height: 187px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 18px;
  }
  .p-single-shop__gallery .swiper {
    height: 100%;
    margin-left: initial !important;
    margin-right: initial !important;
  }
  .p-single-shop__gallery .swiper-wrapper {
    width: 100%;
    height: 100%;
  }
  .p-single-shop__gallery .swiper-slide {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
            flex: 0 0 250px;
    height: 100%;
  }
  .p-single-shop__gallery img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.swiper-button-prev,
.swiper-button-next {
  top: 0;
  margin-top: 0;
  width: 42px;
  height: 100%;
  background-color: #D9D9D9;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (max-width: 1024px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #D1D1D1;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: none;
}
.swiper-button-prev::before,
.swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #FFFFFF;
  display: inline-block;
  width: 35px;
  height: 30px;
}

.swiper-button-prev {
  left: 0;
}
.swiper-button-prev::before {
  left: 4px;
  -webkit-mask-image: url(../img/store/icon/store-icon-triangle-left.svg);
          mask-image: url(../img/store/icon/store-icon-triangle-left.svg);
}

.swiper-button-next {
  right: 0;
}
.swiper-button-next::before {
  right: 4px;
  -webkit-mask-image: url(../img/store/icon/store-icon-triangle-right.svg);
          mask-image: url(../img/store/icon/store-icon-triangle-right.svg);
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 5px;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 8px;
  background-color: #D9D9D9;
  -webkit-filter: drop-shadow(0px 1px 0px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 1px 0px rgba(0, 0, 0, 0.25));
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #002366 !important;
}

.p-single-shop__card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-single-shop__card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .p-single-shop__card-title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5em;
  }
}

.p-single-shop__card-title-en {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2px;
}
@media screen and (min-width: 1024px) {
  .p-single-shop__card-title-en {
    font-size: 20px;
  }
}

.p-single-shop__card-title-jp {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.p-single-shop__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.p-single-shop__status img {
  width: 45px;
}

.p-single-shop__status-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.p-single-shop__card-body {
  margin-top: 16px;
}

.p-single-shop__card-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-single-shop__card-list-item:not(:first-child) {
  margin-top: 8px;
}

.p-single-shop__card-term,
.p-single-shop__card-desc {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.8px;
}

.p-single-shop__card-term {
  font-weight: 700;
}

.p-single-shop__card-desc {
  margin-left: 0.5em;
}

.p-single-shop__info-map {
  aspect-ratio: 375/200;
  margin-left: -22px;
  margin-right: -22px;
}
@media screen and (min-width: 768px) {
  .p-single-shop__info-map {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-single-shop__info-map {
    margin-top: 40px;
    aspect-ratio: 1100/350;
  }
}
.p-single-shop__info-map iframe {
  width: 100%;
  height: 100%;
}

.p-single-shop__gallery-photo {
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-single-shop__gallery-photo:hover {
  opacity: 0.7;
}

/* Time */
.p-single-shop__time {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-single-shop__time {
    margin-top: 160px;
  }
}

.p-single-shop__time-inner {
  max-width: 1144px;
  margin: 0 auto;
  padding: 0 22px;
}

.p-single-shop__time-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-single-shop__time-heading-en {
  text-transform: uppercase;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.p-single-shop__time-heading-jp {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.32px;
}

.p-single-shop__time-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-single-shop__time-status {
    margin-top: 11px;
  }
}

.p-single-shop__time-date,
.p-single-shop__time-hours {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.p-single-shop__time-reload {
  margin-top: 40px;
  text-align: center;
}

.p-single-shop__time-item:not(:first-child) {
  margin-top: 40px;
}

.p-single-shop__time-items {
  margin-top: 40px;
}

.p-single-shop__time-item-title {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
  margin-left: -22px;
  margin-right: -22px;
}
@media screen and (min-width: 1024px) {
  .p-single-shop__time-item-title {
    margin-left: initial;
    margin-right: initial;
  }
}
.p-single-shop__time-item-title.p-single-shop__time-item-title--yellow {
  background-color: #FFE253;
}
.p-single-shop__time-item-title.p-single-shop__time-item-title--blue {
  background-color: #C0DBFF;
}

.p-single-shop__time-cards {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  row-gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-single-shop__time-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    row-gap: 24px;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-single-shop__time-cards {
    max-width: initial;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1240px) {
  .p-single-shop__time-cards {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    row-gap: 32px;
  }
}

.p-single-shop__time-card {
  border: 1px solid #002366;
}

.p-single-shop__time-card-head {
  padding: 0 16px;
  border-bottom: 1px solid #002366;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.p-single-shop__time-card-body {
  padding: 16px 45px 16px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-single-shop__time-card-status {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 96px;
          flex: 0 0 96px;
  padding: 8px 0;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #FFFFFF;
}
.p-single-shop__time-card-status.is-empty {
  background-color: #2E73F9;
}
.p-single-shop__time-card-status.is-use {
  background-color: #D05E3B;
}

.p-single-shop__time-card-title {
  margin-left: 16px;
  font-size: 16px;
  line-height: 1.6;
}

.p-single-shop__time-card-hour {
  margin-left: 16px;
  font-size: 16px;
  line-height: 1.6;
  margin-left: auto;
}
.p-single-shop__time-card-hour span.is-number {
  font-size: 50px;
  line-height: 1;
  font-weight: 700;
}

.p-single-shop__time-btn {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-single-shop__time-btn {
    margin-top: 80px;
  }
}

/* object > project > 採用情報ページ
--------------------------------------------- */
.p-recruit__wrap {
  max-width: 1015px;
  margin: 0 auto;
  padding-inline: 22.5px;
  padding-bottom: clamp(60px, 2.43rem + 5.63vw, 120px);
}

.p-recruit__heading {
  text-align: center;
  font-size: clamp(32px, 1.5rem + 2.22vw, 56px);
  font-weight: 700;
  line-height: 1.6;
}

.p-recruit__top-text {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(16px, 0.917rem + 0.37vw, 20px);
  font-weight: 500;
  line-height: 1.6;
  padding-top: clamp(20px, 0.417rem + 3.7vw, 60px);
}

.p-recruit__tab {
  padding-top: clamp(40px, 2.083rem + 1.85vw, 60px);
}

.p-recruit-manager__wrap {
  display: none;
}
.p-recruit-manager__wrap.is-active {
  display: block;
  -webkit-animation: fade 0.5s ease;
          animation: fade 0.5s ease;
}

@-webkit-keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-recruit-manager__content,
.p-recruit-consultant__content {
  padding-top: clamp(60px, 3.31rem + 1.88vw, 80px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-recruit-manager__content,
  .p-recruit-consultant__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 52px;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-manager__img,
  .p-recruit-consultant__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 272px;
            flex: 0 0 272px;
  }
}
.p-recruit-manager__img img,
.p-recruit-consultant__img img {
  width: 100%;
  height: auto;
}

.p-recruit-content__text {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(16px, 0.912rem + 0.38vw, 20px);
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .p-recruit-content__text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 360px;
            flex: 0 0 360px;
  }
}

.p-recruit-manager__table {
  margin-top: clamp(40px, 2.06rem + 1.88vw, 60px);
}

.recruit-table {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(14px, 0.784rem + 0.45vw, 18px);
  font-weight: 500;
  line-height: 1.6;
}

.recruit-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-top: 0.3px solid #002366;
  padding-block: clamp(10px, 0.405rem + 0.94vw, 20px);
}
.recruit-table__row:nth-of-type(6) {
  border-bottom: 0.3px solid #002366;
}

.recruit-table__header {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 90px;
          flex: 0 0 90px;
}
@media screen and (min-width: 900px) {
  .recruit-table__header {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 210px;
            flex: 0 0 210px;
  }
}

.recruit-table__contents {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.recruit-table__data-content {
  display: block;
}

.recruit-table__data-bold {
  display: block;
  font-weight: 700;
}

.recruit-table__data {
  display: block;
}

.list-disc {
  list-style: disc;
  display: list-item;
}
.list-disc::marker {
  color: #002366;
  font-size: 0.7em;
}
.list-disc span {
  vertical-align: -0.25em;
}

.p-recruit__heading {
  margin-top: clamp(40px, 1.62rem + 3.76vw, 80px);
}

.p-recruit__heading-sub {
  margin-top: clamp(10px, 0.405rem + 0.94vw, 20px);
  text-align: center;
}

.p-recruit__flow {
  margin-top: clamp(50px, 2.025rem + 4.69vw, 100px);
}

.recruit-form {
  margin-top: clamp(60px, 2.87rem + 3.76vw, 100px);
  max-width: 845px;
  padding-inline: 22.5px;
  margin-inline: auto;
}

.recruit-form-item {
  margin-top: 30px;
}
.recruit-form-item:nth-of-type(1) {
  margin-top: 0;
}
.recruit-form-item:nth-of-type(1) .wpcf7-form-control-wrap {
  background-color: transparent;
}
.recruit-form-item:nth-of-type(1) .wpcf7-form-control-wrap .wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .recruit-form-item:nth-of-type(1) .wpcf7-form-control-wrap .wpcf7-form-control {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.recruit-form-item:nth-of-type(6) .wpcf7-form-control-wrap, .recruit-form-item:nth-of-type(7) .wpcf7-form-control-wrap {
  background-color: transparent;
}

.recruit-form-item-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.recruit-form-item-label-required {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 8px;
  background-color: #D33365;
  border-radius: 2px;
  margin-left: 12px;
}

.wpcf7-form-control-wrap {
  display: inline-block;
  margin-top: 12px;
  width: 100%;
  background-color: #f4f4f4;
}
.wpcf7-form-control-wrap:nth-of-type(6), .wpcf7-form-control-wrap:nth-of-type(7) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4px;
}
.wpcf7-form-control-wrap input.wpcf7-not-valid {
  border: 1px solid #d33365;
}
.wpcf7-form-control-wrap input.wpcf7-not-valid:focus {
  outline: none;
}
.wpcf7-form-control-wrap .custom-file-upload {
  width: auto;
}
.wpcf7-form-control-wrap .custom-file-upload:focus {
  outline: 1px solid #1391E6;
}
.wpcf7-form-control-wrap .custom-file-upload.is-error {
  border: 1px solid #d33365;
}

.wpcf7-not-valid-tip {
  background-color: #fff;
}

.file-error-message {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  display: block;
}

.wpcf7-form-control {
  width: 100%;
  padding: 14px 20px;
  border-radius: 2px;
}
.wpcf7-form-control::-webkit-input-placeholder {
  color: #BDBDBD;
}
.wpcf7-form-control::-moz-placeholder {
  color: #BDBDBD;
}
.wpcf7-form-control:-ms-input-placeholder {
  color: #BDBDBD;
}
.wpcf7-form-control::-ms-input-placeholder {
  color: #BDBDBD;
}
.wpcf7-form-control::placeholder {
  color: #BDBDBD;
}
.wpcf7-form-control:focus {
  outline: 1px solid #2e2e2e;
}
.wpcf7-spinner {
  display: none;
}

.wpcf7-previous {
  display: block !important;
}

.wpcf7-list-item {
  cursor: pointer;
}

.form-required-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .form-required-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
  }
}

.custom-file-upload {
  width: clamp(188px, 11.523rem + 1.14vw, 198px);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: clamp(20px, 1.023rem + 1.14vw, 30px);
  padding-block: 14px;
  padding-inline: clamp(10px, 0.398rem + 1.14vw, 20px);
  background-color: #f4f4f4;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.custom-file-upload input[type=file] {
  display: none;
}
.custom-file-upload:focus {
  outline: 1px solid #2e2e2e;
}

.custom-file-upload-text-sub {
  color: #BDBDBD;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.recruit-form-item-label-any {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 8px;
  background-color: #002366;
  border-radius: 2px;
  margin-left: 12px;
}

.recruit-form-privacy {
  margin-top: clamp(40px, 2.06rem + 1.88vw, 60px);
  text-align: center;
}

.recruit-form-submit {
  margin-top: 20px;
  text-align: center;
  width: 264px;
  margin-inline: auto;
}

.p-recruit-consultant__wrap {
  display: none;
}
.p-recruit-consultant__wrap.is-active {
  display: block;
  -webkit-animation: fade 0.5s ease;
          animation: fade 0.5s ease;
}

.p-recruit-consultant__table {
  margin-top: clamp(40px, 2.06rem + 1.88vw, 60px);
}

.wpcf7-previous {
  display: block;
}

.confirm-form-wrap {
  display: inline-block;
  margin-top: 12px;
  width: 100%;
  background-color: #f4f4f4;
  padding: 14px 20px;
  border-radius: 2px;
}

.submit-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wpcf7-form .wpcf7-response-output {
  color: #d33365;
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  padding: 14px 20px !important;
  border: none !important;
  border-radius: 2px;
  background: rgba(211, 51, 101, 0.1);
  margin: 0 !important;
}

/* object > project > オーナー募集ページ
--------------------------------------------- */
.p-owner__wrap {
  padding-inline: 22px;
  padding-bottom: clamp(32px, 0.909rem + 5.45vw, 80px);
}
@media screen and (min-width: 768px) {
  .p-owner__wrap {
    padding-inline: clamp(22.5px, -3.276rem + 23.41vw, 228.5px);
  }
}

.p-recruit-confirm__inner {
  padding: 0 22px;
}

.p-owner-text {
  margin-top: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 0 13px;
}
@media screen and (min-width: 768px) {
  .p-owner-text {
    margin-top: 48px;
  }
}

.p-owner__flow {
  margin-top: clamp(40px, 1.227rem + 6.36vw, 96px);
}

.owner-form {
  margin-top: clamp(60px, 2.87rem + 3.76vw, 100px);
  max-width: 845px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .owner-form {
    padding-inline: 22.5px;
  }
}

.owner-form-item {
  margin-top: 30px;
}
.owner-form-item:nth-of-type(1) {
  margin-top: 0;
}
.owner-form-item:nth-of-type(1) .wpcf7-form-control-wrap {
  background: transparent;
}
.owner-form-item:nth-of-type(6) .wpcf7-form-control-wrap .select-wrap {
  position: relative;
}
.owner-form-item:nth-of-type(6) .wpcf7-form-control-wrap .select-wrap::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-left: 2px solid #002366;
  border-top: 2px solid #002366;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
  pointer-events: none;
}
.owner-form-item:nth-of-type(6) .wpcf7-form-control-wrap .select-wrap select.wpcf7-not-valid {
  border: 1px solid #d33365;
}
@media screen and (min-width: 768px) {
  .owner-form-item:nth-of-type(6) .wpcf7-form-control-wrap {
    width: 312px;
  }
}

.wpcf7-form-control-wrap input[type=radio] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.wpcf7-form-control-wrap input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.wpcf7-form-control-wrap:focus-within .wpcf7-list-item-label::before {
  outline: 1px solid #1391E6;
}

.owner-radio {
  background-color: transparent;
}

.wpcf7-list-item {
  cursor: pointer;
}
.wpcf7-list-item label {
  cursor: pointer;
}

.wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
  padding: 0;
}

.wpcf7-list-item-label {
  position: relative;
  padding-left: 32px;
}
.wpcf7-list-item-label::before {
  content: "";
  width: 24px;
  height: 24px;
  border: 1px solid #002366;
  border-radius: 50%;
  position: absolute;
  top: -2px;
  left: 0;
}
.wpcf7-list-item-label::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #1391E6;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 6px;
  opacity: 0;
}
.owner-form-item-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.owner-form-item-label-required {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 8px;
  background-color: #D33365;
  border-radius: 2px;
  margin-left: 12px;
}

.form-select {
  cursor: pointer;
}

.wpcf7-select {
  cursor: pointer;
}

.owner-form-item-label-any {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 8px;
  background-color: #002366;
  border-radius: 2px;
  margin-left: 12px;
}

.owner-form-privacy {
  margin-top: clamp(40px, 2.06rem + 1.88vw, 60px);
  text-align: center;
}

.owner-form-submit {
  margin-top: 20px;
  text-align: center;
  width: 264px;
  margin-inline: auto;
}

/* object > component > confirm:お問い合わせ確認ページ
--------------------------------------------- */
.p-recruit-confirm__wrap {
  margin-top: 24px;
  padding-bottom: clamp(32px, 0.944rem + 4.51vw, 80px);
}
@media screen and (min-width: 768px) {
  .p-recruit-confirm__wrap {
    margin-top: 40px;
  }
}

.p-recruit-confirm__inner {
  padding: 0 18px;
}

.p-recruit-confirm__wrap-text {
  margin-top: clamp(10px, 0.357rem + 1.19vw, 20px);
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 37px;
}
.p-recruit-confirm__flow {
  margin-top: clamp(60px, 2.679rem + 4.76vw, 100px);
}

.p-form-confirm__items {
  margin-top: clamp(40px, 1.268rem + 5.26vw, 96px);
}

.form-confirm-item {
  margin-top: 30px;
}
.form-confirm-item:nth-of-type(1) {
  margin-top: 0;
}

.form-confirm-item__label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.form-confirm-item__label-required {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 8px;
  background-color: #D33365;
  border-radius: 2px;
  margin-left: 12px;
}

.form-confirm-item__value {
  margin-top: 12px;
  padding: 14px 20px;
  background: #f4f4f4;
  color: #bdbdbd;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

.form-confirm-item__label-any {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 8px;
  background-color: #002366;
  border-radius: 2px;
  margin-left: 12px;
}

.form-confirm__text {
  margin-top: clamp(32px, 1.824rem + 0.75vw, 40px);
  color: #282828;
  font-size: clamp(14px, 0.831rem + 0.19vw, 16px);
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.form-confirm__submit {
  margin-top: 20px;
  text-align: center;
}
.form-confirm__submit .wpcf7-form-control {
  width: 264px;
}

/* object > project > サンクスページ
--------------------------------------------- */
.p-owner-thanks__wrap {
  max-width: 880px;
  margin-inline: auto;
  padding-bottom: clamp(80px, 3.929rem + 4.76vw, 120px);
}

.p-owner-thanks__flow {
  margin-top: clamp(40px, 1.429rem + 4.76vw, 80px);
  padding-inline: 22.5px;
}

.p-thanks__title {
  margin-top: clamp(40px, 1.429rem + 4.76vw, 80px);
  text-align: center;
  font-size: clamp(20px, 0.286rem + 4.29vw, 56px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.8px;
}

.p-thanks__sub {
  display: block;
  text-align: center;
  font-size: clamp(14px, 0.393rem + 2.14vw, 32px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.56px;
  margin-top: 12px;
}

.p-thanks__mail-cause-wrap {
  max-width: 880px;
  margin-inline: 47.5px;
  margin-top: clamp(30px, 1.071rem + 3.57vw, 60px);
  border-radius: 10px;
  border: 0.5px solid #002366;
  padding-top: clamp(14px, 0.446rem + 1.9vw, 30px);
  padding-bottom: clamp(20px, 0.714rem + 2.38vw, 40px);
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (min-width: 768px) {
  .p-thanks__mail-cause-wrap {
    padding-left: 100px;
  }
}

.p-thanks__mail-cause-title {
  font-size: clamp(14px, 0.714rem + 0.71vw, 20px);
  font-weight: 700;
  line-height: 1.6;
  padding-left: 2em;
}
@media screen and (min-width: 768px) {
  .p-thanks__mail-cause-title {
    padding-left: 1em;
  }
}

.p-thanks__mail-cause-lists {
  margin-top: 14px;
  margin-left: 1em;
}
@media screen and (min-width: 768px) {
  .p-thanks__mail-cause-lists {
    margin-top: 10px;
  }
}

.p-thanks__mail-cause-list {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.56px;
  list-style: disc;
}
@media screen and (min-width: 768px) {
  .p-thanks__mail-cause-list {
    font-size: 20px;
  }
}

.p-thanks__mail-cause-text {
  padding-inline: 55.5px;
  text-align: center;
  margin-top: clamp(30px, 1.339rem + 2.38vw, 50px);
  font-size: clamp(14px, 0.714rem + 0.71vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: clamp(0.56px, -0.004rem + 0.17vw, 2px);
}
@media screen and (min-width: 768px) {
  .p-thanks__mail-cause-text {
    line-height: 2.5;
  }
}

.p-owner-thanks__button {
  margin-top: 20px;
  text-align: center;
}

/* object > project > 404ページ
--------------------------------------------- */
.p-404 {
  padding: 140px 0 40px;
  background-color: #D8E6FD;
}
@media screen and (min-width: 768px) {
  .p-404 {
    padding: 160px 0 80px;
  }
}

.p-404__inner {
  max-width: 698px;
  margin: 0 auto;
  padding: 0 22px;
}

.p-404__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-404__heading-number {
  font-size: 64px;
  font-weight: 700;
  line-height: 50px;
}
@media screen and (min-width: 768px) {
  .p-404__heading-number {
    font-size: 93px;
    line-height: 1.2;
  }
}

.p-404__heading-en {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 50px;
}

.p-404__message {
  margin-top: 8px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 50px;
}
@media screen and (min-width: 768px) {
  .p-404__message {
    font-size: 30px;
  }
}

.p-404__textarea {
  margin-top: 8px;
}

.p-404__text {
  font-size: 16px;
  line-height: 30px;
  text-align: center;
}

.p-404__btn-wrap {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-404__btn-wrap {
    margin-top: 48px;
  }
}

/* object > project > ヘッダー
--------------------------------------------- */
.p-header {
  width: 100%;
  z-index: 99;
}

.p-header__inner {
  height: inherit;
}

.p-header__logo {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: clamp(26px, 1.333rem + 1.3vw, 40px);
  font-style: normal;
  font-weight: 600;
  line-height: 1.6;
}
.p-header__logo a {
  color: #0c328b;
}

.p-header__hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* object > project > フッター
--------------------------------------------- */
.p-footer {
  width: 100%;
  color: #F7F7F7;
}

.p-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .p-footer__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-footer__logo {
  text-align: center;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.96px;
}

.p-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.3px;
  gap: 31px;
}
@media screen and (min-width: 1024px) {
  .p-footer-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-footer-subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 31px;
}
@media (max-width: 400px) {
  .p-footer-subnav {
    gap: 28px;
  }
}
@media screen and (max-width: 360px) {
  .p-footer-subnav {
    gap: 20px;
  }
}

.p-footer-subnav__link {
  font-family: Helvetica, Arial, sans-serif;
  display: block;
  line-height: 1;
  position: relative;
}
.p-footer-subnav__link::before {
  content: "";
  background-color: #FFFFFF;
  bottom: -4px;
  height: 2px;
  position: absolute;
  left: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}
.p-footer-subnav__link:hover::before {
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
}
@media screen and (min-width: 768px) {
  .p-footer-subnav__link:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

.p-copyright {
  margin-top: clamp(243px, 14.938rem + 1.11vw, 255px);
  text-align: center;
  padding-bottom: 10px;
}

.p-copyright__text {
  font-size: 13px;
  font-weight: 400;
  line-height: 120%;
}

/* object > component > ページ共通お電話のCTA
--------------------------------------------- */
/* object > component > ページ共通お電話のCTA(ブラッシュアップ版)
--------------------------------------------- */
.l-cta {
  position: relative;
  background-color: #0c328b;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .l-cta {
    padding-block: clamp(50px, 0.982rem + 4.46vw, 80px);
    padding-inline: clamp(100px, -2.321rem + 17.86vw, 220px);
  }
}
.l-cta.l-cta--top {
  background: rgba(12, 50, 139, 0.8);
}

.l-cta__top {
  position: relative;
  padding: 0;
  background: rgba(12, 50, 139, 0.8);
}
@media screen and (min-width: 768px) {
  .l-cta__top {
    padding-block: clamp(50px, 0.982rem + 4.46vw, 80px);
    padding-inline: clamp(100px, -2.321rem + 17.86vw, 220px);
  }
}

.p-cta {
  position: relative;
  margin-top: -5px;
  background-color: #F1F7FF;
  padding: clamp(2.5rem, 2.214rem + 1.22vw, 3.313rem) 0 clamp(2.5rem, 2.324rem + 0.75vw, 3rem);
}
@media screen and (min-width: 768px) {
  .p-cta {
    margin-top: 0;
  }
}

/* 2026/1/10 改修 */
.p-cta__contents {
  max-width: 1000px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .p-cta__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}

.p-cta__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-cta__contact {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.c-top-cta__heading {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-top-cta__heading-main {
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(25px, 0.917rem + 2.87vw, 56px);
  font-weight: 700;
  line-height: 1.6;
}

.c-top-cta__heading-sub {
  font-size: clamp(14px, 0.667rem + 0.93vw, 24px);
  font-weight: 700;
  margin-top: -11px;
}

.p-cta__text {
  margin-top: clamp(4px, 0.083rem + 0.74vw, 12px);
  font-size: clamp(14px, 0.792rem + 0.37vw, 18px);
  font-weight: 500;
  line-height: 140%;
}
@media screen and (min-width: 768px) {
  .p-cta__text {
    line-height: 1.6;
  }
}

.p-cta__img img {
  width: clamp(63px, 2.875rem + 4.72vw, 114px);
}

.p-cta__tel {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px;
}
@media screen and (min-width: 768px) {
  .p-cta__tel {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
  }
}

.p-cta__tel-main {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 500px) {
  .p-cta__tel-main {
    font-size: clamp(32px, 2.333rem + 1.3vw, 56px);
  }
}
@media screen and (min-width: 768px) {
  .p-cta__tel-main {
    line-height: 1.6;
  }
}

.p-cta__tel-text {
  font-size: clamp(14px, 0.792rem + 0.37vw, 18px);
  font-weight: 500;
}
.p-cta__tel-text br {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-cta__tel-text br {
    display: block;
  }
}

/* NEW */
.p-cta__new-character {
  display: none;
  width: 63px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-cta__new-character {
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
            flex: 0 0 160px;
    width: initial;
    margin-inline: initial;
  }
}
.p-cta__new-character img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-cta__new-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-cta__new-heading {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-cta__new-heading .jp {
  font-size: clamp(1rem, 0.912rem + 0.38vw, 1.25rem);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.32px;
}
@media screen and (min-width: 768px) {
  .p-cta__new-heading .jp {
    margin-inline: auto;
    line-height: 1.2;
    text-align: center;
  }
}
.p-cta__new-heading .en {
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(2rem, 1.472rem + 2.25vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-cta__new-heading .en {
    line-height: 1;
  }
}

.p-cta__new-msg {
  max-width: 315px;
  margin: 4px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-cta__new-msg {
    max-width: initial;
    margin: 8px auto 0;
    gap: initial;
  }
}

.p-cta__new-msg-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-cta__new-msg-text {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    font-size: 16px;
  }
}

.p-cta__new-tel {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-cta__new-tel {
    margin-top: 19px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-cta__new-tel-number {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 900px) {
  .p-cta__new-tel-number {
    font-size: 56px;
  }
}

.p-cta__new-tel-notice {
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-cta__new-tel-notice {
    line-height: 1.2;
  }
}

.p-cta__new-sp-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 69px;
          flex: 0 0 69px;
}
@media screen and (min-width: 768px) {
  .p-cta__new-sp-icon {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    display: none;
  }
}
.p-cta__new-sp-icon img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* object > project > フォーム内のモーダルウィンドウ
--------------------------------------------- */
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}

.form-checkbox__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  padding-left: 36px;
  cursor: pointer;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  border: 1px solid #BDBDBD;
}
.form-checkbox__text::after {
  width: 18px;
  height: 7px;
  border-left: 1px solid #002366;
  border-bottom: 1px solid #002366;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 4px;
  top: 2px;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .form-checkbox__text::after {
    top: 4px;
  }
}

.form-checkbox__link {
  color: #1391E6;
  text-decoration: underline;
}
.form-checkbox__link:hover {
  text-decoration: none;
}

.privacy-modal {
  text-align: initial;
}
.privacy-modal::-ms-backdrop {
  background: rgba(38, 38, 38, 0.5);
}
.privacy-modal::backdrop {
  background: rgba(38, 38, 38, 0.5);
}

.privacy-modal__content {
  z-index: 999;
  position: fixed;
  inset: 0;
  margin: auto;
  overflow: auto;
  width: clamp(300px, 2.083rem + 74.07vw, 1100px);
  max-height: calc(100% - 100px);
  border-radius: 30px;
  background-color: #f8f8f8;
  border: none;
  overscroll-behavior-y: none;
  padding: 16px;
}

.privacy-modal__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: sticky;
  top: 0;
}

.privacy-modal__close-icon {
  position: relative;
  width: 35.8px;
  height: 35.8px;
}

.modal-close__bar {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 26px;
  height: 2px;
  background-color: #BDBDBD;
}
.modal-close__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal-close__bar:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.privacy-modal__body {
  padding-inline: clamp(20px, -0.188rem + 6.39vw, 89px);
  margin-top: 22px;
  margin-bottom: 120px;
  color: #000000;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.32px;
}

.privacy-modal__title {
  font-size: 20px;
  font-weight: 700;
}

.privacy-modal__lists1 {
  margin-top: 30px;
}

.privacy-modal__list1:nth-child(n+2) {
  margin-top: 30px;
}

.privacy-list1__title {
  font-weight: 700;
}

.privacy-modal__lists2 {
  list-style-type: decimal;
  list-style-position: inside;
}

.privacy-list2 {
  text-indent: -1em;
  padding-left: 1em;
}

.privacy-modal__lists3 {
  list-style-type: lower-latin;
  list-style-position: inside;
}

.privacy-list3 {
  text-indent: -1em;
  padding-left: 1em;
}

.privacy-modal__lists4 {
  list-style-type: lower-roman;
  list-style-position: inside;
}

.privacy-list4 {
  text-indent: -1em;
  padding-left: 1em;
}

/* object > component > 全ページ共通のドロワーメニュー
--------------------------------------------- */
.p-drawer-content {
  width: clamp(280px, 11.25rem + 27.78vw, 580px);
  height: 100vh;
  background: #0c328b;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 101;
  border-top-left-radius: 32px;
  padding-top: clamp(70px, 3.715rem + 2.82vw, 100px);
  padding-right: clamp(33px, -0.104rem + 9.63vw, 137px);
  padding-left: 10px;
  padding-bottom: 20px;
  text-align: right;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  visibility: hidden;
}
.p-drawer-content.is-checked {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  visibility: visible;
}

.p-drawer-content__menu {
  padding-top: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  height: 100%;
  overflow-y: auto;
}

.p-drawer-content__link {
  display: inline-block;
}
.p-drawer-content__link a {
  font-family: Helvetica, Arial, sans-serif;
  display: inline-block;
  color: #FFFFFF;
  font-size: clamp(18px, 1.083rem + 0.19vw, 20px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: clamp(0.72px, 0.043rem + 0.01vw, 0.8px);
  position: relative;
}
.p-drawer-content__link a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.p-drawer-content__link a::after {
  content: "";
  background-color: #FFFFFF;
  bottom: -4px;
  height: 2px;
  position: absolute;
  left: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}
.p-drawer-content__link:nth-of-type(8) a {
  color: #002366;
  background-color: #FFFFFF;
  padding: 8px 32px;
  white-space: nowrap;
}
.p-drawer-content__link:nth-of-type(8) a::after {
  display: none;
}
.p-drawer-content__link:nth-of-type(9) a {
  color: #F8F8F8;
  background-color: #35A5F5;
  padding: 8px 32px;
  white-space: nowrap;
}
.p-drawer-content__link:nth-of-type(9) a::after {
  display: none;
}

.p-drawer__bg {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: opacity 0.5s ease, visibility 0s 0.5s;
  transition: opacity 0.5s ease, visibility 0s 0.5s;
}
.p-drawer__bg.is-checked {
  z-index: 100;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s ease, visibility 0s 0s;
  transition: opacity 0.5s ease, visibility 0s 0s;
}

/* object > project > 一覧ページのページネーション
--------------------------------------------- */
.p-pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .p-pagination__list {
    gap: 8px;
  }
}

.p-pagination__item .page-numbers,
.p-pagination__item .page-numbers.dots {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #F7F7F7;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-pagination__item .page-numbers,
  .p-pagination__item .page-numbers.dots {
    width: 50px;
    height: 50px;
  }
}
.p-pagination__item .page-numbers.current,
.p-pagination__item .page-numbers.dots.current {
  background-color: #0c328b;
  color: #FFFFFF;
}
.p-pagination__item .page-numbers {
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.p-pagination__item .page-numbers:hover {
  background-color: #0c328b;
  color: #FFFFFF;
}
.p-pagination__item .page-numbers.dots {
  -webkit-transition: none;
  transition: none;
}
.p-pagination__item .page-numbers.dots:hover {
  background-color: #FFFFFF;
  color: #0c328b;
}
.p-pagination__item .page-numbers.prev, .p-pagination__item .page-numbers.next {
  position: relative;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.p-pagination__item .page-numbers.prev:hover::after, .p-pagination__item .page-numbers.next:hover::after {
  border-color: #FFFFFF;
}
.p-pagination__item .page-numbers.prev::after, .p-pagination__item .page-numbers.next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0c328b;
}
.p-pagination__item .page-numbers.prev::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  border-left: 2px solid #0c328b;
}
.p-pagination__item .page-numbers.next::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  border-right: 2px solid #0c328b;
}

/* object > component > パンくずリスト
--------------------------------------------- */
.p-breadcrumb__wrap {
  max-width: 1222px;
  margin: 0 auto;
  height: 42px;
  overflow: scroll;
  word-break: keep-all;
  white-space: nowrap;
  scrollbar-gutter: stable;
  width: 92%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-breadcrumb__wrap::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb__wrap {
    overflow-x: initial;
    word-break: initial;
    white-space: initial;
    width: initial;
  }
}

.p-breadcrumb {
  height: 100%;
  padding: 6px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 8px;
    padding: 6px 22px;
  }
}
.p-breadcrumb a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-breadcrumb a:hover {
    opacity: 0.7;
  }
}
.p-breadcrumb li {
  font-size: 14px;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgb(255, 255, 255), -1px -1px 2px rgb(255, 255, 255), 1px 0 2px rgb(255, 255, 255), -1px 0 2px rgb(255, 255, 255), 0 1px 2px rgb(255, 255, 255), 0 -1px 2px rgb(255, 255, 255);
}
@media screen and (min-width: 768px) {
  .p-breadcrumb li {
    font-size: 20px;
  }
}
.p-breadcrumb li:not(:last-child)::after {
  content: "＞";
  display: inline-block;
  margin: 0 10px;
  position: relative;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.p-breadcrumb li.home span {
  width: 15px;
  height: 17px;
  display: inline-block;
  background-image: url(../img/common/icon/icon-home.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: relative;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
@media screen and (min-width: 768px) {
  .p-breadcrumb li.home span {
    width: 24px;
    height: 24px;
  }
}
.p-breadcrumb li.home a {
  display: inline-block;
  width: 100%;
}

/* object > project > フォーム共通箇所
--------------------------------------------- */
.grecaptcha-badge {
  visibility: hidden;
}

.p-form__grechapcha-wrap {
  margin-top: 20px;
  text-align: center;
}

/* object > project > 採用情報ページのタブ
「店舗マネージャー」「フランチャイズコンサルタント」
--------------------------------------------- */
/* 応募フォームの切り替えタブ */
.p-tab {
  max-width: 770px;
  margin: 0 auto;
}

.p-tab__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-tab__items {
    gap: 60px;
    padding-inline: 12px;
  }
}

.p-tab__item {
  width: calc((100% - 10px) / 2);
  display: grid;
  place-items: center;
  border-radius: 10px;
  background-color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  padding: 16px 10px;
  border: 1px solid #0c328b;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 375px) {
  .p-tab__item {
    font-size: 17px;
  }
}
@media screen and (min-width: 768px) {
  .p-tab__item {
    width: calc((100% - 60px) / 2);
    font-size: 32px;
    padding: 10px 10px;
    letter-spacing: 1.128px;
    border-radius: 20px;
  }
}
.p-tab__item.is-active {
  background-color: #0c328b;
  color: #FFFFFF;
  font-weight: 700;
  border: 2px solid #0c328b;
}

/* カテゴリータブ */
.p-category-tab {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  gap: 8px;
  border-bottom: 1px solid #0c328b;
  position: relative;
}
@media screen and (min-width: 500px) {
  .p-category-tab {
    gap: 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-category-tab {
    gap: 24px;
  }
}
@media screen and (min-width: 1240px) {
  .p-category-tab {
    gap: 40px;
  }
}
.p-category-tab::before, .p-category-tab::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 1px;
  background-color: #0c328b;
}
@media screen and (min-width: 500px) {
  .p-category-tab::before, .p-category-tab::after {
    width: 20px;
    height: 0.5px;
  }
}
@media screen and (min-width: 768px) {
  .p-category-tab::before, .p-category-tab::after {
    width: 40px;
  }
}
@media screen and (min-width: 1240px) {
  .p-category-tab::before, .p-category-tab::after {
    width: 110px;
  }
}
.p-category-tab::before {
  left: -12px;
  bottom: -1px;
}
@media screen and (min-width: 500px) {
  .p-category-tab::before {
    left: -20px;
    bottom: -0.5px;
  }
}
@media screen and (min-width: 768px) {
  .p-category-tab::before {
    left: -40px;
  }
}
@media screen and (min-width: 1240px) {
  .p-category-tab::before {
    left: -110px;
  }
}
.p-category-tab::after {
  right: -12px;
  bottom: -1px;
}
@media screen and (min-width: 500px) {
  .p-category-tab::after {
    right: -20px;
    bottom: -0.5px;
  }
}
@media screen and (min-width: 768px) {
  .p-category-tab::after {
    right: -40px;
  }
}
@media screen and (min-width: 1240px) {
  .p-category-tab::after {
    right: -110px;
  }
}

.p-category-tab__item {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.56px;
  line-height: 1.6;
  border-radius: 2px 2px 0 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-top: 1px solid #0c328b;
  border-left: 1px solid #0c328b;
  border-right: 1px solid #0c328b;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 500px) {
  .p-category-tab__item {
    font-size: 15px;
    min-width: 90px;
  }
}
@media screen and (min-width: 768px) {
  .p-category-tab__item {
    font-size: 20px;
    border-radius: 8px 8px 0 0;
    min-width: 145px;
  }
}
@media screen and (min-width: 1240px) {
  .p-category-tab__item {
    min-width: 220px;
  }
}
.p-category-tab__item.is-active {
  border-bottom: 0.5px solid #FFFFFF;
}
.p-category-tab__item.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
}
.p-category-tab__item a {
  display: block;
  padding: 4px 0.5em;
}
@media screen and (min-width: 768px) {
  .p-category-tab__item a {
    padding: 10px 0.5em;
  }
}

/* object > component > ニュース&コラムページのカード
--------------------------------------------- */
.p-blog-card {
  display: block;
  padding: 20px;
  border-radius: 4px;
  background: #fdfdfd;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(15, 60, 119, 0.25);
          box-shadow: 0px 1px 4px 0px rgba(15, 60, 119, 0.25);
}
.p-blog-card:hover .p-blog-card__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.p-blog-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-blog-card__tag-oshirase {
  width: 110px;
  height: 37px;
  padding: 5px 7px;
  background-color: #018BA7;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.p-blog-card__tag-campaign {
  width: 110px;
  height: 37px;
  padding: 5px 7px;
  background-color: #002366;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.p-blog-card__tag-column {
  width: 110px;
  height: 37px;
  padding: 5px 7px;
  background-color: #6899FA;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.p-blog-card__img {
  margin-top: 10px;
  overflow: hidden;
  aspect-ratio: 220/162;
}
.p-blog-card__img img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-blog-card__body {
  margin-top: 10px;
  border-top: 0.5px solid rgba(0, 35, 102, 0.2);
  padding-top: 20px;
}

.p-blog-card__title {
  color: #002366;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.64px;
}

/* object > project > 店舗ページのカード
--------------------------------------------- */
.p-shop-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0px 2px 15px 0px rgba(20, 43, 78, 0.15);
          box-shadow: 0px 2px 15px 0px rgba(20, 43, 78, 0.15);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .p-shop-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .p-shop-card:hover {
    opacity: 0.7;
  }
  .p-shop-card:hover .p-shop-card__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.p-shop-card__img {
  -webkit-box-shadow: 0px 2px 15px 0px rgba(20, 43, 78, 0.15);
          box-shadow: 0px 2px 15px 0px rgba(20, 43, 78, 0.15);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-shop-card__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 380px;
            flex: 0 0 380px;
  }
}
.p-shop-card__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-shop-card__body {
  background-color: #FFFFFF;
  padding: 4px 4px 4px;
}
@media screen and (min-width: 768px) {
  .p-shop-card__body {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    -ms-flex-item-align: stretch;
        align-self: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    padding: 16px 16px 16px 20px;
  }
}

.p-shop-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-shop-card__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.p-shop-card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}

.p-shop-card__title-en {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-shop-card__title-en {
    font-size: 16px;
  }
}

.p-shop-card__title-jp {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-shop-card__title-jp {
    font-size: 24px;
  }
}

.p-shop-card__status-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.p-shop-card__status-icon img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-shop-card__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.p-shop-card__info-term {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 85px;
          flex: 0 0 85px;
  font-size: 16px;
  line-height: 1.6;
}

.p-shop-card__info-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 16px;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

/* object > project > お問い合わせフォームの上部ステータス
「必須事項入力」「内容確認」「送信完了」
--------------------------------------------- */
.p-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-flow {
    gap: clamp(45px, -0.896rem + 16.48vw, 223px);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}

.p-flow__parts {
  width: 84px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-flow__parts {
    width: 100px;
  }
}
.p-flow__parts.checked::before {
  background-color: #1391E6;
}
.p-flow__parts.checked .p-flow__icon {
  border: 1px solid #1391E6;
}
.p-flow__parts.checked .p-flow__icon::after {
  background-color: #1391E6;
}
.p-flow__parts:first-child::before {
  content: none;
}
.p-flow__parts::before {
  content: "";
  position: absolute;
  top: 70%;
  left: -51px;
  width: 61px;
  height: 1px;
  background-color: #C4C4C4;
}
@media screen and (min-width: 768px) {
  .p-flow__parts::before {
    width: clamp(45px, -0.896rem + 16.48vw, 223px);
    left: calc(clamp(45px, -0.896rem + 16.48vw, 223px) * -1);
  }
}

.p-flow__text {
  text-align: center;
  font-size: clamp(11px, 0.583rem + 0.46vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: clamp(0.52px, 0.03rem + 0.01vw, 0.64px);
}

.p-flow__icon {
  margin-top: 5px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #C4C4C4;
  background: #f8f8f8;
  position: relative;
}
.p-flow__icon::after {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #C4C4C4;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/* object > project > トップページのFV
--------------------------------------------- */
.p-fv__inner {
  position: relative;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-fv__img {
  position: fixed;
  height: 100vh;
  width: 100%;
}
.p-fv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-fv__titles-wrap {
  position: absolute;
  top: 30%;
  left: clamp(13px, -1.417rem + 9.91vw, 120px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.p-fv__titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.p-fv__title {
  font-size: clamp(30px, 1.375rem + 2.22vw, 54px);
  font-weight: 700;
  line-height: normal;
  letter-spacing: clamp(0.6px, 0.027rem + 0.04vw, 1.08px);
  background-color: #FFFFFF;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 5px;
  clip-path: inset(0 100% 0 0);
}
.p-fv__title.is-loaded {
  clip-path: initial;
}

.p-fv__texts {
  position: absolute;
  bottom: 15%;
  left: clamp(13px, -1.417rem + 9.91vw, 120px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11px;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .p-fv__texts {
    display: none;
  }
}
.p-fv__texts.is-loaded {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.p-fv__text {
  font-size: clamp(18px, 0.958rem + 0.74vw, 26px);
  background-color: #FFFFFF;
  font-weight: 700;
  line-height: normal;
  letter-spacing: clamp(0.36px, 0.019rem + 0.01vw, 0.52px);
  padding-inline: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-fv__text-pc {
  font-size: clamp(18px, 0.958rem + 0.74vw, 26px);
  background-color: #FFFFFF;
  font-weight: 700;
  line-height: normal;
  letter-spacing: clamp(0.36px, 0.019rem + 0.01vw, 0.52px);
  padding-inline: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-fv__text-pc {
    display: block;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    opacity: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-fv__text-pc.is-loaded {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

/* object > project > 下層ページのFV
--------------------------------------------- */
.p-page-fv {
  height: 240px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  /* モディファイアで画像変更 */
}
@media screen and (min-width: 768px) {
  .p-page-fv {
    height: 400px;
  }
}
.p-page-fv.p-page-fv--service {
  background-image: url(../img/service/top/service-top-bg-sp.webp);
}
@media screen and (min-width: 768px) {
  .p-page-fv.p-page-fv--service {
    background-image: url(../img/service/top/service-top-bg-pc.webp);
  }
}
.p-page-fv.p-page-fv--about {
  background-image: url(../img/use/top/use-top-bg-sp.webp);
}
@media screen and (min-width: 768px) {
  .p-page-fv.p-page-fv--about {
    background-image: url(../img/use/top/use-top-bg-pc.webp);
  }
}
.p-page-fv.p-page-fv--faq {
  background-image: url(../img/faq/top/faq-top-bg-sp.webp);
}
@media screen and (min-width: 768px) {
  .p-page-fv.p-page-fv--faq {
    background-image: url(../img/faq/top/faq-top-bg-pc.webp);
  }
}
.p-page-fv.p-page-fv--shop {
  background-image: url(../img/store/top/store-top-bg-sp.webp);
}
@media screen and (min-width: 768px) {
  .p-page-fv.p-page-fv--shop {
    background-image: url(../img/store/top/store-top-bg-pc.webp);
  }
}
.p-page-fv.p-page-fv--news {
  background-image: url(../img/news/top/news-top-bg-sp.webp);
}
@media screen and (min-width: 768px) {
  .p-page-fv.p-page-fv--news {
    background-image: url(../img/news/top/news-top-bg-pc.webp);
  }
}
.p-page-fv.p-page-fv--recruit {
  background-image: url(../img/recruit/top/recruit-top-bg-sp.webp);
}
@media screen and (min-width: 768px) {
  .p-page-fv.p-page-fv--recruit {
    background-image: url(../img/recruit/top/recruit-top-bg-pc.webp);
  }
}
.p-page-fv.p-page-fv--owner {
  background-image: url(../img/owner/top/owner-top-bg-sp.webp);
}
@media screen and (min-width: 768px) {
  .p-page-fv.p-page-fv--owner {
    background-image: url(../img/owner/top/owner-top-bg-pc.webp);
  }
}
.p-page-fv.p-page-fv--owner-thanks {
  background-image: url(../img/thanks/top/thanks-owner-top-bg-sp.webp);
}
@media screen and (min-width: 768px) {
  .p-page-fv.p-page-fv--owner-thanks {
    background-image: url(../img/thanks/top/thanks-owner-top-bg-pc.webp);
  }
}
.p-page-fv.p-page-fv--recruit-thanks {
  background-image: url(../img/thanks/top/thanks-recruit-top-bg-sp.webp);
}
@media screen and (min-width: 768px) {
  .p-page-fv.p-page-fv--recruit-thanks {
    background-image: url(../img/thanks/top/thanks-recruit-top-bg-pc.webp);
  }
}

.p-page-fv__heading-block {
  position: absolute;
  top: 130px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-page-fv__heading-block {
    top: 192px;
  }
}

.p-page-fv__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-page-fv__heading-en {
  text-transform: uppercase;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-shadow: 2px 0px 8px #FFFFFF, 0px 2px 8px #FFFFFF, -2px 0px 8px #FFFFFF, 0px -2px 8px #FFFFFF;
}
@media screen and (min-width: 768px) {
  .p-page-fv__heading-en {
    font-size: 56px;
  }
}

.p-page-fv__heading-jp {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-shadow: 2px 0px 8px #FFFFFF, 0px 2px 8px #FFFFFF, -2px 0px 8px #FFFFFF, 0px -2px 8px #FFFFFF;
}
@media screen and (min-width: 768px) {
  .p-page-fv__heading-jp {
    font-size: 32px;
  }
}

/* object > project > ニュース&コラム詳細ページの前後の記事 + 一覧へリンク
--------------------------------------------- */
.p-pager {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-template-columns: auto auto auto;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-pager {
    gap: 40px;
  }
}
.p-pager .p-pager__link {
  display: block;
  width: 50px;
  height: 50px;
  background-color: #F7F7F7;
  position: relative;
  -webkit-transition: background-color 0.3;
  transition: background-color 0.3;
}
.p-pager .p-pager__link:hover {
  background-color: #0c328b;
}
.p-pager .p-pager__link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0c328b;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}
.p-pager .p-pager__link.p-pager__prev-link::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  border-left: 2px solid #0c328b;
}
.p-pager .p-pager__link.p-pager__prev-link:hover::after {
  border-top: 2px solid #FFFFFF;
  border-left: 2px solid #FFFFFF;
}
.p-pager .p-pager__link.p-pager__prev-link.p-pager__link--invalid:hover::after {
  border-top: 2px solid #0c328b;
  border-left: 2px solid #0c328b;
}
.p-pager .p-pager__link.p-pager__next-link::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  border-right: 2px solid #0c328b;
}
.p-pager .p-pager__link.p-pager__next-link:hover::after {
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
}
.p-pager .p-pager__link.p-pager__next-link.p-pager__link--invalid:hover::after {
  border-top: 2px solid #0c328b;
  border-right: 2px solid #0c328b;
}
.p-pager .p-pager__link.p-pager__link--invalid::after {
  opacity: 0.2;
}
.p-pager .p-pager__link.p-pager__link--invalid:hover {
  background-color: #F7F7F7;
}
.p-pager .p-pager__link.p-pager__link--invalid:hover::after {
  -webkit-transition: none;
  transition: none;
}

.p-pager__prev {
  grid-column: 1/1;
}

.p-pager__top {
  grid-column: 2/3;
}

.p-pager__next {
  grid-column: 3/4;
}

/* object > project > オープニングアニメーション
--------------------------------------------- */
.p-opening-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0c328b;
  z-index: 1000;
}
.p-opening-box.is-loaded {
  opacity: 0;
  visibility: hidden;
}

.p-opening-box__textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 185px;
}
@media screen and (min-width: 900px) {
  .p-opening-box__textarea {
    padding-top: 82px;
  }
}

.p-opening-box__sub-text {
  font-family: "Montserrat Alternates", sans-serif;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-opening-box__sub-text {
    font-size: 40px;
  }
}
@media (max-width: 400px) {
  .p-opening-box__sub-text {
    font-size: 26px;
  }
}
.p-opening-box__sub-text.not-blur {
  -webkit-animation: blurOut 2s ease-in-out forwards;
          animation: blurOut 2s ease-in-out forwards;
}

.p-opening-box__title {
  font-family: "Montserrat Alternates", sans-serif;
  color: #FFFFFF;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-opening-box__title {
    font-size: 80px;
  }
}
@media (max-width: 400px) {
  .p-opening-box__title {
    font-size: 56px;
  }
}
.p-opening-box__title.not-blur {
  -webkit-animation: blurOut 2s ease-in-out forwards;
          animation: blurOut 2s ease-in-out forwards;
}

@-webkit-keyframes blurOut {
  0% {
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes blurOut {
  0% {
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
.p-opening-img {
  position: fixed;
  top: 97vh;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1001;
}
.p-opening-img.is-loaded {
  opacity: 0;
  visibility: hidden;
}
.p-opening-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* object > project > main
--------------------------------------------- */
.p-main._bgColored {
  background-color: #FDFDFD;
}

/* object > utility > display
--------------------------------------------- */
.u-br-xs {
  display: none;
}
@media screen and (max-width: 360px) {
  .u-br-xs {
    display: inline;
  }
}

.u-br-sp {
  display: none;
}
@media screen and (max-width: 375px) {
  .u-br-sp {
    display: inline;
  }
}

.u-br-sm {
  display: inline;
}
@media screen and (min-width: 500px) {
  .u-br-sm {
    display: none;
  }
}

.u-br-tab {
  display: inline;
}
@media screen and (min-width: 768px) {
  .u-br-tab {
    display: none;
  }
}

.u-br-md {
  display: inline;
}
@media screen and (min-width: 900px) {
  .u-br-md {
    display: none;
  }
}

.u-br-pc {
  display: inline;
}
@media screen and (min-width: 1024px) {
  .u-br-pc {
    display: none;
  }
}

.u-br-lg {
  display: inline;
}
@media screen and (min-width: 1240px) {
  .u-br-lg {
    display: none;
  }
}

.u-br-xl {
  display: inline;
}
@media screen and (min-width: 1440px) {
  .u-br-xl {
    display: none;
  }
}

.u-tab-display {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-tab-display {
    display: inline;
  }
}