@charset "UTF-8";
* {
  min-width: 0;
  min-height: 0;
}

.facility-page-header {
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .facility-page-header {
    padding-bottom: 100px;
  }
}
.facility-page-header__image {
  width: 100%;
}
.facility-page-header__image img {
  width: 100%;
}
.facility-page-header__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--main-color);
  text-align: center;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .facility-page-header__title {
    font-size: 25px;
  }
}
.facility-page-header__subtitle {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #85796f;
  text-align: center;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .facility-page-header__subtitle {
    font-size: 14px;
    margin-top: 100px;
  }
}
.facility-page-header__text {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .facility-page-header__text {
    font-size: 15px;
    margin-top: 30px;
    text-align: center;
  }
}

.main-grid {
  border-top: 1px solid #707070;
}
@media screen and (min-width: 1024px) {
  .main-grid {
    display: flex;
    grid-template-columns: calc(250px + (100vw - 1366px) / 2) calc(1116px + (100vw - 1366px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .main-grid__left {
    flex: 1 0 calc(250px + (100vw - 1366px) / 2);
    border-right: 1px solid #707070;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1024px) {
  .main-grid__right {
    flex: 1 0 calc(1036px + (100vw - 1366px) / 2);
  }
}

.page-link {
  display: none;
}
@media screen and (min-width: 1024px) {
  .page-link {
    display: block;
    padding-top: 100px;
    width: 250px;
    position: sticky;
    top: 0;
  }
}
.page-link a {
  display: block;
  padding: 19px 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #aaaaaa;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}
.page-link a:hover {
  color: #333333;
}
.page-link li.current a {
  color: #ffffff;
  background: var(--main-color);
}

.section-container {
  padding-block: 50px;
  padding-inline: 25px;
  border-bottom: 1px solid #707070;
}
.section-container:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .section-container {
    padding-block: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .section-container {
    margin-left: 0;
    padding-left: 80px;
  }
}
.section-container__inner {
  max-width: 480px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .section-container__inner {
    max-width: 860px;
  }
}
@media screen and (min-width: 1024px) {
  .section-container__inner {
    margin-left: 0;
  }
}

.section-title {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--main-color);
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 40px;
  }
}
.section-title:not(:first-child) {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .section-title:not(:first-child) {
    margin-top: 100px;
  }
}
.section-title__subtitle {
  font-size: 13px;
  font-weight: 500;
  color: #85796f;
  margin-left: 10px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .section-title__subtitle {
    font-size: 14px;
  }
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }
}
@media screen and (min-width: 768px) {
  .service-list__item {
    flex: 0 0 calc((100% - 80px) / 3);
  }
}
.service-list__image {
  border-radius: 10px;
  overflow: hidden;
}
.service-list__text {
  margin-top: 15px;
}
.service-list__title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--main-color);
}
@media screen and (min-width: 768px) {
  .service-list__title {
    font-weight: 700;
    letter-spacing: 0.1em;
  }
}
.service-list__description {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .service-list__description {
    font-size: 15px;
  }
}

.voice-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .voice-list {
    margin-top: 36px;
  }
}
.voice-list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .voice-list__item {
    flex-direction: row;
    gap: 33px;
  }
}
.voice-list__item-image {
  width: 140px;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .voice-list__item-image {
    width: 240px;
  }
}
.voice-list__item-name {
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--main-color);
}
@media screen and (min-width: 768px) {
  .voice-list__item-name {
    font-size: 20px;
    font-weight: 700;
  }
}
.voice-list__item-text {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .voice-list__item-text {
    font-size: 15px;
  }
}

