@charset "UTF-8";
/*============================================================
	Base
============================================================*/
html,
body {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  html,
  body {
    min-height: 100vh;
  }
}

html {
  font-family: YakuHanJP, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "palt" 0;
     -moz-font-feature-settings: "palt" 0;
          font-feature-settings: "palt" 0;
  color: #222;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 3.7333333333vw;
    -webkit-text-size-adjust: 100%;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1500px) {
  html {
    font-size: 1.25vw;
  }
}
html * {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
}
img[src$=".svg"] {
  max-width: 100%;
}

a,
a * {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: #222;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover,
a:hover img {
  opacity: 0.75;
}

header,
section,
footer {
  width: 100%;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
     -moz-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  background: #f6f6f6;
}

strong, dt {
  font-weight: inherit;
}

p {
  line-height: 1.8;
  text-align: justify;
}

/*============================================================
	Commmon
============================================================*/
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.inner {
  width: 76.389vw;
  max-width: 1100px;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .inner {
    width: 89.333%;
    max-width: 89.333vw;
  }
}
@media print, screen and (min-width: 1440px) {
  .inner {
    width: 80%;
    max-width: 80%;
  }
}

/*  headings
-------------------------------------------------*/
h2 {
  color: #18a1b1;
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 500;
  font-size: 3.5rem;
  margin-bottom: 1.111rem;
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 2.714rem;
    margin-bottom: 1.429rem;
  }
}

/*============================================================
	Layout
============================================================*/
/*  header
-------------------------------------------------*/
header {
  position: fixed;
  background: #f9f9f9;
  height: 5.556rem;
  padding: 1.389rem 0;
  left: 0;
  top: 0;
  z-index: 100;
}
@media only screen and (max-width: 767px) {
  header {
    height: 2.857rem;
    padding: 0 1.429rem;
  }
}
header .inner {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  header .inner {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media print, screen and (min-width: 768px) {
  header .inner .logo {
    width: 10.556rem;
    display: grid;
    place-content: center;
    border-right: solid 2px #222;
  }
  header .inner .logo img {
    width: 6.111rem;
  }
}
@media only screen and (max-width: 767px) {
  header .inner .logo {
    width: 5rem;
    position: relative;
    z-index: 100;
  }
}
@media print, screen and (min-width: 768px) {
  header .inner .hamburger {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  header .inner .hamburger {
    position: relative;
    display: block;
    cursor: pointer;
    position: relative;
    z-index: 100;
    width: 2.321rem;
    height: 0.536rem;
  }
  header .inner .hamburger::after {
    position: absolute;
    content: "MENU";
    font-family: "Kumbh Sans", sans-serif;
    font-size: 0.429rem;
    text-align: center;
    bottom: -0.714rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  header .inner .hamburger span {
    position: absolute;
    width: 100%;
    height: 1px;
    background: #222;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  header .inner .hamburger span:first-child {
    top: 0;
  }
  header .inner .hamburger span:last-child {
    bottom: 0;
  }
  header .inner .hamburger.active span:first-child {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(20deg);
            transform: translate(-50%, -50%) rotate(20deg);
  }
  header .inner .hamburger.active span:last-child {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-20deg);
            transform: translate(-50%, -50%) rotate(-20deg);
  }
}
@media print, screen and (min-width: 768px) {
  header .inner nav {
    width: calc(100% - 10.556rem);
    padding-left: 3.889rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  header .inner nav {
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding-top: 7.143rem;
    z-index: 99;
  }
  header .inner nav.open {
    opacity: 1;
    visibility: visible;
  }
}
header .inner nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.889rem;
}
@media only screen and (max-width: 767px) {
  header .inner nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.5rem;
  }
}
header .inner nav ul li {
  font-family: "Kumbh Sans", sans-serif;
}
@media only screen and (max-width: 767px) {
  header .inner nav ul li {
    font-size: 1.286rem;
  }
}
header .inner nav .btn__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.667rem;
}
@media only screen and (max-width: 767px) {
  header .inner nav .btn__wrap {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 2.5rem;
  }
}
header .inner nav .btn__wrap a {
  display: grid;
  place-content: center;
  width: 9.444rem;
  height: 2.778rem;
  font-weight: 600;
}
header .inner nav .btn__wrap a:first-child {
  background: #18a1b1;
  color: #fff;
}
header .inner nav .btn__wrap a:last-child {
  background: #eee;
}
header.is_fixed {
  position: fixed;
  -webkit-animation: slideDown 0.3s ease-in-out;
          animation: slideDown 0.3s ease-in-out;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
header.is_fixed.no_blur {
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
/*  mv
-------------------------------------------------*/
@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoom {
  0% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes move-01 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(7deg);
            transform: rotate(7deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes move-01 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(7deg);
            transform: rotate(7deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@-webkit-keyframes move-02 {
  0% {
    -webkit-transform: rotate(7deg);
            transform: rotate(7deg);
  }
  50% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(7deg);
            transform: rotate(7deg);
  }
}
@keyframes move-02 {
  0% {
    -webkit-transform: rotate(7deg);
            transform: rotate(7deg);
  }
  50% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(7deg);
            transform: rotate(7deg);
  }
}
@-webkit-keyframes move-03 {
  0% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}
@keyframes move-03 {
  0% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}
@-webkit-keyframes move-04 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes move-04 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
#mv {
  position: relative;
  margin-top: 5.556rem;
}
@media only screen and (max-width: 767px) {
  #mv {
    margin-top: 2.857rem;
  }
}
#mv .bg__img {
  position: absolute;
  inset: 0;
  height: 48.889rem;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #mv .bg__img {
    height: 39.286rem;
  }
}
#mv .bg__img figure {
  position: absolute;
  z-index: 2;
}
#mv .bg__img figure img {
  opacity: 0.25;
}
#mv .bg__img figure:first-child {
  width: 125%;
  left: -7%;
  top: 0;
}
@media only screen and (max-width: 767px) {
  #mv .bg__img figure:first-child {
    width: 153%;
    left: -20%;
  }
}
#mv .bg__img figure:first-child img {
  -webkit-animation: move-01 10s infinite;
          animation: move-01 10s infinite;
}
#mv .bg__img figure:nth-child(2) {
  width: 110%;
  left: -5%;
  top: 13.333rem;
}
@media only screen and (max-width: 767px) {
  #mv .bg__img figure:nth-child(2) {
    width: 136%;
    top: 7.857rem;
    left: -15%;
  }
}
#mv .bg__img figure:nth-child(2) img {
  -webkit-animation: move-02 10s infinite;
          animation: move-02 10s infinite;
}
#mv .bg__img figure:nth-child(3) {
  width: 130%;
  left: -15%;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  #mv .bg__img figure:nth-child(3) {
    width: 150%;
    left: -25%;
    bottom: 8.571rem;
  }
}
#mv .bg__img figure:nth-child(3) img {
  -webkit-animation: move-01 10s infinite;
          animation: move-01 10s infinite;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
