/*!
global > color
------------------------------
*/
:root {
  --color-primary: #f6c589;
  --color-primary02: #a5df40;
  --color-bg-extra-light: #fafafa;
  --color-bg-light: #f2f2f2;
  --color-border: #dddddd;
  --color-font-base: #333333;
  --color-font-light: #888888;
  --color-white: #ffffff;
  --color-red: #e95757;
  --color-: #a5df40;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Zen Kaku Gothic New", sans-serif;
  --font-family-en: "Dosis", sans-serif;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-header: 30;
  --z-index-default: 1;
  --z-index-negative: -1;
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

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

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

fieldset,
img {
  border: 0;
}

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

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

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

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

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

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

textarea {
  resize: vertical;
  display: block;
}

select {
  cursor: pointer;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: inherit;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

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

img,
svg {
  width: 100%;
  height: auto;
  display: block;
}

dialog {
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  color: inherit;
  border: none;
  margin: 0;
  padding: 0;
}

summary {
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

iframe {
  vertical-align: bottom;
}

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

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

/*!
foundation > base
------------------------------
*/
:root {
  --base-vw: 375;
}
@media screen and (min-width: 900px) {
  :root {
    --base-vw: 1366;
  }
}

* {
  letter-spacing: 0.05em;
}

html {
  font-size: calc(100vw / var(--base-vw));
}

body {
  line-height: 1.7;
  font-size: 16rem;
  font-family: var(--font-family-base);
  color: var(--color-font-base);
  font-weight: 500;
}
@media screen and (min-width: 900px) {
  body {
    font-size: 18rem;
  }
}

/*!
utility > utility
------------------------------
*/
.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.u-pb {
  padding-bottom: 64rem !important;
}
@media screen and (min-width: 900px) {
  .u-pb {
    padding-bottom: 96rem !important;
  }
}

.u-ptb {
  padding-block: 64rem !important;
}
@media screen and (min-width: 900px) {
  .u-ptb {
    padding-block: 96rem !important;
  }
}

.u-text-hover {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-size: 0 1px;
  background-repeat: no-repeat;
  transition: background-size 0.3s;
}
@media screen and (min-width: 900px) and (any-hover: hover) {
  .u-text-hover:hover {
    background-size: 100% 1px;
  }
}

/*!
component > button
------------------------------
*/
.sp-happen {
  display: none;
}

.sp-happen {
  display: none;
}

.c-button {
  --font-size: 18rem;
  --gap: 14rem;
  font-family: var(--font-family-en);
  line-height: 1;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: var(--gap);
  font-size: var(--font-size);
  white-space: nowrap;
}
@media screen and (min-width: 900px) {
  .c-button {
    --font-size: 20rem;
    --gap: 24rem;
  }
}
.c-button:after {
  --size: 47rem;
  --dot-size: 5rem;
  content: "";
  display: block;
  width: var(--size);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-white);
  border: calc((var(--size) - var(--dot-size)) / 2) solid var(--color-primary);
  transition: scale 0.3s;
}
@media screen and (min-width: 900px) {
  .c-button:after {
    --size: 58rem;
    --dot-size: 6rem;
  }
}

.c-button--small {
  --font-size: 16rem;
  --gap: 10rem;
}
.c-button--small::after {
  --size: 32rem;
  --dot-size: 4rem;
}

/*!
component > entry-button
------------------------------
*/
.c-entry-button {
  width: 290rem;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .c-entry-button {
    width: 355rem;
  }
}

.c-entry-button-link {
  display: block;
  position: relative;
}
@media (any-hover: hover) {
  .c-entry-button-link:hover .c-button::after {
    scale: 1.1;
  }
}
.c-entry-button-link img {
  -webkit-animation: rotate 20s linear infinite;
  animation: rotate 20s linear infinite;
}
@-webkit-keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.c-entry-button-text {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}

/*!
component > title
------------------------------
*/
.c-title {
  display: inline-grid;
  grid-template-columns: 10rem 1fr;
  gap: 14rem 18rem;
}
@media screen and (min-width: 900px) {
  .c-title {
    grid-template-columns: 10rem auto auto;
    gap: 14rem;
    align-items: end;
  }
}

.c-title-en {
  font-family: var(--font-family-en);
  font-size: 40rem;
  font-weight: 400;
  line-height: 1;
  grid-column: 2/3;
  grid-row: 1/2;
}

@media screen and (min-width: 900px) {
  .c-title-en {
    font-size: 50rem;
  }
}

.c-title-en--white {
  color: var(--color-white);
}

.c-title-ja {
  line-height: 1;
  font-size: 14rem;
  color: var(--color-font-light);
  grid-column: 2/3;
  grid-row: 2/3;
}
@media screen and (min-width: 900px) {
  .c-title-ja {
    grid-column: 3/4;
    grid-row: 1/2;
  }
}

.c-title-ja--white {
  color: var(--color-primary);
}

.c-title-small {
  font-size: 20rem;
  letter-spacing: 0.075em;
  line-height: 1;
  font-family: var(--font-family-en);
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 10rem;
  align-items: center;
  color: #686868;
}

@media screen and (min-width: 900px) {
  .c-title-small {
    gap: 14rem;
    font-size: 20rem;
  }
}

/*!
component > page-kv
------------------------------
*/
.c-page-kv {
  background-color: var(--color-bg-light);
  height: 365rem;
  position: relative;
  display: flex;
  align-items: flex-end;
}
@media screen and (min-width: 900px) {
  .c-page-kv {
    height: 467rem;
  }
}
.c-page-kv::after {
  content: "";
  display: block;
  width: 100%;
  height: 64rem;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 30rem 0 0 0;
}
@media screen and (min-width: 900px) {
  .c-page-kv::after {
    height: 96rem;
    border-radius: 50rem 0 0 0;
  }
}
.c-page-kv > * {
  width: 100%;
}

.c-page-kv-inner {
  padding-bottom: 84rem;
  display: flex;
  flex-direction: column;
  gap: 32rem;
}
@media screen and (min-width: 900px) {
  .c-page-kv-inner {
    padding-bottom: 116rem;
    gap: 56rem;
  }
}

.c-page-kv-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 22rem;
}
@media screen and (min-width: 900px) {
  .c-page-kv-title-wrap {
    gap: 28rem;
  }
}

.c-page-kv-title-en {
  font-family: var(--font-family-en);
  font-weight: 300;
  font-size: 40rem;
  line-height: 1;
  color: var(--color-font-light);
}
@media screen and (min-width: 900px) {
  .c-page-kv-title-en {
    font-size: 52rem;
  }
}

.c-page-kv-title-ja {
  line-height: 1;
  color: var(--color-font-light);
  font-size: 36rem;
  color: var(--color-font-base);
}

@media screen and (min-width: 900px) {
  .c-page-kv-title-ja {
    font-size: 60rem;
  }
}

.c-page-kv-breadcrumb {
  display: flex;
  justify-content: flex-end;
}

/*!
component > news-item
------------------------------
*/
.c-news-item-link {
  padding: 16rem 10rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  border-bottom: 1rem solid var(--color-border);
  transition: color 0.3s;
}
@media screen and (min-width: 900px) {
  .c-news-item-link {
    padding: 24rem 20rem;
    gap: 40rem;
    flex-direction: row;
    align-items: center;
  }
}
@media (any-hover: hover) {
  .c-news-item-link:hover {
    color: var(--color-primary);
  }
}

.c-news-item-date {
  letter-spacing: 0.025em;
  font-size: 13rem;
  color: var(--color-font-light);
  font-family: var(--font-family-en);
}
@media screen and (min-width: 900px) {
  .c-news-item-date {
    font-size: 14rem;
  }
}

.c-news-item-title {
  line-height: 1.6;
}

/*!
component > pagination
------------------------------
*/
.c-pagination-list {
  display: flex;
  gap: 6rem;
  justify-content: center;
}

.c-pagination-link,
.c-pagination-number,
.c-pagination-dots {
  display: inline-block;
  width: 40rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16rem;
}

.c-pagination-link {
  background-color: var(--color-bg-light);
  transition:
    background-color 0.3s,
    color 0.3s;
}
@media (any-hover: hover) {
  .c-pagination-link:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  .c-pagination-link:hover .c-pagination-icon {
    background-color: var(--color-white);
  }
}

.c-pagination-icon {
  -webkit-mask-image: url(../img/icon-arrow.svg);
  mask-image: url(../img/icon-arrow.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: center;
  mask-position: center;
  display: block;
  width: 10rem;
  aspect-ratio: 1/1;
  background-color: var(--color-font-base);
  transition: background-color 0.3s;
}

.c-pagination-icon--prev {
  rotate: 180deg;
}

.c-pagination-number--current {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.c-pagination-dot-icon {
  -webkit-mask-image: url(../img/icon-dots-small.svg);
  mask-image: url(../img/icon-dots-small.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: var(--color-font-base);
  display: block;
  width: 10rem;
  height: 3rem;
}

/*!
component > breadcrumb
------------------------------
*/
.c-breadcrumb {
  display: flex;
}

.c-breadcrumb-item {
  font-size: 14rem;
  color: var(--color-font-light);
  line-height: 1;
  font-family: var(--font-family-en);
  display: flex;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .c-breadcrumb-item {
    font-size: 16rem;
  }
}
.c-breadcrumb-item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 11rem;
  height: 8rem;
  -webkit-mask-image: url("../img/icon-arrow.svg");
  mask-image: url("../img/icon-arrow.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: var(--color-font-light);
  margin: 0 10rem;
}

.c-breadcrumb-item--current {
  color: var(--color-primary);
}

/*!
component > form
------------------------------
*/
.c-form-required {
  display: inline-block;
  background-color: var(--color-red);
  color: var(--color-white);
  font-size: 13rem;
  padding: 2rem 8rem;
  border-radius: 7rem;
}

.c-form-text {
  padding: 12rem 8rem;
  border-radius: 8rem;
  background-color: var(--color-bg-extra-light);
  width: 100%;
}
.c-form-text::-webkit-input-placeholder {
  color: var(--color-font-light);
}
.c-form-text::-moz-placeholder {
  color: var(--color-font-light);
}
.c-form-text:-ms-input-placeholder {
  color: var(--color-font-light);
}
.c-form-text::-ms-input-placeholder {
  color: var(--color-font-light);
}
.c-form-text::placeholder {
  color: var(--color-font-light);
}
.c-form-text:focus {
  outline: 1rem solid var(--color-primary);
}

.c-form-text--textarea {
  min-height: 200rem;
  field-sizing: content;
}

.c-form-button {
  font-size: 18rem;
  line-height: 1;
  color: var(--color-white);
  background-color: var(--color-primary);
  border: 1rem solid var(--color-primary);
  border-radius: 100vh;
  padding: 13rem 39rem;
  transition:
    background-color 0.3s,
    color 0.3s;
}
@media (any-hover: hover) {
  .c-form-button:hover {
    color: var(--color-primary);
    background-color: var(--color-white);
  }
}

/*!
layout > container
------------------------------
*/
.l-container-s {
  padding-inline: 20rem;
}
@media screen and (min-width: 900px) {
  .l-container-s {
    padding-inline: 303rem;
  }
}

.l-container {
  padding-inline: 20rem;
}
@media screen and (min-width: 900px) {
  .l-container {
    padding-inline: 83rem;
  }
}

/*!
layout > header
------------------------------
*/
.l-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20rem 12rem;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: var(--z-index-header);
  background-color: rgba(255, 255, 255, 0);
}
@media screen and (min-width: 900px) {
  .l-header {
    padding: 24rem 65rem;
  }
}

.l-header--top .l-header-logo-black {
  display: none;
}
.l-header--top.is-active .l-header-logo-white {
  display: none;
}
.l-header--top.is-active .l-header-logo-black {
  display: block;
}
@media screen and (min-width: 900px) {
  .l-header--top.is-active
    .l-header-menu-link:not(.l-header-menu-link--contact) {
    color: var(--color-font-base);
  }
}

.l-header-logo {
  width: 240rem;
}
@media screen and (min-width: 900px) {
  .l-header-logo {
    width: 290rem;
  }
}

.l-header-menu {
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .l-header-menu {
    display: block;
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
  }
}
.l-header-menu::-webkit-backdrop {
  display: none;
}
.l-header-menu::backdrop {
  display: none;
}

.l-header-menu-nav {
  background-color: var(--color-primary);
  width: 319rem;
  margin-left: auto;
  padding: 40rem;
  border-radius: 0 0 0 30rem;
  color: var(--color-white);
}
@media screen and (min-width: 900px) {
  .l-header-menu-nav {
    background-color: transparent;
    padding: 0;
    color: var(--color-font-base);
    border-radius: 0;
    width: auto;
  }
}

.l-header-menu-list {
  display: flex;
  flex-direction: column;
  gap: 16rem;
}
@media screen and (min-width: 900px) {
  .l-header-menu-list {
    flex-direction: row;
    align-items: center;
    gap: 50rem;
  }
}

@media screen and (min-width: 900px) {
  .l-header-menu-item--top {
    display: none;
  }
}

.l-header-menu-link {
  display: block;
}

@media screen and (min-width: 900px) {
  .l-header-menu-link--current {
    color: var(--color-primary);
  }
}

@media screen and (min-width: 900px) {
  .l-header-menu-link--white {
    color: var(--color-white);
  }
}

@media screen and (min-width: 900px) {
  .l-header-menu-link--contact {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 9rem 31rem;
    display: flex;
    align-items: center;
    gap: 9rem;
    border-radius: 100vh;
    border: 1rem solid var(--color-primary);
    transition:
      background-color 0.3s,
      color 0.3s;
  }
  .l-header-menu-link--contact::before {
    content: "";
    display: block;
    width: 16rem;
    height: 13rem;
    -webkit-mask-image: url("../img/icon-mail.svg");
    mask-image: url("../img/icon-mail.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background-color: var(--color-white);
    transition: background-color 0.3s;
  }
}
@media screen and (min-width: 900px) and (any-hover: hover) {
  .l-header-menu-link--contact:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
  }
  .l-header-menu-link--contact:hover::before {
    background-color: var(--color-primary);
  }
}

.l-header-menu-text-en {
  font-family: var(--font-family-en);
  font-size: 28rem;
  letter-spacing: 0.025em;
  display: block;
}
@media screen and (min-width: 900px) {
  .l-header-menu-text-en {
    line-height: 1;
    font-size: 18rem;
  }
}

.l-header-menu-text-ja {
  font-size: 14rem;
  opacity: 0.8;
  display: block;
}
@media screen and (min-width: 900px) {
  .l-header-menu-text-ja {
    display: none;
  }
}

.l-header-menu-open-button,
.l-header-menu-close-button {
  border-radius: 50%;
  width: 50rem;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 900px) {
  .l-header-menu-open-button,
  .l-header-menu-close-button {
    display: none;
  }
}

.l-header-menu-open-button {
  background-color: var(--color-primary);
}
.l-header-menu-open-button img {
  width: 24rem;
}

.l-header-menu-close-button {
  background-color: var(--color-white);
  position: absolute;
  right: 12rem;
  top: 20rem;
}
.l-header-menu-close-button img {
  width: 28rem;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
}

.submenu-container {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  background-color: var(--color-primary);
  padding: 15px;
  gap: 10px;
}

.menu-item-child {
  position: relative;
}

.menu-item-child:hover .submenu {
  display: block;
}

.l-header-menu-link-white {
  color: var(--color-white);
}

/*!
layout > footer
------------------------------
*/
.l-footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 54rem 40rem;
  display: flex;
  flex-direction: column;
  gap: 24rem;
}
@media screen and (min-width: 900px) {
  .l-footer {
    padding: 54rem 65rem 32rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 80rem 0;
  }
}

.l-footer-logo {
  width: 250rem;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .l-footer-logo {
    order: 1;
    margin: 0;
  }
}

.l-footer-info {
  text-align: center;
  font-size: 13rem;
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
.l-footer-info * {
  letter-spacing: 0.075em;
}
@media screen and (min-width: 900px) {
  .l-footer-info {
    order: 3;
    width: calc(100% - 200rem);
    text-align: left;
    gap: 5rem;
  }
}

.l-footer-address span {
  display: block;
}
@media screen and (min-width: 900px) {
  .l-footer-address span {
    display: inline-block;
  }
}

.l-footer-contact {
  display: flex;
  justify-content: center;
  gap: 12rem;
}
@media screen and (min-width: 900px) {
  .l-footer-contact {
    justify-content: flex-start;
  }
}

.l-footer-menu-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 16rem 32rem;
}
@media screen and (min-width: 900px) {
  .l-footer-menu-list {
    order: 2;
    gap: 55rem;
  }
}

.l-footer-menu-item {
  line-height: 1;
  font-family: var(--font-family-en);
  font-size: 18rem;
}
.l-footer-menu-item * {
  letter-spacing: 0.025em;
}

.l-footer-menu-item--contact {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .l-footer-menu-item--contact {
    width: auto;
  }
}
.l-footer-menu-item--contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9rem;
  border: 1rem solid var(--color-white);
  padding: 9rem;
  text-align: center;
  border-radius: 100vh;
  transition:
    background-color 0.3s,
    color 0.3s;
}
@media screen and (min-width: 900px) {
  .l-footer-menu-item--contact a {
    padding: 9rem 31rem;
  }
}
.l-footer-menu-item--contact a::before {
  content: "";
  display: block;
  width: 16rem;
  height: 13rem;
  -webkit-mask-image: url("../img/icon-mail.svg");
  mask-image: url("../img/icon-mail.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: var(--color-white);
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .l-footer-menu-item--contact a:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
  }
  .l-footer-menu-item--contact a:hover::before {
    background-color: var(--color-primary);
  }
}

@media screen and (min-width: 900px) {
  .l-footer-legal {
    order: 4;
    align-self: center;
  }
}

.l-footer-legal-list {
  display: flex;
  justify-content: center;
  gap: 20rem;
}
@media screen and (min-width: 900px) {
  .l-footer-legal-list {
    justify-content: flex-end;
  }
}

.l-footer-legal-item a {
  font-family: var(--font-family-en);
  font-size: 14rem;
  letter-spacing: 0.025em;
}

.l-footer-copyright {
  display: block;
  text-align: center;
  margin-top: 10rem;
  letter-spacing: 0.075em;
  font-size: 12rem;
  opacity: 0.7;
}

/*!
page > top > top-kv
------------------------------
*/
.top-kv {
  background-image: url(../img/top/top-kv-sp.jpg);
  background-size: cover;
  background-position: center;
  height: 485rem;
  display: flex;
  align-items: flex-end;
}
@media screen and (min-width: 900px) {
  .top-kv {
    background-image: url(../img/top/top-kv.PNG);
    height: 769rem;
    position: relative;
  }
}

.top-kv-text {
  padding-bottom: 47rem;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 21rem;
}
@media screen and (min-width: 900px) {
  .top-kv-text {
    padding-bottom: 190rem;
    gap: 54rem;
  }
}

.top-kv-text-en {
  font-family: var(--font-family-en);
  letter-spacing: 0.2em;
  font-size: 18rem;
  line-height: 1.5;
}
@media screen and (min-width: 900px) {
  .top-kv-text-en {
    font-size: 22rem;
  }
}
.top-kv-text-en span {
  display: block;
  letter-spacing: 0.025em;
}

.top-kv-text-ja {
  line-height: 1.05;
  font-size: 29rem;
  font-weight: 300;
  text-shadow: 0 3rem 7rem rgba(0, 0, 0, 0.0588);
}
@media screen and (min-width: 900px) {
  .top-kv-text-ja {
    font-size: 65rem;
  }
}

.top-kv-scroll {
  display: none;
}
@media screen and (min-width: 900px) {
  .top-kv-scroll {
    display: flex;
    gap: 6rem;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--color-white);
    border-radius: 39rem 0 0 0;
    padding: 49rem 22rem 32rem 36rem;
  }
  .top-kv-scroll::after {
    content: "";
    display: block;
    width: 46rem;
    aspect-ratio: 1/1;
    background-image: url(../img/top/curve.svg);
    background-size: cover;
    background-position: center;
    position: absolute;
    bottom: 0;
    left: -46rem;
  }
}

.top-kv-scroll-hint {
  width: 10rem;
}

.top-kv-scroll-text {
  color: var(--color-primary);
  font-family: var(--font-family-en);
  line-height: 1;
  font-size: 15rem;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

/*!
page > top > top-about
------------------------------
*/
.top-about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28rem;
}
@media screen and (min-width: 900px) {
  .top-about {
    grid-template-columns: 50% 1fr;
    gap: 59rem;
  }
}

.top-about-content {
  padding: 0 20rem;
}
@media screen and (min-width: 900px) {
  .top-about-content {
    padding: 0 0 0 83rem;
    margin-top: 40rem;
  }
}

.top-about-message-ja {
  line-height: 1.6;
  font-size: 26rem;
  margin-top: 16rem;
}
@media screen and (min-width: 900px) {
  .top-about-message-ja {
    font-size: 34rem;
  }
}
.top-about-message-ja span {
  display: block;
}

.top-about-message-en {
  margin-top: 8rem;
  font-size: 15rem;
  color: var(--color-primary);
  font-family: var(--font-family-en);
}
@media screen and (min-width: 900px) {
  .top-about-message-en {
    font-size: 16rem;
  }
}

.top-about-text {
  margin-top: 24rem;
  line-height: 2.2;
}
@media screen and (min-width: 900px) {
  .top-about-text {
    margin-top: 32rem;
  }
}
.top-about-text span {
  display: block;
}

.top-about-button {
  margin-top: 14rem;
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 900px) {
  .top-about-button {
    margin-top: 40rem;
  }
}
@media (any-hover: hover) {
  .top-about-button a:hover:after {
    scale: 1.1;
  }
}

.top-about-img {
  padding-left: 20rem;
}
@media screen and (min-width: 900px) {
  .top-about-img {
    padding-left: 0;
  }
}
.top-about-img img {
  border-radius: 10rem 0 10rem 0;
}
@media screen and (min-width: 900px) {
  .top-about-img img {
    border-radius: 20rem 0 20rem 0;
  }
}

/*!
page > top > top-service
------------------------------
*/
.top-service {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40rem;
  position: relative;
  padding-block: 64rem;
}
@media screen and (min-width: 900px) {
  .top-service {
    grid-template-columns: 1fr 714rem;
    gap: 65rem;
    padding-top: 64rem;
    padding-bottom: 96rem;
  }
}
.top-service::before {
  content: "";
  display: block;
  height: 500rem;
  width: 355rem;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color-primary);
  z-index: var(--z-index-negative);
  border-radius: 0 0 30rem 0;
}
@media screen and (min-width: 900px) {
  .top-service::before {
    width: 1336rem;
    height: 410rem;
    border-radius: 0 0 50rem 0;
  }
}

.top-service-text {
  color: var(--color-white);
  margin-top: 40rem;
  padding-right: 20rem;
}
@media screen and (min-width: 900px) {
  .top-service-text {
    padding-right: 0;
    font-size: 16rem;
  }
}
.top-service-text span {
  display: block;
}

.top-service-list {
  padding-right: 20rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40rem;
}
@media screen and (min-width: 900px) {
  .top-service-list {
    padding-right: 0;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (any-hover: hover) {
  .top-service-item a:hover .top-service-item-img img {
    scale: 1.03;
  }
  .top-service-item a:hover .c-button::after {
    scale: 1.1;
  }
}

.top-service-item-img {
  border-radius: 10rem;
  overflow: hidden;
}
.top-service-item-img img {
  transition: scale 0.3s;
}

.top-service-item-title-ja {
  font-size: 22rem;
  margin-top: 16rem;
}

.top-service-item-title-en {
  font-size: 15rem;
  margin-top: 2rem;
  display: block;
  color: var(--color-primary);
  font-family: var(--font-family-en);
}

.top-service-item-text {
  margin-top: 16rem;
}
@media screen and (min-width: 900px) {
  .top-service-item-text {
    font-size: 16rem;
  }
}
.top-service-item-text span {
  display: block;
}

.top-service-item-button {
  margin-top: 16rem;
  display: flex;
  justify-content: flex-end;
}

/*!
page > top > top-recruit
------------------------------
*/
.top-recruit-img {
  position: relative;
}

.top-recruit-img-text {
  color: var(--color-primary);
  font-family: var(--font-family-en);
  font-size: 86rem;
  font-weight: 300;
  letter-spacing: 0.025em;
  line-height: 1;
  position: absolute;
  left: 20rem;
  bottom: -33rem;
}
@media screen and (min-width: 900px) {
  .top-recruit-img-text {
    font-size: 150rem;
    bottom: -60rem;
    left: 83rem;
  }
}

.top-recruit-content-wrap {
  margin-top: 80rem;
}
@media screen and (min-width: 900px) {
  .top-recruit-content-wrap {
    margin-top: 118rem;
    display: grid;
    grid-template-columns: 1fr 50%;
  }
}

@media screen and (min-width: 900px) {
  .top-recruit-content {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}

.top-recruit-text {
  font-size: 28rem;
  line-height: 1.6;
  margin-top: 16rem;
}
@media screen and (min-width: 900px) {
  .top-recruit-text {
    font-size: 34rem;
  }
}
.top-recruit-text span {
  display: block;
}
@media screen and (min-width: 900px) {
  .top-recruit-text span {
    display: inline;
  }
}

.top-recruit-text02 {
  margin-top: 24rem;
  line-height: 2.2;
}
@media screen and (min-width: 900px) {
  .top-recruit-text02 {
    margin-top: 32rem;
  }
}
.top-recruit-text02 span:first-child {
  display: block;
}
@media screen and (min-width: 900px) {
  .top-recruit-text02 span {
    display: block;
  }
}

.top-recruit-text-en {
  margin-top: 14rem;
  font-size: 15rem;
  font-family: var(--font-family-en);
  color: var(--color-primary);
}
@media screen and (min-width: 900px) {
  .top-recruit-text-en {
    margin-top: 24rem;
  }
}
.top-recruit-text-en span {
  display: block;
}

.top-recruit-entry-button {
  margin-top: 64rem;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 900px) {
  .top-recruit-entry-button {
    margin-top: 80rem;
    grid-column: 1/2;
    grid-row: 1/2;
    padding: 0 148rem 0 97rem;
  }
}

/*!
page > top > top-news
------------------------------
*/
.top-news {
  padding-top: 40rem;
  padding-bottom: 60rem;
  position: relative;
}
@media screen and (min-width: 900px) {
  .top-news {
    padding-block: 96rem;
    display: grid;
    grid-template-columns: 1fr 760rem;
    grid-template-rows: auto 1fr;
    gap: 80rem 0;
  }
}
.top-news::before {
  content: "";
  display: block;
  width: 265rem;
  height: 100%;
  background-color: var(--color-bg-extra-light);
  position: absolute;
  right: 0;
  top: 0;
  z-index: var(--z-index-negative);
  border-radius: 50rem 0 0 0;
}
@media screen and (min-width: 900px) {
  .top-news::before {
    width: 1080rem;
  }
}

@media screen and (min-width: 900px) {
  .top-news-title {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}

.top-news-list {
  margin-top: 48rem;
}
@media screen and (min-width: 900px) {
  .top-news-list {
    margin-top: 0;
    grid-column: 2/3;
    grid-row: 1/3;
  }
}

.top-news-button {
  margin-top: 32rem;
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 900px) {
  .top-news-button {
    grid-column: 1/2;
    grid-row: 2/3;
    margin-top: 0;
    display: block;
  }
}
@media (any-hover: hover) {
  .top-news-button a:hover::after {
    scale: 1.1;
  }
}

/*!
page > about > about-philosophy
------------------------------
*/
.about-philosophy-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24rem;
  margin-top: 48rem;
}
@media screen and (min-width: 900px) {
  .about-philosophy-list {
    margin-top: 64rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 32rem;
    padding-inline: 32rem;
  }
}

.about-philosophy-item {
  width: 300rem;
  aspect-ratio: 1/1;
  margin-inline: auto;
  border-radius: 50%;
  text-align: center;
  background-color: var(--color-bg-extra-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  gap: 16rem;
}
@media screen and (min-width: 900px) {
  .about-philosophy-item {
    width: 352rem;
  }
}

.about-philosophy-item-title {
  font-size: 23rem;
  letter-spacing: 0.025em;
  color: var(--color-primary);
  font-family: var(--font-family-en);
}

.about-philosophy-item-text {
  font-size: 22rem;
  line-height: 1.6;
}
.about-philosophy-item-text span {
  display: block;
}

.about-philosophy-item-text02 {
  font-size: 14rem;
  line-height: 1.8;
  color: var(--color-font-light);
}
.about-philosophy-item-text02 span {
  display: block;
}

/*!
page > about > about-message
------------------------------
*/

.top-about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28rem;
}
@media screen and (min-width: 900px) {
  .top-about {
    grid-template-columns: 50% 1fr;
    gap: 59rem;
  }
}

.top-about-content {
  padding: 0 20rem;
}
@media screen and (min-width: 900px) {
  .top-about-content {
    padding: 0 0 0 83rem;
    margin-top: 40rem;
  }
}

.about-message-ja {
  line-height: 1.6;
  font-size: 28rem;
  margin-top: 16rem;
  color: var(--color-primary);
}
@media screen and (min-width: 900px) {
  .about-message-ja {
    font-size: 32rem;
  }
}
.top-about-message-ja span {
  display: block;
}

.top-about-message-en {
  margin-top: 8rem;
  font-size: 15rem;
  color: var(--color-primary);
  font-family: var(--font-family-en);
}
@media screen and (min-width: 900px) {
  .top-about-message-en {
    font-size: 16rem;
  }
}

.about-message-text {
  margin-top: 24rem;
  line-height: 2.2;
}
@media screen and (min-width: 900px) {
  .about-message-text {
    margin-top: 32rem;
    font-size: 20px;
  }
}
.top-about-text span {
  display: block;
}

.top-about-button {
  margin-top: 14rem;
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 900px) {
  .top-about-button {
    margin-top: 40rem;
  }
}
@media (any-hover: hover) {
  .top-about-button a:hover:after {
    scale: 1.1;
  }
}

.top-about-img {
  padding-left: 20rem;
}
@media screen and (min-width: 900px) {
  .top-about-img {
    padding-left: 0;
  }
}
.top-about-img img {
  border-radius: 10rem 0 10rem 0;
}
@media screen and (min-width: 900px) {
  .top-about-img img {
    border-radius: 20rem 0 20rem 0;
  }
}

.about-message-name-img {
  display: block;
}

.about-message-name-img img {
  width: 200px;
  margin-left: auto;
}

@media screen and (min-width: 900px) {
  .about-message-name-img img {
    width: 350px;
  }
}

.about-message-img {
  padding: 0 20px 50px;

  img {
    width: 100%;
  }
}

@media screen and (min-width: 900px) {
  .about-message-img {
    padding: 0;
  }
}

@media screen and (min-width: 900px) {
  .about-message-img img {
    width: 500px;
  }
}

/*!
page > about > about-staff
------------------------------
*/
.about-staff {
  position: relative;
  padding-top: 40rem;
}
@media screen and (min-width: 900px) {
  .about-staff {
    padding-top: 54rem;
  }
}
.about-staff::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 355rem;
  height: 430rem;
  border-radius: 0 0 0 50rem;
  z-index: var(--z-index-negative);
}
@media screen and (min-width: 900px) {
  .about-staff::before {
    height: 390rem;
    width: 1326rem;
    left: auto;
    right: 0;
  }
}

.about-staff-head {
  display: flex;
  flex-direction: column;
  gap: 20rem;
}
@media screen and (min-width: 900px) {
  .about-staff-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.about-staff-text {
  color: var(--color-white);
  font-size: 16rem;
}

.about-staff-slider {
  margin-top: 40rem;
}
@media screen and (min-width: 900px) {
  .about-staff-slider {
    margin-top: 64rem;
  }
}

.about-staff-item {
  width: 230rem;
}
@media screen and (min-width: 900px) {
  .about-staff-item {
    width: 285rem;
  }
}

.about-staff-item-img img {
  border-radius: 10rem;
}

.about-staff-item-position {
  font-size: 14rem;
  display: flex;
  align-items: center;
  gap: 10rem;
  margin-top: 16rem;
}
.about-staff-item-position::before {
  content: "";
  display: block;
  width: 8rem;
  aspect-ratio: 1/1;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.about-staff-item-name {
  display: flex;
  align-items: center;
  gap: 16rem;
}

.about-staff-item-name-ja {
  font-size: 20rem;
  letter-spacing: 0.075em;
}
@media screen and (min-width: 900px) {
  .about-staff-item-name-ja {
    font-size: 24rem;
  }
}

.about-staff-item-name-en {
  font-size: 14rem;
  color: var(--color-font-light);
  font-family: var(--font-family-en);
}
@media screen and (min-width: 900px) {
  .about-staff-item-name-en {
    font-size: 15rem;
  }
}

/*!
page > about > about-company
------------------------------
*/
.about-company {
  background-color: var(--color-bg-extra-light);
}
@media screen and (min-width: 900px) {
  .about-company {
    display: grid;
    grid-template-columns: 50% 1fr;
    gap: 32rem 51rem;
  }
}

@media screen and (min-width: 900px) {
  .about-company-title {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}

.about-company-img {
  margin-top: 40rem;
}
@media screen and (min-width: 900px) {
  .about-company-img {
    grid-column: 2/3;
    grid-row: 1/3;
    margin-top: 0;
    align-self: end;
  }
}
.about-company-img img {
  border-radius: 10rem;
}
@media screen and (min-width: 900px) {
  .about-company-img img {
    border-radius: 14rem;
  }
}

.about-company-table {
  margin-top: 16rem;
}
@media screen and (min-width: 900px) {
  .about-company-table {
    grid-column: 1/2;
    grid-row: 2/3;
    margin-top: 0;
  }
}

@media screen and (min-width: 900px) {
  .about-company-table-body {
    display: grid;
    grid-template-columns: auto 1fr;
  }
}

.about-company-table-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 16rem 8rem;
  border-bottom: 1rem solid var(--color-border);
}
@media screen and (min-width: 900px) {
  .about-company-table-item {
    grid-template-columns: subgrid;
    align-items: center;
    grid-column: 1/-1;
    padding: 24rem 8rem;
    gap: 0 40rem;
  }
}
.about-company-table-item th {
  font-size: 14rem;
  letter-spacing: 0.125em;
  color: var(--color-font-light);
}
@media screen and (min-width: 900px) {
  .about-company-table-item th {
    font-size: 16rem;
  }
}
.about-company-table-item td span {
  display: block;
}

/*!
page > service > service-detail
------------------------------
*/
.service-detail-wrap {
  margin-top: 20rem;
  display: flex;
  flex-direction: column;
  gap: 84rem;
}
@media screen and (min-width: 900px) {
  .service-detail-wrap {
    margin-top: 0;
    gap: 80rem;
  }
}

.service-detail {
  background-color: var(--color-bg-extra-light);
  padding: 191rem 24rem 40rem;
  border-radius: 10rem;
  position: relative;
}
@media screen and (min-width: 900px) {
  .service-detail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 14rem;
    overflow: hidden;
    padding: 0;
  }
  .service-detail:nth-child(2n) .service-detail-img {
    left: 0;
    top: 0;
  }
  .service-detail:nth-child(2n) .service-detail-content {
    grid-column: 2/3;
  }
}

.service-detail-img {
  position: absolute;
  top: -20rem;
  left: 24rem;
  width: 287rem;
}
@media screen and (min-width: 900px) {
  .service-detail-img {
    left: auto;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
  }
}
.service-detail-img img {
  border-radius: 10rem;
}
@media screen and (min-width: 900px) {
  .service-detail-img img {
    border-radius: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media screen and (min-width: 900px) {
  .service-detail-content {
    padding: 48rem 50rem;
  }
}

.service-detail-title-ja {
  font-size: 20rem;
}
@media screen and (min-width: 900px) {
  .service-detail-title-ja {
    font-size: 28rem;
  }
}

.service-detail-title-en {
  display: block;
  font-family: var(--font-family-en);
  color: var(--color-primary);
  margin-top: 4rem;
  font-size: 15rem;
}
@media screen and (min-width: 900px) {
  .service-detail-title-en {
    font-size: 16rem;
  }
}

.service-detail-period {
  margin-top: 24rem;
  color: var(--color-font-light);
  font-size: 14rem;
}
@media screen and (min-width: 900px) {
  .service-detail-period {
    margin-top: 32rem;
  }
}

.service-detail-text {
  margin-top: 16rem;
}
@media screen and (min-width: 900px) {
  .service-detail-text {
    font-size: 16rem;
  }
}
@media screen and (min-width: 900px) {
  .service-detail-text span {
    display: block;
  }
}

.service-detail-list {
  margin-top: 24rem;
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
@media screen and (min-width: 900px) {
  .service-detail-list {
    margin-top: 32rem;
  }
}

.service-detail-list-item {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 20rem;
  line-height: 1.5;
  border-radius: 6rem;
  display: flex;
  align-items: center;
  gap: 14rem;
}
@media screen and (min-width: 900px) {
  .service-detail-list-item {
    font-size: 16rem;
    padding: 20rem 24rem;
  }
}
.service-detail-list-item::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 24rem;
  aspect-ratio: 1/1;
  -webkit-mask-image: url("../img/icon-check.svg");
  mask-image: url("../img/icon-check.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: var(--color-white);
}

/*!
page > service > service-case
------------------------------
*/
.service-case-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40rem;
  margin-top: 40rem;
}
@media screen and (min-width: 900px) {
  .service-case-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 39rem;
    margin-top: 54rem;
  }
}

@media (any-hover: hover) {
  .service-case-item a:hover .service-case-item-img img {
    scale: 1.03;
  }
  .service-case-item a:hover .c-button::after {
    scale: 1.1;
  }
}

.service-case-item-img {
  border-radius: 10rem;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .service-case-item-img {
    border-radius: 12rem;
  }
}
.service-case-item-img img {
  transition: scale 0.3s;
}

.service-case-item-title {
  margin-top: 14rem;
  letter-spacing: 0.075em;
  font-size: 14rem;
}
.service-case-item-title span {
  color: var(--color-font-light);
}

.service-case-item-text {
  margin-top: 8rem;
  line-height: 1.6;
}

.service-case-item-button {
  margin-top: 8rem;
  display: flex;
  justify-content: flex-end;
}

/*!
page > news > news-archive
------------------------------
*/
.news-archive {
  margin-top: -16rem;
}
@media screen and (min-width: 900px) {
  .news-archive {
    margin-top: -24rem;
  }
}

.news-archive-pagination {
  margin-top: 48rem;
}

/*!
page > recruit > recruit-position
------------------------------
*/
.recruit-position-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16rem;
  margin-top: 40rem;
}
@media screen and (min-width: 900px) {
  .recruit-position-list {
    margin-top: 54rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 60rem;
  }
}

.recruit-position-item {
  border-radius: 11rem;
  border: 1rem solid var(--color-border);
  padding: 31rem 19rem;
}
@media screen and (min-width: 900px) {
  .recruit-position-item {
    padding: 39rem;
  }
}

.recruit-position-title-ja {
  font-size: 20rem;
}
@media screen and (min-width: 900px) {
  .recruit-position-title-ja {
    font-size: 28rem;
  }
}

.recruit-position-title-en {
  font-size: 15rem;
  margin-top: 4rem;
  display: block;
  color: var(--color-primary);
  font-family: var(--font-family-en);
}
@media screen and (min-width: 900px) {
  .recruit-position-title-en {
    font-size: 16rem;
  }
}

.recruit-position-text {
  margin-top: 14rem;
}

/*!
page > recruit > recruit-benefit
------------------------------
*/
.recruit-benefit {
  background-color: var(--color-bg-extra-light);
}

.recruit-benefit-table {
  margin-top: 24rem;
}
@media screen and (min-width: 900px) {
  .recruit-benefit-table {
    margin-top: 40rem;
  }
}

@media screen and (min-width: 900px) {
  .recruit-benefit-table-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 32rem;
  }
}

.recruit-benefit-table-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 16rem 8rem;
  border-bottom: 1rem solid var(--color-border);
}
@media screen and (min-width: 900px) {
  .recruit-benefit-table-item {
    display: grid;
    grid-template-columns: 100rem 1fr;
    align-items: center;
    gap: 0 34rem;
    padding: 24rem 8rem;
  }
}
.recruit-benefit-table-item th {
  font-size: 14rem;
  letter-spacing: 0.125em;
  color: var(--color-font-light);
}
@media screen and (min-width: 900px) {
  .recruit-benefit-table-item th {
    font-size: 16rem;
  }
}

/*!
page > recruit > recruit-culture
------------------------------
*/
.recruit-culture-gallery {
  margin-top: 40rem;
}

.recruit-culture-gallery-list img {
  border-radius: 10rem;
  width: 223rem;
}
@media screen and (min-width: 900px) {
  .recruit-culture-gallery-list img {
    border-radius: 12rem;
    width: 350rem;
  }
}

/*!
page > recruit > recruit-entry
------------------------------
*/
.recruit-entry {
  display: grid;
  place-items: center;
}

/*!
page > contact > contact-form
------------------------------
*/
.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .contact-form {
    gap: 32rem;
    grid-template-columns: auto 1fr;
  }
}

.contact-form-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
}
@media screen and (min-width: 900px) {
  .contact-form-item {
    grid-template-columns: subgrid;
    grid-column: 1/-1;
    align-items: start;
    gap: 10rem;
    margin-top: 20px;
  }
}

.contact-form-item--submit {
  gap: 16rem;
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .contact-form-item--submit {
    grid-template-columns: 1fr;
  }
}

.contact-form-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .contact-form-label {
    justify-content: flex-start;
    gap: 8rem;
    margin-top: 14rem;
  }
}

.contact-form-consent {
  text-align: center;
  font-size: 14rem;
}
.contact-form-consent a {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .contact-form-consent a:hover {
    text-decoration: none;
  }
}

.contact-form-button {
  display: grid;
  place-items: center;
}

.about-staff-container {
  display: block;
  gap: 80px;
}

@media screen and (min-width: 992px) {
  .about-staff-container {
    display: flex;
    gap: 80px;
  }
}

.tenshoku-heading {
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.tenshoku-heading__en {
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 3.8px;
  color: #686868;
}
@media screen and (min-width: 992px) {
  .tenshoku-heading__en {
    font-size: 20px;
    letter-spacing: 5px;
  }
}

.tenshoku-heading__ja {
  font-size: 25px;
  color: var(--color-primary);
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .tenshoku-heading__ja {
    font-size: 40px;
    letter-spacing: 5px;
  }
}

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

.review__box-title img {
  width: 110px;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: calc(100% + 16px);
}
@media screen and (min-width: 992px) {
  .review__box-title img {
    right: 0;
    transform: translateX(0);
    bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .is-type2 .review__box-title {
    padding-right: 0;
    padding-left: 95px;
  }
  .is-type2 .review__box-title img {
    right: auto;
    left: 0;
  }
}

.answer__steps {
  display: block;
}
@media screen and (min-width: 992px) {
  .answer__steps {
    display: flex;
    margin-top: 15px;
    flex-direction: row;
  }
}

@media screen and (min-width: 992px) {
  .answer__step {
    flex: 1;
  }
}

.answer__box-title {
  color: #000;
  font-weight: 700;
  position: relative;
  font-size: 30px;
}
@media screen and (min-width: 768px) {
  .answer__box-title {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .answer__box-title {
    text-align: center;
    font-size: 35px;
    margin-top: 20px;
  }
}
.answer__box-title img {
  width: 190px;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: calc(100% + 1px);
}
@media screen and (min-width: 992px) {
  .answer__box-title img {
    right: 8%;
    transform: translateX(0);
    bottom: -50px;
  }
}

.answer__box-title-sub {
  color: #000;
  font-weight: 700;
  font-size: 23px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .answer__box-title-sub {
    font-size: 30px;
  }
}

.answer__box-title-sub4 {
  font-size: 22px;
}

.answer-stepbox__image.answer-left img {
  width: 225px;
}
.answer-stepbox__image.answer-center img {
  width: 260px;
}

.answer-stepbox-box {
  padding-top: 45px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.answer-stepbox__head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #111;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.answer-stepbox__head-text {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.3px;
}

.answer-stepbox__body {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 992px) {
  .answer-stepbox__body {
    padding: 47px 30px 23px;
  }
}

.answer-stepbox__image {
  text-align: center;
}
.answer-stepbox__image.answer-center {
  width: 100%;
}
.answer-stepbox__image.answer-left {
  text-align: end;
}
@media screen and (min-width: 768px) {
  .answer-stepbox__image.answer-left {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .answer-stepbox__image.answer-left {
    text-align: center;
  }
}
.answer-stepbox__image.answer-left2 img {
  width: 200px;
}
.answer-stepbox__image.answer-right img {
  width: 200px;
}
.answer-stepbox__image img {
  width: 160px;
}
@media screen and (min-width: 992px) {
  .answer-stepbox__image img {
    width: 200px;
  }
}

.answer-stepbox__title {
  font-weight: 700;
  letter-spacing: 0.48px;
  margin-top: 10px;
  font-size: 19px;
  color: #fff;
  text-align: center;
  text-shadow:
    1px 1px 1px #000,
    -2px 3px 3px #000;
}

.answer-stepbox__text {
  font-weight: 300;
  letter-spacing: 0.48px;
  margin-top: 10px;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .answer-stepbox__text {
    font-weight: 350;
  }
}

.answer-text__title-small {
  display: block;
  margin-top: 45px;
}
@media screen and (min-width: 992px) {
  .answer-text__title-small {
    margin-top: 60px;
    font-size: 30px;
  }
}

.answer-text-img {
  position: absolute;
  top: -120px;
  left: 0px;
  display: none;
}
.answer-text-img img {
  width: 130px;
}
@media screen and (min-width: 768px) {
  .answer-text-img {
    top: -130px;
    left: 90px;
  }
  .answer-text-img img {
    width: 170px;
  }
}
@media screen and (min-width: 992px) {
  .answer-text-img {
    top: -90px;
    left: 40px;
  }
  .answer-text-img img {
    width: 200px;
  }
}

.answer-text__title-bold {
  background: var(--color-primary);
  color: #fff;
}

.answer-text__title-sub {
  border-bottom: solid;
  border-color: var(--color-primary);
  border-width: 5px;
}

.comparison__steps {
  display: block;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .comparison__steps {
    display: flex;
    gap: 20px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 992px) {
  .comparison__steps {
    display: flex;
    text-align: center;
    gap: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 750px;
  }
}

@media screen and (min-width: 992px) {
  .comparison__step {
    flex: 1;
    margin-top: 15px;
    gap: 50px;
  }
}

.comparison__box-title {
  color: #000;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 992px) {
  .comparison__box-title {
    text-align: center;
    font-size: 35px;
    margin-top: 20px;
  }
}
.comparison__box-title img {
  width: 190px;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: calc(100% + 1px);
}
@media screen and (min-width: 992px) {
  .comparison__box-title img {
    right: 0;
    transform: translateX(0);
    bottom: -10px;
  }
}

.comparison-stepbox__image.answer-left img {
  width: 225px;
}
.comparison-stepbox__image.answer-center img {
  width: 260px;
}

.comparison-stepbox-box {
  padding-top: 45px;
  position: relative;
}

.comparison-stepbox__head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #111;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.comparison-stepbox__text-deco {
  border-bottom: solid;
  border-color: var(--color-primary);
  border-width: 3px;
}

.comparison-stepbox__text-deco2 {
  border-bottom: solid;
  border-color: rgba(250, 0, 0, 0.6705882353);
  border-width: 3px;
}

.comparison-stepbox__head-text {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.3px;
}

.comparison-stepbox__body {
  margin-top: 30px;
  border-radius: 30px;
  border: 3px solid rgba(250, 0, 0, 0.6705882353);
  background: #fff;
  padding: 47px 30px 23px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.comparison-stepbox__body.right {
  border: 3px solid var(--color-primary);
}
@media screen and (min-width: 992px) {
  .comparison-stepbox__body {
    width: 300px;
  }
}

.comparison-stepbox__image.answer-left img {
  width: 300px;
}
.comparison-stepbox__image img {
  width: 160px;
}
@media screen and (min-width: 992px) {
  .comparison-stepbox__image img {
    width: 200px;
  }
}

.comparison-stepbox__title {
  font-weight: 700;
  letter-spacing: 0.48px;
  margin-top: 10px;
  font-size: 20px;
  color: var(--color-primary);
}
.comparison-stepbox__title.wrong {
  color: rgba(250, 0, 0, 0.6705882353);
}

.comparison-stepbox__text {
  font-weight: 300;
  letter-spacing: 0.48px;
  margin-top: 10px;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .comparison-stepbox__text {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    padding-left: 30px;
  }
}

.review__boxes {
  margin-top: 34px;
  display: flex;
  flex-direction: row;
}
@media screen and (min-width: 992px) {
  .review__boxes {
    display: flex;
    flex-direction: column;
    gap: 112px;
    margin-top: 89px;
    gap: 75px;
  }
}

.review__box {
  border-radius: 30px;
  padding: 0px;
}
@media screen and (min-width: 768px) {
  .review__box {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .review__box {
    border-radius: 40px;
    padding: 44px 10px 56px;
  }
}

.review__box-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.8px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .review__box-title {
    font-size: 25px;
    letter-spacing: 2.2px;
    padding-right: 95px;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
.review__box-title img {
  width: 110px;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: calc(100% + 16px);
}
@media screen and (min-width: 992px) {
  .review__box-title img {
    right: 0;
    transform: translateX(0);
    bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .is-type2 .review__box-title {
    padding-right: 0;
    padding-left: 95px;
  }
  .is-type2 .review__box-title img {
    right: auto;
    left: 0;
  }
}

.review__steps {
  display: block;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .review__steps {
    display: flex;
    gap: 10px;
  }
}

.review__step {
  margin-top: 10px;
}
@media screen and (min-width: 992px) {
  .review__step {
    flex: 1;
  }
}

.review__box-title {
  color: #000;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .review__box-title {
    text-align: center;
    font-size: 35px;
  }
}

.review-stepbox__image.left img {
  width: 225px;
}
.review-stepbox__image.right img {
  width: 242px;
}
.review-stepbox__image img {
  width: 300px;
}

.review-stepbox-box {
  position: relative;
  padding-top: 5px;
}
@media screen and (min-width: 992px) {
  .review-stepbox-box {
    padding-top: 45px;
  }
}

.review-stepbox__head-text {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.3px;
}

.review-stepbox__body {
  border-radius: 30px;
  border: 3px solid #111;
  background: #fff;
  padding: 47px 30px 23px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .review-stepbox__body {
    padding: 47px 30px 23px;
  }
}

.review-stepbox__image img {
  width: 160px;
}
@media screen and (min-width: 992px) {
  .review-stepbox__image img {
    width: 200px;
  }
}

.review-stepbox__title {
  font-weight: 700;
  letter-spacing: 0.48px;
  margin-top: 10px;
  font-size: 20px;
  color: var(--color-primary);
}

.review-stepbox__text {
  font-weight: 300;
  letter-spacing: 0.48px;
  margin-top: 10px;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .review-stepbox__text {
    font-weight: 500;
  }
}

.review-stepbox_job {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.review-stepbox_job img {
  display: block;
  width: 10px;
  height: 10px;
}

.review-stepbox_job-img {
  display: block;
}
.review-stepbox_job-img img {
  width: 10px;
  height: 10px;
}

.review-stepbox_job-before {
  padding: 10px;
  background: #ddfaff;
  border-radius: 3px;
  font-size: 20px;
  width: 80px;
}

.review-stepbox_job-after {
  padding: 10px;
  background: rgba(255, 243, 135, 0.6431372549);
  border-radius: 3px;
  font-size: 20px;
  width: 80px;
}

.about {
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .about {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}

.about__title {
  text-align: center;
  padding-bottom: 320px;
  margin-top: 50px;
}
.about__title img {
  margin-top: 70px;
  width: 280px;
}
@media screen and (min-width: 992px) {
  .about__title img {
    width: 400px;
  }
}

.about-name_deco {
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt" on;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2.2px;
  color: var(--color-primary);
  background: #ffffff;
  padding: 10px;
  display: block;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 8px 5px -5px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 10px;
  margin-top: -234px;
}
@media screen and (min-width: 992px) {
  .about-name_deco {
    font-family: "Noto Sans JP", sans-serif;
    margin-left: 0;
    margin-right: 0;
    font-size: 32px;
    letter-spacing: 3.8px;
    padding: 12px 16px;
    margin-top: -130px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 8px 5px -5px rgba(0, 0, 0, 0.1);
  }
}

.about-name_deco2 {
  font-size: 18px;
  color: #000;
}

.about__content {
  margin-top: 150px;
  padding-top: 288px;
  padding-bottom: 105px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .about__content {
    margin-top: 146px;
    padding-top: 284px;
    padding-bottom: 100px;
  }
}
.about__content::before {
  content: "";
  width: 1100px;
  height: 1100px;
  border-radius: 50%;
  background: #ddfaff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .about__content::before {
    width: 800px;
    height: 800px;
  }
}

.about__image {
  position: absolute;
  text-align: center;
  top: -410px;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .about__image {
    top: -320px;
  }
}
.about__image img {
  width: 320px;
}
@media screen and (min-width: 992px) {
  .about__image img {
    width: 330px;
  }
}

.about__text-title {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 20px;
  padding: 0px 20px;
  text-shadow:
    3px 3px 2px #fff,
    -3px 3px 2px #fff,
    -3px -3px 0 #fff,
    3px -3px 0 #fff;
}
@media screen and (min-width: 992px) {
  .about__text-title {
    font-size: 25px;
  }
}

.about__text {
  font-weight: 700;
  line-height: 2.3;
  color: 0;
  margin-top: 50px;
}

.about__pop {
  margin-top: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.28px;
}
@media screen and (min-width: 992px) {
  .about__pop {
    margin-top: 42px;
  }
}

.about__button {
  margin-top: 12px;
}
@media screen and (min-width: 992px) {
  .about__button {
    margin-top: 16px;
  }
}
.footer {
  background: #111;
  padding-top: 8px;
  padding-bottom: 12px;
  text-align: center;
}

.how-to-use {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #fff;
}
@media screen and (min-width: 992px) {
  .how-to-use {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.how-to-use__boxes {
  margin-top: 104px;
  display: flex;
  flex-direction: column;
  gap: 112px;
}
@media screen and (min-width: 992px) {
  .how-to-use__boxes {
    margin-top: 89px;
    gap: 75px;
  }
}

.how-to-use__box {
  border-radius: 30px;
  background: #ddfaff;
  padding: 54px 40px 48px;
}
@media screen and (min-width: 768px) {
  .how-to-use__box {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .how-to-use__box {
    border-radius: 40px;
    padding: 44px 10px 56px;
    width: 100%;
  }
}

.how-to-use__box-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.8px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .how-to-use__box-title {
    font-size: 25px;
    letter-spacing: 2.2px;
    padding-right: 95px;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
.how-to-use__box-title img {
  width: 110px;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: calc(100% + 16px);
}
@media screen and (min-width: 992px) {
  .how-to-use__box-title img {
    right: 0;
    transform: translateX(0);
    bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .is-type2 .how-to-use__box-title {
    padding-right: 0;
    padding-left: 95px;
  }
  .is-type2 .how-to-use__box-title img {
    right: auto;
    left: 0;
  }
}

.how-to-use__steps {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 992px) {
  .how-to-use__steps {
    margin-top: 40px;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
    gap: 3px;
  }
}

@media screen and (min-width: 992px) {
  .how-to-use__step {
    flex: 1;
  }
}

.step-box {
  padding-top: 45px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .step-box {
    height: 100%;
  }
}
@media screen and (min-width: 992px) {
  .step-box {
    height: 100%;
  }
}

.step-box__head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #111;
  background: var(--color-primary);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.is-type2 .step-box__head {
  background-color: #fabe00;
}

.step-box__head-text {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.3px;
}

.step-box__head-number {
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 3.4px;
  color: #fff;
  margin-top: 3px;
}

.step-box__body {
  border-radius: 30px;
  border: 3px solid #111;
  background: #fff;
  padding: 47px 30px 23px;
  text-align: center;
}

.step-box__image img {
  width: 160px;
}
@media screen and (min-width: 992px) {
  .step-box__image img {
    width: 200px;
  }
}

.step-box__title {
  font-weight: 700;
  letter-spacing: 0.48px;
  margin-top: 10px;
  font-size: 20px;
  color: #fff;
  background: var(--color-primary);
}

.step-box__text {
  font-weight: 300;
  letter-spacing: 0.48px;
  margin-top: 10px;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .step-box__text {
    font-weight: 350;
    text-align: left;
  }
}

.merit {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 992px) {
  .merit {
    padding-top: 100px;
    padding-bottom: 98px;
  }
}

.merit-heading__en {
  font-size: 5px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 3.8px;
  color: var(--color-primary);
}
@media screen and (min-width: 992px) {
  .merit-heading__en {
    font-size: 20px;
    letter-spacing: 5px;
  }
}

.merit-heading__ja {
  font-size: 25px;
  color: var(--color-primary);
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .merit-heading__ja {
    font-size: 40px;
    letter-spacing: 5px;
  }
}

.merit__boxes {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 992px) {
  .merit__boxes {
    margin-top: 60px;
    gap: 40px;
  }
}

.merit__boxes-sub {
  gap: 25px;
  padding: 10px;
  text-align: center;
}

.merit-box-sub {
  background: #fff;
}

.merit__box-sub {
  margin-top: 30px;
  display: flex;
  gap: 30px;
}
@media screen and (min-width: 992px) {
  .merit__box-sub {
    margin-top: 60px;
    display: flex;
    gap: 40px;
  }
}

.merit-box {
  border-radius: 20px;
  background: #fff;
  padding: 10px 20px 24px;
}
@media screen and (min-width: 768px) {
  .merit-box {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .merit-box {
    padding: 20px 18px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 50px;
  }
}
@media screen and (min-width: 992px) {
  .merit-box.is-reverse {
    flex-direction: row;
  }
}

@media screen and (min-width: 992px) {
  .merit-box__content {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 50px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .is-reverse .merit-box__content {
    flex-direction: row;
  }
}

@media screen and (min-width: 992px) {
  .merit-box__content-sub {
    align-items: center;
    flex-direction: row-reverse;
    gap: 50px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .is-reverse .merit-box__content-sub {
    flex-direction: row;
  }
}

.merit-box__text-deco {
  color: var(--color-primary);
  font-weight: 700;
}

.merit-box__image {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .merit-box__image {
    width: 38.0434782609%;
  }
}

@media screen and (min-width: 992px) {
  .merit-box__image img {
    width: 350px;
  }
}

.merit-box__body {
  margin-top: 18px;
}
@media screen and (min-width: 992px) {
  .merit-box__body {
    margin-top: 0;
    width: 56.5217391304%;
  }
}

.merit-box__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media screen and (min-width: 992px) {
  .merit-box__head {
    gap: 28px;
  }
}

.merit-box__number {
  color: var(--color-primary);
  font-family: "Montserrat", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 100%;
}
@media screen and (min-width: 992px) {
  .merit-box__number {
    font-size: 60px;
  }
}

.merit-box__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 992px) {
  .merit-box__title {
    font-size: 18px;
    letter-spacing: 2px;
  }
}

.merit-box__title-sub {
  font-size: 20px;
}
@media screen and (min-width: 992px) {
  .merit-box__title-sub {
    font-size: 24px;
  }
}

.merit-box__title-sub2 {
  font-size: 23px;
}
@media screen and (min-width: 992px) {
  .merit-box__title-sub2 {
    font-size: 35px;
  }
}

.merit-box__title-border {
  font-size: 28px;
  border-bottom: solid;
  border-color: var(--color-primary);
  border-width: 8px;
}
@media screen and (min-width: 768px) {
  .merit-box__title-border {
    font-size: 35px;
  }
}
@media screen and (min-width: 992px) {
  .merit-box__title-border {
    font-size: 35px;
  }
}

.merit-box__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 200%;
}
@media screen and (min-width: 992px) {
  .merit-box__text {
    margin-top: 16px;
    font-size: 17px;
  }
}

.plan {
  background: #fff;
}

.how-to-use__boxes {
  margin-top: 104px;
  display: flex;
  flex-direction: column;
  gap: 112px;
}
@media screen and (min-width: 992px) {
  .how-to-use__boxes {
    margin-top: 89px;
    gap: 5px;
  }
}

.how-to-use__box {
  border-radius: 30px;
  background: #ddfaff;
  padding: 54px 40px 48px;
}
@media screen and (min-width: 992px) {
  .how-to-use__box {
    border-radius: 40px;
    padding: 44px 10px 56px;
  }
}

.how-to-use__box-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.8px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .how-to-use__box-title {
    font-size: 25px;
    letter-spacing: 2.2px;
    padding-right: 95px;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
.how-to-use__box-title img {
  width: 110px;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: calc(100% + 16px);
}
@media screen and (min-width: 992px) {
  .how-to-use__box-title img {
    right: 0;
    transform: translateX(0);
    bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .is-type2 .how-to-use__box-title {
    padding-right: 0;
    padding-left: 95px;
  }
  .is-type2 .how-to-use__box-title img {
    right: auto;
    left: 0;
  }
}

.benefits__steps {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .benefits__steps {
    max-width: 500px;
  }
}
@media screen and (min-width: 992px) {
  .benefits__steps {
    margin-top: 40px;
    max-width: 948px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
    gap: 24px;
  }
}

@media screen and (min-width: 992px) {
  .benefits__step {
    flex: 1;
  }
}

.benefits-stepbox {
  padding-top: 45px;
  position: relative;
}

.benefits-stepbox__body {
  border-radius: 30px;
  border: 3px solid #111;
  background: #fff;
  padding: 47px 30px 23px;
  text-align: center;
}

.benefits-stepbox__image img {
  width: 160px;
}
@media screen and (min-width: 992px) {
  .benefits-stepbox__image img {
    width: 200px;
  }
}

.benefits-stepbox__head {
  background: var(--color-primary);
  color: #f5f5f5;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
}

.benefits-stepbox__title {
  font-weight: 700;
  letter-spacing: 0.48px;
  margin-top: 10px;
  font-size: 20px;
  color: var(--color-primary);
}

.benefits-stepbox__text {
  font-weight: 300;
  letter-spacing: 0.48px;
  margin-top: 10px;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .benefits-stepbox__text {
    font-weight: 350;
  }
}

.compare {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #fff;
}
@media screen and (min-width: 992px) {
  .compare {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.compare__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .compare__title {
    font-size: 24px;
  }
}

.compare__content {
  margin-top: 40px;
  overflow-x: auto;
  padding-bottom: 38px;
}
@media screen and (min-width: 992px) {
  .compare__content {
    margin-top: 60px;
    padding-bottom: 0;
  }
}

.compare__table {
  width: 620px;
  table-layout: fixed;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 992px) {
  .compare__table {
    width: 1000px;
  }
}
.compare__table th,
.compare__table td {
  text-align: center;
  font-weight: 700;
  height: 60px;
  vertical-align: middle;
}
@media screen and (min-width: 992px) {
  .compare__table th,
  .compare__table td {
    height: 100px;
  }
}
.compare__table th:nth-child(1),
.compare__table td:nth-child(1) {
  width: 130px;
}
@media screen and (min-width: 992px) {
  .compare__table th:nth-child(1),
  .compare__table td:nth-child(1) {
    width: 250px;
  }
}
.compare__table th:nth-child(2),
.compare__table td:nth-child(2) {
  width: 150px;
  background: #ddfaff;
  font-size: 16px;
  letter-spacing: 0.48px;
}
@media screen and (min-width: 992px) {
  .compare__table th:nth-child(2),
  .compare__table td:nth-child(2) {
    width: 300px;
    font-size: 45px;
    letter-spacing: 0.75px;
    color: var(--color-primary);
  }
}
.compare__table th:nth-child(2) img,
.compare__table td:nth-child(2) img {
  width: 70px;
}
@media screen and (min-width: 992px) {
  .compare__table th:nth-child(2) img,
  .compare__table td:nth-child(2) img {
    width: 123px;
  }
}
.compare__table th {
  letter-spacing: 0.48px;
}
@media screen and (min-width: 992px) {
  .compare__table th {
    font-size: 20px;
    letter-spacing: 0.6px;
  }
}
.compare__table td {
  font-size: 14px;
  letter-spacing: 0.42px;
}
@media screen and (min-width: 992px) {
  .compare__table td {
    font-size: 16px;
    letter-spacing: 0.48px;
  }
}
.compare__table thead th {
  letter-spacing: 1.6px;
}
@media screen and (min-width: 992px) {
  .compare__table thead th {
    letter-spacing: 2px;
  }
}
.compare__table tbody tr {
  border-top: 1.5px solid #000;
}
@media screen and (min-width: 992px) {
  .compare__table tbody tr {
    border-top-width: 3px;
  }
}
.compare__table tbody th,
.compare__table tbody td {
  height: 58.5px;
}
@media screen and (min-width: 992px) {
  .compare__table tbody th,
  .compare__table tbody td {
    height: 100px;
  }
}

@media screen and (min-width: 992px) {
  .compare-tr__td {
    font-size: 20px;
    color: var(--color-primary);
    font-weight: 300;
  }
}

.compare__attention {
  margin-top: 11px;
  color: #686868;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .compare__attention {
    display: none;
  }
}

.qa {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 992px) {
  .qa {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media screen and (min-width: 992px) {
  .qa__inner {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 860px;
  }
}

.qa__boxes {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
@media screen and (min-width: 992px) {
  .qa__boxes {
    margin-top: 74px;
  }
}

.qa-box {
  border-radius: 4px;
  border: 3px solid #111;
  background: #fff;
}
.qa-box.is-open .qa-box__head::after {
  transform: rotate(0deg);
}

.qa-box__head {
  padding: 29px 37px 17px 12px;
  position: relative;
  display: block;
  width: 100%;
  background: #fff;
}
@media screen and (min-width: 992px) {
  .qa-box__head {
    padding: 29px 77px 17px 17px;
  }
}
.qa-box__head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 9.26px;
  height: 6.834px;
  background: url(../img/qa-arrow.png) no-repeat center center/contain;
  transform: rotate(180deg);
  margin-top: 3px;
}
@media screen and (min-width: 992px) {
  .qa-box__head::after {
    right: 22px;
    right: 18px;
    margin-top: 2px;
  }
}

.qa-box__head-icon {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  border: 3px solid #111;
  background: var(--color-primary);
  position: absolute;
  top: -26px;
  left: 12px;
  color: #000;
}
@media screen and (min-width: 992px) {
  .qa-box__head-icon {
    left: 17px;
  }
}

.qa-box__head-text {
  display: block;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.12px;
  color: #000;
}
@media screen and (min-width: 992px) {
  .qa-box__head-text {
    font-size: 16px;
    line-height: 27px; /* 168.75% */
    letter-spacing: 1.28px;
  }
}

.qa-box__body {
  padding: 13px 14px 17px 12px;
  display: none;
}
@media screen and (min-width: 992px) {
  .qa-box__body {
    padding: 3px 33px 17px 17px;
  }
}

.qa-box__a {
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 992px) {
  .qa-box__a {
    gap: 10px;
  }
}

.qa-box__a-icon {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  border: 3px solid #111;
  background: #ddfaff;
  flex-shrink: 0;
}

.qa-box__a-text {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.12px;
  flex-grow: 1;
  padding-top: 10px;
}
@media screen and (min-width: 992px) {
  .qa-box__a-text {
    font-size: 16px;
    line-height: 27px; /* 168.75% */
    letter-spacing: 1.28px;
    padding-top: 7px;
  }
}

.contact {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 992px) {
  .contact {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.contact__box {
  border-radius: 30px;
  background: #fff;
  padding: 60px 20px;
}
@media screen and (min-width: 992px) {
  .contact__box {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.contact__form {
  margin-top: 30px;
}
@media screen and (min-width: 992px) {
  .contact__form {
    margin-top: 50px;
    max-width: 612px;
    margin-left: auto;
    margin-right: auto;
  }
}

.contact__fields {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact__privacy {
  margin-top: 29px;
  text-align: center;
}

.contact__button {
  margin-top: 29px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .contact__button {
    margin-top: 38px;
  }
}

@media screen and (min-width: 992px) {
  .form-field {
    display: flex;
    gap: 32px;
  }
}

.form-field__head {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 992px) {
  .form-field__head {
    width: 180px;
    flex-shrink: 0;
    justify-content: flex-end;
  }
}

.form-field__label {
  font-weight: 700;
  line-height: 1.4375;
}

.form-field__tag {
  display: inline-block;
  border-radius: 2px;
  background: var(--color-primary);
  padding: 6px 8px 5px 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.98px;
}

.form-field__item {
  margin-top: 15px;
  flex-grow: 1;
}
@media screen and (min-width: 992px) {
  .form-field__item {
    margin-top: 0;
  }
}

.form-text {
  width: 100%;
  border-radius: 5px;
  border: 3px solid #111;
  background: #fff;
  padding: 12px 13px 11px;
  transition: border-color 0.3s;
}
.form-text:hover,
.form-text:focus {
  border-color: var(--color-primary);
  outline: none;
}

.from-radio {
  line-height: 1.4375;
}
.from-radio:hover .from-radio__text::before {
  border-color: var(--color-primary);
}

.from-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.from-radio__input:checked + .from-radio__text::after {
  opacity: 1;
}

.from-radio__text {
  font-weight: 700;
  padding-left: 28px;
  position: relative;
}
.from-radio__text::before,
.from-radio__text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.from-radio__text::before {
  width: 24px;
  height: 24px;
  border: 3px solid #111;
  left: 0;
  transition: border-color 0.3s;
}
.from-radio__text::after {
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  left: 7px;
  opacity: 0;
}

.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border-radius: 5px;
  border: 3px solid #111;
  background: #fff;
  font-weight: 700;
  padding: 12px 43px 11px 13px;
  background: url(../img/select-arrow.png) no-repeat center right 14px/13.217px
    10.182px;
  transition: border-color 0.3s;
}
.form-select:hover,
.form-select:focus {
  border-color: var(--color-primary);
  outline: none;
}

.form-textarea {
  border-radius: 5px;
  border: 3px solid #111;
  background: #fff;
  width: 100%;
  height: 180px;
  padding: 13px;
  transition: border-color 0.3s;
}
.form-textarea:hover,
.form-textarea:focus {
  border-color: var(--color-primary);
  outline: none;
}

.form-field__radios {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
@media screen and (min-width: 992px) {
  .form-field__radios {
    flex-direction: row;
    gap: 30px;
  }
}

.form-checkbox:hover .form-checkbox__text::before {
  border-color: var(--color-primary);
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
.form-checkbox__input:focus + .form-checkbox__text::before {
  border-color: var(--color-primary);
}

.form-checkbox__text {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  font-weight: 700;
}
.form-checkbox__text::before,
.form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 20px;
  height: 20px;
  border-radius: 1px;
  border: 1px solid #111;
  transition: border-color 0.3s;
}
@media screen and (min-width: 992px) {
  .form-checkbox__text::before {
    margin-top: 2px;
  }
}
.form-checkbox__text::after {
  width: 23px;
  height: 17.53px;
  left: -1px;
  margin-top: -1.2px;
  background: url(../img/check-icon.png) no-repeat center center/contain;
  opacity: 0;
}
@media screen and (min-width: 992px) {
  .form-checkbox__text::after {
    margin-top: 0.8px;
  }
}
.form-checkbox__text a {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  font-weight: 700;
  transition: color 0.3s;
}
.form-checkbox__text a:hover {
  color: var(--color-primary);
}

.cta {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (min-width: 992px) {
  .cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.cta-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.cta-content__text {
  position: relative;
  z-index: 50;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .cta-content__text {
    padding-top: 40px;
    text-align: center;
  }
}

.cta-content__img img {
  width: 300px;
}

.cta-content__text {
  z-index: -1;
}
.cta-content__text img {
  max-width: 1500px;
  display: block;
  -webkit-filter: brightness(0.4);
  filter: brightness(0.4);
}

.cat__text {
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.48px;
  color: #fff;
  position: absolute;
  top: 10px;
  left: 800px;
}
@media screen and (min-width: 992px) {
  .cat__text {
    font-size: 18px;
    letter-spacing: 0.54px;
  }
}

.cat__button {
  margin-top: 16px;
}

.footer {
  background: #111;
  padding-top: 8px;
  padding-bottom: 12px;
  text-align: center;
}

.footer__copyright {
  color: #f5f5f5;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.96px;
}

.pagetop {
  position: fixed;
  right: -100px;
  bottom: 10px;
  width: min(13.3333333333%, 50px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}
.pagetop img {
  width: 175px;
}
@media screen and (min-width: 768px) {
  .pagetop {
    right: 200px;
    bottom: 30px;
    width: 20px;
  }
}
@media screen and (min-width: 992px) {
  .pagetop {
    right: 200px;
    bottom: 30px;
    width: 20px;
  }
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
.about-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  max-width: calc(100% - 30px);
  max-height: calc(100% - 40px);
  overflow: auto;
  padding: 16px 15px 64px;
  border-radius: 20px;
  background: #fff;
  border: none;
  z-index: 60;
}
@media screen and (min-width: 992px) {
  .about-modal {
    width: 1140px;
    padding: 49px 70px 75px;
  }
}
.about-modal::-webkit-backdrop {
  opacity: 0.2;
  background: #000;
}
.about-modal::backdrop {
  opacity: 0.2;
  background: #000;
}

.about-modal__head {
  display: flex;
  justify-content: flex-end;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.about-modal__close-icon img {
  width: 37px;
}

.about-modal__body {
  margin-top: 12px;
}
@media screen and (min-width: 992px) {
  .about-modal__body {
    margin-top: 43px;
  }
}
.about-modal__body p {
  font-size: 14px;
}
@media screen and (min-width: 992px) {
  .about-modal__body p {
    font-size: 16px;
  }
}
.about-modal__body p:nth-child(n + 2) {
  margin-top: 20px;
}

.about-modal__close-button {
  margin-top: 30px;
  text-align: center;
}

.fade-in-up {
  opacity: 1;
  transform: translateY(24px);
  transition:
    opacity 1s,
    transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-down {
  opacity: 1;
  transform: translateY(-24px);
  transition:
    opacity 1s,
    transform 1s;
}
.fade-in-down.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 1s;
}
.fade-in.is-in-view {
  opacity: 1;
}

.spots {
  position: relative;
  padding-top: 45.7px;
  padding-bottom: 45.7px;
  margin-top: -45.7px;
}

@media screen and (min-width: 900px) {
  .spots {
    padding-top: 120px;
    padding-bottom: 120px;
    margin-top: -120px;
  }
}
.spots::before,
.spots::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 45.7px;
  content: "";
  background-color: transparent;
  background-repeat: repeat-x;
  background-position: left -3px center;
  background-size: contain;
}

@media screen and (min-width: 900px) {
  .spots::before,
  .spots::after {
    height: 120px;
    background-position: left center;
  }
}
.spots::before {
  top: 1px;
  background-image:
    url(../img/deco_wave-top_sp.svg),
    linear-gradient(to bottom, transparent 13px, #67b0c7 13px);
}

@media screen and (min-width: 900px) {
  .spots::before {
    background-image:
      url(../img/deco_wave-top_pc.svg),
      linear-gradient(to bottom, transparent 33px, #67b0c7 33px);
  }
}
.spots::after {
  bottom: 1px;
  background-image:
    url(../img/deco_wave-bottom_sp.svg),
    linear-gradient(to top, transparent 13px, #67b0c7 13px);
  background-position: left -6px center;
}

@media screen and (min-width: 900px) {
  .spots::after {
    background-image:
      url(../img/deco_wave-bottom_pc.svg),
      linear-gradient(to top, transparent 33px, #67b0c7 33px);
  }
}
.spots__decoration-pawpads {
  position: absolute;
  bottom: 120px;
  left: 0;
  width: 80px;
}

@media screen and (min-width: 1200px) {
  .spots__decoration-pawpads {
    bottom: 120px;
    left: calc(50% - 720px);
    width: 100px;
  }
}
.spots__outer {
  padding-bottom: 14.86px;
  background-color: #67b0c7;
}

@media screen and (min-width: 900px) {
  .spots__outer {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 900px) {
  .spots__inner {
    max-width: 1084px;
    padding-right: 30px;
    padding-left: 30px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 900px) {
  .spots__top {
    display: flex;
    -moz-column-gap: 32px;
    column-gap: 32px;
    padding-left: max(30px, 50% - 512px);
  }
}
.spots__heading-wrap {
  text-align: center;
}

@media screen and (min-width: 900px) {
  .spots__heading-wrap {
    width: 56px;
  }
}
.spots__heading {
  position: relative;
  display: inline-block;
  padding-left: 36px;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
}

@media screen and (min-width: 900px) {
  .spots__heading {
    padding-top: 72px;
    padding-right: 3px;
    padding-left: 3px;
    font-size: 40px;
    letter-spacing: 0.25em;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
  }
}
.spots__heading::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 28px;
  content: "";
  background-color: transparent;
  background-image: url(../img/icon_star.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transform: translateY(-50%);
}

@media screen and (min-width: 900px) {
  .spots__heading::before {
    top: 0;
    left: 50%;
    width: 56px;
    height: 56px;
    transform: translateX(-50%);
  }
}
.spots__slider {
  margin-top: 25px;
}

@media screen and (min-width: 900px) {
  .spots__slider {
    width: calc(100% - 56px - 32px);
    margin-top: 0;
  }
}
.spots__arrows {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-top: -10px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1200px) {
  .spots__arrows {
    max-width: 944px;
    margin-top: -32px;
  }
}
.spots__bottom {
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1200px) {
  .spots__bottom {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    margin-top: 40px;
  }
}
.spots__decoration-english {
  display: block;
  width: 254px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1;
}

@media screen and (min-width: 900px) {
  .spots__decoration-english {
    width: 360px;
    margin-top: -45px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__decoration-english {
    width: 494px;
    margin: 0;
  }
}
.spots__text-wrap {
  margin-top: 15px;
}

@media screen and (min-width: 1200px) {
  .spots__text-wrap {
    margin-top: 0;
  }
}
.spots__text {
  font-size: 11.444px;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .spots__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__text {
    font-size: 16px;
    text-align: right;
  }
}
.spots__button {
  padding-bottom: 4px;
  margin-top: 24px;
  text-align: center;
}

@media screen and (min-width: 1200px) {
  .spots__button {
    text-align: right;
  }
}
.spots-swiper__slide {
  height: auto;
}

.spots-swiper-arrows {
  display: flex;
  justify-content: space-between;
}

.spots-swiper-arrows__prev,
.spots-swiper-arrows__next {
  position: static;
  width: 80px;
  height: 80px;
  background-color: #ffee56;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px 27px;
  border-radius: 50%;
  transition: background-position 0.3s;
}

.spots-swiper-arrows__prev::after,
.spots-swiper-arrows__next::after {
  content: "";
}

.spots-swiper-arrows__prev {
  background-image: url(../img/icon_arrow-left.svg);
}

@media (hover: hover) {
  .spots-swiper-arrows__prev:hover {
    background-position: center left 40%;
  }
}
.spots-swiper-arrows__next {
  background-image: url(../img/icon_arrow-right.svg);
}

@media (hover: hover) {
  .spots-swiper-arrows__next:hover {
    background-position: center right 40%;
  }
}
.spots-card {
  height: 100%;
  padding-right: 24px;
  padding-bottom: 30px;
  padding-left: 24px;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
}

@media screen and (min-width: 900px) {
  .spots-card {
    padding-right: 32px;
    padding-bottom: 40px;
    padding-left: 32px;
    border-radius: 24px;
  }
}
.spots-card__image {
  display: block;
  width: calc(100% + 48px);
  margin-left: -24px;
}

@media screen and (min-width: 900px) {
  .spots-card__image {
    width: calc(100% + 64px);
    margin-left: -32px;
  }
}
.spots-card__heading {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 900px) {
  .spots-card__heading {
    margin-top: 25px;
    font-size: 20px;
  }
}
.spots-card__text {
  margin-top: 16px;
}

@media screen and (min-width: 900px) {
  .spots-card__text {
    margin-top: 25px;
  }
}
.spots-text-decoration-english {
  font-family: "Josefin Sans", sans-serif;
  font-size: 72px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  color: transparent;
  letter-spacing: 7.2px;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 1.14px;
}

@media screen and (min-width: 900px) {
  .spots-text-decoration-english {
    -webkit-text-stroke-width: 2px;
    font-size: 78px;
  }
}
@media screen and (min-width: 1200px) {
  .spots-text-decoration-english {
    font-size: 140px;
  }
}
.plan {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 992px) {
  .plan {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.plan-title__text-under {
  border-bottom: 6px solid var(--color-primary);
}

.plan__boxes {
  margin-top: 104px;
  display: flex;
  flex-direction: column;
  gap: 112px;
}
@media screen and (min-width: 768px) {
  .plan__boxes {
    margin-inline: auto;
  }
}
@media screen and (min-width: 992px) {
  .plan__boxes {
    margin-top: 89px;
    gap: 75px;
  }
}

.plan__box {
  border-radius: 30px;
  background: #ddfaff;
  padding: 54px 40px 48px;
}
@media screen and (min-width: 992px) {
  .plan__box {
    border-radius: 40px;
    padding: 44px 10px 56px;
  }
}

.plan-title__text-bold {
  color: var(--color-primary);
  font-weight: 1000;
}

.plan-title__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  text-align: center;
  margin-top: 70px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .plan-title__text {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .plan-title__text {
    font-size: 25px;
    margin-bottom: 50px;
    text-align: center;
  }
}

.plan__box-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.8px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .plan__box-title {
    font-size: 25px;
    letter-spacing: 2.2px;
    padding-right: 95px;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
.plan__box-title img {
  width: 110px;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: calc(100% + 16px);
}
@media screen and (min-width: 992px) {
  .plan__box-title img {
    right: 0;
    transform: translateX(0);
    bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .is-type2 .plan__box-title {
    padding-right: 0;
    padding-left: 95px;
  }
  .is-type2 .plan__box-title img {
    right: auto;
    left: 0;
  }
}

.plan__steps {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .plan__steps {
    width: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-inline: auto;
  }
}
@media screen and (min-width: 992px) {
  .plan__steps {
    display: flex;
    margin-top: 40px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
    gap: 30px;
  }
}

.plan__step {
  border-radius: 9px;
}
.plan__step.left {
  border: 6px solid rgba(0, 204, 255, 0.4470588235);
}
.plan__step.center {
  border: 6px solid #00ccff;
}
.plan__step.right {
  border: 6px solid var(--color-primary);
}
.plan__step.right2 {
  border: 6px solid #003366;
}
@media screen and (min-width: 768px) {
  .plan__step {
    max-width: 500px;
  }
}
@media screen and (min-width: 992px) {
  .plan__step {
    max-width: 900px;
    flex: 1;
  }
}

.plan-stepbox {
  position: relative;
}
@media screen and (min-width: 992px) {
  .plan-stepbox {
    max-width: 900px;
  }
}

.plan-stepbox__head {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  padding: 20px 10px 20px;
}
.plan-stepbox__head.left {
  background: rgba(0, 204, 255, 0.4470588235);
}
.plan-stepbox__head.center {
  background: #00ccff;
}
.plan-stepbox__head.right {
  background: var(--color-primary);
}
.plan-stepbox__head.right2 {
  background: #003366;
}
@media screen and (min-width: 992px) {
  .plan-stepbox__head {
    height: 30px;
  }
}

.plan-stepbox__head-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 25px;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 3.4px;
  color: #fff;
  margin-top: 3px;
}
@media screen and (min-width: 992px) {
  .plan-stepbox__head-text {
    font-size: 31px;
  }
}

@media screen and (min-width: 992px) {
  .plan-stepbox__body3 img {
    width: 10px;
  }
}

.plan-stepbox__head-text3 {
  font-size: 21px;
}
@media screen and (min-width: 768px) {
  .plan-stepbox__head-text3 {
    font-size: 15px;
  }
}
@media screen and (min-width: 992px) {
  .plan-stepbox__head-text3 {
    font-size: 19px;
  }
}

@media screen and (min-width: 992px) {
  .plan-stepbox__head-text3-sub {
    font-size: 13px;
  }
}

.plan-stepbox__body {
  padding: 47px 30px 23px;
  text-align: center;
}
.plan-stepbox__body img {
  width: 150px;
}

.plan-stepbox__title {
  font-weight: 700;
  letter-spacing: 0.48px;
  font-size: 35px;
  color: #000;
}
.plan-stepbox__title.left {
  color: rgba(0, 204, 255, 0.4470588235);
}
.plan-stepbox__title.center {
  color: #00ccff;
}
.plan-stepbox__title.right {
  color: var(--color-primary);
}
.plan-stepbox__title.right2 {
  color: #003366;
}
@media screen and (min-width: 992px) {
  .plan-stepbox__title {
    font-size: 50px;
  }
}

.plan-stepbox__title-text {
  font-style: 100;
  color: #000;
  font-size: 20px;
}
@media screen and (min-width: 992px) {
  .plan-stepbox__title-text {
    font-size: 20px;
  }
}

.plan-stepbox__text {
  font-weight: 300;
  letter-spacing: 0.48px;
  margin-top: 10px;
  text-align: left;
}

/* 前への矢印 */
.swiper-button-prev {
  left: -30px;
}

/* 次への矢印 */
.swiper-button-next {
  right: -30px;
}

/* ページネーション */
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -25px;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
  position: relative;
}

.swiper {
  max-width: 500px;
}

.swiper-slide img {
  height: auto;
  width: 100%;
}
