:root {
  --font-family-base:
    "Noto Sans JP", sans-serif, "ヒラギノ角ゴPro W3",
    "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", Arial,
    Helvetica, Verdana;
  --font-family-mincho: "Zen Old Mincho", serif;
  --text-color: #1b1b1b;
  --link-color: #2c67aa;
  --link-hover: #2c67aa;
  --box-shadow: 0 3px 10px rgb(119, 119, 119, 0.65);
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: rgba(0, 0, 0, 0);
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 1.3333vw;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 2.6rem;
  font-family: var(--font-family-base);
  color: var(--text-color);
  line-height: 1.5;
  word-break: break-word;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

@media screen and (min-width: 750px) {
  body {
    font-size: 2rem;
  }
}

a img {
  outline: none;
  border: none;
  backface-visibility: hidden;
}

a:hover img {
  opacity: 0.7;
}

a:focus {
  outline: none;
}

a,
a img,
button {
  transition: all 0.3s ease;
  box-shadow: #000 0 0 0;
}

a[href^="tel:"] {
  cursor: default;
}

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

iframe,
figure {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

input,
textarea,
select,
button {
  font-family: var(--font-family-base);
  color: var(--text-color);
  line-height: 1.4;
}

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

textarea {
  resize: vertical;
}

div:focus {
  outline: none;
}

.pc-show {
  display: none;
}

@media screen and (min-width: 750px) {
  .pc-show {
    display: block;
  }
}

/* -------------------- button -------------------- */
.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 63rem;
  font-size: 3.6rem;
  font-weight: bold;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-right: 4.6rem;
  color: var(--text-color);
  text-decoration: none;
  background: #fff;
  border: 0.2rem solid #939393;
  border-radius: 7rem;
  cursor: pointer;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .btn {
    width: 49rem;
    height: 9.8rem;
    font-size: 2.5rem;
  }
}

.btn-text-small {
  font-size: 3rem;
}

@media screen and (min-width: 750px) {
  .btn-text-small {
    font-size: 2rem;
    height: auto;
    min-height: auto;
  }
}

.btn,
.btn-orange,
.btn-s {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 63rem;
  height: 13.3rem;
  font-size: 3.6rem;
  font-weight: bold;
  padding-right: 0.6rem;
  color: var(--text-color);
  text-decoration: none;
  background: #fff;
  border: .2rem solid #939393;
  border-radius: 7rem;
  cursor: pointer
}

.btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4.6rem;
  width: 1.8rem;
  height: 3.4rem;
  margin-top: -1.7rem;
  background: url("../img/icon_button-arrow.png") no-repeat center/contain;
}

@media screen and (min-width: 750px) {
  .btn:after {
    width: 1.6rem;
    height: 2.9rem;
    margin-top: -1.45rem;
  }

  .btn-download:after {
    width: 2.3rem;
    height: 2rem;
    margin-top: -1rem;
    right: 2rem;
  }
}