.slick-slider .slick-prev {
  left: 8px;
  z-index: 2;
  width: 35px;
  height: 35px;
  top: 50%;
}
.slick-slider .slick-prev::before {
  content: "";
  display: block;
  background: url(../../images/slide-arrow_sp.svg) no-repeat center center/60%;
  width: 35px;
  height: 35px;
}
@media screen and (min-width: 768px) {
  .slick-slider .slick-prev::before {
    background: url(../../images/slide-arrow.svg) no-repeat center center/60%;
  }
}
.slick-slider .slick-next {
  right: 8px;
  z-index: 2;
  width: 35px;
  height: 35px;
  top: 50%;
}
.slick-slider .slick-next::before {
  content: "";
  display: block;
  background: url(../../images/slide-arrow_sp.svg) no-repeat center center/60%;
  width: 35px;
  height: 35px;
  transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  .slick-slider .slick-next::before {
    background: url(../../images/slide-arrow.svg) no-repeat center center/60%;
  }
}
.slick-slider .slick-dots {
  position: absolute;
  bottom: 4px;
}
.slick-slider .slick-dots li {
  margin: 0;
}
.slick-slider .slick-dots li button:before {
  color: #fff;
  opacity: 0.7;
}

.facility-slider1-container {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .facility-slider1-container {
    display: flex;
    width: 100%;
    max-width: 860px;
    gap: 33px;
  }
}

.facility-slider1 {
  flex: 0 1 83.7209302326%;
}
.facility-slider1__image {
  border-radius: 10px;
  overflow: hidden;
}
.facility-slider1__text {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .facility-slider1__text {
    margin-top: 14px;
  }
}
.facility-slider1 .slick-slider .slick-next,
.facility-slider1 .slick-slider .slick-prev {
  top: calc(50% - 10px);
}
@media screen and (min-width: 768px) {
  .facility-slider1 .slick-slider .slick-next,
  .facility-slider1 .slick-slider .slick-prev {
    top: calc(50% - 20px);
  }
}
.facility-slider1 .slick-slider .slick-dots {
  bottom: 34px;
}

.facility-slide-thumbnail {
  display: none;
}
@media screen and (min-width: 768px) {
  .facility-slide-thumbnail {
    display: block;
    flex: 0 1 12.4418604651%;
  }
}
.facility-slide-thumbnail__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.facility-slide-thumbnail__image {
  border-radius: 5px;
  overflow: hidden;
}

.facility-sliderA__image {
  border-radius: 10px;
  overflow: hidden;
}

.facility-sliderB__image {
  border-radius: 10px;
  overflow: hidden;
}

.facility-tabs {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .facility-tabs {
    margin-top: 100px;
  }
}
.facility-tabs__left {
  order: 2;
}
@media screen and (min-width: 768px) {
  .facility-tabs__left {
    flex: 0 0 48.2558139535%;
    order: 1;
  }
}
.facility-tabs__left-image {
  max-height: 100%;
  height: 460px;
}
.facility-tabs__left-image img {
  height: 100%;
  object-fit: contain;
}
.facility-tabs__right {
  order: 1;
}
@media screen and (min-width: 768px) {
  .facility-tabs__right {
    flex: 0 1 51.7441860465%;
    order: 2;
  }
}
.facility-tabs__1 {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .facility-tabs__1 {
    flex-direction: row;
  }
}
.facility-tabs__2 {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .facility-tabs__2 {
    flex-direction: row;
  }
}
.facility-tabs__right-bottom {
  font-size: 12px;
  letter-spacing: 0.1em;
}

.tab-toggle {
  display: flex;
  justify-content: center;
  gap: 27px;
}
@media screen and (min-width: 768px) {
  .tab-toggle {
    display: block;
  }
}
.tab-toggle button {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-weight: 700;
  color: #919191;
  text-align: left;
  padding-bottom: 5px;
  border-bottom: 3px solid #919191;
  min-width: 138px;
}
@media screen and (min-width: 768px) {
  .tab-toggle button {
    font-size: 20px;
    margin-right: 40px;
  }
}
.tab-toggle button.active {
  color: var(--main-color);
  border-color: var(--main-color);
}

#tabA,
#tabB {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  grid-row: 1/2;
  grid-column: 1/2;
}
#tabA.active,
#tabB.active {
  opacity: 1;
  visibility: visible;
}

.tab-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .tab-container {
    margin-top: 42px;
  }
}

.facility-bottom {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .facility-bottom {
    margin-top: 100px;
  }
}
.facility-bottom__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .facility-bottom__title {
    font-size: 25px;
    font-weight: 500;
  }
}