#mv .bg__img figure:nth-child(4) {
  width: 130%;
  left: -15%;
  bottom: -10%;
}
@media only screen and (max-width: 767px) {
  #mv .bg__img figure:nth-child(4) {
    width: 150%;
    left: -25%;
    bottom: 7.143rem;
  }
}
#mv .bg__img figure:nth-child(4) img {
  -webkit-animation: move-03 7s infinite;
          animation: move-03 7s infinite;
}
#mv .bg__img figure:last-child {
  width: 130%;
  left: -15%;
  bottom: -15%;
}
@media only screen and (max-width: 767px) {
  #mv .bg__img figure:last-child {
    width: 150%;
    left: -25%;
    bottom: 5rem;
  }
}
#mv .bg__img figure:last-child img {
  -webkit-animation: move-04 7s infinite;
          animation: move-04 7s infinite;
}
#mv .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 48.889rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #mv .swiper-wrapper .swiper-slide {
    height: 39.286rem;
  }
}
#mv .swiper-wrapper .swiper-slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  inset: 0;
  -webkit-transition: all;
  transition: all;
}
@media only screen and (max-width: 767px) {
  #mv .swiper-wrapper .swiper-slide img {
    width: 192%;
    margin-left: -92%;
  }
}
#mv .swiper-wrapper .swiper-slide[class*=-active] img {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-animation: zoom 5s linear;
          animation: zoom 5s linear;
}
#mv .inner {
  position: absolute;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 11.111rem 0 16.111rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  #mv .inner {
    padding: 12.857rem 0 8.214rem;
  }
}
#mv .inner h1 {
  width: 37.778rem;
}
@media only screen and (max-width: 767px) {
  #mv .inner h1 {
    width: 20.357rem;
  }
}
#mv .inner h2 {
  width: 25rem;
  margin-left: auto;
  margin-right: 6.667rem;
}
@media only screen and (max-width: 767px) {
  #mv .inner h2 {
    width: 13.571rem;
    margin-right: 0;
  }
}