.btn-orange {
  background: linear-gradient(to right, #fcac01, #b75700);
  color: #fff;
  border-color: #f08524;
}

.btn-orange:after {
  background-image: url("../img/icon_button-arrow_white.png");
}

.btn-download:before {
  content: "";
  width: 3.4rem;
  height: 3rem;
  background: url(../img/icon_download-black.png) no-repeat center/contain;
}

@media screen and (min-width: 750px) {
  .btn-download:before {
    width: 2.3rem;
    height: 2rem;
  }
}

/* -------------------- animation -------------------- */
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.fadein.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.scale-up {
  opacity: 0;
  transform: scale(0);
  transition: transform 0.4s ease;
}

.scale-up.show {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* -------------------- common -------------------- */
html {
  scroll-padding-top: 12rem;
}

@media screen and (min-width: 750px) {
  html {
    font-size: 0.692307vw;
  }
}

@media screen and (min-width: 750px) {
  html {
    scroll-padding-top: 0;
  }
}

@media screen and (min-width: 1170px) {
  html {
    font-size: 9px;
  }
}

.container {
  width: 100%;
  max-width: calc(1080px + 10rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 5rem;
  padding-right: 5rem;
}

/* -------------------- header -------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: #f6f6f6;
}

@media screen and (min-width: 750px) {
  .header {
    position: relative;
  }
}

.header__inner {
  width: 100%;
  max-width: calc(1080px + 10rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 5rem;
  padding-right: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 11.6rem;
  position: relative;
}

.header__logo {
  margin: 0;
  z-index: 1001;
  transition: opacity 0.3s ease;
}

.header__logo img {
  width: 18.2rem;
  height: auto;
}

@media screen and (min-width: 750px) {
  .header__logo img {
    width: 15.2rem;
  }
}

.header__logo.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 4.3rem;
  height: 3.1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

@media screen and (min-width: 750px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger span {
  display: block;
  height: 0.5rem;
  width: 100%;
  background: var(--text-color);
  border-radius: 0.2rem;
  transition: all 0.3s ease;
  transform-origin: center;
}

.header__hamburger.is-active span {
  background: #fff;
}

.header__hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(0.9rem, 0.9rem);
}

.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.9rem, -0.9rem);
}

.header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  padding-top: 11.6rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

@media screen and (min-width: 750px) {
  .header__nav {
    opacity: 1;
    visibility: visible;
    position: static;
    display: flex;
    width: auto;
    max-width: none;
    height: auto;
    background: none;
    box-shadow: none;
    padding-top: 0;
  }
}

.header__nav.is-open {
  opacity: 1;
  visibility: visible;
}

.header__nav__menu {
  list-style: none;
  margin: 0 0 16rem 0;
  padding: 0;
  border-top: 1px solid #333;
}

@media screen and (min-width: 750px) {
  .header__nav__menu {
    display: flex;
    gap: 6rem;
    align-items: center;
    margin: 0;
    border: none;
  }
}

.header__nav__menu li {
  border-bottom: 1px solid #333;
}

@media screen and (min-width: 750px) {
  .header__nav__menu li {
    border-bottom: none;
  }
}

.header__nav__menu li a {
  display: block;
  padding: 4rem;
  font-size: 3.5rem;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

@media screen and (min-width: 750px) {
  .header__nav__menu li a {
    padding: 1rem 0;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-color);
  }
}

.header__nav__menu li a:hover {
  background: #f8f9fa;
}

@media screen and (min-width: 750px) {
  .header__nav__menu li a:hover {
    background: none;
    color: var(--link-color);
  }
}

.header__nav__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .header__nav__button {
    display: none;
  }
}

.header__nav__button .btn-orange:before {
  content: none;
}

.fixed-header {
  display: none;
}

@media screen and (min-width: 750px) {
  .fixed-header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: #f6f6f6;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }
}

/* -------------------- main -------------------- */
main {
  flex: 1;
  padding-top: 11.6rem;
}

@media screen and (min-width: 750px) {
  main {
    padding-top: 0;
  }
}

/* -------------------- footer -------------------- */
.privacypolicy p {
  text-decoration: none;
  color: #000;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 2rem;
}

.privacypolicy a {
  text-decoration: none;
  color: #000;
}

.footer {
  width: 100%;
  padding: 3rem 0;
  background: #2c67aa;
}

.footer__copyright {
  margin: 0;
  font-size: 2rem;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .footer__copyright {
    font-size: 1.8rem;
  }
}

/* -------------------- kv -------------------- */
.kv {
  position: relative;
  width: 100%;
  height: 180rem;
  background-image: url(../img/kv_bg_sp.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (min-width: 750px) {
  .kv {
    background-image: url(../img/kv_bg.png);
    height: 74rem;
  }
}

.kv__bg {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.kv__bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}

.kv__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.kv__catch {
  display: grid;
  grid-template-areas:
    "title"
    "image"
    "name"
    "description";
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 0;
  align-items: center;
  justify-items: center;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

@media screen and (min-width: 750px) {
  .kv__catch {
    grid-template-areas:
      "title image"
      "name image"
      "description image";
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto 1fr;
    gap: 0;
    max-width: 120rem;
    margin: 0 auto;
  }
}

.kv__title {
  grid-area: title;
  font-size: 6rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .kv__title {
    margin-bottom: 3rem;
    font-size: 5.4rem;
  }
}

.kv__title span {
  font-size: 7.6rem;
}

.kv__title .glow {
  text-shadow: 0 0 2px #00aaff, 0 0 2px #00aaff, 0 0 4px #00aaff, 0 0 5px #00aaff;
}

@media screen and (min-width: 750px) {
  .kv__title span {
    font-size: 6.8rem;
  }
}

.kv__image {
  grid-area: image;
  position: relative;
  width: 100%;
  margin-bottom: 3rem;
}

@media screen and (min-width: 750px) {
  .kv__image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
  }
}

.kv__image img {
  display: block;
  width: 40rem;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 750px) {
  .kv__image img {
    width: 90%;
  }
}

.kv__logo {
  grid-area: name;
  margin-bottom: 3rem;
}

@media screen and (min-width: 750px) {
  .kv__logo {
    margin-bottom: 5rem;
  }
}

.kv__logo img {
  display: block;
  width: 100%;
  max-width: 32rem;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 750px) {
  .kv__logo img {
    max-width: 34rem;
  }
}

.kv__description {
  grid-area: description;
  text-align: center;
}

.kv__description img {
  display: block;
  width: 100%;
  max-width: 65rem;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 750px) {
  .kv__description img {
    max-width: 66rem;
  }
}

.kv__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media screen and (min-width: 750px) {
  .kv__link {
    flex-direction: row;
    max-width: 120rem;
  }
}

.kv__link .btn-orange {
  min-height: 11.3rem;
}

/* -------------------- intro -------------------- */
.intro {
  overflow: hidden;
}

.intro__problem {
  position: relative;
  padding: 8rem 0 0 0;
  background: #f6f6f6;
}

@media screen and (min-width: 750px) {
  .intro__problem {
    padding-top: 9rem;
  }
}

.intro__problem__inner {
  width: 100%;
  max-width: calc(1080px + 10rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 5rem;
  padding-right: 5rem;
  position: relative;
  z-index: 4;
}

.intro__problem__title {
  margin: 0 0 8rem 0;
  font-size: 4rem;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .intro__problem__title {
    margin-bottom: 7.2rem;
  }
}

.intro__problem__title span {
  font-size: 4.8rem;
}

.intro__problem__title span.blue {
  background: linear-gradient(to bottom, #2f3944, #8193a6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.intro__problem__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 8.6rem;
}

@media screen and (min-width: 750px) {
  .intro__problem__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 4%;
    margin-bottom: 9rem;
  }
}

.intro__problem__list__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60rem;
  height: 23rem;

  --cut: 10px;
  --border: 2px;
  --inner-cut: calc(var(--cut) - var(--border));
  --line-grad: linear-gradient(90deg, #a8b6c7 0%, #6f8095 100%);

  position: relative;
  padding: 24px 20px;
  text-align: center;
  background: transparent;
}

@media screen and (min-width: 750px) {
  .intro__problem__list__item {
    --cut: 15px;
    width: 43%;
    height: 18rem;
    padding: 20px 15px;
  }
}

/* 外側の枠 */
.intro__problem__list__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--line-grad);
  clip-path: polygon(var(--cut) 0,
      calc(100% - var(--cut)) 0,
      100% var(--cut),
      100% calc(100% - var(--cut)),
      calc(100% - var(--cut)) 100%,
      var(--cut) 100%,
      0 calc(100% - var(--cut)),
      0 var(--cut));
  z-index: 0;
}

/* 内側の白背景 */
.intro__problem__list__item::after {
  content: "";
  position: absolute;
  inset: var(--border);
  background: #fff;
  clip-path: polygon(var(--inner-cut) 0,
      calc(100% - var(--inner-cut)) 0,
      100% var(--inner-cut),
      100% calc(100% - var(--inner-cut)),
      calc(100% - var(--inner-cut)) 100%,
      var(--inner-cut) 100%,
      0 calc(100% - var(--inner-cut)),
      0 var(--inner-cut));
  z-index: 1;
}

.intro__problem__list__item .corner--lt {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--cut);
  height: var(--cut);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 3;
  background: #8193a6;
}

.intro__problem__list__item .corner--rb {
  position: absolute;
  right: 0;
  bottom: 0;
  width: var(--cut);
  height: var(--cut);
  background: #394556;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 3;
}

.intro__problem__list__item.item-1,
.intro__problem__list__item.item-3 {
  align-self: flex-start;
}

.intro__problem__list__item.item-2,
.intro__problem__list__item.item-4 {
  align-self: flex-end;
}

@media screen and (min-width: 750px) {

  .intro__problem__list__item.item-2,
  .intro__problem__list__item.item-4 {
    margin-top: 5rem;
  }
}

.intro__problem__list__item .heading {
  width: 100%;
  font-size: 4rem;
  font-weight: bold;
  background: linear-gradient(90deg, #8193a6 0%, #2f3944 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  z-index: 2;
}

@media screen and (min-width: 750px) {
  .intro__problem__list__item .heading {
    font-size: 3.5rem;
  }
}

.intro__problem__list__item .heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  height: 1px;
  background: linear-gradient(90deg, #8193a6 0%, #2f3944 100%);
}

.intro__problem__list__item p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 2.8rem;
  text-align: center;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 750px) {
  .intro__problem__list__item p {
    font-size: 2rem;
  }
}

.intro__problem__list__item p span {
  font-weight: bold;
  background: linear-gradient(transparent 70%, #fafc48 70%);
}

@media screen and (min-width: 750px) {
  .intro__problem__list__item p span {
    font-size: 2.4rem;
  }
}

.intro__problem__bg {
  position: absolute;
  bottom: 36rem;
  left: 0;
  z-index: 3;
  width: 100%;
}

@media screen and (min-width: 750px) {
  .intro__problem__bg {
    bottom: 37rem;
  }
}

@media screen and (min-width: 1920px) {
  .intro__problem__bg {
    bottom: calc(42.5rem - 3.5vw);
  }
}

.intro__problem__bg img {
  width: 100%;
}

.intro__problem__solved {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 42rem;
  background-image: url(../img/intro_problem_solved_bg_sp.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (min-width: 750px) {
  .intro__problem__solved {
    height: 42rem;
    background-image: url(../img/intro_problem_solved_bg.png);
  }
}

.intro__problem__solved__bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media screen and (min-width: 750px) {
  .intro__problem__solved__bottom {
    flex-direction: row;
  }
}

.intro__problem__solved p {
  margin: 2rem 0 0 0;
  font-size: 5.8rem;
  font-weight: bold;
  color: #fff;
}

.intro__problem__solved p span {
  background: linear-gradient(135deg, #fcca01, #f08524);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.intro__problem__solved .logo {
  width: 100%;
  max-width: 42rem;
}

@media screen and (min-width: 750px) {
  .intro__problem__solved .logo {
    margin-top: 2rem;
    margin-right: 1rem;
  }
}

/* .intro__solution {
  position: relative;
  z-index: 0;
  padding: 7.5rem 0;
  background: #f2f2f2;
}

@media screen and (min-width: 750px) {
  .intro__solution {
    padding: 0 0 10rem 0;
  }
}

.intro__solution__inner {
  width: 100%;
  max-width: calc(1080px + 10rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 5rem;
  padding-right: 5rem;
}

@media screen and (min-width: 750px) {
  .intro__solution__inner {
    padding-top: 1px;
  }
}

.intro__solution__list {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

@media screen and (min-width: 750px) {
  .intro__solution__list {
    gap: 2.7rem;
    margin-top: -3rem;
  }
}

.intro__solution__list__item {
  position: relative;
  width: 30rem;
  box-shadow: 0 0.3rem 3rem rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 750px) {
  .intro__solution__list__item {
    width: calc(33.3333333333% - 1.8rem);
  }
}

.intro__solution__list__item img {
  position: relative;
  width: 100%;
}

.intro__solution__list__item p {
  position: absolute;
  bottom: 3.5rem;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 6.4rem;
  margin: 0;
  font-size: 2.7rem;
  font-weight: bold;
  color: #094;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .intro__solution__list__item p {
    bottom: 4.4rem;
    height: 8rem;
    font-size: 3.2rem;
  }
} */

/* -------------------- feature -------------------- */
.feature {
  position: relative;
  overflow: hidden;
  padding: 10rem 0 12.5rem 0;
  background: #e6effa;
}

@media screen and (min-width: 750px) {
  .feature {
    padding: 14rem 0 8rem 0;
  }
}

.feature__inner {
  position: relative;
}

@media screen and (min-width: 750px) {
  .feature__inner {
    width: 100%;
    max-width: calc(1200px + 10rem);
    margin-left: auto;
    margin-right: auto;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.feature__title {
  position: relative;
  margin-bottom: 7.5rem;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  z-index: 2;
}

@media screen and (min-width: 750px) {
  .feature__title {
    margin-bottom: 10rem;
  }
}

.feature__title::after {
  content: "";
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-image: url(../img/logo_title_bg.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

@media screen and (min-width: 750px) {
  .feature__title::after {
    top: -10rem;
    max-width: 80rem;
    height: 19rem;
  }
}

.feature__title img {
  width: 14.6rem;
  height: auto;
}

.feature__list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

@media screen and (min-width: 750px) {
  .feature__list {
    gap: 16rem;
  }
}

.feature__list__item__box {
  position: relative;
  padding-bottom: 30rem;
}

@media screen and (min-width: 750px) {

  .feature__list__item__box.item-1,
  .feature__list__item__box.item-2,
  .feature__list__item__box.item-4 {
    padding-bottom: 5rem;
  }

  .feature__list__item__box.item-3 {
    padding-bottom: 0;
    padding-top: 10rem;
  }
}

.feature__list__item__wrap {
  position: relative;
  width: 100%;
  padding: 2rem;
  z-index: 2;
}

@media screen and (min-width: 750px) {
  .feature__list__item__wrap {
    width: 70%;
  }

  .feature__list__item__wrap.item-2,
  .feature__list__item__wrap.item-4 {
    margin-left: auto;
  }
}

.feature__list__item__wrap::after {
  content: "";
  position: absolute;
  top: 2rem;
  width: 110%;
  height: 100%;
  background: #fff;
  z-index: -1;
  clip-path: polygon(15% 0, 100% 0%, 85% 100%, 0% 100%);
}

@media screen and (min-width: 750px) {
  .feature__list__item__wrap::after {
    width: 100%;
    height: 100%;
  }
}

.feature__list__item__wrap.item-1::after,
.feature__list__item__wrap.item-3::after {
  right: -1rem;
}

.feature__list__item__wrap.item-2::after,
.feature__list__item__wrap.item-4::after {
  left: 0;
}

@media screen and (min-width: 750px) {

  .feature__list__item__wrap.item-1::after,
  .feature__list__item__wrap.item-3::after {
    right: 0;
  }
}

.feature__list__item__text {
  position: relative;
  padding: 3rem;
}

@media screen and (min-width: 750px) {
  .feature__list__item__text {
    z-index: 2;
    padding: 0 0 0 15rem;
  }
}

@media screen and (min-width: 1170px) {
  .feature__list__item__text {
    padding-left: 10rem;
  }
}

.feature__list__item__box.item-1 .feature__list__item__text,
.feature__list__item__box.item-3 .feature__list__item__text {
  padding-left: 8rem;
}

.feature__list__item__box.item-2 .feature__list__item__text,
.feature__list__item__box.item-4 .feature__list__item__text {
  padding-left: 18rem;
}

@media screen and (min-width: 750px) {

  .feature__list__item__box.item-1 .feature__list__item__text,
  .feature__list__item__box.item-3 .feature__list__item__text {
    padding-left: 16rem;
  }

  .feature__list__item__box.item-2 .feature__list__item__text {
    padding-left: 34rem;
    padding-right: 16rem;
  }

  .feature__list__item__box.item-4 .feature__list__item__text {
    padding-left: 20rem;
    padding-right: 16rem;
  }
}

.feature__list__item__text h4 {
  margin: 0 0 2rem 0;
  font-size: 3.5rem;
  color: #2c67aa;
}

@media screen and (min-width: 750px) {
  .feature__list__item__text h4 {
    font-size: 3.2rem;
  }
}

.feature__list__item__text p {
  margin: 0 0 1.5rem 0;
  font-size: 2.7rem;
}

@media screen and (min-width: 750px) {
  .feature__list__item__text p {
    font-size: 2.2rem;
  }
}

.feature__list__item__label {
  width: 25rem;
  margin-top: -5rem;
  margin-bottom: 3.7rem;
}

@media screen and (min-width: 750px) {
  .feature__list__item__label {
    margin-top: -3rem;
  }
}

.feature__list__item__image {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 2;
}

.feature__list__item__box.item-1 .feature__list__item__image,
.feature__list__item__box.item-3 .feature__list__item__image {
  text-align: right;
}

.feature__list__item__box.item-2 .feature__list__item__image,
.feature__list__item__box.item-4 .feature__list__item__image {
  text-align: left;
}

@media screen and (min-width: 750px) {

  .feature__list__item__box.item-1 .feature__list__item__image,
  .feature__list__item__box.item-3 .feature__list__item__image {
    right: 0;
  }

  .feature__list__item__box.item-3 .feature__list__item__image {
    top: 0;
    bottom: initial;
  }

  .feature__list__item__box.item-2 .feature__list__item__image,
  .feature__list__item__box.item-4 .feature__list__item__image {
    left: 0;
  }
}

.feature__list__item__image img {
  width: auto;
  height: 32.3rem;
}

@media screen and (min-width: 750px) {
  .feature__list__item__image img {
    height: 32.5rem;
  }
}

.feature__list__item__table {
  margin-top: 4.6rem;
  padding: 0 2rem;
}

@media screen and (min-width: 750px) {
  .feature__list__item__table {
    max-width: 90rem;
    margin-top: 6rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}

.feature__cost-table {
  position: relative;
  width: 100%;
  padding: 2rem;
  background: #fff;
  border-radius: 2.4rem;
  overflow: visible;
}

.feature__cost-table__badge {
  position: absolute;
  top: 9rem;
  right: -1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #fcca01, #f08524);
  color: #333;
  font-weight: 700;
  line-height: 1.1;
  z-index: 4;
}

@media screen and (min-width: 750px) {
  .feature__cost-table__badge {
    width: 11rem;
    height: 11rem;
  }
}

.feature__cost-table__badge-sm {
  font-size: 1.8rem;
}

@media screen and (min-width: 750px) {
  .feature__cost-table__badge-sm {
    font-size: 1.6rem;
  }
}

.feature__cost-table__badge-num {
  font-size: 5rem;
  line-height: 1;
}

@media screen and (min-width: 750px) {
  .feature__cost-table__badge-num {
    font-size: 3.6rem;
  }
}

.feature__cost-table__badge-percent {
  font-size: 3.5rem;
}

@media screen and (min-width: 750px) {
  .feature__cost-table__badge-percent {
    font-size: 2.8rem;
  }
}

.feature__cost-table__badge-sl {
  font-size: 2.6rem;
}

@media screen and (min-width: 750px) {
  .feature__cost-table__badge-sl {
    font-size: 2rem;
  }
}

.feature__cost-table__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.feature__cost-table__head-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  border-radius: 1.2rem 1.2rem 0 0;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .feature__cost-table__head-col {
    font-size: 2.5rem;
    border-radius: 1.8rem 1.8rem 0 0;
    padding: 2.5rem;
  }
}

.feature__cost-table__head-col p {
  margin: 0;
  line-height: 1.3;
}

.feature__cost-table__head-col.is-other {
  background: #8c9094;
}

.feature__cost-table__head-col.is-transta {
  background: #2c67aa;
}

.feature__cost-table__head-col.is-transta img {
  width: auto;
  height: 5rem;
  margin-right: 0.2rem;
  padding-bottom: 0.8rem;
  vertical-align: middle;
}

.feature__cost-table__body {
  position: relative;
  padding: 1.5rem 1.5rem 2.2rem;
  z-index: 2;
}

@media screen and (min-width: 750px) {
  .feature__cost-table__body {
    padding: 1.5rem;
  }
}

.feature__cost-table__bg {
  position: absolute;
  top: 0;
  width: calc(50% - 0.5rem);
  height: 100%;
  z-index: -1;
  border-radius: 0 0 1.8rem 1.8rem;
}

@media screen and (min-width: 750px) {
  .feature__cost-table__bg {
    width: calc(50% - 1rem);
  }
}

.feature__cost-table__bg.is-other {
  left: 0;
  background-color: #edeeef;
}

.feature__cost-table__bg.is-transta {
  right: 0;
  background-color: #e7f1fc;
}

.feature__cost-table__section {
  margin-bottom: 4rem;
}

.feature__cost-table__section-title {
  margin: 0 0 3rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0.8rem;
  color: #2c67aa;
  font-size: 2.4rem;
  font-weight: 900;
  text-align: center;
  line-height: 1;
}

@media screen and (min-width: 750px) {
  .feature__cost-table__section-title {
    font-size: 2.2rem;
    border-radius: 1rem;
  }
}

.feature__cost-table__section-title.is-blue {
  margin: 0 0 2rem;
  background: #e7f1fc;
  color: #333;
  font-weight: 700;
}

.feature__cost-table__section-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

@media screen and (min-width: 750px) {
  .feature__cost-table__section-row {
    gap: 2rem;
  }
}

.feature__cost-table__price {
  margin: 0;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}

.feature__cost-table__price.is-other {
  color: #333;
}

.feature__cost-table__price.is-transta {
  color: #2c67aa;
}

.feature__cost-table__price-num {
  font-variant-numeric: tabular-nums;
}

.feature__cost-table__price.is-other .feature__cost-table__price-num {
  font-size: 4.9rem;
}

@media screen and (min-width: 750px) {
  .feature__cost-table__price.is-other .feature__cost-table__price-num {
    font-size: 4rem;
  }
}

.feature__cost-table__price.is-transta .feature__cost-table__price-num {
  font-size: 6.4rem;
}

@media screen and (min-width: 750px) {
  .feature__cost-table__price.is-transta .feature__cost-table__price-num {
    font-size: 5rem;
  }
}

.feature__cost-table__price.is-other .feature__cost-table__price-unit {
  font-size: 2.6rem;
}

.feature__cost-table__price.is-transta .feature__cost-table__price-unit {
  font-size: 3.4rem;
}

.feature__cost-table__calc {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media screen and (min-width: 750px) {
  .feature__cost-table__calc {
    gap: 5rem;
  }
}

.feature__cost-table__calc-plus {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.8rem;
  height: 5.8rem;
  border-radius: 50%;
  background: #2c67aa;
  z-index: 1;
}

.feature__cost-table__calc-plus::before,
.feature__cost-table__calc-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 2px;
  background-color: #fff;
}

.feature__cost-table__calc-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.feature__cost-table__calc-block {
  width: 100%;
  min-height: 20rem;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 1.8rem;
}

@media screen and (min-width: 750px) {
  .feature__cost-table__calc-block {
    min-height: 16rem;
  }
}

.feature__cost-table__price-note {
  display: block;
  margin-top: 2.6rem;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  color: #333;
}

@media screen and (min-width: 750px) {
  .feature__cost-table__price-note {
    margin-top: 1rem;
    font-size: 2.4rem;
  }
}

.feature__cost-table__price-note-unit {
  font-size: 2.4rem;
}

@media screen and (min-width: 750px) {
  .feature__cost-table__price-note-unit {
    font-size: 1.6rem;
  }
}

.feature__cost-table__note {
  margin: 1.8rem 0 0;
  font-size: 2rem;
  color: #333;
  text-align: left;
}

@media screen and (min-width: 750px) {
  .feature__cost-table__note {
    margin-top: 1.6rem;
    font-size: 1.6rem;
  }
}

.feature__list__item__catch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  width: 100%;
  margin-top: 4rem;
}

@media screen and (min-width: 750px) {
  .feature__list__item__catch {
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 6rem;
  }
}

.feature__list__item__catch__text {
  width: 90%;
  height: 10rem;
  display: flex;
  align-items: center;
  padding: 0 4rem;
  font-size: 3.0rem;
  font-weight: 900;
  line-height: 3.8rem;
  color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width: 750px) {
  .feature__list__item__catch__text {
    width: 80%;
    background-size: contain;
    padding: 0 8rem;
    font-size:3.2rem;
  }
}

.feature__list__item__catch__text:nth-child(odd) {
  background-image: url(../img/feature_catch_bg01_sp.png);
  background-position: center right;
  margin-right: auto;
}

.feature__list__item__catch__text:nth-child(even) {
  background-image: url(../img/feature_catch_bg02_sp.png);
  background-position: center left;
  margin-left: auto;
  justify-content: flex-end;
}

@media screen and (min-width: 750px) {
  .feature__list__item__catch__text:nth-child(odd) {
    background-image: url(../img/feature_catch_bg01.png);
  }

  .feature__list__item__catch__text:nth-child(even) {
    background-image: url(../img/feature_catch_bg02.png);
  }
}

/* -------------------- price-reason -------------------- */
.price-reason {
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 10rem;
}

@media screen and (min-width: 750px) {
  .price-reason {
    max-width: 120rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10rem;
    padding-bottom: 8rem;
  }
}

.price-reason__title {
  position: relative;
  margin-bottom: 5rem;
  font-size: 3.2rem;
  font-weight: 700;
  color: #2c67aa;
  text-align: center;
  z-index: 2;
}

@media screen and (min-width: 750px) {
  .price-reason__title {
    margin-bottom: 2rem;
  }
}

.price-reason__title::after {
  content: "";
  position: absolute;
  top: -7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 19rem;
  background-image: url(../img/logo_title_bg_blue.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

@media screen and (min-width: 750px) {
  .price-reason__title::after {
    top: -10rem;
    max-width: 80rem;
  }
}

.price-reason__text {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5rem;
}

.price-reason__content {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.price-reason__content__item {
  width: 100%;
}

.price-reason__content__item__title {
  display: flex;
  align-items: center;
  width: 95%;
  font-size: 3.2rem;
  font-weight: bold;
  color: #2c67aa;
  background-image: url(../img/price-reason_title_bg_sp.png);
  background-size: 100% 100%;
  background-position: center right;
  background-repeat: no-repeat;
  margin-bottom: 3.5rem;
}

@media screen and (min-width: 750px) {
  .price-reason__content__item__title {
    width: 60%;
    background-image: url(../img/price-reason_title_bg.png);
    margin-bottom: 5rem;
  }
}

.price-reason__content__item__title .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16.5rem;
  height: 8rem;
  background-color: #2c67aa;
  clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
  font-size: 5.2rem;
  font-weight: bold;
  color: #fff;
}

@media screen and (min-width: 750px) {
  .price-reason__content__item__title .num {
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  }
}

.price-reason__content__item__inner {
  width: 100%;
  padding: 0 3rem;
}

@media screen and (min-width: 750px) {
  .price-reason__content__item__inner {
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}

.price-reason__basis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 1rem;
  margin-bottom: 5rem;
}

.price-reason__basis-col {
  width: 100%;
}

.price-reason__basis-col.is-other {
  border: 1px solid #d9d9d9;
}

.price-reason__basis-col.is-transta {
  border: 4px solid #2c67aa;
}

.price-reason__basis-head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  box-sizing: border-box;
}

.price-reason__basis-col.is-other .price-reason__basis-head {
  padding: 3rem 1.5rem;
  background-color: #d9d9d9;
  color: #1b1b1b;
}

.price-reason__basis-col.is-transta .price-reason__basis-head {
  padding: 3.5rem 1.5rem;
  background-color: #2c67aa;
}

.price-reason__basis-col.is-transta .price-reason__basis-head img {
  width: auto;
  height: 5rem;
}

.price-reason__basis-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
  box-sizing: border-box;
}

.price-reason__basis-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 17rem;
  padding: 1.5rem 1rem;
  border-radius: 1.2rem;
  box-sizing: border-box;
}

@media screen and (min-width: 750px) {
  .price-reason__basis-item {
    height: 12rem;
  }
}

.price-reason__basis-col.is-other .price-reason__basis-item {
  background-color: #eee;
}

.price-reason__basis-col.is-transta .price-reason__basis-item {
  background-color: #e6effa;
}

.price-reason__basis-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -2.9rem;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 4.5rem;
  height: 3rem;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  z-index: 2;
}

.price-reason__basis-col.is-other .price-reason__basis-item:not(:last-child)::after {
  background-color: #808080;
}

.price-reason__basis-col.is-transta .price-reason__basis-item:not(:last-child)::after {
  background-color: #2c67aa;
}

.price-reason__basis-step {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

.price-reason__basis-col.is-other .price-reason__basis-step {
  color: #1b1b1b;
}

.price-reason__basis-col.is-transta .price-reason__basis-step {
  color: #2c67aa;
}

.price-reason__basis-price {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 0.4rem;
  line-height: 1;
}

.price-reason__basis-price-label {
  font-size: 2.8rem;
}

.price-reason__basis-price-num {
  font-size: 6.4rem;
  font-variant-numeric: tabular-nums;
}

.price-reason__basis-price-unit {
  position: relative;
  font-size: 2.8rem;
}

.price-reason__basis-price-tax {
  position: absolute;
  top: -1.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  font-weight: 700;
  white-space: nowrap;
}

.price-reason__content__item__text {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  color: #2c67aa;
}

.price-reason__cost {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

.price-reason__cost-col {
  width: 100%;
}

.price-reason__cost-head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  height: 8rem;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  box-sizing: border-box;
}

.price-reason__cost-col.is-traditional .price-reason__cost-head {
  background-color: #d9d9d9;
  color: #1b1b1b;
}

.price-reason__cost-col.is-transta .price-reason__cost-head {
  background-color: #2c67aa;
}

.price-reason__cost-col.is-transta .price-reason__cost-head img {
  width: auto;
  height: 6rem;
}

.price-reason__cost-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-sizing: border-box;
  padding-top: 1.5rem;
}

.price-reason__cost-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 1rem;
  border-radius: 1.2rem;
  box-sizing: border-box;
}

@media screen and (min-width: 750px) {
  .price-reason__cost-item {
    gap: 1rem;
    padding: 2rem 1rem;
  }
}

.price-reason__cost-item.is-company {
  min-height: 27rem;
}

@media screen and (min-width: 750px) {
  .price-reason__cost-item.is-company {
    min-height: 20rem;
  }
}

.price-reason__cost-item.is-cost {
  min-height: 32rem;
}

@media screen and (min-width: 750px) {
  .price-reason__cost-item.is-cost {
    min-height: 24rem;
  }
}

.price-reason__cost-item.is-user {
  min-height: 27rem;
}

@media screen and (min-width: 750px) {
  .price-reason__cost-item.is-user {
    min-height: 20rem;
  }
}

.price-reason__cost-col.is-traditional .price-reason__cost-item {
  background-color: #eee;
}

.price-reason__cost-col.is-transta .price-reason__cost-item {
  background-color: #e6effa;
}

.price-reason__cost-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -2.9rem;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 4.5rem;
  height: 3rem;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  z-index: 2;
}

.price-reason__cost-col.is-traditional .price-reason__cost-item:not(:last-child)::after {
  background-color: #808080;
}

.price-reason__cost-col.is-transta .price-reason__cost-item:not(:last-child)::after {
  background-color: #2c67aa;
}

.price-reason__cost-label {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

@media screen and (min-width: 750px) {
  .price-reason__cost-label {
    font-size: 2.4rem;
  }
}

.price-reason__cost-col.is-traditional .price-reason__cost-label {
  color: #1b1b1b;
}

.price-reason__cost-col.is-transta .price-reason__cost-label {
  color: #2c67aa;
  font-size: 2.4rem;
}

.price-reason__cost-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
}

@media screen and (min-width: 750px) {
  .price-reason__cost-icon {
    width: 25%;
  }
}

.price-reason__cost-icon img {
  width: auto;
}

.price-reason__cost-highlight {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  color: #f08524;
}

@media screen and (min-width: 750px) {
  .price-reason__cost-highlight {
    font-size: 2rem;
  }
}


/* -------------------- structure -------------------- */
.structure {
  position: relative;
  padding: 10rem 0 7.5rem 0;
}

@media screen and (min-width: 750px) {
  .structure {
    padding: 5rem 0 8rem 0;
  }
}

.structure__inner {
  position: relative;
  width: 100%;
  max-width: 152rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
}

.structure__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.structure__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.structure__shape {
  display: none;
}

@media screen and (min-width: 750px) {
  .structure__shape {
    position: absolute;
    display: block;
  }
}

.structure__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
  margin-bottom: 4.7rem;
}

@media screen and (min-width: 750px) {
  .structure__heading {
    flex-direction: row-reverse;
    justify-content: center;
  }
}

.structure__heading__image img {
  width: 41.4rem;
}

@media screen and (min-width: 750px) {
  .structure__heading__image img {
    width: 41.4rem;
  }
}

.structure__heading__text h2 {
  margin: 0 0 3.6rem 0;
  font-size: 3.8rem;
  font-weight: bold;
  color: #fff;
}

@media screen and (min-width: 750px) {
  .structure__heading__text h2 {
    font-size: 3.9rem;
  }
}

.structure__heading__text p {
  margin: 0;
  font-weight: 500;
  font-size: 2.4rem;
  color: #fff;
}

.structure__heading__text p span {
  color: #fba509;
}

.structure__fig {
  position: relative;
  padding: 8rem 3rem 3rem 3rem;
  background: #fff;
}

@media screen and (min-width: 750px) {
  .structure__fig {
    padding: 7.4rem 10rem 4.7rem 10rem;
  }
}

.structure__fig__heading {
  margin-bottom: 2.3rem;
}

@media screen and (min-width: 750px) {
  .structure__fig__heading {
    position: relative;
    margin-bottom: 5.4rem;
  }
}

.structure__fig__heading h3 {
  margin: 0 0 3.6rem 0;
  font-size: 4.6rem;
  color: #094;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .structure__fig__heading h3 {
    margin-bottom: 4.5rem;
  }
}

.structure__fig__heading p {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 500;
}

@media screen and (min-width: 750px) {
  .structure__fig__heading p {
    text-align: center;
  }
}

.structure__fig__label {
  position: absolute;
  top: -8rem;
  right: -2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 14.6rem;
  height: 14.6rem;
  background: linear-gradient(to bottom right, #15c479, #1d6414);
  border-radius: 7.3rem;
}

@media screen and (min-width: 750px) {
  .structure__fig__label {
    top: -4rem;
    left: 5rem;
  }
}

@media screen and (min-width: 1920px) {
  .structure__fig__label {
    left: 15rem;
  }
}

.structure__fig__label p {
  margin: 0;
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
}

.structure__fig__label p.sm {
  font-size: 1.8rem;
}

.structure__fig__label p span {
  font-size: 6.4rem;
  font-weight: bold;
}

.structure__fig__image img {
  width: 100%;
}

.structure__fig__bottom {
  display: none;
}

@media screen and (min-width: 750px) {
  .structure__fig__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.7rem;
    margin-top: 4rem;
    padding: 4rem 0;
    border-width: 0.2rem 0 0.2rem 0;
    border-color: #00a575;
    border-style: solid;
  }
}

@media screen and (min-width: 750px) {
  .structure__fig__bottom p {
    margin: 0;
    font-weight: 500;
  }
}

@media screen and (min-width: 750px) {
  .structure__fig__bottom .lg {
    font-size: 4rem;
    color: #00a575;
  }
}

@media screen and (min-width: 750px) {
  .structure__fig__bottom .md {
    font-size: 2.4rem;
  }
}

/* cta */
.cta {
  position: relative;
  padding: 12rem 0 10rem;
}

@media screen and (min-width: 750px) {
  .cta {
    padding: 11rem 0 8rem 0;
  }
}

.cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__inner {
  width: 100%;
  max-width: calc(1080px + 10rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 5rem;
  padding-right: 5rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  height: 100%;
}

@media screen and (min-width: 750px) {
  .cta__inner {
    gap: 6rem;
  }
}

.cta__text {
  color: #fff;
  text-align: center;
}

.cta__text h2 {
  font-size: 3.4rem;
  line-height: 1.7;
  font-weight: 700;
}

.cta__text h2 span {
  font-size: 4.5rem;
}

.cta__text p {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 500;
}

.cta__text ul {
  margin: 4rem auto 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  font-size: 3rem;
  font-weight: bold;
  text-align: left;
}

@media screen and (min-width: 750px) {
  .cta__text h2 {
    font-size: 4rem;
    font-weight: 700;
  }

  .cta__text h2 span {
    font-size: 4.8rem;
  }

  .cta__text ul {
    margin-top: 3rem;
    font-size: 3.4rem;
    gap: 1.5rem;
  }
}

.cta__text li {
  position: relative;
  padding-left: 4.5rem;
  line-height: 1.4;
}

@media screen and (min-width: 750px) {
  .cta__text li {
    padding-left: 3.5rem;
  }
}

.cta__text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 3rem;
  height: 3rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2' stroke='%23ffffff'%3E%3C/rect%3E%3Cpolyline points='9 12 12 15 22 4' stroke='%23efef33'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media screen and (min-width: 750px) {
  .cta__text li::before {
    width: 4.4rem;
    height: 4.4rem;
    top: 0.4rem;
    left: -2rem;
  }
}

.cta__text li span {
  color: #efef33;
}

.cta__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 3rem;
}

@media screen and (min-width: 750px) {
  .cta__link {
    flex-direction: row;
  }
}

.cta__link .btn {
  width: 100%;
  height: 11rem;
  font-size: 3.4rem;
  font-weight: 700;
}

@media screen and (min-width: 750px) {
  .cta__link .btn {
    max-width: 49rem;
    height: 10rem;
    font-size: 2.5rem;
    margin-left: auto;
    margin-right: auto;
  }

  .cta__link.cta-2 .btn {
    max-width: initial;
  }
}

.cta__link.cta-2 .btn-orange {
  min-height: 17rem;
  border-radius: 50rem;
  font-size: 4rem;
}

@media screen and (min-width: 750px) {
  .cta__link.cta-2 .btn-orange {
    min-height: 12rem;
    font-size: 3rem;
  }
}

/* -------------------- case -------------------- */
.case {
  padding: 10rem 0 9.5rem;
  background-color: #e6effa;
  background-image: url(../img/case_bg_sp.png);
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
}

@media screen and (min-width: 750px) {
  .case {
    padding: 8rem 0 8rem;
    background-image: url(../img/case_bg.png);
  }
}

.case__inner {
  width: 100%;
  padding: 0 4rem;
}

@media screen and (min-width: 750px) {
  .case__inner {
    max-width: calc(1200px + 10rem);
    margin-left: auto;
    margin-right: auto;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

h2.case__title {
  margin: 0 0 4rem;
  font-size: 4.6rem;
  font-weight: 700;
  color: #2c67aa;
  text-align: center;
  line-height: 1.4;
}

@media screen and (min-width: 750px) {
  h2.case__title {
    margin-bottom: 4rem;
    font-size: 4.8rem;
  }
}

.case__explain {
  margin: 0 0 6rem;
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}

@media screen and (min-width: 750px) {
  .case__explain {
    margin-bottom: 8rem;
    font-size: 2.6rem;
  }
}

.case__cards {
  position: relative;
}

@media screen and (min-width: 750px) {
  .case__cards {
    padding: 0;
  }
}

.case__cards__slider {
  overflow: hidden;
}

@media screen and (min-width: 750px) {
  .case__cards__slider {
    overflow: visible;
  }
}

.case__cards__slider .swiper-wrapper {
  align-items: stretch;
}

@media screen and (min-width: 750px) {
  .case__cards__slider .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 3rem;
    transform: none !important;
  }
}

.case__cards__slider .swiper-slide {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 1.5rem 1rem;
}

@media screen and (min-width: 750px) {
  .case__cards__slider .swiper-slide {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0;
  }
}

.case__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: 0 0.3rem 1rem rgba(119, 119, 119, 0.35);
  overflow: hidden;
}

.case__card__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2rem 2rem 0 0;
}

.case__card__text {
  padding: 3rem 2rem 4rem;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .case__card__text {
    padding: 2.5rem 2rem 3rem;
  }
}

.case__card__title {
  margin: 0 0 3rem;
  font-size: 4.6rem;
  font-weight: 700;
  color: #2c67aa;
  line-height: 1.3;
}

@media screen and (min-width: 750px) {
  .case__card__title {
    margin-bottom: 1.6rem;
    font-size: 3.5rem;
  }
}

.case__card__label {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.6rem 2.4rem;
  font-size: 2.8rem;
  font-weight: 500;
  color: #2c67aa;
  background: #e6effa;
  border-radius: 999px;
}

@media screen and (min-width: 750px) {
  .case__card__label {
    margin-bottom: 1.6rem;
    padding: 0.4rem 2.4rem;
    font-size: 1.6rem;
  }
}

.case__card__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.6;
}

@media screen and (min-width: 750px) {
  .case__card__list {
    font-size: 2.2rem;
    gap: 1rem;
  }
}

.case__card__list li::before {
  content: "・";
}

.case__cards__nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.case__cards__prev,
.case__cards__next {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 6.5rem;
  height: 6.5rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #2c67aa;
  transform: translateY(-50%);
  cursor: pointer;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

.case__cards__prev {
  left: -1.5rem;
}

.case__cards__next {
  right: -1.5rem;
}

.case__cards__prev::after,
.case__cards__next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 2rem;
  height: 2rem;
  border-bottom: 0.4rem solid #fff;
  border-left: 0.4rem solid #fff;
}

.case__cards__prev::after {
  transform: translate(-36%, -50%) rotate(45deg);
}

.case__cards__next::after {
  transform: translate(-64%, -50%) rotate(-135deg);
}

.case__cards__prev.swiper-button-disabled,
.case__cards__next.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

.compare {
  position: relative;
  padding: 10rem 0 8.7rem 0;
}

@media screen and (min-width: 750px) {
  .compare {
    padding: 10rem 0 8rem 0;
  }
}

.compare__shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.compare__shape img {
  width: 100%;
}

.compare__inner {
  width: 100%;
  max-width: calc(1080px + 10rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 5rem;
  padding-right: 5rem;
  position: relative;
}

.compare__title {
  margin: 0 0 4rem 0;
  font-size: 4.6rem;
  color: #094;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .compare__title {
    font-size: 4rem;
  }
}

.compare__explain {
  margin: 0 0 10rem 0;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .compare__explain {
    margin-bottom: 12rem;
  }
}

.compare__table {
  width: 100%;
  margin-bottom: 8rem;
  font-size: 1.4rem;
  table-layout: fixed;
}

@media screen and (min-width: 750px) {
  .compare__table {
    font-size: 2rem;
  }
}

.compare__table th,
.compare__table td {
  text-align: center;
  border: 1px solid #d7d8db;
}

.compare__table thead th {
  position: relative;
  padding: 1rem;
  font-size: 1.6rem;
  background: #d1d3d2;
  line-height: 1.2;
}

@media screen and (min-width: 750px) {
  .compare__table thead th {
    font-size: 2rem;
    padding: 5rem 1rem;
  }
}

.compare__table thead th img {
  position: absolute;
}

.compare__table thead th span {
  font-size: 1.4rem;
}

.compare__table thead th:first-child {
  width: 20%;
  border: none;
  background: none;
}

.compare__table thead th:nth-child(2) {
  position: relative;
  width: 26.67%;
  font-size: 2.4rem;
  color: #fff;
  border-color: #094;
  border-right: 2px solid #094;
  border-left: 2px solid #094;
  background: #094;
}

@media screen and (min-width: 750px) {
  .compare__table thead th:nth-child(2) {
    font-size: 3rem;
    border-width: 1px 0.5rem 1px 0.5rem;
  }
}

@media screen and (min-width: 750px) {
  .compare__table thead th:nth-child(2):before {
    top: -4rem;
    left: -0.5rem;
    width: calc(100% + 1rem);
    height: 4rem;
  }
}

.compare__table thead th:nth-child(2) img {
  top: -8rem;
  right: 0;
  width: 11.3rem;
}

@media screen and (min-width: 750px) {
  .compare__table thead th:nth-child(2) img {
    top: -9rem;
    width: 15.8rem;
  }
}

.compare__table thead th:nth-child(2)::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: -2px;
  width: calc(100% + 4px);
  height: 2rem;
  background: #094;
}

