@charset "UTF-8";
/*
Theme Name:いとをかし
*/
/* iOSでのデフォルトスタイルをリセット */
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700;800;900&family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho&display=swap");
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

@media screen and (max-width: 959px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .pc_only {
    display: block;
  }
  .sp_only {
    display: none !important;
  }
}
/* PC幅 */
:root {
  --base-width: 1400;
}

/* SP幅 */
@media (max-width: 959px) {
  :root {
    --base-width: 959;
  }
}
html {
  scroll-behavior: smooth;
  font-size: 7.142857vw; /* 1400pxで100px */
}

@media (max-width: 959px) {
  html {
    font-size: 26.6667vw; /* 375pxで100px */
  }
}
body {
  font-size: 0.16rem;
  color: #1c305c;
  letter-spacing: 0rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  background-color: #1c305c;
}
@media screen and (max-width: 959px) {
  body {
    font-size: 0.14rem;
  }
}
body input,
body button {
  font-family: inherit;
}
body a {
  color: inherit;
}
body p {
  line-height: 1.8;
}
body strong {
  font-weight: bold;
}
body .underline {
  text-decoration: underline;
}
body img {
  max-width: 100%;
  height: auto;
}
body iframe {
  max-width: 100%;
}
@media screen and (min-width: 960px) {
  body a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

.container {
  width: 100%;
  max-width: 100%;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 7vw;
}
@media screen and (max-width: 959px) {
  .container {
    padding: 0 4vw;
  }
}

.container-mini {
  width: 100%;
  max-width: 100%;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 14vw;
}
@media screen and (max-width: 959px) {
  .container-mini {
    padding: 0 4vw;
  }
}

.margin-l-0 {
  margin-left: calc(50% - 50vw);
}

.margin-r-0 {
  margin-right: calc(50% - 50vw);
}

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

.ta-left {
  text-align: left !important;
}

.ta-center {
  text-align: center;
}

.ta-right {
  text-align: right;
}

.fd-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.bg-white {
  background-color: #fff !important;
}

.bg-baseColor {
  background-color: #1c305c;
}

.button {
  font-family: "M PLUS 1p", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.12rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.1rem 0.1rem;
  border-radius: 0.2rem;
  background-color: #1c305c;
  color: #fff;
  max-width: 2.3rem;
  height: 0.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.16rem;
  cursor: pointer;
}
.button:hover {
  opacity: 0.6;
}
.button.--white {
  background-color: #fff;
  color: #1c305c;
}
.button.--line {
  background-color: #06c655;
}
.button img {
  max-width: 0.24rem;
}

.round-button {
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  padding: 0.3rem 0.3rem;
  border-radius: 0.4rem;
  width: 100%;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 959px) {
  .round-button {
    padding: 0.2rem 0.2rem;
  }
}
.round-button:hover {
  opacity: 0.6;
}
.round-button.--accent {
  background-color: #ff5335;
  border: unset;
}

.fixed-button {
  position: fixed !important;
  right: 0.3rem;
  bottom: 0.3rem;
  z-index: 8;
}
@media screen and (max-width: 959px) {
  .fixed-button {
    right: 0;
    left: 0;
    margin: auto;
    bottom: 0.15rem;
    width: 80%;
  }
}

.mv-fade-in {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  will-change: transform, opacity;
  -webkit-transition: opacity 1s ease, -webkit-transform 1.7s ease 0.2s;
  transition: opacity 1s ease, -webkit-transform 1.7s ease 0.2s;
  transition: opacity 1s ease, transform 1.7s ease 0.2s;
  transition: opacity 1s ease, transform 1.7s ease 0.2s, -webkit-transform 1.7s ease 0.2s;
}
.mv-fade-in.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.mv-fade-in.delay-1 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.mv-fade-in.delay-2 {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
.mv-fade-in.delay-3 {
  -webkit-transition-delay: 3.5s;
          transition-delay: 3.5s;
}

.fade-in {
  opacity: 0;
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease 0.2s;
  transition: opacity 0.7s ease, -webkit-transform 0.7s ease 0.2s;
  transition: opacity 0.7s ease, transform 0.7s ease 0.2s;
  transition: opacity 0.7s ease, transform 0.7s ease 0.2s, -webkit-transform 0.7s ease 0.2s;
  opacity: 0;
}
.fade-in.active {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.fade-in.delay-1 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.fade-in.delay-2 {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.fade-in.delay-3 {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}

.hidden {
  opacity: 0 !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.color-white {
  color: #fff;
}

.color-main {
  color: #1c305c;
}

.color-yellow {
  color: #f5c86f;
}

.bg-gradation {
  background-image: url(../images/bg-gradation.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.page__wrap {
  padding: 1rem 0;
}
@media screen and (max-width: 959px) {
  .page__wrap {
    padding: 0.7rem 0;
  }
}
.page__body {
  margin-top: 0.6rem;
}
@media screen and (max-width: 959px) {
  .page__body {
    margin-top: 0.3rem;
  }
}

.basic-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.basic-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.1rem;
}
@media screen and (max-width: 959px) {
  .basic-list li {
    gap: 0.08rem;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.basic-list li:before {
  content: "";
  background-image: url(../images/icon/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.23rem;
  height: 0.23rem;
  min-width: 0.23rem;
}
@media screen and (max-width: 959px) {
  .basic-list li:before {
    width: 0.16rem;
    height: 0.16rem;
    min-width: 0.16rem;
  }
}

.header {
  padding: 0 0;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  position: fixed;
  z-index: 10;
  background-color: #1c305c;
}
.header.scrolled {
  background-color: #fff;
}
.header__wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}
@media screen and (max-width: 959px) {
  .header__wrap {
    padding-left: 0.15rem;
    padding-right: 0.9rem;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
  }
}
.header__container {
  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;
}
.header__logo {
  width: calc(140 / var(--base-width) * 100vw);
}
@media screen and (max-width: 959px) {
  .header__logo {
    width: calc(200 / var(--base-width) * 100vw);
  }
}
.header__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.1rem;
}
.header__nav-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.42rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__nav {
  font-size: 0.14rem;
}
@media screen and (max-width: 959px) {
  .header__nav {
    display: none;
  }
}
.header__nav nav {
  font-family: "Shippori Mincho", serif;
}
.header__nav nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2em;
}
.header__sns {
  width: 0.23rem;
}
.header__sns a {
  display: block;
}
.header__sns img {
  width: 100%;
}
.header__hamburger {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}
@media screen and (max-width: 959px) {
  .header__hamburger {
    display: block;
    width: 0.38rem;
    height: 0.2rem;
    position: fixed;
    z-index: 10;
    right: 0.28rem;
    top: 0.21rem;
  }
}
.header__hamburger:hover {
  cursor: pointer;
}

.main-visual {
  background-image: url(../images/main-visual-bg.svg);
  background-repeat: no-repeat;
  background-size: 34%;
  background-position: right 4% bottom 40%;
  position: relative;
  height: calc(710 / var(--base-width) * 100vw);
  z-index: 0;
}
@media screen and (max-width: 959px) {
  .main-visual {
    height: unset;
    background-position: left -474% top 26%;
    background-size: 99%;
  }
}
.main-visual .container {
  height: 100%;
}
.main-visual__wrap {
  padding: 0 0 1.15rem;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 959px) {
  .main-visual__wrap {
    padding: 0.9rem 0 0.4rem;
  }
}
.main-visual__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 959px) {
  .main-visual__container {
    display: block;
  }
}
.main-visual__text-block {
  width: 60%;
}
@media screen and (max-width: 959px) {
  .main-visual__text-block {
    width: 100%;
    margin-top: 0.9rem;
  }
}
.main-visual__catch {
  font-family: "Shippori Mincho", serif;
  font-weight: normal;
}
.main-visual__catch .catch-sub {
  font-size: 0.27rem;
}
@media screen and (max-width: 959px) {
  .main-visual__catch .catch-sub {
    font-size: 0.15rem;
  }
}
.main-visual__catch .catch-main {
  font-size: 0.5rem;
  margin-top: 0.4rem;
}
@media screen and (max-width: 959px) {
  .main-visual__catch .catch-main {
    font-size: 0.24rem;
    margin-top: 0.1rem;
  }
}
.main-visual__list {
  margin-top: 0.46rem;
}
@media screen and (max-width: 959px) {
  .main-visual__list {
    margin-top: 0.15rem;
  }
}
.main-visual__list ul {
  gap: 0.1rem 0.2rem;
  width: 70%;
}
@media screen and (max-width: 959px) {
  .main-visual__list ul {
    width: 100%;
    gap: 0.06rem 0.1rem;
  }
}
.main-visual__list ul li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-visual__image {
  width: 36%;
}
@media screen and (max-width: 959px) {
  .main-visual__image {
    width: 80%;
    margin: auto;
  }
}
.main-visual__illust {
  width: 4rem;
  position: absolute;
  bottom: -0.4rem;
  right: 32%;
}
@media screen and (max-width: 959px) {
  .main-visual__illust {
    width: 2rem;
    right: 0.15rem;
    bottom: 32%;
    z-index: -1;
  }
}

.heading .heading-en {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 0.1rem;
  font-weight: normal;
  letter-spacing: 0.02rem;
}
.heading .heading-ja {
  font-size: 0.3rem;
  font-family: "Shippori Mincho", serif;
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .heading .heading-ja {
    font-size: 0.2rem;
  }
}
.heading .heading-hook {
  font-size: 0.22rem;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 959px) {
  .heading .heading-hook {
    font-size: 0.16rem;
  }
}
.heading .heading-hook h1 {
  font-size: 0.44rem;
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .heading .heading-hook h1 {
    font-size: 0.24rem;
  }
}

.content-problem {
  padding-top: 0.5rem;
  z-index: -1;
}
@media screen and (max-width: 959px) {
  .content-problem {
    padding-top: 0;
  }
}
.content-problem .problem-lists__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.28rem 0.35rem;
}
@media screen and (max-width: 959px) {
  .content-problem .problem-lists__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.05rem 0.05rem;
  }
}
.content-problem .problem-list {
  background-color: #1c305c;
  color: #fff;
  text-align: center;
  padding: 0.28rem 0.2rem;
}
@media screen and (max-width: 959px) {
  .content-problem .problem-list {
    padding: 0.18rem 0.1rem;
    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;
  }
}

.content-solution {
  position: relative;
}
@media screen and (max-width: 959px) {
  .content-solution .page__wrap {
    padding-bottom: 0;
  }
}
.content-solution__bg {
  position: absolute;
  width: 100%;
  right: 0;
  top: 0.7rem;
  z-index: -1;
}
@media screen and (max-width: 959px) {
  .content-solution__bg {
    top: 0.37rem;
  }
}
.content-solution .deco-01 {
  position: absolute;
  top: 16.7rem;
  left: 0;
  z-index: 1;
  width: 2.48rem;
}
.content-solution .deco-01 img {
  width: 100%;
}
@media screen and (max-width: 959px) {
  .content-solution .deco-01 {
    display: none;
  }
}
.content-solution .deco-02 {
  position: absolute;
  bottom: -1.8rem;
  right: 0;
  width: 3.95rem;
}
.content-solution .deco-02 img {
  width: 100%;
}
@media screen and (max-width: 959px) {
  .content-solution .deco-02 {
    width: 1.7rem;
    bottom: -1.7rem;
  }
}
.content-solution .heading-text {
  margin-top: 0.3rem;
  font-weight: normal;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 959px) {
  .content-solution .heading-text {
    text-align: left;
  }
}
.content-solution .heading-text span {
  font-size: 0.12rem;
}
.content-solution .solution-list {
  background-color: #fff;
  position: relative;
  border-radius: 0 0.3rem 0.3rem 0;
}
.content-solution .solution-list:nth-child(2n) {
  border-radius: 0.3rem 0 0 0.3rem;
}
.content-solution .solution-list:not(:first-child) {
  margin-top: 0.7rem;
}
@media screen and (max-width: 959px) {
  .content-solution .solution-list:not(:first-child) {
    margin-top: 0.3rem;
  }
}
.content-solution .solution-list__number {
  position: absolute;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 1.3rem;
  opacity: 0.1;
  font-weight: 800;
  right: 0.2rem;
  top: 0;
}
.content-solution .solution-list__inner {
  padding: 0.7rem 1rem 0.5rem;
}
@media screen and (max-width: 959px) {
  .content-solution .solution-list__inner {
    padding: 0.3rem 0.15rem 0.45rem;
  }
}
.content-solution .solution-list__heading .heading-comment {
  color: #fff;
  background-color: #1c305c;
  padding: 0.1rem 0.2rem;
  border-radius: 0.2rem;
  font-size: 0.18rem;
  font-weight: bold;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 959px) {
  .content-solution .solution-list__heading .heading-comment {
    font-size: 0.13rem;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.content-solution .solution-list__heading .heading-comment::after {
  content: "";
  background-image: url(../images/icon/parts-comment.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.18rem;
  height: 0.25rem;
  right: 0;
  left: 0;
  position: absolute;
  bottom: -0.12rem;
  margin: auto;
}
.content-solution .solution-list__heading .heading-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.content-solution .solution-list__heading .heading-number {
  font-size: 0.56rem;
  font-weight: 800;
  color: #14a8a1;
  font-family: "M PLUS 1p", sans-serif;
}
.content-solution .solution-list__heading h2 {
  font-family: "Shippori Mincho", serif;
  font-size: 0.36rem;
  margin-top: 0.3rem;
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .content-solution .solution-list__heading h2 {
    font-size: 0.21rem;
    margin-top: 0.2rem;
  }
}
.content-solution .solution-list__content {
  margin-top: 0.4rem;
}
@media screen and (max-width: 959px) {
  .content-solution .solution-list__content {
    margin-top: 0.3rem;
  }
}
.content-solution .solution-list__points ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.1rem;
}
.content-solution .solution-list__points li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: 0.18rem;
}
@media screen and (max-width: 959px) {
  .content-solution .solution-list__points li {
    font-size: 0.14rem;
  }
}
.content-solution .solution-list__points li:before {
  content: "";
  background: #1c305c;
  width: 0.14rem;
  min-width: 0.14rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 0.5rem;
}
@media screen and (max-width: 959px) {
  .content-solution .solution-list__points li:before {
    width: 0.1rem;
    min-width: 0.1rem;
  }
}
.content-solution .solution-list__service-lists {
  margin-top: 0.6rem;
}
@media screen and (max-width: 959px) {
  .content-solution .solution-list__service-lists {
    margin-top: 0.3rem;
  }
}
.content-solution .solution-list__service-lists .service-lists__heading {
  font-size: 0.18rem;
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .content-solution .solution-list__service-lists .service-lists__heading {
    font-size: 0.16rem;
  }
}
.content-solution .solution-list__service-lists .service-lists__container {
  border-top: 2px solid #1c305c;
  border-left: 2px solid #1c305c;
  margin-top: 0.18rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 959px) {
  .content-solution .solution-list__service-lists .service-lists__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.content-solution .solution-list__service-lists .service-list {
  border-right: 2px solid #1c305c;
  border-bottom: 2px solid #1c305c;
}
.content-solution .solution-list__service-lists .service-list__inner {
  padding: 0.25rem 0.1rem 0.14rem 0.1rem;
}
@media screen and (max-width: 959px) {
  .content-solution .solution-list__service-lists .service-list__inner {
    padding: 0.15rem 0.1rem 0.14rem 0.1rem;
  }
}
.content-solution .solution-list__service-lists .service-list__image {
  text-align: center;
}
.content-solution .solution-list__service-lists .service-list__image img {
  width: 0.9rem;
}
@media screen and (max-width: 959px) {
  .content-solution .solution-list__service-lists .service-list__image img {
    width: 0.6rem;
  }
}
.content-solution .solution-list__service-lists .service-list__text {
  margin-top: 0.2rem;
  text-align: center;
  font-weight: bold;
  height: 0.48rem;
  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;
}
@media screen and (max-width: 959px) {
  .content-solution .solution-list__service-lists .service-list__text {
    font-size: 0.12rem;
    margin-top: 0.1rem;
    height: 0.34rem;
  }
}
.content-solution .solution-list__table {
  margin-top: 0.4rem;
}
.content-solution .solution-list__table table {
  width: 100%;
  border: 1px solid #1c305c;
}
@media screen and (max-width: 959px) {
  .content-solution .solution-list__table table:not(:first-child) {
    margin-top: 0.15rem;
  }
}
.content-solution .solution-list__table table th,
.content-solution .solution-list__table table td {
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 959px) {
  .content-solution .solution-list__table table th,
  .content-solution .solution-list__table table td {
    width: 100% !important;
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.content-solution .solution-list__table table th {
  color: #fff;
  background-color: #1c305c;
  padding: 0.18rem 0;
  font-size: 0.18rem;
}
@media screen and (max-width: 959px) {
  .content-solution .solution-list__table table th {
    font-size: 0.16rem;
  }
}
.content-solution .solution-list__table table th:nth-child(1) {
  width: 20%;
}
.content-solution .solution-list__table table th:nth-child(2) {
  width: 60%;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
}
.content-solution .solution-list__table table th span {
  font-size: 0.14rem;
}
.content-solution .solution-list__table table td {
  padding: 0.2rem 0.24rem;
  border-top: 1px solid #1c305c;
  border-right: 1px solid #1c305c;
}
@media screen and (max-width: 959px) {
  .content-solution .solution-list__table table td {
    padding: 0.14rem 0.14rem;
    border-right: none;
  }
}
.content-solution .solution-list__table table td span {
  font-size: 0.2rem;
  font-weight: bold;
}
.content-solution .solution-list__table table td:nth-child(1) {
  white-space: nowrap;
}
.content-solution .solution-list__table table td:nth-child(2) {
  text-align: left;
}
.content-solution .solution-list__target {
  margin-top: 0.45rem;
  border: 2px solid #14a8a1;
  width: 90%;
}
@media screen and (max-width: 959px) {
  .content-solution .solution-list__target {
    width: 100%;
    margin-top: 0.2rem;
  }
}
.content-solution .solution-list__target .target__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 959px) {
  .content-solution .solution-list__target .target__container {
    display: block;
  }
}
.content-solution .solution-list__target .target__heading {
  color: #fff;
  background-color: #14a8a1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20%;
}
@media screen and (max-width: 959px) {
  .content-solution .solution-list__target .target__heading {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0.12rem 0.2rem;
    font-size: 0.16rem;
  }
}
.content-solution .solution-list__target .target__content {
  padding: 0.25rem 0.2rem;
}
@media screen and (max-width: 959px) {
  .content-solution .solution-list__target .target__content {
    padding: 0.2rem 0.16rem;
  }
}
.content-solution .solution-list__target .target__content ul {
  gap: 0.1rem 0.1rem;
}

#content-service {
  padding-top: 1rem;
}
@media screen and (max-width: 959px) {
  #content-service {
    padding-top: 0.8rem;
  }
}

@media screen and (max-width: 959px) {
  .content-flow .page__body-wrap {
    overflow: auto;
    margin-right: calc(50% - 50vw);
  }
}
.content-flow .flow-table {
  width: 100%;
}
@media screen and (max-width: 959px) {
  .content-flow .flow-table {
    width: 8rem;
    margin-right: 0.15rem;
  }
}
.content-flow .flow-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.08rem;
  width: calc(100% - 0.66rem);
  margin: 0 0 0 auto;
}
.content-flow .flow-step {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  clip-path: polygon(0% 0%, 92% 0%, 100% 50%, 92% 100%, 0% 100%, 8% 50%);
  clip-path: polygon(0% 0%, 92% 0%, 100% 50%, 92% 100%, 0% 100%);
}
.content-flow .flow-step__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.content-flow .flow-step__num {
  height: 100%;
  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;
  font-size: 0.3rem;
  font-weight: bold;
  color: #fff;
  padding: 0.1rem 0.1rem;
  background-color: #14a8a1;
  letter-spacing: 0.02rem;
  font-family: "M PLUS 1p", sans-serif;
}
@media screen and (max-width: 959px) {
  .content-flow .flow-step__num {
    font-size: 0.2rem;
  }
}
.flow-step:nth-child(1) .content-flow .flow-step__num {
  background-color: #14a8a1;
}
.flow-step:nth-child(2) .content-flow .flow-step__num {
  background-color: #1c305c;
}
.flow-step:nth-child(3) .content-flow .flow-step__num {
  background-color: #14a8a1;
}
.flow-step:nth-child(4) .content-flow .flow-step__num {
  background-color: #14a8a1;
}
.content-flow .flow-step__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 0.2rem 0 0.13rem;
  font-size: 0.18rem;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 959px) {
  .content-flow .flow-step__text {
    padding-left: 0.1rem;
    font-size: 0.16rem;
  }
}
.content-flow .flow-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.15rem;
  margin-top: 0.2rem;
}
.content-flow .flow-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.12rem;
}
.content-flow .flow-row.--owner .flow-label {
  background-color: #dcfaff;
}
.content-flow .flow-row.--owner .flow-item {
  border: 5px solid #acf3ff;
}
.content-flow .flow-row.--itowokashi .flow-label {
  background-color: #ffe5e5;
}
.content-flow .flow-row.--itowokashi .flow-item {
  border: 5px solid #ffc9c9;
}
.content-flow .flow-label {
  width: 0.54rem;
  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;
  font-size: 0.2rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 959px) {
  .content-flow .flow-label {
    font-size: 0.18rem;
  }
}
.content-flow .flow-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.08rem;
}
.content-flow .flow-item {
  background-color: #fff;
  padding: 0.25rem 0.15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
}
@media screen and (max-width: 959px) {
  .content-flow .flow-item {
    padding: 0.2rem 0.1rem;
  }
}
.content-flow .flow-item__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.content-flow .flow-item__inner p {
  font-size: 0.15rem;
  line-height: 1.6;
}
@media screen and (max-width: 959px) {
  .content-flow .flow-item__inner p {
    font-size: 0.13rem;
  }
}
.content-flow .flow-item.--point {
  border: 3px dashed #acf3ff !important;
  background-color: unset;
  border-radius: unset;
  padding: 0.1rem 0.1rem;
}
.content-flow .flow-item.--point .flow-item__inner p {
  color: #fff;
}
.content-flow .flow-item.--empty {
  background-color: unset;
  border: unset !important;
}
.content-flow .flow-item__note {
  font-size: 0.12rem !important;
  font-weight: normal !important;
  margin-top: 0.1rem;
}
@media screen and (max-width: 959px) {
  .content-flow .flow-item__note {
    margin-top: 0.06rem;
    font-size: 0.1rem !important;
  }
}
.content-flow .flow-item__btn {
  margin-top: 0.14rem;
  text-align: center;
}
.content-flow .flow-item__btn .check-button {
  background-color: #1c305c;
  border: 1px solid #1c305c;
  color: #fff;
  padding: 0.1rem 0.18rem;
  border-radius: 0.5rem;
  font-size: 0.12rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.content-flow .flow-item__btn .check-button:hover {
  color: #1c305c;
  background-color: #fff;
}
.content-flow .flow-item__btn .check-button:hover::after {
  border-color: transparent transparent transparent #1c305c;
}
.content-flow .flow-item__btn .check-button::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.05rem 0 0.05rem 0.08rem;
  border-color: transparent transparent transparent #fff;
}
.content-flow .flow-badge {
  width: 0.6rem;
  height: 0.6rem;
  margin: 0 auto 0.05rem;
}
.content-flow .flow-badge img {
  width: 100%;
  height: 100%;
}

.content-area {
  position: relative;
  padding-top: 0.5rem;
  padding-bottom: 0.8rem;
}
@media screen and (max-width: 959px) {
  .content-area {
    padding-top: 3.5rem;
    padding-bottom: 0;
  }
}
.content-area .page {
  z-index: 1;
  position: inherit;
}
.content-area__bg {
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../images/area-map.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 10rem;
  height: auto;
  aspect-ratio: 1072/776;
}
@media screen and (max-width: 959px) {
  .content-area__bg {
    background-image: url(../images/area-map_sp.svg);
    width: 100%;
    aspect-ratio: 15/17;
  }
}
.content-area .area-list:not(:first-child) {
  margin-top: 0.4rem;
}
@media screen and (max-width: 959px) {
  .content-area .area-list:not(:first-child) {
    margin-top: 0.2rem;
  }
}
.content-area .area-list__heading {
  font-size: 0.2rem;
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .content-area .area-list__heading {
    font-size: 0.16rem;
  }
}
.content-area .area-list__content {
  margin-top: 0.2rem;
}
@media screen and (max-width: 959px) {
  .content-area .area-list__content {
    margin-top: 0.1rem;
  }
}
.content-area .area-list p {
  margin-top: 0.34rem;
}

.content-system .logo-lists__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.14rem;
}
@media screen and (max-width: 959px) {
  .content-system .logo-lists__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.content-system p {
  margin-top: 0.35rem;
}

.content-fee {
  position: relative;
  padding-top: 0.5rem;
}
@media screen and (max-width: 959px) {
  .content-fee {
    padding-top: 0;
  }
}
.content-fee__bg {
  position: absolute;
  right: 0;
  left: 0;
  top: 0.3rem;
  width: 3.2rem;
  margin: auto;
  z-index: 0;
}
@media screen and (max-width: 959px) {
  .content-fee__bg {
    width: 2rem;
  }
}
.content-fee__bg img {
  width: 100%;
  height: auto;
}
.content-fee .page {
  z-index: 1;
  position: inherit;
}
.content-fee .fee-lists__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.6rem;
}
@media screen and (max-width: 959px) {
  .content-fee .fee-lists__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.35rem;
  }
}
.content-fee .fee-lists__block {
  -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;
  gap: 0.35rem;
}
@media screen and (max-width: 959px) {
  .content-fee .fee-lists__block {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}
.content-fee .fee-list__heading {
  font-size: 0.2rem;
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .content-fee .fee-list__heading {
    font-size: 0.16rem;
  }
}
.content-fee .fee-list__heading span {
  font-size: 0.14rem;
}
@media screen and (max-width: 959px) {
  .content-fee .fee-list__heading span {
    font-size: 0.12rem;
  }
}
.content-fee .fee-list__content {
  margin-top: 0.15rem;
}
.content-fee .fee-list table {
  width: 100%;
  border: 1px solid #1c305c;
}
.content-fee .fee-list table th,
.content-fee .fee-list table td {
  vertical-align: middle;
  text-align: center;
}
.content-fee .fee-list table th {
  height: 0.64rem;
  background: #1c305c;
  color: #fff;
  font-size: 0.2rem;
}
@media screen and (max-width: 959px) {
  .content-fee .fee-list table th {
    font-size: 0.14rem;
    height: 0.4rem;
  }
}
.content-fee .fee-list table th:first-child {
  border-right: 1px solid #fff;
}
.content-fee .fee-list table td {
  padding: 0 0.2rem;
  background-color: #fcfdff;
  border-top: 1px solid #1c305c;
  height: 0.55rem;
  white-space: nowrap;
  max-height: 0.55rem;
}
@media screen and (max-width: 959px) {
  .content-fee .fee-list table td {
    height: 0.4rem !important;
    white-space: unset;
    padding: 0 0.1rem;
    font-size: 0.12rem;
  }
}
.content-fee .fee-list table td:first-child {
  border-right: 1px solid #1c305c;
  width: 57%;
}
.content-fee .fee-list table td span {
  font-size: 0.12rem;
}
@media screen and (max-width: 959px) {
  .content-fee .fee-list table td span {
    font-size: 0.08rem;
  }
}
.content-fee .fee-list table .striped td {
  background-color: #f2f6ff;
}
.content-fee .fee-list table.expanded td {
  height: 0.85rem;
}
@media screen and (max-width: 959px) {
  .content-fee .fee-list table.expanded td {
    height: inherit;
  }
  .content-fee .fee-list table.expanded td:first-child {
    text-align: left;
  }
}

.content-case .case-lists__container {
  width: 100%;
}
.content-case .case-lists__container .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.content-case .case-lists__container .slick-slide {
  height: auto;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media screen and (max-width: 959px) {
  .content-case .case-lists__container .slick-slide {
    height: -webkit-fit-content !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
  }
}
.content-case .case-lists__container .slick-slide > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.content-case .case-list {
  background-color: #fff;
  border-radius: 0.2rem;
  width: 11rem;
  margin-right: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 959px) {
  .content-case .case-list {
    width: 3.1rem;
    margin-right: 0.2rem;
    height: 100%;
  }
}
.content-case .case-list__inner {
  -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;
  padding: 0.2rem 0.3rem 0.5rem;
}
@media screen and (max-width: 959px) {
  .content-case .case-list__inner {
    padding: 0.1rem 0.14rem 0.3rem;
  }
}
.content-case .case-list__heading-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.3rem;
}
@media screen and (max-width: 959px) {
  .content-case .case-list__heading-block {
    display: block;
  }
}
.content-case .case-list__text-block {
  width: 70%;
}
@media screen and (max-width: 959px) {
  .content-case .case-list__text-block {
    width: 100%;
  }
}
.content-case .case-list__number {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 0.22rem;
  font-weight: 800;
}
@media screen and (max-width: 959px) {
  .content-case .case-list__number {
    text-align: center;
    font-size: 0.14rem;
  }
}
.content-case .case-list__number span {
  color: #14a8a1;
  font-size: 0.6rem;
}
@media screen and (max-width: 959px) {
  .content-case .case-list__number span {
    font-size: 0.4rem;
  }
}
.content-case .case-list__heading {
  font-family: "Shippori Mincho", serif;
  font-size: 0.3rem;
  margin-top: 0.1rem;
  font-weight: bold;
  border-bottom: 0.05rem #b7b7b7 solid;
  padding-bottom: 0.06rem;
}
@media screen and (max-width: 959px) {
  .content-case .case-list__heading {
    font-size: 0.18rem;
    text-align: center;
    margin-top: 0;
  }
}
.content-case .case-list__client {
  font-size: 0.2rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.15rem;
}
@media screen and (max-width: 959px) {
  .content-case .case-list__client {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.04rem;
    font-size: 0.14rem;
    margin-top: 0.1rem;
  }
}
.content-case .case-list__client span {
  font-size: 0.14rem;
  font-weight: normal;
}
@media screen and (max-width: 959px) {
  .content-case .case-list__client span {
    font-size: 0.1rem;
  }
}
.content-case .case-list__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 0.2rem;
}
.content-case .case-list__content {
  margin-top: 0.7rem;
}
@media screen and (max-width: 959px) {
  .content-case .case-list__content {
    margin-top: 0.3rem;
  }
}
.content-case .case-list__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.12rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 0.4rem;
}
@media screen and (max-width: 959px) {
  .content-case .case-list__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
  }
}
.content-case .case-list__detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 0.2rem;
  padding: 0.3rem 0.15rem 0.3rem 0.15rem;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 959px) {
  .content-case .case-list__detail {
    width: 100%;
    padding: 0.15rem 0.15rem;
  }
}
.content-case .case-list__detail ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.06rem;
}
.content-case .case-list__detail ul li:not(:first-child) {
  margin-top: 0.08rem;
}
.content-case .case-list__detail ul li::before {
  min-width: 0.14rem;
}
.content-case .case-list__detail.--problem {
  border: 2px solid #1c305c;
}
.content-case .case-list__detail.--problem ul li::before {
  content: "・";
}
.content-case .case-list__detail.--solution {
  border: 2px solid #14a8a1;
}
.content-case .case-list__detail.--solution ul li::before {
  content: "";
  background-image: url(../images/icon/light.svg);
  width: 0.14rem;
  aspect-ratio: 14/24;
  height: auto;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 959px) {
  .content-case .case-list__detail.--solution .case-list__icon {
    width: 0.7rem;
    left: 0;
    top: -0.56rem;
  }
}
.content-case .case-list__after {
  -ms-flex-item-align: center;
      align-self: center;
}
.content-case .case-list__icon {
  position: absolute;
  width: 0.74rem;
  left: -0.4rem;
  top: -0.4rem;
}
@media screen and (max-width: 959px) {
  .content-case .case-list__icon {
    width: 0.46rem;
    left: 0;
    top: -0.3rem;
  }
}

