/*
Theme Name: YaaaJi-thema
Author: WordPress
Description: HP
Version: 1.0
*/

@charset "UTF-8";
/* -------- foundation -------- */
/* --------blake point-------- */
/* --------font-------- */
/* --------font size-------- */
/* --------line hight-------- */
/* --------  -------- */
/* --------colors-------- */
/* --------base-------- */
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul li,
ol li {
  list-style: none;
}

a {
  text-decoration: none;
  display: block;
  color: #454545;
}

html {
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
  font-weight: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

body {
  font-family: "Noto sans JP", "sans-serif";
  color: #454545;
  font-size: 1.6em;
  line-height: 2;
  letter-spacing: 0.2rem;
  background-image: url(./images/bg.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.2rem;
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
}

table {
  border-collapse: collapse;
}

address {
  font-style: normal;
}

h1 h2 h3 h4 h5 h6 {
  font-size: 100%;
  color: #454545;
  font-family: "Noto sans JP", "sans-serif";
  font-weight: 500;
}

h1 {
  font-size: 3.2rem;
  letter-spacing: 0.32rem;
  line-height: 2;
  color: #454545;
  font-family: "Noto sans JP", "sans-serif";
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.4rem;
    letter-spacing: 0.24rem;
  }
}

h2 {
  font-size: 3.2rem;
  letter-spacing: 0.32rem;
  line-height: 2;
  color: #454545;
  font-family: "Noto sans JP", "sans-serif";
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 2.4rem;
    letter-spacing: 0.24rem;
  }
}

h3 {
  font-size: 2.8rem;
  letter-spacing: 0.28rem;
  line-height: 1.8;
  color: #454545;
  font-family: "Noto sans JP", "sans-serif";
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 1.8rem;
    letter-spacing: 0.18rem;
  }
}

h4 {
  font-size: 2.4rem;
  letter-spacing: 0.24rem;
  line-height: 1.8;
  color: #454545;
  font-family: "Noto sans JP", "sans-serif";
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 1.8rem;
    letter-spacing: 0.18rem;
  }
}

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

