@charset "UTF-8";

.wp-block-columns{
	display:flex;
}

/*----------------------------------------
	variables
----------------------------------------*/
:root {
  --c_main: #3A7CA5;
  --c_sub: #5FA0C9;
  --c_blue: #E7F2FA;
  --c_bage: #F9F5EF;
  --c_green: #6BA292;
  --c_yellow: #DCB515;
  --c_black: #333333;
  --c_white: #FFFFFF;
  --f_sans: "Noto Sans JP", sans-serif;
  --f_maru: "Zen Maru Gothic", sans-serif;
  --f_mplus: "M PLUS 2", sans-serif;
}

/*----------------------------------------
	base
----------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--f_sans);
  font-weight: 500;
  font-size: 16px;
  font-style: normal;
  color: var(--c_black);
  line-height: 1;
  overflow-X: hidden;
}

a,
button {
  text-decoration: none;
  color: var(--c_black);
  transition: all 0.3s;
  cursor: pointer;
}

/* a:hover,
button:hover {
  opacity: 0.7;
} */

li {
  list-style: none;
}

img,
iframe {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/*----------------------------------------
	header
----------------------------------------*/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1600px;
}

.site-ttl {
  font-size: 14px;
}

.site-logo {
  margin-top: 10px;
  flex-shrink: 0;
}

.header__info {
  display: flex;
  justify-content: space-between;
}

.header__address {
  font-size: 12px;
  line-height: 1.2;
}

.tel {
  display: flex;
  gap: 5px;
}

.tel__txt {
  font-size: 12px;
  line-height: 1.2;
}

.tel__box {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--c_green);
  border-radius: 0 0 0 15px;
  padding: 15px;
  position: relative;
  top: -24px;
  right: -40px;
}
.tel__box span {
  color: var(--c_white);
  font-family: var(--f_mplus);
  font-size: 28px;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 1103px) {
  .header {
    padding: 7px 20px;
  }
  .site-ttl {
    font-size: 9px;
  }
  .site-logo {
    margin-top: 8px;
    width: 200px;
  }
  .header__info {
    display: none;
  }
  .header__address {
    font-size: 12px;
    line-height: 1.2;
  }
}
/*----------------------------------------
	gnav
----------------------------------------*/
/*PC*/
.gnav-pc {
  margin-top: 21px;
}
.gnav-pc .gnav__list {
  display: flex;
  gap: 25px;
}
.gnav-pc .gnav__item {
  position: relative;
}
.gnav-pc .gnav__link {
  display: inline-block;
  font-family: var(--f_maru);
  font-size: 18px;
  letter-spacing: 0.05em;
  padding-right: 27px;
  border-right: 2px dotted var(--c_main);
  white-space: nowrap;
}
.gnav-pc .gnav__link--last {
  padding-right: 0;
  border-right: none;
}
.gnav-pc .gnav__link--more {
  position: relative;
}
.gnav-pc .gnav__link--more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--c_main);
  border-bottom: 2px solid var(--c_main);
}
.gnav-pc .gnav__submenu {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--c_bage);
  padding: 15px;
  border-radius: 10px;
  white-space: nowrap;
  z-index: 1;
  display: none;
}
.gnav-pc .gnav__submenu::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  border: 20px solid transparent;
  border-bottom-color: var(--c_bage);
}
.gnav-pc .gnav__submenu-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.gnav-pc .gnav__submenu-item {
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 9px;
}
.gnav-pc .gnav__submenu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.gnav-pc .gnav__submenu-link {
  font-size: 14px;
  display: inline-block;
  transition: opacity 0.3s;
}
.gnav-pc .gnav__item:hover .gnav__submenu {
  display: block;
}