.compare__table thead th:nth-child(3),
.compare__table thead th:nth-child(4) {
  width: 26.67%;
}

.compare__table thead th:nth-child(3) img {
  top: -4rem;
  right: 0;
  width: 7.7rem;
}

@media screen and (min-width: 750px) {
  .compare__table thead th:nth-child(3) img {
    top: -5rem;
    right: 1rem;
    width: 12.6rem;
  }
}

.compare__table thead th:nth-child(4) img {
  top: -1rem;
  right: 0;
  width: 7.5rem;
}

@media screen and (min-width: 750px) {
  .compare__table thead th:nth-child(4) img {
    right: 2rem;
    width: 16.6rem;
  }
}

.compare__table tbody {
  background: #fff;
}

.compare__table tbody th {
  width: 20%;
  padding: 1rem;
  white-space: nowrap;
}

.compare__table tbody td {
  width: 26.67%;
  padding: 1rem 0;
  font-weight: 500;
  vertical-align: top;
}

@media screen and (min-width: 750px) {
  .compare__table tbody td {
    padding: 3rem 1rem;
  }
}

.compare__table tbody td span {
  font-size: 2em;
}

.compare__table tbody td span.red {
  color: #f29438;
}

.compare__table tbody td:nth-child(2) {
  color: #094;
  font-weight: bold;
  border-right: 2px solid #094;
  border-left: 2px solid #094;
}