/*  movie
-------------------------------------------------*/
.movie_area {
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding-top: 4.444rem;
}
@media only screen and (max-width: 767px) {
  .movie_area {
    padding-top: 1.429rem;
  }
}
.movie_area .wrap {
  position: relative;
}
.movie_area .wrap::before {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.88);
  width: 120%;
  height: 100%;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%) skewY(-6deg);
          transform: translateX(-50%) skewY(-6deg);
  z-index: 2;
}
.movie_area .wrap .inner {
  position: relative;
  z-index: 3;
  padding: 7.222rem 0 5.556rem;
}
@media only screen and (max-width: 767px) {
  .movie_area .wrap .inner {
    padding-left: 3.333vw;
    padding: 6.786rem 0 1.071rem 3.333vw;
  }
}
.movie_area .wrap .inner h2 {
  width: 27.389rem;
  margin-top: -11.111rem;
  margin-bottom: 2.778rem;
}
@media only screen and (max-width: 767px) {
  .movie_area .wrap .inner h2 {
    width: 19.643rem;
    margin-top: -8.214rem;
    margin-bottom: 1.786rem;
  }
}
.movie_area .wrap .inner h2 + .big {
  font-size: 1.1rem;
  font-weight: 600;
}
.movie_area .wrap .inner .movie__wrap {
  width: 30rem;
  margin: 2.778rem auto 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .movie_area .wrap .inner .movie__wrap {
    width: 22.143rem;
    margin: 1.786rem 0 0;
  }
}
.movie_area .wrap .inner .movie__wrap .movie {
  width: 100%;
  aspect-ratio: 9/5;
  background: #ccc;
  position: relative;
  -webkit-box-shadow: 3px 5px 6px rgba(34, 34, 34, 0.3);
          box-shadow: 3px 5px 6px rgba(34, 34, 34, 0.3);
  position: relative;
}
.movie_area .wrap .inner .movie__wrap .movie::after {
  position: absolute;
  content: "";
  width: 5.167rem;
  height: 12.889rem;
  background: url(../img/movie-txt.png) no-repeat right top/contain;
  top: 0;
  right: -5.167rem;
}
@media only screen and (max-width: 767px) {
  .movie_area .wrap .inner .movie__wrap .movie::after {
    width: 1.429rem;
    height: 11.786rem;
    background: url(../img/movie-txt_sp.png) no-repeat right top/contain;
    right: -1.429rem;
  }
}
.movie_area .wrap .inner .movie__wrap .movie iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}
.movie_area .wrap .inner .movie__wrap p {
  margin-top: 1em;
}
.movie_area .bg__img {
  overflow: hidden;
  height: 25rem;
}
@media only screen and (max-width: 767px) {
  .movie_area .bg__img {
    height: 8.929rem;
  }
}
.movie_area .bg__img figure {
  position: absolute;
  width: 142%;
  left: -20%;
  top: 13.333rem;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .movie_area .bg__img figure {
    width: 173%;
    left: -53%;
    top: 10.714rem;
  }
}
.movie_area .bg__img figure img {
  opacity: 0.25;
  -webkit-animation: move-01 15s infinite;
          animation: move-01 15s infinite;
}
.movie_area .scroll {
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 300;
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 11.111rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-bottom: 4.444rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 0.889rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  overflow: hidden;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .movie_area .scroll {
    display: none;
  }
}
.movie_area .scroll::before, .movie_area .scroll::after {
  position: absolute;
  content: "";
  width: 0.056rem;
  height: 3.889rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}