/*SP*/
.gnav-sp {
  display: none;
  position: fixed;
  width: 100%;
  inset: 0;
  z-index: 200;
  background: var(--c_white);
  padding: 7px 20px 23px 20px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-image: url(../img/fv_bg_sp.png);
  background-position: center 150px;
  background-size: contain;
  background-repeat: no-repeat;
}
.gnav-sp .gnav__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}
.gnav-sp .gnav__item {
  position: relative;
}
.gnav-sp .gnav__link {
  display: inline-block;
  font-family: var(--f_maru);
  font-size: 18px;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
  border-bottom: 2px dotted var(--c_main);
  width: 100%;
}
.gnav-sp .gnav__link--last {
  padding-bottom: 0;
  border-bottom: none;
}
.gnav-sp .gnav__link--more {
  position: relative;
}
.gnav-sp .gnav__link--more::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 10px;
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--c_main);
  border-bottom: 2px solid var(--c_main);
}
.gnav-sp .gnav__submenu {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--c_bage);
  padding: 20px;
  white-space: nowrap;
  z-index: 1;
  display: none;
  width: 100%;
}
.gnav-sp .gnav__submenu-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.gnav-sp .gnav__submenu-item {
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 9px;
}
.gnav-sp .gnav__submenu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.gnav-sp .gnav__submenu-link {
  font-size: 14px;
  display: inline-block;
  transition: opacity 0.3s;
}
.gnav-sp .gnav__item.is-open {
  padding-bottom: 100px;
}
.gnav-sp .gnav__link--more.is-open::after {
  transform: rotate(-135deg);
}
.gnav-sp .gnav__cta {
  margin-top: 30px;
  padding: 64px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background-color: rgba(122, 161, 150, 0.7);
}
.gnav-sp .gnav__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../img/gnav_bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.gnav-sp .gnav__cta-lead {
  text-align: center;
  color: var(--c_white);
  font-family: var(--f_maru);
  font-size: 20px;
  line-height: 1.4;
  width: 233px;
}
.gnav-sp .gnav__cta-ttl {
  text-align: center;
  color: var(--c_white);
  font-family: var(--f_maru);
  font-size: 28px;
  line-height: 1.4;
  width: 300px;
  margin-top: 18px;
}
.gnav-sp .gnav__cta-txt {
  text-align: center;
  color: var(--c_white);
  margin-top: 16px;
}
.gnav-sp .gnav__cta-list {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.gnav-sp .gnav__cta-item {
  position: relative;
  width: 100%;
}
.gnav-sp .gnav__cta-link {
  display: inline-block;
  width: 100%;
  padding: 9px 0;
  border: 1px solid var(--c_white);
  border-radius: 38px;
  display: grid;
  place-content: center;
}
.gnav-sp .gnav__cta-item--web .gnav__cta-link {
  background-color: var(--c_main);
}
.gnav-sp .gnav__cta-item--web .gnav__cta-desc {
  color: var(--c_white);
  font-family: var(--f_maru);
  font-size: 20px;
  line-height: 1.4;
}
.gnav-sp .gnav__cta-item--tel .gnav__cta-link {
  background-color: var(--c_bage);
  padding: 4px 0;
}
.gnav-sp .gnav__cta-item--tel .gnav__cta-link-box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.gnav-sp .gnav__cta-item--tel .gnav__cta-desc {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gnav-sp .gnav__cta-item--tel .gnav__cta-desc span:first-of-type {
  color: var(--c_main);
  font-family: var(--f_maru);
  font-size: 28px;
  line-height: 1.4;
}
.gnav-sp .gnav__cta-item--tel .gnav__cta-desc .gnav__cta-sm {
  color: var(--c_main);
  font-size: 12px;
  letter-spacing: 0.05em;
  display: grid;
  place-content: center;
}
.gnav-sp .gnav__cta-item--line .gnav__cta-link {
  background-color: var(--c_white);
}
.gnav-sp .gnav__cta-item--line .gnav__cta-desc {
  display: flex;
  align-items: center;
  gap: 8px;
}
.gnav-sp .gnav__cta-item--line .gnav__cta-desc span {
  color: var(--c_main);
  font-family: var(--f_maru);
  font-size: 20px;
  line-height: 1.4;
}
.gnav-sp .gnav__cta-speech {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--c_white);
  font-size: 12px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.gnav-sp .gnav__cta-more {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 1103px) {
  .gnav-pc {
    display: none;
  }
}
/*----------------------------------------
	hamburger
----------------------------------------*/
.hamburger {
  display: none;
  width: 45px;
  height: 45px;
  position: fixed;
  top: 27px;
  right: 20px;
  z-index: 300;
  border-radius: 50%;
  background-color: var(--c_main);
}

.hamburger__line {
  width: 18px;
  height: 2px;
  background: var(--c_white);
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.hamburger__line::before,
.hamburger__line::after {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--c_white);
  position: absolute;
  transition: transform 0.3s;
}

.hamburger__line::before {
  top: -5px;
}

.hamburger__line::after {
  top: 5px;
}

.hamburger__txt {
  font-family: var(--f_maru);
  font-size: 11px;
  color: var(--c_white);
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
}

/*OPEN時スタイル*/
.hamburger[aria-expanded=true] .hamburger__line {
  background: transparent;
}

.hamburger[aria-expanded=true] .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger[aria-expanded=true] .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
}

@media screen and (max-width: 1103px) {
  .hamburger {
    display: block;
  }
}
/*----------------------------------------
	main
----------------------------------------*/
.main {
  margin-right: auto;
  margin-left: auto;
  max-width: 1600px;
  position: relative;
}

/*----------------------------------------
	footer
----------------------------------------*/
.footer {
  background-color: var(--c_blue);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: 74px;
}

.footer__inner {
  display: flex;
  gap: 47px;
  justify-content: space-between;
}

.footer__site-logo {
  margin-bottom: 22px;
  display: inline-block;
}

.footer__access .access__term {
  background-color: var(--c_main);
  color: var(--c_white);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 55px;
  margin-top: 50px;
}

.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav__link {
  display: inline-block;
}

.footer-nav__item.is-child {
  padding-left: 0.5em;
}

.footer-info {
  margin-top: 22px;
  background-color: var(--c_white);
  padding: 32px 34px 66px 28px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-info__item {
  display: flex;
  justify-content: space-between;
  gap: 26px;
}

.footer-info__ttl {
  font-size: 20px;
  color: var(--c_main);
  padding-left: 15px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  white-space: nowrap;
  position: relative;
}

.footer-info__ttl::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 3px;
  height: 24px;
  background-color: var(--c_sub);
}

.footer-info__subttl {
  font-size: 16px;
}

.footer-info__txt {
  max-width: 621px;
}

.footer-info__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 621px;
}

