@charset "UTF-8";
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background-color: pink;
}

::selection {
  background-color: pink;
}

html {
  font-size: 62.5%;
  overflow-x: auto;
}

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

textarea {
  resize: none;
}

body {
  font-family: "Noto Sans JP", serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}

.container {
  width: 100%;
  max-width: 123rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

.is-md-hide {
  display: block;
}
@media screen and (max-width: 760px) {
  .is-md-hide {
    display: none;
  }
}

.is-md-show {
  display: none;
}
@media screen and (max-width: 760px) {
  .is-md-show {
    display: block;
  }
}

.l-main {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 50px;
       column-gap: 50px;
  padding-top: 220px;
}
@media screen and (max-width: 760px) {
  .l-main {
    padding-top: 75px;
  }
}

.c-button {
  width: 207px;
  height: 56px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #06c755, #04943f, #06c755);
  border-radius: 8px;
  position: relative;
  transition: all 0.3s;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -moz-column-gap: 32px;
       column-gap: 32px;
}
.c-button::before {
  content: "";
  width: 90%;
  height: 6px;
  border-radius: 10px;
  background-color: rgba(234, 255, 242, 0.55);
  position: absolute;
  top: 7.5px;
  left: 50%;
  transform: translateX(-50%);
}
.c-button--orange {
  background: linear-gradient(to bottom, #ff9748, #ee6901, #ff9748);
}
.c-button--footer {
  width: 400px;
  height: 90px;
}
@media screen and (max-width: 760px) {
  .c-button--footer {
    width: 180px;
    height: 100px;
  }
}
.c-button--footer::before {
  content: "";
  width: 230px;
  height: 6px;
  border-radius: 10px;
  background-color: rgba(234, 255, 242, 0.55);
  position: absolute;
  top: 7.5px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 760px) {
  .c-button--footer::before {
    width: 90%;
  }
}
.c-button__icon {
  height: 38px;
}
@media screen and (max-width: 760px) {
  .c-button__icon {
    display: none;
  }
}
.c-button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.c-button__text {
  font-weight: 600;
  font-size: 19px;
  color: #fff;
}
@media screen and (max-width: 760px) {
  .c-button__text {
    font-size: 18px;
  }
}

.c-clinic-list__child:not(:last-child) {
  margin-bottom: 80px;
}
.c-clinic-list__h2 {
  margin-bottom: 8px;
  font-size: 32px;
  color: #111111;
}
@media screen and (max-width: 760px) {
  .c-clinic-list__h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.c-clinic-list__images {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin-bottom: 24px;
}
@media screen and (max-width: 760px) {
  .c-clinic-list__images {
    -moz-column-gap: 12px;
         column-gap: 12px;
    margin-bottom: 16px;
  }
}
.c-clinic-list__image {
  border-radius: 10px;
  width: calc((100% - 15px) / 2);
  max-height: 210px;
  height: 210px;
}
@media screen and (max-width: 760px) {
  .c-clinic-list__image {
    border-radius: 0;
    max-height: 128px;
    height: 128px;
  }
}
.c-clinic-list__tags {
  margin-bottom: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  flex-wrap: wrap;
}
.c-clinic-list__tag {
  width: calc((100% - 16px) / 3);
  height: 43px;
  background-color: #fafafa;
  font-size: 16px;
  color: #5a5a5a;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.c-clinic-list__details {
  margin-bottom: 40px;
}
.c-clinic-list__description {
  font-size: 20px;
  width: 60%;
}
.c-clinic-list__h3 {
  font-size: 20px;
  color: #4aa8a0;
  font-weight: 600;
  margin-bottom: 16px;
}
@media screen and (max-width: 760px) {
  .c-clinic-list__h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
.c-clinic-list__flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media screen and (max-width: 760px) {
  .c-clinic-list__flex {
    flex-direction: column;
    row-gap: 15px;
  }
}
.c-clinic-list__flex-2 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media screen and (max-width: 760px) {
  .c-clinic-list__flex-2 {
    flex-direction: column;
    row-gap: 15px;
  }
}
.c-clinic-list__description {
  font-size: 20px;
}
@media screen and (max-width: 760px) {
  .c-clinic-list__description {
    font-size: 16px;
    width: 100%;
  }
}
.c-clinic-list__map {
  width: 329px;
  height: 224px;
}
@media screen and (max-width: 760px) {
  .c-clinic-list__map {
    width: 100%;
  }
}
.c-clinic-list__review-title {
  color: #4aa8a0;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (max-width: 760px) {
  .c-clinic-list__review-title {
    font-size: 16px;
  }
}
.c-clinic-list__review-group {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 10px;
       column-gap: 10px;
  overflow-x: scroll;
}
.c-clinic-list__review-child {
  padding: 20px;
  background-color: #f0efef;
  border-radius: 16px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  max-width: 314px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  min-width: 314px; /* 追加：最小幅を固定 */
  flex-shrink: 0; /* 追加：縮小を無効にする */
}
@media screen and (max-width: 760px) {
  .c-clinic-list__review-child {
    padding: 12px 14px;
    min-width: 289px; /* 追加：最小幅を固定 */
    max-width: 289px;
  }
}
.c-clinic-list__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 5px;
}
.c-clinic-list__name {
  font-size: 16px;
  color: #111111;
}
@media screen and (max-width: 760px) {
  .c-clinic-list__name {
    font-size: 12px;
  }
}
.c-clinic-list__right {
  color: #111111;
  font-size: 16px;
  width: 165px;
  align-self: flex-start; /* この要素だけ上寄せ */
}
@media screen and (max-width: 760px) {
  .c-clinic-list__right {
    font-size: 12px;
  }
}
.c-clinic-list__calender {
  margin-bottom: 40px;
}
.c-clinic-list__calender-title {
  color: #4aa8a0;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (max-width: 760px) {
  .c-clinic-list__calender-title {
    font-size: 16px;
  }
}
.c-clinic-list__calender-group {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: flex-start;
}
.c-clinic-list__calender-content {
  flex: 0 0 60%;
}
@media screen and (max-width: 760px) {
  .c-clinic-list__calender-content {
    width: 100%;
  }
}
.c-clinic-list__calender-details {
  flex: 0 0 40%;
}
@media screen and (max-width: 760px) {
  .c-clinic-list__calender-details {
    width: 100%;
  }
}
.c-clinic-list__table {
  width: 100%;
  border-collapse: collapse;
  border-collapse: separate;
  border-spacing: 4px;
}
.c-clinic-list__table-header {
  background-color: #f3fed6;
  border: 1px solid #f3fed6;
  padding: 12px 8px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-align: center;
}
.c-clinic-list__table-header:first-child {
  background-color: #f3fed6;
  text-align: center;
  width: 120px;
}
.c-clinic-list__table-time {
  background-color: #f3fed6;
  border: 1px solid #f3fed6;
  padding: 12px 8px;
  font-size: 14px;
  color: #333;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 760px) {
  .c-clinic-list__table-time {
    font-size: 9px !important;
  }
}
.c-clinic-list__table-cell {
  border: 1px solid #f3fed6;
  padding: 12px 8px;
  text-align: center;
  font-size: 16px;
  color: #4aa8a0;
  font-weight: 600;
  background-color: #fff;
}
.c-clinic-list__table-note {
  font-size: 14px;
  color: #666;
  margin: 4px 0 0 0;
  letter-spacing: 0.08em;
}
.c-clinic-list__tag-group {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 8px;
       column-gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.c-clinic-list__detail-tag {
  background-color: #4aa8a0;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}
.c-clinic-list__address-group {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.c-clinic-list__address-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.c-clinic-list__address-icon {
  margin-top: 2px;
  width: 13px;
  text-align: center;
}
.c-clinic-list__address-content {
  flex: 1;
}
@media screen and (max-width: 760px) {
  .c-clinic-list__address-content {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.c-clinic-list__address-label {
  color: #4aa8a0;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
}
@media screen and (max-width: 760px) {
  .c-clinic-list__address-label {
    margin: 0;
    width: 23%;
  }
}
.c-clinic-list__address-text {
  color: #333;
  font-size: 16px;
  margin: 0;
  line-height: 1.4;
}
@media screen and (max-width: 760px) {
  .c-clinic-list__address-text {
    width: 77%;
  }
}
@media (max-width: 768px) {
  .c-clinic-list__calender-group {
    flex-direction: column;
    row-gap: 30px;
  }
  .c-clinic-list__table-header, .c-clinic-list__table-time, .c-clinic-list__table-cell {
    padding: 8px 4px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }
  .c-clinic-list__table-header:first-child, .c-clinic-list__table-time {
    width: 80px;
  }
  .c-clinic-list__tag-group {
    justify-content: flex-start;
  }
  .c-clinic-list__detail-tag {
    font-size: 12px;
    padding: 6px 12px;
  }
}
.c-clinic-list__star-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.c-clinic-list__stars {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 1;
}
.c-clinic-list__stars-gray {
  color: #ddd;
  font-size: 27px;
}
.c-clinic-list__stars-colored {
  position: absolute;
  top: 0;
  left: 0;
  color: #ffd700;
  overflow: hidden;
  white-space: nowrap;
  font-size: 27px;
}
.c-clinic-list__star-text {
  font-size: 20px;
  font-weight: bold;
  color: #d94224;
}

.l-hamburger {
  display: none;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .l-hamburger {
    display: block;
  }
}
.l-hamburger__logo-group {
  width: 68px;
  text-align: center;
  display: block;
  margin: 0 auto;
  margin-top: 2rem;
}
.l-hamburger__logo {
  width: 100%;
  display: inline-block;
}
.l-hamburger__contact {
  width: 50%;
  margin: 0 auto;
  height: 5rem;
  border-radius: 30px;
  margin-top: 2.5rem;
}
.l-hamburger__contact-p {
  margin: 0 auto;
  font-size: 2rem;
}
.l-hamburger__nav {
  position: fixed;
  background-color: #fff;
  color: #000;
  width: 100%;
  height: 100%;
  z-index: 50;
  opacity: 0;
  top: -150rem;
  transition: all 0.7s;
}
.l-hamburger__ul {
  text-align: center;
  position: relative;
  padding-top: 2rem;
  margin-bottom: 20px;
}
.l-hamburger__li {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.l-hamburger__li.is-open .l-hamburger__submenu {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
}
.l-hamburger__li.is-open .l-hamburger__arrow {
  transform: rotate(180deg);
}
.l-hamburger__a {
  color: #4aa8a0 !important;
  position: relative;
  font-weight: 600;
  font-size: 1.8rem;
  cursor: pointer;
  text-transform: capitalize;
  display: inline-block;
  text-transform: uppercase;
}
@media screen and (max-width: 760px) {
  .l-hamburger__a {
    font-size: 2rem;
  }
}
.l-hamburger__button-group {
  margin-top: 25px;
  row-gap: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.l-hamburger__arrow {
  position: absolute;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  right: -10rem;
  transform-origin: center 3px;
}
.l-hamburger__submenu-li {
  padding-bottom: 0 !important;
}
.l-hamburger__submenu-li--2 {
  margin-top: 2rem;
}
.l-hamburger__button {
  display: none;
  cursor: pointer;
  width: 6rem;
  height: 6rem;
  border: none;
  border-radius: 50%;
  position: fixed;
  right: 2%;
  top: 2.4rem;
  background-color: transparent;
  z-index: 100;
  transition: all 0.5s;
  transform: translateY(-2rem);
}
@media screen and (max-width: 760px) {
  .l-hamburger__button {
    display: inline-block;
  }
}
.l-hamburger__hum {
  display: none;
  height: 3px;
  width: 3rem;
  background-color: #4aa8a0;
  position: relative;
  display: inline-block;
  text-align: center;
  margin-top: 2rem;
  z-index: 100;
  border-radius: 3px;
}
.l-hamburger__hum::before, .l-hamburger__hum::after {
  content: "";
  display: inline-block;
  height: 3px;
  width: 3rem;
  background-color: #4aa8a0;
  position: absolute;
  top: -1rem;
  left: 0;
  transition: all 0.25s;
  border-radius: 3px;
}
.l-hamburger__hum::after {
  top: 1rem;
}
@media screen and (max-width: 760px) {
  .l-hamburger__hum {
    display: inline-block;
  }
}

.open .l-hamburger__nav {
  top: 0;
  opacity: 1;
}

.open .l-hamburger__button span {
  background-color: transparent;
}

.open .l-hamburger__button span::before {
  transform: translateY(1rem) rotate(-315deg);
}

.open .l-hamburger__button span::after {
  transform: translateY(-1rem) rotate(315deg);
}

.l-footer__orange {
  background-color: #f08300;
  font-size: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1024px) {
  .l-footer__orange {
    font-size: 30px;
  }
}
@media screen and (max-width: 760px) {
  .l-footer__orange {
    font-size: 18px;
  }
}
.l-footer__blue {
  background-color: #1e50a2;
  font-size: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1024px) {
  .l-footer__blue {
    font-size: 30px;
  }
}
@media screen and (max-width: 760px) {
  .l-footer__blue {
    font-size: 18px;
  }
}
.l-footer__dark-blue {
  background-color: #001739;
  font-size: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 760px) {
  .l-footer__dark-blue {
    font-size: 13px;
  }
}
.l-footer__down {
  padding-top: 64px;
  padding-bottom: 48px;
  background-color: #4aa8a0;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  align-items: center;
  justify-content: center;
}
.l-footer__logo-group {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.l-footer__logo-group:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.l-footer__logo {
  width: 70px;
}
@media screen and (max-width: 760px) {
  .l-footer__logo {
    width: 40px;
  }
}
.l-footer__text {
  font-size: 24px;
  color: #fff;
  font-weight: 400;
}
@media screen and (max-width: 760px) {
  .l-footer__text {
    font-size: 14px;
  }
}
.l-footer__copy {
  color: #fff;
  font-size: 12px;
}
@media screen and (max-width: 760px) {
  .l-footer__copy {
    font-size: 8px;
  }
}
.l-footer__content {
  background-color: #f3fed6;
  padding-top: 24px;
  text-align: center;
}
@media screen and (max-width: 1135px) {
  .l-footer__content {
    padding-bottom: 20px;
    padding-right: 10px;
    padding-left: 10px;
  }
}
.l-footer__content-txt {
  width: 583px;
  margin: 0 auto;
  margin-bottom: 24px;
}
@media screen and (max-width: 760px) {
  .l-footer__content-txt {
    width: 345px;
    margin-bottom: 40px;
  }
}
.l-footer__content-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 62px;
       column-gap: 62px;
}
.l-footer__girl {
  width: 204px;
}
@media screen and (max-width: 1135px) {
  .l-footer__girl {
    display: none;
  }
}
.l-footer__content-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 27px;
}
.l-footer__button-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 760px) {
  .l-footer__button-group {
    -moz-column-gap: 17px;
         column-gap: 17px;
  }
}
.l-footer__cta-img {
  width: 373px;
}
@media screen and (max-width: 760px) {
  .l-footer__cta-img {
    width: 176px;
  }
}

.l-header {
  padding-top: 15px;
  padding-bottom: 15px;
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 20;
}
@media screen and (max-width: 760px) {
  .l-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.l-header__wrap {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: flex-start;
  justify-items: center;
}
@media screen and (max-width: 760px) {
  .l-header__wrap {
    row-gap: 0;
  }
}
.l-header__up {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.l-header__header-logo {
  height: 70px;
}
@media screen and (max-width: 1024px) {
  .l-header__header-logo {
    height: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__button {
    width: 168px;
    height: 54px;
  }
}
.l-header__left {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.l-header__left:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.l-header__header-title {
  font-size: 21px;
  color: #5a5a5a;
}
@media screen and (max-width: 1024px) {
  .l-header__header-title {
    font-size: 18px;
  }
}
.l-header__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 10px;
}
@media screen and (max-width: 760px) {
  .l-header__right {
    display: none;
  }
}
.l-header__txt {
  width: 250px;
}
.l-header__button-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 28px;
       column-gap: 28px;
}
.l-header__ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 760px) {
  .l-header__ul {
    display: none;
  }
}
.l-header__li {
  padding-right: 26px;
  padding-left: 26px;
}
.l-header__li:not(:last-child) {
  border-right: 2px solid #4aa8a0;
}
.l-header__a {
  color: #4aa8a0 !important;
  font-weight: 600;
  line-height: 1;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .l-header__a {
    font-size: 16px;
  }
}

.p-aside {
  width: 380px;
}
@media screen and (max-width: 1135px) {
  .p-aside {
    display: none;
  }
}
.p-aside__section:not(:last-child) {
  margin-bottom: 52px;
}
.p-aside__bnr-link {
  width: 100%;
  transition: all 0.3s;
  margin-bottom: 32px;
  display: inline-block;
}
.p-aside__bnr-link:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.p-aside__bnr {
  width: 100%;
}
.p-aside__h2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 32px;
}
.p-aside__h2::after {
  width: 100%;
  height: 7px;
  background-color: #d0e697;
  position: absolute;
  content: "";
  bottom: -10px;
  left: 0;
}
.p-aside__h2-second {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 32px;
  border: 4px solid #d0e697;
  padding: 17px 15px;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.3s;
}
.p-aside__h2-second:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.p-aside__h3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 12px;
  padding-left: 15px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 1px solid #8dc79b;
  border-radius: 6px;
}
.p-aside__h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 7px;
  background: linear-gradient(to bottom, #d0e697, #8dc79b, #4aa8a0);
  border-radius: 6px 0 0 6px;
}
.p-aside__h3-text {
  font-size: 18px;
  font-weight: 400;
}
.p-aside__h3-text span {
  font-weight: 700;
}
.p-aside__musi {
  width: 26px;
  margin-right: 8px;
}
.p-aside__h2-text {
  font-size: 18px;
  letter-spacing: 0.05em;
}
.p-aside__h2-text span {
  font-size: 24px;
  color: #4aa8a0;
}
.p-aside__button {
  cursor: pointer;
  margin-top: 20px;
  outline: none;
  border: none;
  width: 100%;
  height: 61px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-weight: 600;
  font-size: 24px;
  background-color: #4aa8a0;
  border-radius: 8px;
  transition: all 0.3s;
}
.p-aside__button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.p-aside__pochipochis {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 56px;
}
.p-aside__pochi {
  border-radius: 20px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid #4aa8a0;
  background-color: #fff;
  transition: all 0.3s;
  color: #4aa8a0 !important;
}
.p-aside__pochi:hover {
  background-color: #4aa8a0;
  border: 2px solid #fff;
  transition: all 0.3s;
  color: #fff !important;
}
.p-aside__select-box {
  width: 100%;
  height: 61px;
  padding-left: 45px;
  border: none;
  outline: none;
  background-color: #fafafa;
  border-radius: 10px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="24" height="15" viewBox="0 0 24 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M21.876 0.5L24 2.60535L12 14.5L0 2.60535L2.124 0.5L12 10.2893L21.876 0.5Z" fill="%23D0E697"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px 12px;
}
.p-aside__select-box option {
  font-weight: 500;
  font-size: 18px;
}

.p-swiper {
  padding-top: 88px;
  padding-bottom: 40px;
}
@media screen and (max-width: 760px) {
  .p-swiper {
    padding-top: 32px;
    padding-bottom: 20px;
  }
}
.p-swiper__title-group {
  text-align: center;
}
@media screen and (max-width: 760px) {
  .p-swiper__footer {
    display: none;
  }
}
.p-swiper__h2 {
  font-size: 48px;
  font-weight: 700;
  padding-bottom: 8px;
  display: inline-block;
  border-bottom: 3px dotted #4aa8a0;
  margin-bottom: 16px;
  background: linear-gradient(to bottom, #d0e697, #4aa8a0, #b1c8ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 760px) {
  .p-swiper__h2 {
    font-size: 20px;
    margin-bottom: 16px;
    padding-bottom: 8px;
  }
}
.p-swiper__english {
  font-weight: 300;
  font-size: 24px;
  color: #4aa8a0;
}
@media screen and (max-width: 760px) {
  .p-swiper__english {
    font-size: 12px;
  }
}
.p-swiper__swiper {
  margin-top: 100px;
}
@media screen and (max-width: 760px) {
  .p-swiper__swiper {
    margin-top: 40px;
  }
}
.p-swiper__slide {
  text-align: center;
}
.p-swiper__img {
  margin-bottom: 24px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
}
.p-swiper__swiper-title {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 20px;
  text-align: left;
}
.p-swiper__name {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 400;
  text-align: left;
}
.p-swiper__content {
  font-size: 18px;
  font-weight: 400;
  text-align: left;
}

.p-faq {
  padding-top: 72px;
  background: url(../img/front/faq/bg.png) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 760px) {
  .p-faq {
    padding-top: 32px;
    padding-bottom: 24px;
    background: url(../img/front/faq/bg-sp.png) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
.p-faq__title-group {
  text-align: center;
}
.p-faq__h2 {
  font-size: 48px;
  font-weight: 700;
  padding-bottom: 8px;
  display: inline-block;
  border-bottom: 3px dotted #fff;
  margin-bottom: 16px;
  color: #fff;
}
@media screen and (max-width: 760px) {
  .p-faq__h2 {
    font-size: 20px;
    margin-bottom: 16px;
    padding-bottom: 8px;
  }
}
.p-faq__english {
  font-weight: 300;
  font-size: 24px;
  color: #fff;
}
@media screen and (max-width: 760px) {
  .p-faq__english {
    font-size: 12px;
  }
}
.p-faq__container {
  max-width: 1172px;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.p-faq__wrap {
  margin-top: 48px;
  background-color: #fff;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 760px) {
  .p-faq__wrap {
    padding-top: 24px;
    padding-bottom: 24px;
    border-radius: 16px;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
    width: 96%;
  }
}
.p-faq__flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 36px;
}
@media screen and (max-width: 760px) {
  .p-faq__flex {
    row-gap: 16px;
  }
}
.p-faq__parent {
  width: 100%;
  cursor: pointer;
  transition: all 0.3s;
}
.p-faq__parent:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.p-faq__arrow {
  width: 23px;
}
@media screen and (max-width: 760px) {
  .p-faq__arrow {
    width: 10px;
  }
}
.p-faq__dt {
  background-color: #4aa8a0;
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
  padding: 12px 55px 12px 24px;
  position: relative;
  border-radius: 16px;
  transition: border-radius 0.3s ease;
}
@media screen and (max-width: 760px) {
  .p-faq__dt {
    -moz-column-gap: 8px;
         column-gap: 8px;
    padding: 8px 36px 8px 16px;
  }
}
.p-faq__arrow {
  width: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  transition: transform 0.3s ease;
}
.p-faq__dd {
  padding: 12px 24px;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  -moz-column-gap: 24px;
       column-gap: 24px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  border: 1px solid #4aa8a0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 760px) {
  .p-faq__dd {
    -moz-column-gap: 8px;
         column-gap: 8px;
    padding: 8px 16px;
  }
}
.p-faq__question {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .p-faq__question {
    font-size: 16px;
  }
}
.p-faq__ico {
  width: 40px;
}
@media screen and (max-width: 760px) {
  .p-faq__ico {
    width: 20px;
  }
}
.p-faq__answer {
  font-size: 24px;
}
@media screen and (max-width: 760px) {
  .p-faq__answer {
    font-size: 12px;
  }
}

.p-flow {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .p-flow {
    padding-top: 40px;
    padding-bottom: 10px;
  }
}
.p-flow__cta {
  display: none;
}
@media screen and (max-width: 760px) {
  .p-flow__cta {
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.p-flow__container {
  max-width: 1200px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 760px) {
  .p-flow__container {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-flow__title-group {
  text-align: center;
}
.p-flow__h2 {
  font-size: 48px;
  font-weight: 700;
  padding-bottom: 8px;
  display: inline-block;
  border-bottom: 3px dotted #4aa8a0;
  margin-bottom: 16px;
  background: linear-gradient(to bottom, #d0e697, #4aa8a0, #b1c8ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 760px) {
  .p-flow__h2 {
    font-size: 20px;
    margin-bottom: 16px;
    padding-bottom: 8px;
  }
}
.p-flow__english {
  font-weight: 300;
  font-size: 24px;
  color: #4aa8a0;
}
@media screen and (max-width: 760px) {
  .p-flow__english {
    font-size: 12px;
  }
}
.p-flow__text {
  margin-top: 88px;
  font-size: 24px;
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (max-width: 760px) {
  .p-flow__text {
    margin-top: 36px;
    font-size: 16px;
    margin-bottom: 16px;
  }
}

.p-button {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 760px) {
  .p-button {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.p-button__container {
  width: 100%;
  max-width: 1215px;
  padding-left: 7.5px;
  padding-right: 7.5px;
  margin-right: auto;
  margin-left: auto;
}
.p-button__anker {
  height: 96px;
  width: 100%;
  transition: all 0.3s;
  border: 2px solid #1e50a2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  border-radius: 16px;
}
.p-button__anker:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 760px) {
  .p-button__anker {
    height: 50px;
  }
}
.p-button__text {
  font-size: 32px;
  font-weight: 700;
  color: #1e50a2;
}
@media screen and (max-width: 760px) {
  .p-button__text {
    font-size: 14px;
  }
}
.p-button__ico {
  width: 48px;
}
@media screen and (max-width: 760px) {
  .p-button__ico {
    width: 20px;
  }
}

.p-worry {
  text-align: center;
  padding-top: min(80px, 6.56vw);
  padding-bottom: min(80px, 6.56vw);
  background: url(../img/front/worry/bg.png);
}
@media screen and (max-width: 760px) {
  .p-worry {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.p-worry__container {
  max-width: 1220px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.p-worry__wrap {
  padding: min(32px, 2.62vw) min(56px, 4.59vw);
  border-radius: min(30px, 2.46vw);
  background-color: #fff;
}
@media screen and (max-width: 760px) {
  .p-worry__wrap {
    padding: 24px 10px 32px;
    border-radius: 10px;
  }
}
.p-worry__sub {
  font-size: min(32px, 2.62vw);
  font-weight: 700;
  margin-bottom: min(8px, 0.66vw);
}
@media screen and (max-width: 760px) {
  .p-worry__sub {
    margin-bottom: 16px;
    font-size: 16px;
  }
}
.p-worry__h2 {
  font-size: min(64px, 5.25vw);
  font-weight: 700;
  margin-bottom: min(32px, 2.62vw);
  color: #5a5a5a;
}
@media screen and (max-width: 760px) {
  .p-worry__h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
  }
}
.p-worry__box {
  border-radius: min(20px, 1.64vw);
  background: url(../img/front/worry/img.png) no-repeat;
  background-size: cover;
  background-position: center;
  padding: min(48px, 3.93vw) min(40px, 3.28vw);
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  margin-bottom: min(32px, 2.62vw);
}
@media screen and (max-width: 760px) {
  .p-worry__box {
    padding: 16px 10px;
    row-gap: 12px;
    margin-bottom: 24px;
    border-radius: 8px;
  }
}
.p-worry__li {
  -moz-column-gap: min(20px, 1.64vw);
       column-gap: min(20px, 1.64vw);
  padding-top: min(6px, 0.49vw);
  padding-bottom: min(6px, 0.49vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
  text-align: left;
}
@media screen and (max-width: 760px) {
  .p-worry__li {
    -moz-column-gap: 8px;
         column-gap: 8px;
    padding-top: 4.5px;
    padding-bottom: 4.5px;
  }
}
.p-worry__icon {
  width: min(42px, 3.44vw);
}
@media screen and (max-width: 760px) {
  .p-worry__icon {
    width: 20px;
  }
}
.p-worry__p {
  font-size: min(32px, 2.62vw);
}
@media screen and (max-width: 760px) {
  .p-worry__p {
    font-size: 14px;
  }
}
.p-worry__last {
  font-size: min(24px, 1.97vw);
  font-weight: 700;
}
.p-worry__last span {
  color: #ff0000;
}
@media screen and (max-width: 760px) {
  .p-worry__last {
    font-size: 14px;
    text-align: left;
  }
}

.p-special {
  background: url(../img/front/special/bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: min(32px, 3.12vw);
  padding-bottom: min(32px, 3.12vw);
}
@media screen and (max-width: 760px) {
  .p-special {
    padding-top: 34px;
    padding-bottom: 34px;
  }
}
.p-special__container {
  max-width: 1025px;
  padding-left: 10px;
  padding-right: 10px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
.p-special__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: min(58px, 5.66vw);
       column-gap: min(58px, 5.66vw);
}
@media screen and (max-width: 760px) {
  .p-special__wrap {
    row-gap: 16px;
    flex-direction: column;
  }
}
.p-special__text {
  width: min(637px, 62.15vw);
}
@media screen and (max-width: 760px) {
  .p-special__text {
    width: 330px;
  }
}
.p-special__button {
  width: min(338px, 32.98vw);
  height: min(89px, 8.68vw);
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: min(12px, 1.17vw);
       column-gap: min(12px, 1.17vw);
  background: linear-gradient(to bottom, #f83030, #3d0202);
  transition: all 0.3s;
}
.p-special__button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 760px) {
  .p-special__button {
    width: 272px;
    height: 54px;
    border-radius: 4px;
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
}
.p-special__button-text {
  color: #fff;
  font-weight: 700;
  font-size: min(28px, 2.73vw);
}
@media screen and (max-width: 760px) {
  .p-special__button-text {
    font-size: 24px;
  }
}
.p-special__arrow {
  width: min(25px, 2.44vw);
}
@media screen and (max-width: 760px) {
  .p-special__arrow {
    width: 20px;
  }
}

.p-fv {
  margin-top: 162px;
  background: url(../img/front/fv/bg.png) no-repeat;
  background-size: cover;
  background-position: 80%;
  padding-top: min(28px, 2.3vw);
  padding-bottom: min(28px, 2.3vw);
}
@media screen and (max-width: 760px) {
  .p-fv {
    margin-top: 70px;
    padding-top: 16px;
    padding-bottom: 30px;
    background: url(../img/front/fv/bg-sp.png) no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.p-fv__container {
  max-width: 1220px;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.p-fv__sub {
  margin-bottom: min(24px, 1.97vw);
  color: #5a5a5a;
  font-weight: 700;
  font-size: min(40px, 3.28vw);
  line-height: 1.5;
}
.p-fv__sub span {
  color: #4aa8a0;
}
@media screen and (max-width: 760px) {
  .p-fv__sub {
    text-shadow: 2px 1px 4px white;
    font-size: 16px;
    margin-bottom: 19px;
  }
}
.p-fv__h1 {
  width: min(1026px, 84.1vw);
  margin-bottom: min(41px, 3.36vw);
}
@media screen and (max-width: 760px) {
  .p-fv__h1 {
    margin-bottom: 10px;
    width: 344px;
  }
}
.p-fv__h1-img {
  width: 100%;
}
.p-fv__group {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: min(26px, 2.13vw);
       column-gap: min(26px, 2.13vw);
}
@media screen and (max-width: 760px) {
  .p-fv__group {
    -moz-column-gap: 1.5px;
         column-gap: 1.5px;
  }
}
.p-fv__child {
  line-height: 1.3;
  text-align: center;
  width: min(240px, 19.67vw);
  height: min(240px, 19.67vw);
  color: #4aa8a0;
  font-weight: 700;
  font-size: min(48px, 3.93vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  border: min(8px, 0.66vw) solid #4aa8a0;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 760px) {
  .p-fv__child {
    width: 120px;
    height: 120px;
    font-size: 22px;
    border: 4px solid #4aa8a0;
  }
}

.p-cta__container {
  max-width: 1190px;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.p-cta__up {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: min(40px, 3.36vw);
  padding-top: min(12px, 1.01vw);
  padding-bottom: min(12px, 1.01vw);
  background-color: #ff9748;
}
@media screen and (max-width: 760px) {
  .p-cta__up {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 18px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
}
.p-cta__down {
  padding-top: min(24px, 2.02vw);
  padding-bottom: min(24px, 2.02vw);
  text-align: center;
  background-color: #f3fed6;
}
@media screen and (max-width: 760px) {
  .p-cta__down {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.p-cta__h2 {
  margin-bottom: min(38px, 3.19vw);
  width: min(583px, 48.99vw);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 760px) {
  .p-cta__h2 {
    margin-bottom: 32px;
    width: 345px;
  }
}
.p-cta__flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: min(32px, 2.69vw);
       column-gap: min(32px, 2.69vw);
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .p-cta__flex {
    row-gap: 16px;
    flex-direction: column;
  }
}
.p-cta__first {
  margin-bottom: min(16px, 1.34vw);
  color: #fff;
  font-size: min(32px, 2.69vw);
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 760px) {
  .p-cta__first {
    font-size: 18px;
    margin-bottom: 8px;
    display: inline-block;
  }
}
.p-cta__first::before {
  left: min(-12px, -1.01vw);
  background-color: #fff;
  position: absolute;
  width: min(72px, 6.05vw);
  height: min(6px, 0.5vw);
  border-radius: min(3px, 0.25vw);
  content: "";
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 760px) {
  .p-cta__first::before {
    width: 28px;
    height: 2px;
    border-radius: 3px;
    left: -50px;
  }
}
.p-cta__first::after {
  right: min(-12px, -1.01vw);
  background-color: #fff;
  position: absolute;
  width: min(72px, 6.05vw);
  height: min(6px, 0.5vw);
  border-radius: min(3px, 0.25vw);
  content: "";
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 760px) {
  .p-cta__first::after {
    width: 28px;
    height: 2px;
    border-radius: 3px;
    right: -50px;
  }
}
.p-cta__box {
  width: 100%;
  background-color: #fff;
  border-radius: min(24px, 2.02vw);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -moz-column-gap: min(32px, 2.69vw);
       column-gap: min(32px, 2.69vw);
  height: min(120px, 10.08vw);
}
@media screen and (max-width: 760px) {
  .p-cta__box {
    border-radius: 24px;
    -moz-column-gap: 16px;
         column-gap: 16px;
    height: 66px;
  }
}
.p-cta__icon {
  width: min(60px, 5.04vw);
}
@media screen and (max-width: 760px) {
  .p-cta__icon {
    width: 24px;
  }
}
.p-cta__text {
  font-size: min(40px, 3.36vw);
  font-weight: 700;
  color: #06c755;
}
.p-cta__text--2 {
  color: #ee6901;
}
@media screen and (max-width: 760px) {
  .p-cta__text {
    font-size: 20px;
  }
}
.p-cta__button {
  width: calc((100% - min(32px, 2.69vw)) / 2);
  border-radius: min(24px, 2.02vw);
  background-color: #06c755;
  padding: min(24px, 2.02vw) min(40px, 3.36vw);
  transition: all 0.3s;
  box-shadow: 2px 6px 4px rgba(0, 23, 57, 0.25);
}
.p-cta__button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.p-cta__button--2 {
  background-color: #ee6901;
}
@media screen and (max-width: 760px) {
  .p-cta__button {
    padding: 8px 18px;
    border-radius: 24px;
    width: 100%;
  }
}

.p-staff {
  padding-top: min(72px, 5.9vw);
  padding-bottom: min(90px, 7.38vw);
  background-color: #f3fed6;
}
@media screen and (max-width: 760px) {
  .p-staff {
    padding-top: 30px;
    padding-bottom: 24px;
  }
}
.p-staff__container {
  max-width: 1220px;
  padding-left: 10px;
  padding-right: 10px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
.p-staff__white {
  background-color: #fff;
  padding-top: min(112px, 9.18vw);
  padding-bottom: min(72px, 5.9vw);
  margin-bottom: min(48px, 3.93vw);
  border-radius: min(40px, 3.28vw);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 760px) {
  .p-staff__white {
    margin-top: 36px;
    padding-top: 24px;
    padding-bottom: 24px;
    margin-bottom: 0;
    border-radius: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 760px) {
  .p-staff__cta {
    display: none;
  }
}
.p-staff__title-group {
  text-align: center;
}
@media screen and (max-width: 760px) {
  .p-staff__title-group {
    display: none;
  }
}
.p-staff__title-group--sp {
  display: none;
}
@media screen and (max-width: 760px) {
  .p-staff__title-group--sp {
    display: block;
  }
}
.p-staff__h2 {
  font-size: min(48px, 3.93vw);
  font-weight: 700;
  padding-bottom: min(8px, 0.66vw);
  display: inline-block;
  border-bottom: 3px dotted #4aa8a0;
  margin-bottom: min(16px, 1.31vw);
  background: linear-gradient(to bottom, #d0e697, #4aa8a0, #b1c8ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 760px) {
  .p-staff__h2 {
    font-size: 20px;
    margin-bottom: 16px;
    padding-bottom: 8px;
  }
}
.p-staff__english {
  font-weight: 300;
  font-size: min(24px, 1.97vw);
  color: #4aa8a0;
}
@media screen and (max-width: 760px) {
  .p-staff__english {
    font-size: 12px;
  }
}
.p-staff__contents {
  display: flex;
  flex-direction: column;
  row-gap: min(80px, 6.56vw);
  margin-top: min(80px, 6.56vw);
}
@media screen and (max-width: 760px) {
  .p-staff__contents {
    row-gap: 35px;
    margin-top: 0;
  }
}
.p-staff__child {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  -moz-column-gap: min(35px, 2.87vw);
       column-gap: min(35px, 2.87vw);
}
@media screen and (max-width: 760px) {
  .p-staff__child {
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
.p-staff__img {
  width: min(208px, 17.05vw);
}
.p-staff__img--order {
  order: 1;
}
@media screen and (max-width: 760px) {
  .p-staff__img--order {
    order: 0;
  }
}
@media screen and (max-width: 760px) {
  .p-staff__img {
    width: 64px;
  }
}
.p-staff__content {
  max-width: min(580px, 47.54vw);
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-staff__content {
    max-width: 580px;
    margin-bottom: 8px;
  }
}
.p-staff__h3 {
  display: inline-block;
  font-size: min(28px, 2.3vw);
  font-weight: 400;
  margin-bottom: min(8px, 0.66vw);
  background: linear-gradient(to bottom, transparent 60%, #d0e697 60%, #d0e697 90%, transparent 90%);
}
@media screen and (max-width: 760px) {
  .p-staff__h3 {
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 700;
  }
}
.p-staff__name {
  font-size: min(16px, 1.31vw);
  padding-bottom: min(8.5px, 0.7vw);
  border-bottom: 2px dotted #d0e697;
  margin-bottom: min(12px, 0.98vw);
}
@media screen and (max-width: 760px) {
  .p-staff__name {
    font-size: 12px;
    padding-bottom: 4px;
    margin-bottom: 0;
  }
}
.p-staff__description {
  font-size: min(16px, 1.31vw);
  color: #111;
}
@media screen and (max-width: 760px) {
  .p-staff__description {
    margin-top: -37px;
    font-size: 16px;
  }
}

.p-please {
  padding-top: min(64px, 5.25vw);
  padding-bottom: min(64px, 5.25vw);
  background: url(../img/front/please/bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .p-please {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.p-please__container {
  max-width: 1220px;
  padding-left: 10px;
  padding-right: 10px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
.p-please__wrap {
  background-color: rgba(255, 255, 255, 0.8);
  padding: min(80px, 6.56vw) min(20px, 1.64vw);
}
@media screen and (max-width: 760px) {
  .p-please__wrap {
    padding: 16px 10px;
  }
}
.p-please__h2 {
  font-size: min(48px, 3.93vw);
  font-weight: 700;
  margin-bottom: min(72px, 5.9vw);
  color: #001739;
}
@media screen and (max-width: 760px) {
  .p-please__h2 {
    color: #1e50a2;
    font-size: 16px;
    margin-bottom: 32px;
  }
}
.p-please__h2 span {
  color: #4aa8a0;
  font-size: min(56px, 4.59vw);
}
@media screen and (max-width: 760px) {
  .p-please__h2 span {
    font-size: 20px;
  }
}
.p-please__mouth {
  width: min(1000px, 81.97vw);
  margin: 0 auto;
  margin-bottom: min(72px, 5.9vw);
}
@media screen and (max-width: 760px) {
  .p-please__mouth {
    margin-bottom: 35px;
    width: 100%;
  }
}
.p-please__groups {
  position: relative;
  margin-bottom: min(40px, 3.28vw);
  padding-left: min(40px, 3.28vw);
}
@media screen and (max-width: 760px) {
  .p-please__groups {
    margin-bottom: 16px;
    padding-left: 0;
  }
}
.p-please__lists {
  margin-bottom: min(48px, 3.93vw);
  text-align: left;
}
@media screen and (max-width: 760px) {
  .p-please__lists {
    margin-bottom: 16px;
  }
}
.p-please__group {
  display: flex;
  flex-direction: row;
  -moz-column-gap: min(25px, 2.05vw);
       column-gap: min(25px, 2.05vw);
}
@media screen and (max-width: 760px) {
  .p-please__group {
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.p-please__li {
  -moz-column-gap: min(24px, 1.97vw);
       column-gap: min(24px, 1.97vw);
  display: flex;
  flex-direction: row;
  align-items: center;
}
.p-please__li:not(:last-child) {
  margin-bottom: min(48px, 3.93vw);
}
@media screen and (max-width: 760px) {
  .p-please__li:not(:last-child) {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 760px) {
  .p-please__li {
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
.p-please__text {
  font-size: min(48px, 3.93vw);
}
.p-please__text span {
  color: #4aa8a0;
}
@media screen and (max-width: 760px) {
  .p-please__text {
    font-size: 20px;
    font-weight: 700;
    width: initial;
    flex: 1;
  }
}
.p-please__number {
  border-radius: 50%;
  font-size: min(36px, 2.95vw);
  font-weight: 700;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: min(64px, 5.25vw);
  height: min(64px, 5.25vw);
  background-color: #f08300;
}
@media screen and (max-width: 760px) {
  .p-please__number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
.p-please__circle {
  width: min(240px, 19.67vw);
  height: min(240px, 19.67vw);
  border: min(8px, 0.66vw) solid #d0e697;
  background-color: #fff;
  font-size: min(48px, 3.93vw);
  color: #4aa8a0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .p-please__circle {
    width: 120px;
    height: 120px;
    font-size: 22px;
    border: 4px solid #1e50a2;
    color: #1e50a2;
  }
}
.p-please__girl {
  position: absolute;
  bottom: 0;
  right: min(15px, 1.23vw);
  width: min(263px, 21.56vw);
}
@media screen and (max-width: 760px) {
  .p-please__girl {
    display: none;
  }
}

.p-prefecture {
  padding-top: min(96px, 7.87vw);
  padding-bottom: min(90px, 7.38vw);
}
@media screen and (max-width: 760px) {
  .p-prefecture {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
.p-prefecture__container {
  max-width: 1220px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
}
.p-prefecture__title-group {
  text-align: center;
  margin-bottom: min(128px, 10.49vw);
}
@media screen and (max-width: 760px) {
  .p-prefecture__title-group {
    margin-bottom: 45px;
  }
}
.p-prefecture__h2 {
  font-size: min(48px, 3.93vw);
  font-weight: 700;
  padding-bottom: 8px;
  display: inline-block;
  border-bottom: 3px dotted #4aa8a0;
  margin-bottom: 16px;
  background: linear-gradient(to bottom, #d0e697, #4aa8a0, #b1c8ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 760px) {
  .p-prefecture__h2 {
    font-size: 20px;
    margin-bottom: 16px;
    border-bottom: 3px dotted #4aa8a0;
    padding-bottom: 8px;
  }
}
.p-prefecture__english {
  font-weight: 300;
  font-size: min(24px, 1.97vw);
  color: #4aa8a0;
}
@media screen and (max-width: 760px) {
  .p-prefecture__english {
    font-size: 12px;
  }
}
.p-prefecture__japan {
  width: min(842px, 69.02vw);
  margin: 0 auto;
  margin-bottom: min(80px, 6.56vw);
}
@media screen and (max-width: 760px) {
  .p-prefecture__japan {
    display: none;
  }
}
.p-prefecture__japan img {
  width: 100%;
  height: auto;
}
.p-prefecture__parent {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
@media screen and (max-width: 760px) {
  .p-prefecture__parent {
    row-gap: 8px;
  }
}
.p-prefecture__child {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
@media screen and (max-width: 760px) {
  .p-prefecture__child {
    flex-direction: column;
    row-gap: 8px;
  }
}
.p-prefecture__name {
  width: min(170px, 13.93vw);
  height: min(80px, 6.56vw);
  font-weight: 700;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: min(24px, 1.97vw);
}
@media screen and (max-width: 760px) {
  .p-prefecture__name {
    font-size: 16px;
    width: 100%;
    height: 40px;
  }
}
.p-prefecture__name--1 {
  background-color: #192f60;
}
.p-prefecture__name--2 {
  background-color: #1e50a2;
}
.p-prefecture__name--3 {
  background-color: #007b43;
}
.p-prefecture__name--4 {
  background-color: #82ae46;
}
.p-prefecture__name--5 {
  background-color: #c8b705;
}
.p-prefecture__name--6 {
  background-color: #f08300;
}
.p-prefecture__name--7 {
  background-color: #d94224;
}
.p-prefecture__name--8 {
  background-color: #6c2c2f;
}
.p-prefecture__contents {
  flex: 1;
  background-color: #fafafa;
  padding: min(10px, 0.82vw) min(40px, 3.28vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: min(24px, 1.97vw);
       column-gap: min(24px, 1.97vw);
}
@media screen and (max-width: 760px) {
  .p-prefecture__contents {
    padding: 8px 10px;
    -moz-column-gap: 15px;
         column-gap: 15px;
    flex-wrap: wrap;
    row-gap: 8px;
  }
}
.p-prefecture__prefecture {
  color: #5a5a5a;
  font-size: min(24px, 1.97vw);
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 760px) {
  .p-prefecture__prefecture {
    font-size: 12px;
  }
}
.p-prefecture__prefecture.is-active {
  color: rgba(0, 123, 67, 0.7);
  text-decoration: underline !important;
}
.p-prefecture__prefecture--1:hover {
  transition: all 0.3s;
  color: rgba(25, 47, 96, 0.7);
  text-decoration: underline !important;
}
.p-prefecture__prefecture--2:hover {
  transition: all 0.3s;
  color: rgba(30, 80, 162, 0.7);
  text-decoration: underline !important;
}
.p-prefecture__prefecture--3:hover {
  transition: all 0.3s;
  color: rgba(0, 123, 67, 0.7);
  text-decoration: underline !important;
}
.p-prefecture__prefecture--4:hover {
  transition: all 0.3s;
  color: rgba(130, 174, 70, 0.7);
  text-decoration: underline !important;
}
.p-prefecture__prefecture--5:hover {
  transition: all 0.3s;
  color: rgba(200, 183, 5, 0.7);
  text-decoration: underline !important;
}
.p-prefecture__prefecture--6:hover {
  transition: all 0.3s;
  color: rgba(240, 131, 0, 0.7);
  text-decoration: underline !important;
}
.p-prefecture__prefecture--7:hover {
  transition: all 0.3s;
  color: rgba(217, 66, 36, 0.7);
  text-decoration: underline !important;
}
.p-prefecture__prefecture--8:hover {
  transition: all 0.3s;
  color: rgba(108, 44, 47, 0.7);
  text-decoration: underline !important;
}
.p-prefecture__district {
  width: 100%;
  display: none;
}
.p-prefecture__district.is-open {
  display: block;
  animation: slideDown 0.3s ease-out;
}
.p-prefecture__district-section {
  margin-top: 8px;
}
@media screen and (max-width: 760px) {
  .p-prefecture__district-section {
    margin-top: 8px;
  }
}
.p-prefecture__district-inner {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
@media screen and (max-width: 760px) {
  .p-prefecture__district-inner {
    flex-direction: column;
    row-gap: 8px;
  }
}
.p-prefecture__district-name {
  width: min(170px, 13.93vw);
  min-height: min(80px, 6.56vw);
  font-weight: 700;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: min(24px, 1.97vw);
}
@media screen and (max-width: 760px) {
  .p-prefecture__district-name {
    font-size: 16px;
    height: 40px;
    width: 100%;
    min-height: 40px;
  }
}
.p-prefecture__district-name--1 {
  background-color: #192f60;
}
.p-prefecture__district-name--2 {
  background-color: #1e50a2;
}
.p-prefecture__district-name--3 {
  background-color: #007b43;
}
.p-prefecture__district-name--4 {
  background-color: #82ae46;
}
.p-prefecture__district-name--5 {
  background-color: #c8b705;
}
.p-prefecture__district-name--6 {
  background-color: #f08300;
}
.p-prefecture__district-name--7 {
  background-color: #d94224;
}
.p-prefecture__district-name--8 {
  background-color: #6c2c2f;
}
.p-prefecture__district-contents {
  flex: 1;
  background-color: #fafafa;
  padding: min(10px, 0.82vw) min(40px, 3.28vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  -moz-column-gap: min(24px, 1.97vw);
       column-gap: min(24px, 1.97vw);
  row-gap: min(12px, 0.98vw);
}
@media screen and (max-width: 760px) {
  .p-prefecture__district-contents {
    padding: 8px 10px;
    flex-wrap: wrap;
    -moz-column-gap: 15px;
         column-gap: 15px;
    row-gap: 15px;
  }
}
.p-prefecture__district-contents--1 {
  background-color: rgba(25, 47, 96, 0.1);
}
.p-prefecture__district-contents--2 {
  background-color: rgba(30, 80, 162, 0.1);
}
.p-prefecture__district-contents--3 {
  background-color: rgba(0, 123, 67, 0.1);
}
.p-prefecture__district-contents--4 {
  background-color: rgba(130, 174, 70, 0.1);
}
.p-prefecture__district-contents--5 {
  background-color: rgba(200, 183, 5, 0.1);
}
.p-prefecture__district-contents--6 {
  background-color: rgba(240, 131, 0, 0.1);
}
.p-prefecture__district-contents--7 {
  background-color: rgba(217, 66, 36, 0.1);
}
.p-prefecture__district-contents--8 {
  background-color: rgba(108, 44, 47, 0.1);
}
.p-prefecture__area {
  color: #5a5a5a;
  font-size: min(20px, 1.64vw);
  transition: all 0.3s;
}
@media screen and (max-width: 760px) {
  .p-prefecture__area {
    font-size: 12px;
  }
}
.p-prefecture__area--1:hover {
  transition: all 0.3s;
  color: rgba(25, 47, 96, 0.7);
  text-decoration: underline !important;
}
.p-prefecture__area--2:hover {
  transition: all 0.3s;
  color: rgba(30, 80, 162, 0.7);
  text-decoration: underline !important;
}
.p-prefecture__area--3:hover {
  transition: all 0.3s;
  color: rgba(0, 123, 67, 0.7);
  text-decoration: underline !important;
}
.p-prefecture__area--4:hover {
  transition: all 0.3s;
  color: rgba(130, 174, 70, 0.7);
  text-decoration: underline !important;
}
.p-prefecture__area--5:hover {
  transition: all 0.3s;
  color: rgba(200, 183, 5, 0.7);
  text-decoration: underline !important;
}
.p-prefecture__area--6:hover {
  transition: all 0.3s;
  color: rgba(240, 131, 0, 0.7);
  text-decoration: underline !important;
}
.p-prefecture__area--7:hover {
  transition: all 0.3s;
  color: rgba(217, 66, 36, 0.7);
  text-decoration: underline !important;
}
.p-prefecture__area--8:hover {
  transition: all 0.3s;
  color: rgba(108, 44, 47, 0.7);
  text-decoration: underline !important;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}
.p-content {
  width: calc(100% - 430px);
  padding-top: 20px;
  padding-bottom: 88px;
}
@media screen and (max-width: 1135px) {
  .p-content {
    width: 100%;
  }
}
.p-content__bread {
  font-size: 14px;
  color: #5a5a5a;
  padding-bottom: 20px;
}
.p-content__map {
  width: 100%;
}
.p-content__map iframe {
  width: 100% !important;
}
.p-content__thumb-wrap {
  width: 100%;
  aspect-ratio: 10/6;
  overflow: hidden;
  margin-bottom: 20px;
}
.p-content__thumb {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-content h1 {
  font-weight: 700;
  font-size: 32px;
  color: #4aa8a0;
  margin: 0;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 760px) {
  .p-content h1 {
    font-size: 20px;
  }
}
.p-content h2 {
  width: 100%;
  color: #111111;
  font-size: 28px;
  font-weight: 700;
  position: relative;
  padding-left: 35px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #25606d;
  margin-top: 25px;
}
.p-content h2::before {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #4aa8a0;
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  left: 0;
}
@media screen and (max-width: 760px) {
  .p-content h2 {
    font-size: 20px;
  }
}
.p-content p {
  font-size: 16px;
  font-weight: 400;
  color: #111;
}
.p-content__swimg {
  width: 100%;
  border-radius: 20px;
}
.p-content__swiper {
  margin-top: 20px;
  margin-bottom: 20px;
}
.p-content__cta {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}
.p-content__cta-text {
  width: 383px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 8px;
}
.p-content__button-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-items: space-between;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
@media screen and (max-width: 760px) {
  .p-content__button-flex {
    display: none;
  }
}
.p-content__button-flex-sp {
  flex-direction: column;
  align-items: center;
  justify-items: center;
  row-gap: 16px;
  display: none;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-content__button-flex-sp {
    display: flex;
  }
}
.p-content__button-sp {
  background-color: #06c755;
  border-radius: 24px;
  padding: 8px 18px;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  transition: all 0.3s;
  box-shadow: 2px 6px 4px rgba(0, 23, 57, 0.25);
}
.p-content__button-sp--call {
  background-color: #ee6901;
}
.p-content__svg {
  height: 24px;
}
.p-content__button-down {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 16px;
       column-gap: 16px;
  padding: 20px 14px;
  background-color: #fff;
  border-radius: 24px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.p-content__button-down span {
  font-size: 19px;
  color: #06c755;
  font-weight: 600;
}
.p-content__button-down--call span {
  color: #ee6901;
}
.p-content__button {
  width: calc((100% - 8px) / 2);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  height: 84px;
  border-radius: 8px;
  transition: all 0.3s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  position: relative;
}
.p-content__button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.p-content__button--orange {
  background: linear-gradient(to bottom, #ff9748, #ee6901, #ff9748);
}
.p-content__button--green {
  background: linear-gradient(to bottom, #06c755, #04943f, #06c755);
}
.p-content__button::before {
  content: "";
  width: 95%;
  height: 6px;
  border-radius: 10px;
  background-color: rgba(234, 255, 242, 0.55);
  position: absolute;
  top: 7.5px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 760px) {
  .p-content__button {
    width: 100%;
  }
}
.p-content__button-up {
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  position: relative;
}
.p-content__button-up::before {
  content: "";
  position: absolute;
  background-color: #fff;
  height: 2px;
  width: 28px;
  border-radius: 3px;
  top: 50%;
  transform: translateY(-50%);
  left: -48px;
}
.p-content__button-up::after {
  content: "";
  position: absolute;
  background-color: #fff;
  height: 2px;
  width: 28px;
  border-radius: 3px;
  top: 50%;
  transform: translateY(-50%);
  right: -48px;
}
.p-content__button-left {
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  background-color: #fff;
  width: 97px;
  height: 43px;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #ff9748 !important;
}
.p-content__button-left--2 {
  color: #06c755 !important;
}
.p-content__button-real {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #fff !important;
}
.p-content__user-group {
  display: flex;
  flex-direction: column;
  row-gap: 26px;
  align-items: center;
  justify-content: center;
}
.p-content__user-child {
  border-radius: 5px;
  background-color: #fafafa;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0px;
       column-gap: 0px;
  padding: 12px 20px;
}
@media screen and (max-width: 760px) {
  .p-content__user-child {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.p-content__user-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20%;
}
@media screen and (max-width: 760px) {
  .p-content__user-left {
    width: 30%;
  }
}
.p-content__user-img {
  width: 64px;
  height: 64px;
}
@media screen and (max-width: 760px) {
  .p-content__user-img {
    width: 40px;
    height: 40px;
  }
}
.p-content__user-txt {
  font-size: 14px !important;
}
@media screen and (max-width: 760px) {
  .p-content__user-txt {
    font-size: 13px !important;
  }
}
.p-content__user-right {
  font-size: 14px !important;
  width: 80%;
}
@media screen and (max-width: 760px) {
  .p-content__user-right {
    font-size: 12px !important;
    width: 70%;
  }
}
.p-content__access-group {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
@media screen and (max-width: 760px) {
  .p-content__access-group {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 10px;
  }
}
.p-content__access-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 354px;
}
.p-content__access-right {
  width: calc(100% - 364px);
}
@media screen and (max-width: 760px) {
  .p-content__access-right {
    width: 100%;
  }
}
.p-content__access-child {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 8px;
       column-gap: 8px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.p-content__access-child:not(:last-child) {
  border-bottom: 1px dashed #7e7e7e;
}
.p-content__ico-group {
  width: 80px;
  height: 28px;
  background-color: #4aa8a0;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 25%;
  max-width: 100px;
}
.p-content__ico-text {
  font-size: 16px;
  font-weight: 700;
  color: #fff !important;
}
.p-content__access-info {
  color: #5a5a5a;
  font-size: 16px;
  width: 75%;
}
.p-content__access-infos {
  font-weight: 700;
  color: #4aa8a0 !important;
  font-size: 18px;
  text-decoration: underline !important;
}
.p-content__basic-child {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.p-content__basic-child:not(:last-child) {
  border-bottom: 1px dashed #4aa8a0;
  padding-bottom: 13px;
}
.p-content__basic-child:not(:first-child) {
  padding-top: 13px;
}
.p-content__iframe {
  width: 100%;
  height: 450px;
  margin-bottom: 10px;
}
.p-content__schedule {
  margin-top: 30px;
  margin-bottom: 30px;
}
.p-content__schedule-table {
  width: 100%;
  background-color: #f3fed6;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
.p-content__schedule-header {
  display: grid;
  grid-template-columns: 140px repeat(8, 1fr);
  background-color: #f3fed6;
  font-weight: 700;
  font-size: 16px;
  color: #333;
}
.p-content__schedule-row {
  display: grid;
  grid-template-columns: 140px repeat(8, 1fr);
  background-color: #ffffff;
}
.p-content__schedule-row:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}
.p-content__schedule-cell {
  padding: 12px 8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e0e0e0;
  font-size: 14px;
  min-height: 40px;
}
.p-content__schedule-cell:last-child {
  border-right: none;
}
.p-content__schedule-cell--time {
  background-color: #f3fed6;
  font-weight: 600;
  text-align: center;
  font-size: 14px;
  color: #333;
}
.p-content__schedule-cell--available {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.p-content__schedule-note {
  padding: 10px 15px;
  background-color: #fff;
  font-size: 12px;
  color: #666;
  text-align: left;
  border-top: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .p-content__schedule-header, .p-content__schedule-row {
    grid-template-columns: 100px repeat(8, 1fr);
  }
  .p-content__schedule-cell {
    padding: 8px 4px;
    font-size: 12px;
  }
  .p-content__schedule-cell--time {
    font-size: 11px;
  }
  .p-content__schedule-cell--available {
    font-size: 16px;
  }
  .p-content__schedule-note {
    font-size: 11px;
    padding: 8px 12px;
  }
}
@media (max-width: 480px) {
  .p-content__schedule-header, .p-content__schedule-row {
    grid-template-columns: 80px repeat(8, 1fr);
  }
  .p-content__schedule-cell {
    padding: 6px 2px;
    font-size: 11px;
  }
  .p-content__schedule-cell--time {
    font-size: 10px;
  }
  .p-content__schedule-cell--available {
    font-size: 14px;
  }
}

.p-location {
  width: calc(100% - 430px);
  padding-top: 20px;
  padding-bottom: 88px;
}
@media screen and (max-width: 1135px) {
  .p-location {
    width: 100%;
  }
}
.p-location__bread {
  font-size: 14px;
  color: #5a5a5a;
  padding-bottom: 20px;
}
.p-location__thumb-wrap {
  width: 100%;
  aspect-ratio: 10/6;
  overflow: hidden;
  margin-bottom: 20px;
}
.p-location__thumb {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-location h1 {
  font-weight: 700;
  font-size: 30px;
  color: #4aa8a0;
  margin: 0;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 760px) {
  .p-location h1 {
    font-size: 20px;
  }
}
.p-location__intro {
  font-size: 16px;
  font-size: 400;
  line-height: 1.6;
  margin-bottom: 24px;
}
.p-location__selection {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  margin-top: 24px;
}
.p-location__selection-button {
  width: calc((100% - 16px) / 3);
  height: 46px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #5a5a5a;
  border-radius: 5px;
  border: 2px solid #d9d9d9;
  transition: all 0.3s;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}
.p-location__selection-button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 760px) {
  .p-location__selection-button {
    font-size: 13px;
  }
}
.p-location__selection-button:active {
  background-color: rgba(74, 168, 160, 0.08);
  border: 2px solid #4aa8a0;
}
.p-location__selection-button.active {
  background-color: rgba(74, 168, 160, 0.08);
  border: 2px solid #4aa8a0;
}/*# sourceMappingURL=style.css.map */