.fadeIn {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.is-show .fadeIn {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* -------- layout -------- */
.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
.l-header__wrapper {
  max-width: 1440px;
  margin: 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 60px;
  background-color: #FFFFFF;
  border-radius: 0 0 50px 50px;
}
@media screen and (max-width: 1240px) {
  .l-header__wrapper {
    padding: 20px 70px 20px 60px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__wrapper {
    padding: 10px 30px;
    margin: 0 0 0 30px;
    border-radius: 0 0 0px 50px;
  }
}
.l-header__logo {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header__logo:hover {
  opacity: 0.7;
}
.l-header__logo h1 {
  font-size: 1.2rem;
  letter-spacing: 0.12rem;
  line-height: 1;
  color: #bebebe;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .l-header__logo h1 {
    font-size: 1rem;
    letter-spacing: 0.01rem;
  }
}
.l-header__logo img {
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  .l-header__logo img {
    width: 120px;
  }
}
.l-header__reserveBtn {
  padding: 2px 20px;
  -webkit-box-shadow: 0 0px 20px 0 rgba(111, 111, 111, 0.25);
          box-shadow: 0 0px 20px 0 rgba(111, 111, 111, 0.25);
  background-color: #FFFFFF;
  border-radius: 10vh;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #DBDBDB;
}
.l-header__reserveBtn:hover {
  background-color: #DBDBDB;
  color: #FFFFFF;
}
.l-header__pc-navArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 1080px) {
  .l-header__pc-navArea {
    display: none;
  }
}
.l-header__g-navArea {
  position: relative;
  font-family: "Jost", "sans-serif";
  font-weight: 500;
}
.l-header__g-navArea .menu-g-nav-container .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  text-align: left;
}
.l-header__g-navArea .menu-g-nav-container .menu .menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
}
.l-header__g-navArea .menu-g-nav-container .menu .menu-item .sub-menu {
  position: absolute;
  top: 100%;
  z-index: 10;
  display: none;
  width: 300px;
  height: 0;
}
.l-header__g-navArea .menu-g-nav-container .menu .menu-item .sub-menu.active {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-header__g-navArea .menu-g-nav-container .menu .menu-item .sub-menu a {
  background-color: rgba(255, 255, 255, 0.9);
  color: #454545;
  padding: 10px 20px;
  border-bottom: 1px solid #F3EEEA;
  text-align: left;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.l-header__g-navArea .menu-g-nav-container .menu .menu-item .sub-menu a:hover {
  color: #DBDBDB;
}
.l-header__g-navArea .menu-g-nav-container .menu .menu-item .sub-menu a:hover:after {
  width: 100%;
  content: "";
  width: 0;
  display: block;
}
.l-header__sp-hum {
  position: absolute;
  right: 15px;
}
.l-header__sp-menu {
  position: fixed;
  z-index: 11;
  top: 0;
  left: 0;
  color: #DBDBDB;
  background-color: #F3EEEA;
  width: 100%;
  height: 100vh;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  overflow-y: scroll;
  text-align: left;
}
.l-header__sp-menu-cover {
  position: fixed;
  /* ブラウザの定位置に固定 */
  background: rgba(0, 0, 0, 0.5);
  /* 背景色を半透明の黒色に */
  width: 100%;
  /* 要素の横幅を画面全体に */
  height: 100%;
  /* 要素の高さを画面全体に */
  top: 0;
  /* 要素の固定位置をブラウザ最上部に合わせる */
  left: 0;
  /* 要素の固定位置をブラウザ左側に合わせる */
  z-index: 10;
  /* 要素をコンテンツより前面に（要調整） */
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.l-header__sp-menu-cover.active {
  opacity: 100;
  display: block;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  width: 100%;
}
.l-header__sp-menu.active {
  opacity: 100;
  display: block;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  width: 80%;
  right: 0;
  left: auto;
}
.l-header__sp-menu ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.l-header__sp-menu ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}
.l-header__sp-menu ul li .sub-menu {
  background-color: #E5E5E5;
}
.l-header__sp-menu ul li:last-child {
  padding-bottom: 0;
}
.l-header__sp-menu ul li:hover {
  background-color: #F3EEEA;
}
.l-header__sp-menu ul li a {
  display: block;
  color: #454545;
  font-weight: bold;
  padding: 1em 0;
  text-decoration: none;
  border-bottom: 1px solid #DBDBDB;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-left: 30px;
}
.l-header__sp-menu ul li a:hover {
  background-color: #FFFFFF;
}
.l-header__sp-menu ul .oya a {
  position: relative;
  background-color: #F3EEEA;
}
.l-header__sp-menu ul .oya a::before {
  position: absolute;
  right: 10px;
  content: "+";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #5DD0EB;
  width: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header__sp-menu ul .oya a.click::before {
  content: "\f068";
}
.l-header__sp-menu ul .oya .ko a {
  font-size: 1.4rem;
  letter-spacing: 0.14;
  background-color: #FFFFFF;
  padding: 0.5em 0 0.5em 30px;
}
.l-header__sp-menu ul .oya .ko a::before {
  content: "-";
  position: static;
  padding-right: 10px;
}
.l-header__sp-menu .sub-menu {
  display: none;
}
.l-header__sp-menu-banner {
  margin: 10px;
}
.l-header__sp-menu-banner .sub {
  background-color: #5DD0EB;
  padding: 16px 10px;
  border: 2px solid #5DD0EB;
  border-radius: 1px;
  text-align: center;
  color: #FFFFFF;
}
.l-header__sp-menu-banner .sub:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #FFFFFF;
  color: #5DD0EB;
}
.l-header__sp-menu-banner .third {
  background-color: #F3EEEA;
  padding: 16px 10px;
  border: 2px solid #F3EEEA;
  border-radius: 5px;
  text-align: center;
  color: #FFFFFF;
  font-weight: bold;
}
.l-header__sp-menu-banner .third:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #FFFFFF;
  color: #F3EEEA;
}
.l-header__fix-pcBtn {
  position: fixed;
  right: 0;
  top: 30%;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 10px 1fr 10px 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 10px;
  z-index: 2;
}
.l-header__fix-nav {
  position: fixed;
  z-index: 100;
  bottom: 0;
  width: 100%;
  display: none;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (max-width: 768px) {
  .l-header__fix-nav {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.l-header__fix-nav-reserve {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #5DD0EB;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.5;
  padding: 12px 0 10px;
}
.l-header__fix-nav-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #DBDBDB;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.5;
  padding: 10px 0;
}

.l-footer__wrapper {
  padding: 60px 30px;
}
@media screen and (max-width: 768px) {
  .l-footer__wrapper {
    padding: 40px 30px;
  }
}
.l-footer__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 100px 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 100px;
}
@media screen and (max-width: 1080px) {
  .l-footer__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.l-footer__content-left {
  max-width: 500px;
}
.l-footer__content-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 40px;
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  .l-footer__content-logo {
    gap: 5px;
    margin-bottom: 20px;
  }
}
.l-footer__content-logo:hover {
  opacity: 0.5;
}
.l-footer__content-tel {
  font-size: 2.8rem;
  font-family: "Jost", "sans-serif";
  font-weight: light;
  color: #DBDBDB;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-footer__content-tel:hover {
  opacity: 0.5;
}
.l-footer__banner a {
  max-width: 240px;
  margin: 0 auto;
}
.l-footer__banner-btn {
  max-width: 400px;
  height: 100%;
  margin: 0 auto;
  padding-bottom: 30px;
}
.l-footer__banner-img {
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .l-footer__banner-img img {
    width: 240px;
    margin: 0 auto;
  }
}
.l-footer__copylite {
  font-size: 1.4rem;
  text-align: center;
  color: #454545;
  padding: 40px 0;
}

/* -------- object -------- */
/* -------- component -------- */
.c-grid-column__1-1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .c-grid-column__1-1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.c-grid-column__1-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
}
@media screen and (max-width: 768px) {
  .c-grid-column__1-2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.c-grid-column__1-3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3fr;
  grid-template-columns: 1fr 3fr;
}
@media screen and (max-width: 768px) {
  .c-grid-column__1-3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.c-grid-column__1-4 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4fr;
  grid-template-columns: 1fr 4fr;
}
@media screen and (max-width: 768px) {
  .c-grid-column__1-4 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.c-grid-column__2-1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
}
@media screen and (max-width: 768px) {
  .c-grid-column__2-1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.c-grid-column__4-3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4fr 3fr;
  grid-template-columns: 4fr 3fr;
}
@media screen and (max-width: 768px) {
  .c-grid-column__4-3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.c-grid-column__1-1-1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .c-grid-column__1-1-1 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: 100%;
  }
  .c-grid-column__1-1-1 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .c-grid-column__1-1-1 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .c-grid-column__1-1-1 > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .c-grid-column__1-1-1 > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
}
@media screen and (max-width: 480px) {
  .c-grid-column__1-1-1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.c-grid-column__1-1-1-1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .c-grid-column__1-1-1-1 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .c-grid-column__1-1-1-1 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .c-grid-column__1-1-1-1 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .c-grid-column__1-1-1-1 > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .c-grid-column__1-1-1-1 > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
}
@media screen and (max-width: 480px) {
  .c-grid-column__1-1-1-1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.c-grid-row {
  display: -ms-grid;
  display: grid;
}
.c-grid-row__1-1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

.c-grid-cc {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-grid-flexStart {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-grid-gap__10 {
  gap: 10px;
}
.c-grid-gap__15 {
  gap: 15px;
}
.c-grid-gap__20 {
  gap: 20px;
}
.c-grid-gap__30 {
  gap: 30px;
}
.c-grid-gap__40 {
  gap: 40px;
}
.c-grid-gap__60 {
  gap: 60px;
}
.c-grid-gap__100 {
  gap: 100px;
}
.c-grid-gap__20-10 {
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .c-grid-gap__20-10 {
    gap: 10px;
  }
}
.c-grid-gap__40-20 {
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .c-grid-gap__40-20 {
    gap: 20px;
  }
}
.c-grid-gap__60-20 {
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .c-grid-gap__60-20 {
    gap: 20px;
  }
}
.c-grid-gap__60-40 {
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .c-grid-gap__60-40 {
    gap: 40px;
  }
}
.c-grid-gap__80-20 {
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .c-grid-gap__80-20 {
    gap: 20px;
  }
}
.c-grid-gap__80-40 {
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .c-grid-gap__80-40 {
    gap: 40px;
  }
}
.c-grid-gap__100-40 {
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .c-grid-gap__100-40 {
    gap: 40px;
  }
}
.c-grid-gap__100-60 {
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .c-grid-gap__100-60 {
    gap: 60px;
  }
}

.c-gird-reverse__ab {
      grid-template-areas: "a b";
}
@media screen and (max-width: 768px) {
  .c-gird-reverse__ab {
        grid-template-areas: "b" "a";
  }
}

.c-grid-area__a {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: a;
}
.c-grid-area__b {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: b;
}
@media screen and (max-width: 768px){
  .c-grid-area__a {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .c-grid-area__b {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}
.c-grid-area__c {
  grid-area: c;
}

.c-inner__main {
  padding: 100px 15px;
}
@media screen and (max-width: 768px) {
  .c-inner__main {
    padding: 60px 30px;
  }
}
.c-inner__sub {
  padding: 60px 15px;
}
@media screen and (max-width: 768px) {
  .c-inner__sub {
    padding: 40px 30px;
  }
}
.c-inner__cw {
  max-width: 1120px;
}
.c-inner__cw-1330 {
  max-width: 1330px;
}
.c-inner__padding-b-120-60 {
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .c-inner__padding-b-120-60 {
    padding-bottom: 60px;
  }
}
.c-inner__margin-rl-60-30-0 {
  margin-right: 60px;
  margin-left: 60px;
}
@media screen and (max-width: 1080px) {
  .c-inner__margin-rl-60-30-0 {
    margin-right: 30px;
    margin-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .c-inner__margin-rl-60-30-0 {
    margin-right: 0px;
    margin-left: 0px;
  }
}
.c-inner__main-topOnly {
  padding: 100px 15px 0px;
}
@media screen and (max-width: 768px) {
  .c-inner__main-topOnly {
    padding: 60px 30px 0px;
  }
}

.c-margin__0a {
  margin: 0 auto;
}
.c-margin__0a00 {
  margin: 0 auto 0 0;
}
.c-margin-r__10 {
  margin-right: 10px;
}
.c-margin-l__30-0 {
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .c-margin-l__30-0 {
    margin-left: 0px;
  }
}
.c-margin-l__40-0 {
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .c-margin-l__40-0 {
    margin-left: 0px;
  }
}
.c-margin-t__30-20 {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .c-margin-t__30-20 {
    margin-top: 20px;
  }
}
.c-margin-b__10 {
  margin-bottom: 10px;
}
.c-margin-b__15 {
  margin-bottom: 15px;
}
.c-margin-b__20 {
  margin-bottom: 20px;
}
.c-margin-b__60 {
  margin-bottom: 60px;
}
.c-margin-b__20-10 {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .c-margin-b__20-10 {
    margin-bottom: 10px;
  }
}
.c-margin-b__20-15 {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .c-margin-b__20-15 {
    margin-bottom: 15px;
  }
}
.c-margin-b__30-20 {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .c-margin-b__30-20 {
    margin-bottom: 20px;
  }
}
.c-margin-b__30-0 {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .c-margin-b__30-0 {
    margin-bottom: 0px;
  }
}
.c-margin-b__60-40 {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .c-margin-b__60-40 {
    margin-bottom: 40px;
  }
}
.c-margin-b__40-20 {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .c-margin-b__40-20 {
    margin-bottom: 20px;
  }
}
.c-margin-b__40-30 {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .c-margin-b__40-30 {
    margin-bottom: 30px;
  }
}
.c-margin-b__100-60 {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .c-margin-b__100-60 {
    margin-bottom: 60px;
  }
}

.c-cw__pc {
  max-width: 1120px;
  margin: 0 auto;
}

.c-txt-bold {
  font-weight: bold;
}

.c-txt-size__18 {
  font-size: 1.8rem;
}
.c-txt-size__16 {
  font-size: 1.6rem;
  letter-spacing: 0.16rem;
}
.c-txt-size__14 {
  font-size: 1.4rem;
  letter-spacing: 0.14rem;
}
.c-txt-size__14-12 {
  font-size: 1.4rem;
  letter-spacing: 0.14rem;
}
@media screen and (max-width: 768px) {
  .c-txt-size__14-12 {
    font-size: 1.2rem;
    letter-spacing: 0.12rem;
  }
}
.c-txt-size__20 {
  font-size: 2rem;
  letter-spacing: 0.2rem;
}
.c-txt-size__24 {
  font-size: 2.4rem;
  letter-spacing: 0.24rem;
}
.c-txt-size__24-16 {
  font-size: 2.4rem;
  letter-spacing: 0.24rem;
}
@media screen and (max-width: 768px) {
  .c-txt-size__24-16 {
    font-size: 1.6rem;
    letter-spacing: 0.16rem;
  }
}
.c-txt-size__32 {
  font-size: 3.2rem;
}

.c-txt-f__sub {
  font-family: "Jost", "sans-serif";
}
.c-txt-f__en {
  font-family: "Jost", "sans-serif";
}

.c-txt-shadow {
  text-shadow: 0px 0px 10px rgba(94, 94, 94, 0.6235294118);
}

.c-txt-center {
  text-align: center;
}

.c-txt-lineHight__1 {
  line-height: 1;
}
.c-txt-lineHight__15 {
  line-height: 1.5;
}

.c-deco-card__hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 10px;
  overflow: hidden;
}
.c-deco-card__hover:hover {
  -webkit-box-shadow: 0 0px 20px 0 rgba(111, 111, 111, 0.25);
  box-shadow: 0 0px 20px 0 rgba(111, 111, 111, 0.25);
  opacity: 0.8;
}
.c-deco-card__hover:hover img {
  border-radius: 10px 10px 0 0;
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  -webkit-transition: 0.8s all;
  transition: 0.8s all;
}

.c-deco-link {
  border-bottom: 1px solid #5DD0EB;
  padding-bottom: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #5DD0EB;
  display: inline-block;
}
.c-deco-link:after {
  content: "\f08e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  padding-left: 5px;
}
.c-deco-link:hover {
  opacity: 0.5;
}

.c-deco-link-white {
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #FFFFFF;
  display: inline-block;
}
.c-deco-link-white:after {
  content: "\f08e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  padding-left: 5px;
}
.c-deco-link-white:hover {
  opacity: 0.5;
}

.c-deco-waku__main {
  background-image: url(./images/top/about-bg.webp);
  background-size: cover;
  background-position: center;
  padding: 30px;
  border-radius: 1px;
}
@media screen and (max-width: 768px) {
  .c-deco-waku__main {
    padding: 15px;
  }
}

.c-btn__fix-pcBtn {
  display: inline-block;
  text-align: center;
  padding: 16px 25px 16px 30px;
  border-radius: 10px 0 0 10px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1607843137);
  z-index: 2;
}
.c-btn__fix-pcBtn-img {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .c-btn__fix-pcBtn {
    display: none;
  }
}
.c-btn__shoshin {
  background-color: #5DD0EB;
  color: #FFFFFF;
}
.c-btn__shoshin:hover {
  background-color: #FFFCFC;
  color: #DBDBDB;
}
.c-btn__yoyaku {
  background-color: #5DD0EB;
  color: #FFFFFF;
}
.c-btn__yoyaku:hover {
  background-color: #FFFCFC;
  color: #5DD0EB;
}
.c-btn__arrowline {
  color: #5DD0EB;
  display: block;
  max-width: 200px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn__arrowline:hover {
  color: #DBDBDB;
}
.c-btn__arrowline:hover .c-btn__arrowline-arrow {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-bottom: 1px solid #DBDBDB;
  border-right: 1px solid #DBDBDB;
  margin: 0 0 0 0px;
  width: 210px;
}
.c-btn__arrowline-arrow {
  height: 15px;
  border-bottom: 1px solid #5DD0EB;
  border-right: 1px solid #5DD0EB;
  /*傾きを調節*/
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
  /*下線矢印をテキストに合わせてうまい具合にはめる*/
  margin: 0 0 0 -10px;
}
.c-btn__arrowline-white {
  color: #FFFFFF;
  display: block;
  max-width: 200px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn__arrowline-white:hover .c-btn__arrowline-white-arrow {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 0 0 0px;
  width: 210px;
}
.c-btn__arrowline-white-arrow {
  height: 15px;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  /*傾きを調節*/
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
  /*下線矢印をテキストに合わせてうまい具合にはめる*/
  margin: 0 0 0 -10px;
}
.c-btn__list {
  color: #5DD0EB;
  display: block;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: bold;
}
.c-btn__list:hover {
  color: #DBDBDB;
}
.c-btn__list::before {
  content: "・";
  margin-right: 10px;
}
.c-btn__list::after {
  content: "";
}
.c-btn__sub {
  border-bottom: 1px solid #5DD0EB !important;
  color: #5DD0EB !important;
}
.c-btn__sub:hover {
  color: #DBDBDB !important;
  border-bottom: 1px solid #DBDBDB !important;
}
.c-btn__small {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 50%;
  padding: 8px 30px 8px 20px;
  -webkit-box-shadow: 0 0px 20px 0 rgba(111, 111, 111, 0.25);
          box-shadow: 0 0px 20px 0 rgba(111, 111, 111, 0.25);
  color: #5DD0EB;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: bold;
  background-color: #FFFFFF;
  font-family: "Jost", "sans-serif";
}
@media screen and (max-width: 480px) {
  .c-btn__small {
    width: 100%;
    padding: 8px 30px 8px 20px;
  }
}
.c-btn__small:hover {
  color: #FFFFFF;
  background-color: #5DD0EB;
}
.c-btn__width-300px {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .c-btn__width-300px {
    width: 100%;
  }
}
.c-btn__add-arrow-right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-btn__add-arrow-right::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 8%;
  font-size: 1.4rem;
}
.c-btn__add-arrow-right:hover::after {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  right: 5%;
}
.c-btn__add-arrow-bottom {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-btn__add-arrow-bottom::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 2%;
  font-size: 1.4rem;
  font-weight: 900;
}

.c-btn__main-subcolor {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  padding: 18px 60px;
  -webkit-box-shadow: 0 0px 20px 0 rgba(111, 111, 111, 0.25);
          box-shadow: 0 0px 20px 0 rgba(111, 111, 111, 0.25);
  color: #FFFFFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 500;
  color: #DBDBDB;
  background-color: #FFFFFF;
  border-radius: 5px;
}
@media screen and (max-width: 480px) {
  .c-btn__main-subcolor {
    width: 100%;
    padding: 16px 20px;
  }
}
.c-btn__main-subcolor:hover {
  color: #FFFFFF;
  background-color: #DBDBDB;
}

.c-btn__main {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  padding: 18px 60px;
  -webkit-box-shadow: 0 0px 20px 0 rgba(111, 111, 111, 0.25);
          box-shadow: 0 0px 20px 0 rgba(111, 111, 111, 0.25);
  color: #FFFFFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 500;
  color: #5DD0EB;
  background-color: #FFFFFF;
  border-radius: 5px;
}
@media screen and (max-width: 480px) {
  .c-btn__main {
    width: 100%;
    padding: 16px 20px;
  }
}
.c-btn__main:hover {
  color: #FFFFFF;
  background-color: #5DD0EB;
}

.c-parts__hum-1 {
  display: none;
  position: absolute;
  z-index: 100;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}
@media screen and (max-width: 1240px) {
  .c-parts__hum-1 {
    display: block;
  }
}
.c-parts__hum-1 > span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #454545;
  width: 45%;
}
.c-parts__hum-1 > span:nth-of-type(1) {
  top: 15px;
}
.c-parts__hum-1 > span:nth-of-type(2) {
  top: 23px;
}
.c-parts__hum-1 > span:nth-of-type(3) {
  top: 31px;
}
.c-parts__hum-1__active > span:nth-of-type(1) {
  top: 18px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 50%;
}
.c-parts__hum-1__active > span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}
.c-parts__hum-1__active > span:nth-of-type(3) {
  top: 30px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 50%;
}
.c-parts__hum-2 {
  display: none;
  position: fixed;
  top: 15px;
  z-index: 100;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 1px;
  background-color: #5DD0EB;
}
@media screen and (max-width: 1080px) {
  .c-parts__hum-2 {
    display: block;
  }
}
.c-parts__hum-2 > span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 1px;
  border-radius: 2px;
  background: #FFFFFF;
  width: 45%;
}
.c-parts__hum-2 > span:nth-of-type(1) {
  top: 14px;
}
.c-parts__hum-2 > span:nth-of-type(2) {
  top: 20px;
}
.c-parts__hum-2 > span:nth-of-type(3) {
  top: 26px;
}
.c-parts__hum-2__menu {
  position: absolute;
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  /*アニメーションの設定*/
  top: 30px;
  color: #FFFFFF;
  line-height: 1;
  font-family: "Jost", "sans-serif";
  font-weight: 300;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  left: 8px;
}
.c-parts__hum-2__active > span:nth-of-type(1) {
  top: 16px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 50%;
}
.c-parts__hum-2__active > span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}
.c-parts__hum-2__active > span:nth-of-type(3) {
  top: 28px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 50%;
}
.c-parts__tel {
  font-size: 2.8rem;
  font-family: "Jost", "sans-serif";
  font-weight: light;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1.5;
}
.c-parts__tel:hover {
  opacity: 0.7;
}
.c-parts__verticalLine {
  width: 1px;
  height: 85px;
  background-color: #FFFFFF;
}

.c-subpage__bg-sub {
  background-color: #FFFCFC;
}
.c-subpage__h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #454545;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.8rem;
  letter-spacing: 0.2rem;
  font-family: "Jost", "sans-serif";
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .c-subpage__h2 {
    margin-bottom: 20px;
  }
}
.c-subpage__h2::before {
  content: "";
  display: block;
  width: 32px;
  height: 29.67px;
  background-image: url(./images/logo-icon.webp);
  background-position: center;
  background-size: cover;
}
.c-subpage__h3 {
  position: relative;
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: bold;
  color: #DBDBDB;
  border-bottom: 3px solid #F3EEEA;
  padding: 10px;
  font-family: "Jost", "sans-serif";
  color: #454545;
}
.c-subpage__h3::before {
  content: "";
  width: 20%;
  height: 3px;
  background-color: #DBDBDB;
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  border-radius: 10vh;
}
@media screen and (max-width: 768px) {
  .c-subpage__h3 {
    font-size: 2rem;
  }
}
.c-subpage__h3-waku {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .c-subpage__h3-waku {
    padding: 30px;
  }
}
.c-subpage__h4 {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
  color: #5DD0EB;
}
@media screen and (max-width: 768px) {
  .c-subpage__h4 {
    font-size: 1.8rem;
  }
}
.c-subpage__h4-waku {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .c-subpage__h4-waku {
    padding: 30px;
  }
}
.c-subpage__p-waku {
  padding: 40px;
  border-radius: 30px;
  border: 1px solid #DBDBDB;
}
@media screen and (max-width: 768px) {
  .c-subpage__p-waku {
    padding: 30px;
  }
}
.c-subpage__p-normal {
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .c-subpage__p-normal {
    padding-left: 0px;
  }
}
.c-subpage__countlist {
  line-height: 2;
  counter-reset: listnum;
  /* カウンターをリセット */
  list-style: none;
  /* 標準のスタイルは消す */
}
.c-subpage__countlist li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-subpage__countlist li::before {
  counter-increment: listnum;
  /* counter-resetと同じ文字列 */
  content: counter(listnum) ".";
  /* カウントした数に応じて番号を表示 */
  font-weight: bold;
  color: #CADC7F;
  margin-right: 10px;
}
.c-subpage__checklist {
  line-height: 2;
  counter-reset: listnum;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-subpage__checklist::before {
  content: " \f058";
  font-weight: 400;
  font-family: "Font Awesome 6 Free";
  color: #5DD0EB;
  margin-right: 10px;
}
.c-subpage__grid-clm-1-4 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 4fr;
  grid-template-columns: 1fr 4fr;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .c-subpage__grid-clm-1-4 {
    gap: 20px;
  }
}
.c-subpage__grid-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
.c-subpage__img {
  border-radius: 5px;
}
.c-subpage__position {
  color: #5DD0EB;
  margin-bottom: 0 !important;
}
.c-subpage__name {
  color: #5DD0EB;
  font-size: 2.4rem;
  letter-spacing: 0.24rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .c-subpage__name {
    font-size: 2rem;
    letter-spacing: 0.2rem;
  }
}

