@charset "UTF-8";
/* 

このファイルはsassを用いています。
直接修正しないでください。 
sass/style.scsssをご利用ください。

*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap");
@media (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .is-sp {
    display: none;
  }
  .is-tab-none {
    display: none;
  }
}
@media (min-width : 1024px) {
  .is-sp {
    display: none;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Noto Sans CJK JP", "筑紫B丸ゴシック", "Montserrat";
  font-size: 16px;
  line-height: 1;
  background: #fff;
  color: #222222;
}

img {
  max-width: 100%;
  height: auto;
}

li,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.inner {
  max-width: 1800px;
  margin: 0 auto;
  box-sizing: content-box;
}
@media (max-width: 767px) {
  .inner {
    padding: 0px 16px;
  }
}

.util-title {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 3.2px;
  text-align: center;
  margin-bottom: 49px;
  position: relative;
}
@media (max-width: 767px) {
  .util-title {
    font-size: 21px;
  }
}
.util-title::after {
  content: "";
  width: 20px;
  height: 5px;
  background-color: #3cc0ff;
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
}

.util-title-2 {
  font-size: 2.6rem;
  letter-spacing: 2.6px;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .util-title-2 {
    font-size: 3.2rem;
  }
}

.util-subtitle {
  text-align: center;
  font-family: "Montserrat";
  font-size: 11px;
  letter-spacing: 1.1px;
}

.util-subtitle-2 {
  text-align: center;
  font-family: "Montserrat";
  font-size: 11px;
  letter-spacing: 1.1px;
  margin-top: 18px;
  color: #3cc0ff;
}

header {
  padding-top: 20px;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  header {
    padding-top: 60px;
  }
}

.header-inner {
  padding: 0 60px;
}
@media (max-width: 767px) {
  .header-inner {
    padding: 0px 10px;
  }
}

.header-wrapper {
  display: flex;
  margin-bottom: 13px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .header-wrapper {
    margin: 0px 16px;
  }
}
@media (max-width: 767px) {
  .header-wrapper {
    margin-bottom: 12px;
  }
}

.header-description {
  font-size: 10px;
  margin-top: 2px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .header-description {
    display: none;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .header-logo {
    margin-top: 0px;
  }
}

.logo-icon {
  width: 51px;
  margin-left: -6px;
}
@media (max-width: 767px) {
  .logo-icon {
    margin-left: -1px;
    width: 29px;
  }
}

.header-logo-img {
  margin-left: 4px;
}
.header-logo-img p {
  font-size: 10px;
}
@media (max-width: 767px) {
  .header-logo-img img {
    width: 89%;
  }
}

.header-right {
  margin-left: auto;
  margin-right: 24px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .header-right {
    margin-right: 0px;
  }
}

.reserve-text {
  font-size: 14px;
  letter-spacing: 1.4px;
  margin-top: 8px;
  margin-bottom: 13px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .reserve-text {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .reserve-text {
    display: none;
  }
}

.tel-number {
  color: #3cc0ff;
  font-size: 26px;
  letter-spacing: 2.3px;
  font-family: "Montserrat";
  font-weight: bold;
  padding-left: 43px;
  position: relative;
  transition: all 0.5s 0s ease;
}
.tel-number:hover {
  opacity: 0.8;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .tel-number {
    font-size: 14px;
    letter-spacing: 0.6px;
    padding-left: 16px;
  }
}
@media (max-width: 767px) {
  .tel-number {
    display: none;
  }
}
.tel-number img {
  width: 23px;
}
.tel-number::before {
  content: "";
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  background: url(../img/tel.svg) no-repeat center center/contain;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .tel-number::before {
    width: 21px;
    height: 21px;
    left: -10px;
  }
}

.top-slider-wrapper {
  position: relative;
}

.top-massage-1 {
  position: absolute;
  top: 7.6%;
  left: 4.9%;
}
@media (max-width: 767px) {
  .top-massage-1 {
    top: 13.3%;
    left: 2.7%;
  }
}
.top-massage-1 img {
  width: 13.9vw;
  max-width: 267px;
}
@media (max-width: 767px) {
  .top-massage-1 img {
    width: 39.3vw;
  }
}

.top-item-picture.is-sp img {
  width: 100%;
}

.slick-arrow {
  left: initial;
  top: initial;
  background-color: #3cc0ff;
  z-index: 1;
  border-radius: 50%;
  width: 57px;
  height: 57px;
  bottom: -1px;
  transition: all 0.5s 0s ease;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .slick-arrow {
    width: 36px;
    height: 36px;
    bottom: initial;
    top: 50%;
  }
}
@media (max-width: 767px) {
  .slick-arrow {
    width: 44px;
    height: 44px;
    bottom: initial;
    top: 50%;
    display: none !important;
  }
}
.slick-arrow:hover {
  opacity: 0.8;
  background-color: #3cc0ff;
}
.slick-arrow::before {
  content: "";
  opacity: 1;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slick-prev {
  right: 95px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .slick-prev {
    right: initial;
    left: 12px;
  }
}
@media (max-width: 767px) {
  .slick-prev {
    right: initial;
  }
}
.slick-prev::before {
  background: url(../img/arrow_left.svg) no-repeat center center/contain;
}

.slick-next {
  right: 31px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .slick-next {
    right: 12px;
  }
}
@media (max-width: 767px) {
  .slick-next {
    right: 0;
  }
}
.slick-next::before {
  background: url(../img/arrow_right.svg) no-repeat center center/contain;
}

.slick-dots {
  text-align: right;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .slick-dots {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .slick-dots {
    text-align: center;
    bottom: -25px;
  }
}

.slick-dots li button {
  position: relative;
}
.slick-dots li button:last-child {
  padding: 0px;
}
.slick-dots li button::before {
  position: absolute;
  left: 10px;
  content: "";
  border: 2px solid #3cc0ff;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}
@media (max-width: 767px) {
  .slick-dots li button::before {
    left: 3px;
    width: 13px;
    height: 13px;
  }
}

.slick-dots li {
  margin: -7px 2px;
}

.slick-active button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 12px;
  height: 12px;
  border: solid 1px #fff;
  border-radius: 50%;
  background-color: #3cc0ff;
}
@media (max-width: 767px) {
  .slick-active button::after {
    width: 13px;
    height: 13px;
    left: 3px;
  }
}

.slick-dotted.slick-slider {
  margin-bottom: 49px;
}

#global-nav.m_fixed {
  left: 0;
  position: fixed;
  top: 0;
  right: 0;
  height: 80px;
  z-index: 20;
  padding-top: 30px;
  background: #fff;
}
@media (max-width: 767px) {
  #global-nav.m_fixed {
    display: none;
  }
}

.header-nav-list {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .header-nav-list {
    display: none;
  }
}

.header-nav-item:first-child {
  margin-left: 34px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .header-nav-item:first-child {
    margin-left: 0;
  }
}
.header-nav-item:not(:first-child) {
  margin-left: 75px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .header-nav-item:not(:first-child) {
    margin-left: 30px;
  }
}

.header-nav-item-link {
  font-size: 15px;
  letter-spacing: 1.5px;
  padding-bottom: 20px;
  transition: all 0.3s 0s ease;
}
.header-nav-item-link:hover {
  border-bottom: 3px solid #3cc0ff;
}

.header-wrapper {
  position: relative;
}
@media (max-width: 767px) {
  .header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 60px;
    z-index: 25;
    padding: 13px 16px 0;
    height: 72px;
    background: #fff;
  }
}

.drawer_icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  transition: all 0.5s ease 0s;
}
@media (max-width: 767px) {
  .drawer_icon {
    display: block;
    position: fixed;
    top: 35px;
    right: 16px;
    z-index: 300;
  }
  .drawer_icon.is-active {
    top: initial;
  }
}
.drawer_icon.is-active {
  transform: translateX(-200px);
}
.drawer_icon.is-active .drawer_icon_bar1 {
  transform: rotate(-45deg);
  top: 8px;
}
.drawer_icon.is-active .drawer_icon_bar2 {
  display: none;
}
.drawer_icon.is-active .drawer_icon_bar3 {
  transform: rotate(45deg);
  top: 8px;
}

.drawer_icon_bars {
  width: 32px;
  height: 30px;
  display: block;
  position: relative;
}

.drawer_icon_bar1,
.drawer_icon_bar2,
.drawer_icon_bar3 {
  position: absolute;
  width: 32px;
  height: 4px;
  background: #3cc0ff;
}

.drawer_icon_bar1 {
  top: 0;
}

.drawer_icon_bar2 {
  top: 8px;
}

.drawer_icon_bar3 {
  top: 16px;
}

.drawer_content {
  width: 200px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 299;
  transform: translateX(105%);
  display: none;
  transition: all 0.5s ease 0s;
}
.drawer_content.is-active {
  transform: translateX(0%);
}
@media (max-width: 767px) {
  .drawer_content {
    display: block;
  }
}

.drawer_content_item {
  border-bottom: 1px dotted #3cc0ff;
}
.drawer_content_item a {
  display: block;
  color: #3cc0ff;
  text-decoration: none;
  padding: 18px 20px;
  position: relative;
}
.drawer_content_item a:hover {
  color: #fff;
  background-color: #3cc0ff;
}

.drawer_background {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 297;
  display: none;
}
.drawer_background.is-active {
  display: block;
}

.floating {
  position: fixed;
  top: 23.6%;
  right: 0;
  z-index: 5;
}
.floating > div {
  margin: 0 0 0 auto;
  padding: 0;
  margin-bottom: 10px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.3em;
}
.floating > div a {
  background-color: #3cc0ff;
  padding: 16px 22px 16px 26px;
  border-radius: 5px 0px 0px 5px;
  transition: all 0.5s 0s ease;
  display: flex;
  align-items: center;
  color: #fff;
}
.floating > div a:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .floating {
    padding: 0px 0px 0px 0px;
    font-size: 12px;
    letter-spacing: 1.2px;
    top: initial;
    bottom: 0;
    right: 0;
    left: 0;
    height: auto;
    width: 100%;
    writing-mode: horizontal-tb;
    justify-content: center;
    border-radius: 0%;
    display: flex;
    gap: 0 3px;
  }
  .floating > div {
    margin: 0;
    padding: 0;
    writing-mode: horizontal-tb;
    justify-content: center;
  }
  .floating > div a {
    background-color: #3cc0ff;
    padding: 14px 10px 14px 10px;
    border-radius: 5px 5px 0px 0px;
    transition: all 0.5s 0s ease;
    display: flex;
    align-items: center;
    color: #fff;
    gap: 5px;
  }
}
.floating img {
  margin-bottom: 15px;
  width: 27px;
}
@media (max-width: 767px) {
  .floating img {
    width: 22px;
    margin-bottom: 11px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .floating img {
    margin-bottom: 0;
    margin-right: auto;
  }
}

#reserve2024 {
  margin-top: 50px;
  padding: 30px;
  background: rgba(60, 192, 255, 0.1);
  border-radius: 30px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  max-width: 1200px;
  margin: 50px auto;
  align-items: flex-end;
  gap: 30px;
}
#reserve2024 .qr {
  max-width: 200px;
}
#reserve2024 h2 {
  font-size: 32px;
  letter-spacing: 3.2px;
  margin-bottom: 33px;
  position: relative;
  width: fit-content;
}
#reserve2024 h2::after {
  content: "";
  width: 64px;
  height: 3px;
  position: absolute;
  right: -81px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #3cc0ff;
}
@media (max-width: 767px) {
  #reserve2024 h2::after {
    display: none;
  }
}
#reserve2024 p {
  line-height: 1.3;
}
#reserve2024 .link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin: 30px 0;
}
#reserve2024 .link li a {
  display: block;
  padding: 15px 20px;
  font-weight: bold;
  position: relative;
}
#reserve2024 .link li.manual a {
  display: flex;
  background: #FFF;
  color: #3cc0ff;
  gap: 2rem;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #3cc0ff;
}
#reserve2024 .link li.manual a:after {
  content: "";
  width: 3.6rem;
  aspect-ratio: 1/1;
  display: block;
  background: url("../img/icon_pdf.svg") no-repeat center center/contain;
}
#reserve2024 .link li.reserve a {
  display: flex;
  background: #3cc0ff;
  color: #FFF;
  gap: 2rem;
  align-items: center;
  border-radius: 5px;
}
#reserve2024 .link li.reserve a:after {
  content: "";
  width: 3.6rem;
  aspect-ratio: 1/1;
  display: block;
  background: url("../img/schedule-wh.svg") no-repeat center center/contain;
}
#reserve2024 h3 {
  font-weight: 18px;
  margin-bottom: 16px;
}
#reserve2024 .notes li {
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 10px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  #reserve2024 {
    display: block;
    padding: 15px;
  }
  #reserve2024 h2 {
    font-size: 21px;
    text-align: center;
  }
  #reserve2024 h2:before {
    content: "";
    width: 50%;
    height: 3px;
    background: #3cc0ff;
    position: absolute;
    left: 50%;
    top: calc(100% + 6px);
    transform: translateX(-50%);
  }
  #reserve2024 .qr {
    display: none;
  }
  #reserve2024 .link {
    display: block;
  }
  #reserve2024 .link li {
    margin: 10px 0;
  }
  #reserve2024 .link li a {
    padding: 15px 10px;
    justify-content: space-between;
  }
}

.information {
  margin-bottom: 171px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .information {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .information {
    margin-bottom: 80px;
  }
}

.information-inner {
  padding: 110px 100px 87px 100px;
  background-color: #f4fbff;
}
@media (max-width: 767px) {
  .information-inner {
    padding: 32px 16px;
  }
}

.information-philosophy {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: "Montserrat";
  font-size: 130px;
  color: #3cc0ff;
  letter-spacing: 6.5px;
  opacity: 0.13;
  position: absolute;
  left: -1%;
  top: 84px;
}

.information-subtitle {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .information-subtitle {
    margin-bottom: 30px;
  }
}

.information-news-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 0px;
  transition: all 0.5s 0s ease;
  border-top: 1px solid #bfd5e2;
}
@media (max-width: 767px) {
  .information-news-wrapper {
    display: block;
    margin-bottom: 35px;
  }
}

.information-news-entry {
  border-bottom: 1px solid #bfd5e2;
  padding: 19px 0 18px;
  display: flex;
  justify-content: space-between;
}

.information-news-date {
  width: 10em;
  font-size: 15px;
  line-height: 1.8;
}
.information-news-date p {
  font-size: 15px;
}

.information-news-contents {
  width: calc(100% - 10em);
  line-height: 1.8;
}
.information-news-contents .title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.information-news-contents p {
  margin-bottom: 15px;
}
.information-news-contents a {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .information-news-entry {
    display: block;
  }
  .information-news-date {
    width: 100%;
    font-size: 15px;
    line-height: 1.8;
  }
  .information-news-date p {
    font-size: 15px;
  }
  .information-news-contents {
    width: 100%;
    line-height: 1.6;
  }
  .information-news-contents .title {
    line-height: 1.4;
    margin-bottom: 15px;
  }
  .information-news-contents p {
    margin-bottom: 15px;
  }
  .information-news-contents p,
  .information-news-contents ul li,
  .information-news-contents ol li {
    font-size: 14px;
  }
}
/* news記事ここまで */
.information-news-title {
  font-size: 15px;
  letter-spacing: 1.5px;
  margin-left: 78px;
}
@media (max-width: 767px) {
  .information-news-title {
    margin-left: 0;
    margin-top: 15px;
  }
}