@media screen and (min-width: 750px) {
  .compare__table tbody td:nth-child(2) {
    border-width: 1px 0.5rem 1px 0.5rem;
  }
}

.compare__table tbody tr:nth-child(n + 4) {
  display: none;
}

.compare__table tbody tr:nth-child(n + 4).show {
  display: table-row;
}

.compare__table tbody tr.compare-last td:nth-child(2) {
  position: relative;
}

.compare__table tbody tr.compare-last td:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: 2px;
  background: #094;
}

@media screen and (min-width: 750px) {
  .compare__table tbody tr.compare-last td:nth-child(2)::after {
    bottom: -0.5rem;
    left: -0.5rem;
    width: calc(100% + 1rem);
    height: 0.5rem;
  }
}

.compare__button {
  display: flex;
  justify-content: center;
}

.compare__button button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 47.3rem;
  height: 9.4rem;
  font-size: 2.5rem;
  font-weight: bold;
  color: #094;
  border: 0.2rem solid #094;
  border-radius: 5rem;
  appearance: none;
  background: #fff;
  cursor: pointer;
}

.compare__button button:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4rem;
  width: 2.5rem;
  height: 1.4rem;
  margin-top: -0.7rem;
  background: url(../img/icon_compare-arrow.png) no-repeat center/contain;
}