.movie_area .scroll::before {
  background: rgba(34, 34, 34, 0.1);
}
.movie_area .scroll::after {
  background: #222;
  -webkit-animation: scrollDown 1.5s cubic-bezier(1, 0, 0, 1) infinite;
          animation: scrollDown 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
.movie_area.gai {
  padding-top: 9.444rem;
}
@media only screen and (max-width: 767px) {
  .movie_area.gai {
    padding-top: 3.571rem;
  }
}
@media only screen and (max-width: 767px) {
  .movie_area.gai .wrap .inner {
    padding-bottom: 3.571rem;
  }
}
.movie_area.gai .wrap .inner h2 {
  width: auto;
  font-family: YakuHanJP, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 2.778rem;
  font-weight: 600;
  margin-top: -6.667rem;
}
@media only screen and (max-width: 767px) {
  .movie_area.gai .wrap .inner h2 {
    font-size: 1.786rem;
  }
}
.movie_area.gai .wrap .inner p strong {
  font-weight: 600;
}
.movie_area.gai .wrap .inner .movie__wrap p {
  margin: 0 0 1em;
}
.movie_area.gai .bg__img {
  height: 10rem;
}
@media only screen and (max-width: 767px) {
  .movie_area.gai .bg__img {
    height: 5.357rem;
  }
}

@-webkit-keyframes scrollDown {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes scrollDown {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
/*  ABOUT US
-------------------------------------------------*/
#about {
  position: relative;
  z-index: 4;
  margin-top: -13.889rem;
  padding: 15rem 0 5.556rem;
  background: url(../img/bg_about.webp) no-repeat center top/cover;
}
@media only screen and (max-width: 767px) {
  #about {
    margin-top: -4.286rem;
    padding: 7.143rem 0 2.143rem;
    background: url(../img/bg_about_sp.webp) no-repeat center top/cover;
  }
}
@media print, screen and (min-width: 768px) {
  #about .inner {
    padding: 0 1.389rem;
  }
}
@media only screen and (max-width: 767px) {
  #about .inner h2,
  #about .inner > p {
    padding: 0 0.893rem;
  }
}
#about .inner > p {
  color: #fff;
  margin-bottom: 1.667rem;
}
@media only screen and (max-width: 767px) {
  #about .inner > p {
    margin-bottom: 1.429rem;
  }
}
#about .inner ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.111rem;
}
@media only screen and (max-width: 767px) {
  #about .inner ol {
    grid-template-columns: 100%;
    gap: 1.071rem;
  }
}
#about .inner ol li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
     -moz-box-orient: horizontal;
     -moz-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.8);
}
#about .inner ol li h3 {
  width: 5rem;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 3.889rem;
  font-weight: 100;
  color: #18a1b1;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media only screen and (max-width: 767px) {
  #about .inner ol li h3 {
    width: 2.679rem;
    font-size: 2.857rem;
  }
}
#about .inner ol li dl {
  width: calc(100% - 5rem);
  height: 100%;
  padding: 1.111rem 0 1.667rem 3.889rem;
}
@media only screen and (max-width: 767px) {
  #about .inner ol li dl {
    width: calc(100% - 2.679rem);
    padding: 1.607rem 0 1.786rem 2.679rem;
  }
}
#about .inner ol li dl dt {
  width: calc(100% + 3.889rem);
  height: 5.833rem;
  padding-left: 5rem;
  margin-left: -3.889rem;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 1.389rem;
  font-weight: 600;
  line-height: 1.2;
  padding-top: 1.389rem;
  margin-bottom: 1.111rem;
}
@media only screen and (max-width: 767px) {
  #about .inner ol li dl dt {
    width: calc(100% + 2.679rem);
    height: 4.643rem;
    padding-left: 3.571rem;
    margin-left: -2.679rem;
    font-size: 1.286rem;
    padding-top: 0.536rem;
    margin-bottom: 0.714rem;
  }
}
#about .inner ol li dl dd {
  text-align: justify;
  line-height: 1.8;
}
#about .inner ol li:nth-child(1) dl dt {
  background-image: url(../img/about_num-1.svg);
}
#about .inner ol li:nth-child(2) dl dt {
  background-image: url(../img/about_num-2.svg);
}
#about .inner ol li:nth-child(3) dl dt {
  background-image: url(../img/about_num-3.svg);
}
#about .inner ol li:nth-child(4) dl dt {
  background-image: url(../img/about_num-4.svg);
}

