@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
/* 数値計算関連の関数を使うために必要 (math.divなど)*/
@font-face {
  font-family: "Atlanta Demi";
  src: url("../font/Atlanta-Demi.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: #282828;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 780px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 780px) {
  .sp-only {
    display: none;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
}

/* マウスホバーがあるデバイスでのアニメーション（タッチデバイス除く） */
@media (any-hover: hover) {
  a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}
/* 数値計算関連の関数を使うために必要 (math.divなど)*/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 780px) {
  html {
    font-size: 1.6vw;
  }
}
@media (min-width: 1000px) {
  html {
    font-size: 16px;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.inner {
  width: 100%;
  padding-inline: 10px;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .inner {
    max-width: 1040px;
    padding-inline: 20px;
  }
}

.header {
  position: fixed;
  z-index: 9999;
  height: 3.125rem;
  width: 100%;
  background-color: #ffffff;
}
@media screen and (min-width: 780px) {
  .header {
    height: 5rem;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.header__inner {
  z-index: 10000;
  height: inherit;
  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;
  -webkit-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  gap: 0.9375rem;
}

.header__logo {
  max-width: 10.75rem;
  margin-left: 1.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 780px) {
  .header__logo {
    max-width: 15rem;
  }
}
@media screen and (min-width: 1200px) {
  .header__logo {
    max-width: 19.625rem;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 780px) {
  .header__nav {
    display: block;
    height: inherit;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: inherit;
  gap: 0.875rem;
  margin-right: 0.75rem;
}
@media screen and (min-width: 1200px) {
  .header__nav-list {
    gap: 1.9375rem;
    margin-right: 1rem;
  }
}

.header__nav-item {
  height: inherit;
}

.header__nav-link {
  position: relative;
  height: inherit;
  display: -ms-grid;
  display: grid;
  place-items: center;
  grid-auto-flow: column;
  font-size: 0.875rem;
  color: #282828;
  font-weight: 400;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 1200px) {
  .header__nav-link {
    font-size: 1rem;
  }
}

.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 1.0625rem;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #acacac;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.header__nav-link:hover::after,
.header__nav-link.is-current::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.header__nav-item--contact {
  margin-left: 0;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .header__nav-item--contact {
    margin-left: -1.5625rem;
  }
}

.header__nav-item--line {
  height: auto;
}

.header__nav-item--line .header__nav-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  background-color: #00c300;
  padding: 0.625rem 0.75rem;
  border-radius: 1.875rem;
  font-size: 0.9375rem;
  height: 3rem;
}
@media screen and (min-width: 1200px) {
  .header__nav-item--line .header__nav-link {
    padding: 0.625rem 1.25rem;
    font-size: 1.125rem;
    height: 3.75rem;
  }
}
.header__nav-item--line .header__nav-link::after {
  display: none;
}

.header__nav-item--line .header__nav-link::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.375rem;
  margin-right: 0.3125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: url("../images/common/icon-line_pc2x.png") center/contain no-repeat;
}
@media screen and (min-width: 1200px) {
  .header__nav-item--line .header__nav-link::before {
    width: 2.0625rem;
    height: 1.8125rem;
  }
}

.header__nav-item--contact .header__nav-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  background-color: #ff9000;
  padding: 0.75rem 1rem;
  border-radius: 1.875rem;
  font-size: 0.9375rem;
  height: 3rem;
}
@media screen and (min-width: 1200px) {
  .header__nav-item--contact .header__nav-link {
    padding: 1.125rem 1.75rem;
    font-size: 1.125rem;
    height: 3.75rem;
  }
}
.header__nav-item--contact .header__nav-link::after {
  display: none;
}

.header__nav-item--contact .header__nav-link::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.375rem;
  margin-right: 0.375rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: url("../images/common/icon-contact2x.png") center/contain no-repeat;
}
@media screen and (min-width: 1200px) {
  .header__nav-item--contact .header__nav-link::before {
    width: 2.0625rem;
    height: 1.8125rem;
    margin-right: 0.625rem;
  }
}

.sp-nav {
  background-color: #ffffff;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  padding: 6.25rem 0 0 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  visibility: hidden;
  overflow-y: auto;
}

.sp-nav__list {
  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: 1.8125rem;
}

.sp-nav__list-item {
  width: 100%;
}

.sp-nav__list-link {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #282828;
  display: block;
  text-align: center;
}

.sp-nav__btn-area {
  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: 1.875rem;
  margin-top: 3.3125rem;
}

.sp-nav__btn {
  display: block;
  width: 3.4375rem;
}

.sp-nav__contact-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.875rem 1.5rem;
  background-color: #ff9000;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 3.125rem;
  -webkit-box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
  position: relative;
  max-width: 22.5rem;
  margin-inline: auto;
}

.sp-nav__contact-btn::before {
  content: "";
  display: block;
  width: 2.375rem;
  height: 2rem;
  background: url("../images/common/icon-contact2x.png") center/contain no-repeat;
  position: absolute;
  left: 4.375rem;
}

.sp-nav__contact-btn::after {
  content: "";
  display: block;
  width: 0.6875rem;
  height: 0.6875rem;
  border-top: 0.25rem solid #ffffff;
  border-right: 0.25rem solid #ffffff;
  border-radius: 0.1875rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 1.9375rem;
}

.sp-nav__brand {
  margin-top: 1.4375rem;
  background-color: #092843;
  padding: 1.25rem;
}

.sp-nav__brand-logo {
  max-width: 15.25rem;
  margin-inline: auto;
}

.is-openSP.sp-nav {
  opacity: 1;
  visibility: visible;
}

.hamburger {
  width: 2.1875rem;
  height: 2.1875rem;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  margin-right: 1.5625rem;
}
@media screen and (min-width: 780px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  background-color: #e55b3f;
  display: block;
  position: absolute;
  height: 0.1875rem;
  width: 2.1875rem;
  -webkit-transition: all 0.4s 0s ease;
  transition: all 0.4s 0s ease;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.hamburger span:nth-child(1) {
  top: 0.3125rem;
}

.hamburger span:nth-child(2) {
  top: 0.9375rem;
}

.hamburger span:nth-child(3) {
  top: 1.5625rem;
}

.hamburger.is-openSP span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0.9375rem;
  left: 0;
}

.hamburger.is-openSP span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-openSP span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0.9375rem;
  left: 0;
}

.fv {
  position: relative;
  overflow: hidden;
  padding-top: 3.125rem;
}
@media screen and (min-width: 780px) {
  .fv {
    padding-top: 5rem;
  }
}

.fv__catch {
  position: absolute;
  top: 7rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .fv__catch {
    text-align: left;
    top: 50%;
    left: 6.25rem;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

.fv__catch-lead {
  font-size: 2.875rem;
  font-weight: 900;
  color: #ffffff;
  white-space: nowrap;
  text-shadow: 0 0 1.25rem rgb(0, 0, 0);
}
@media screen and (min-width: 780px) {
  .fv__catch-lead {
    font-size: 5rem;
  }
}

.fv__catch-lead-small {
  font-size: 2.1875rem;
}
@media screen and (min-width: 780px) {
  .fv__catch-lead-small {
    font-size: 3.75rem;
  }
}

.fv__catch-sub {
  display: inline-block;
  padding: 0.3125rem 0.375rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.5);
  margin-top: 0.625rem;
  line-height: 1.2;
}
@media screen and (min-width: 780px) {
  .fv__catch-sub {
    padding: 1rem 1.75rem;
    font-size: 1.5625rem;
  }
}

.about {
  padding-top: 1.875rem;
}
@media screen and (min-width: 780px) {
  .about {
    padding-top: 5.8125rem;
  }
}

.about__lead {
  font-size: 1.125rem;
  font-weight: 500;
  padding-top: 1.5rem;
}
@media screen and (min-width: 780px) {
  .about__lead {
    font-size: 1.5625rem;
    padding-top: 2.5rem;
  }
}

.about__body {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 780px) {
  .about__body {
    margin-top: 3.5625rem;
    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: 2.9375rem;
  }
}

.about__image {
  aspect-ratio: 380/190;
  width: 100%;
}
@media screen and (min-width: 780px) {
  .about__image {
    aspect-ratio: 400/200;
  }
}

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

.about__text {
  font-size: 0.9375rem;
  font-weight: 400;
  padding-top: 1rem;
}
@media screen and (min-width: 780px) {
  .about__text {
    padding-top: 0;
  }
}

.about__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;
  gap: 0.5rem;
  margin-top: 1.75rem;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
@media screen and (min-width: 780px) {
  .about__link {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.about__link:hover .about__link-icon {
  -webkit-transform: translate(4px, 0) rotate(45deg);
          transform: translate(4px, 0) rotate(45deg);
}

.about__link-icon {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.125rem solid currentColor;
  border-right: 0.125rem solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-color: #282828;
}

.about__link-text {
  font-size: 1.25rem;
  font-weight: 400;
  color: #282828;
}
@media screen and (min-width: 780px) {
  .about__link-text {
    font-size: 0.9375rem;
  }
}

.section-title--left {
  text-align: left;
}

.section-title--center {
  text-align: center;
}

.section-title__sub {
  color: #c2c2c2;
  font-size: 0.9375rem;
  font-family: "Atlanta Demi", sans-serif;
}

.section-title__sub--white {
  color: #ffffff;
}

@media screen and (min-width: 780px) {
  .section-title__sub--left {
    text-align: left;
  }
}

.section-title__title {
  font-size: 1.5625rem;
  font-weight: 700;
  margin-top: -0.3125rem;
}
@media screen and (min-width: 780px) {
  .section-title__title {
    font-size: 2.8125rem;
    margin-top: -0.625rem;
  }
}

.section-title__title--white {
  color: #ffffff;
}

.concept {
  margin-top: 3.5rem;
  padding-top: 1.875rem;
  background-image: url(../images/top/bg-img_sp2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-origin: border-box;
  width: 100%;
  background-position: center;
  padding-bottom: 3.5rem;
}
@media screen and (min-width: 780px) {
  .concept {
    background-image: url(../images/top/bg-img_pc2x.png);
    padding-top: 3.0625rem;
    padding-bottom: 6.25rem;
  }
}

@media screen and (min-width: 780px) {
  .concept__container {
    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;
  }
}

.concept__title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.05625rem;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .concept__title {
    font-size: 1.875rem;
  }
}

.concept__title-line {
  background: -webkit-gradient(linear, left top, right top, from(#fffc00), to(#fffc00));
  background: linear-gradient(90deg, #fffc00, #fffc00);
  background-position: left bottom;
  background-size: 100% 1.125rem;
  background-repeat: no-repeat;
}

.concept__text {
  font-size: 0.9375rem;
  font-weight: 400;
  padding-top: 2.4375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .concept__text {
    padding-top: 2.8125rem;
    line-height: 1.875rem;
  }
}

.concept__image {
  padding-top: 1.625rem;
  aspect-ratio: 259/232;
  width: 100%;
  max-width: 16.1875rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .concept__image {
    padding-top: 0;
    aspect-ratio: 314/281;
    max-width: 19.625rem;
  }
}

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

.concept__equation {
  padding-top: 2.4375rem;
}

.concept__catch {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .concept__catch {
    font-size: 1.875rem;
  }
}

.concept__catch-emphasis {
  position: relative;
}

.concept__catch-emphasis::before {
  position: absolute;
  content: "● ● ●";
  position: absolute;
  top: -0.625rem;
  left: 80%;
  -webkit-transform: translateX(-80%);
          transform: translateX(-80%);
  font-size: 0.4375rem;
  letter-spacing: 0.3125rem;
  color: #282828;
  white-space: nowrap;
}
@media screen and (min-width: 780px) {
  .concept__catch-emphasis::before {
    font-size: 0.625rem;
    letter-spacing: 0.5rem;
  }
}

.concept__formula {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 21.875rem;
  margin-inline: auto;
  margin-top: 1.1875rem;
}
@media screen and (min-width: 780px) {
  .concept__formula {
    max-width: 100%;
    margin-top: 1.625rem;
  }
}

.concept__item-circle {
  width: 8.4375rem;
}

.concept__item-text {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
}

.concept__symbol--plus {
  font-size: 5rem;
  font-weight: 700;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.concept__symbol--equal {
  font-size: 5rem;
  font-weight: 700;
}
@media screen and (min-width: 780px) {
  .concept__symbol--equal {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}

.concept__result {
  background-color: #e55b3f;
  border-radius: 50%;
  width: 10.9375rem;
  height: 10.9375rem;
  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;
  margin-left: 1.1875rem;
  margin-top: 1.625rem;
}
@media screen and (min-width: 780px) {
  .concept__result {
    margin-left: 0;
    margin-top: 0;
  }
}

.concept__result-text {
  font-size: 1.8125rem;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  line-height: 1.2;
}

.concept__summary {
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  padding-top: 2rem;
}
@media screen and (min-width: 780px) {
  .concept__summary {
    font-size: 1.25rem;
  }
}

.concept__message {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .concept__message {
    margin-top: 3.75rem;
    font-size: 2.1875rem;
  }
}

.concept__logo {
  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;
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: -1.25rem;
}
@media screen and (min-width: 780px) {
  .concept__logo {
    margin-bottom: 0;
    font-size: 3.125rem;
  }
}

.concept__logo-icon {
  width: 4.3125rem;
}
@media screen and (min-width: 780px) {
  .concept__logo-icon {
    width: 6.1875rem;
  }
}

.concept__message-line {
  background: -webkit-gradient(linear, left top, right top, from(#fffc00), to(#fffc00));
  background: linear-gradient(90deg, #fffc00, #fffc00);
  background-position: left bottom;
  background-size: 100% 1.125rem;
  background-repeat: no-repeat;
}

.service {
  background-color: #092843;
  padding-top: 2.5rem;
  padding-bottom: 3.3125rem;
}
@media screen and (min-width: 780px) {
  .service {
    padding-top: 5.625rem;
    padding-bottom: 4.8125rem;
  }
}

.service__lead {
  font-size: 0.9375rem;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
  padding-top: 1.25rem;
}
@media screen and (min-width: 780px) {
  .service__lead {
    padding-top: 1.875rem;
  }
}

.service__slide-image {
  width: 10.25rem;
}

.service__slide {
  position: relative;
  max-width: 18.75rem;
  margin-inline: auto;
  margin-top: 1.25rem;
}
@media screen and (min-width: 780px) {
  .service__slide {
    max-width: 100%;
    visibility: visible;
    margin-top: 2.5rem;
  }
}

.service__slide-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 780px) {
  .service__slide-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0 1fr 0 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding-top: 0;
  }
}

@media screen and (min-width: 780px) {
  .splide.is-initialized:not(.is-active) .splide__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0.5625rem 1fr 0.5625rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5625rem;
  }
}

.service__slide-item {
  background-color: #ffffff;
  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-bottom: 1.875rem;
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
@media screen and (min-width: 780px) {
  .service__slide-item {
    max-width: 20.625rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: subgrid;
    grid-template-rows: subgrid;
    -ms-grid-row-span: 3;
    grid-row: span 4;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.service__slide-image {
  padding-top: 1.875rem;
}
@media screen and (min-width: 780px) {
  .service__slide-image {
    margin-inline: auto;
  }
}

.service__slide-title {
  font-size: 1.5625rem;
  font-weight: 700;
  margin-top: 1rem;
}
@media screen and (min-width: 780px) {
  .service__slide-title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.service__slide-text {
  font-size: 0.9375rem;
  font-weight: 400;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media screen and (min-width: 780px) {
  .service__slide-text {
    font-size: 0.8125rem;
  }
}

.service__slide-item {
  font-size: 0.8125rem;
}
@media screen and (min-width: 780px) {
  .service__slide-item {
    margin-top: 2.625rem;
  }
}

.service__lists {
  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: 0.375rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-inline: auto;
}

.service__item {
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 3.125rem;
  border: 0.0625rem solid #092843;
  padding: 0.3125rem 0;
  width: 15.625rem;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .service__item {
    font-size: 1.0625rem;
    padding: 0.8125rem 0;
  }
}

.service__arrows {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
  z-index: 10;
  width: 23.75rem;
}
@media screen and (min-width: 780px) {
  .service__arrows {
    display: none;
  }
}

.service__arrow-left,
.service__arrow-right {
  pointer-events: auto;
  height: 1.8125rem;
  width: 1.1875rem;
  cursor: pointer;
}

.service__arrow-left::after,
.service__arrow-right::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.1875rem;
  height: 1.8125rem;
}

.service__arrow-left:after {
  background-image: url(../images/top/service-arrow-left2x.png);
}

.service__arrow-right:after {
  background-image: url(../images/top/service-arrow-right2x.png);
}

.service__button {
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .service__button {
    margin-top: 2.5rem;
  }
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 3.125rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  -webkit-transition: opacity 0.3s, -webkit-box-shadow 0.3s;
  transition: opacity 0.3s, -webkit-box-shadow 0.3s;
  transition: opacity 0.3s, box-shadow 0.3s;
  transition: opacity 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
  font-size: 0.8125rem;
  width: 14.375rem;
}
@media screen and (min-width: 780px) {
  .button {
    width: 15.625rem;
  }
}

.button {
  background-color: #ffffff;
  color: #282828;
  border: 0.0625rem solid #c2c2c2;
}

.button--white {
  background-color: #ffffff;
  color: #092843;
  border: none;
  -webkit-box-shadow: 0 0.125rem 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 0.125rem 0 rgba(0, 0, 0, 0.08);
}

.column {
  padding-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .column {
    padding-top: 5.625rem;
  }
}

@media screen and (min-width: 780px) {
  .column__inner {
    max-width: 75rem;
    padding: 0;
  }
}

@media screen and (min-width: 780px) {
  .column__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.1875rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 63.75rem;
    margin-inline: auto;
    padding-left: 1.25rem;
  }
}

.column__lead {
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 400;
  padding-top: 1.125rem;
}
@media screen and (min-width: 780px) {
  .column__lead {
    font-size: 0.8125rem;
  }
}

.column__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  margin-top: 1.4375rem;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 780px) {
  .column__cards {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.25rem 1fr 1.25rem 1fr 1.25rem 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    overflow-x: visible;
    padding-bottom: 0;
  }
}

.column__card {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18.75rem;
}
@media screen and (min-width: 780px) {
  .column__card {
    width: auto;
  }
}

.column__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.column__card-image {
  width: 18.75rem;
  aspect-ratio: 300/190;
  overflow: hidden;
}
@media screen and (min-width: 780px) {
  .column__card-image {
    width: 100%;
    max-width: 18.75rem;
    margin-inline: auto;
  }
}

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

.column__card-body {
  margin-top: 0.75rem;
}
@media screen and (min-width: 780px) {
  .column__card-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.625rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.column__card-date {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #282828;
}
@media screen and (min-width: 780px) {
  .column__card-date {
    font-size: 0.8125rem;
  }
}

.column__card-title {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 0.25rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 780px) {
  .column__card-title {
    margin-top: 0;
  }
}

.column__button {
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .column__button {
    margin-top: 2.5rem;
  }
}

.footer {
  color: #ffffff;
  margin-top: 3.625rem;
}
@media screen and (min-width: 780px) {
  .footer {
    margin-top: 8.75rem;
  }
}

.footer__navy {
  position: relative;
  margin-left: calc((100vw - 100%) / 2 * -1);
  margin-right: calc((100vw - 100%) / 2 * -1);
}
@media screen and (min-width: 780px) {
  .footer__navy {
    margin-left: 0;
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1.5625rem 0;
  }
}

.footer__navy::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  top: 0;
  bottom: 0;
  background-color: #092843;
  z-index: -1;
}

.footer__navy-inner {
  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: 780px) {
  .footer__navy-inner {
    -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;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1.5rem 0;
  }
}

.footer__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 780px) {
  .footer__cta {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
}

.footer__cta-button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background-color: #ff9000;
  color: #ffffff;
  font-weight: 400;
  text-decoration: none;
  font-size: 1.125rem;
  position: relative;
}
@media screen and (min-width: 780px) {
  .footer__cta-button {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    padding: 0.75rem 1.5rem;
    border-radius: 3.125rem;
    font-size: 0.9375rem;
  }
}

.footer__cta-button::before {
  content: "";
  display: block;
  width: 2.0625rem;
  height: 1.8125rem;
  background: url("../images/common/icon-contact2x.png") center/contain no-repeat;
}

.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
@media screen and (min-width: 780px) {
  .footer__sns {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    gap: 0;
  }
}

.footer__sns-link {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
  padding: 1rem;
}
@media screen and (min-width: 780px) {
  .footer__sns-link {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    padding: 0.5rem;
    background-color: transparent;
  }
}

.footer__sns-link--line {
  background-color: #00c300;
}
@media screen and (min-width: 780px) {
  .footer__sns-link--line {
    background-color: transparent;
  }
}

.footer__sns-link--instagram {
  background-color: #ffffff;
}
@media screen and (min-width: 780px) {
  .footer__sns-link--instagram {
    background-color: transparent;
  }
}

.footer__sns-link--line img {
  width: 3.4375rem;
  height: 3.4375rem;
}
@media screen and (min-width: 780px) {
  .footer__sns-link--line img {
    width: 2.125rem;
    height: 2.125rem;
  }
}

.footer__sns-link--instagram img {
  width: 2.125rem;
  height: 2.125rem;
}

.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.75rem 0;
}
@media screen and (min-width: 780px) {
  .footer__logo {
    padding: 0;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.footer__logo img {
  width: 15.25rem;
}
@media screen and (min-width: 780px) {
  .footer__logo img {
    width: 19.625rem;
  }
}

.footer__info {
  display: none;
}
@media screen and (min-width: 780px) {
  .footer__info {
    display: block;
    padding-top: 2.125rem;
    position: relative;
    padding-bottom: 3.875rem;
  }
}

@media screen and (min-width: 780px) {
  .footer__info::before {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100vw;
    top: 0;
    bottom: 0;
    background-color: #eeeeee;
    z-index: -1;
  }
}

.footer__subnav {
  display: none;
}
@media screen and (min-width: 780px) {
  .footer__subnav {
    display: block;
    position: relative;
    padding-top: 1.125rem;
    padding-bottom: 1.125rem;
  }
}

@media screen and (min-width: 780px) {
  .footer__subnav::before {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
    top: 0;
    bottom: 0;
    background-color: #092843;
    z-index: -1;
  }
}

.footer__copyright {
  background-color: #ffffff;
  padding: 0.75rem 0;
}
@media screen and (min-width: 780px) {
  .footer__copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
  }
}

.footer__copyright-text {
  font-size: 0.75rem;
  font-weight: 400;
  color: #282828;
  text-align: center;
}

.footer__legal {
  display: none;
}
@media screen and (min-width: 780px) {
  .footer__legal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }
}

@media screen and (min-width: 780px) {
  .footer__legal a {
    color: #282828;
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 780px) {
  .footer__info-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 780px) {
  .footer__nav {
    margin-left: 8.375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.5rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

@media screen and (min-width: 780px) {
  .footer__address {
    -webkit-box-flex: 17.5rem;
        -ms-flex: 17.5rem 0;
            flex: 17.5rem 0;
  }
}

@media screen and (min-width: 780px) {
  .footer__postal {
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-weight: 400;
    color: #282828;
  }
}

@media screen and (min-width: 780px) {
  .footer__street {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 400;
    color: #282828;
  }
}

@media screen and (min-width: 780px) {
  .footer__tel {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.375rem;
    color: #282828;
    font-size: 1.5625rem;
  }
}

.footer__tel-icon {
  width: 1.25rem;
  height: 1.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (min-width: 780px) {
  .footer__nav-list li + li {
    margin-top: 0.5rem;
  }
}

@media screen and (min-width: 780px) {
  .footer__nav-list a {
    color: #282828;
    font-size: 1rem;
    font-weight: 500;
  }
}

@media screen and (min-width: 780px) {
  .footer__column {
    padding-left: 2.5rem;
    border-left: 0.0625rem solid #c2c2c2;
  }
}

@media screen and (min-width: 780px) {
  .footer__column-head a {
    font-size: 1rem;
    font-weight: 500;
    color: #282828;
    margin-bottom: 0.75rem;
  }
}

@media screen and (min-width: 780px) {
  .footer__column-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
}

@media screen and (min-width: 780px) {
  .footer__column-list li {
    position: relative;
    padding-left: 0.75rem;
    padding-top: 0.1875rem;
  }
}

@media screen and (min-width: 780px) {
  .footer__column-list li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #282828;
  }
}

@media screen and (min-width: 780px) {
  .footer__column-list a {
    color: #282828;
    font-size: 0.8125rem;
    font-weight: 400;
  }
}

@media screen and (min-width: 780px) {
  .footer__subnav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.625rem;
  }
}

@media screen and (min-width: 780px) {
  .footer__subnav-list li:not(:last-child)::after {
    content: " | ";
    margin-left: 1.25rem;
    color: #ffffff;
  }
}

@media screen and (min-width: 780px) {
  .footer__subnav-list a {
    color: #ffffff;
    font-size: 0.75rem;
  }
}

.cta {
  display: none;
}
@media screen and (min-width: 780px) {
  .cta {
    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: 1.0625rem;
    -ms-flex-direction: row;
        flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.cta-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  width: 18.75rem;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
}

.cta-button--contact {
  background-color: #ff9000;
  position: relative;
}

.cta-button--contact::before {
  content: "";
  display: block;
  width: 1.75rem;
  height: 1.5rem;
  background: url(../images/common/icon-contact2x.png) center/contain no-repeat;
}

.cta-button--document {
  background-color: #1eab1e;
  position: relative;
}

.cta-button--document::before {
  content: "";
  display: block;
  width: 1.75rem;
  height: 1.5rem;
  background: url(../images/common/icon-materials2x.png) center/contain no-repeat;
}

.service-page__container {
  position: relative;
  margin-top: 1.5625rem;
  padding-top: 2.125rem;
  width: 100%;
  height: 158.75rem;
}
@media screen and (min-width: 780px) {
  .service-page__container {
    margin-top: 3.75rem;
    padding-top: 4.5rem;
    height: 109.0625rem;
  }
}

.service-page__container::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  top: 0;
  bottom: 0;
  z-index: -1;
  background-image: url(../images/service/bg_sp2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 780px) {
  .service-page__container::before {
    background-image: url(../images/service/bg_pc2x.png);
  }
}

.service-page__lead {
  font-size: 0.9375rem;
  font-weight: 400;
  padding-top: 1.1875rem;
}
@media screen and (min-width: 780px) {
  .service-page__lead {
    font-size: 1.0625rem;
    padding-top: 2.25rem;
  }
}

@media screen and (min-width: 780px) {
  .service-page__produce {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 3rem 22rem;
    grid-template-columns: 1fr 22rem;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.service-page__produce-title {
  font-size: 1.5625rem;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#fffc00), to(#fffc00));
  background: linear-gradient(90deg, #fffc00, #fffc00);
  background-position: left bottom;
  background-size: 100% 1.125rem;
  background-repeat: no-repeat;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 780px) {
  .service-page__produce-title {
    font-size: 2.1875rem;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
}

.service-page__produce-text {
  font-size: 0.9375rem;
  font-weight: 400;
  padding-top: 2rem;
}
@media screen and (min-width: 780px) {
  .service-page__produce-text {
    padding-top: 3.9375rem;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
  }
}

.service-page__produce-image {
  padding-top: 0.8125rem;
  aspect-ratio: 290/267;
  width: 100%;
  max-width: 18.125rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .service-page__produce-image {
    aspect-ratio: 352/324;
    max-width: 22rem;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1/4;
    padding-top: 0;
    margin-inline: 0;
    -ms-grid-row-align: center;
        align-self: center;
    margin-left: -12.5rem;
  }
}

.service-page__produce-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.service-page__produce-results {
  margin-top: 1.9375rem;
}
@media screen and (min-width: 780px) {
  .service-page__produce-results {
    margin-top: 3.5rem;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
  }
}

.service-page__produce-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  width: 12.6875rem;
  background: #e55b3f;
  padding: 0.5625rem 0;
  text-align: center;
}

.service-page__produce-list {
  background: #ffffff;
  padding-top: 0.6875rem;
  padding-left: 0.625rem;
  padding-bottom: 0.6875rem;
  max-width: 24.0625rem;
  -webkit-box-shadow: 0.125rem 0.125rem 0.125rem rgba(0, 0, 0, 0.15);
          box-shadow: 0.125rem 0.125rem 0.125rem rgba(0, 0, 0, 0.15);
}

.service-page__produce-item {
  font-size: 0.9375rem;
  font-weight: 700;
  position: relative;
  padding-left: 1.5625rem;
}

.service-page__produce-item + .service-page__produce-item {
  margin-top: 0.75rem;
}

.service-page__produce-item::before {
  content: "⚫︎";
  position: absolute;
  left: 0;
  color: #282828;
}

.service-page__flow {
  margin-top: 5rem;
}
@media screen and (min-width: 780px) {
  .service-page__flow {
    margin-top: 4.5625rem;
  }
}

.service-page__flow-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  width: 12.6875rem;
  background: #092843;
  padding: 0.5625rem 0;
  text-align: center;
}

.service-page__flow-steps {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8125rem;
  overflow-x: auto;
  margin-top: 2.625rem;
  max-width: 38.75rem;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 780px) {
  .service-page__flow-steps {
    overflow-x: visible;
  }
}

.service-page__flow-steps::-webkit-scrollbar {
  height: 0.8125rem;
  background-color: #ffffff;
  border-radius: 0.625rem;
}

.service-page__flow-steps::-webkit-scrollbar-thumb {
  background: #c2c2c2;
}

.service-page__flow-steps::before {
  content: "";
  position: absolute;
  top: 8.75rem;
  left: 5.625rem;
  width: 38.75rem;
  height: 0.125rem;
  background-color: #e55b3f;
}

.service-page__flow-step {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 11.875rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.service-page__flow-step::before {
  content: "";
  position: absolute;
  top: 8.375rem;
  left: 50%;
  width: 0.875rem;
  height: 0.875rem;
  border: 0.125rem solid #ffffff;
  border-radius: 50%;
  background-color: #e55b3f;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}

.service-page__flow-step-image {
  aspect-ratio: 99/116;
  width: 100%;
  max-width: 6.1875rem;
  margin-inline: auto;
}

.service-page__flow-step-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.service-page__flow-step-content {
  margin-top: 2.9375rem;
  background-color: #ffffff;
  padding: 0 1.125rem 1.375rem 1.125rem;
  -webkit-box-shadow: 0.125rem 0.125rem 0.125rem rgba(0, 0, 0, 0.15);
          box-shadow: 0.125rem 0.125rem 0.125rem rgba(0, 0, 0, 0.15);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.service-page__flow-step-title {
  padding-top: 2.3125rem;
  font-size: 1.5625rem;
  font-weight: 700;
  text-align: center;
}

.service-page__flow-step-text {
  padding-top: 1.75rem;
  font-size: 0.9375rem;
  font-weight: 400;
}
@media screen and (min-width: 780px) {
  .service-page__flow-step-text {
    font-size: 0.8125rem;
  }
}

.service-page__feature {
  margin-top: 3.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.25rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (min-width: 780px) {
  .service-page__feature {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.4375rem;
    margin-top: 6.25rem;
  }
}

.service-page__feature-content {
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.service-page__feature-image {
  aspect-ratio: 266/186;
  width: 100%;
  max-width: 16.625rem;
  padding-top: 0.4375rem;
}

.service-page__feature-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.service-page__feature-title {
  font-size: 1.5625rem;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#fffc00), to(#fffc00));
  background: linear-gradient(90deg, #fffc00, #fffc00);
  background-position: left bottom;
  background-size: 100% 0.8125rem;
  background-repeat: no-repeat;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}

.service-page__feature-text {
  font-size: 0.9375rem;
  font-weight: 400;
  padding-top: 0.9375rem;
}
@media screen and (min-width: 780px) {
  .service-page__feature-text {
    font-size: 0.8125rem;
  }
}

.service-page__feature-result {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 0;
}

.service-page__feature-result-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  width: 12.6875rem;
  background: #e55b3f;
  padding: 0.5625rem 0;
  text-align: center;
  margin-top: 2.5rem;
}

.service-page__feature-result-list {
  background: #ffffff;
  padding-top: 0.6875rem;
  padding-left: 0.625rem;
  padding-bottom: 0.6875rem;
  -webkit-box-shadow: 0.125rem 0.125rem 0.125rem rgba(0, 0, 0, 0.15);
          box-shadow: 0.125rem 0.125rem 0.125rem rgba(0, 0, 0, 0.15);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
}

.service-page__feature-result-item {
  font-size: 0.9375rem;
  font-weight: 700;
  position: relative;
  padding-left: 1.5625rem;
}

.service-page__feature-result-item::before {
  content: "⚫︎";
  position: absolute;
  left: 0;
  color: #282828;
}

.service-page__feature-result-item + .service-page__feature-result-item {
  margin-top: 0.75rem;
}

@media screen and (min-width: 780px) {
  .service-page__cta {
    margin-top: 5rem;
  }
}

.under-page {
  padding-top: 5.5625rem;
}
@media screen and (min-width: 780px) {
  .under-page {
    padding-top: 10.625rem;
  }
}

@media screen and (min-width: 780px) {
  .under-page__inner {
    max-width: 840px;
  }
}

.under-page__title-sub {
  color: #c2c2c2;
  font-size: 0.9375rem;
  font-family: "Atlanta Demi", sans-serif;
}

.under-page__title-main {
  font-size: 1.5625rem;
  font-weight: 700;
  margin-top: -0.3125rem;
}
@media screen and (min-width: 780px) {
  .under-page__title-main {
    font-size: 2.8125rem;
    margin-top: -0.625rem;
  }
}

.privacy-policy-page__header {
  margin-bottom: 2rem;
}
@media screen and (min-width: 780px) {
  .privacy-policy-page__header {
    margin-bottom: 3rem;
  }
}

.privacy-policy-page__label {
  color: #c2c2c2;
  font-size: 0.9375rem;
  font-family: "Atlanta Demi", sans-serif;
}
@media screen and (min-width: 780px) {
  .privacy-policy-page__label {
    font-size: 0.875rem;
  }
}

.privacy-policy-page__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #282828;
  margin-top: 0.5rem;
}
@media screen and (min-width: 780px) {
  .privacy-policy-page__title {
    font-size: 2.8125rem;
    margin-top: 0.75rem;
  }
}

.privacy-policy-page__lead {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #282828;
  padding-top: 2.3125rem;
}
@media screen and (min-width: 780px) {
  .privacy-policy-page__lead {
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
  }
}

.privacy-policy-page__article {
  margin-top: 1.75rem;
}
@media screen and (min-width: 780px) {
  .privacy-policy-page__article {
    margin-top: 2.25rem;
  }
}

.privacy-policy-page__article-title {
  font-size: 1.0625rem;
  font-weight: 400;
  color: #282828;
}
@media screen and (min-width: 780px) {
  .privacy-policy-page__article-title {
    font-size: 1.0625rem;
  }
}

.privacy-policy-page__article-text {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #282828;
  line-height: 1.8;
}
@media screen and (min-width: 780px) {
  .privacy-policy-page__article-text {
    font-size: 0.8125rem;
  }
}

.privacy-policy-page__article-list {
  margin-top: 0.75rem;
  padding-left: 1.5rem;
  list-style: disc;
}
@media screen and (min-width: 780px) {
  .privacy-policy-page__article-list {
    margin-top: 1rem;
  }
}

.privacy-policy-page__article-list li {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #282828;
  line-height: 1.8;
}
@media screen and (min-width: 780px) {
  .privacy-policy-page__article-list li {
    font-size: 1rem;
  }
}

.privacy-policy-page__article-list li:first-child {
  margin-top: 0;
}

.privacy-policy-page__contact {
  margin-top: 1.25rem;
  padding: 1.5rem;
  border: 0.0625rem solid #c2c2c2;
  background-color: #ffffff;
}
@media screen and (min-width: 780px) {
  .privacy-policy-page__contact {
    margin-top: 1.5rem;
    padding: 0.9375rem;
  }
}

.privacy-policy-page__contact-row {
  font-size: 0.9375rem;
  color: #282828;
  line-height: 1.8;
}
@media screen and (min-width: 780px) {
  .privacy-policy-page__contact-row {
    font-size: 1rem;
  }
}

.privacy-policy-page__contact-row + .privacy-policy-page__contact-row {
  margin-top: 0.5rem;
}

.privacy-policy-page__contact-label {
  font-weight: 500;
}

.privacy-policy-page__date {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: #282828;
  text-align: right;
}
@media screen and (min-width: 780px) {
  .privacy-policy-page__date {
    margin-top: 3rem;
    font-size: 0.9375rem;
  }
}

.tokusho-page__label {
  color: #c2c2c2;
  font-size: 0.9375rem;
  font-family: "Atlanta Demi", sans-serif;
}
@media screen and (min-width: 780px) {
  .tokusho-page__label {
    font-size: 0.875rem;
  }
}

.tokusho-page__body {
  margin-top: 4.25rem;
}

.tokusho-page__item {
  margin: 0;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem dashed #c2c2c2;
}
@media screen and (min-width: 780px) {
  .tokusho-page__item {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.tokusho-page__item:first-of-type {
  padding-top: 0;
}

.tokusho-page__item-title {
  font-size: 1.0625rem;
  font-weight: 400;
  color: #282828;
  padding-left: 1.25rem;
  position: relative;
}
@media screen and (min-width: 780px) {
  .tokusho-page__item-title {
    font-size: 1.125rem;
  }
}

.tokusho-page__item-title::before {
  content: "■";
  position: absolute;
  left: 0;
  font-size: 1.0625rem;
}
@media screen and (min-width: 780px) {
  .tokusho-page__item-title::before {
    font-size: 0.875rem;
  }
}

.tokusho-page__item-text {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #282828;
  line-height: 1.8;
  margin: 0;
  padding-left: 0.25rem;
}
@media screen and (min-width: 780px) {
  .tokusho-page__item-text {
    font-size: 1rem;
  }
}

.tokusho-page__item-list {
  margin: 0;
  padding-left: 1.125rem;
  list-style: disc;
}

.tokusho-page__item-list li {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #282828;
  line-height: 1.8;
}
@media screen and (min-width: 780px) {
  .tokusho-page__item-list li {
    font-size: 1rem;
  }
}

.tokusho-page__item-list li:first-child {
  margin-top: 0;
}

.faq-page__intro {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #282828;
  padding-top: 2.3125rem;
}
@media screen and (min-width: 780px) {
  .faq-page__intro {
    font-size: 0.875rem;
    padding-top: 2.625rem;
  }
}

.faq-page__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: 1.125rem;
  margin-top: 1.75rem;
}
@media screen and (min-width: 780px) {
  .faq-page__list {
    gap: 0.875rem;
    margin-top: 3.5rem;
  }
}

.faq-page__item {
  border: 0.0625rem solid #c2c2c2;
  background: #ffffff;
  padding: 0 0.625rem;
  -webkit-box-shadow: 0.125rem 0.125rem 0.125rem rgba(0, 0, 0, 0.15);
          box-shadow: 0.125rem 0.125rem 0.125rem rgba(0, 0, 0, 0.15);
}
.faq-page__item summary::-webkit-details-marker {
  display: none;
}
@media screen and (min-width: 780px) {
  .faq-page__item {
    padding: 0 1.25rem;
  }
}

.faq-page__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  cursor: pointer;
}
@media screen and (min-width: 780px) {
  .faq-page__question {
    gap: 1rem;
  }
}

/* 矢印（Qテキストの右側に表示） */
.faq-page__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid #e86d4d;
  border-bottom: 2px solid #e86d4d;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.35s ease-out;
  transition: -webkit-transform 0.35s ease-out;
  transition: transform 0.35s ease-out;
  transition: transform 0.35s ease-out, -webkit-transform 0.35s ease-out;
}

/* 開いた時 */
.faq-page__item--open .faq-page__icon,
.faq-page__item[open] .faq-page__icon {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.faq-page__question-label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: top;
}

.faq-page__question-text {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #282828;
}
@media screen and (min-width: 780px) {
  .faq-page__question-text {
    font-size: 1rem;
  }
}

.faq-page__answer {
  height: 0;
  overflow: hidden;
}

.faq-page__answer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-top: 1px dotted #c2c2c2;
}
@media screen and (min-width: 780px) {
  .faq-page__answer-inner {
    gap: 1rem;
  }
}

.faq-page__answer-label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.875rem;
  height: 1.875rem;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: top;
}

.faq-page__answer-text {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #282828;
  line-height: 1.8;
}
@media screen and (min-width: 780px) {
  .faq-page__answer-text {
    font-size: 1rem;
  }
}

.column-page__lead {
  margin-top: 1.1875rem;
  font-size: 0.9375rem;
  font-weight: 500;
}
@media screen and (min-width: 780px) {
  .column-page__lead {
    margin-top: 2rem;
  }
}

.column-page__layout {
  margin-top: 3rem;
}
@media screen and (min-width: 780px) {
  .column-page__layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 3.0625rem;
    margin-top: 4.5rem;
  }
}

.column-page__sidebar {
  display: none;
}
@media screen and (min-width: 780px) {
  .column-page__sidebar {
    display: block;
    width: 9.375rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-item-align: start;
        align-self: flex-start;
    /* sticky が効かない場合に備えて親の aside 自体でも固定 */
    position: sticky;
    /* まずは動作確認（ヘッダー分オフセットが原因で発火してない可能性を潰す） */
    top: 6.25rem;
  }
}

.column-page__sidebar-title {
  display: none;
}
@media screen and (min-width: 780px) {
  .column-page__sidebar-title {
    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: 100%;
    height: 3.5rem;
    background-color: #0a2c52;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 400;
    font-family: "Atlanta Demi", sans-serif;
    text-transform: lowercase;
  }
}

@media screen and (min-width: 780px) {
  .column-page__category-list {
    margin-top: 1.5rem;
  }
}

@media screen and (min-width: 780px) {
  .column-page__category-item {
    border-bottom: 0.0625rem solid #c2c2c2;
    padding-bottom: 0.3125rem;
  }
}

.column-page__category-item + .column-page__category-item {
  margin-top: 1rem;
}

.column-page__category-link {
  position: relative;
  display: inline-block;
  padding-left: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #282828;
}

.column-page__category-link::before {
  content: "";
  position: absolute;
  top: 0.375rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #282828;
}

.column-page__section {
  scroll-margin-top: 6.25rem;
}

.column-page__section + .column-page__section {
  margin-top: 4.5rem;
}
@media screen and (min-width: 780px) {
  .column-page__section + .column-page__section {
    margin-top: 6.125rem;
  }
}

.column-page__section-title {
  position: relative;
  padding-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 780px) {
  .column-page__section-title {
    font-size: 1.875rem;
  }
}

.column-page__section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: #e7e7e7;
}
@media screen and (min-width: 780px) {
  .column-page__section-title::after {
    height: 0.625rem;
  }
}

.column-page__cards {
  margin-top: 1.5rem;
}
@media screen and (min-width: 780px) {
  .column-page__cards {
    margin-top: 1.125rem;
  }
}

.column-card + .column-card {
  margin-top: 1.5rem;
}
@media screen and (min-width: 780px) {
  .column-card + .column-card {
    margin-top: 1rem;
  }
}

.column-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
@media screen and (min-width: 780px) {
  .column-card__link {
    gap: 1.5rem;
  }
}

.column-card__image {
  aspect-ratio: 150/150;
  width: 100%;
  max-width: 9.375rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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

.column-card__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding-top: 0.375rem;
}
@media screen and (min-width: 780px) {
  .column-card__content {
    padding-top: 0.625rem;
  }
}

.column-card__date {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #282828;
  text-decoration: underline;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.25rem;
}

.column-card__title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #282828;
  text-decoration: underline;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.25rem;
}

.column-card__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1.0625rem;
  margin-top: 1.3125rem;
  position: relative;
}
@media screen and (min-width: 780px) {
  .column-card__more {
    margin-top: 1.75rem;
  }
}

.column-card__more-icon {
  width: 1.125rem;
  height: 1.125rem;
}

.column-card__more-text {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #5c5c5c;
}

@media screen and (min-width: 780px) {
  .column-page__cta {
    margin-top: 7.5rem;
  }
}

.column-single__lead {
  font-size: 0.9375rem;
  font-weight: 400;
  padding-top: 1.1875rem;
}
@media screen and (min-width: 780px) {
  .column-single__lead {
    font-size: 1.0625rem;
    padding-top: 2.5rem;
  }
}

.column-single__header-block {
  margin-top: 1.5rem;
}
@media screen and (min-width: 780px) {
  .column-single__header-block {
    margin-top: 2rem;
  }
}

.column-single__category-name {
  font-size: 1.25rem;
  font-weight: 700;
  padding-bottom: 0.3125rem;
  border-bottom: 0.625rem solid #e7e7e7;
}
@media screen and (min-width: 780px) {
  .column-single__category-name {
    font-size: 1.875rem;
  }
}

.column-single__title {
  margin-top: 1.1875rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 780px) {
  .column-single__title {
    margin-top: 1rem;
    font-size: 1.625rem;
    line-height: 1.6;
  }
}

.column-single__layout {
  margin-top: 1.75rem;
}
@media screen and (min-width: 780px) {
  .column-single__layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 3rem;
    margin-top: 6.0625rem;
  }
}

.column-single__main {
  width: 100%;
  min-width: 0;
}
@media screen and (min-width: 780px) {
  .column-single__main {
    width: calc(100% - 12.375rem);
  }
}

.column-single__sidebar {
  display: none;
}
@media screen and (min-width: 780px) {
  .column-single__sidebar {
    display: block;
    width: 9.375rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-item-align: start;
        align-self: flex-start;
    /* sticky が効かない場合に備えて親の aside 自体でも固定 */
    position: sticky;
    /* まずは動作確認（ヘッダー分オフセットが原因で発火してない可能性を潰す） */
    top: 6.25rem;
  }
}

@media screen and (min-width: 780px) {
  .column-single__sidebar-inner {
    position: sticky;
    top: 7.5rem;
  }
}

.column-single__sidebar-title {
  display: none;
}
@media screen and (min-width: 780px) {
  .column-single__sidebar-title {
    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: 100%;
    height: 2.5rem;
    background-color: #0a2c52;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 400;
    font-family: "Atlanta Demi", sans-serif;
    text-transform: lowercase;
  }
}

@media screen and (min-width: 780px) {
  .column-single__category-list {
    margin-top: 1.4375rem;
  }
}

@media screen and (min-width: 780px) {
  .column-single__category-item {
    border-bottom: 0.0625rem solid #c2c2c2;
    padding-bottom: 0.3125rem;
  }
}

.column-single__category-item + .column-single__category-item {
  margin-top: 1rem;
}

.column-single__category-link {
  position: relative;
  display: inline-block;
  padding-left: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #282828;
}

.column-single__category-link::before {
  content: "";
  position: absolute;
  top: 0.375rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #282828;
}

.column-single__content {
  margin-top: 1.125rem;
  font-size: 0.875rem;
  line-height: 1.9;
  color: #282828;
}
@media screen and (min-width: 780px) {
  .column-single__content {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.column-single__content > *:first-child {
  margin-top: 0;
}

.column-single__content p {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}
@media screen and (min-width: 780px) {
  .column-single__content p {
    font-size: 0.875rem;
  }
}

.column-single__content h2 {
  margin-top: 2.5rem;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.4;
  color: #282828;
}
@media screen and (min-width: 780px) {
  .column-single__content h2 {
    margin-top: 5rem;
  }
}

.column-single__content h3 {
  margin-top: 2rem;
  padding: 0.625rem 0.3125rem;
  background-color: #e9e9e9;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6;
  color: #282828;
}
@media screen and (min-width: 780px) {
  .column-single__content h3 {
    margin-top: 3.75rem;
    padding: 0.625rem 1rem;
    font-size: 1.25rem;
  }
}

.column-single__content h4 {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.7;
  color: #282828;
}
@media screen and (min-width: 780px) {
  .column-single__content h4 {
    margin-top: 2rem;
    font-size: 1rem;
  }
}

.column-single__content img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 1.25rem;
}
@media screen and (min-width: 780px) {
  .column-single__content img {
    margin-top: 1.5rem;
  }
}

.column-single__content figure {
  margin-top: 1.25rem;
}
@media screen and (min-width: 780px) {
  .column-single__content figure {
    margin-top: 1.5rem;
  }
}

.column-single__content figure img {
  margin-top: 0;
}

.column-single__content figcaption {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #666;
}
@media screen and (min-width: 780px) {
  .column-single__content figcaption {
    font-size: 0.8125rem;
  }
}

.column-single__content ul {
  margin-top: 1rem;
  padding-left: 1.25rem;
}
@media screen and (min-width: 780px) {
  .column-single__content ul {
    margin-top: 1.25rem;
  }
}

.column-single__content ol {
  margin-top: 1rem;
  padding-left: 1.25rem;
}
@media screen and (min-width: 780px) {
  .column-single__content ol {
    margin-top: 1.25rem;
  }
}

.column-single__content li {
  line-height: 1.6;
  font-size: 0.9375rem;
}

.column-single__content li + li {
  margin-top: 0.625rem;
}

.column-single__content blockquote {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #f5f5f5;
  border-left: 0.25rem solid red;
}
@media screen and (min-width: 780px) {
  .column-single__content blockquote {
    margin-top: 2rem;
    padding: 1.25rem;
  }
}

.column-single__content a {
  color: #282828;
  text-decoration: underline;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.1875rem;
}

.column-single__content strong {
  font-weight: 700;
}

.column-single__content table {
  width: 100%;
  margin-top: 1.25rem;
  border-collapse: collapse;
}
@media screen and (min-width: 780px) {
  .column-single__content table {
    margin-top: 1.5rem;
  }
}

.column-single__content th {
  padding: 0.625rem;
  border: 0.0625rem solid #ccc;
  background-color: #f5f5f5;
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}
@media screen and (min-width: 780px) {
  .column-single__content th {
    padding: 0.75rem;
    font-size: 0.875rem;
  }
}

.column-single__content td {
  padding: 0.625rem;
  border: 0.0625rem solid #ccc;
  font-size: 0.8125rem;
  vertical-align: top;
}
@media screen and (min-width: 780px) {
  .column-single__content td {
    padding: 0.75rem;
    font-size: 0.875rem;
  }
}

.column-single__content hr {
  margin-top: 1.75rem;
  border: 0;
  border-top: 0.0625rem solid #ddd;
}
@media screen and (min-width: 780px) {
  .column-single__content hr {
    margin-top: 2.25rem;
  }
}

.column-single__cta {
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .column-single__cta {
    margin-top: 5rem;
  }
}

/* 青背景（見出しや強調） */
.is-style-blue-box {
  margin-top: 2.8125rem !important;
  padding: 0.625rem 0.3125rem;
  background-color: #092843;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.6;
  font-size: 0.9375rem;
}
@media screen and (min-width: 780px) {
  .is-style-blue-box {
    font-size: 1.25rem;
  }
}

/* まとめボックス */
.column-single__content .is-style-summary-box {
  padding: 0.3125rem;
  margin-top: 1.25rem;
  background-color: #e7e7e7;
}
@media screen and (min-width: 780px) {
  .column-single__content .is-style-summary-box {
    padding: 1.875rem;
  }
}

.column-single__content .is-style-summary-box .wp-block-group__inner-container {
  display: block;
}

.column-single__content .is-style-summary-box p:first-child {
  font-weight: 500;
  font-size: 1.25rem;
  margin-top: 0;
}

.column-single__content .is-style-summary-box p:nth-of-type(2) {
  margin-top: 1.25rem;
}
@media screen and (min-width: 780px) {
  .column-single__content .is-style-summary-box p:nth-of-type(2) {
    font-size: 0.8125rem;
  }
}

.wp-block-list ul,
.wp-block-list li,
.wp-block-list ol {
  list-style: disc;
}

.price-page__intro {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #282828;
  padding-top: 1.9375rem;
}
@media screen and (min-width: 780px) {
  .price-page__intro {
    font-size: 1.0625rem;
  }
}

.price-page__plan-section {
  margin-top: 3.4375rem;
}
@media screen and (min-width: 780px) {
  .price-page__plan-section {
    margin-top: 4.5rem;
  }
}

.price-page__plan-header {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 780px) {
  .price-page__plan-header {
    margin-bottom: 2rem;
  }
}

.price-page__plan-title-sub {
  font-size: 1.375rem;
  font-weight: 700;
  color: #adadad;
  border-bottom: 0.3125rem solid #ebebeb;
}
@media screen and (min-width: 780px) {
  .price-page__plan-title-sub {
    font-size: 2.1875rem;
  }
}

.price-page__plan-title-main {
  font-size: 1.25rem;
  font-weight: 700;
  color: #282828;
  line-height: 1.4;
  padding-top: 0.6875rem;
}
@media screen and (min-width: 780px) {
  .price-page__plan-title-main {
    font-size: 2.375rem;
  }
}

.price-page__plan-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: 1.25rem;
  padding: 1.25rem 0.625rem 1.25rem 0.625rem;
  background-image: url(../images/price/bg_sp2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-origin: border-box;
  width: 100%;
  background-position: center;
}
@media screen and (min-width: 780px) {
  .price-page__plan-list {
    gap: 1.5rem;
    background-image: url(../images/price/bg_pc2x.png);
    height: 66.4375rem;
  }
}

.price-page__plan-item {
  background: #ffffff;
  border: 0.0625rem solid #d9d9d9;
  -webkit-box-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
          box-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
  max-width: 24.375rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .price-page__plan-item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 7.5rem 1fr 1fr;
    grid-template-columns: 7.5rem 1fr 1fr;
    max-width: 47.5rem;
  }
}

.price-page__plan-visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  padding: 1.5rem 0;
  color: #ffffff;
}
@media screen and (min-width: 780px) {
  .price-page__plan-visual {
    -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;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    gap: 0.625rem;
    padding: 1.25rem 0.75rem;
    min-height: 7.5rem;
  }
}

.price-page__plan-visual-icon {
  margin-left: 0.6875rem;
  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;
}

.price-page__plan-item--light .price-page__plan-visual {
  background: #9a9a9a;
}

.price-page__plan-item--basic .price-page__plan-visual {
  background: #0a3558;
}

.price-page__plan-item--standard .price-page__plan-visual {
  background: #ef6548;
}

.price-page__plan-item--premium .price-page__plan-visual {
  background: #ae9900;
}

.price-page__plan-item--light .price-page__plan-visual-icon {
  width: 2.25rem;
  height: 1.4375rem;
}
@media screen and (min-width: 780px) {
  .price-page__plan-item--light .price-page__plan-visual-icon {
    width: 2.75rem;
    height: 4.9375rem;
  }
}

.price-page__plan-item--basic .price-page__plan-visual-icon {
  width: 2.5rem;
  height: 1.6875rem;
}
@media screen and (min-width: 780px) {
  .price-page__plan-item--basic .price-page__plan-visual-icon {
    width: 3.3125rem;
    height: 4.4375rem;
  }
}

.price-page__plan-item--standard .price-page__plan-visual-icon {
  width: 3.3125rem;
  height: 1.625rem;
}
@media screen and (min-width: 780px) {
  .price-page__plan-item--standard .price-page__plan-visual-icon {
    width: 4.6875rem;
    height: 5.6875rem;
  }
}

.price-page__plan-item--premium .price-page__plan-visual-icon {
  width: 2.9375rem;
  height: 1.875rem;
}
@media screen and (min-width: 780px) {
  .price-page__plan-item--premium .price-page__plan-visual-icon {
    width: 4.3125rem;
    height: 6rem;
  }
}

.price-page__plan-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (min-width: 780px) {
  .price-page__plan-name {
    font-size: 1rem;
    text-align: center;
  }
}

.price-page__plan-body {
  padding: 1.125rem 1rem 1rem;
}
@media screen and (min-width: 780px) {
  .price-page__plan-body {
    display: contents;
  }
}

@media screen and (min-width: 780px) {
  .price-page__plan-content {
    padding: 2.3125rem 0.8125rem;
  }
}

.price-page__plan-item-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #282828;
}
@media screen and (min-width: 780px) {
  .price-page__plan-item-title {
    font-size: 1.125rem;
  }
}

.price-page__plan-sub {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #282828;
}
@media screen and (min-width: 780px) {
  .price-page__plan-sub {
    font-size: 0.8125rem;
  }
}

.price-page__plan-desc {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #282828;
  line-height: 1.7;
}
@media screen and (min-width: 780px) {
  .price-page__plan-desc {
    font-size: 0.9375rem;
    margin-top: 0.75rem;
  }
}

@media screen and (min-width: 780px) {
  .price-page__pricing {
    margin-left: 4.375rem;
  }
}

.price-page__price-list {
  margin-top: 1.125rem;
}
@media screen and (min-width: 780px) {
  .price-page__price-list {
    margin-top: 0;
    padding: 1.125rem 1.25rem 1rem 0;
  }
}

.price-page__price-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
@media screen and (min-width: 780px) {
  .price-page__price-item {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.price-page__price-item + .price-page__price-item {
  margin-top: 0.625rem;
}

.price-page__price-term {
  font-size: 0.875rem;
  font-weight: 500;
  color: #282828;
  -webkit-box-flex: 7.5rem;
      -ms-flex: 7.5rem 0;
          flex: 7.5rem 0;
}

.price-page__price-description {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.5625rem;
  font-weight: 700;
  color: #282828;
  white-space: nowrap;
}

.price-page__price-unit {
  font-size: 1.25rem;
  font-weight: 700;
  padding-right: 0.1875rem;
}
@media screen and (min-width: 780px) {
  .price-page__price-unit {
    font-size: 1.5625rem;
  }
}

.price-page__tax {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #282828;
}
@media screen and (min-width: 780px) {
  .price-page__tax {
    font-size: 0.5625rem;
  }
}

.price-page__set-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.625rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 0.0625rem dotted #d9d9d9;
}
@media screen and (min-width: 780px) {
  .price-page__set-price {
    padding: 0rem 1.25rem 1rem 0;
  }
}

.price-page__set-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 5.3125rem;
  min-height: 2.1875rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
}

.price-page__set-price--light .price-page__set-label {
  background: #9a9a9a;
}

.price-page__set-price--basic .price-page__set-label {
  background: #0a3558;
}

.price-page__set-price--standard .price-page__set-label {
  background: #ef6548;
}

.price-page__set-price--premium .price-page__set-label {
  background: #ae9900;
}

.price-page__set-value {
  font-size: 2.1875rem;
  font-weight: 700;
  color: #282828;
  white-space: nowrap;
}

@media screen and (min-width: 780px) {
  .price-page__cta {
    margin-top: 5rem;
  }
}

.company-page__header {
  margin-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1.125rem;
}
@media screen and (min-width: 780px) {
  .company-page__header {
    margin-top: 5.5rem;
  }
}

.company-page__title-sub {
  font-size: 1.25rem;
  color: #adadad;
  font-family: "Atlanta Demi", sans-serif;
  font-weight: 900;
}
@media screen and (min-width: 780px) {
  .company-page__title-sub {
    font-size: 2.1875rem;
  }
}

.company-page__title-main {
  font-size: 0.9375rem;
  font-weight: 400;
}

.company-page__content {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 780px) {
  .company-page__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 3rem 15.625rem;
    grid-template-columns: 1fr 15.625rem;
    gap: 3rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-top: 2rem;
  }
}

.company-page__intro {
  font-size: 0.9375rem;
  font-weight: 400;
}
@media screen and (min-width: 780px) {
  .company-page__intro {
    font-size: 0.875rem;
  }
}

.company-page__image {
  margin-top: 1.75rem;
  aspect-ratio: 268/268;
  max-width: 16.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .company-page__image {
    margin-top: 0;
  }
}

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

.company-page__image-caption {
  margin-top: 1.125rem;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
}

@media screen and (min-width: 780px) {
  .company-page__image-caption span {
    font-size: 1rem;
    font-weight: 400;
  }
}

.company-page__mission-vision {
  margin-top: 4.375rem;
}
@media screen and (min-width: 780px) {
  .company-page__mission-vision {
    margin-top: 7.6875rem;
  }
}

.company-page__mission-vision-header {
  padding-bottom: 0.9375rem;
  border-bottom: 0.4375rem solid #ebebeb;
  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: 780px) {
  .company-page__mission-vision-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 1.4375rem;
    padding-bottom: 0;
  }
}

.company-page__mission-vision-title-sub {
  font-size: 1.875rem;
  color: #adadad;
  font-family: "Atlanta Demi", sans-serif;
  font-weight: 900;
}
@media screen and (min-width: 780px) {
  .company-page__mission-vision-title-sub {
    font-size: 2.1875rem;
  }
}

.company-page__mission-vision-title-main {
  font-size: 0.9375rem;
  font-weight: 400;
  margin-top: -0.375rem;
}

.company-page__mission-vision-list {
  margin-top: 1.9375rem;
}
@media screen and (min-width: 780px) {
  .company-page__mission-vision-list {
    margin-top: 2.25rem;
  }
}

.company-page__mission-vision-item {
  position: relative;
}

.company-page__mission-vision-item + .company-page__mission-vision-item {
  margin-top: 3.5rem;
}
@media screen and (min-width: 780px) {
  .company-page__mission-vision-item + .company-page__mission-vision-item {
    margin-top: 1.4375rem;
  }
}

.company-page__mission-vision-item::before {
  content: "";
  position: absolute;
  width: 7.875rem;
  height: 7.875rem;
  border-radius: 50%;
  background: #e55b3f;
  z-index: 0;
}
@media screen and (min-width: 780px) {
  .company-page__mission-vision-item::before {
    width: 10.9375rem;
    height: 10.9375rem;
  }
}

.company-page__mission-vision-item--mission::before {
  left: 0.5rem;
  top: 1.75rem;
}
@media screen and (min-width: 780px) {
  .company-page__mission-vision-item--mission::before {
    left: 1.125rem;
    top: 2.125rem;
  }
}

.company-page__mission-vision-item--vision::before {
  right: 0.5rem;
  top: 2.125rem;
}
@media screen and (min-width: 780px) {
  .company-page__mission-vision-item--vision::before {
    right: 1.125rem;
    top: 2.375rem;
  }
}

.company-page__mission-vision-heading {
  position: relative;
  z-index: 1;
  font-size: 4.375rem;
  font-family: "Atlanta Demi", sans-serif;
  color: #282828;
}
@media screen and (min-width: 780px) {
  .company-page__mission-vision-heading {
    font-size: 6.25rem;
  }
}

.company-page__mission-vision-item--vision .company-page__mission-vision-heading {
  text-align: right;
}

.company-page__mission-vision-text {
  position: relative;
  z-index: 1;
  padding-top: 1.875rem;
  font-size: 0.9375rem;
  font-weight: 400;
}
@media screen and (min-width: 780px) {
  .company-page__mission-vision-text {
    padding-top: 1.25rem;
    font-size: 0.875rem;
    line-height: 2;
  }
}

@media screen and (min-width: 780px) {
  .company-page__mission-vision-item--vision .company-page__mission-vision-text {
    text-align: right;
  }
}

.company-page__list {
  margin-top: 3.1875rem;
  display: -ms-grid;
  display: grid;
  gap: 1.25rem;
}
@media screen and (min-width: 780px) {
  .company-page__list {
    margin-top: 3.375rem;
    -ms-grid-columns: 1fr 2.125rem 1fr 2.125rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.125rem;
  }
}

.company-page__item {
  background-image: linear-gradient(to right, rgba(120, 190, 255, 0.18) 1px, transparent 1px), linear-gradient(to bottom, rgba(120, 190, 255, 0.18) 1px, transparent 1px);
  background-size: 0.75rem 0.75rem;
  background-color: #fafafa;
  padding: 1.75rem 1.125rem 1.375rem;
  -webkit-box-shadow: 0.125rem 0.125rem 0.125rem rgba(0, 0, 0, 0.15);
          box-shadow: 0.125rem 0.125rem 0.125rem rgba(0, 0, 0, 0.15);
  max-width: 22.0625rem;
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 3;
  grid-row: span 3;
  gap: 0;
}
@media screen and (min-width: 780px) {
  .company-page__item {
    padding: 2.125rem 1.375rem 1.625rem;
    max-width: 15.1875rem;
  }
}

.company-page__item-image {
  margin-inline: auto;
}

.company-page__item-image--01 {
  width: 5rem;
  height: 4.875rem;
}

.company-page__item-image--02 {
  width: 4.5625rem;
  height: 4.3125rem;
}

.company-page__item-image--03 {
  width: 6.1875rem;
  height: 4.3125rem;
}

.company-page__item-title {
  padding-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .company-page__item-title {
    padding-top: 1rem;
  }
}

.company-page__item-text {
  padding-top: 1.1875rem;
  font-size: 0.9375rem;
  font-weight: 400;
}
@media screen and (min-width: 780px) {
  .company-page__item-text {
    padding-top: 1.3125rem;
    font-size: 0.875rem;
  }
}

.company-page__company {
  margin-top: 4.5rem;
}
@media screen and (min-width: 780px) {
  .company-page__company {
    margin-top: 5.625rem;
  }
}

.company-page__section-header {
  padding-bottom: 0.9375rem;
  border-bottom: 0.4375rem solid #ebebeb;
  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: 780px) {
  .company-page__section-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 1.4375rem;
    padding-bottom: 0;
  }
}

.company-page__section-title-sub {
  font-size: 1.875rem;
  color: #adadad;
  font-family: "Atlanta Demi", sans-serif;
  font-weight: 900;
}
@media screen and (min-width: 780px) {
  .company-page__section-title-sub {
    font-size: 2.1875rem;
  }
}

.company-page__section-title-main {
  font-size: 0.9375rem;
  font-weight: 400;
  margin-top: -0.375rem;
}
@media screen and (min-width: 780px) {
  .company-page__section-title-main {
    margin-top: 0;
  }
}

.company-page__company-layout {
  margin-top: 1.5rem;
}
@media screen and (min-width: 780px) {
  .company-page__company-layout {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2.25rem 18.75rem;
    grid-template-columns: 1fr 18.75rem;
    gap: 2.25rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 2rem;
  }
}

.company-page__company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-page__company-row {
  border-bottom: 0.0625rem dotted #9a9a9a;
}

.company-page__company-head {
  width: 5.375rem;
  padding: 0.75rem 0.625rem 0.75rem 0;
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}
@media screen and (min-width: 780px) {
  .company-page__company-head {
    width: 7.5rem;
    padding: 0.875rem 1rem 0.875rem 0;
    font-size: 0.8125rem;
  }
}

.company-page__company-data {
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  font-weight: 400;
  vertical-align: top;
}
@media screen and (min-width: 780px) {
  .company-page__company-data {
    padding: 0.875rem 0;
    font-size: 0.8125rem;
  }
}

.company-page__company-link {
  color: #282828;
  text-decoration: none;
}

.company-page__company-image {
  margin-top: 2.25rem;
  aspect-ratio: 272/237;
  width: 100%;
  max-width: 17rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .company-page__company-image {
    margin-top: 0;
  }
}

.company-page__company-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.company-page__access {
  margin-top: 4.75rem;
}
@media screen and (min-width: 780px) {
  .company-page__access {
    margin-top: 7rem;
    margin-bottom: 7.5rem;
  }
}

.company-page__access-layout {
  margin-top: 1.5rem;
}
@media screen and (min-width: 780px) {
  .company-page__access-layout {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    margin-top: 2rem;
  }
}

.company-page__access-map iframe {
  display: block;
  width: 100%;
  height: 15rem;
}
@media screen and (min-width: 780px) {
  .company-page__access-map iframe {
    height: 16.75rem;
    width: 25.0625rem;
  }
}

.company-page__access-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  margin-top: 1.125rem;
}
@media screen and (min-width: 780px) {
  .company-page__access-info {
    -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: 1rem;
  }
}

.company-page__access-icon {
  width: 2.75rem;
  height: 3.875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 780px) {
  .company-page__access-icon {
    width: 3rem;
  }
}

.company-page__access-text {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 780px) {
  .company-page__access-text {
    font-size: 0.8125rem;
  }
}

.contact-page__intro {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 400;
}
@media screen and (min-width: 780px) {
  .contact-page__intro {
    margin-top: 2rem;
    font-size: 1.0625rem;
  }
}

.contact-form {
  margin-top: 1.25rem;
}
@media screen and (min-width: 780px) {
  .contact-form {
    margin-top: 3.4375rem;
  }
}

.contact-form__row {
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
  border-bottom: 1px dotted #9a9a9a;
}
@media screen and (min-width: 780px) {
  .contact-form__row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 15.625rem 1.75rem 1fr;
    grid-template-columns: 15.625rem 1fr;
    -webkit-column-gap: 1.75rem;
       -moz-column-gap: 1.75rem;
            column-gap: 1.75rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.contact-form__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem 0.625rem;
}
@media screen and (min-width: 780px) {
  .contact-form__head {
    padding-top: 0.5rem;
  }
}

@media screen and (min-width: 780px) {
  .contact-form__head--no-required {
    padding-left: 3.875rem;
  }
}

.contact-form__required {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 2.5rem;
  height: 1.25rem;
  padding: 0 0.5rem;
  border-radius: 0.25rem;
  background: #e94c4c;
  font-size: 0.625rem;
  font-weight: 500;
  color: #ffffff;
}
@media screen and (min-width: 780px) {
  .contact-form__required {
    min-width: 3.125rem;
    height: 1.5625rem;
    font-size: 0.75rem;
  }
}

.contact-form__label {
  font-size: 0.9375rem;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.contact-form__note {
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 400;
}
@media screen and (min-width: 780px) {
  .contact-form__note {
    margin-top: 0;
    margin-left: 0;
  }
}

.contact-form__body {
  margin-top: 0.75rem;
}
@media screen and (min-width: 780px) {
  .contact-form__body {
    margin-top: 0;
  }
}

.contact-form__input {
  display: block;
  width: 100%;
  height: 2.5rem;
  padding: 0 0.875rem;
  background: #ececec;
  font-size: 0.75rem;
  font-weight: 400;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (min-width: 780px) {
  .contact-form__input {
    height: 2.625rem;
    padding: 0 0.875rem;
  }
}

.contact-form__input::-webkit-input-placeholder {
  color: #bfbfbf;
}

.contact-form__input::-moz-placeholder {
  color: #bfbfbf;
}

.contact-form__input:-ms-input-placeholder {
  color: #bfbfbf;
}

.contact-form__input::-ms-input-placeholder {
  color: #bfbfbf;
}

.contact-form__input::placeholder {
  color: #bfbfbf;
}

.contact-form__input:focus {
  outline: 1px solid #999999;
  background: #f5f5f5;
}

.contact-form__input--small {
  margin-top: 0.75rem;
  height: 3.75rem;
  width: 50%;
  margin-left: auto;
}
@media screen and (min-width: 780px) {
  .contact-form__input--small {
    margin-top: 0.625rem;
    width: 100%;
  }
}

.contact-form__check-group {
  display: -ms-grid;
  display: grid;
  gap: 0.875rem 1.125rem;
}
@media screen and (min-width: 780px) {
  .contact-form__check-group {
    gap: 0.875rem 1.75rem;
  }
}

.contact-form__check--lp {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
}
@media screen and (min-width: 780px) {
  .contact-form__check--lp {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
}

.contact-form__check--business-card {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
}
@media screen and (min-width: 780px) {
  .contact-form__check--business-card {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
}

.contact-form__check--career {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 5;
  grid-row: 5;
}
@media screen and (min-width: 780px) {
  .contact-form__check--career {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 1;
    grid-row: 1;
  }
}

.contact-form__check--company-guide {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  grid-row: 2;
}
@media screen and (min-width: 780px) {
  .contact-form__check--company-guide {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}

.contact-form__check--website {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  grid-row: 2;
}
@media screen and (min-width: 780px) {
  .contact-form__check--website {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}

.contact-form__check--other {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 5;
  grid-row: 5;
}
@media screen and (min-width: 780px) {
  .contact-form__check--other {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 4;
    grid-row: 4;
  }
}

.contact-form__check--recruit {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 3;
  grid-row: 3;
}
@media screen and (min-width: 780px) {
  .contact-form__check--recruit {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    grid-row: 3;
  }
}

.contact-form__check--ebook {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 3;
  grid-row: 3;
}
@media screen and (min-width: 780px) {
  .contact-form__check--ebook {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 3;
    grid-row: 3;
  }
}

.contact-form__check--ai {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 4;
  grid-row: 4;
}
@media screen and (min-width: 780px) {
  .contact-form__check--ai {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 3;
    grid-row: 3;
  }
}

.contact-form__check--product {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 4;
  grid-row: 4;
}
@media screen and (min-width: 780px) {
  .contact-form__check--product {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}

.contact-form__input--other {
  max-width: 10rem;
  margin-top: 0.75rem;
  margin-left: auto;
}
@media screen and (min-width: 780px) {
  .contact-form__input--other {
    max-width: 13.125rem;
  }
}

.contact-form__check-group--contact {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}
@media screen and (min-width: 780px) {
  .contact-form__check-group--contact {
    -ms-grid-columns: auto 2.25rem auto 2.25rem auto;
    grid-template-columns: repeat(3, auto);
    gap: 1.125rem 2.25rem;
  }
}

.contact-form__check {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  cursor: pointer;
}

.contact-form__check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-form__check-box {
  position: relative;
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.0625rem solid #8c8c8c;
  background: #ebebeb;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 0.125rem;
}
@media screen and (min-width: 780px) {
  .contact-form__check-box {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.contact-form__check input:checked + .contact-form__check-box::after {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0.375rem;
  width: 0.3125rem;
  height: 0.625rem;
  border-right: 2px solid #282828;
  border-bottom: 2px solid #282828;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 780px) {
  .contact-form__check input:checked + .contact-form__check-box::after {
    top: 0.0625rem;
    left: 0.3125rem;
  }
}

.contact-form__check-text {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6;
  color: #282828;
}
@media screen and (min-width: 780px) {
  .contact-form__check-text {
    font-size: 0.8125rem;
    font-weight: 400;
  }
}

.contact-form__select-wrap {
  position: relative;
  width: 100%;
  max-width: 11.5rem;
}
@media screen and (min-width: 780px) {
  .contact-form__select-wrap {
    max-width: 10rem;
  }
}

.contact-form__select {
  display: block;
  width: 100%;
  height: 3rem;
  padding: 0 2.75rem 0 0.875rem;
  border: 0.0625rem solid #9f9f9f;
  border-radius: 0.125rem;
  background: #ececec;
  font-size: 0.9375rem;
  font-weight: 400;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
@media screen and (min-width: 780px) {
  .contact-form__select {
    height: 2.625rem;
    padding: 0 2.5rem 0 0.875rem;
    font-size: 0.8125rem;
  }
}

.contact-form__select:focus {
  outline: 1px solid #999999;
}

.contact-form__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.875rem;
  height: 0.75rem;
  border-left: 0.4375rem solid transparent;
  border-right: 0.4375rem solid transparent;
  border-top: 0.5625rem solid #282828;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
@media screen and (min-width: 780px) {
  .contact-form__select-wrap::after {
    right: 0.875rem;
  }
}

.contact-form__textarea {
  display: block;
  width: 100%;
  min-height: 13.75rem;
  padding: 0.875rem;
  border: none;
  border-radius: 0;
  background: #ececec;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
  color: #282828;
  resize: vertical;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (min-width: 780px) {
  .contact-form__textarea {
    min-height: 11.875rem;
    font-size: 0.875rem;
  }
}

.contact-form__textarea::-webkit-input-placeholder {
  color: #bfbfbf;
}

.contact-form__textarea::-moz-placeholder {
  color: #bfbfbf;
}

.contact-form__textarea:-ms-input-placeholder {
  color: #bfbfbf;
}

.contact-form__textarea::-ms-input-placeholder {
  color: #bfbfbf;
}

.contact-form__textarea::placeholder {
  color: #bfbfbf;
}

.contact-form__textarea:focus {
  outline: 1px solid #999999;
  background: #f5f5f5;
}

.contact-form__privacy {
  margin-top: 2.125rem;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .contact-form__privacy {
    margin-top: 2.5rem;
  }
}

.contact-form__agree {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  cursor: pointer;
}

.contact-form__agree input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-form__agree-box {
  position: relative;
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.0625rem solid #8c8c8c;
  background: #ebebeb;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 0.125rem;
}

.contact-form__agree input:checked + .contact-form__agree-box::after {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0.375rem;
  width: 0.3125rem;
  height: 0.625rem;
  border-right: 2px solid #282828;
  border-bottom: 2px solid #282828;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.contact-form__agree-text {
  font-size: 0.9375rem;
  font-weight: 400;
}
@media screen and (min-width: 780px) {
  .contact-form__agree-text {
    font-size: 0.8125rem;
  }
}

.contact-form__privacy-text {
  margin-top: 1.375rem;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #282828;
}
@media screen and (min-width: 780px) {
  .contact-form__privacy-text {
    margin-top: 1.125rem;
    font-size: 0.8125rem;
    line-height: 1.8;
  }
}

.contact-form__privacy-link-wrap {
  margin-top: 0.625rem;
}

.contact-form__privacy-link {
  display: inline-block;
  padding-bottom: 0.1875rem;
  border-bottom: 0.0625rem solid #282828;
  font-size: 0.9375rem;
  font-weight: 400;
  text-decoration: none;
  color: #282828;
}
@media screen and (min-width: 780px) {
  .contact-form__privacy-link {
    font-size: 0.8125rem;
  }
}

.contact-form__submit {
  margin-top: 1.75rem;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .contact-form__submit {
    margin-top: 1.875rem;
  }
}

.contact-form__submit-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 12.5rem;
  min-height: 3.75rem;
  padding: 0 1.75rem;
  border: none;
  border-radius: 624.9375rem;
  background: #00c400;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 780px) {
  .contact-form__submit-button {
    min-width: 13.75rem;
    min-height: 3.625rem;
    font-size: 1.125rem;
  }
}

.contact-form__submit-button:hover {
  opacity: 0.8;
}

.contact-form__check-group--purpose .wpcf7-form-control {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.125rem 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem 1.125rem;
}
@media screen and (min-width: 780px) {
  .contact-form__check-group--purpose .wpcf7-form-control {
    -ms-grid-columns: auto 1.75rem auto 1.75rem auto;
    grid-template-columns: repeat(3, auto);
    gap: 0.875rem 1.75rem;
  }
}

.contact-form__check-group--contact .wpcf7-form-control {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}
@media screen and (min-width: 780px) {
  .contact-form__check-group--contact .wpcf7-form-control {
    -ms-grid-columns: auto 2.25rem auto 2.25rem auto;
    grid-template-columns: repeat(3, auto);
    gap: 1.125rem 2.25rem;
  }
}

.contact-form__check-group .wpcf7-list-item {
  margin: 0;
}

.contact-form__check-group .wpcf7-list-item label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  cursor: pointer;
}

.contact-form__check-group .wpcf7-list-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-form__check-group .wpcf7-list-item-label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6;
  color: #282828;
}
@media screen and (min-width: 780px) {
  .contact-form__check-group .wpcf7-list-item-label {
    font-size: 0.8125rem;
    font-weight: 400;
  }
}

.contact-form__check-group .wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.0625rem solid #8c8c8c;
  background: #ebebeb;
  border-radius: 0.125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 780px) {
  .contact-form__check-group .wpcf7-list-item-label::before {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.contact-form__check-group .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0.4375rem;
  width: 0.3125rem;
  height: 0.625rem;
  border-right: 2px solid #282828;
  border-bottom: 2px solid #282828;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 780px) {
  .contact-form__check-group .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
    top: 0.0625rem;
    left: 0.375rem;
  }
}

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

.wpcf7-spinner {
  display: none;
}

/* CF7のcheckboxを表示させる */
.contact-form__agree input[type=checkbox] {
  display: inline-block;
  /* または visibility: visible */
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  width: 1.125rem;
  height: 1.125rem;
  opacity: 1;
}

.contact-form__agree label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-form__agree .wpcf7-list-item-label {
  padding-left: 1.875rem;
}

.thanks-page__card {
  margin-top: 2rem;
  border: 1px solid #e5e5e5;
  background: #fcfcfc;
  border-radius: 0.5rem;
  padding: 1.5rem 1rem;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .thanks-page__card {
    margin-top: 3rem;
    padding: 2.5rem 3.5rem;
  }
}

.thanks-page__status {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 2.125rem;
  padding: 0.375rem 0.875rem;
  border-radius: 62.4375rem;
  background: #f4f8fb;
  color: #092843;
  font-size: 0.8125rem;
  font-weight: 500;
}
@media screen and (min-width: 780px) {
  .thanks-page__status {
    font-size: 0.875rem;
  }
}

.thanks-page__message {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: #282828;
  font-weight: 400;
}
@media screen and (min-width: 780px) {
  .thanks-page__message {
    margin-top: 1.5rem;
    font-size: 1.0625rem;
  }
}

.thanks-page__note {
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  line-height: 1.8;
  color: #666;
}
@media screen and (min-width: 780px) {
  .thanks-page__note {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
}

.thanks-page__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.5rem;
  min-height: 3rem;
  padding: 0.625rem 1.875rem;
  border-radius: 62.4375rem;
  background: #ff9000;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 780px) {
  .thanks-page__button {
    margin-top: 1.875rem;
    min-height: 3.375rem;
    padding: 0.75rem 2.625rem;
    font-size: 0.9375rem;
  }
}

.case-page__lead {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
}
@media screen and (min-width: 780px) {
  .case-page__lead {
    margin-top: 2.125rem;
    font-size: 1.0625rem;
  }
}

.case-page__items {
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .case-page__items {
    margin-top: 3.5rem;
  }
}

.case-page__item + .case-page__item {
  margin-top: 7.5rem;
}
@media screen and (min-width: 780px) {
  .case-page__item + .case-page__item {
    margin-top: 5.1875rem;
  }
}

.case-page__item-title {
  font-size: 1.125rem;
  font-weight: 700;
  border-bottom: 0.625rem solid #ebebeb;
  padding-bottom: 0.3125rem;
}

.case-page__item-body {
  margin-top: 1rem;
}
@media screen and (min-width: 780px) {
  .case-page__item-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6.875rem;
    margin-top: 1.6875rem;
  }
}

.case-page__item-image {
  aspect-ratio: 120/200;
  max-width: 7.5rem;
}

.case-page__item-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.case-page__item-content {
  margin-top: 2rem;
}
@media screen and (min-width: 780px) {
  .case-page__item-content {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.case-page__item-block + .case-page__item-block {
  margin-top: 2.375rem;
}

.case-page__item-heading {
  font-size: 0.9375rem;
  font-weight: 400;
}

.case-page__item-text {
  font-size: 0.9375rem;
  font-weight: 400;
}

.case-page__item-meta {
  margin-top: 2.375rem;
}
@media screen and (min-width: 780px) {
  .case-page__item-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
  }
}

@media screen and (min-width: 780px) {
  .case-page__spec {
    width: 32%;
  }
}

.case-page__meta-title {
  font-size: 0.9375rem;
  font-weight: 400;
}

.case-page__spec-item {
  font-size: 0.9375rem;
  font-weight: 400;
  position: relative;
  padding-left: 1rem;
}

.case-page__spec-item::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #282828;
}

.case-page__detail {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 780px) {
  .case-page__detail {
    margin-top: 0;
    width: 60%;
  }
}

.case-page__detail-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.case-page__detail-term {
  font-size: 0.9375rem;
  font-weight: 400;
}

.case-page__detail-desc {
  font-size: 0.9375rem;
  font-weight: 400;
}

.case-page__item-button {
  margin-top: 2.375rem;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .case-page__item-button {
    text-align: right;
    margin-top: 2rem;
  }
}

.case-page__buy-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 3rem;
  background-color: #00bf48;
  border-radius: 62.4375rem;
  text-decoration: none;
}

.case-page__buy-button-icon {
  width: 1.75rem;
  height: 1.6875rem;
}

.case-page__buy-button-text {
  font-size: 0.8125rem;
  color: #ffffff;
}

.not-found-page__card {
  margin-top: 2rem;
  padding: 1.75rem 1rem;
  border: 1px solid #e5e5e5;
  background: #fcfcfc;
  border-radius: 0.5rem;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .not-found-page__card {
    margin-top: 3rem;
    padding: 2.75rem 3.5rem;
  }
}

.not-found-page__message {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: #282828;
}
@media screen and (min-width: 780px) {
  .not-found-page__message {
    font-size: 1.0625rem;
  }
}

.not-found-page__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.5rem;
  min-height: 3rem;
  padding: 0.625rem 1.875rem;
  border-radius: 62.4375rem;
  background: #ff9000;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 780px) {
  .not-found-page__button {
    margin-top: 1.875rem;
    min-height: 3.375rem;
    padding: 0.75rem 2.625rem;
    font-size: 0.9375rem;
  }
}
/*# sourceMappingURL=styles.css.map */