.information-contents-title {
  display: inline-block;
  font-size: 32px;
  letter-spacing: 3.2px;
  position: relative;
  margin-bottom: 33px;
  margin-left: -1px;
}
@media (max-width: 767px) {
  .information-contents-title {
    font-size: 21px;
    margin: 0 auto 26px;
    text-align: center;
    padding-bottom: 7px;
    border-bottom: 3px solid #3cc0ff;
    left: 50%;
    transform: translateX(-50%);
  }
}
.information-contents-title::after {
  content: "";
  width: 64px;
  height: 3px;
  position: absolute;
  right: -81px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #3cc0ff;
}
@media (max-width: 767px) {
  .information-contents-title::after {
    display: none;
  }
}

.information-contents-text-1 {
  font-family: "筑紫B丸ゴシック";
  font-size: 24px;
  margin-bottom: 28px;
  letter-spacing: 0;
  font-weight: bold;
}
@media (max-width: 767px) {
  .information-contents-text-1 {
    font-size: 16px;
    margin-bottom: 24px;
  }
}

.information-contents-text-2 {
  font-size: 18px;
  letter-spacing: 1.8px;
  line-height: 1.5555555556;
  margin-left: -1px;
}
@media (max-width: 767px) {
  .information-contents-text-2 {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.information-contents-wrapper {
  margin-top: 78px;
  position: relative;
}
@media (max-width: 767px) {
  .information-contents-wrapper {
    margin-top: 60px;
  }
}

.information-contents-2 {
  margin-top: 161px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .information-contents-2 {
    margin-top: 100px;
  }
}
@media (max-width: 767px) {
  .information-contents-2 {
    margin-top: 50px;
  }
}

.philosophy-img-sp {
  display: none;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .philosophy-img-sp {
    display: block;
  }
}
@media (max-width: 767px) {
  .philosophy-img-sp {
    display: block;
  }
}

.philosophy-img {
  position: absolute;
  right: -160px;
  top: 5%;
  width: 56.3%;
}
@media (max-width: 1800px) {
  .philosophy-img {
    right: 0;
    width: 40%;
  }
}
@media (max-width: 1200px) {
  .philosophy-img {
    width: 30%;
  }
}
.philosophy-img img {
  width: 100%;
  max-width: 900px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .philosophy-img {
    display: none;
  }
}
@media (max-width: 767px) {
  .philosophy-img {
    display: none;
  }
}
@media (max-width: 767px) {
  .philosophy-img img {
    max-width: 100%;
  }
}

.philosophy-img-sp {
  margin-top: 30px;
  text-align: center;
}

.philosophy-items-wrapper {
  display: flex;
}

.philosophy-items {
  display: flex;
  width: 47.125%;
  margin-top: 30px;
  margin-right: 11px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .philosophy-items {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .philosophy-items {
    display: block;
    width: 100%;
  }
}

.philosophy-item {
  width: 33.3333%;
  max-width: 202px;
  text-align: center;
}
@media (max-width: 767px) {
  .philosophy-item {
    width: 100%;
    max-width: 100%;
  }
}
.philosophy-item:not(:first-child) {
  margin-left: 68px;
}
@media (max-width: 767px) {
  .philosophy-item:not(:first-child) {
    margin-left: 0;
    margin-top: 40px;
  }
}

.philosophy-item .icon {
  width: 156px;
  height: 156px;
  background-color: #fff;
  border: 3px solid #c7edff;
  border-radius: 50%;
  position: relative;
  margin: 7px auto 27px;
}
@media (max-width: 767px) {
  .philosophy-item .icon {
    width: 100px;
    height: 100px;
  }
}
.philosophy-item .icon::before {
  width: 47px;
  height: 47px;
  line-height: 47px;
  background-color: #3cc0ff;
  color: #fff;
  position: absolute;
  top: -11px;
  left: -14px;
  font-size: 24px;
  font-family: "筑紫B丸ゴシック";
  font-weight: bold;
  border-radius: 50%;
}
.philosophy-item .icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.knowledge-icon {
  position: relative;
}
.knowledge-icon::before {
  content: "1";
}

.social-care-icon {
  position: relative;
}
.social-care-icon::before {
  content: "2";
}

.house-icon {
  position: relative;
}
.house-icon::before {
  content: "3";
}

.philosophy-item-title {
  font-family: "筑紫B丸ゴシック";
  font-size: 24px;
  margin-bottom: 23px;
  font-weight: bold;
}

.philosophy-item-text {
  text-align: left;
  font-size: 15px;
  line-height: 1.8666666667;
  letter-spacing: 1.5px;
}
@media (max-width: 767px) {
  .philosophy-item-text {
    max-width: 202px;
    margin: 0 auto;
  }
}

.about {
  text-align: center;
  padding: 127px 0px 108px;
  background: url(../img/about-img.png) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .about {
    padding: 60px 18px 60px;
  }
}

.about-subtitle {
  margin-bottom: 46px;
}
@media (max-width: 767px) {
  .about-subtitle {
    margin-bottom: 30px;
  }
}

.about-text-1 {
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  .about-text-1 {
    font-size: 15px;
  }
}

.about-text-2 {
  font-size: 16px;
  letter-spacing: 1.6px;
  line-height: 2;
}
@media (max-width: 767px) {
  .about-text-2 {
    font-size: 12px;
  }
}

.feature {
  background: url(../img/feature-bg.png) no-repeat center center/cover;
  position: relative;
  overflow: hidden;
}

.feature-logo {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #3cc0ff;
  font-size: 130px;
  letter-spacing: 6.5px;
  position: absolute;
  top: 30px;
  right: 5px;
  opacity: 0.13;
}

.feature-inner {
  padding: 138px 40px 152px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .feature-inner {
    padding: 70px 150px;
  }
}
@media (max-width: 767px) {
  .feature-inner {
    padding: 70px 16px;
  }
}

@media (max-width: 767px) {
  .feature-title {
    line-height: 1.5;
  }
}

.feature-subtitle {
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .feature-subtitle {
    margin-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .feature-subtitle {
    margin-bottom: 24px;
  }
}

.feature-items-wrapper-up {
  margin-bottom: 113px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .feature-items-wrapper-up {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .feature-items-wrapper-up {
    margin-bottom: 100px;
  }
}

.feature-items {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .feature-items {
    display: block;
  }
}
@media (max-width: 767px) {
  .feature-items {
    display: block;
  }
}

.feature-items-up {
  width: 82%;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .feature-items-up {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .feature-items-up {
    width: 100%;
  }
}

.feature-items-down {
  width: 53%;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .feature-items-down {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .feature-items-down {
    width: 100%;
  }
}

.feature-item:not(:first-child) {
  margin-left: 114px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .feature-item:not(:first-child) {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .feature-item:not(:first-child) {
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .feature-item:not(:last-child) {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .feature-item:not(:last-child) {
    margin-bottom: 100px;
  }
}

.feature-item-title {
  font-family: "筑紫B丸ゴシック";
  font-size: 2.1rem;
  font-weight: bold;
  padding-right: 33px;
  text-align: right;
  margin-bottom: 41px;
  margin-top: -5px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .feature-item-title {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .feature-item-title {
    text-align: left;
  }
}
.feature-item-title::after {
  content: "";
  width: 47px;
  height: 3px;
  position: absolute;
  right: 31px;
  bottom: -12px;
  background-color: #3cc0ff;
  border-radius: 100px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .feature-item-title::after {
    right: initial;
    left: 0px;
  }
}
@media (max-width: 767px) {
  .feature-item-title::after {
    right: initial;
    left: 0px;
  }
}
.feature-item-title::before {
  content: "1";
  width: 47px;
  height: 3px;
  position: absolute;
  right: 32px;
  bottom: -17px;
  font-family: "筑紫B丸ゴシック";
  font-size: 8.3rem;
  font-weight: bold;
  color: #3cc0ff;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .feature-item-title::before {
    right: initial;
    left: 0px;
    font-size: 64px;
  }
}
@media (max-width: 767px) {
  .feature-item-title::before {
    right: initial;
    left: 0px;
    font-size: 64px;
  }
}

.feature-item {
  position: relative;
}
.feature-item img {
  width: 100%;
  max-width: 425px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .feature-item img {
    min-width: 100%;
  }
}

.feature-text {
  display: inline-block;
  padding: 23px 0;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1.45;
  text-align: center;
  background-color: #3cc0ff;
  border-radius: 5px;
  position: absolute;
  top: 87.6%;
  left: 50%;
  transform: translateX(-50%);
  width: 74.8235%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .feature-text {
    padding: 14px 0;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .feature-text {
    padding: 14px 0;
    font-size: 16px;
  }
}

#feature-item-2 .feature-item-title::after {
  background-color: #50c7e3;
}
#feature-item-2 .feature-item-title::before {
  content: "2";
  color: #50c7e3;
}
#feature-item-2 .feature-text {
  background-color: #50c7e3;
}

#feature-item-3 .feature-item-title::after {
  background-color: #6493de;
}
#feature-item-3 .feature-item-title::before {
  content: "3";
  color: #6493de;
}
#feature-item-3 .feature-text {
  background-color: #6493de;
}

#feature-item-4 .feature-item-title::after {
  background-color: #50c4bb;
}
#feature-item-4 .feature-item-title::before {
  content: "4";
  color: #50c4bb;
}
#feature-item-4 .feature-text {
  background-color: #50c4bb;
}

#feature-item-5 .feature-item-title::after {
  background-color: #35a1d5;
}
#feature-item-5 .feature-item-title::before {
  content: "5";
  color: #35a1d5;
}
#feature-item-5 .feature-text {
  background-color: #35a1d5;
}