.content-step {
  position: relative;
}
.content-step__bg {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width: 5.4rem;
}
.content-step__bg img {
  width: 100%;
}
@media screen and (max-width: 959px) {
  .content-step__bg {
    width: 2.04rem;
    top: -4%;
  }
}
.content-step .step-lists__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.5rem;
}
@media screen and (max-width: 959px) {
  .content-step .step-lists__container {
    display: block;
  }
}
.content-step .step-lists__block {
  width: 46%;
  position: relative;
}
.content-step .step-lists__block::before {
  content: "";
  position: absolute;
  background: #fff;
  width: 0.05rem;
  height: 100%;
  left: 0.22rem;
  z-index: -1;
}
@media screen and (max-width: 959px) {
  .content-step .step-lists__block::before {
    left: 0.2rem;
  }
}
.content-step .step-lists__block.--second::before {
  top: -0.4rem;
  height: 94%;
}
@media screen and (max-width: 959px) {
  .content-step .step-lists__block {
    width: 100%;
  }
}
.content-step .step-list:not(:first-child) {
  margin-top: 0.46rem;
}
@media screen and (max-width: 959px) {
  .content-step .step-list:not(:first-child) {
    margin-top: 0.25rem;
  }
}
@media screen and (max-width: 959px) {
  .content-step .step-list.--05 {
    margin-top: 0.25rem;
  }
}
.content-step .step-list__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.27rem;
}
@media screen and (max-width: 959px) {
  .content-step .step-list__block {
    gap: 0.16rem;
  }
}
.content-step .step-list__number {
  color: #14a8a1;
  font-size: 0.26rem;
  font-weight: 800;
  background-color: #fff;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.5rem;
  line-height: 0.5rem;
  text-align: center;
  font-family: "M PLUS 1p", sans-serif;
}
@media screen and (max-width: 959px) {
  .content-step .step-list__number {
    font-size: 0.24rem;
    width: 0.46rem;
    height: 0.46rem;
    line-height: 0.46rem;
  }
}
.content-step .step-list__text-block {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.content-step .step-list__heading {
  font-weight: bold;
  white-space: nowrap;
  font-size: 0.22rem;
  color: #fff;
}
@media screen and (max-width: 959px) {
  .content-step .step-list__heading {
    font-size: 0.17rem;
    white-space: unset;
  }
}
.content-step .step-list__heading span {
  font-size: 0.18rem;
}
@media screen and (max-width: 959px) {
  .content-step .step-list__heading span {
    font-size: 0.11rem;
  }
}
.content-step .step-list__content {
  margin-top: 0.15rem;
  color: #fff;
}
.content-step .step-list__tel {
  font-family: "M PLUS 1p", sans-serif;
  display: inline-block;
  text-align: right;
  font-weight: bold;
  margin-top: 0.12rem;
  letter-spacing: 0.02rem;
}
.content-step .step-list__tel a {
  font-size: 0.3rem;
}
@media screen and (max-width: 959px) {
  .content-step .step-list__tel a {
    font-size: 0.26rem;
  }
}
.content-step .step-list__tel span {
  font-size: 0.14rem;
  font-weight: normal;
}
.content-step .step-list__button {
  margin-top: 0.2rem;
}

.content-contact .contact-heading {
  font-weight: bold;
  font-size: 0.32rem;
}
@media screen and (max-width: 959px) {
  .content-contact .contact-heading {
    font-size: 0.16rem;
  }
}
.content-contact .contact-lists {
  margin-top: 0.6rem;
}
@media screen and (max-width: 959px) {
  .content-contact .contact-lists {
    margin-top: 0.3rem;
    margin-left: 0.15rem;
    margin-right: 0.15rem;
  }
}
.content-contact .contact-lists__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
}
@media screen and (max-width: 959px) {
  .content-contact .contact-lists__container {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.25rem;
  }
}
.content-contact .contact-list {
  background-color: #fff;
  border-radius: 0.2rem;
}
.content-contact .contact-list__inner {
  padding: 0.25rem 0.25rem;
}
.content-contact .contact-list__heading {
  font-weight: bold;
  text-align: center;
  font-size: 0.18rem;
}
.content-contact .contact-list__heading.--line span {
  color: #06c655;
}
.content-contact .contact-list__line {
  width: 0.24rem;
  height: 0.01rem;
  background: #1c305c;
  margin: 0.1rem auto 0;
}
.content-contact .contact-list__content {
  margin-top: 0.2rem;
}
.content-contact .contact-list__tel {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 0.18rem;
  letter-spacing: 0.01rem;
  font-weight: bold;
  height: 0.4rem;
  text-align: center;
}
.content-contact .contact-list__tel span {
  font-size: 0.26rem;
}
.content-contact .contact-list__button .button {
  margin: auto;
}
.content-contact .contact-list__text {
  margin-top: 0.14rem;
  font-size: 0.14rem;
  text-align: center;
}