/*  会員登録
-------------------------------------------------*/
.register {
  background: url(../img/bg_register.jpg) no-repeat center top/cover;
  padding: 5.556rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .register {
    background: url(../img/bg_register_sp.jpg) no-repeat center top/cover;
    padding: 1.786rem 0;
  }
}
.register p {
  color: #fff;
  font-size: 1.667rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .register p {
    font-size: 1.143rem;
  }
}
.register .btn {
  width: 32.222rem;
  height: 7.5rem;
  display: grid;
  place-content: center;
  font-size: 1.833rem;
  font-weight: 600;
  background: -webkit-linear-gradient(304deg, #fff 0%, #18a1b1 100%);
  background: linear-gradient(146deg, #fff 0%, #18a1b1 100%);
}
@media only screen and (max-width: 767px) {
  .register .btn {
    width: 15.893rem;
    height: 4.107rem;
    font-size: 1.786rem;
  }
}

/*  R.N.Rオークションの詳細はこちら
-------------------------------------------------*/
#auction {
  padding: 5.556rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  #auction {
    padding: 2.5rem 0;
  }
}
#auction h3 {
  font-size: 1.667rem;
  font-weight: 600;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #auction h3 {
    font-size: 1.357rem;
  }
}
#auction > a {
  width: 61.667rem;
  margin-block: 2.222rem;
}
@media only screen and (max-width: 767px) {
  #auction > a {
    width: 93.333vw;
    margin-block: 1.429rem;
  }
}
#auction p {
  font-size: 1.667rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  #auction p {
    font-size: 1.143rem;
  }
}
#auction p a {
  text-decoration: underline;
}
#auction small {
  display: block;
  margin-top: 1em;
  font-size: 1rem;
}
@media only screen and (max-width: 767px) {
  #auction small {
    font-size: 0.571rem;
  }
}

/*  PRICE
-------------------------------------------------*/
#price {
  background: #fff;
  padding: 5rem 0;
}
@media only screen and (max-width: 767px) {
  #price {
    padding: 2.143rem 0;
  }
}
@media print, screen and (min-width: 768px) {
  #price .inner {
    width: 66.667vw;
    max-width: 960px;
  }
}
@media only screen and (max-width: 767px) {
  #price .inner h2,
  #price .inner > p {
    padding: 0 0.893rem;
  }
}
#price .inner > p {
  margin-bottom: 1.667rem;
}
@media only screen and (max-width: 767px) {
  #price .inner > p {
    margin-bottom: 1.429rem;
  }
}
#price .inner ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.222rem;
}
@media only screen and (max-width: 767px) {
  #price .inner ul {
    gap: 1.786rem;
  }
}
#price .inner ul li h3 {
  background: #18a1b1;
  color: #fff;
  text-align: center;
  font-weight: 600;
  display: grid;
  place-content: center;
}
@media print, screen and (min-width: 768px) {
  #price .inner ul li:not(:last-child) {
    display: grid;
    grid-template-columns: 11.111rem 40.278rem;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media print, screen and (min-width: 768px) {
  #price .inner ul li:not(:last-child) h3 {
    font-size: 1.389rem;
    width: 11.111rem;
    height: 11.111rem;
    border-radius: 50%;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 767px) {
  #price .inner ul li:not(:last-child) h3 {
    font-size: 1.071rem;
    border-radius: 0.5rem 0.5rem 0 0;
    height: 2.143rem;
  }
}
#price .inner ul li:not(:last-child) h3 small {
  font-size: 1.111rem;
}
@media only screen and (max-width: 767px) {
  #price .inner ul li:not(:last-child) h3 small {
    font-size: 0.857rem;
  }
}
#price .inner ul li:not(:last-child) figure {
  width: 40.278rem;
  height: 10.556rem;
  border: solid 0.278rem #18a1b1;
  border-radius: 1.111rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #price .inner ul li:not(:last-child) figure {
    width: 100%;
    height: 6.786rem;
    border-width: 0.107rem;
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
  }
}
#price .inner ul li:not(:last-child) figure img {
  position: absolute;
  width: 34.444rem;
  left: 4.167rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  #price .inner ul li:not(:last-child) figure img {
    width: 19.643rem;
    left: 2.679rem;
  }
}
#price .inner ul li:not(:last-child) figure figcaption {
  position: absolute;
  font-size: 0.778rem;
  left: 1.667rem;
  bottom: -2em;
}
@media only screen and (max-width: 767px) {
  #price .inner ul li:not(:last-child) figure figcaption {
    font-size: 0.571rem;
    left: 0;
  }
}
#price .inner ul li:first-child figure img {
  width: 28.778rem;
}
@media only screen and (max-width: 767px) {
  #price .inner ul li:first-child figure img {
    width: 17.857rem;
  }
}
@media print, screen and (min-width: 768px) {
  #price .inner ul li:last-child {
    display: grid;
    grid-template-columns: 22.222rem auto;
    gap: 0;
  }
}
@media print, screen and (min-width: 768px) {
  #price .inner ul li:last-child h3 {
    height: 3.056rem;
    font-size: 1.111rem;
    border-radius: 0.833rem 0 0 0.833rem;
  }
}
@media only screen and (max-width: 767px) {
  #price .inner ul li:last-child h3 {
    font-size: 1.071rem;
    border-radius: 0.5rem 0.5rem 0 0;
    height: 2.143rem;
  }
}
#price .inner ul li:last-child dl {
  border: solid 0.278rem #18a1b1;
  border-radius: 0 0.833rem 0.833rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 3.889rem;
}
@media only screen and (max-width: 767px) {
  #price .inner ul li:last-child dl {
    border-width: 0.107rem;
    border-radius: 0 0 0.5rem 0.5rem;
    padding: 1.071rem 2.5rem;
  }
}
#price .inner ul li:last-child dl dt {
  font-size: 1.111rem;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  #price .inner ul li:last-child dl dt {
    font-size: 0.821rem;
  }
}
#price .inner ul li:last-child dl dd {
  width: 8.056rem;
}
@media only screen and (max-width: 767px) {
  #price .inner ul li:last-child dl dd {
    width: 7.143rem;
  }
}