.contents {
  background: url(../img/contents-bg.png) no-repeat top -5px center/contain;
  padding: 61px 0px 81px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .contents {
    padding: 40px 0px 60px;
  }
}
@media (max-width: 767px) {
  .contents {
    background: url(../img/contents-bg-sp.png) no-repeat top -5px center/contain;
    padding: 30px 0px 30px;
  }
}

.contents-inner,
.access-inner {
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .contents-inner,
  .access-inner {
    padding: 0px 16px;
  }
}

.contents-title,
.contents-subtitle {
  color: #fff;
}

.contents-subtitle {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .contents-subtitle {
    margin-bottom: 16px;
  }
}

.contents-items {
  background-color: #fff;
  border-radius: 5px;
  padding: 59px 229px 105px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .contents-items {
    padding: 50px 32px;
    margin: 0 16px;
  }
}
@media (max-width: 767px) {
  .contents-items {
    display: block;
    padding: 50px 16px;
    margin: 0 16px;
  }
}

.contents-item {
  width: calc(33.3% - 71.3333333333px);
}
.contents-item:nth-child(n+4) {
  margin-top: 66px;
}
@media (max-width: 767px) {
  .contents-item {
    width: 100%;
  }
}
.contents-item:not(:nth-child(3n+1)) {
  margin-left: 107px;
}
@media (max-width: 767px) {
  .contents-item:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
}