.compare__button button.is-open:after {
  transform: rotate(180deg);
}

.plan {
  position: relative;
  padding: 10rem 0;
  background: #f6f6f6;
}

@media screen and (min-width: 750px) {
  .plan {
    padding: 14rem 0 12rem 0;
  }
}

.plan__shape {
  position: absolute;
}

.plan__shape.shape-1 {
  top: -17rem;
  left: 0;
}

@media screen and (min-width: 750px) {
  .plan__shape.shape-1 {
    top: -2.3rem;
  }
}

.plan__shape.shape-1 img {
  width: 24.1rem;
}

@media screen and (min-width: 750px) {
  .plan__shape.shape-1 img {
    width: 44.7rem;
  }
}

.plan__shape.shape-2 {
  bottom: 0;
  right: 0;
}

@media screen and (min-width: 750px) {
  .plan__shape.shape-2 {
    bottom: 6rem;
  }
}

.plan__shape.shape-2 img {
  width: 27.2rem;
}

@media screen and (min-width: 750px) {
  .plan__shape.shape-2 img {
    width: 35.3rem;
  }
}

.plan__inner {
  width: 100%;
  max-width: calc(1080px + 10rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 5rem;
  padding-right: 5rem;
  position: relative;
}

.plan__title {
  margin-bottom: 6.7rem;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .plan__title {
    margin-bottom: 13rem;
  }
}

.plan__title h2 {
  margin: 0 0 3.6rem 0;
  font-size: 5.2rem;
}

@media screen and (min-width: 750px) {
  .plan__title h2 {
    margin-bottom: 4.3rem;
    font-size: 5.6rem;
  }
}

.plan__title img {
  width: 9rem;
  height: auto;
}

.plan__list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

@media screen and (min-width: 750px) {
  .plan__list {
    flex-direction: row;
    gap: 0;
  }
}

.plan__list__item__title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 11.4rem;
  margin: 0;
  font-size: 4rem;
  color: #fff;
  border-radius: 1.5rem 1.5rem 0 0;
}

@media screen and (min-width: 750px) {
  .plan__list__item__title {
    height: 13rem;
    margin: 0 1rem;
  }
}

@media screen and (min-width: 750px) {
  .plan__list__item__title h3 {
    font-size: 3.2rem;
  }
}

