@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Shippori+Mincho+B1:wght@400;500;600;700;800&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
/* スマホ/PCブレイクポイント800px */
@media screen and (max-width: 799px) {
  .pc {
    display: none !important;
  }
  html, body {
    color: #5c5c5c;
    font-size: 13px;
    line-height: 20px;
    font-family: "Noto Sans JP", sans-serif;
    background-color: #F7F7F7;
    overflow-x: hidden;
  }
}
@media screen and (min-width: 800px) {
  .pc {
    display: block;
  }
  .sp {
    display: none !important;
  }
  html, body {
    color: #5c5c5c;
    font-size: 16px;
    line-height: 24px;
    font-family: "Noto Sans JP", sans-serif;
    background-color: #F7F7F7;
    overflow-x: hidden;
  }
}
body {
  visibility: visible !important;
}

a:hover {
  opacity: 0.7;
}

/* pxを受け取ってremを返す（初期はスマホ） */
/* 文字列を削除する関数 */
@font-face {
  font-family: "Jost-ExtraLight";
  src: url(/common/font/Jost-ExtraLight.ttf);
}
@font-face {
  font-family: "Jost-Light";
  src: url(/common/font/Jost-Light.ttf);
}
@font-face {
  font-family: "Jost-Medium";
  src: url(/common/font/Jost-Medium.ttf);
}
.modal-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 100;
}

.modal-content {
  position: fixed;
  width: 90%;
  height: 80%;
  max-width: 600px;
  padding: 2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #5c5c5c;
  background: #fff;
  overflow-y: scroll;
  z-index: 100;
}
.modal-content h3 {
  margin-bottom: 2.3076923077rem;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}
.modal-content dl {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 0.3846153846rem;
  margin-bottom: 1.5384615385rem;
}
.modal-content dl dt {
  font-weight: normal;
}
.modal-content dl dd {
  text-align: right;
}
.modal-content .modal-close-btn {
  position: relative;
  top: -3.6923076923rem;
  right: 0.7692307692rem;
}
.modal-content .modal-close-btn::before, .modal-content .modal-close-btn::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 1.5384615385rem;
  right: 0;
  background-color: #5C5C5C;
  display: block;
}
.modal-content .modal-close-btn::before {
  transform: rotate(45deg);
}
.modal-content .modal-close-btn::after {
  transform: rotate(-45deg);
}

.container {
  padding: 0 2.3076923077rem;
  margin: 0 auto;
  max-width: 1033px;
}

.commonheader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.9rem;
  display: flex;
  align-items: center;
  z-index: 100;
}
.commonheader__vacancy {
  padding: 0.4rem 1rem;
  right: 5rem;
  position: absolute;
  font-size: 1rem;
  color: #fff;
  border: none;
  background-color: #bda67c;
}
.commonheader__menutrigger {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  width: 30px;
  height: 21px;
  display: inline-block;
  background: none;
  border: none;
  appearance: none;
  transition: all 0.4s;
  box-sizing: border-box;
  z-index: 100;
  cursor: pointer;
}
@media screen and (min-width: 800px) {
  .commonheader__menutrigger {
    right: 1.6rem;
  }
}
.commonheader__menutrigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  display: inline-block;
  background-color: #575757;
  transition: all 0.4s;
  box-sizing: border-box;
}
.commonheader__menutrigger span:nth-of-type(1) {
  top: 0;
}
.commonheader__menutrigger span:nth-of-type(2) {
  top: 10px;
}
.commonheader__menutrigger span:nth-of-type(3) {
  bottom: 0;
}
.commonheader__menutrigger.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-315deg);
  background-color: #575757;
}
.commonheader__menutrigger.active span:nth-of-type(2) {
  opacity: 0;
}
.commonheader__menutrigger.active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(315deg);
  background-color: #575757;
}
.commonheader__menutrigger.js-menuWhite span {
  background-color: #fff;
}
.js-changeColor .commonheader__menutrigger.js-menuWhite span {
  background-color: #575757;
}
.commonheader nav {
  position: fixed;
  top: 0;
  right: -100%;
  padding: 4rem 2rem 2rem;
  height: 100%;
  width: 100%;
  max-width: 400px;
  overflow-y: scroll;
  background-color: #E4E4E4;
  transition: all 0.35s;
}
.commonheader nav::-webkit-scrollbar {
  width: 10px;
}
.commonheader nav::-webkit-scrollbar-track {
  background: #E4E4E4;
}
@media screen and (min-width: 600px) {
  .commonheader nav {
    padding: 8rem 2rem 2rem;
  }
}
@media screen and (min-width: 800px) {
  .commonheader nav {
    padding: 6rem 2rem 2rem;
    font-size: 0.8rem;
  }
}
.commonheader nav.active {
  right: 0;
}
.commonheader nav a {
  color: #5c5c5c;
  display: block;
}
.commonheader__menulist {
  width: 100%;
  margin-top: 2rem;
  border-bottom: 1px solid #707070;
}
.commonheader__menulist li {
  padding: 1rem;
  border-top: 1px solid #707070;
}
@media screen and (min-width: 800px) {
  .commonheader__menulist li {
    padding: 0.8rem;
  }
}
.commonheader__airplane {
  display: block;
  padding: 0.8rem;
  width: 100%;
  text-align: center;
  border: 1px solid #707070;
  background-color: inherit;
}
.commonheader__airplane.commonheader__airplane {
  margin-top: 0.6rem;
}
.commonheader__logo {
  width: 10.1538461538rem;
}
@media screen and (min-width: 800px) {
  .commonheader__logo {
    position: relative;
    width: 13.8125rem;
    left: 1.25rem;
  }
}
.commonheader__logo svg {
  vertical-align: bottom;
  width: 100%;
  fill: #5C5C5C;
}
.commonheader__logo.js-menuWhite svg {
  fill: #fff;
}
.js-changeColor .commonheader__logo.js-menuWhite svg {
  fill: #575757;
}