#top-contents-items-upper {
  padding-bottom: 67px;
}

#top-contents-items-lower {
  margin-top: 0;
  padding: 0 0 62px;
  width: 90%;
  margin: 0 auto;
}
#top-contents-items-lower .contents-item {
  width: calc(25% - 71.25px);
}
#top-contents-items-lower .contents-item:nth-child(n+4) {
  margin-top: 0px;
}
@media (max-width: 767px) {
  #top-contents-items-lower .contents-item {
    width: 100%;
  }
}
#top-contents-items-lower .contents-item:not(:first-child) {
  margin-left: 95px;
}
@media (max-width: 767px) {
  #top-contents-items-lower .contents-item:not(:first-child) {
    margin-left: 0;
  }
}
#top-contents-items-lower .contents-item-img {
  margin: 0 auto 27px;
}
#top-contents-items-lower .contents-item-text {
  padding-left: 15px;
}

.contents-item-no,
.contents-item-title,
.contents-item-img {
  text-align: center;
}

.contents-item-no {
  font-size: 11px;
  color: #adadad;
  letter-spacing: 1.1px;
  font-family: "Montserrat";
  margin-bottom: 13px;
}
@media (max-width: 767px) {
  .contents-item-no {
    font-size: 16px;
  }
}

.contents-item-title {
  font-size: 18px;
  color: #3cc0ff;
  letter-spacing: 1.8px;
  margin-bottom: 29px;
}

.contents-item-img {
  width: 172px;
  height: 172px;
  border-radius: 50%;
  background-color: #f4fbff;
  padding: 50px 44px 40px 47px;
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .contents-item-img {
    margin: 0 auto 24px;
    width: 100px;
    height: 100px;
    padding: 25px 22px 29px 23px;
  }
}

.contents-item-text {
  font-size: 15px;
  letter-spacing: 1.5px;
  line-height: 1.4;
  margin-left: -2px;
}
.contents-item-text span {
  font-family: "Montserrat";
}
@media (max-width: 767px) {
  .contents-item-text {
    display: block;
    width: 156px;
    margin: 0 auto;
    margin-bottom: 30px;
    font-size: 18px;
  }
}

.contents-info {
  border: 3px solid #3cc0ff;
  padding: 33px 27px 42px;
  border-radius: 5px;
  width: auto;
}
@media (max-width: 767px) {
  .contents-info {
    margin: 0 16px;
    width: auto;
    padding: 20px 16px 20px;
  }
}

.contents-info-title {
  font-size: 20px;
  letter-spacing: 2px;
  margin-left: 50px;
  color: #3cc0ff;
  margin-bottom: 21px;
  position: relative;
}
.contents-info-title::before {
  content: "";
  width: 37px;
  height: 37px;
  background: url(../img/contents-info.png) no-repeat center center/10%;
  position: absolute;
  top: 54%;
  left: -50px;
  transform: translateY(-50%);
  background-color: #3cc0ff;
  border-radius: 50%;
}

.contents-info-text {
  font-size: 15px;
  letter-spacing: 1.5px;
  margin-left: 50px;
}
@media (max-width: 767px) {
  .contents-info-text {
    margin-left: 0;
  }
}

.access {
  background-color: #f4fbff;
  padding-top: 66px;
  padding-bottom: 63px;
}
@media (max-width: 767px) {
  .access {
    padding: 30px 0px 65px;
  }
}

.access-inner {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .access-inner {
    display: block;
    padding: 0px 24px 0px;
  }
}
@media (max-width: 767px) {
  .access-inner {
    display: block;
    padding: 0px 16px 0px;
  }
}

.access-text-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 17px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .access-text-wrapper {
    display: block;
  }
}
@media (max-width: 767px) {
  .access-text-wrapper {
    display: block;
  }
}

.access-left {
  width: 50%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .access-left {
    width: auto;
  }
}
@media (max-width: 767px) {
  .access-left {
    width: auto;
  }
}

.access-text {
  font-size: 15px;
  line-height: 1.4;
}

.walk-time {
  font-size: 18px;
  color: #3cc0ff;
  margin-left: 20px;
  margin-top: -2px;
  line-height: 42px;
  border-bottom: 3px solid #3cc0ff;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .walk-time {
    margin-left: 0;
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .walk-time {
    margin-left: 0;
    display: inline-block;
  }
}

.access-logo {
  display: flex;
  align-items: center;
  margin-bottom: 11px;
}
@media (max-width: 767px) {
  .access-logo {
    margin-top: 0px;
  }
}

.access-logo .logo-icon {
  width: 51px;
  margin-left: -6px;
}
@media (max-width: 767px) {
  .access-logo .logo-icon {
    margin-left: -1px;
    width: 29px;
  }
}

.access-logo .access-logo-img {
  margin-left: 4px;
}
.access-logo .access-logo-img p {
  font-size: 10px;
}
@media (max-width: 767px) {
  .access-logo .access-logo-img img {
    width: 89%;
  }
}

.access-address {
  font-size: 15px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .access-address {
    font-size: 12px;
  }
}

.business-hours {
  width: 100%;
  margin-bottom: 16px;
}