.footer {
  color: #fff;
}
.footer__wrap {
  padding: 0.5rem 0 0.75rem;
}
@media screen and (max-width: 959px) {
  .footer__wrap {
    padding: 0.5rem 0 1rem;
  }
}
.footer__container {
  position: relative;
  font-family: "Shippori Mincho", serif;
}
.footer__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.3rem;
}
.footer__nav nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
  letter-spacing: 0.06rem;
}
.footer__nav nav ul li {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.footer__banner {
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
}
@media screen and (max-width: 959px) {
  .footer__banner {
    position: static;
    margin-top: 0.5rem;
    width: 100%;
  }
}
.footer__link {
  margin-top: 0.7rem;
  font-size: 0.14rem;
}
.footer__copyright {
  margin-top: 0.1rem;
  font-size: 0.1rem;
  font-family: "M PLUS 1p", sans-serif;
}
@media screen and (max-width: 959px) {
  .footer__copyright {
    font-size: 0.09rem;
  }
}

.menu-trigger {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
}
@media screen and (max-width: 959px) {
  .menu-trigger {
    width: 100%;
    height: 100%;
  }
}
.menu-trigger span {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.02rem;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span {
  display: block;
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: unset;
  bottom: 0.8em;
}
@media screen and (max-width: 959px) {
  .menu-trigger.active span:nth-of-type(1) {
    bottom: 0.4em;
  }
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 0.8em;
}
@media screen and (max-width: 959px) {
  .menu-trigger.active span:nth-of-type(3) {
    bottom: 0.4em;
  }
}

.sp-nav {
  border-radius: 60px 0 0 0;
  position: fixed;
  top: 120px;
  right: 0;
  z-index: 9;
  color: #fff;
  -webkit-transition: all 0.9s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.9s cubic-bezier(0.5, 0, 0, 1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  height: 100%;
}
@media screen and (max-width: 959px) {
  .sp-nav {
    width: 100%;
    top: 0;
  }
}
.sp-nav.active {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: all 0.9s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.9s cubic-bezier(0.5, 0, 0, 1);
  opacity: 1;
  pointer-events: auto;
  background-color: #1c305c;
}
.sp-nav__wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}
@media screen and (max-width: 959px) {
  .sp-nav__wrap {
    padding: 0.9rem 0.4rem 0.5rem;
  }
}
.sp-nav__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sp-nav__link a {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  display: block;
  padding: 0.16rem 0;
  font-size: 0.2rem;
}
@media screen and (max-width: 959px) {
  .sp-nav__link a {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 479px) {
  .sp-nav__link a {
    font-size: 0.16rem;
  }
}
.sp-nav__link a:not(:last-child) {
  border-bottom: 1px solid #fff;
}
.sp-nav__button-block {
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.2rem;
}

html.body-lock,
body.body-lock {
  overflow: hidden;
  height: 100vh;
  -ms-touch-action: none;
      touch-action: none; /* スマホでのスクロール防止 */
}/*# sourceMappingURL=style.css.map */