.copyright {
  background-color: #275E7F;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 67px;
  margin-top: 30px;
}

.copyright__txt {
  color: var(--c_white);
}

.copyright__list {
  display: flex;
  gap: 13px;
}

.copyright__link {
  display: inline-block;
  color: var(--c_white);
}

@media screen and (max-width: 834px) {
  .footer {
    padding-top: 27px;
  }
  .footer__inner {
    gap: 31px;
    flex-direction: column;
  }
  .footer__site-logo {
    margin-bottom: 15px;
    display: inline-block;
    text-align: center;
  }
  .footer-nav {
    margin-top: 0px;
  }
  .footer-info {
    margin-top: 31px;
    padding: 16px 14px 23px 14px;
  }
  .footer-info__item {
    gap: 12px;
    flex-direction: column;
  }
  .footer-info__subttl {
    font-size: 14px;
  }
  .footer-info__txt {
    width: 100%;
  }
  .footer-info__list {
    width: 100%;
  }
  .copyright {
    flex-direction: column-reverse;
    padding: 13px 20px 110px 20px;
    margin-top: 32px;
    gap: 20px;
    text-align: center;
  }
  .copyright__list {
    gap: 5px;
    flex-direction: column;
  }
}
/*----------------------------------------
	container
----------------------------------------*/
.container {
  max-width: 1040px;
  padding: 0 20px;
  margin-right: auto;
  margin-left: auto;
}

/*----------------------------------------
    section
----------------------------------------*/
.section {
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .section {
    padding: 50px 0;
  }
}
/*----------------------------------------
    heading
----------------------------------------*/
.heading-lv2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom:10rem;
}

#access.heading-lv2{
	padding-top: 70px;
  margin-top:-70px;
}

.heading-lv2--en {
  font-family: var(--f_maru);
  font-size: 15px;
  color: var(--c_white);
  letter-spacing: 0.05em;
  background-color: var(--c_main);
  border-radius: 18px;
  width: 120px;
  text-align: center;
  padding: 6px 0;
}

.heading-lv2--ja {
  font-family: var(--f_maru);
  font-size: 36px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .heading-lv2--en {
    width: 100px;
    padding: 5px 0;
    font-size: 10px;
  }
  .heading-lv2--ja {
    font-size: 28px;
  }
	.heading-lv2{
		margin-bottom:0rem;
	}
}
/*----------------------------------------
    more
----------------------------------------*/
.more {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--c_main);
  display: inline-block;
}
.more span {
  font-size: 18px;
  letter-spacing: 0.05em;
}
.more img {
  margin-left: 20px;
  margin-bottom: -8px;
  position: relative;
  right: 0;
}
.more .more__beginner {
  margin-left: 0;
  margin-right: 9px;
}

@media screen and (max-width: 767px) {
  .more span {
    font-size: 14px;
  }
}
/*----------------------------------------
    txt
----------------------------------------*/
.txt {
  letter-spacing: 0.05em;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .txt {
    font-size: 14px;
  }
}
/*----------------------------------------
    sticky
----------------------------------------*/
.sticky--pc {
  position: fixed;
  bottom: 50px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
}
.sticky--pc .reserve {
  display: flex;
  align-items: center;
  gap: 2px;
}
.sticky--pc .page-top {
  width: 61px;
  height: 61px;
  color: var(--c_white);
  background-color: #949A9B;
  font-size: 30px;
  border-radius: 50%;
  display: grid;
  place-content: center;
}