.time-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-left: 1px solid #bfd5e2;
}
.time-table th {
  border-right: 1px solid #bfd5e2;
  padding: 19px 20px;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  font-family: "Montserrat";
  font-weight: bold;
  width: 31.1%;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .time-table th {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .time-table th {
    width: 20%;
    padding: 10px 2px;
  }
}
.time-table td {
  border-right: 1px solid #bfd5e2;
  font-size: 1.4rem;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .time-table td {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .time-table td {
    font-size: 1.1rem;
  }
}
.time-table .dot {
  color: #3cc0ff;
}
.time-table .cross {
  color: #b1b1b1;
}

.closedDays {
  text-align: right;
  font-size: 15px;
  color: #f26d6d;
  margin-bottom: 16px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .closedDays {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .closedDays {
    font-size: 12px;
  }
}

.reserve-comment {
  font-size: 15px;
  margin-bottom: 13px;
  margin-left: 4px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .reserve-comment {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .reserve-comment {
    margin-left: 0;
  }
}

.tel-wrapper {
  display: flex;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .tel-wrapper {
    display: block;
  }
}
@media (max-width: 767px) {
  .tel-wrapper {
    display: block;
  }
}

.tel-no {
  color: #3cc0ff;
  font-family: "Montserrat";
  font-size: 20px;
  letter-spacing: 2px;
  padding-left: 38px;
  position: relative;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .tel-no {
    padding-left: 31px;
  }
}
@media (max-width: 767px) {
  .tel-no {
    margin-bottom: 10px;
  }
}
.tel-no::before {
  content: "";
  width: 17px;
  height: 17px;
  background: url(../img/tel.svg) no-repeat center center/contain;
  position: absolute;
  top: 48%;
  left: 7px;
  transform: translateY(-50%);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .tel-no::before {
    left: 0;
  }
}
@media (max-width: 767px) {
  .tel-no::before {
    left: 0;
  }
}

.online-reserve {
  margin-left: auto;
  font-size: 12px;
  margin-top: 3px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .online-reserve {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .online-reserve {
    margin-left: 0;
    margin-bottom: 10px;
    margin-top: 0;
  }
}

.access-right {
  width: 100%;
  margin-top: 10px;
  max-width: 549px;
  margin-left: 16px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .access-right {
    max-width: 1000px;
    margin-left: 0px;
    height: 500px;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .access-right {
    margin-left: 0px;
    height: 300px;
    margin-top: 40px;
  }
}

#google-map {
  width: 100%;
  height: 100%;
  max-width: 549px;
  max-height: 393px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #google-map {
    max-width: 1000px;
  }
}

.access-detail {
  display: inline-block;
  width: 63%;
  color: #3cc0ff;
  background-color: #fff;
  border-radius: 25px;
  border: 2px solid #3cc0ff;
  padding: 13px 64px 15px;
  font-size: 15px;
  letter-spacing: 1.5px;
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 50%);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .access-detail {
    width: 50%;
    padding: 13px 30px 15px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .access-detail {
    display: block;
    padding: 10px 20px;
    margin: 10px 16px;
    position: initial;
    transform: translate(0);
    width: auto;
    font-size: 14px;
    text-align: center;
  }
}
.access-detail::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url(../img/access_arrow_right.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
}

.to-top-btn {
  width: 51px;
  height: 51px;
  background-color: #fff;
  border: 2px solid #3cc0ff;
  border-radius: 50%;
  position: fixed;
  bottom: 10%;
  right: 45px;
}
@media (max-width: 767px) {
  .to-top-btn {
    width: 44px;
    height: 44px;
    bottom: 70px;
    right: 16px;
    z-index: 30;
  }
}

.to-top-link {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
}
.to-top-link::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url(../img/arrow_top.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

footer {
  padding: 39px 0px 58px;
  text-align: center;
}
@media (max-width: 767px) {
  footer {
    padding: 30px 0px;
  }
}

.copyright {
  font-size: 11px;
  letter-spacing: 1.1px;
}
.copyright span {
  font-family: "Montserrat";
}
@media (max-width: 767px) {
  .copyright {
    font-size: 9px;
    margin-bottom: 60px;
  }
}

.inner-second {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px;
  box-sizing: content-box;
}
@media (max-width: 767px) {
  .inner-second {
    padding: 0px 16px;
  }
}

.greeting-header {
  padding-bottom: 2px;
  position: relative;
}
.greeting-header .header-description {
  margin-top: 3px;
  margin-bottom: 5px;
}
.greeting-header .header-logo-img {
  margin-left: 2px;
  margin-top: 6px;
  width: 77%;
}
.greeting-header .greeting-header-wrapper {
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .greeting-header .greeting-header-wrapper {
    justify-content: flex-start;
    align-items: stretch;
  }
}
.greeting-header .header-center {
  width: 48.6%;
}
@media (max-width: 1100px) {
  .greeting-header .header-center {
    width: 43.6%;
  }
}
.greeting-header .header-center .greeting-header-nav-list {
  justify-content: space-between;
}
.greeting-header .greeting-header-nav-item:first-child {
  margin-left: 10px;
}
.greeting-header .greeting-header-nav-item:not(:first-child) {
  margin-left: 0;
  margin-right: -5px;
}
.greeting-header .greeting-header-nav-item:last-child {
  margin-right: -21px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .greeting-header .greeting-header-nav-item {
    display: none;
  }
}
@media (max-width: 767px) {
  .greeting-header .greeting-header-nav-item {
    display: none;
  }
}
.greeting-header .header-right {
  margin-left: 20px;
  margin-top: -33px;
  margin-right: 0px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .greeting-header .header-right {
    display: none;
  }
}
@media (max-width: 767px) {
  .greeting-header .header-right {
    display: none;
  }
}
.greeting-header .header-nav-item-link {
  font-size: 1.5rem;
}
.greeting-header .reserve-text {
  margin-bottom: 12px;
}
.greeting-header .tel-number {
  font-size: 2rem;
  letter-spacing: 1.8px;
  margin-right: 11px;
  padding-left: 32px;
}
@media (max-width: 1340px) {
  .greeting-header .tel-number {
    margin-right: 0;
    font-size: 1.5rem;
    letter-spacing: 1.5px;
  }
}
.greeting-header .tel-number::before {
  width: 19px;
  height: 19px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .greeting-header .drawer_content,
  .greeting-header .drawer_icon {
    display: block;
    text-align: center;
  }
}
.greeting-header .drawer_icon {
  right: 16px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .greeting-header .drawer_content_item a {
    font-size: 5.2rem;
    padding: 40px 20px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .greeting-header .drawer_content {
    width: 450px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .greeting-header .drawer_icon {
    right: 60px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .greeting-header .drawer_icon.is-active {
    right: 300px;
  }
}

.Breadcrumb-trail {
  font-size: 1.2rem;
  letter-spacing: 1.2px;
  margin-top: 28px;
  margin-bottom: 42px;
}

.greeting {
  margin-top: 81px;
  background-color: #f4fbff;
  padding-top: 87px;
  padding-bottom: 100px;
  text-align: center;
}

.greeting-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 59px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .greeting-wrapper {
    display: block;
  }
}
@media (max-width: 767px) {
  .greeting-wrapper {
    display: block;
  }
}

.greeting-text-wrapper {
  font-size: 1.8rem;
  letter-spacing: 1.8px;
  margin-left: 60px;
  width: 640px;
  max-width: 100%;
  text-align: left;
  line-height: 1.5555555556;
  padding-top: 18px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .greeting-text-wrapper {
    margin-top: 50px;
    width: auto;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .greeting-text-wrapper {
    margin-top: 50px;
    width: auto;
    margin-left: 0;
  }
}

.greeting-text-2 {
  margin-top: 28px;
}

.greeting-text-3 {
  margin-top: 28px;
}

.signature {
  margin-top: 22px;
  text-align: right;
}
.signature p {
  font-size: 1.8rem;
  letter-spacing: 1.8px;
  font-weight: bold;
}
.signature span {
  font-size: 2.6rem;
  letter-spacing: 2.6px;
  font-weight: bold;
  margin-left: 21px;
}
@media (max-width: 767px) {
  .signature span {
    display: block;
  }
}

.profile {
  text-align: center;
  padding-top: 84px;
  padding-bottom: 33px;
}

.profile-wrapper {
  margin-top: 68px;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .profile-wrapper {
    display: block;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .profile-wrapper {
    display: block;
    text-align: center;
  }
}

.biography,
.society {
  width: 31%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .biography,
  .society {
    width: auto;
  }
}
@media (max-width: 767px) {
  .biography,
  .society {
    width: auto;
  }
}

.society {
  margin-left: 80px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .society {
    margin-left: 0;
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .society {
    margin-left: 0;
    margin-top: 60px;
  }
}

.profile-title {
  font-size: 2rem;
  letter-spacing: 2px;
  border-bottom: 1px solid #3cc0ff;
  padding-bottom: 24px;
}

.profile-text {
  text-align: left;
  margin-top: 18px;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 1.75;
}

.society-wrapper {
  display: flex;
  margin-top: 20.5px;
}
.society-wrapper ul {
  width: 50%;
  text-align: left;
}

.society-list-1,
.society-list-2 {
  margin-top: 3px;
}

.society-name {
  margin-bottom: 12px;
  padding-left: 26px;
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
}
.society-name::before {
  content: "・";
  width: 18px;
  height: 18px;
  color: #3cc0ff;
  position: absolute;
  top: 59%;
  left: 0px;
  transform: translateY(-50%);
  font-size: 1.8rem;
  letter-spacing: 1.8px;
}

.parttime {
  margin: 81px auto;
  background-color: #f4fbff;
  padding-top: 87px;
  padding-bottom: 100px;
  text-align: center;
}
.parttime .doctorContainer {
  max-width: 1280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
  text-align: left;
  margin: 0 auto;
  padding: 50px 20px;
}
.parttime .doctor {
  display: flex;
  justify-content: center;
  gap: 5%;
  padding: 0 2rem;
}
.parttime .doctor .photo {
  width: 30%;
  aspect-ratio: 1024/1536;
}
.parttime .doctor .photo.noimage {
  background: #FFF;
}
.parttime .doctor .name {
  font-size: 2.4rem;
  font-weight: bold;
}
.parttime .doctor dl {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 1rem 2rem;
  margin-top: 2rem;
  font-size: 1.8rem;
}
.parttime .doctor .career {
  margin-top: 5rem;
}
.parttime .doctor .career h3 {
  font-size: 2rem;
  width: fit-content;
  border-bottom: 1px solid #000;
  margin-bottom: 2rem;
}
.parttime .doctor .career p {
  font-size: 1.8rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .parttime .doctorContainer {
    max-width: 1280px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2vw;
    text-align: left;
    margin: 0 auto;
    padding: 50px 20px;
  }
  .parttime .doctor {
    display: block;
    padding: 0;
  }
  .parttime .doctor + .doctor {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px dotted #666;
  }
  .parttime .doctor .photo {
    width: 60%;
    margin: 0 auto 2rem;
    aspect-ratio: 1/1;
  }
  .parttime .doctor dl {
    grid-template-columns: max-content 1fr;
    gap: 1rem;
  }
  .parttime .doctor .data {
    width: 100%;
  }
}

.about-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery {
  margin-top: 84px;
  background-color: #f4fbff;
  padding-top: 84px;
  padding-bottom: 95px;
}
@media (max-width: 767px) {
  .gallery {
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 50px;
  }
}

.gallery-wrapper {
  margin: 0 auto;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .gallery-wrapper {
    display: block;
    width: 100%;
  }
}

.gallery-selected-container {
  width: 200%;
}
@media (max-width: 767px) {
  .gallery-selected-container {
    width: 100%;
  }
}

.gallery-selected-img {
  width: 100%;
  max-width: 800px;
  display: none;
}
.gallery-selected-img.is-active {
  display: block;
}

.gallery-selected-message {
  display: none;
}
.gallery-selected-message.is-active {
  display: block;
  display: flex;
  margin-top: 18px;
  align-items: center;
}
@media (max-width: 767px) {
  .gallery-selected-message.is-active {
    display: block;
  }
}

.gallery-selected-title {
  display: inline-block;
  width: 20%;
  color: #3cc0ff;
  font-size: 2rem;
  letter-spacing: 2px;
  text-align: center;
  padding: 0px 40px;
}
@media (max-width: 767px) {
  .gallery-selected-title {
    width: 100%;
    text-align: left;
    padding: 0;
  }
}

.gallery-selected-text {
  border-left: 1px solid #3cc0ff;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  padding-left: 24px;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .gallery-selected-text {
    margin-top: 20px;
  }
}

.gallery-items {
  margin-left: 27px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .gallery-items {
    margin-left: 0;
    margin-top: 20px;
  }
}

.gallery-item {
  width: calc(50% - 9px);
  height: 174px;
}
.gallery-item:hover {
  cursor: pointer;
}
.gallery-item.is-active {
  opacity: 1;
}
.gallery-item:not(:nth-child(2n+1)) {
  margin-left: 18px;
}
.gallery-item:nth-child(-n+4) {
  margin-bottom: 10px;
}

.gallery-item-bg {
  position: relative;
}
.gallery-item-bg.is-active::before {
  display: none;
}
.gallery-item-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #222222;
  opacity: 0.3;
  border-radius: 10px;
}

.Infection-control {
  padding-bottom: 80px;
  text-align: center;
}
@media (max-width: 767px) {
  .Infection-control {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.Infection-control-message {
  text-align: center;
  display: inline-block;
  margin: 0 auto;
  font-size: 3.2rem;
  color: #3cc0ff;
  line-height: 1.9375;
  letter-spacing: 3.2px;
  text-decoration: underline;
  text-decoration-color: #bfd5e2;
  text-underline-offset: 16px;
  margin-top: 68px;
}
@media (max-width: 767px) {
  .Infection-control-message {
    margin-top: 30px;
    font-size: 2.4rem;
    letter-spacing: 2.4px;
  }
}

.Infection-control-img-wrapper {
  margin-top: 62px;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .Infection-control-img-wrapper {
    display: block;
  }
}

.Infection-control-img:not(:first-child) {
  margin-left: 80px;
}
@media (max-width: 767px) {
  .Infection-control-img:not(:first-child) {
    margin-left: 0;
    margin-top: 20px;
  }
}

.Infection-control-text {
  margin-top: 38px;
  text-align: left;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 1.75;
}

.Infection-control .contents-info {
  margin-top: 59px;
  text-align: left;
}
@media (max-width: 767px) {
  .Infection-control .contents-info {
    margin: 30px 0 0;
  }
}

.facilities {
  background-color: #f4fbff;
  padding-top: 107px;
  padding-bottom: 83px;
  text-align: center;
}
@media (max-width: 767px) {
  .facilities {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}

.facilities-subtitle {
  margin-bottom: -9px;
}

.CT-device-wrapper-upper,
.CT-device-wrapper-middle,
.CT-device-wrapper-bottom {
  display: flex;
  margin-top: 96px;
}
@media (max-width: 767px) {
  .CT-device-wrapper-upper,
  .CT-device-wrapper-middle,
  .CT-device-wrapper-bottom {
    margin-top: 50px;
    display: block;
  }
}

.CT-device-wrapper-upper {
  flex-direction: row-reverse;
}

.CT-device-img-1 {
  margin-left: 60px;
}
@media (max-width: 767px) {
  .CT-device-img-1 {
    margin-left: 0;
    margin-bottom: 20px;
  }
}

.CT-device-description {
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 1.75;
  text-align: left;
  width: 53.6%;
}
@media (max-width: 767px) {
  .CT-device-description {
    width: auto;
  }
}

.CT-device-description-middle,
.CT-device-description-bottom {
  margin-top: 27px;
}

.CT-device-wrapper-middle {
  background-color: #fff;
  border-radius: 10px;
  margin-top: 61px;
}

.siemens-healthneers-message {
  margin-left: 50px;
  text-align: left;
  padding-top: 74px;
}
@media (max-width: 767px) {
  .siemens-healthneers-message {
    margin-left: 0;
    padding: 30px 10px 30px;
  }
}

.siemens-healthneers-title {
  color: #e65512;
  font-size: 2.6rem;
  font-weight: bold;
  border-bottom: 1px solid #e65512;
  padding-bottom: 19px;
  width: 120%;
}
@media (max-width: 767px) {
  .siemens-healthneers-title {
    font-size: 1.8rem;
    width: 100%;
  }
}

.siemens-healthneers-text {
  margin-top: 13px;
  font-size: 2rem;
  line-height: 1.65;
}
@media (max-width: 767px) {
  .siemens-healthneers-text {
    font-size: 1.4rem;
  }
}
.siemens-healthneers-text span {
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.8px;
}

.CT-device-img-3 {
  width: 100%;
}

.CT-device-wrapper-bottom {
  margin-top: 60px;
  width: 100%;
}
.CT-device-wrapper-bottom .CT-device-description {
  margin-left: 58px;
  width: 127%;
}
@media (max-width: 767px) {
  .CT-device-wrapper-bottom .CT-device-description {
    margin-left: 0;
    width: 100%;
    margin-top: 20px;
  }
}

.facilities-items-wrapper {
  width: 75%;
  margin: 77px auto 0;
}
@media (max-width: 767px) {
  .facilities-items-wrapper {
    width: auto;
  }
}

.facilities-items {
  display: flex;
  flex-wrap: wrap;
}

.facilities-item {
  width: calc(33.3% - 13.3333333333px);
  border-radius: 10px;
}
.facilities-item:not(:nth-child(3n+1)) {
  margin-left: 20px;
}
.facilities-item:nth-child(-n+3) {
  margin-bottom: 46px;
}

.facilities-item-title {
  color: #3cc0ff;
  margin-top: 10px;
  font-size: 1.4rem;
  letter-spacing: 1.4px;
}

.online-consultation {
  text-align: center;
  padding-top: 88px;
  padding-bottom: 100px;
}

.online-consultation-wrapper {
  margin-top: 58px;
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .online-consultation-wrapper {
    display: block;
  }
}

.online-consultation-container {
  width: 53.4%;
}
@media (max-width: 767px) {
  .online-consultation-container {
    width: auto;
  }
}

.online-consultation-img {
  margin-left: 60px;
}
@media (max-width: 767px) {
  .online-consultation-img {
    margin-left: 0;
  }
}

.online-consultation-text {
  text-align: left;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .online-consultation-text {
    margin-top: 20px;
  }
}
.online-consultation-text:first-child {
  margin-bottom: 30px;
}

.online-consultation-noticelist {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: left;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
}
.online-consultation-noticelist li {
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 20px;
  line-height: 1.5;
}

.online-consultation-tel {
  margin-top: 26px;
  display: block;
  border-radius: 5px;
  background-color: #f4fbff;
  padding-top: 26px;
  padding-bottom: 23px;
}

.online-consultation-tel-text {
  font-size: 1.5rem;
}

.online-consultation-tel-no {
  display: inline-block;
  margin-top: 10px;
  font-size: 2.4rem;
  letter-spacing: 2.2px;
}

.remodoc {
  display: block;
  margin-top: 22px;
  color: #fff;
  background-color: #3cc0ff;
  padding-top: 41px;
  padding-bottom: 39px;
  font-size: 2rem;
  letter-spacing: 2px;
  font-weight: bold;
  border-radius: 5px;
  position: relative;
}
@media (max-width: 767px) {
  .remodoc {
    font-size: 1.4rem;
  }
}
.remodoc::after {
  content: "";
  background: url(../img/arrow_right.svg);
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 18.8%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .remodoc::after {
    right: 5%;
  }
}

.contents-lower-inner {
  width: auto;
  max-width: 1200px;
  margin: 0 auto;
}

.contents-lower {
  padding-bottom: 120px;
}

.contents-items-lower {
  margin-top: 82px;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .contents-items-lower {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .contents-items-lower {
    display: block;
  }
}

.contents-item-lower {
  width: 17%;
  padding-top: 2px;
  padding-bottom: 0px;
}
.contents-item-lower:nth-child(n+4) {
  margin-top: 0px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .contents-item-lower {
    width: calc(33.3% - 24px);
  }
}
@media (max-width: 767px) {
  .contents-item-lower {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
}
.contents-item-lower:not(:first-child) {
  margin-left: 34px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .contents-item-lower:not(:first-child) {
    margin-left: 0px;
  }
  .contents-item-lower:not(:first-child):not(:nth-child(3n+1)) {
    margin-left: 36px;
  }
  .contents-item-lower:not(:first-child):nth-child(-n+3) {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .contents-item-lower:not(:first-child) {
    margin-left: auto;
  }
}
.contents-item-lower .contents-item-title {
  font-size: 1.8rem;
  letter-spacing: 1.8px;
  font-weight: bold;
  margin-bottom: 20px;
}
.contents-item-lower .contents-item-img {
  width: 130px;
  height: 130px;
  margin: 0 auto;
  background-color: #fff;
  padding: 34px 35px 33px 35px;
}
.contents-item-lower .contents-item-text {
  font-size: 1.3rem;
  letter-spacing: 1.3px;
  line-height: 1.4615384615;
  margin-top: 11px;
  padding-left: 2px;
}

.contents-item-lower-bg {
  background-color: #f4fbff;
  padding-top: 20px;
  padding-bottom: 50px;
  position: relative;
}
.contents-item-lower-bg::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url(../img/arrow-down-bl.png) no-repeat center center/contain;
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}

.contents-item-lower:hover .contents-item-no,
.contents-item-lower:hover .contents-item-title {
  color: #fff;
}
.contents-item-lower:hover .contents-item-lower-bg {
  background-color: #3cc0ff;
}
.contents-item-lower:hover .contents-item-lower-bg::after {
  background: url(../img/arrow-down-wh.png) no-repeat center center/contain;
}

.internal-medicine {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f4fbff;
}

.medicine-icon img {
  width: 35px;
}

.medicine-title {
  margin-top: 14px;
  font-size: 2.6rem;
  letter-spacing: 2.6px;
  font-weight: bold;
}

.medicine-wrapper {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 64px;
}
@media (max-width: 767px) {
  .medicine-wrapper {
    display: block;
  }
}

.medicine-img {
  margin-left: 60px;
}
@media (max-width: 767px) {
  .medicine-img {
    margin-left: 0;
  }
}

.medicine-container {
  width: 53.4%;
  padding-top: 17px;
}
@media (max-width: 767px) {
  .medicine-container {
    width: auto;
  }
}

.medicine-description {
  text-align: left;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 1.75;
}

.symptoms-wrapper {
  margin-top: 38px;
  padding: 45px 50px 40px 40px;
  border-radius: 10px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .symptoms-wrapper {
    padding: 45px 10px;
  }
}

.symptoms-title {
  text-align: left;
  color: #3cc0ff;
  font-size: 2rem;
  letter-spacing: 2px;
}

.symptoms-list {
  margin-top: 27px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .symptoms-list {
    display: block;
  }
}
@media (max-width: 767px) {
  .symptoms-list {
    display: block;
  }
}

.symptoms {
  width: calc(50% - 25px);
  text-align: left;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 1.875;
  padding-left: 32px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .symptoms {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .symptoms {
    width: 100%;
  }
}
.symptoms:not(:nth-child(2n+1)) {
  margin-left: 31px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .symptoms:not(:nth-child(2n+1)) {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .symptoms:not(:nth-child(2n+1)) {
    margin-left: 0;
  }
}
.symptoms::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/check.svg) no-repeat center center/contain;
  position: absolute;
  top: 9px;
  left: 10px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .symptoms::before {
    top: 0;
  }
}

.disease {
  margin-top: 39px;
  background: #fff;
  padding: 35px 50px 35px 50px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .disease {
    padding: 35px 10px;
  }
}

.disease-title {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #3cc0ff;
}

.disease-example {
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 1.75;
  margin-top: 16px;
}

.respiratory-medicine {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.respiratory-medicine .symptoms-wrapper {
  background-color: #f4fbff;
}
.respiratory-medicine .disease {
  background-color: #f4fbff;
}
.respiratory-medicine .symptoms-wrapper {
  padding: 45px 0px 40px;
}
.respiratory-medicine .symptoms-title {
  padding-left: 40px;
}
@media (max-width: 767px) {
  .respiratory-medicine .symptoms-title {
    padding-left: 10px;
  }
}

.symptoms-list-wrapper-2 {
  display: flex;
  margin-top: 27px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .symptoms-list-wrapper-2 {
    display: block;
  }
}
@media (max-width: 767px) {
  .symptoms-list-wrapper-2 {
    display: block;
  }
}
.symptoms-list-wrapper-2 .symptoms {
  width: auto;
}
.symptoms-list-wrapper-2 .symptoms:not(:nth-child(2n+1)) {
  margin-left: 0px;
}
@media (max-width: 767px) {
  .symptoms-list-wrapper-2 .symptoms:not(:nth-child(2n+1)) {
    margin-left: 0;
  }
}

.symptoms-list-2 {
  width: 50%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .symptoms-list-2 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .symptoms-list-2 {
    width: 100%;
  }
}
.symptoms-list-2:first-child {
  padding-left: 40px;
  padding-right: 10px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .symptoms-list-2:first-child {
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .symptoms-list-2:first-child {
    padding-left: 10px;
  }
}
.symptoms-list-2:not(:first-child) {
  padding-right: 42px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .symptoms-list-2:not(:first-child) {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .symptoms-list-2:not(:first-child) {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.non-smoking-outpatient {
  text-align: left;
  margin-top: 26px;
  line-height: 1.4;
  padding-right: 40px;
}
.non-smoking-outpatient .contents-info-title {
  margin-bottom: 12px;
}
.non-smoking-outpatient .contents-info-title::before {
  background: url(../img/non-smoking.svg) no-repeat center center/80%;
  background-color: #3cc0ff;
}
.non-smoking-outpatient .contents-info-text {
  letter-spacing: 1.5px;
}

.allergy-medicine {
  text-align: center;
  background-color: #f4fbff;
  padding-top: 80px;
  padding-bottom: 80px;
}
.allergy-medicine .symptoms-list-2:first-child {
  padding: 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .allergy-medicine .symptoms-list-2:first-child {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.allergy-medicine .symptoms-list-2:not(:first-child) {
  padding-left: 5px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .allergy-medicine .symptoms-list-2:not(:first-child) {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .allergy-medicine .symptoms-list-2:not(:first-child) {
    padding: 0;
  }
}
.allergy-medicine .disease {
  margin-top: 51px;
}

.home-medicine,
.vaccination,
.self-medical,
.examination {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.home-medicine .medicine-description,
.vaccination .medicine-description,
.self-medical .medicine-description,
.examination .medicine-description {
  width: 53.4%;
  margin-top: 17px;
}
@media (max-width: 767px) {
  .home-medicine .medicine-description,
  .vaccination .medicine-description,
  .self-medical .medicine-description,
  .examination .medicine-description {
    width: auto;
  }
}

.home-medicine .medicine-title {
  margin-top: 12px;
}
.home-medicine .medicine-wrapper {
  margin-top: 66px;
}

.vaccination {
  background-color: #F4FBFF;
}
.vaccination .medicine-wrapper {
  margin-top: 64px;
}

.self-medical {
  padding-top: 76px;
  padding-bottom: 152px;
  background-color: #F4FBFF;
}
.self-medical .medicine-icon img {
  width: 27px;
}
.self-medical .medicine-title {
  margin-top: 16px;
}

.tax-in {
  margin-top: 70px;
  text-align: right;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  width: 100%;
  padding-bottom: 23px;
  border-bottom: 1px solid #bfd5e2;
}

.self-medical-title {
  text-align: left;
  margin-top: 54px;
  font-size: 2rem;
  letter-spacing: 2px;
  color: #3cc0ff;
  font-weight: bold;
}
.self-medical-title span {
  font-size: 1.6rem;
  color: #222222;
  letter-spacing: 1.6px;
}

.self-medical-list {
  margin-top: 33px;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 50px;
  border-bottom: 1px solid #bfd5e2;
}
@media (max-width: 1200px) {
  .self-medical-list {
    display: block;
  }
}

.self-medical-item {
  display: flex;
  align-items: center;
  background-color: #f4fbff;
  width: calc(50% - 10px);
  padding: 29px 30px 24px;
  border-radius: 10px;
}
@media (max-width: 1200px) {
  .self-medical-item {
    width: auto;
    margin-bottom: 20px;
    padding: 29px 5px 24px;
  }
}
.self-medical-item:not(:nth-child(2n+1)) {
  margin-left: 20px;
}
@media (max-width: 1200px) {
  .self-medical-item:not(:nth-child(2n+1)) {
    margin-left: 0;
  }
}
.self-medical-item:nth-child(-n+2) {
  margin-bottom: 17px;
}

.self-medical-item-title {
  font-size: 1.8rem;
  letter-spacing: 1.8px;
}
@media (max-width: 767px) {
  .self-medical-item-title {
    font-size: 1.4rem;
    letter-spacing: 1.4px;
  }
}

.self-medical-item-cost {
  display: inline-block;
  margin-left: auto;
  color: #3cc0ff;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  line-height: 21px;
}
@media (max-width: 767px) {
  .self-medical-item-cost {
    font-size: 1.2rem;
    letter-spacing: 1.2px;
  }
}
.self-medical-item-cost span {
  vertical-align: middle;
  display: inline-block;
  font-family: "Montserrat";
  font-size: 2.4rem;
  letter-spacing: 2.4px;
  padding-left: 10px;
  line-height: 29px;
}

.Lung-dock-list li:nth-child(3) {
  width: 100%;
}

.human-dock-list {
  padding-bottom: 31px;
}
.human-dock-list li:first-child {
  width: 100%;
}

.examination-list {
  padding-bottom: 22px;
}

.placenta-list {
  padding-bottom: 31px;
}
.placenta-list .self-medical-item-cost:nth-of-type(2) {
  margin-left: 22px;
}

.access-message {
  margin-top: 77px;
}
@media (max-width: 767px) {
  .access-message {
    margin-top: 40px;
  }
}
.access-message p {
  text-align: center;
  font-size: 2.4rem;
  letter-spacing: 4.8px;
  line-height: 2;
  font-weight: bold;
}
@media (max-width: 767px) {
  .access-message p {
    font-size: 1.2rem;
    letter-spacing: 2.4px;
  }
}
.access-message p span {
  color: #3cc0ff;
}

.access-2 {
  margin-top: 47px;
  background-color: #f4fbff;
  padding-top: 60px;
  padding-bottom: 66px;
  text-align: center;
}

.access-root-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.access-root-logo-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .access-root-logo-wrapper {
    display: block;
  }
}

.access-root-logo {
  display: flex;
  align-items: center;
}
.access-root-logo .logo-icon {
  margin-left: 0;
}
.access-root-logo .header-logo-img {
  width: 235px;
}

.access-logo-address {
  font-size: 1.5rem;
  letter-spacing: 1.6px;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .access-logo-address {
    margin-left: 0;
    margin-top: 15px;
    font-size: 1.2rem;
    letter-spacing: 1.2px;
  }
}

#access-root-google-map {
  width: 100%;
  max-width: 1200px;
  max-height: 400px;
  border-radius: 10px;
}

.access-root-google-map-wrapper {
  position: relative;
  margin-top: 19px;
}

@media (max-width: 767px) {
  .google-map-comments-wrapper {
    text-align: right;
  }
}

.google-map-comments {
  display: inline-block;
  color: #3cc0ff;
  font-weight: bold;
  font-size: 1.7rem;
  letter-spacing: 3.4px;
  line-height: 1.4117647059;
  background: url(../img/balloon.svg) no-repeat center center/cover;
  padding: 18px 39px 41px 42px;
  position: absolute;
  top: -66px;
  right: 11px;
}
@media (max-width: 767px) {
  .google-map-comments {
    padding: 15px 20px 35px 20px;
    position: initial;
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: 1.2px;
  }
}

.btn-wrapper {
  margin-top: 32px;
}

.btn {
  border-radius: 23px;
  padding: 12px 36px 13px;
  font-size: 1.4rem;
}

.google-map-btn {
  background-color: #3cc0ff;
  color: #fff;
}

.access-root {
  padding-top: 85px;
  padding-bottom: 145px;
}

.access-root-title {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 4.8px;
}
@media (max-width: 767px) {
  .access-root-title {
    font-size: 1.4rem;
    letter-spacing: 2.8px;
  }
}
.access-root-title:not(:first-child) {
  margin-top: 100px;
}

.access-root-from-noda {
  margin-top: 77px;
}

.root-items {
  display: flex;
  width: 66%;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .root-items {
    width: auto;
  }
}
@media (max-width: 767px) {
  .root-items {
    display: block;
  }
}

.root-item {
  max-width: 290px;
  position: relative;
}
@media (max-width: 767px) {
  .root-item {
    max-width: 100%;
  }
}
.root-item:not(:first-child) {
  margin-left: 24px;
}
@media (max-width: 767px) {
  .root-item:not(:first-child) {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .root-item:not(:last-child) {
    margin-bottom: 50px;
  }
}
.root-item::before {
  content: "1";
  font-family: "Montserrat";
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  width: 47px;
  height: 47px;
  line-height: 47px;
  background-color: #3cc0ff;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: -10px;
  left: -6px;
}
@media (max-width: 767px) {
  .root-item::before {
    font-size: 1.8rem;
  }
}

.access-root-from-2::before {
  content: "2";
}

.access-root-from-3::before {
  content: "3";
}

.access-root-from-4::before {
  content: "4";
}

@media (max-width: 767px) {
  .root-img img {
    width: 100%;
  }
}

.root-item-title {
  margin-top: 17px;
  margin-left: 5px;
  color: #3cc0ff;
  font-size: 1.8rem;
  letter-spacing: 1.8px;
  font-weight: bold;
  line-height: 1.4444444444;
}
.root-item-title .br-1 {
  display: none;
}
@media (max-width: 1800px) {
  .root-item-title .br-1 {
    display: block;
  }
  .root-item-title .br-2 {
    display: none;
  }
}
@media (max-width: 767px) {
  .root-item-title {
    font-size: 1.4rem;
    letter-spacing: 1.4px;
  }
  .root-item-title .br-1,
  .root-item-title .br-2 {
    display: none;
  }
}

.root-item-text {
  width: 105%;
  margin-top: 12px;
  margin-left: 5px;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 1.6px;
}
@media (max-width: 767px) {
  .root-item-text {
    font-size: 1.4rem;
    letter-spacing: 1.4px;
  }
}

.access-root-from-nodahanshin,
.access-root-from-ebie {
  margin-top: 76px;
}

.recruit {
  background-color: #F4FBFF;
  margin-top: 81px;
  padding-top: 77px;
  padding-bottom: 67px;
}

.recruit-inner {
  width: auto;
  max-width: 1200px;
  margin: 0 auto;
}

.recruit-access-message {
  margin-top: 0;
}

.recruit-message-wrapper {
  margin-top: 46px;
  display: flex;
}
@media (max-width: 767px) {
  .recruit-message-wrapper {
    display: block;
  }
}

.recruit-message {
  margin-left: 60px;
  width: 85.7%;
}
@media (max-width: 767px) {
  .recruit-message {
    margin-left: 0;
  }
}

.recruit-message-1,
.recruit-message-2 {
  font-size: 1.8rem;
  letter-spacing: 1.8px;
  line-height: 1.5555555556;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .recruit-message-1,
  .recruit-message-2 {
    font-size: 1.2rem;
    letter-spacing: 1.2px;
  }
}

.recruit-message-2 {
  margin-bottom: 25px;
}

.recruit-message-3 {
  font-size: 2rem;
  letter-spacing: 2px;
  line-height: 1.8;
  font-weight: bold;
}
@media (max-width: 767px) {
  .recruit-message-3 {
    font-size: 1.6rem;
    letter-spacing: 1.6px;
  }
}
.recruit-message-3 span {
  color: #3cc0ff;
}

.no-recruit {
  text-align: center;
  padding-top: 84px;
  padding-bottom: 251px;
}
@media (max-width: 767px) {
  .no-recruit {
    padding-top: 40px;
    padding-bottom: 120px;
  }
}

.no-recruit-message {
  font-size: 2.4rem;
  letter-spacing: 4.8px;
  font-weight: bold;
  color: #3cc0ff;
}
@media (max-width: 767px) {
  .no-recruit-message {
    font-size: 1.6rem;
    letter-spacing: 1.6px;
  }
}

.job-offer {
  margin-bottom: 129px;
}

.job-offer-title {
  margin-bottom: 30px;
  font-size: 24px;
  letter-spacing: 4.8px;
}

.job-conditions {
  display: flex;
}
.job-conditions:nth-of-type(3) {
  margin-top: -5px;
}
.job-conditions:nth-of-type(4) {
  margin-top: -5px;
}
.job-conditions:nth-of-type(5) {
  margin-top: 6px;
}
.job-conditions:nth-of-type(7) {
  margin-top: -5px;
}
@media (max-width: 767px) {
  .job-conditions {
    display: block;
  }
}

.job-condition-title {
  width: 26%;
  font-size: 1.8rem;
  letter-spacing: 1.8px;
  color: #3cc0ff;
  font-weight: bold;
  border-bottom: 1px solid #3CC0FF;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 33px;
}
@media (max-width: 767px) {
  .job-condition-title {
    width: auto;
    display: inline-block;
    padding-bottom: 15px;
  }
}

.job-condition-description {
  width: 74%;
  margin-left: 30px;
  padding: 38px 0px 30px 39px;
  border-bottom: 1px solid #BFD5E2;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .job-condition-description {
    width: 100%;
    margin-left: 0;
    text-align: center;
    padding-bottom: 15px;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .working-hours {
    text-align: left;
  }
}

.nurse {
  margin-bottom: 123px;
}

.contact {
  text-align: center;
  padding-top: 34px;
  padding-bottom: 22px;
  border: 3px solid #3cc0ff;
  margin-bottom: 120px;
}

.contact-title {
  font-size: 2rem;
  letter-spacing: 2px;
  color: #3cc0ff;
}
@media (max-width: 767px) {
  .contact-title {
    font-size: 1.6rem;
    letter-spacing: 1.6px;
  }
}

.contact-message {
  margin-top: 26px;
  font-size: 1.5rem;
  letter-spacing: 0px;
}
@media (max-width: 767px) {
  .contact-message {
    font-size: 1.2rem;
  }
}

.contact-tel {
  display: inline-block;
  margin-top: 14px;
  font-size: 2.4rem;
  letter-spacing: 2.4px;
}
@media (max-width: 767px) {
  .contact-tel {
    font-size: 1.2rem;
    margin-top: 15px;
    padding-left: 19px;
  }
  .contact-tel::before {
    width: 12px;
    height: 12px;
  }
}