.facility-table {
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .facility-table {
    margin-top: 26px;
  }
}
.facility-table__item {
  padding: 14px 0;
  border-top: 1px dotted #808080;
}
@media screen and (min-width: 768px) {
  .facility-table__item {
    display: flex;
  }
}
.facility-table__item:last-child {
  border-bottom: 1px dotted #808080;
}
.facility-table dt {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .facility-table dt {
    flex: 0 0 180px;
  }
}
.facility-table dd {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .facility-table dd {
    font-size: 15px;
    margin-top: 0;
  }
}

.day-service {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .day-service {
    flex-direction: row;
    gap: 40px;
  }
}
.day-service__image {
  border-radius: 10px;
  overflow: hidden;
}
.day-service__text {
  margin-top: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .day-service__text {
    margin-top: 12px;
    text-align: left;
    font-weight: 500;
    color: var(--main-color);
  }
}
.day-service__bottom {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .day-service__bottom {
    margin-top: 40px;
  }
}

.googlemap {
  width: 100%;
  border-radius: 10px;
  max-height: 420px;
  margin-top: 30px;
}
.googlemap iframe {
  width: 100%;
  height: 420px;
}

.price-inner {
  margin-top: 20px;
}

.price-headding__row {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .price-headding__row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
    margin-bottom: 26px;
  }
}
.price-headding__label-inner {
  font-size: 12px;
  letter-spacing: 0.1em;
  border-radius: 3px;
  padding: 5px 0;
  color: #fff;
  background: #85796f;
  min-width: 104px;
  text-align: center;
  display: inline-block;
}
.price-headding__text {
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .price-headding__text {
    font-size: 16px;
    margin-top: 0;
  }
}
.price-headding__text.--1 {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .price-headding__text.--1 {
    margin-top: 0;
  }
}
.price-headding__text.--2 {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .price-headding__text.--2 {
    margin-top: 0;
  }
}
.price-headding__text .--yaku {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .price-headding__text .--yaku {
    font-size: 20px;
  }
}
.price-headding__text .--num {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .price-headding__text .--num {
    font-size: 25px;
  }
}
.price-headding__text .--yen {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .price-headding__text .--yen {
    font-size: 20px;
  }
}