/*  merit
-------------------------------------------------*/
#merit {
  padding: 5.556rem 0;
}
@media only screen and (max-width: 767px) {
  #merit {
    padding: 3.214rem 0 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  #merit .inner {
    padding-left: 3.333vw;
  }
}
@media print, screen and (min-width: 768px) {
  #merit .inner .container {
    width: 78.182%;
    max-width: 860px;
    margin-inline: auto;
  }
}
#merit .inner .container ul li {
  position: relative;
  font-size: 2.222rem;
  font-weight: 600;
  padding-left: 3.889rem;
  margin-bottom: 1.667rem;
}
@media only screen and (max-width: 767px) {
  #merit .inner .container ul li {
    font-size: 1.071rem;
    padding-left: 1.786rem;
    margin-bottom: 0.893rem;
  }
}
#merit .inner .container ul li::before {
  position: absolute;
  content: "";
  width: 2.944rem;
  height: 2.389rem;
  left: 0;
  bottom: 0;
  background: url(../img/icon_check.png) no-repeat left center/contain;
}
@media only screen and (max-width: 767px) {
  #merit .inner .container ul li::before {
    width: 1.5rem;
    height: 1.143rem;
  }
}
#merit .inner .container ul li strong {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #18a1b1));
  background: -webkit-linear-gradient(transparent 70%, #18a1b1 70%);
  background: linear-gradient(transparent 70%, #18a1b1 70%);
}
#merit .inner .container small {
  display: block;
  color: #18a1b1;
  font-size: 1.389rem;
  font-weight: 600;
  text-align: center;
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  #merit .inner .container small {
    font-size: 0.786rem;
  }
}

/*  破格のシステム利用料
-------------------------------------------------*/
#system {
  position: relative;
}
#system .inner {
  position: absolute;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#system .inner h3,
#system .inner p {
  color: #fff;
  font-weight: 600;
  text-align: center;
}
#system .inner h3 {
  font-size: 2.222rem;
}
@media only screen and (max-width: 767px) {
  #system .inner h3 {
    font-size: 1.071rem;
  }
}
#system .inner h3 strong {
  display: block;
  font-size: 3.889rem;
  color: #18a1b1;
  -webkit-text-stroke: 5px #fff;
  paint-order: stroke;
  margin-top: 0.2em;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #system .inner h3 strong {
    font-size: 1.893rem;
    -webkit-text-stroke: 3px #fff;
  }
}
#system .inner h3 strong::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.278rem;
  background: #18a1b1;
  bottom: -0.556rem;
  left: 0;
}
@media only screen and (max-width: 767px) {
  #system .inner h3 strong::after {
    height: 0.179rem;
    bottom: -0.357rem;
  }
}
#system .inner p {
  font-size: 2.778rem;
  line-height: 1.4;
  margin-top: 0.5em;
}
@media only screen and (max-width: 767px) {
  #system .inner p {
    font-size: 1.357rem;
  }
}