.sticky--sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .sticky--pc {
    display: none;
  }
  .sticky--sp {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 10;
    width: 100%;
    padding: 15px;
  }
  .sticky--sp .page-top {
    width: 61px;
    height: 61px;
    color: var(--c_white);
    background-color: #949A9B;
    font-size: 30px;
    border-radius: 50%;
    display: grid;
    place-content: center;
    flex-shrink: 0;
  }
}
/*----------------------------------------
    br
----------------------------------------*/
.br--sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .br--sp {
    display: block;
  }
}
/*----------------------------------------
	トップページ専用
----------------------------------------*/
/* FV
------------------------------ */
.fv {
  position: relative;
  padding-top: 75px;
}

.fv::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-image: url(../img/fv_bg_pc.png);
  background-position: right top;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.fv__img--main-img {
  border-radius: 0 20px 20px 0;
}

.point__list--pc {
  display: flex;
  gap: 3px;
  position: absolute;
  top: 440px;
  left: 25px;
}
.point__list--pc .point__item {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 200px;
  height: 230px;
  position: relative;
}
.point__list--pc .point__item:nth-child(odd) {
  background-image: url(../img/fv_circle_blue.png);
}
.point__list--pc .point__item:nth-child(even) {
  background-image: url(../img/fv_circle_green.png);
}
.point__list--pc .point__link {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-align: center;
  pointer-events: none;
}
.point__list--pc .point__num {
  color: var(--c_white);
  font-family: var(--f_mplus);
  font-size: 13px;
  letter-spacing: 0.06em;
  margin-top: 50px;
}
.point__list--pc .point__ttl {
  color: var(--c_white);
  font-family: var(--f_maru);
  font-size: 22px;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-top: 10px;
}
.point__list--pc .point__ttl span {
  font-size: 18px;
}
.point__list--pc .point__txt {
  color: var(--c_white);
  font-family: var(--f_maru);
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-top: 10px;
}
.point__list--pc .point__more {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.point__list--sp {
  display: none;
}

.fv__note {
  margin-top: 30px;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-left: 25px;
}

.fv__body {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  position: absolute;
  top: 102px;
  right: 17%;
}

.fv__body::before {
  content: "";
  position: absolute;
  top: 0;
  right: 12px;
  width: 40px;
  height: 300px;
  border-radius: 20px;
  background-color: var(--c_bage);
  z-index: -1;
}

.fv__tags {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 4px;
  position: relative;
  height: 300px;
}

.fv__tag {
  display: inline-block;
  background-color: var(--c_main);
  color: var(--c_white);
  padding: 16px 8px;
  border-radius: 20px;
  writing-mode: vertical-rl;
  text-align: center;
  font-family: var(--f_maru);
  font-size: 15px;
  letter-spacing: 0.05em;
}

.fv__station {
  writing-mode: vertical-rl;
  letter-spacing: 0.5em;
  font-family: var(--f_maru);
  margin-top: 24px;
}

.fv__heading-lv2 {
  writing-mode: vertical-rl;
  font-size: 36px;
  letter-spacing: 0.5em;
  line-height: 1.3;
  font-family: var(--f_maru);
}
.fv_heading1{
	display:block;
	margin-left:.5em
}
.fv__list {
  display: flex;
  justify-content: center;
  gap: 49px;
  margin-top: 75px;
  padding: 0 20px;
}

.fv__item {
  position: relative;
}

.fv__link {
  display: inline-block;
  pointer-events: none;
}

.fv__img {
  box-shadow: 0 4px 16.2px #ADBDC2;
  border-radius: 10px;
}

.fv__box {
  width: 259px;
  padding: 11px 0 19px 9px;
  background-color: var(--c_white);
  border-radius: 0 0 20px 0;
  position: absolute;
  top: 0;
  left: 0;
}

.fv__desc {
  color: var(--c_main);
  font-family: var(--f_maru);
  letter-spacing: 0.05em;
}

.fv__lead {
  font-family: var(--f_maru);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 10px;
}

.fv__more {
  position: absolute;
  right: 24px;
  bottom: 20px;
}

@media screen and (min-width: 1600px) {
  .fv {
    max-width: 1600px;
    margin-right: auto;
    margin-left: auto;
  }
  .fv::before {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .fv__img--main-img {
    width: 75%;
    height: 560px;
    object-position: top center;
  }
  .fv__body {
    right: 0;
  }
}
@media screen and (max-width: 1600px) {
  .fv__body {
    right: 10%;
  }
}
@media screen and (max-width: 1400px) {
  .fv__body {
    right: 6.57%;
  }
}
@media screen and (max-width: 834px) {
  .fv {
    padding-top: 20px;
  }
  .fv::before {
    background-image: url(../img/fv_bg_sp.png);
    background-position: center 150px;
  }
  .fv__img--main {
    left: -20px;
  }
  .point__list--pc {
    display: none;
  }
  .point__list--sp {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .point__list--sp .point__item {
    padding: 10px 17px;
    border-radius: 26px;
    position: relative;
  }
  .point__list--sp .point__item:nth-child(odd) {
    background-color: var(--c_main);
  }
  .point__list--sp .point__item:nth-child(even) {
    background-color: var(--c_green);
  }
  .point__list--sp .point__link {
    display: inline-block;
    font-family: var(--f_maru);
    font-size: 12px;
    letter-spacing: 0.06em;
    line-height: 1.4;
    color: var(--c_white);
  }
  .point__list--sp .point__more {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }
  .fv__note {
    display: none;
  }
  .fv__body {
    flex-direction: column;
    gap: 15px;
    position: static;
    top: auto;
    right: auto;
    margin-top: -20px;
    padding: 0 20px;
  }
  .fv__body::before {
    display: none;
  }
  .fv__tags {
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    width: 204px;
    height: auto;
  }
  .fv__tag {
    color: var(--c_white);
    padding: 8px;
    border-radius: 25px;
    writing-mode: horizontal-tb;
    font-size: 12px;
    letter-spacing: 0;
  }
  .fv__tag:nth-child(1) {
    order: 3;
  }
  .fv__tag:nth-child(2) {
    order: 4;
  }
  .fv__tag:nth-child(3) {
    order: 1;
  }
  .fv__tag:nth-child(4) {
    order: 2;
  }
  .fv__station {
    writing-mode: horizontal-tb;
    font-size: 12px;
    background-color: var(--c_bage);
    border-radius: 25px;
    padding: 8px;
    margin-top: -110px;
    display: inline-block;
    position: relative;
    width: 220px;
    z-index: 9;
  }
  .fv__heading-lv2 {
    writing-mode: horizontal-tb;
    font-size: 6.2svw;
    line-height: 1.3;
    letter-spacing: 0.3em;
    margin-top: 70px;
  }
  .fv__list {
    flex-direction: column;
    align-items: center;
    gap: 11px;
  }
  .fv__img {
    aspect-ratio: 2/1;
  }
  .fv__box {
    padding: 4px 0 4px 9px;
  }
}
/* アクセス・診療時間
------------------------------ */
.access {
  padding-top: 50px;
}

.access__inner {
  margin-top: 64px;
  display: flex;
  gap: 38px;
}

.access__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #E4E4E4;
}

.access__thead {
  background-color: var(--c_sub);
}

.access__th {
  color: var(--c_white);
  padding: 17px 0;
  border-right: 1px solid var(--c_white);
  text-align: center;
}

.access__th:last-child {
  border-right: none;
}

.access__td {
  padding: 27px 17px;
  vertical-align: middle;
  white-space: nowrap;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  background-color: var(--c_white);
}

.access__td:last-child {
  border-right: none;
}

.access__tr:last-child .access__td {
  border-bottom: none;
}

.access__td--blue {
  color: var(--c_sub);
}

.access__td--yellow {
  color: var(--c_yellow);
}

.access__time-sub {
  font-size: 12px;
  margin-top: 5px;
}

.access_note {
  margin-top: 12px;
}

.access__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 38px;
}

.access__row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.access__term {
  background-color: var(--c_bage);
  border-radius: 12px;
  padding: 5px 0;
  width: 130px;
  text-align: center;
  flex-shrink: 0;
}

.access__link {
  display: inline-block;
  border-bottom: 1px solid var(--c_black);
}

.access__box {
  position: relative;
}

.access__img {
  flex-shrink: 0;
}
.access__img img {
  border-radius: 10px;
}

.access__more-box {
  margin-top: 36px;
  width: 320px;
  position: absolute;
  right: 0;
}

.access__more {
  width: 100%;
}
.access__more .more {
  width: 100%;
  padding: auto;
  position: relative;
}
.access__more .more img {
  position: absolute;
  right: 0;
  top: -8px;
}

.access__more--beginner {
  margin-top: 20px;
}
.access__more--beginner .more {
  width: 100%;
}
.access__more--beginner img:first-of-type {
  margin-left: 0;
  position: static;
  right: auto;
  top: auto;
}
.access__more--beginner .beginner {
  margin-right: 5px;
}
.access__more--beginner img:last-of-type {
  position: absolute;
  right: 0;
  top: -4px;
}

@media screen and (max-width: 834px) {
  .access__inner {
    margin-top: 24px;
    flex-direction: column;
    gap: 32px;
  }
  .access__td {
    padding: 27px 7px;
  }
  .access__list {
    margin-top: 23px;
  }
  .access__row {
    flex-direction: column;
  }
  .access__term {
    width: 100%;
  }
  .access__img {
    text-align: center;
  }
  .access__more .more span {
    font-size: 14px;
  }
  .access__more-box {
    margin-top: 41px;
    width: 100%;
    position: static;
    right: auto;
  }
  .access__more--beginner {
    margin-top: 17px;
  }
}
@media screen and (max-width: 374px) {
  .access__td {
    padding: 27px 0;
  }
}
/* お知らせ
------------------------------ */
.news {
  background-color: var(--c_bage);
  border-radius: 10px;
  padding: 54px 67px 58px 107px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 115px;
}

.news__box {
  white-space: nowrap;
}

.news__more {
  text-align: center;
  margin-top: 19px;
}

.news__list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.news__item {
  border-bottom: 2px dotted #B9AC98;
}

.news__link {
  padding-bottom: 16px;
  display: inline-block;
}

.news__info {
  display: flex;
  align-items: center;
  gap: 6px;
}

.news__date {
  color: #7E7B77;
}

.news__cat {
  background-color: var(--c_main);
  border-radius: 12px;
  color: var(--c_white);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 5px 12px;
  height: 22px;
}

.news__heading-lv3 {
  margin-top: 9px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .news {
    padding: 32px 20px 122px 20px;
    flex-direction: column;
    gap: 39px;
    position: relative;
  }
  .news__more {
    position: absolute;
    bottom: 42px;
    left: 50%;
    transform: translateX(-50%);
  }
  .news__list {
    gap: 24px;
  }
  .news__link {
    padding-bottom: 19px;
  }
  .news__cat {
    display: none;
  }
  .news__heading-lv3 {
    margin-top: 5px;
  }
}
/* コンセプト
------------------------------ */
.concept {
  position: relative;
  padding-top: 150px;
}

.concept::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  inset: 0;
  background-image: url(../img/concept_bg.png);
  background-position: 0 70px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.concept__heading-lv2--ja {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.concept__inner {
  max-width: 1000px;
  padding: 0 20px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 60px;
}

.concept__body {
  position: relative;
  z-index: 1;
}

.concept__heading-lv2 {
  font-family: var(--f_maru);
  font-size: 32px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  width: 600px;
  color: var(--c_main);
}

.concept__txt {
  margin-top: 25px;
  width: 560px;
}

.concept__more {
  margin-top: 89px;
}

.concept__img {
  position: absolute;
  top: 210px;
  right: 0;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
}
.concept__img img {
  border-radius: 20px 0 0 20px;
}

.swiper {
  width: 100vw;
  margin-top: 180px;
  margin-left: calc(50% - 50vw) !important;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper-slide {
  width: 264px !important;
}

.swiper-img {
  border-radius: 10px;
}

.service__item{
	width:33.33%;
}
.service__link{
	pointer-events: none;
}

@media screen and (min-width: 1600px) {
  .concept__img {
    margin-right: -30%;
  }
.service__item {
  width:33.33%;
 }
}
@media screen and (max-width: 834px) {
  .concept::before {
    width: 100%;
    background-image: url(../img/concept_bg_sp.png);
    background-position: center top;
    background-size: cover;
  }
  .concept__heading-lv2--ja {
    top: 80px;
    width: 90%;
    text-align: center;
    line-height: 1.5;
    white-space: wrap;
  }
  .concept__img {
    width: 100%;
    margin-right: 0;
    padding: 0 20px;
    top: 180px;
  }
  .concept__img img {
    border-radius: 20px;
    height: 300px;
  }
  .concept__body {
    margin-top: 350px;
  }
  .concept__heading-lv2 {
    font-size: 24px;
    width: 100%;
  }
  .concept__txt {
    width: 100%;
    margin-top: 24px;
  }
  .concept__more {
    margin-top: 33px;
    text-align: center;
	  height:0;
  }
  .swiper {
    margin-top: 50px;
  }
  .swiper-slide {
    width: 165px !important;
  }
	.service__item{
		width: 100%;
	}
}
@media screen and (max-width: 374px) {
  .concept__heading-lv2--ja {
    width: 100%;
  }
}
/* 診療案内
------------------------------ */
.service__list {
  margin-top: 77px;
  display: flex;
  justify-content: center;
  gap: 33px;
}

.service__item {
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(11.3px);
  -webkit-backdrop-filter: blur(11.3px);
  box-shadow: 0px 4px 19.9px 6px rgba(188, 204, 210, 0.32);
}

.service__body {
  background-color: var(--c_white);
  padding: 10px 15px 29px 15px;
  height: 100%;
}

.service__heading-lv3 {
  margin-top: 11px;
  color: var(--c_main);
  font-family: var(--f_maru);
  font-size: 20px;
  letter-spacing: 0.06em;
  text-align: center;
}

.service__img {
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: 150px;
}

.service__txt {
  margin-top: 21px;
}

.service__btn {
  color: var(--c_white);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: center;
  width: 100px;
  padding: 5px 0;
  background-color: var(--c_main);
  border-radius: 12px;
  margin-top: 25px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .service__list {
    margin-top: 27px;
    gap: 23px;
    flex-direction: column;
  }
  .service__body {
    background-color: var(--c_white);
    padding: 10px 10px 30px 10px;
    height: auto;
  }
  .service__link {
    display: flex;
  }
  .service__heading-lv3 {
    font-size: 16px;
    text-align: left;
  }
  .service__img {
    border-radius: 10px 0 0 10px;
    width: 38%;
    height: 215px;
  }
  .service__img--naika {
    object-position: 80% center;
  }
  .service__txt {
    margin-top: 10px;
  }
}
/* 症状・お悩みから探す
------------------------------ */
.menu {
  margin-top: -300px;
  padding-top: 300px;
  position: relative;
}

.menu::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: var(--c_bage);
  z-index: -1;
}

.menu__list {
  gap: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 61px;
}

.menu__item {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 170px;
  height: 190px;
  position: relative;
}

.menu__item:nth-child(odd) {
  background-image: url(../img/menu_circle_blue.png);
}

.menu__item:nth-child(even) {
  background-image: url(../img/menu_circle_green.png);
}

.menu__link {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.menu__icon {
  margin-top: 40px;
}

.menu__heading-lv3 {
  color: var(--c_white);
  font-family: var(--f_maru);
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.menu__more {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .menu__list {
    gap: 10px 7px;
    margin-top: 36px;
  }
  .menu__item {
    width: 163px;
    height: 172px;
  }
  .menu__icon {
    margin-top: 35px;
  }
  .menu__heading-lv3 {
    font-size: 16px;
    margin-top: 8px;
  }
  .menu__more {
    bottom: 14px;
  }
}
/* 当院の特徴
------------------------------ */
.feature {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.feature::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
/*   background-image: url(../img/feature_bg.png); */
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.feature__list {
  display: flex;
  flex-direction: column;
}

.feature__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* .feature__item:first-of-type {
  margin-top: 0;
} */

.feature__item--reverse {
  flex-direction: row-reverse;
}

.feature__img {
  flex-shrink: 0;
}
.feature__img img {
  aspect-ratio: 1/1;
}
.feature__item p{
	display: flex;
	flex-direction:column;
    align-items: center;
}

.feature__body {
  position: relative;
}

.feature__num {
  position: absolute;
  top: -100px;
  left: 0;
  font-family: var(--f_mplus);
  font-size: 128px;
  letter-spacing: -0.02em;
  color: var(--c_blue);
  z-index: -1;
}

.feature__heading-lv3 {
  color: var(--c_main);
  font-family: var(--f_maru);
  font-size: 24px;
  letter-spacing: 0.05em;
}

.feature__txt {
  margin-top: 25px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .feature__item {
    flex-direction: column;
    margin-top: 25px;
  }
  .feature__item--reverse {
    flex-direction: column;
  }
  .feature__item--normal .feature__img {
    margin-left: 0;
  }
  .feature__item--reverse .feature__img {
    margin-right: 0;
  }
  .feature__img {
    margin-bottom: -40px;
    z-index: -1;
  }
  .feature__num {
    top: -80px;
  }
  .feature__txt {
    margin-top: 15px;
  }
}
/* 院長紹介
------------------------------ */
.doctor {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.doctor::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-image: url(../img/doctor_bg.jpg);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.doctor__box {
  margin-top: 76px;
  display: flex;
  justify-content: center;
  gap: 60px;
}

.doctor__lead {
  font-family: var(--f_maru);
  font-size: 32px;
  letter-spacing: 0.05em;
  color: var(--c_main);
}

.doctor__txt {
  margin-top: 32px;
  line-height: 1.5;
}

.doctor__img {
  flex-shrink: 0;
}
.doctor__img img {
  border-radius: 20px;
}

.doctor__info {
  margin-top: 21px;
}

.doctor__name {
  font-family: var(--f_maru);
  font-size: 32px;
  color: var(--c_main);
  letter-spacing: 0.05em;
  margin-top: 10px;
}

.license {
  padding: 56px 59px;
  border-radius: 20px;
  display: flex;
  gap: 50px;
  margin-top: 79px;
  backdrop-filter: blur(37.9px);
  -webkit-backdrop-filter: blur(37.9px);
  background-color: rgba(255, 255, 255, 0.4);
}

.license__heading-lv3 {
  font-family: var(--f_maru);
  font-size: 24px;
  letter-spacing: 0.05em;
  color: var(--c_main);
  padding-left: 15px;
  border-left: 3px solid var(--c_sub);
  border-radius: 1.5px;
}

.license__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.license__item {
  position: relative;
  padding-left: 24px;
}

.license__item::before {
  content: "";
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 11px;
  height: 11px;
  background-color: var(--c_sub);
  border-radius: 50%;
}

.doctore__more {
  text-align: center;
  margin-top: 32px;
}

@media screen and (max-width: 767px) {
  .doctor__box {
    margin-top: 49px;
    flex-direction: column-reverse;
    gap: 25px;
  }
  .doctor__lead {
    font-size: 18px;
  }
  .doctor__img {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    flex-shrink: none;
    justify-content: space-between;
  }
  .doctor__img img {
    width: 168px;
    height: 186px;
  }
  .license__heading-lv3 {
    font-size: 24px;
  }
  .doctor__info {
    margin-top: 14px;
    text-align: left;
  }
  .doctor__record {
    font-size: 12px;
  }
  .license {
    padding: 20px;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
  }
  .license__list {
    margin-top: 10px;
    gap: 5px;
  }
  .license__item {
    position: relative;
    padding-left: 19px;
  }
  .doctore__more {
    margin-top: 30px;
	height:0;
  }
}
/* よくある質問
------------------------------ */
.faq__list {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq__item {
  display: flex;
  flex-direction: column;
  gap: 27px;
  border-bottom: 1px dotted var(--c_main);
  position: relative;
}

.faq__toggle {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
}

.faq__toggle::before,
.faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28px;
  height: 2px;
  background-color: var(--c_main);
  transform: translateY(-50%);
}

.faq__toggle::before {
  right: 0;
}

.faq__toggle::after {
  right: 0;
  transform: rotate(90deg);
}

.faq__item.is-open .faq__toggle::after {
  display: none;
}

.faq__question {
  position: relative;
  cursor: pointer;
  padding-left: 66px;
  padding-right: 64px;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.faq__question::before {
  content: "Q";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: var(--f_maru);
  font-size: 32px;
  letter-spacing: 0.05em;
  color: var(--c_main);
  background-color: var(--c_blue);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-content: center;
}

.faq__answer {
/*   opacity: 0;
  height: 0; */
  line-height: 0;
  overflow: hidden;
  transition: height 0.5s, opacity 0.5s;
}

.faq__answer.faq-open {
  opacity: 1;
  height: auto;
  line-height: 1.5;
  position: relative;
  padding-left: 66px;
  padding-right: 64px;
  padding-bottom: 16px;
}

.faq__answer.faq-open::before {
  content: "A";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: var(--f_maru);
  font-size: 32px;
  letter-spacing: 0.05em;
  background-color: var(--c_bage);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-content: center;
}

@media screen and (max-width: 767px) {
  .faq__list {
    gap: 20px;
  }
  .faq__item {
    gap: 15px;
  }
  .faq__toggle {
    width: 21px;
    height: 21px;
  }
  .faq__toggle::before,
  .faq__toggle::after {
    content: "";
    width: 21px;
  }
  .faq__question {
    padding-left: 47px;
    padding-right: 18px;
    font-size: 16px;
  }
  .faq__question::before {
    font-size: 26px;
    width: 40px;
    height: 40px;
  }
  .faq__answer.faq-open {
    padding-left: 47px;
    padding-right: 18px;
    padding-bottom: 23px;
  }
  .faq__answer.faq-open::before {
    font-size: 26px;
    width: 40px;
    height: 40px;
    top: 0;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */
