@charset "UTF-8";
/*=======================================================
共通
=======================================================*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

ol,
ul {
  list-style: none;
}

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

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

button {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

input,
select,
textarea {
  vertical-align: top;
}

html {
  font-size: 16px;
}
@media not screen and (min-width: 376px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  color: #fff;
  font-family: "Noto Sans JP", serif;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.5;
  background-color: #222;
  overflow-wrap: anywhere;
  line-break: strict;
}
body.is-noScroll {
  left: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
}

.wrapper {
  overflow-x: clip;
}
.error404 .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: calc(var(--vh, 1vh) * 100);
}

.error404 .wrapper .main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media not screen and (min-width: 768px) {
  .hidden-sp {
    display: none;
  }
}

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

input[type=text], input[type=email], input[type=tel], input[type=password] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  padding: 0.4em 0.8em;
  width: 100%;
}
input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=password]:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
input[type=radio] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
input[type=radio] + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  position: relative;
}
input[type=radio] + span::before {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  content: "";
  display: block;
  height: 16px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
}
input[type=radio] + span::after {
  background-color: rgba(0, 0, 0, 0.32);
  border: 1px solid transparent;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 4px;
  opacity: 0;
  padding: 2px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 8px;
}
input[type=radio]:checked + span::after {
  opacity: 1;
}
input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  position: relative;
}
input[type=checkbox] + span::before {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  content: "";
  display: block;
  height: 1em;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1em;
}
input[type=checkbox] + span::after {
  border-bottom: 3px solid rgba(0, 0, 0, 0.32);
  border-left: 3px solid rgba(0, 0, 0, 0.32);
  content: "";
  display: block;
  height: 0.6em;
  left: 0;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 1em;
}
input[type=checkbox]:checked + span::after {
  opacity: 1;
}
input[type=submit] {
  -webkit-appearance: none;
  background-color: rgba(0, 0, 0, 0.32);
  background-image: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  margin: 0 0 1em;
  padding: 0.6em 2em;
  text-decoration: none;
}
input[type=submit]:hover, input[type=submit]:focus {
  outline: none;
}
input[type=submit]::-moz-focus-inner {
  border: none;
  padding: 0;
}

textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  height: 100px;
  padding: 0.4em 0.8em;
  width: 100%;
}
textarea:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  background-image: url();
  background-repeat: no-repeat;
  background-position: center right 8px;
  background-size: 16px 16px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  cursor: pointer;
  padding: 0.4em 0.8em;
  width: 100%;
}
select::-ms-expand {
  display: none;
}
select:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.inner {
  padding-inline: 5.3333333333%;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-inline: 30px;
    max-width: 1160px;
    margin-inline: auto;
  }
}

.heading {
  color: #fef001;
  font-size: 2.875rem;
  font-family: "Roboto", serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .heading {
    font-size: 5rem;
  }
}

.js-in-view.fadeIn {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.js-in-view.fadeIn.is-in-view {
  opacity: 1;
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 40;
}

.header__inner {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 5.3333333333%;
}
@media not screen and (min-width: 768px) {
  .header__inner {
    grid-template-columns: 1fr auto 1fr;
  }
}
@media screen and (min-width: 768px) {
  .header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 8px 30px;
    max-width: 1306px;
    margin-inline: auto;
  }
}

@media not screen and (min-width: 768px) {
  .header__logo {
    grid-column: 2;
    justify-self: center;
  }
}
.header__logo img {
  width: 96px;
  display: block;
}

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

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
}

.header__nav-link {
  display: block;
  font-family: "Roboto", serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #222;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .header__nav-link:hover {
    opacity: 0.7;
  }
}

.header__nav-button {
  font-weight: 700;
  line-height: 1;
  color: #222;
  padding: 16px 41px;
  display: inline-block;
  border-radius: 24px;
  background-image: -webkit-gradient(linear, right top, left top, from(#fef001), color-stop(50%, #fef001), color-stop(50%, #222), to(#222));
  background-image: linear-gradient(to left, #fef001 0%, #fef001 50%, #222 50%, #222 100%);
  background-position: right;
  background-size: calc(200% + 1px);
  -webkit-transition: color 0.2s linear, background-position 0.2s linear;
  transition: color 0.2s linear, background-position 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .header__nav-button:hover {
    color: #fef001;
    background-position: left;
  }
}

button.drawer-icon {
  margin-left: auto;
  grid-column: 3;
  width: 24px;
  height: 21px;
  position: relative;
  z-index: 61;
}
@media screen and (min-width: 768px) {
  button.drawer-icon {
    display: none;
  }
}

.drawer-icon__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #222;
  border-radius: 6px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 0;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 50%;
  -webkit-transform: scale(1) translateY(-50%);
          transform: scale(1) translateY(-50%);
}
.drawer-icon__bar:nth-of-type(3) {
  bottom: 0;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  -webkit-transform: scale(0) translateY(-50%);
          transform: scale(0) translateY(-50%);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-225deg);
          transform: translateY(50%) rotate(-225deg);
}

.drawer__content {
  display: none;
  width: 100%;
  height: calc(100% - 113px);
  position: fixed;
  top: 113px;
  left: 0;
  background-color: #222;
  padding-bottom: 55px;
  z-index: 60;
  overflow-y: auto;
}

.drawer__nav-link {
  display: block;
  padding: 28px 60px;
  border-top: 1px solid #707070;
}
.drawer__nav-item:last-child .drawer__nav-link {
  border-bottom: 1px solid #707070;
}

.drawer__nav-link-text {
  display: block;
  max-width: 255px;
  margin-inline: auto;
  font-family: "Roboto", serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #fef001;
  letter-spacing: 0.05em;
}

.drawer__cta {
  margin-top: 28px;
}

.drawer__cta-row {
  padding-inline: 60px 34px;
  max-width: 375px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.drawer__cta-button {
  width: 69.0391459075%;
}
.drawer__cta-button a {
  display: block;
  padding: 13px;
  background-color: #fef001;
  border-radius: 24px;
  color: #222;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.drawer__cta-sns {
  width: 16.3701067616%;
}
.drawer__cta-sns img {
  width: 100%;
  display: block;
}

.mv__video {
  aspect-ratio: 375/197;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .mv__video {
    aspect-ratio: 1366/716;
  }
}
.mv__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about {
  padding-block: 29px 42px;
  background-color: #fef001;
}
@media screen and (min-width: 768px) {
  .about {
    padding-block: 55px 54px;
  }
}

.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
}
@media screen and (min-width: 768px) {
  .about__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 4.9090909091%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .about__body {
    width: 70.5454545455%;
  }
}

.about__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  color: #222;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__title {
    font-size: 1.875rem;
    line-height: 1.3333333333;
    text-align: left;
  }
}

.about__text {
  margin-top: 28px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
  color: #222;
}
@media not screen and (min-width: 768px) {
  .about__text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .about__text {
    margin-top: 26px;
    font-size: 1.25rem;
    line-height: 2;
  }
}

.about__image {
  display: grid;
  place-items: center;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background-color: #fff;
}
@media not screen and (min-width: 768px) {
  .about__image {
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .about__image {
    width: 24.5454545455%;
    height: auto;
    aspect-ratio: 1/1;
  }
}
.about__image img {
  width: 83px;
}
@media screen and (min-width: 768px) {
  .about__image img {
    width: 66.6666666667%;
  }
}

.gallery__items {
  display: grid;
  grid-template-columns: 38.1333333333% 12.2666666667% 1fr;
  grid-template-rows: repeat(4, auto);
}
@media screen and (min-width: 768px) {
  .gallery__items {
    grid-template-columns: 21.9619326501% 28.0380673499% 7.5402635432% 1fr;
    grid-template-rows: repeat(3, auto);
  }
}

.gallery__item:nth-child(1) {
  grid-area: 1/1/2/4;
  aspect-ratio: 375/173;
}
@media screen and (min-width: 768px) {
  .gallery__item:nth-child(1) {
    grid-area: 1/1/2/3;
    aspect-ratio: 683/316;
  }
}
.gallery__item:nth-child(2) {
  grid-area: 2/1/3/2;
  aspect-ratio: 143/309;
}
@media screen and (min-width: 768px) {
  .gallery__item:nth-child(2) {
    grid-area: 2/1/4/2;
    aspect-ratio: 300/650;
  }
}
.gallery__item:nth-child(3) {
  grid-area: 2/2/3/4;
  aspect-ratio: 232/309;
}
@media screen and (min-width: 768px) {
  .gallery__item:nth-child(3) {
    grid-area: 2/2/4/4;
    aspect-ratio: 486/650;
  }
}
.gallery__item:nth-child(4) {
  grid-area: 3/1/4/3;
  aspect-ratio: 189/105;
}
@media screen and (min-width: 768px) {
  .gallery__item:nth-child(4) {
    grid-area: 1/3/2/5;
    aspect-ratio: 683/316;
  }
}
.gallery__item:nth-child(5) {
  grid-area: 3/3/4/4;
  aspect-ratio: 186/105;
}
@media screen and (min-width: 768px) {
  .gallery__item:nth-child(5) {
    grid-area: 3/4/4/5;
    aspect-ratio: 580/325;
  }
}
.gallery__item:nth-child(6) {
  grid-area: 4/1/5/4;
  aspect-ratio: 375/170;
}
@media screen and (min-width: 768px) {
  .gallery__item:nth-child(6) {
    grid-area: 2/4/3/5;
    aspect-ratio: 580/325;
  }
}
.gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.instagram {
  padding-block: 90px 45px;
}
@media screen and (min-width: 768px) {
  .instagram {
    padding-block: 120px 90px;
  }
}

@media screen and (min-width: 768px) {
  .instagram__inner {
    max-width: 1340px;
  }
}

.instagram__list {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .instagram__list {
    margin-top: 80px;
  }
}
.instagram__list #sb_instagram #sbi_images {
  padding: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.instagram__list #sb_instagram.sbi_col_5 #sbi_images,
.instagram__list #sb_instagram.sbi_col_5.sbi_disable_mobile #sbi_images {
  grid-template-columns: repeat(5, 18.59375%);
  row-gap: 20px;
}
@media screen and (max-width: 800px) {
  .instagram__list #sb_instagram.sbi_tab_col_2 #sbi_images {
    grid-template-columns: repeat(2, 48.0597014925%);
    row-gap: 28px;
  }
}
@media screen and (max-width: 480px) {
  .instagram__list #sb_instagram.sbi_mob_col_2 #sbi_images {
    grid-template-columns: repeat(2, 48.0597014925%);
    row-gap: 14px;
  }
}

.keeper {
  padding-block: 45px;
}
@media screen and (min-width: 768px) {
  .keeper {
    padding-block: 90px;
  }
}

.keeper__items {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media not screen and (min-width: 768px) {
  .keeper__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .keeper__items {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(293px, 1fr));
    gap: clamp(28px, -24.9392px + 6.6327vw, 52px);
  }
}

.keeper__item {
  max-width: 461px;
}
@media screen and (min-width: 768px) {
  .keeper__item {
    max-width: none;
  }
}

.keeper__item-link {
  display: block;
  overflow: hidden;
  position: relative;
}
.keeper__item-link::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
}
@media (hover: hover) and (pointer: fine) {
  .keeper__item-link:hover::before {
    -webkit-animation: shine 0.75s;
            animation: shine 0.75s;
  }
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
.keeper__button {
  margin-top: 80px;
}

.keeper__button-link {
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .keeper__button-link:hover .keeper__button-image img {
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
  }
}

.keeper__button-image {
  display: block;
  aspect-ratio: 335/193;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .keeper__button-image {
    aspect-ratio: 1100/215;
  }
}
.keeper__button-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

.service {
  padding-block: 45px;
}
@media screen and (min-width: 768px) {
  .service {
    padding-block: 90px;
  }
}

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

.service__item:not(:last-child) {
  padding-bottom: 60px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .service__item:not(:last-child) {
    padding-bottom: 80px;
  }
}
.service__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #707070;
}

@media (hover: hover) and (pointer: fine) {
  .service__item-link:hover .service__item-image img {
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
  }
}

.service__item-image {
  display: block;
}
.service__item-image img {
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

.company {
  padding-block: 45px 60px;
}
@media screen and (min-width: 768px) {
  .company {
    padding-block: 90px 120px;
  }
}

@media screen and (min-width: 768px) {
  .company__inner {
    max-width: 1108px;
  }
}

.company__map {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .company__map {
    margin-top: 120px;
  }
}
.company__map .iframe-wrap {
  margin-inline: calc(50% - 50vw);
  width: 100vw;
}
.company__map .iframe-wrap iframe {
  display: block;
  aspect-ratio: 375/340;
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .company__map .iframe-wrap iframe {
    aspect-ratio: 1366/340;
  }
}

.company__info {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .company__info {
    margin-top: 120px;
  }
}

.company__info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  border-top: 1px solid #cdd6dd;
  padding-block: 21px 22px;
}
@media screen and (min-width: 768px) {
  .company__info-row {
    padding-block: 16px 17px;
    max-width: 920px;
    margin-inline: auto;
  }
}
.company__info-row:last-child {
  border-bottom: 1px solid #cdd6dd;
  padding-block: 21px;
}
@media screen and (min-width: 768px) {
  .company__info-row:last-child {
    padding-block: 16px;
  }
}
.company__info-row dt {
  font-size: 0.75rem;
  width: 86px;
}
@media screen and (min-width: 768px) {
  .company__info-row dt {
    font-size: 1.125rem;
    width: 147px;
  }
}
.company__info-row dd {
  font-size: 0.875rem;
  width: calc(100% - 86px);
}
@media screen and (min-width: 768px) {
  .company__info-row dd {
    font-size: 1.125rem;
    width: calc(100% - 147px);
  }
}

.keeper__table-wrapper {
  margin-top: 80px;
}

.scroll-area__wrapper {
  position: relative;
}
.scroll-area__wrapper .scroll-hint {
  position: absolute;
  top: -1.5em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 0.75rem;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .scroll-area__wrapper .scroll-hint {
    font-size: 0.875rem;
  }
}
.scroll-area__wrapper.show-hint .scroll-hint {
  opacity: 1;
}

.keeper__table-content {
  overflow-x: auto;
}

.keeper__table {
  width: 930px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .keeper__table {
    width: 1100px;
  }
}

.keeper__table-row {
  display: grid;
  grid-template-columns: 138px repeat(3, 1fr);
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .keeper__table-row {
    grid-template-columns: 168px repeat(3, 1fr);
    gap: 9px;
  }
}
.keeper__table-row[role=row] {
  grid-template-rows: 96px;
}
@media screen and (min-width: 768px) {
  .keeper__table-row[role=row] {
    grid-template-rows: 106px;
  }
}
.keeper__table-row--header {
  grid-template-rows: 48px;
  background-color: #222;
}
@media screen and (min-width: 768px) {
  .keeper__table-row--header {
    grid-template-rows: 53px;
  }
}
.keeper__table-row--header .keeper__table-cell {
  background-color: #fef001;
}
.keeper__table-row--header .keeper__table-cell-text {
  font-size: 1rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .keeper__table-row--header .keeper__table-cell-text {
    font-size: 1.125rem;
  }
}
.keeper__table-row--ex {
  background-color: #022b5d;
}
.keeper__table-row--ecodia {
  background-color: #01a040;
}
.keeper__table-row--fresh {
  background-color: #fff100;
}
.keeper__table-row--w-diamond {
  background-color: #004193;
}
.keeper__table-row--diamond {
  background-color: #bfa448;
}
.keeper__table-row--crystal {
  background-color: #19a7d7;
}

.keeper__table-cell {
  display: grid;
  place-items: center;
  background-color: #fff;
}
.keeper__table-cell--type {
  position: sticky;
  left: 0;
  z-index: 2;
}
.keeper__table-row--ex .keeper__table-cell--type {
  background-color: #022b5d;
}
.keeper__table-row--ecodia .keeper__table-cell--type {
  background-color: #01a040;
}
.keeper__table-row--fresh .keeper__table-cell--type {
  background-color: #fff100;
}
.keeper__table-row--w-diamond .keeper__table-cell--type {
  background-color: #004193;
}
.keeper__table-row--diamond .keeper__table-cell--type {
  background-color: #bfa448;
}
.keeper__table-row--crystal .keeper__table-cell--type {
  background-color: #19a7d7;
}
.keeper__table-cell--type[role=cell] .keeper__table-cell-text {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .keeper__table-cell--type[role=cell] .keeper__table-cell-text {
    font-size: 1rem;
  }
}
.keeper__table-row--fresh .keeper__table-cell--type[role=cell] .keeper__table-cell-text {
  color: #222;
}

.keeper__table-cell-text {
  color: #2b2b2b;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4285714286;
  letter-spacing: 0.06em;
}

.service__item-content {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}

.service__section-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #fef001;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .service__section-title {
    font-size: 2rem;
  }
}
.service__section-title::before, .service__section-title::after {
  content: "";
  height: 3px;
  background-color: #fef001;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.service__section-title::before {
  margin-right: 16px;
}
@media screen and (min-width: 768px) {
  .service__section-title::before {
    margin-right: 28px;
  }
}
.service__section-title::after {
  margin-left: 16px;
}
@media screen and (min-width: 768px) {
  .service__section-title::after {
    margin-left: 28px;
  }
}

.service__courses-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .service__courses-list {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    gap: 0.9090909091%;
  }
}

.service__courses-item {
  border: 5px solid #fff;
  background-color: #f8eb22;
  padding-block: 18.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.service__courses-label {
  position: absolute;
  left: 3.1428571429%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #6972de;
  font-family: "Roboto", serif;
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .service__courses-label {
    font-size: min(3.75rem, 5.2083333333vw);
  }
}

.service__courses-name {
  color: #2b2b2b;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.1538461538;
  letter-spacing: 0.06em;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .service__courses-name {
    font-size: min(1.625rem, 2.6041666667vw);
  }
}
.service__courses-name small {
  display: block;
  margin-top: 1em;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
}
@media screen and (min-width: 768px) {
  .service__courses-name small {
    font-size: min(0.875rem, 1.3020833333vw);
  }
}

.service__options {
  padding: 40px 20px;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .service__options {
    padding: 40px 22.5px;
  }
}
.service__options--wash {
  background-color: #fef001;
}
.service__options--wash .service__section-title {
  color: #222;
}
.service__options--wash .service__section-title::before, .service__options--wash .service__section-title::after {
  background-color: #222;
}
.service__options--inside {
  background-color: #0188fe;
}
.service__options--inside .service__section-title {
  color: #fff;
}
.service__options--inside .service__section-title::before, .service__options--inside .service__section-title::after {
  background-color: #fff;
}
.service__options--outside {
  background-color: #fea603;
}
.service__options--outside .service__section-title {
  color: #fff;
}
.service__options--outside .service__section-title::before, .service__options--outside .service__section-title::after {
  background-color: #fff;
}

.service__options-list {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.875rem, 1fr));
  gap: 15px;
  justify-items: stretch;
}
@media screen and (min-width: 768px) {
  .service__options-list {
    margin-top: 42px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.service__options-item {
  background-color: #fff;
  border-radius: 5px;
  color: #2b2b2b;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.06em;
  aspect-ratio: 65/14;
  max-height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service__options-item {
    font-size: min(1.25rem, 2.0833333333vw);
    max-height: none;
  }
}

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

.company__staff-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 20px;
  padding: 20px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .company__staff-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1.9841269841%;
  }
}

.company__staff-thumb {
  aspect-ratio: 303/140;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .company__staff-thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 2 606px;
            flex: 0 2 606px;
  }
}
.company__staff-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .company__staff-body {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 372px;
            flex: 0 1 372px;
  }
}
.company__staff-body p {
  margin-top: 20px;
  color: #222;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .company__staff-body p {
    margin-top: 1.5em;
    font-size: min(1.25rem, 2.0833333333vw);
  }
}

.company__staff-name {
  padding: 8px;
  border-top: 3px solid #2566e6;
  border-bottom: 3px solid #2566e6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #222;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3846153846;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .company__staff-name {
    padding: 10px;
    border-width: 5px;
    font-size: min(1.625rem, 2.6041666667vw);
  }
}

.company__staff-name-en {
  color: #477fed;
  font-family: "Roboto", serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .company__staff-name-en {
    font-size: min(1.25rem, 2.0833333333vw);
  }
}

.footer {
  background-color: #fef001;
  padding-block: 16px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-block: 14px;
  }
}

@media screen and (min-width: 768px) {
  .footer__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__copyright {
  text-align: center;
}
.footer__copyright small {
  display: block;
  font-size: 0.625rem;
  line-height: 1.8;
  color: #222;
}

.footer__sns {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer__sns {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .footer__sns img {
    display: block;
    width: 100%;
  }
}

.page-top {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-top {
    display: block;
    position: fixed;
    right: 4.39238653%;
    bottom: 60px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 20;
  }
}
@media screen and (min-width: 768px) {
  .page-top.is-show {
    opacity: 1;
    visibility: visible;
  }
}
.page-top a {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #222;
}

.is-404 {
  padding-block: 90px 60px;
}
@media screen and (min-width: 768px) {
  .is-404 {
    padding-block: 180px 120px;
  }
}

.is-404__inner {
  max-width: calc(496px + 10.6666666667%);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .is-404__inner {
    max-width: 586px;
  }
}

.is-404__text-box {
  margin-top: 84px;
}
.is-404__text-box p {
  font-size: 0.9375rem;
  line-height: 2.3333333333;
}
@media screen and (min-width: 768px) {
  .is-404__text-box p {
    font-size: 1rem;
  }
}
.is-404__text-box p + p {
  margin-top: 2.3em;
}
.is-404__text-box a {
  text-decoration-line: underline;
  text-decoration-thickness: from-font;
}

.is-404__button {
  margin-top: 58px;
  text-align: center;
}
.is-404__button a {
  font-weight: 700;
  line-height: 1;
  color: #222;
  padding: 16px 41px;
  display: inline-block;
  border-radius: 24px;
  background-image: -webkit-gradient(linear, right top, left top, from(#fff), color-stop(50%, #fff), color-stop(50%, #fef001), to(#fef001));
  background-image: linear-gradient(to left, #fff 0%, #fff 50%, #fef001 50%, #fef001 100%);
  background-position: right;
  background-size: 200%;
  -webkit-transition: background-position 0.2s linear;
  transition: background-position 0.2s linear;
}
@media screen and (min-width: 768px) {
  .is-404__button a {
    font-size: 1.125rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .is-404__button a:hover {
    background-position: left;
  }
}