.plan__list__item__title span {
  position: absolute;
  top: -2.7rem;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 17.5rem;
  height: 5.4rem;
  margin-left: -8.75rem;
  font-size: 2.7rem;
  font-weight: 500;
  border-radius: 2.7rem;
  background: #f08524;
}

.plan__list__item__inner {
  padding: 5.4rem 4rem 4rem 4rem;
  background: #fff;
  border-width: 0 1px 1px 1px;
  border-color: #c6f7dc;
  border-style: solid;
}

@media screen and (min-width: 750px) {
  .plan__list__item__inner {
    display: flex;
    flex-direction: column;
    height: calc(100% - 13rem);
    border-width: 1px;
  }
}

.plan__list__item__detail {
  margin-bottom: 2.8rem;
}

@media screen and (min-width: 750px) {
  .plan__list__item__detail {
    margin-bottom: 7.2rem;
  }
}

.plan__list__item__detail h4 {
  margin: 0 0 2.6rem 0;
  font-size: 3.2rem;
  color: #094;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .plan__list__item__detail h4 {
    margin-bottom: 4.4rem;
    font-size: 2.8rem;
  }
}

.plan__list__item__detail p {
  margin: 0;
  font-size: 2.4rem;
}

.plan__list__item__price {
  margin-bottom: 2.7rem;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .plan__list__item__price {
    margin-bottom: 4.5rem;
  }
}

.plan__list__item__price img {
  width: auto;
  height: 5rem;
}

.enterprise .plan__list__item__inner .plan__list__item__price img {
  width: auto;
  height: 3.5rem;
}

@media screen and (max-width: 750px) {
  .enterprise .plan__list__item__inner .plan__list__item__price img {
    width: auto;
    height: 4.25rem;
  }
}

.plan__list__item__option h5 {
  margin: 0;
  padding: 1.5rem 0;
  font-size: 2.6rem;
  color: #fff;
  text-align: center;
  background: #00a64b;
}

.plan__list__item__option p {
  margin: 0;
  padding: 3.5rem 2rem 2rem 2rem;
  font-size: 2.4rem;
  background: #e6faef;
}

@media screen and (min-width: 750px) {
  .plan__list__item__option p {
    flex: 1 1 auto;
  }
}

.plan__list__item.standard .plan__list__item__title {
  background: #39bd74;
}

.plan__list__item.pro .plan__list__item__title {
  padding-top: 1rem;
  background: #00a64b;
}

.plan__list__item.enterprise .plan__list__item__title {
  background: #00823b;
}

.case {
  position: relative;
  padding: 11.2rem 0 9.3rem 0;
}

@media screen and (min-width: 750px) {
  .case {
    padding: 15rem 0 11rem 0;
  }
}

.case__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.case__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.case__inner {
  position: relative;
}

@media screen and (min-width: 750px) {
  .case__inner {
    width: 100%;
    max-width: calc(1080px + 10rem);
    margin-left: auto;
    margin-right: auto;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.case__title {
  margin-bottom: 10rem;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .case__title {
    margin-bottom: 15rem;
  }
}

.case__title h2 {
  margin: 0 0 3.6rem 0;
  font-size: 5.2rem;
  color: #fff;
}

@media screen and (min-width: 750px) {
  .case__title h2 {
    font-size: 4.6rem;
  }
}

.case__title img {
  width: 21.5rem;
}

.case__list {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}

@media screen and (min-width: 750px) {
  .case__list {
    gap: 6rem;
  }
}

.case__list__item__image {
  margin-bottom: 2.4rem;
}

@media screen and (min-width: 750px) {
  .case__list__item__image {
    width: 50%;
    margin: 0;
  }
}

.case__list__item__text {
  padding: 0 5rem;
}

@media screen and (min-width: 750px) {
  .case__list__item__text {
    width: 50%;
    padding: 0 1.5rem;
  }
}

.case__list__item__title {
  margin-bottom: 4.5rem;
}

@media screen and (min-width: 750px) {
  .case__list__item__title {
    margin-bottom: 4rem;
  }
}

.case__list__item__title img {
  width: 16.5rem;
}

@media screen and (min-width: 750px) {
  .case__list__item__title img {
    width: 15.1rem;
  }
}

.case__list__item__title h3 {
  margin: 2rem 0 0 0;
  font-size: 3rem;
  color: #fff;
}

@media screen and (min-width: 750px) {
  .case__list__item__title h3 {
    font-size: 2.8rem;
  }
}

.case__list__item__before-after {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.case__list__item__before-after h4 {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30rem;
  height: 6rem;
  margin: 0;
  font-size: 2.6rem;
  color: #fff;
}

@media screen and (min-width: 750px) {
  .case__list__item__before-after h4 {
    width: 27.6rem;
    height: 5.6rem;
    font-size: 2.4rem;
  }
}

.case__list__item__before-after p {
  margin: 0;
  font-size: 2rem;
}

.case__list__item__before-after ul {
  margin: 0;
  padding-left: 1.5rem;
}

.case__list__item__before-after ul li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1em;
  font-size: 2rem;
}

@media screen and (min-width: 750px) {
  .case__list__item__before-after ul li {
    font-size: 1.8rem;
  }
}

.case__list__item__before-after ul li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.case__list__item__before-after ul li:last-child {
  margin-bottom: 0;
}

.case__list__item__before {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
  padding: 7rem 3rem 3rem 3rem;
  background: #f2f2f2;
}

@media screen and (min-width: 750px) {
  .case__list__item__before {
    padding: 6.5rem 2.5rem 2.5rem 2.5rem;
  }
}

.case__list__item__before h4 {
  background: #a29e9e;
}

.case__list__item__arrow {
  width: 4.4rem;
  margin-bottom: 2.5rem;
}

@media screen and (min-width: 750px) {
  .case__list__item__arrow {
    width: 4.1rem;
  }
}

.case__list__item__after {
  position: relative;
  width: 100%;
  padding: 7rem 3rem 3rem 3rem;
  background: #e6faef;
}

@media screen and (min-width: 750px) {
  .case__list__item__after {
    padding: 6.5rem 2.5rem 2.5rem 2.5rem;
  }
}

.case__list__item__after h4 {
  background: #094;
}

.case__list__item__after.review {
  margin-top: 50px;
  background: #faf4e6;
}

.case__list__item__after.review h4 {
  background: #ffd100;
  color: #333;
}

.case__list__item__after.review p {
  line-height: 2em;
}

@media screen and (min-width: 750px) {
  .case__list__item__after.review p {
    font-size: 1.8rem;
  }
}

.case__list__item.case-1 .case__list__item__image {
  text-align: right;
}

.case__list__item.case-1 .case__list__item__image img {
  width: 54.6rem;
}

.case__list__item.case-2 .case__list__item__image {
  text-align: left;
}

.case__list__item.case-2 .case__list__item__image img {
  width: 57rem;
}

.case__list__item.case-3 .case__list__item__image {
  text-align: right;
}

.case__list__item.case-3 .case__list__item__image img {
  width: 54.5rem;
}

.stability {
  padding: 11.6rem 0 10.5rem 0;
  background-color: #0d8396;
  background-image: url(../img/stability_bg.png);
  background-size: contain;
  background-position: center;
}

@media screen and (min-width: 750px) {
  .stability {
    padding: 13rem 0 12rem 0;
    background-size: cover;
  }
}

.stability__inner {
  width: 100%;
  max-width: calc(1080px + 10rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 5rem;
  padding-right: 5rem;
  position: relative;
}

.stability__title {
  margin-bottom: 8rem;
  text-align: center;
  color: #fff;
}

@media screen and (min-width: 750px) {
  .stability__title {
    margin-bottom: 10rem;
  }
}

.stability__title h2 {
  margin: 0 0 3rem 0;
  font-size: 4.6rem;
  font-weight: bold;
}

@media screen and (min-width: 750px) {
  .stability__title h2 {
    font-size: 4.8rem;
  }
}

.stability__title p {
  margin: 0;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.6;
}

@media screen and (min-width: 750px) {
  .stability__title p {
    font-size: 2.6rem;
  }
}

.stability__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media screen and (min-width: 750px) {
  .stability__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
  }
}

.stability__list__item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  text-align: left;
  padding: 2.5rem 4rem 2.5rem 2.5rem;
  background: #fff;
  border-radius: 1.5rem;
  gap: 2rem;
}

@media screen and (min-width: 750px) {
  .stability__list__item {
    width: calc(50% - 1.5rem);
    padding: 3rem 4rem;
    gap: 3rem;
    align-items: center;
  }
}

.stability__list__item__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #2c67aa;
  border-bottom: none;
  border-right: 2px solid #e0e0e0;
  padding-bottom: 0;
  padding-right: 1.5rem;
  width: auto;
  gap: 0;
  flex-shrink: 0;
}

@media screen and (min-width: 750px) {
  .stability__list__item__head {
    padding-right: 3rem;
  }
}

.stability__list__item__head .point {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 750px) {
  .stability__list__item__head .point {
    font-size: 2rem;
  }
}

.stability__list__item__head .num {
  font-size: 6.2rem;
  font-weight: bold;
  line-height: 1;
}

@media screen and (min-width: 750px) {
  .stability__list__item__head .num {
    font-size: 6rem;
  }
}

.stability__list__item__body {
  flex-grow: 1;
}

.stability__list__item__title {
  margin: 0 0 0.5rem 0;
  font-size: 4.5rem;
  color: #2c67aa;
  line-height: 1.3;
}

@media screen and (min-width: 750px) {
  .stability__list__item__title {
    margin: 0 0 1rem 0;
    font-size: 2.6rem;
  }
}

.stability__list__item__text {
  margin: 0;
  font-size: 3rem;
  font-weight: 500;
  color: #333;
}

@media screen and (min-width: 750px) {
  .stability__list__item__text {
    font-size: 2.3rem;
  }
}

.stability__list__item__image {
  flex-shrink: 0;
  width: 15rem;
  height: fit-content;
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
}

@media screen and (min-width: 750px) {
  .stability__list__item__image {
    width: 10rem;
    display: block;
  }
}

.stability__list__item__image img {
  width: 100%;
  height: auto;
}

/* -------------------- flow -------------------- */
.flow {
  padding: 10rem 0;
  background-color: #ebf1f6;
}

@media screen and (min-width: 750px) {
  .flow {
    padding: 12rem 0;
  }
}