.commonfooter {
  padding: 2.4rem 0;
  color: #fff;
  background-color: #4D4D4D;
}
.commonfooter a {
  color: #fff;
  font-size: 1rem;
}
@media screen and (min-width: 800px) {
  .commonfooter a {
    font-size: 0.9375rem;
  }
}
.commonfooter__logo {
  margin-bottom: 1.4rem;
}
.commonfooter__address {
  margin-bottom: 1.4rem;
}
.commonfooter__sns {
  display: flex;
  margin: 0 -0.4rem 1.4rem;
}
.commonfooter__sns li {
  margin: 0 0.4rem;
}
.commonfooter__link {
  display: block;
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  border: 1px solid #fff;
}
.commonfooter__link--text {
  font-size: 0.9rem;
}
.commonfooter__link img {
  margin: 0 0.2rem;
}
.commonfooter__link--number {
  font-size: 1.2rem;
}
.commonfooter__link--time {
  font-size: 0.8rem;
}
@media screen and (min-width: 800px) {
  .commonfooter__link {
    display: flex;
    justify-content: center;
    width: 50%;
  }
  .commonfooter__link_pc {
    display: flex;
    align-items: start;
    justify-content: space-between;
  }
  .commonfooter__links {
    width: 50%;
  }
}
.commonfooter__links {
  display: flex;
  margin: 0 -0.5rem 1.4rem;
}
.commonfooter__links--contact {
  display: block;
  padding: 1rem;
  margin: 0 0.5rem;
  width: 50%;
  text-align: center;
  border: 1px solid #fff;
}
.commonfooter__covid19 {
  display: block;
  padding: 1rem;
  margin-bottom: 2.5rem;
  width: 100%;
  text-align: center;
  color: #4D4D4D !important;
  border-radius: 0.5rem;
  background-color: #fff;
}
@media screen and (max-width: 799px) {
  .commonfooter__flex {
    display: flex;
  }
}
.commonfooter__sitemap {
  display: flex;
  margin-bottom: 2.5rem;
  font-size: 0.9230769231rem;
}
@media screen and (max-width: 799px) {
  .commonfooter__sitemap {
    gap: 1rem;
    flex-direction: column;
  }
}
@media screen and (min-width: 800px) {
  .commonfooter__sitemap {
    flex-wrap: wrap;
    gap: 0.6rem 0;
    font-size: 0.9375rem;
  }
}
.commonfooter__sitemap + .commonfooter__sitemap {
  margin-left: 10%;
}
@media screen and (min-width: 800px) {
  .commonfooter__sitemap > li {
    width: 25%;
  }
}
.commonfooter__sitemap--lower li {
  margin-left: 1em;
  font-size: 0.8461538462rem;
}
@media screen and (min-width: 800px) {
  .commonfooter__sitemap--lower li {
    font-size: 0.6875rem;
  }
}
.commonfooter__company {
  text-align: center;
}
.commonfooter__company a {
  display: inline-block;
  margin: 1rem 0.6rem;
}

.w-600 {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

.copyright {
  padding: 0.6rem;
  text-align: center;
  color: #fff;
  background-color: #1F1F1F;
}

.lowerSecondary {
  background-color: #F7F7F7;
  padding: 0 2.9230769231rem;
}
.lowerSecondary.p-0 {
  padding: 0;
}
.lowerSecondary .row {
  margin: 0 -2.9230769231rem;
}
.lowerSecondary .top {
  position: relative;
  margin: 0 -2.9230769231rem;
}
.lowerSecondary .top figure {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.42);
}
.lowerSecondary .top figure img {
  width: 100%;
  height: auto;
}
.lowerSecondary .top__text {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Jost-Light";
  letter-spacing: 0.15em;
  z-index: 1;
  text-align: center;
}
.lowerSecondary .top__text h1 {
  font-size: 3.3076923077rem;
  text-transform: uppercase;
}
@media screen and (min-width: 800px) {
  .lowerSecondary .top__text h1 {
    font-size: 2.6875rem;
  }
}
.lowerSecondary .top__text span {
  font-size: 0.9230769231rem;
  margin-top: 1.5384615385rem;
  display: inline-block;
}
@media screen and (min-width: 800px) {
  .lowerSecondary .top__text span {
    font-size: 0.75rem;
  }
}
.lowerSecondary .top__image {
  display: block;
  width: 100%;
}
.lowerSecondary .top__image img {
  width: 100%;
  object-fit: cover;
}
.lowerSecondary .top-gray {
  border-bottom: solid 1px #707070;
  padding: 88px 0 180px 0;
  text-align: center;
  max-width: 295px;
  margin: 0 auto 58px;
}
@media screen and (min-width: 800px) {
  .lowerSecondary .top-gray {
    margin: 0 auto 73px;
  }
}
.lowerSecondary .top-gray h1 {
  font-size: 3.3076923077rem;
  font-family: "Jost-Light";
  line-height: 28px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 800px) {
  .lowerSecondary .top-gray h1 {
    font-size: 2.6875rem;
  }
}
.lowerSecondary .top-gray .text-gray {
  font-size: 0.9230769231rem;
  margin-top: 17px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #5c5c5c;
  width: 100%;
}
@media screen and (min-width: 800px) {
  .lowerSecondary .top-gray .text-gray {
    font-size: 0.75rem;
  }
}
.lowerSecondary .top-small {
  padding: 88px 0 140px 0;
}
.lowerSecondary .top-small h1 {
  font-size: 1.2307692308rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 800px) {
  .lowerSecondary .top-small h1 {
    font-size: 1.25rem;
  }
}
.lowerSecondary .intro {
  margin: 4.6153846154rem 0 3.0769230769rem;
  font-size: 1rem;
  letter-spacing: 0.095em;
  line-height: 2.3;
  text-align: center;
}

.js-menu-title {
  position: relative;
  cursor: pointer;
}
.js-menu-title::before, .js-menu-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #5C5C5C;
}
.js-menu-title::before {
  height: 10px;
  width: 1px;
  right: 2rem;
}
.js-menu-title::after {
  width: 10px;
  height: 1px;
  right: 1.723rem;
}
.js-menu-title.open::before {
  content: none;
}

.js-menu-list {
  display: none;
}
.js-menu-list li {
  padding: 0.6153846154rem;
  margin-left: 1.5384615385rem;
  font-size: 0.8461538462rem;
}
@media screen and (min-width: 800px) {
  .js-menu-list li {
    padding: 0.5rem;
    margin-left: 1.25rem;
    font-size: 0.6875rem;
  }
}

html, body {
  background-color: #000000;
}