.price-body__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .price-body__title {
    font-size: 17px;
  }
}
.price-body__title .--shikaku {
  font-size: 13px;
}
.price-body__inner {
  margin-bottom: 40px;
  padding-left: 20px;
}
.price-body__text {
  font-size: 15px;
  letter-spacing: 0.1em;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .price-body__text {
    margin-top: 5px;
  }
}
@media screen and (min-width: 768px) {
  .price-body__text-title {
    display: inline-block;
  }
}
.price-body__text .--maru {
  font-size: 13px;
}
.price-body__text .--yaku {
  font-size: 15px;
  font-weight: 700;
  margin-right: 2px;
}
.price-body__text .--num {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.price-body__text .--yen {
  font-size: 15px;
  font-weight: 700;
}
.price-body__text-price {
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .price-body__text-price {
    display: inline-block;
    margin-left: 5px;
  }
}
.price-body__bottom-text {
  font-size: 13px;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .price-body__bottom-text {
    margin-top: 5px;
  }
}
.price-body__bottom-small-text {
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 2;
}

.price-table {
  border-collapse: separate;
  border-spacing: 5px;
  width: 100%;
  max-width: 405px;
  flex: 1 1 50%;
}
.price-table th {
  background: var(--main-color);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  height: 40px;
  line-height: 1.8;
}
.price-table th.row2 {
  height: 85px;
}
.price-table td {
  background: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.price-table td .right {
  text-align: right;
  padding-right: calc((100% - 80px) / 2);
}
.price-table td .--yen {
  font-size: 15px;
}
.price-table__title {
  margin-top: 50px;
  font-size: 14px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .price-table__title {
    font-size: 16px;
    font-weight: 500;
  }
}

.flow-body {
  display: flex;
  flex-direction: column;
  gap: 38px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .flow-body {
    flex-direction: row;
    margin-top: 36px;
    justify-content: space-between;
    gap: 40px;
  }
}
.flow-body__item {
  background: #fff;
  display: flex;
  padding: 17px 30px;
  border-radius: 10px;
  align-items: center;
  gap: 24px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .flow-body__item {
    padding: 13px 10px 22px;
    flex-direction: column;
    flex: 1 1 20%;
    gap: 15px;
  }
}
.flow-body__item:not(:last-child)::after {
  content: "";
  width: 30px;
  height: 16px;
  border-top: 16px solid var(--main-color);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .flow-body__item:not(:last-child)::after {
    bottom: unset;
    top: 50%;
    left: unset;
    right: -42px;
    transform: rotate(-90deg) translateY(-50%);
  }
}
.flow-body__item-num {
  color: var(--main-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
}
.flow-body__item-num:after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--main-color);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.flow-body__item-text {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #707070;
}
@media screen and (min-width: 768px) {
  .flow-body__item-text {
    flex: 1;
    align-items: center;
    display: flex;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 44px;
}
@media screen and (min-width: 768px) {
  .faq-list {
    padding: 75px 50px;
    border-radius: 10px;
    margin-top: 36px;
    background: #fff;
  }
}
.faq-list__item-title {
  background: var(--main-color);
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .faq-list__item-title {
    gap: 25px;
    padding: 10px 25px;
  }
}
.faq-list__item-title.active .q-arrow::after {
  transform: translate(-50%, -50%);
}
.faq-list__item-title .q-icon {
  color: #ffffbd;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.faq-list__item-title .q-text {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
  padding: 6px 0;
  flex: 1 1 100%;
}
@media screen and (min-width: 768px) {
  .faq-list__item-title .q-text {
    font-size: 17px;
    padding: 2px 0;
  }
}
.faq-list__item-title .q-arrow {
  background: #fff;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  flex: 0 0 18px;
  margin-top: 11px;
  position: relative;
}
.faq-list__item-title .q-arrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: 8px solid #333;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
}
.faq-list__item-text {
  background: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
  border: 1px solid #b5b5b6;
  padding: 10px 12px;
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .faq-list__item-text {
    gap: 25px;
    padding: 10px 25px;
  }
}
.faq-list__item-text .a-icon {
  color: var(--main-color);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
.faq-list__item-text .a-text {
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 2;
  padding: 6px 0;
  flex: 1 1 100%;
}
.faq-list__copy {
  display: none;
}
@media screen and (min-width: 768px) {
  .faq-list__copy {
    font-weight: 700;
    font-size: 25px;
    text-align: center;
    letter-spacing: 0.05em;
    color: var(--main-color);
    display: block;
  }
}

.news-list {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .news-list {
    flex: 1 1 85.8895705521%;
    margin-top: 0;
  }
}
.news-list__item {
  padding: 20px 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .news-list__item {
    display: flex;
    align-items: flex-start;
    padding: 22px 0;
    gap: 40px;
    border-bottom: 1px solid #a8a8a9;
  }
}
.news-list__item:not(:last-child) {
  border-bottom: 1px solid #a8a8a9;
}
.news-list__item:first-child {
  padding-top: 0;
}
.news-list__date {
  font-size: 14px;
  font-weight: 500;
  color: #85796f;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .news-list__date {
    padding-top: 3px;
  }
}
.news-list__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-top: 13px;
}
@media screen and (min-width: 768px) {
  .news-list__title {
    margin-top: 0;
    font-size: 16px;
    font-weight: 500;
  }
}
.news-list__body {
  font-size: 14px;
  letter-spacing: 0.1em;
}
.news-list__body a {
  color: var(--main-color);
  text-decoration: underline;
}
.news-list__container {
  max-height: 337px;
  overflow-y: auto;
  margin-top: 22px;
  padding-right: 12px;
}
@media screen and (min-width: 768px) {
  .news-list__container {
    max-height: 272px;
  }
}

.page-yui .service-list__item {
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .page-yui .service-list__item {
    background-color: rgba(255, 253, 244, 0.8);
    box-shadow: 0 0 10px 0 rgba(145, 93, 32, 0.2);
  }
}
.page-yui .service-list__image {
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .page-yui .service-list__image {
    border-radius: 0;
  }
}
.page-yui .service-list__title {
  font-size: 22px;
}
.page-yui .service-list__text {
  margin-top: 0;
  padding: 20px 0;
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .page-yui .service-list__text {
    padding: 20px;
  }
}
.page-yui .service-list__link {
  padding: 0 20px 20px 20px;
}
.page-yui .service-list__link .link-btn--right-arrow-var {
  padding: 8px 20px;
}
.page-yui .recruit-tab__content {
  border-color: #FFDDC4;
}
.page-yui .recruit-tab-button {
  background-color: #FFDDC4;
}
.page-yui .recruit-tab-button__title {
  color: #E5843C;
}
.page-yui .is-active .recruit-tab-button {
  background-color: #E5843C;
}
.page-yui .is-active .recruit-tab-button__title {
  color: #fff;
}
.page-yui .contact-large-btn__inner {
  background-color: #E5843C;
}
@media screen and (min-width: 768px) {
  .page-yui .faq-list {
    padding: 50px;
    padding-bottom: 40px;
  }
}
.page-yui .service-subsection__header-title {
  color: #E5843C;
}
@media screen and (min-width: 768px) {
  .page-yui .flow-body {
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .page-yui .flow-body__item {
    width: 200px;
    flex: 0 1 auto;
  }
}
.page-yui .flow-body__item-num {
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .page-yui .flow-body__item-text {
    text-align: center;
    font-weight: 400;
    font-size: 16px;
  }
}
.page-yui .service-row__item-title {
  color: var(--main-color);
}
.page-yui .service-subsection__body {
  max-width: 900px;
}
.page-yui .service-sublist {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .page-yui .service-sublist {
    margin-top: 50px;
  }
}
.page-yui .service-sublist__item {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .page-yui .service-sublist__item {
    font-size: 15px;
  }
}
.page-yui .service-sublist__item::before {
  content: "●";
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .page-yui .service-row--half .service-row__item {
    width: calc((100% - 30px) / 2);
  }
}
.page-yui .service-row__item-description-title {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .page-yui .service-row__item-description-title {
    font-size: 15px;
  }
}
.page-yui .service-row__item-description-title:not(:first-child) {
  margin-top: 20px;
}
.page-yui .service-row__item-description-text {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
}
.page-yui .service-access__map {
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}
.page-yui .service-access__map iframe {
  width: 100%;
  height: 100%;
}
.page-yui .service-access__container {
  display: flex;
  flex-direction: column-reverse;
  gap: 30px;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .page-yui .service-access__container {
    flex-direction: column;
    align-items: center;
  }
}
.page-yui .contact-large-btn {
  max-width: 750px;
  margin-inline: auto;
  letter-spacing: 0.05em;
}
.page-yui .access__bottom {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .page-yui .access__bottom {
    margin-top: 40px;
  }
}
.page-yui .schedule-timeline__time {
  background: var(--main-color);
}
.page-yui .schedule-timeline__time::after {
  border-top: 14px solid var(--main-color);
  border-bottom: 14px solid var(--main-color);
}
@media screen and (min-width: 768px) {
  .page-yui .schedule-timeline__item {
    align-items: flex-start;
  }
}
.page-yui .flow-container {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .page-yui .flow-container {
    margin-top: 60px;
  }
}
.page-yui .flow-container__image {
  width: 50px;
}
.page-yui .service-list__title-link {
  display: flex;
  align-items: center;
  column-gap: 10px;
  width: fit-content;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .page-yui .service-list__title-link {
    display: none;
  }
}
.page-yui .service-list__title-link::after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: url(../../images/yui/icon-arrow.svg) no-repeat center center/contain;
}
.page-yui .service-list__link .link-btn {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  transition: all 0.3s ease;
}
.page-yui .service-list__link .link-btn:hover {
  background: var(--main-color);
  color: #fff;
}
.page-yui .service-list__link .link-btn--right-arrow::after {
  border-top: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
}
.page-yui .service-list__link .link-btn--right-arrow:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.service-club__text {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--main-color);
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .service-club__text img {
    max-width: 427px;
  }
}