.flow__inner {
  width: 100%;
  max-width: calc(1080px + 10rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 5rem;
  padding-right: 5rem;
}

.flow__title {
  margin-bottom: 6rem;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .flow__title {
    margin-bottom: 8rem;
  }
}

.flow__title h2 {
  margin: 0 0 1rem 0;
  font-size: 4.6rem;
  font-weight: bold;
  color: #333;
}

@media screen and (min-width: 750px) {
  .flow__title h2 {
    font-size: 4.8rem;
  }
}

.flow__title .en {
  display: block;
  font-size: 3.8rem;
  font-weight: bold;
  color: #2c67aa;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 750px) {
  .flow__title .en {
    font-size: 3.4rem;
  }
}

.flow__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media screen and (min-width: 750px) {
  .flow__list {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.flow__list__item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 50rem;
  gap: 3rem;
}

@media screen and (min-width: 750px) {
  .flow__list__item {
    flex-direction: column;
    justify-content: flex-start;
    width: 20rem;
    gap: 0;
  }
}

.flow__list__item__image {
  position: relative;
  width: 20rem;
  height: 20rem;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  flex-shrink: 0;
}

@media screen and (min-width: 750px) {
  .flow__list__item__image {
    width: 16rem;
    height: 16rem;
    margin-bottom: 2rem;
  }
}

.flow__list__item.item-1 .flow__list__item__image img {
  width: 55%;
  height: auto;
}

.flow__list__item.item-2 .flow__list__item__image img {
  height: 60%;
  width: auto;
  transform: translateX(1.2rem);
}

.flow__list__item.item-3 .flow__list__item__image img {
  height: 48%;
  width: auto;
  transform: translateX(0.8rem);
}

.flow__list__item.item-4 .flow__list__item__image img {
  width: 60%;
  height: auto;
}

.flow__list__item__head {
  position: absolute;
  top: -3.5rem;
  left: -6.5rem;
  width: 12.5rem;
  height: 12.5rem;
  background-color: #2c67aa;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  z-index: 2;
}

@media screen and (min-width: 750px) {
  .flow__list__item__head {
    top: -0.5rem;
    left: -0.5rem;
    width: 6.5rem;
    height: 6.5rem;
  }
}

.flow__list__item__head .step {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.flow__list__item__head .num {
  font-size: 4.8rem;
  font-weight: bold;
  line-height: 1;
}

@media screen and (min-width: 750px) {
  .flow__list__item__head .step {
    font-size: 1.2rem;
  }

  .flow__list__item__head .num {
    font-size: 2.8rem;
  }
}

.flow__list__item__title {
  margin: 0;
  font-size: 4.3rem;
  font-weight: bold;
  color: #2c67aa;
  text-align: left;
}

@media screen and (min-width: 750px) {
  .flow__list__item__title {
    font-size: 2.6rem;
    text-align: center;
  }
}

.flow__arrow {
  width: 5.5rem;
}

.flow__arrow img {
  width: 100%;
  transform: rotate(90deg);
}

@media screen and (min-width: 750px) {
  .flow__arrow {
    width: 4rem;
    margin-top: 6rem;
    margin-right: 0;
  }

  .flow__arrow img {
    transform: rotate(0);
  }
}

/* -------------------- spec -------------------- */
.spec {
  position: relative;
  padding: 10rem 0 10rem 0;
  overflow: hidden;
}

@media screen and (min-width: 750px) {
  .spec {
    padding: 12rem 0 12rem 0;
  }
}

.spec__bg {
  position: absolute;
  top: -11rem;
  right: -22rem;
  width: 70%;
  max-width: 75rem;
  z-index: 1;
}

@media screen and (min-width: 750px) {
  .spec__bg {
    top: -5rem;
    right: 0;
    width: 50%;
    max-width: 55rem;
  }
}

.spec__bg img {
  width: 100%;
  height: auto;
}

.spec__inner {
  position: relative;
  width: 100%;
  max-width: calc(1080px + 10rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 5rem;
  padding-right: 5rem;
  z-index: 2;
}

.spec__title {
  margin-bottom: 6rem;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .spec__title {
    margin-bottom: 8rem;
  }
}

.spec__title h2 {
  margin: 0 0 1rem 0;
  font-size: 4.6rem;
  font-weight: bold;
  color: #333;
}

@media screen and (min-width: 750px) {
  .spec__title h2 {
    font-size: 4.8rem;
  }
}

.spec__title .en {
  display: block;
  font-size: 3.8rem;
  font-weight: bold;
  color: #2c67aa;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 750px) {
  .spec__title .en {
    font-size: 3.4rem;
  }
}


.spec__image {
  text-align: center;
  margin-bottom: 6rem;
}

.spec__image img {
  width: 100%;
  max-width: 40rem;
  height: auto;
}

.spec__table {
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
}

.spec__table table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.spec__table th,
.spec__table td {
  padding: 3.5rem 2rem;
  font-size: 2.5rem;
  border-bottom: 1px solid #e0e0e0;
  line-height: 1.6;
}

.spec__table tr:last-child th,
.spec__table tr:last-child td {
  border-bottom: none;
}

@media screen and (min-width: 750px) {

  .spec__table th,
  .spec__table td {
    padding: 2rem 3rem;
    font-size: 2.4rem;
  }

  .spec__table td {
    font-size: 2.3rem;
  }
}

.spec__table th {
  width: 35%;
  background-color: #f7f7f7;
  color: #555;
  font-weight: bold;
  text-align: left;
  border-right: 1px solid #e0e0e0;
}

.spec__table td {
  width: 65%;
  background-color: #fff;
  color: #333;
}

/* -------------------- accessory -------------------- */
.accessory {
  position: relative;
  padding: 10rem 0 10rem 0;
  overflow: hidden;
}

@media screen and (min-width: 750px) {
  .accessory {
    padding: 12rem 0 12rem 0;
  }
}

.accessory__bg {
  position: absolute;
  top: -25rem;
  left: -2.5rem;
  width: 70%;
  max-width: 60rem;
  z-index: 1;
}

@media screen and (min-width: 750px) {
  .accessory__bg {
    top: -5rem;
    left: 0;
    width: 50%;
    max-width: 55rem;
  }
}

.accessory__bg img {
  width: 100%;
  height: auto;
}

.accessory__inner {
  position: relative;
  width: 100%;
  max-width: calc(1080px + 10rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 5rem;
  padding-right: 5rem;
  z-index: 2;
}

.accessory__title {
  margin-bottom: 6rem;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .accessory__title {
    margin-bottom: 8rem;
  }
}

.accessory__title h2 {
  margin: 0;
  font-size: 4rem;
  font-weight: bold;
  color: #2c67aa;
}

.accessory__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10rem 0;
}

@media screen and (min-width: 750px) {
  .accessory__list {
    gap: 6rem 4%;
  }
}

.accessory__item {
  width: 100%;
  text-align: left;
}

@media screen and (min-width: 750px) {
  .accessory__item {
    width: 30%;
  }
}

.accessory__item__image {
  height: 35rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accessory__item__image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.accessory__item__title {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3.5rem;
}

.accessory__item__title span {
  color: #555;
  margin-right: 0.5rem;
  font-size: 2.4rem;
  line-height: 1;
}

.accessory__note {
  margin-top: 4rem;
  text-align: center;
  font-size: 2rem;
  color: #333;
}

@media screen and (min-width: 750px) {
  .accessory__note {
    font-size: 1.6rem;
    margin-top: 6rem;
    text-align: right;
  }

  .accessory__item__image {
    height: 24rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .accessory__item__title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
  }
}

.faq {
  position: relative;
  padding: 10rem 0 10rem 0;
  overflow: hidden;
}

@media screen and (min-width: 750px) {
  .faq {
    padding: 20rem 0 0 0;
  }
}

.faq__inner {
  width: 100%;
  max-width: calc(1080px + 10rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 5rem;
  padding-right: 5rem;
  position: relative;
  z-index: 2;
}

.faq__title {
  margin: 0 0 8rem 0;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .faq__title {
    margin-bottom: 10rem;
  }
}

.faq__title h2 {
  margin: 0 0 1rem 0;
  font-size: 4.6rem;
  font-weight: bold;
  color: #333;
}

@media screen and (min-width: 750px) {
  .faq__title h2 {
    font-size: 4.8rem;
  }
}

.faq__title .en {
  display: block;
  font-size: 3.8rem;
  font-weight: bold;
  color: #2c67aa;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 750px) {
  .faq__title .en {
    font-size: 3.4rem;
  }
}

.faq__list {
  width: 100%;
  border-top: 0.2rem solid #dbdbdb;
}

.faq__list__item {
  background: #fff;
  overflow: hidden;
  border-bottom: 0.2rem solid #dbdbdb;
}

.faq__list__item.is-open {
  background: #f8f8f8;
}

.faq__list__item.is-open .faq__answer {
  max-height: 40rem;
  padding-bottom: 3rem;
  opacity: 1;
}

@media screen and (min-width: 750px) {
  .faq__list__item.is-open .faq__answer {
    padding-bottom: 6rem;
  }
}

.faq__question {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 4rem 4rem 4rem 10rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

@media screen and (min-width: 750px) {
  .faq__question {
    padding: 6rem 4rem 6rem 10rem;
    padding-left: 14rem;
    padding-right: 10rem;
  }
}

.faq__question:before {
  content: "";
  position: absolute;
  top: 6rem;
  left: 3rem;
  width: 3.9rem;
  height: 3.8rem;
  background: url(../img/faq_q.png) no-repeat center/contain;
}

@media screen and (min-width: 750px) {
  .faq__question:before {
    left: 7rem;
  }
}

.faq__question h3 {
  margin: 0;
  font-size: 3.2rem;
  font-weight: bold;
  color: #2c67aa;
  line-height: 1.4;
  flex: 1;
  padding-right: 2rem;
}

.faq__toggle {
  position: relative;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
}

.faq__toggle::before,
.faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.8rem;
  height: 0.4rem;
  background: #2c67aa;
  transition: all 0.3s ease;
}

.faq__toggle::before {
  transform: translate(-50%, -50%);
}

.faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.is-open .faq__toggle::before {
  transform: translate(-50%, -50%);
}

.is-open .faq__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__answer {
  max-height: 0;
  padding: 0 7.8rem 0 10rem;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

@media screen and (min-width: 750px) {
  .faq__question h3 {
    font-size: 2.8rem;
  }

  .faq__answer {
    padding-left: 14rem;
    padding-right: 10rem;
  }
}

.faq__answer p {
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.6;
  color: var(--text-color);
  width: 43rem;
}

@media screen and (min-width: 750px) {
  .faq__answer p {
    font-size: 2.3rem;
    width: 100%;
  }
}

.contact {
  padding: 14.5rem 0 9.5rem 0;
}

@media screen and (min-width: 750px) {
  .contact {
    padding: 25rem 0 10rem 0;
  }
}

.contact__intro {
  margin-bottom: 7rem;
  padding: 0 5rem;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .contact__intro {
    margin-bottom: 10rem;
    padding: 0;
  }
}

.contact__intro h2 {
  margin: 0 0 3.8rem 0;
  font-size: 4.6rem;
  color: #2c67aa;
}

@media screen and (min-width: 750px) {
  .contact__intro h2 {
    font-size: 5.6rem;
  }
}

.contact__intro p {
  font-size: 2.9rem;
  font-weight: 500;
}

@media screen and (min-width: 750px) {
  .contact__intro p {
    font-size: 2.6rem;
  }
}

.contact__form__tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9rem;
  padding: 0 5rem;
  border-bottom: 0.2rem solid #2c67aa;
}

@media screen and (min-width: 750px) {
  .contact__form__tabs {
    justify-content: center;
    gap: 2rem;
  }
}

.contact__form__tab {
  width: 32rem;
  background: none;
  border: none;
  padding: 2rem 3rem;
  font-size: 2.9rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  border-radius: 1rem 1rem 0 0;
  transition: none;
}

@media screen and (min-width: 750px) {
  .contact__form__tab {
    width: 34.7rem;
    padding: 3rem 0;
    font-size: 2.4rem;
  }
}

.contact__form__tab[data-tab="rental"],
.contact__form__tab[data-tab="individual"] {
  border-top: 0.2rem solid var(--text-color);
  border-left: 0.2rem solid var(--text-color);
  border-right: 0.2rem solid var(--text-color);
  box-shadow:
    0 -0.4rem 0.8rem rgba(0, 0, 0, 0.1),
    -0.4rem 0 0.8rem rgba(0, 0, 0, 0.1),
    0.4rem 0 0.8rem rgba(0, 0, 0, 0.1);
}

.contact__form__tab[data-tab="corporate"] {
  color: #fff;
  background: #000;
  box-shadow:
    0 -0.4rem 0.8rem rgba(0, 0, 0, 0.1),
    -0.4rem 0 0.8rem rgba(0, 0, 0, 0.1),
    0.4rem 0 0.8rem rgba(0, 0, 0, 0.1);
}

.contact__form__tab.active[data-tab="rental"],
.contact__form__tab.active[data-tab="individual"] {
  color: #2c67aa;
  border-top: 0.2rem solid #2c67aa;
  border-left: 0.2rem solid #2c67aa;
  border-right: 0.2rem solid #2c67aa;
  position: relative;
  z-index: 1;
  box-shadow:
    0 -0.4rem 0.8rem rgba(0, 0, 0, 0.1),
    -0.4rem 0 0.8rem rgba(0, 0, 0, 0.1),
    0.4rem 0 0.8rem rgba(0, 0, 0, 0.1);
}

.contact__form__tab.active[data-tab="rental"]::after,
.contact__form__tab.active[data-tab="individual"]::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  right: 0;
  height: 1rem;
  background: #fff;
  z-index: 2;
}

.contact__form__tab.active[data-tab="corporate"] {
  color: #fff;
  margin-bottom: -0.2rem;
  background: #2c67aa;
  position: relative;
  z-index: 1;
  box-shadow:
    0 -0.4rem 0.8rem rgba(0, 0, 0, 0.1),
    -0.4rem 0 0.8rem rgba(0, 0, 0, 0.1),
    0.4rem 0 0.8rem rgba(0, 0, 0, 0.1);
}

.contact__form__tab.active[data-tab="corporate"]::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: -0.4rem;
  right: -0.4rem;
  height: 1rem;
  background: #fff;
  z-index: 2;
}

.contact__form__content {
  position: relative;
  padding: 0 5rem;
}

@media screen and (min-width: 750px) {
  .contact__form__content {
    width: 100%;
    max-width: calc(1080px + 10rem);
    margin-left: auto;
    margin-right: auto;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.contact__form__panel {
  display: none;
}

.contact__form__panel.active {
  display: block;
}

.contact__form__row {
  margin-bottom: 4rem;
  font-size: 2.4rem;
}

@media screen and (min-width: 750px) {
  .contact__form__row {
    margin-bottom: 4rem;
  }
}

.contact__form__label {
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: 2.8rem;
}

.contact__form__input {
  font-size: 2.8rem;
}

.contact__form__label .required:after {
  content: "*";
  display: inline-block;
  margin-left: 0.5rem;
  color: #f08524;
}

.contact__form__input input[type="text"],
.contact__form__input input[type="email"],
.contact__form__input input[type="tel"],
.contact__form__input input[type="number"],
.contact__form__input input[type="password"],
.contact__form__input textarea {
  width: 100%;
  padding: 1.5rem;
  border: 1px solid #d2d2d2;
}

.contact__form__input input,
.contact__form__input select,
.contact__form__input textarea {
  font-size: 2.4rem;
}

.contact__form__input select {
  padding: 1.5rem;
  border: 1px solid #d2d2d2;
}

.contact__form__input p {
  margin: 1rem 0;
  font-size: 2.8rem;
}

.contact__form__name {
  display: flex;
  gap: 3rem;
}

.contact__form__name div {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact__form__name input[type="text"] {
  width: 22rem;
}

.contact__form__tel {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media screen and (min-width: 750px) {
  .contact__form__label {
    font-size: 2.4rem;
  }

  .contact__form__input {
    font-size: 2rem;
  }

  .contact__form__input p {
    font-size: 2.3rem;
  }

  .contact__form__tel input[type="text"] {
    width: 6em;
  }
}

.contact__form__checkbox,
.contact__form__radio {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.contact__form__checkbox label,
.contact__form__radio label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
}

.contact__form__zip {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact__form__zip input[type="text"] {
  width: 12em;
}

.contact__form__date {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}

.contact__form__agree {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: bold;
}

.contact__form__agree label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact__form__agree a {
  color: #2c67aa;
}

.contact__form__submit {
  display: flex;
  justify-content: center;
  margin-top: 8rem;
}

.contact__form__submit button.btn-download::before {
  background: url(../img/icon_download-black.png) no-repeat center / contain;
}

@media screen and (min-width: 750px) {
  .contact__form__submit button {
    width: 47.3rem;
    height: 9.4rem;
    font-size: 2.5rem;
  }
}

@media screen and (min-width: 750px) {
  .pc-hidden {
    display: none;
  }
}

@media screen and (min-width: 750px) {
  .sp-only {
    display: none;
  }
}

@media screen and (min-width: 750px) {
  .fixed-header.show {
    transform: translateY(0);
  }
}

@media screen and (min-width: 750px) {
  .fixed-header__inner {
    width: 100%;
    max-width: calc(1080px + 10rem);
    margin-left: auto;
    margin-right: auto;
    padding-left: 5rem;
    padding-right: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 11.6rem;
  }
}

@media screen and (min-width: 750px) {
  .fixed-header__menu {
    display: flex;
    gap: 7rem;
    font-size: 2.2rem;
    font-weight: 500;
  }
}

@media screen and (min-width: 750px) {
  .fixed-header__menu li a {
    color: var(--text-color);
    text-decoration: none;
  }
}

@media screen and (min-width: 750px) {
  .fixed-header__button {
    display: flex;
    gap: 2rem;
  }
}

@media screen and (min-width: 750px) {

  .fixed-header__button .btn,
  .fixed-header__button .btn-orange {
    width: 23rem;
    height: 6.2rem;
    font-size: 1.4rem;
    padding-right: 1.4rem;
  }
}

@media screen and (min-width: 750px) {

  .fixed-header__button .btn:before,
  .fixed-header__button .btn-orange:before {
    content: none;
  }
}

@media screen and (min-width: 750px) {

  .fixed-header__button .btn:after,
  .fixed-header__button .btn-orange:after {
    right: 2rem;
    width: 1.3rem;
    height: 2.2rem;
    margin-top: -1.1rem;
  }
}

@media screen and (min-width: 750px) {
  .structure__shape.shape-1 {
    top: -13rem;
    right: 0;
  }
}

@media screen and (min-width: 750px) {
  .structure__shape.shape-1 img {
    width: 50rem;
  }
}

@media screen and (min-width: 750px) {
  .structure__shape.shape-2 {
    bottom: 4rem;
    left: 0;
  }
}

@media screen and (min-width: 750px) {
  .structure__shape.shape-2 img {
    width: 21.6rem;
  }
}

@media screen and (min-width: 750px) {
  .plan__list__item {
    width: 33.3333333333%;
  }
}

@media screen and (min-width: 750px) {
  .plan__list__item__option {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
  }
}

@media screen and (min-width: 750px) {
  .case__list__item {
    display: flex;
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 750px) {
  .case__list__item__title.tx-long h3 {
    font-size: 2.6rem;
  }
}

@media screen and (min-width: 750px) {
  .case__list__item.case-2 {
    flex-direction: row;
  }
}

@media screen and (min-width: 750px) {
  .contact__form {
    padding: 0;
  }
}

.btn-blue {
  background: #089cf1;
  color: #fff;
  border-color: #089cf1;
}

.btn-blue:after {
  background-image: url("../img/icon_button-arrow_white.png");
}

.amazon-note {
  width: 58rem;
  font-size: 1.6rem;
  color: #fff;
  text-align: left;
  margin-top: 2rem;
  line-height: 1.5;
  text-indent: -1em;
}

@media screen and (min-width: 750px) {
  .amazon-note {
    width: 100%;
    font-size: 1.4rem;
    text-align: right;
    margin-top: -2rem;
  }

  .kv__link,
  .cta__link.cta-2 {
    max-width: 120rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .kv__link .btn,
  .cta__link.cta-2 .btn {
    width: 38rem;
    height: 9rem;
    font-size: 2.2rem;
    padding-right: 3rem;
  }
}

/* -------------------- return_top -------------------- */
#return_top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#return_top.active {
  opacity: 1;
  visibility: visible;
}

#return_top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12rem;
  height: 12rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: opacity 0.3s ease, background-color 0.3s ease;
}

#return_top a:hover {
  background-color: #f5f5f5;
  opacity: 1;
}

#return_top .arrow {
  position: relative;
  width: 3.2rem;
  height: 4rem;
  margin-top: -0.4rem;
}

#return_top .arrow::after {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 50%;
  width: 2px;
  height: 3.6rem;
  background: #111;
  transform: translateX(-50%);
}

#return_top .arrow span {
  position: absolute;
  top: 0.6rem;
  left: 50%;
  width: 1.8rem;
  height: 1.8rem;
  border-top: 2px solid #111;
  border-left: 2px solid #111;
  transform: translateX(-50%) rotate(45deg);
}

@media screen and (min-width: 750px) {
  #return_top {
    bottom: 3rem;
    right: 3rem;
  }

  #return_top a {
    width: 7rem;
    height: 7rem;
  }

  #return_top .arrow {
    width: 1.8rem;
    height: 2.2rem;
  }

  #return_top .arrow::after {
    height: 2rem;
  }

  #return_top .arrow span {
    width: 1.1rem;
    height: 1.1rem;
  }
}