/*  How to Apply
-------------------------------------------------*/
#apply {
  padding: 5.556rem 0;
}
@media only screen and (max-width: 767px) {
  #apply {
    padding: 3.571rem 0;
  }
}
@media print, screen and (min-width: 768px) {
  #apply .inner {
    width: 66.667vw;
    max-width: 960px;
  }
}
@media only screen and (max-width: 767px) {
  #apply .inner h2,
  #apply .inner > p {
    padding: 0 0.893rem;
  }
}
#apply .inner > p {
  margin-bottom: 1.667rem;
}
@media only screen and (max-width: 767px) {
  #apply .inner > p {
    margin-bottom: 1.429rem;
  }
}
@media print, screen and (min-width: 768px) {
  #apply .inner .container {
    width: 89.5833333333%;
    max-width: 860px;
    margin-inline: auto;
  }
}
#apply .inner .container ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
#apply .inner .container ul li {
  font-weight: 600;
  line-height: 1.4;
  margin: 0.556rem 0 0 0.833rem;
  padding: 0.556rem 0 0 0.833rem;
  border-left: solid 1px #222;
}
@media only screen and (max-width: 767px) {
  #apply .inner .container ul li {
    font-size: 0.679rem;
    margin: 0.357rem 0 0 0.357rem;
    padding: 0.357rem 0 0 0.357rem;
  }
}
#apply .inner .container a {
  display: grid;
  place-content: center;
  width: 23.889rem;
  height: 3.889rem;
  background: #fff;
  border: solid 0.278rem #18a1b1;
  border-radius: 1.944rem;
  font-size: 1.667rem;
  font-weight: 600;
  color: #18a1b1;
  margin: 2.778rem auto 0;
}
@media only screen and (max-width: 767px) {
  #apply .inner .container a {
    width: 20rem;
    height: 3.214rem;
    border-radius: 1.607rem;
    font-size: 1.357rem;
    border-width: 0.107rem;
    margin: 1.786rem auto 0;
  }
}

/*  FAQ
-------------------------------------------------*/
#faq {
  padding-bottom: 5.556rem;
}
@media only screen and (max-width: 767px) {
  #faq {
    padding-bottom: 3.571rem;
  }
}
#faq .inner h2,
#faq .inner > p {
  padding-left: 3.889rem;
}
@media only screen and (max-width: 767px) {
  #faq .inner h2,
  #faq .inner > p {
    padding-left: 0.893rem;
  }
}
#faq .inner > p {
  margin-bottom: 1.667rem;
}
@media only screen and (max-width: 767px) {
  #faq .inner > p {
    margin-bottom: 1.429rem;
  }
}
#faq .inner ul {
  background: #efefef;
  padding: 2.222rem 6.667rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.222rem;
}
@media only screen and (max-width: 767px) {
  #faq .inner ul {
    padding: 0.893rem;
    gap: 0.893rem;
  }
}
#faq .inner ul li {
  background: #fff;
}
#faq .inner ul li dl {
  width: 100%;
}
#faq .inner ul li dl dt {
  border-bottom: solid 1px #18a1b1;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  #faq .inner ul li dl dt {
    height: 2.778rem;
    line-height: 2.778rem;
    padding-left: 3.333rem;
  }
}
@media only screen and (max-width: 767px) {
  #faq .inner ul li dl dt {
    padding: 0.893rem 0.893rem 0.893rem 2.679rem;
    line-height: 1.4;
  }
}
#faq .inner ul li dl dt::before {
  position: absolute;
  content: "Q";
  background: #18a1b1;
  color: #fff;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 1.389rem;
  display: grid;
  place-content: center;
  width: 2.778rem;
  height: 100%;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 767px) {
  #faq .inner ul li dl dt::before {
    width: 1.786rem;
    font-size: 1.071rem;
  }
}
#faq .inner ul li dl dd {
  position: relative;
  padding: 1.389rem 1.389rem 1.389rem 3.333rem;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  #faq .inner ul li dl dd {
    padding: 0.893rem 0.893rem 0.893rem 2.679rem;
  }
}
#faq .inner ul li dl dd::before {
  position: absolute;
  content: "A";
  color: #18a1b1;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 1.389rem;
  left: 0.833rem;
  top: 1.111rem;
}
@media only screen and (max-width: 767px) {
  #faq .inner ul li dl dd::before {
    font-size: 1.071rem;
    left: 0.536rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

/*  contact
-------------------------------------------------*/
#contact {
  background: #e5e8e7;
  padding: 2.778rem 0;
}
@media only screen and (max-width: 767px) {
  #contact {
    padding: 1.429rem 0;
  }
}
#contact h3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.222rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.667rem;
}
@media only screen and (max-width: 767px) {
  #contact h3 {
    font-size: 1.143rem;
    margin-bottom: 1.071rem;
  }
}
#contact h3 span {
  color: #18a1b1;
  font-size: 1rem;
  margin-top: 0.5em;
  border-top: solid 3px #18a1b1;
  padding-top: 0.5em;
}
@media only screen and (max-width: 767px) {
  #contact h3 span {
    font-size: 0.679rem;
  }
}
#contact .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (min-width: 768px) {
  #contact .inner {
    width: 59.028vw;
    max-width: 850px;
  }
}
@media only screen and (max-width: 767px) {
  #contact .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#contact .inner .btn {
  display: grid;
  place-content: center;
  width: 17.778rem;
  height: 4.167rem;
  border-radius: 2.083rem;
  background: #222;
  color: #fff;
  font-size: 1.222rem;
  font-weight: 600;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #contact .inner .btn {
    width: 14.643rem;
    height: 2.679rem;
    border-radius: 1.339rem;
    font-size: 1.143rem;
    margin-bottom: 1.071rem;
  }
}
#contact .inner .tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #18a1b1;
  font-weight: 600;
}
#contact .inner .tel a {
  font-family: "Kumbh Sans", sans-serif;
  color: #18a1b1;
  margin-bottom: 0.3em;
  letter-spacing: 0.03em;
}
@media print, screen and (min-width: 768px) {
  #contact .inner .tel a {
    font-size: 1.944rem;
    pointer-events: none;
  }
}
@media only screen and (max-width: 767px) {
  #contact .inner .tel a {
    font-size: 1.571rem;
  }
}
#contact .inner .tel span {
  font-size: 1.111rem;
}
@media only screen and (max-width: 767px) {
  #contact .inner .tel span {
    font-size: 0.786rem;
  }
}

/*  footer
-------------------------------------------------*/
footer {
  background: #18a1b1;
  color: #fff;
  padding: 1.111rem 0;
}
@media only screen and (max-width: 767px) {
  footer {
    padding: 0.714rem 0;
  }
}
footer .inner .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  footer .inner .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.357rem;
  }
}
footer .inner .container ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
}
@media only screen and (max-width: 767px) {
  footer .inner .container ul {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
footer .inner .container ul li {
  font-size: 0.889rem;
}
@media only screen and (max-width: 767px) {
  footer .inner .container ul li {
    font-size: 0.786rem;
  }
}
footer .inner .container ul li a {
  color: white;
}
footer .inner .container small {
  font-size: 0.778rem;
}
@media only screen and (max-width: 767px) {
  footer .inner .container small {
    font-size: 0.571rem;
  }
}

/*  運営会社
-------------------------------------------------*/
#company {
  margin-top: 5.556rem;
  padding: 5.556rem 0;
}
@media only screen and (max-width: 767px) {
  #company {
    margin-top: 2.857rem;
    padding: 2.857rem 0;
  }
}
#company .inner h2 {
  margin-bottom: 2.778rem;
}
@media only screen and (max-width: 767px) {
  #company .inner h2 {
    margin-bottom: 1.786rem;
  }
}
#company .inner dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  border-bottom: dotted 1px #18a1b1;
}
@media print, screen and (min-width: 768px) {
  #company .inner dl {
    width: 44.444rem;
    margin-inline: auto;
    padding-bottom: 1.111rem;
  }
}
@media only screen and (max-width: 767px) {
  #company .inner dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 0.714rem;
  }
}
#company .inner dl:not(:last-child) {
  margin-bottom: 1.667rem;
}
@media only screen and (max-width: 767px) {
  #company .inner dl:not(:last-child) {
    margin-bottom: 1.071rem;
  }
}
#company .inner dl dt {
  color: #18a1b1;
  font-weight: 500;
}
@media print, screen and (min-width: 768px) {
  #company .inner dl dt {
    width: 30%;
  }
}
@media only screen and (max-width: 767px) {
  #company .inner dl dt {
    margin-bottom: 0.5em;
  }
}
@media print, screen and (min-width: 768px) {
  #company .inner dl dd {
    width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  #company .inner dl dd {
    line-height: 1.4;
  }
}