.c-bg__color-sub {
  background-color: #FFFCFC;
}
.c-bg__color-third {
  background-color: #C8EFED;
}
.c-bg__color-gradation {
  background: transparent -webkit-gradient(linear, left top, right top, from(#CADC7F), to(#BADECD)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #CADC7F 0%, #BADECD 100%) 0% 0% no-repeat padding-box;
}
.c-bg__main {
  background-image: url(./images/bg-1.webp);
  background-position: center;
  background-size: cover;
  background-repeat: repeat;
}
.c-bg__blur {
  background-color: rgba(255, 255, 255, 0.379);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.c-flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .c-flex-row__tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
@media screen and (max-width: 480px) {
  .c-flex-row__sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

.c-flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

.c-flex-cc {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-flex-lc {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-flex-cl {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-flex-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.c-flex-spaceBetween {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-flex-gap__10 {
  gap: 10px;
}
.c-flex-gap__10-5 {
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .c-flex-gap__10-5 {
    gap: 5px;
  }
}
.c-flex-gap__20 {
  gap: 20px;
}
.c-flex-gap__30 {
  gap: 30px;
}
.c-flex-gap__40 {
  gap: 40px;
}
.c-flex-gap__100 {
  gap: 100px;
}
.c-flex-gap__20-15 {
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .c-flex-gap__20-15 {
    gap: 15px;
  }
}
.c-flex-gap__30-20 {
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .c-flex-gap__30-20 {
    gap: 20px;
  }
}
.c-flex-gap__40-20 {
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .c-flex-gap__40-20 {
    gap: 20px;
  }
}

.c-front-ttl__main {
  color: #454545;
  font-size: 1.4rem;
  letter-spacing: 0.14rem;
}
.c-front-ttl__main:before {
  content: "ー";
  color: #5DD0EB;
}
.c-front-ttl__main-w {
  color: #FFFFFF;
  font-size: 1.4rem;
  letter-spacing: 0.14rem;
}
.c-front-ttl__main-w:before {
  content: "ー";
  color: #FFFFFF;
  margin-right: 5px;
}
.c-front-ttl__sub {
  color: #454545;
  font-size: 16.2rem;
  letter-spacing: 0.1rem;
  font-family: "Jost", "sans-serif";
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .c-front-ttl__sub {
    font-size: 7rem;
  }
}
.c-front-ttl__sub-w {
  color: #FFFFFF;
  font-size: 16.2rem;
  letter-spacing: 0.1rem;
  font-family: "Jost", "sans-serif";
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .c-front-ttl__sub-w {
    font-size: 7rem;
  }
}

.c-front-h3 {
  font-size: 1.4rem;
  letter-spacing: 0.14rem;
  color: #454545;
  font-family: "Jost", "sans-serif";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.c-front-h3:after {
  content: "";
  background-color: #454545;
  height: 1px;
  width: 210px;
}
@media screen and (max-width: 768px) {
  .c-front-h3:after {
    width: 100%;
  }
}

.c-table-description {
  width: 100%;
}
.c-table-description__row {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
  border-bottom: 3px solid #F3EEEA;
}
.c-table-description__head {
  font-weight: bold;
}
.c-table-description__head::before {
  position: absolute;
  background-color: #DBDBDB;
  border-radius: 5px;
  content: "";
  display: block;
  height: 3px;
  margin-top: 10px;
}
/*-------- 色指定 ---------*/
:root {
  --s-bg1: #eaf4fc;
  /*ストライプ背景の色*/
}

.c-table-simple {
  color: #454545;
  background-color: white;
  border: 2px solid #5DD0EB;
}

.c-table-simple thead {
  border-bottom: 2px solid #5DD0EB;
}

.c-table-simple th,
.c-table-simple tr:nth-child(even) {
  background-color: #F3EEEA;
}

.c-table-simple table td,
.c-table-simple table,
.c-table-simple table th {
  text-align: center;
  border-color: #5DD0EB;
}

/*-------- 色指定 ---------*/
:root {
  --f-text: #998671;
  /*文字の色*/
  --f-line: #e29399;
  /*線の色*/
  --f-bg1: #e29399;
  /*タイトル行の背景色*/
  --f-bg2: #fef4f4;
  /*ストライプの背景色*/
}

.c-table-fem table {
  color: #454545;
  border: 2px solid #DBDBDB;
  background-color: white;
}

.c-table-fem table th {
  border: 1px dotted white;
}

.c-table-fem thead {
  border-bottom: 1px solid #DBDBDB;
}

.c-table-fem table td {
  border: 1px dotted #DBDBDB;
}

.c-table-fem thead {
  color: white;
}

.c-table-fem th {
  background-color: #DBDBDB;
}

.c-table-fem tr:nth-child(even) {
  background-image: url(./images/top/about-bg.webp);
  background-size: cover;
  background-position: center;
}

.c-color__main {
  color: #5DD0EB;
}
.c-color__sub {
  color: #DBDBDB;
}
.c-color__white {
  color: #FFFFFF;
}
.c-color__black {
  color: #2f2f2f;
}

.c-border-b__main {
  border-bottom: 1px solid #B4B4B4;
  padding-bottom: 15px;
}
.c-border-b__sub {
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 10px;
}

.c-border-radius__10vh {
  border-radius: 10vh;
}
.c-border-radius__100vh {
  border-radius: 100vh;
}
.c-border-radius__5px {
  border-radius: 5px;
}

.c-width__100par {
  width: 100%;
}

.c-price-table table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.c-price-table table tr {
  background-color: #fff;
  border-bottom: 2px solid #fff;
}
.c-price-table table tr:nth-child(even) {
  background-color: #FFFAF3;
}
.c-price-table table th,
.c-price-table table td {
  padding: 0.35em 1em;
}
.c-price-table table thead th {
  padding: 1em;
}
.c-price-table table thead tr {
  background-color: #E50061;
  color: #fff;
}
.c-price-table table tbody th {
  text-align: left;
}
.c-price-table .txt {
  text-align: left;
}
.c-price-table .day {
  text-align: center;
}
.c-price-table .price {
  text-align: center;
  color: #E50061;
}
@media screen and (max-width: 768px) {
  .c-price-table table {
    border: 0;
    width: 100%;
  }
  .c-price-table table th {
    background-color: #E50061;
    display: block;
    border-right: none;
  }
  .c-price-table table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .c-price-table table tr {
    display: block;
    margin-bottom: 0.625em;
    border: 1px solid #E50061;
  }
  .c-price-table table td {
    border-bottom: 1px dotted #bbb;
    display: block;
    text-align: right;
    position: relative;
    padding: 1.5em 1em 1.5em 8em;
    border-right: none;
  }
  .c-price-table table td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    color: #000;
  }
  .c-price-table table td:last-child {
    border-bottom: 0;
  }
  .c-price-table table tbody th {
    color: #fff;
    padding: 1em;
  }
  .c-price-table table tr:nth-child(even) {
    background-color: #fff;
  }
}

/* -------- project -------- */
.p-subpage-fv {
  position: relative;
  height: 240px;
}
@media screen and (max-width: 768px) {
  .p-subpage-fv {
    height: 180px;
  }
}
.p-subpage-fv__img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 240px;
  border-radius: 0px;
}
@media screen and (max-width: 768px) {
  .p-subpage-fv__img {
    height: 180px;
  }
}
.p-subpage-fv__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 8;
  white-space: nowrap;
  width: 1080px;
}
@media screen and (max-width: 1080px) {
  .p-subpage-fv__ttl {
    width: auto;
    top: 35%;
    left: 30px;
    transform: translate(0%);
    -webkit-transform: translate(0%);
    -ms-transform: translate(0%);
  }
}

.p-subpage-breadcrumb {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2px 15px;
}
.p-subpage-breadcrumb #breadcrumbs span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  font-size: 1.4rem;
  letter-spacing: 0.14rem;
}
@media screen and (max-width: 768px) {
  .p-subpage-breadcrumb #breadcrumbs span {
    font-size: 1rem;
    letter-spacing: 0.1rem;
  }
}

.p-subpage-main__wrapper {
  padding: 80px 15px;
}
@media screen and (max-width: 768px) {
  .p-subpage-main__wrapper {
    padding: 50px 30px;
  }
}
.p-subpage-main__content {
  display: -ms-grid;
  display: grid;
  gap: 90px;
}
@media screen and (max-width: 768px) {
  .p-subpage-main__content {
    gap: 50px;
  }
}
.p-subpage-main__content h2 {
  color: #5DD0EB;
  background-color: #F3EEEA;
  font-size: 2.8rem;
  letter-spacing: 0.28rem;
  padding: 5px 20px;
  margin-bottom: 40px;
  border-radius: 1px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-subpage-main__content h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}
.p-subpage-main__content h3 {
  position: relative;
  font-size: 2.2rem;
  line-height: 1.5;
  color: #5DD0EB;
  border-bottom: 1px solid #F3EEEA;
  padding: 10px;
  margin-bottom: 20px;
  font-weight: bold;
}
.p-subpage-main__content h3::before {
  content: "";
  width: 20%;
  height: 1px;
  background-color: #5DD0EB;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  border-radius: 10vh;
}
@media screen and (max-width: 768px) {
  .p-subpage-main__content h3 {
    font-size: 1.8rem;
  }
}
.p-subpage-main__content h3-waku {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-subpage-main__content h3-waku {
    padding: 30px;
  }
}
.p-subpage-main__content h4 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #5DD0EB;
  line-height: 2;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-subpage-main__content h4 {
    font-size: 1.6rem;
  }
}
.p-subpage-main__content img {
  border-radius: 5px;
}
.p-subpage-main__content p {
  margin-bottom: 20px;
}
.p-subpage-main__content ul {
  list-style: decimal;
}
.p-subpage-main__content dl {
  margin-left: 24px;
  margin-bottom: 10px;
}
.p-subpage-main__content dl > dt {
  display: list-item;
}
.p-subpage-main__content ol {
  margin-bottom: 10px;
  padding-left: 24px;
}
.p-subpage-main__content ol > li {
  list-style-type: decimal;
  margin-left: 10px;
}
.p-subpage-main__content ul > li {
  list-style-type: disc;
  margin-left: 24px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-subpage-main__content ul > li {
    margin-bottom: 5px;
  }
}
.p-subpage-main a {
  border-bottom: 1px solid #454545;
  display: inline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: bold;
}
.p-subpage-main a:hover {
  color: #DBDBDB;
  border-bottom: 1px solid #DBDBDB;
}

.p-subpage-404 {
  text-align: center;
}
.p-subpage-404__txt {
  margin-bottom: 40px;
}
.p-subpage-404__btn {
  max-width: 400px;
  margin: 0 auto;
}

/* --------fv-------- */
.p-front-fv {
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .p-front-fv {
    height: auto;
  }
}
.p-front-fv h2 {
  max-width: 500px;
  margin: 25vh auto;
}
@media screen and (max-width: 768px) {
  .p-front-fv h2 {
    max-width: 240px;
  }
}

/* --------当院について-------- */
.p-front-about {
  background-color: #5DD0EB;
  border-radius: 50px 50px 0 0;
}
@media screen and (max-width: 768px) {
  .p-front-about__copy {
    font-size: 2rem;
    letter-spacing: 0.2rem;
  }
}
.p-front-about__img {
  width: 150px;
  margin-bottom: 20px;
}
.p-front-about__valueTxt {
  font-size: 3.6rem;
  letter-spacing: 0.36rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-front-about__valueTxt {
    font-size: 2rem;
    letter-spacing: 0.2rem;
  }
}

/* --------company-------- */
.p-front-company {
  background-color: #FFFFFF;
  border-radius: 50px 50px 0 0;
}
.p-front-company__table tr {
  border-bottom: 1px solid #DBDBDB;
}
.p-front-company__table th, .p-front-company__table td {
  padding: 24px 0;
  border: none;
}
.p-front-company__table th {
  width: 30%;
}

.p-clinic-about__content {
  text-align: center;
}
.p-clinic-about__content h3 {
  margin-bottom: 30px;
  color: #454545;
  line-height: 1.5;
}

.p-clinic-dr {
  background-color: #FFFCFC;
}
.p-clinic-dr__inner {
  padding: 100px 15px;
}
@media screen and (max-width: 768px) {
  .p-clinic-dr__inner {
    padding: 60px 15px;
  }
}
.p-clinic-dr__card {
  background-color: #FFFFFF;
  border-radius: 3rem;
  padding: 60px;
  border-bottom: 8px solid #ECF6EE;
}
@media screen and (max-width: 768px) {
  .p-clinic-dr__card {
    padding: 30px;
  }
}
.p-clinic-dr__card-ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  color: #454545;
  line-height: 1.5;
  gap: 10px;
  border-bottom: 3px solid #F3EEEA;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.p-clinic-dr__card-ttl::before {
  content: "";
  width: 20%;
  height: 3px;
  background-color: #DBDBDB;
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  border-radius: 10vh;
}
.p-clinic-dr__card-ttl-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-clinic-dr__card-ttl-name-furigana {
  font-size: 1.4rem;
}

.p-clinic-facility {
  background-color: #FFFFFF;
  /*各スライドのスタイル*/
  /*アクティブなときのスタイル*/
  /*矢印ボタンの色を変更*/
}
.p-clinic-facility .swiper-container {
  width: 100%;
  height: 600px;
  margin: 0.5rem auto;
  overflow: hidden;
}
.p-clinic-facility .swiper-container img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-clinic-facility .swiper-container {
    height: 300px;
  }
}
.p-clinic-facility .swiper-thumbnail {
  width: 100%;
  height: 200px;
  margin: 0.5rem auto;
  overflow: hidden;
}
.p-clinic-facility .swiper-thumbnail img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-clinic-facility .swiper-thumbnail {
    height: 100px;
  }
}
.p-clinic-facility .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*テキストの色と太さを指定*/
  color: #212121;
  font-weight: bold;
  font-size: max(0.5rem, 1.5vw);
}
.p-clinic-facility .swiper-thumbnail .swiper-slide {
  opacity: 0.2;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.p-clinic-facility .swiper-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.p-clinic-facility .swiper-button-next,
.p-clinic-facility .swiper-button-prev {
  color: #212121;
}

/*コンテナ要素のスタイル*/
.p-clinic-recruit {
  background-color: #FFFCFC;
}
.p-clinic-recruit__inner {
  padding: 100px 15px;
}
@media screen and (max-width: 768px) {
  .p-clinic-recruit__inner {
    padding: 60px 15px;
  }
}
.p-clinic-recruit__description {
  background-color: #FFFFFF;
  padding: 60px;
  border-radius: 3rem;
}
@media screen and (max-width: 768px) {
  .p-clinic-recruit__description {
    padding: 40px 30px;
  }
}

.p-archive-list__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 100px 1fr;
  grid-template-columns: 2fr 1fr;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .p-archive-list__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.p-archive-content {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-archive-content {
    gap: 10px;
  }
}
.p-archive-content__wrapper {
  display: -ms-grid;
  display: grid;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .p-archive-content__wrapper {
    gap: 60px;
  }
}
.p-archive-content__ttl {
  font-size: 2.4rem;
  letter-spacing: 0.24rem;
}
@media screen and (max-width: 768px) {
  .p-archive-content__ttl {
    font-size: 1.8rem;
    letter-spacing: 0.18rem;
  }
}
.p-archive-content__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.p-archive-content__category-category {
  font-size: 1.6rem;
  border-radius: 3px;
  background-color: #5DD0EB;
  color: #FFFFFF;
  text-align: center;
  padding: 1px 10px;
}
.p-archive-content__category-category.close {
  background-color: #DBDBDB;
}
.p-archive-content h3 {
  font-size: 2.4rem;
  letter-spacing: 0.24rem;
}
@media screen and (max-width: 768px) {
  .p-archive-content h3 {
    font-size: 1.8rem;
    letter-spacing: 0.18rem;
  }
}
.p-archive-content__btn {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .p-archive-content__btn {
    width: 100%;
  }
}

.p-archive-sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 60px;
}
.p-archive-sidebar h2 {
  color: #5DD0EB;
  font-size: 1.6rem;
  letter-spacing: 0.16rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-archive-sidebar h2 {
    font-size: 1.4rem;
    letter-spacing: 0.14rem;
    line-height: 2;
  }
}
.p-archive-sidebar p {
  color: #5DD0EB;
  font-family: "Jost", "sans-serif";
  font-size: 4rem;
  letter-spacing: 0.4rem;
  font-weight: 300;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-archive-sidebar p {
    font-size: 2.8rem;
    letter-spacing: 0.28rem;
    line-height: 1;
  }
}
.p-archive-sidebar ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dotted #ACACAC;
}
.p-archive-sidebar ul li:hover a {
  color: #5DD0EB;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-archive-sidebar ul li::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #DBDBDB;
  margin-right: 20px;
}
.p-archive-sidebar select {
  width: 100%;
  font-size: 1.6rem;
  font-family: "Noto sans JP", "sans-serif";
  border: 0px;
  padding-left: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-archive-sidebar select {
    font-size: 1.4rem;
  }
}