.services {
  background-color: #000000;
}
@media screen and (min-width: 769px) {
  .services .commonheader {
    padding: 3.0208333333vw 3.2291666667vw 0;
  }
}
@media screen and (max-width: 768px) {
  .services .commonheader {
    padding: 5.3333333333vw 8vw;
  }
}
@media screen and (min-width: 769px) {
  .services .commonheader .commonheader__logo {
    width: 13.6458333333vw;
  }
}
@media screen and (max-width: 768px) {
  .services .commonheader .commonheader__logo {
    width: 35.7333333333vw;
  }
}
.services .commonheader .commonheader__logo::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 769px) {
  .services .commonheader .commonheader__logo::before {
    background-image: url(../images/header_logo_pc.png);
    width: 100%;
    height: 1.5494791667vw;
  }
}
@media screen and (max-width: 768px) {
  .services .commonheader .commonheader__logo::before {
    background-image: url(../images/header_logo_sp.png);
    width: 100%;
    height: 6.6666666667vw;
  }
}
.services .commonheader .commonheader__logo svg {
  height: auto !important;
  display: none !important;
}
@media screen and (min-width: 769px) {
  .services .commonheader__vacancy {
    right: 11.4583333333vw;
  }
}
@media screen and (max-width: 768px) {
  .services .commonheader__vacancy {
    top: 3.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .services .commonheader__menutrigger {
    right: 8.4895833333vw;
    top: 3.1770833333vw;
  }
}
@media screen and (max-width: 768px) {
  .services .commonheader__menutrigger {
    top: 4.8vw;
    right: 7.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .services .commonheader__menutrigger.active {
    right: 1.6rem;
  }
}
.services .commonheader__menutrigger span {
  background-color: #B7B7B7 !important;
}
@media screen and (min-width: 769px) {
  .services .commonheader__menutrigger span {
    height: 2px;
  }
}
@media screen and (max-width: 768px) {
  .services .commonheader__menutrigger span {
    height: 2px;
  }
}

.services-container {
  font-family: "Shippori Mincho", serif;
  color: #ffffff;
}
.services-container img {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .c-inner {
    width: 62.5vw;
    margin-inline: auto;
  }
}

@media screen and (min-width: 769px) {
  .c-content {
    width: 62.5vw;
    margin-inline: auto;
  }
}

@media screen and (min-width: 769px) {
  .c-content__ttl {
    font-size: 1.25vw;
    font-weight: 400;
  }
}
@media screen and (max-width: 768px) {
  .c-content__ttl {
    font-family: "Shippori Mincho B1", serif;
    font-size: 4.8vw;
    font-weight: 400;
    width: 84vw;
    margin-inline: auto;
  }
}

.c-content-separator {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .c-content-separator {
    margin-top: 0.5208333333vw;
  }
}
@media screen and (max-width: 768px) {
  .c-content-separator {
    margin-right: 1.5625vw;
    width: 92vw;
  }
}

.c-content-separator__border {
  height: 1px;
  background-color: #ffffff;
}
@media screen and (min-width: 769px) {
  .c-content-separator__border {
    width: 57.1875vw;
  }
}
@media screen and (max-width: 768px) {
  .c-content-separator__border {
    width: 74.4vw;
  }
}

@media screen and (min-width: 769px) {
  .c-content-separator__txt {
    font-size: 0.9375vw;
    width: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .c-content-separator__txt {
    font-family: "Shippori Mincho B1", serif;
    font-size: 3.7333333333vw;
    width: fit-content;
  }
}

@media screen and (min-width: 769px) {
  .c-content__txt {
    font-size: 0.9375vw;
    line-height: 1.6666666667;
    margin-top: 0.625vw;
  }
}
@media screen and (max-width: 768px) {
  .c-content__txt {
    font-family: "Shippori Mincho B1", serif;
    width: 92vw;
    margin-inline: auto;
    font-size: 3.7333333333vw;
    line-height: 1.75;
    margin-top: 5.3333333333vw;
  }
}

@media screen and (min-width: 769px) {
  .c-slide-img {
    margin-top: 3.6458333333vw;
  }
}
@media screen and (max-width: 768px) {
  .c-slide-img {
    margin-top: 7.4666666667vw;
  }
}

.c-slide-img-list {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.c-slide-img-list-item {
  flex-shrink: 0;
}
.c-slide-img-list-item:first-child {
  animation: contentSlide1 407s -203.5s linear infinite;
}
.c-slide-img-list-item:last-child {
  animation: contentSlide2 407s linear infinite;
}

.c-slide-img-list-item-02:first-child {
  animation: contentSlide1 407s -203.5s linear infinite;
}
.c-slide-img-list-item-02:last-child {
  animation: contentSlide2 407s linear infinite;
}

.c-slide-img-list-item-03:first-child {
  animation: contentSlide1-reverse 407s -203.5s linear infinite;
}
.c-slide-img-list-item-03:last-child {
  animation: contentSlide2-reverse 407s linear infinite;
}

.c-slide-img-list-item-04:first-child {
  animation: contentSlide1 407s -203.5s linear infinite;
}
.c-slide-img-list-item-04:last-child {
  animation: contentSlide2 407s linear infinite;
}

.c-slide-img-list-item-05:first-child {
  animation: contentSlide1-reverse 407s -203.5s linear infinite;
}
.c-slide-img-list-item-05:last-child {
  animation: contentSlide2-reverse 407s linear infinite;
}

.c-slide-img-list-item-06:first-child {
  animation: contentSlide1 407s -203.5s linear infinite;
}
.c-slide-img-list-item-06:last-child {
  animation: contentSlide2 407s linear infinite;
}

.c-btn-area {
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  .c-btn-area {
    margin-top: 1.5625vw;
    width: 62.5vw;
  }
}
@media screen and (max-width: 768px) {
  .c-btn-area {
    width: 84vw;
    margin-top: 7.4666666667vw;
  }
}

.c-btn-wrap {
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  margin-left: auto;
  width: fit-content;
}
@media screen and (min-width: 769px) {
  .c-btn-wrap {
    column-gap: 0.2604166667vw;
  }
}
@media screen and (max-width: 768px) {
  .c-btn-wrap {
    column-gap: 1.6vw;
  }
}

.c-btn__txt {
  pointer-events: all;
  display: block;
  line-height: 1;
  width: fit-content;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .c-btn__txt {
    font-size: 0.9375vw;
    text-underline-offset: 0.8333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .c-btn__txt {
    font-size: 4vw;
    text-underline-offset: 2.4vw;
  }
}

.c-btn__item {
  pointer-events: all;
}
@media screen and (min-width: 769px) {
  .c-btn__item {
    width: 3.6901041667vw;
    margin-top: 0.2604166667vw;
  }
}
@media screen and (max-width: 768px) {
  .c-btn__item {
    width: 9.8666666667vw;
  }
}

@keyframes contentSlide1 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes contentSlide2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
@keyframes contentSlide1-reverse {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes contentSlide2-reverse {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0%);
  }
}
@media screen and (min-width: 769px) {
  .services-kv-inner {
    display: flex;
    justify-content: space-between;
    padding-top: 10.7291666667vw;
  }
}

.services-kv-movie {
  position: relative;
}
@media screen and (min-width: 769px) {
  .services-kv-movie {
    width: 21.9791666667vw;
    height: 34.6875vw;
  }
}
@media screen and (max-width: 768px) {
  .services-kv-movie {
    width: 100%;
    height: 177.6vw;
  }
}

.services-kv-movie-item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 769px) {
  .services-kv-content {
    display: flex;
    flex-direction: row-reverse;
    column-gap: 6.25vw;
  }
}
@media screen and (max-width: 768px) {
  .services-kv-content {
    padding-top: 5.8666666667vw;
  }
}

@media screen and (min-width: 769px) {
  .services-kv-ttl {
    font-family: "Shippori Mincho B1", serif;
    writing-mode: vertical-rl;
    font-size: 1.7708333333vw;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  .services-kv-ttl {
    font-family: "Shippori Mincho B1", serif;
    font-weight: 400;
    font-size: 4.8vw;
    line-height: 1.7222222222;
    text-align: center;
    margin-bottom: 6.6666666667vw;
  }
}

@media screen and (min-width: 769px) {
  .services-kv-txt-wrap {
    display: flex;
    flex-direction: row-reverse;
    column-gap: 1.4583333333vw;
  }
}

@media screen and (min-width: 769px) {
  .services-kv-txt {
    font-family: "Shippori Mincho B1", serif;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 1.25vw;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  .services-kv-txt {
    font-family: "Shippori Mincho B1", serif;
    margin-left: 6.1333333333vw;
    font-size: 3.7333333333vw;
    line-height: 1.5714285714;
  }
}
@media screen and (max-width: 768px) {
  .services-kv-txt + .services-kv-txt {
    margin-top: 2.1333333333vw;
  }
}

@media screen and (min-width: 769px) {
  .services-map-wrap {
    padding-top: 3.5416666667vw;
    padding-bottom: 6.7708333333vw;
  }
}
@media screen and (max-width: 768px) {
  .services-map-wrap {
    padding-top: 11.7333333333vw;
    padding-bottom: 28.5333333333vw;
  }
}

@media screen and (min-width: 769px) {
  .services-map-container {
    position: relative;
    width: 58.59375vw;
    height: 26.5104166667vw;
    border: solid 1px #ffffff;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .services-map-container {
    width: 84vw;
    margin-inline: auto;
  }
}

@media screen and (min-width: 769px) {
  .services-map {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0.3645833333vw;
    left: 0.3125vw;
    border: solid 1px #ffffff;
  }
}

@media screen and (min-width: 769px) {
  .services-map-inner {
    display: flex;
    justify-content: space-between;
    width: 55.5729166667vw;
    margin-inline: auto;
    padding-top: 2.1354166667vw;
  }
}

@media screen and (min-width: 769px) {
  .services-map-left {
    width: 27.7604166667vw;
    flex-shrink: 0;
  }
}

@media screen and (min-width: 769px) {
  .services-map-right {
    width: 27.2916666667vw;
  }
}
@media screen and (max-width: 768px) {
  .services-map-right {
    margin-top: 4.2666666667vw;
  }
}

@media screen and (min-width: 769px) {
  .services-map-splide-slide-inner {
    padding-top: 0.8854166667vw;
  }
}

.services-map-splide-slide__label {
  display: block;
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  .services-map-splide-slide__label {
    width: 1.40625vw;
  }
}
@media screen and (max-width: 768px) {
  .services-map-splide-slide__label {
    width: 4.2666666667vw;
  }
}

.services-map-splide-slide__ttl {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .services-map-splide-slide__ttl {
    font-size: 1.0416666667vw;
    line-height: 1.5;
    margin-top: 0.15625vw;
  }
}
@media screen and (max-width: 768px) {
  .services-map-splide-slide__ttl {
    font-size: 3.7333333333vw;
    line-height: 1.6428571429;
  }
}

.services-map-splide-slide-flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .services-map-splide-slide-flex {
    margin-top: 0.8854166667vw;
  }
}
@media screen and (max-width: 768px) {
  .services-map-splide-slide-flex {
    margin-top: 3.4666666667vw;
  }
}

@media screen and (min-width: 769px) {
  .services-map-splide-slide-flex__txt {
    font-size: 0.9375vw;
    line-height: 1.6666666667;
    width: 13.75vw;
  }
}
@media screen and (max-width: 768px) {
  .services-map-splide-slide-flex__txt {
    font-size: 3.7333333333vw;
    line-height: 1.6428571429;
    width: 42.9333333333vw;
  }
}

@media screen and (min-width: 769px) {
  .services-map-splide-slide-flex__img {
    width: 12.2916666667vw;
    margin-top: 0.4166666667vw;
  }
}
@media screen and (max-width: 768px) {
  .services-map-splide-slide-flex__img {
    width: 38.4vw;
    margin-top: 1.3333333333vw;
  }
}

.services-map-splide {
  position: relative;
}
.services-map-splide .splide__arrows {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .services-map-splide .splide__arrows {
    width: 9.4791666667vw;
    bottom: -3.2291666667vw;
  }
}
@media screen and (max-width: 768px) {
  .services-map-splide .splide__arrows {
    width: 31.2vw;
    bottom: -12vw;
  }
}
.services-map-splide .splide__arrows .splide__arrow {
  background: transparent;
  position: relative;
  top: 0;
  transform: none;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
  .services-map-splide .splide__arrows .splide__arrow {
    width: 1.1979166667vw;
    height: 1.1458333333vw;
  }
}
@media screen and (max-width: 768px) {
  .services-map-splide .splide__arrows .splide__arrow {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.services-map-splide .splide__arrows .splide__arrow svg {
  display: none;
}
.services-map-splide .splide__arrows .splide__arrow--prev {
  background-image: url(../images/arrow_prev.svg);
}
@media screen and (min-width: 769px) {
  .services-map-splide .splide__arrows .splide__arrow--prev {
    left: 0.8854166667vw;
  }
}
@media screen and (max-width: 768px) {
  .services-map-splide .splide__arrows .splide__arrow--prev {
    left: 3.4666666667vw;
  }
}
.services-map-splide .splide__arrows .splide__arrow--next {
  background-image: url(../images/arrow_next.svg);
}
@media screen and (min-width: 769px) {
  .services-map-splide .splide__arrows .splide__arrow--next {
    right: 0.8854166667vw;
  }
}
@media screen and (max-width: 768px) {
  .services-map-splide .splide__arrows .splide__arrow--next {
    right: 3.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .services-map-splide .splide__pagination {
    bottom: -3.125vw;
    column-gap: 0.5729166667vw;
  }
}
@media screen and (max-width: 768px) {
  .services-map-splide .splide__pagination {
    bottom: -11.4666666667vw;
    column-gap: 1.0666666667vw;
  }
}
.services-map-splide .splide__pagination .splide__pagination__page {
  background: #ffffff;
  opacity: 0.7;
}
@media screen and (min-width: 769px) {
  .services-map-splide .splide__pagination .splide__pagination__page {
    width: 0.5729166667vw;
    height: 0.5729166667vw;
  }
}
@media screen and (max-width: 768px) {
  .services-map-splide .splide__pagination .splide__pagination__page {
    width: 1.8666666667vw;
    height: 1.8666666667vw;
  }
}
.services-map-splide .splide__pagination .splide__pagination__page.is-active {
  transform: none;
  opacity: 1;
}

@media screen and (min-width: 769px) {
  .services-movie-wrap {
    padding-top: 6.25vw;
  }
}
@media screen and (max-width: 768px) {
  .services-movie-wrap {
    padding-top: 4vw;
  }
}

@media screen and (min-width: 769px) {
  .services-movie {
    width: 62.3958333333vw;
    height: 35.1041666667vw;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .services-movie {
    width: 100vw;
    height: 56.2666666667vw;
    margin-inline: auto;
  }
}

.services-movie-item {
  display: block;
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .services-amami-wrap {
    margin-top: 6.6145833333vw;
  }
}
@media screen and (max-width: 768px) {
  .services-amami-wrap {
    margin-top: 13.0666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .services-amami-wrap .c-slide-img {
    margin-top: 11.4666666667vw;
  }
}

@media screen and (min-width: 769px) {
  .amami-slide-img-list-item {
    width: 256.4583333333vw;
  }
}
@media screen and (max-width: 768px) {
  .amami-slide-img-list-item {
    width: 1313.0666666667vw;
  }
}

@media screen and (min-width: 769px) {
  .services-amami__img {
    margin-top: 3.28125vw;
  }
}
@media screen and (max-width: 768px) {
  .services-amami__img {
    margin-top: 8.5333333333vw;
  }
}

@media screen and (min-width: 769px) {
  .services-amami__txt-02 {
    margin-top: 3.125vw;
  }
}
@media screen and (max-width: 768px) {
  .services-amami__txt-02 {
    margin-top: 16vw;
  }
}

@media screen and (min-width: 769px) {
  .services-amami-slide {
    margin-top: 3.125vw;
  }
}

@media screen and (min-width: 769px) {
  .services-amami-slide-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 1.5625vw;
  }
}

@media screen and (min-width: 769px) {
  .services-amami-slide-list-item {
    width: calc(25% - 0.5208333333vw);
    flex-shrink: 0;
  }
}

@media screen and (max-width: 768px) {
  .services-amami-splide .splide__arrows {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    width: 35.7333333333vw;
    bottom: -6.4vw;
  }
}
@media screen and (max-width: 768px) {
  .services-amami-splide .splide__arrows .splide__arrow {
    background: transparent;
    position: relative;
    top: 0;
    transform: none;
    background-size: contain;
    background-repeat: no-repeat;
    width: 6.9333333333vw;
    height: 2.4vw;
    opacity: 1 !important;
  }
}
.services-amami-splide .splide__arrows .splide__arrow svg {
  display: none;
}
.services-amami-splide .splide__arrows .splide__arrow:disabled {
  opacity: 1 !important;
}
@media screen and (max-width: 768px) {
  .services-amami-splide .splide__arrows .splide__arrow--prev {
    background-image: url(../images/arrow_prev_02.svg);
  }
}
@media screen and (max-width: 768px) {
  .services-amami-splide .splide__arrows .splide__arrow--next {
    background-image: url(../images/arrow_next_02.svg);
  }
}
@media screen and (max-width: 768px) {
  .services-amami-splide .splide__pagination {
    bottom: -6.4vw;
    column-gap: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .services-amami-splide .splide__pagination .splide__pagination__page {
    background: transparent;
    border: 1px solid #fff;
    opacity: 1;
    width: 2.4vw;
    height: 2.4vw;
    margin: 0;
    transition: opacity 0.3s ease;
  }
}
.services-amami-splide .splide__pagination .splide__pagination__page.is-active {
  transform: none;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .services-amami-splide-slide {
    width: 100%;
    margin-top: 8vw;
  }
}

.services-amami-slide-inner {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .services-amami-slide-inner {
    width: 84vw;
    margin-inline: auto;
    justify-content: space-between;
    row-gap: 8vw;
  }
}

@media screen and (max-width: 768px) {
  .services-amami-slide-img {
    width: 40.5333333333vw;
  }
}

.services-amami-slide__txt {
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .services-amami-slide__txt {
    margin-top: 0.5208333333vw;
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 768px) {
  .services-amami-slide__txt {
    margin-top: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}

@media screen and (min-width: 769px) {
  .services-wellness-wrap {
    margin-top: 6.6145833333vw;
  }
}
@media screen and (max-width: 768px) {
  .services-wellness-wrap {
    margin-top: 16.8vw;
  }
}

@media screen and (min-width: 769px) {
  .wellness-slide-img-list-item {
    width: 256.4583333333vw;
  }
}
@media screen and (max-width: 768px) {
  .wellness-slide-img-list-item {
    width: 1313.0666666667vw;
  }
}

@media screen and (min-width: 769px) {
  .services-activity-wrap {
    margin-top: 6.6145833333vw;
  }
}
@media screen and (max-width: 768px) {
  .services-activity-wrap {
    margin-top: 17.6vw;
  }
}
@media screen and (max-width: 768px) {
  .services-activity-wrap .c-slide-img {
    margin-top: 8.5333333333vw;
  }
}

@media screen and (max-width: 768px) {
  .services-activity__txt {
    margin-top: 4.2666666667vw;
  }
}

@media screen and (min-width: 769px) {
  .activity-slide-img-list-item {
    width: 256.4583333333vw;
  }
}
@media screen and (max-width: 768px) {
  .activity-slide-img-list-item {
    width: 1313.0666666667vw;
  }
}

@media screen and (min-width: 769px) {
  .services-activity-box-wrap {
    margin-top: 2.9166666667vw;
  }
}
@media screen and (max-width: 768px) {
  .services-activity-box-wrap {
    margin-top: 8vw;
  }
}

.services-activity-box {
  border: #fff solid 1px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .services-activity-box {
    width: 34.7916666667vw;
    height: 9.21875vw;
    column-gap: 2.0833333333vw;
    padding-top: 1.1458333333vw;
  }
}
@media screen and (max-width: 768px) {
  .services-activity-box {
    width: 84vw;
    height: 34.9333333333vw;
    column-gap: 8vw;
    padding-top: 2.6666666667vw;
  }
}

@media screen and (min-width: 769px) {
  .services-activity-box-item__txt {
    font-size: 0.9375vw;
    line-height: 1.6666666667;
    width: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .services-activity-box-item__txt {
    font-size: 3.2vw;
    line-height: 1.6666666667;
  }
}
.services-activity-box-item__txt.-right {
  text-align: right;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .services-facilities-wrap {
    margin-top: 6.6145833333vw;
  }
}
@media screen and (max-width: 768px) {
  .services-facilities-wrap {
    margin-top: 17.8666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .services-facilities-wrap .c-slide-img {
    margin-top: 3.28125vw;
  }
}

@media screen and (min-width: 769px) {
  .facilities-slide-img-list-item {
    width: 256.4583333333vw;
  }
}
@media screen and (max-width: 768px) {
  .facilities-slide-img-list-item {
    width: 1313.0666666667vw;
  }
}

@media screen and (min-width: 769px) {
  .services-dining-wrap {
    margin-top: 6.6145833333vw;
  }
}
@media screen and (max-width: 768px) {
  .services-dining-wrap {
    margin-top: 16.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .services-dining-wrap .c-slide-img {
    margin-top: 3.28125vw;
  }
}
@media screen and (min-width: 769px) {
  .services-dining-wrap .c-btn-area {
    margin-top: 3.125vw;
  }
}
@media screen and (min-width: 769px) {
  .services-dining-wrap .c-btn-wrap {
    column-gap: 0.78125vw;
  }
}

@media screen and (min-width: 769px) {
  .dining-slide-img-list-item {
    width: 256.4583333333vw;
  }
}
@media screen and (max-width: 768px) {
  .dining-slide-img-list-item {
    width: 1313.0666666667vw;
  }
}

@media screen and (min-width: 769px) {
  .services-rooms-wrap {
    margin-top: 6.6145833333vw;
  }
}
@media screen and (max-width: 768px) {
  .services-rooms-wrap {
    margin-top: 16.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .services-rooms-wrap .c-slide-img {
    margin-top: 3.28125vw;
  }
}
@media screen and (min-width: 769px) {
  .services-rooms-wrap .c-btn-area {
    margin-top: 3.125vw;
  }
}
@media screen and (min-width: 769px) {
  .services-rooms-wrap .c-btn-wrap {
    column-gap: 0.78125vw;
  }
}

@media screen and (max-width: 768px) {
  .services-rooms__ttl {
    line-height: 1.5555555556;
  }
}

@media screen and (max-width: 768px) {
  .services-rooms-separator {
    margin-top: -0.8vw;
  }
}

@media screen and (min-width: 769px) {
  .rooms-slide-img-list-item {
    width: 256.4583333333vw;
  }
}
@media screen and (max-width: 768px) {
  .rooms-slide-img-list-item {
    width: 1313.0666666667vw;
  }
}

@media screen and (min-width: 769px) {
  .services-plan-wrap {
    margin-top: 6.6145833333vw;
    padding-bottom: 6.40625vw;
  }
}
@media screen and (max-width: 768px) {
  .services-plan-wrap {
    margin-top: 15.7333333333vw;
    padding-bottom: 16.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .services-plan-wrap .c-btn-area {
    margin-top: 5.78125vw;
  }
}
@media screen and (max-width: 768px) {
  .services-plan-wrap .c-btn-area {
    margin-top: 14.1333333333vw;
  }
}

@media screen and (max-width: 768px) {
  .services-plan__ttl {
    line-height: 1.6666666667;
  }
}

@media screen and (max-width: 768px) {
  .services-plan-separator {
    margin-top: -1.3333333333vw;
  }
}

@media screen and (min-width: 769px) {
  .services-plan-list {
    width: 62.5vw;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    margin-top: 3.4895833333vw;
  }
}

@media screen and (min-width: 769px) {
  .services-plan-list-item {
    width: 18.4895833333vw;
  }
}

@media screen and (min-width: 769px) {
  .services-plan-list-item__txt {
    font-size: 0.9375vw;
    line-height: 1.6666666667;
    margin-top: 1.3541666667vw;
  }
}

@media screen and (min-width: 769px) {
  .services-plan-splide {
    margin-top: 3.4895833333vw;
  }
}
@media screen and (max-width: 768px) {
  .services-plan-splide {
    margin-top: 8.8vw;
    margin-left: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .services-plan-splide .splide__list {
    display: flex;
  }
}

@media screen and (min-width: 769px) {
  .services-plan-splide-slide {
    width: 20.35% !important;
  }
}
@media screen and (max-width: 768px) {
  .services-plan-splide-slide {
    width: 72.2666666667vw !important;
    margin-right: 8vw;
  }
}

@media screen and (min-width: 769px) {
  .services-plan-slide-inner {
    width: 18.4895833333vw;
  }
}
@media screen and (max-width: 768px) {
  .services-plan-slide-inner {
    width: 72.2666666667vw;
  }
}

@media screen and (min-width: 769px) {
  .services-plan-slide__txt {
    font-size: 0.9375vw;
    line-height: 1.6666666667;
    margin-top: 1.3541666667vw;
  }
}
@media screen and (max-width: 768px) {
  .services-plan-slide__txt {
    font-size: 3.7333333333vw;
    line-height: 1.2142857143;
    margin-top: 3.7333333333vw;
  }
}

.services-plan-splide {
  position: relative;
}
@media screen and (max-width: 768px) {
  .services-plan-splide .splide__arrows {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    width: 40vw;
    bottom: -6.4vw;
  }
}
@media screen and (max-width: 768px) {
  .services-plan-splide .splide__arrows .splide__arrow {
    background: transparent;
    position: relative;
    top: 0;
    transform: none;
    background-size: contain;
    background-repeat: no-repeat;
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.services-plan-splide .splide__arrows .splide__arrow svg {
  display: none;
}
@media screen and (max-width: 768px) {
  .services-plan-splide .splide__arrows .splide__arrow--prev {
    background-image: url(../images/arrow_prev.svg);
  }
}
@media screen and (max-width: 768px) {
  .services-plan-splide .splide__arrows .splide__arrow--next {
    background-image: url(../images/arrow_next.svg);
  }
}
@media screen and (min-width: 769px) {
  .services-plan-splide .splide__pagination {
    bottom: -3.125vw;
  }
}
@media screen and (max-width: 768px) {
  .services-plan-splide .splide__pagination {
    bottom: -6.4vw;
    column-gap: 1.0666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .services-plan-splide .splide__pagination .splide__pagination__page {
    background: #ffffff;
    opacity: 0.7;
    width: 1.8666666667vw;
    height: 1.8666666667vw;
  }
}
.services-plan-splide .splide__pagination .splide__pagination__page.is-active {
  transform: none;
  opacity: 1;
}

@media screen and (min-width: 769px) {
  .services-voice-wrap {
    padding-top: 6.6145833333vw;
  }
}
@media screen and (max-width: 768px) {
  .services-voice-wrap {
    padding-top: 16.8vw;
  }
}

.services-voice__ttl {
  text-align: center;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .services-voice__ttl {
    font-family: "Shippori Mincho B1", serif;
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 768px) {
  .services-voice__ttl {
    font-size: 4.8vw;
  }
}

@media screen and (min-width: 769px) {
  .services-voice-content-list {
    display: flex;
    justify-content: space-between;
    width: 62.5vw;
    margin-inline: auto;
    margin-top: 1.875vw;
  }
}
@media screen and (max-width: 768px) {
  .services-voice-content-list {
    margin-top: 6.4vw;
  }
}

.services-voice-content-list-item {
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 769px) {
  .services-voice-content-list-item {
    width: 19.7916666667vw;
    height: 16.40625vw;
  }
}
@media screen and (max-width: 768px) {
  .services-voice-content-list-item {
    width: 92vw;
    height: 63.4666666667vw;
    padding-left: 8vw;
    padding-top: 5.0666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .services-voice-content-list-item + .services-voice-content-list-item {
    margin-top: 5.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .services-voice-content-list-item-01 {
    background-image: url(../images/voice_bg_01_pc.png);
    padding-top: 1.3020833333vw;
    padding-left: 1.7708333333vw;
  }
}
@media screen and (max-width: 768px) {
  .services-voice-content-list-item-01 {
    background-image: url(../images/voice_bg_01_sp.png);
  }
}
@media screen and (min-width: 769px) {
  .services-voice-content-list-item-01 .services-voice-content-list-item__txt-01 {
    margin-top: 1.0416666667vw;
  }
}
@media screen and (min-width: 769px) {
  .services-voice-content-list-item-02 {
    background-image: url(../images/voice_bg_02_pc.png);
    padding-top: 1.9791666667vw;
    padding-left: 1.5104166667vw;
  }
}
@media screen and (max-width: 768px) {
  .services-voice-content-list-item-02 {
    background-image: url(../images/voice_bg_02_sp.png);
    margin-left: auto;
    padding-left: 8.8vw;
  }
}
@media screen and (min-width: 769px) {
  .services-voice-content-list-item-03 {
    background-image: url(../images/voice_bg_03_pc.png);
    padding-top: 1.9791666667vw;
    padding-left: 1.6145833333vw;
  }
}
@media screen and (max-width: 768px) {
  .services-voice-content-list-item-03 {
    background-image: url(../images/voice_bg_03_sp.png);
  }
}

@media screen and (min-width: 769px) {
  .services-voice-content-list-item__ttl {
    font-size: 0.9375vw;
    line-height: 1.2222222222;
  }
}
@media screen and (max-width: 768px) {
  .services-voice-content-list-item__ttl {
    font-size: 3.7333333333vw;
    line-height: 1.6428571429;
  }
}

@media screen and (min-width: 769px) {
  .services-voice-content-list-item__txt-01 {
    font-size: 0.8333333333vw;
    line-height: 1.1875;
    margin-top: 1.5104166667vw;
  }
}
@media screen and (max-width: 768px) {
  .services-voice-content-list-item__txt-01 {
    font-size: 3.7333333333vw;
    line-height: 1.6428571429;
    margin-top: 1.6vw;
  }
}

@media screen and (min-width: 769px) {
  .services-voice-content-list-item__txt-02 {
    font-size: 0.8333333333vw;
    line-height: 1.75;
    margin-top: 0.78125vw;
    width: 17.1875vw;
  }
}
@media screen and (max-width: 768px) {
  .services-voice-content-list-item__txt-02 {
    width: 75.2vw;
    font-size: 3.7333333333vw;
    line-height: 1.6;
    margin-top: 1.3333333333vw;
  }
}

@media screen and (min-width: 769px) {
  .services-media-wrap {
    padding-top: 6.4583333333vw;
  }
}
@media screen and (max-width: 768px) {
  .services-media-wrap {
    padding-top: 16.8vw;
  }
}

.services-media {
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  .services-media {
    width: 62.5vw;
  }
}
@media screen and (max-width: 768px) {
  .services-media {
    width: 83.7333333333vw;
  }
}

.services-media__ttl {
  text-align: center;
  font-weight: 400;
  font-family: "Shippori Mincho B1", serif;
}
@media screen and (min-width: 769px) {
  .services-media__ttl {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 768px) {
  .services-media__ttl {
    font-size: 4.8vw;
  }
}

@media screen and (min-width: 769px) {
  .services-media-content {
    margin-top: 3.5416666667vw;
  }
}
@media screen and (max-width: 768px) {
  .services-media-content {
    margin-top: 8.5333333333vw;
  }
}

.services-media-content-list-item {
  display: flex;
  border-top: 1px solid #707070;
}
@media screen and (min-width: 769px) {
  .services-media-content-list-item {
    column-gap: 3.125vw;
    padding: 1.1979166667vw 0 1.6145833333vw;
  }
}
@media screen and (max-width: 768px) {
  .services-media-content-list-item {
    column-gap: 4vw;
    padding: 2.1333333333vw 0 1.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .services-media-content-list-item.-line2 {
    padding-bottom: 1.9791666667vw;
  }
}
.services-media-content-list-item:last-child {
  border-bottom: 1px solid #707070;
}
@media screen and (min-width: 769px) {
  .services-media-content-list-item:last-child {
    padding-bottom: 1.6666666667vw;
  }
}

@media screen and (min-width: 769px) {
  .services-media-content-list-item-left {
    font-size: 0.9375vw;
    width: 4.7916666667vw;
    line-height: 1.6666666667;
  }
}
@media screen and (max-width: 768px) {
  .services-media-content-list-item-left {
    width: fit-content;
    font-size: 2.6666666667vw;
    line-height: 1.5;
  }
}

.services-media-content-list-item-right {
  display: block;
}
@media screen and (min-width: 769px) {
  .services-media-content-list-item-right {
    font-size: 0.9375vw;
    line-height: 1.6666666667;
  }
}
@media screen and (max-width: 768px) {
  .services-media-content-list-item-right {
    font-size: 2.6666666667vw;
    line-height: 1.5;
    letter-spacing: -0.035em;
  }
}

@media screen and (min-width: 769px) {
  .services-about-wrap {
    padding-top: 6.25vw;
  }
}
@media screen and (max-width: 768px) {
  .services-about-wrap {
    padding-top: 15.7333333333vw;
  }
}

.services-about {
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  .services-about {
    width: 62.5vw;
  }
}
@media screen and (max-width: 768px) {
  .services-about {
    width: 84vw;
  }
}

.services-about__ttl {
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  .services-about__ttl {
    width: 10.9895833333vw;
  }
}
@media screen and (max-width: 768px) {
  .services-about__ttl {
    width: 61.0666666667vw;
  }
}

.services-about__subttl {
  font-family: "Shippori Mincho B1", serif;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .services-about__subttl {
    font-size: 0.9375vw;
    margin-top: 1.09375vw;
  }
}
@media screen and (max-width: 768px) {
  .services-about__subttl {
    font-size: 3.7333333333vw;
    margin-top: 5.3333333333vw;
  }
}

@media screen and (min-width: 769px) {
  .services-about-img {
    margin-top: 1.6145833333vw;
  }
}
@media screen and (max-width: 768px) {
  .services-about-img {
    margin-top: 5.3333333333vw;
  }
}

@media screen and (min-width: 769px) {
  .services-about__txt {
    font-size: 0.9375vw;
    line-height: 1.6666666667;
    margin-top: 1.25vw;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .services-about__txt {
    font-family: "Shippori Mincho B1", serif;
    font-size: 3.7333333333vw;
    line-height: 1.6428571429;
    margin-top: 4.2666666667vw;
  }
}

.services-about-contact {
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.18);
}
@media screen and (min-width: 769px) {
  .services-about-contact {
    width: 52.5520833333vw;
    margin-top: 3.1770833333vw;
    padding: 1.1458333333vw 1.5625vw 1.5104166667vw;
  }
}
@media screen and (max-width: 768px) {
  .services-about-contact {
    margin-top: 5.6vw;
    padding: 4vw 0;
  }
}

.services-about-contact-flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .services-about-contact-flex {
    margin-top: 2.1875vw;
  }
}
@media screen and (max-width: 768px) {
  .services-about-contact-flex {
    width: 78.3893333333vw;
    flex-wrap: wrap;
    margin-top: 2.6666666667vw;
    margin-inline: auto;
    row-gap: 1.8666666667vw;
  }
}

.services-about-contact__address {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .services-about-contact__address {
    font-size: 0.9375vw;
    line-height: 1.6666666667;
  }
}
@media screen and (max-width: 768px) {
  .services-about-contact__address {
    font-family: "Shippori Mincho B1", serif;
    font-size: 3.7333333333vw;
    line-height: 1.6428571429;
  }
}

.services-about-contact__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #000;
}
@media screen and (min-width: 769px) {
  .services-about-contact__tel {
    font-size: 1.1458333333vw;
    width: 24.0984375vw;
    height: 3.1770833333vw;
  }
}
@media screen and (max-width: 768px) {
  .services-about-contact__tel {
    width: 100%;
    height: 10.4vw;
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .services-about-contact__tel span {
    display: block;
    font-size: 2.6666666667vw;
    padding-top: 0.8vw;
  }
}

.services-about-contact__txt {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #000;
}
@media screen and (min-width: 769px) {
  .services-about-contact__txt {
    font-size: 1.1458333333vw;
    width: 11.4192708333vw;
    height: 3.1770833333vw;
  }
}
@media screen and (max-width: 768px) {
  .services-about-contact__txt {
    width: 37.1466666667vw;
    height: 10.4vw;
    font-size: 3.7333333333vw;
  }
}

.services-about-contact__catalog {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #000;
}
@media screen and (min-width: 769px) {
  .services-about-contact__catalog {
    font-size: 1.1458333333vw;
    width: 11.6947916667vw;
    height: 3.1770833333vw;
  }
}
@media screen and (max-width: 768px) {
  .services-about-contact__catalog {
    width: 38.0426666667vw;
    height: 10.4vw;
    font-size: 3.7333333333vw;
  }
}

@media screen and (min-width: 769px) {
  .services-access-wrap {
    padding-top: 6.5625vw;
  }
}
@media screen and (max-width: 768px) {
  .services-access-wrap {
    padding-top: 16.8vw;
  }
}

.services-access {
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  .services-access {
    width: 56.40625vw;
  }
}
@media screen and (max-width: 768px) {
  .services-access {
    width: 84.5333333333vw;
  }
}

.services-access__ttl {
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .services-access__ttl {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 768px) {
  .services-access__ttl {
    font-family: "Shippori Mincho B1", serif;
    font-size: 4.8vw;
  }
}

@media screen and (min-width: 769px) {
  .services-access-map {
    width: 31.7708333333vw;
    height: 20.5729166667vw;
    margin-inline: auto;
    margin-top: 1.8229166667vw;
  }
}
@media screen and (max-width: 768px) {
  .services-access-map {
    width: 84.5333333333vw;
    height: 54.9333333333vw;
    margin-top: 6.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .services-access-map iframe {
    width: 31.7708333333vw;
    height: 20.5729166667vw;
  }
}
@media screen and (max-width: 768px) {
  .services-access-map iframe {
    width: 84.5333333333vw;
    height: 54.9333333333vw;
  }
}

@media screen and (min-width: 769px) {
  .services-access__txt {
    text-align: center;
    font-size: 0.9375vw;
    line-height: 1.6666666667;
    margin-top: 1.1979166667vw;
  }
}
@media screen and (max-width: 768px) {
  .services-access__txt {
    font-family: "Shippori Mincho B1", serif;
    width: 84vw;
    font-size: 3.7333333333vw;
    line-height: 1.6428571429;
    margin-top: 5.3333333333vw;
  }
}

.commonfooter {
  background-color: #000 !important;
}

.copyright {
  background-color: #000 !important;
}

@media screen and (max-width: 768px) {
  .u-is-pc {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .u-is-sp {
    display: none;
  }
}