.p-single-list__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 100px 1fr;
  grid-template-columns: 2fr 1fr;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .p-single-list__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.p-single-content {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-single-content {
    gap: 10px;
  }
}
.p-single-content__wrapper {
  display: -ms-grid;
  display: grid;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .p-single-content__wrapper {
    gap: 60px;
  }
}
.p-single-content__category {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
.p-single-content__category-category {
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 3px;
  background-color: #F3EEEA;
  color: #454545;
  text-align: center;
  padding: 1px 10px;
}
.p-single-content__category-category.close {
  background-color: #DBDBDB;
}
.p-single-content__btn {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .p-single-content__btn {
    width: 100%;
  }
}

.p-single-sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 60px;
}
.p-single-sidebar h2 {
  color: #5DD0EB;
  font-size: 1.6rem;
  letter-spacing: 0.16rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-single-sidebar h2 {
    font-size: 1.4rem;
    letter-spacing: 0.14rem;
    line-height: 2;
  }
}
.p-single-sidebar p {
  color: #5DD0EB;
  font-family: "Jost", "sans-serif";
  font-size: 4rem;
  letter-spacing: 0.4rem;
  font-weight: 300;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-single-sidebar p {
    font-size: 2.8rem;
    letter-spacing: 0.28rem;
    line-height: 1;
  }
}
.p-single-sidebar ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dotted #ACACAC;
}
.p-single-sidebar ul li:hover a {
  color: #5DD0EB;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-single-sidebar ul li::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #DBDBDB;
  margin-right: 20px;
}
.p-single-sidebar select {
  width: 100%;
  font-size: 1.6rem;
  font-family: "Noto sans JP", "sans-serif";
  border: 0px;
  padding-left: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-single-sidebar select {
    font-size: 1.4rem;
  }
}

.p-single-content__pagebtn {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  height: 60px;
}
.p-single-content__pagebtn-previous a {
  position: relative;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  padding: 15px 60px;
  border: 1px solid #5DD0EB;
  color: #5DD0EB;
  border-radius: 100vh;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #FFFFFF;
  width: 300px;
}
.p-single-content__pagebtn-previous a::before {
  content: "\f053";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 20px;
  top: 28%;
  font-size: 1.4rem;
}
@media screen and (max-width: 480px) {
  .p-single-content__pagebtn-previous a::before {
    left: 10px;
  }
}
@media screen and (max-width: 480px) {
  .p-single-content__pagebtn-previous a {
    width: 95%;
    padding: 10px 20px;
  }
}
.p-single-content__pagebtn-previous a:hover {
  color: #fff;
  background-color: #5DD0EB;
}
.p-single-content__pagebtn-previous a:hover a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
}
.p-single-content__pagebtn-next a {
  position: relative;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  padding: 15px 60px;
  border: 1px solid #5DD0EB;
  color: #5DD0EB;
  border-radius: 100vh;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #FFFFFF;
  width: 300px;
}
.p-single-content__pagebtn-next a::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 28%;
  font-size: 1.4rem;
}
@media screen and (max-width: 480px) {
  .p-single-content__pagebtn-next a::before {
    right: 10px;
  }
}
@media screen and (max-width: 480px) {
  .p-single-content__pagebtn-next a {
    width: 95%;
    padding: 10px 20px;
  }
}
.p-single-content__pagebtn-next a:hover {
  color: #fff;
  background-color: #5DD0EB;
}
.p-single-content__pagebtn-next a:hover a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
}

.pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination .nav-links > span {
  background-color: #5DD0EB;
  color: #FFFFFF;
  padding: 10px 16px;
  border-radius: 1px;
  border: 2px solid #5DD0EB;
}
.pagination .nav-links > a {
  color: #DBDBDB;
  padding: 10px 16px;
  border: 2px solid #5DD0EB;
  border-radius: 1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination .nav-links > a:hover {
  background-color: #5DD0EB;
  color: #FFFFFF;
}

.p-access-hour .p-hourAccess__hours-table {
  width: 100%;
  /* 最後のth, td要素に適用するためのCSS */
}
@media screen and (max-width: 768px) {
  .p-access-hour .p-hourAccess__hours-table {
    margin: 0 auto;
  }
}
.p-access-hour .p-hourAccess__hours-table th,
.p-access-hour .p-hourAccess__hours-table td {
  padding: 20px 0px 20px 30px;
  text-align: left;
  font-size: 1.8rem;
  letter-spacing: 0.18rem;
  font-family: "Jost", "sans-serif";
  font-weight: 300;
  border-bottom: 1px solid #5DD0EB;
}
@media screen and (max-width: 768px) {
  .p-access-hour .p-hourAccess__hours-table th,
  .p-access-hour .p-hourAccess__hours-table td {
    padding: 10px 0px 10px 20px;
  }
}
@media screen and (max-width: 480px) {
  .p-access-hour .p-hourAccess__hours-table th,
  .p-access-hour .p-hourAccess__hours-table td {
    padding: 5px 0px 5px 10px;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
  }
}
.p-access-hour .p-hourAccess__hours-table th {
  width: 40%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-access-hour .p-hourAccess__hours-table th {
    width: auto;
    text-align: left;
  }
}
.p-access-hour .p-hourAccess__hours-table th:last-child,
.p-access-hour .p-hourAccess__hours-table td:last-child {
  padding: 20px 30px 20px 30px;
}
@media screen and (max-width: 768px) {
  .p-access-hour .p-hourAccess__hours-table th:last-child,
  .p-access-hour .p-hourAccess__hours-table td:last-child {
    padding: 10px 20px 10px 10px;
  }
}
@media screen and (max-width: 480px) {
  .p-access-hour .p-hourAccess__hours-table th:last-child,
  .p-access-hour .p-hourAccess__hours-table td:last-child {
    padding: 5px 10px 5px 5px;
  }
}
.p-access-hour .p-hourAccess__hours-table thead {
  /* 最後のth, td要素に適用するためのCSS */
}
.p-access-hour .p-hourAccess__hours-table thead th,
.p-access-hour .p-hourAccess__hours-table thead td {
  padding: 10px 0px 10px 30px;
}
@media screen and (max-width: 768px) {
  .p-access-hour .p-hourAccess__hours-table thead th,
  .p-access-hour .p-hourAccess__hours-table thead td {
    padding: 10px 0px 10px 20px;
  }
}
@media screen and (max-width: 480px) {
  .p-access-hour .p-hourAccess__hours-table thead th,
  .p-access-hour .p-hourAccess__hours-table thead td {
    padding: 5px 0px 5px 10px;
  }
}
.p-access-hour .p-hourAccess__hours-table thead th:last-child,
.p-access-hour .p-hourAccess__hours-table thead td:last-child {
  padding: 10px 30px 10px 30px;
}
@media screen and (max-width: 768px) {
  .p-access-hour .p-hourAccess__hours-table thead th:last-child,
  .p-access-hour .p-hourAccess__hours-table thead td:last-child {
    padding: 10px 20px 10px 10px;
  }
}
@media screen and (max-width: 480px) {
  .p-access-hour .p-hourAccess__hours-table thead th:last-child,
  .p-access-hour .p-hourAccess__hours-table thead td:last-child {
    padding: 5px 10px 5px 5px;
  }
}

.p-access-map__mapArea {
  height: 300px;
}
.p-access-map__mapArea > iframe {
  border-radius: 5px;
}

.p-access-access__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .p-access-access__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.p-access-access__img {
  border-radius: 5px;
}
.p-access-access__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.p-access-access__content dl {
  width: 100%;
  margin: 0;
}
.p-access-access__content a {
  border-bottom: none;
  font-weight: 400;
}
.p-access-access__content a:hover {
  color: #DBDBDB;
  border-bottom: none;
}

.p-case-list__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 60px 1fr;
  grid-template-columns: 3fr 1fr;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .p-case-list__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.p-case-content {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  border-radius: 1rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 10px;
  overflow: hidden;
}
.p-case-content__img {
  overflow: hidden;
}
.p-case-content__img img {
  border-radius: 10px 10px 0 0;
}
.p-case-content__wrapper {
  display: -ms-grid;
  display: grid;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .p-case-content__wrapper {
    gap: 60px;
  }
}
.p-case-content__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.p-case-content__category-category {
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 3px;
  background-color: #F3EEEA;
  color: #454545;
  text-align: center;
  padding: 1px 10px;
}
.p-case-content__category-date {
  font-size: 1.2rem;
}
.p-case-content__txtArea {
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 30px;
  display: -ms-grid;
  display: grid;
  gap: 10px;
}

.p-case-sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 60px;
}
.p-case-sidebar h2 {
  font-size: 1.8rem;
  text-align: center;
  color: #FFFFFF;
  font-weight: bold;
  border-radius: 30px 30px 0 0;
  padding: 16px;
  background-color: #5DD0EB;
  width: 100%;
}
.p-case-sidebar ul {
  padding: 30px;
}
.p-case-sidebar ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dotted #ACACAC;
}
.p-case-sidebar ul li:hover a {
  color: #DBDBDB;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-case-sidebar ul li::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #F3EEEA;
  margin-right: 20px;
}

.p-hourAccess {
  background-color: #FFFFFF;
}
.p-hourAccess__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.1fr 0.1fr 1fr;
  grid-template-columns: 1fr 0.1fr 0.1fr 1fr;
  margin-bottom: 60px;
}
@media screen and (max-width: 1080px) {
  .p-hourAccess__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: 0.8fr 0.1fr 0.05fr 1fr;
    grid-template-rows: 0.8fr 0.1fr 0.05fr 1fr;
    margin-bottom: 0px;
  }
  .p-hourAccess__wrapper > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-hourAccess__wrapper > *:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .p-hourAccess__wrapper > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .p-hourAccess__wrapper > *:nth-child(4) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
}
.p-hourAccess__hours {
  display: -ms-grid;
  display: grid;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-hourAccess__hours {
    gap: 15px;
  }
}
@media screen and (max-width: 1080px) {
  .p-hourAccess__hours {
    margin-bottom: 30px;
  }
}
.p-hourAccess__hours-table {
  border: 1px solid #5DD0EB;
  /* 最後のth, td要素に適用するためのCSS */
}
.p-hourAccess__hours-table > thead {
  background-color: #5DD0EB;
  color: #FFFFFF;
}
.p-hourAccess__hours-table th,
.p-hourAccess__hours-table td {
  padding: 10px 0px 10px 30px;
  text-align: left;
  letter-spacing: 0.1rem;
  font-family: "Jost", "sans-serif";
  font-weight: 300;
}
@media screen and (max-width: 480px) {
  .p-hourAccess__hours-table th,
  .p-hourAccess__hours-table td {
    padding: 5px 0px 5px 10px;
  }
}
.p-hourAccess__hours-table th:last-child,
.p-hourAccess__hours-table td:last-child {
  padding: 10px 30px 10px 30px;
}
@media screen and (max-width: 480px) {
  .p-hourAccess__hours-table th:last-child,
  .p-hourAccess__hours-table td:last-child {
    padding: 5px 10px 5px 5px;
  }
}
.p-hourAccess__txtbox {
  padding: 4px 15px;
  text-align: center;
  background-color: #F3EEEA;
  color: #5DD0EB;
  border-radius: 3px;
}
@media screen and (max-width: 480px) {
  .p-hourAccess__txtbox {
    padding: 1px 10px;
  }
}
.p-hourAccess__tag {
  padding: 4px 15px;
  text-align: center;
  background-color: #DBDBDB;
  color: #FFFFFF;
  border-radius: 3px;
}
@media screen and (max-width: 480px) {
  .p-hourAccess__tag {
    padding: 1px 10px;
  }
}
.p-hourAccess__tel {
  border-bottom: 1px solid #454545;
  padding-bottom: 5px;
  display: inline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-hourAccess__tel:hover {
  opacity: 0.5;
}
.p-hourAccess__line-right {
  border: 1px dashed var(--unnamed-color-38c6b8);
  border-right: 1px dashed #5DD0EB;
}
.p-hourAccess__line-bottom {
  border: 1px dashed var(--unnamed-color-38c6b8);
  border-bottom: 1px dashed #5DD0EB;
}
.p-hourAccess__access {
  display: -ms-grid;
  display: grid;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-hourAccess__access {
    gap: 15px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1080px) {
  .p-hourAccess__access {
    margin-top: 20px;
  }
}
@media screen and (max-width: 480px) {
  .p-hourAccess__access {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
.p-hourAccess__access dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 3fr;
  grid-template-columns: 1fr 3fr;
  gap: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1080px) {
  .p-hourAccess__access dl {
    max-width: 430px;
  }
}
@media screen and (max-width: 480px) {
  .p-hourAccess__access dl {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 320px;
  }
}
.p-hourAccess__map {
  height: 360px;
}

.p-reservation {
  background-image: url(./images/reservation/reservation-bg.webp);
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
}
.p-reservation__filter {
  width: 100%;
  height: 100%;
  background-color: rgba(103, 95, 120, 0.604);
}
.p-reservation h3 {
  color: #FFFFFF;
  font-size: 2rem;
  letter-spacing: 0.2rem;
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-reservation h3 {
    font-size: 1.6rem;
    letter-spacing: 0.16rem;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
}

.p-about-dr {
  background-image: url(./images/top/main-bg.webp);
  background-size: cover;
  background-position: center;
}
.p-about-dr__name {
  font-size: 2.8rem;
  letter-spacing: 0.28rem;
  line-height: 1.5;
}
.p-about-dr__furigana {
  font-size: 1.4rem;
  letter-spacing: 0.14rem;
  line-height: 1;
}

.p-about-facility {
  background-color: #FFFFFF;
  /*各スライドのスタイル*/
  /*アクティブなときのスタイル*/
  /*矢印ボタンの色を変更*/
}
.p-about-facility__slider-wrapper {
  max-width: 780px;
  margin: 0 auto;
}
.p-about-facility .swiper-wrapper {
  position: relative;
}
.p-about-facility .swiper-container {
  width: 100%;
  height: 450px;
  margin: 0.5rem auto;
  overflow: hidden;
  position: relative;
}
.p-about-facility .swiper-container img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-about-facility .swiper-container {
    height: 300px;
  }
}
.p-about-facility .swiper-thumbnail {
  width: 100%;
  height: 160px;
  margin: 0.5rem auto;
  overflow: hidden;
}
.p-about-facility .swiper-thumbnail img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-about-facility .swiper-thumbnail {
    height: 100px;
  }
}
.p-about-facility .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*テキストの色と太さを指定*/
  color: #212121;
  font-weight: bold;
  font-size: max(0.5rem, 1.5vw);
}
.p-about-facility .swiper-thumbnail .swiper-slide {
  opacity: 0.2;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.p-about-facility .swiper-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.p-about-facility .swiper-button-next,
.p-about-facility .swiper-button-prev {
  color: #212121;
  z-index: 100000;
}

/* -------- utility -------- */
.u-white-space__nowrap {
  white-space: nowrap;
}

.u-disp-none {
  display: none;
}
.u-disp-none__pc-up {
  display: none;
}
@media screen and (max-width: 1080px) {
  .u-disp-none__pc-up {
    display: block;
  }
}
@media screen and (max-width: 1080px) {
  .u-disp-none__pc-down {
    display: none;
  }
}
@media screen and (max-width: 1240px) {
  .u-disp-none__s-pc-down {
    display: none;
  }
}
.u-disp-none__tab-up {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-disp-none__tab-up {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .u-disp-none__tab-down {
    display: none;
  }
}

.u-disp-block {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-disp-block__tab {
    display: block;
  }
}

.u-disp-inlineBlock {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .u-disp-inlineBlock__tab {
    display: inline-block;
  }
}

.u-disp-inline {
  display: inline;
}
@media screen and (max-width: 768px) {
  .u-disp-inline__tab {
    display: inline;
  }
}