@charset "UTF-8";
body {
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  color: #00131E;
  font-size: 16px;
  box-sizing: border-box;
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a[href^="tel:"] {
  text-decoration: none !important;
  color: #040000;
}

a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
}

.body_wrap {
  max-width: 1600px;
  margin: 0 auto;
}

.container {
  width: 94%;
  max-width: 640px;
  margin: 0 auto;
}

.body_wrap img {
  width: 100%;
  height: auto;
  margin-top: -2px;
}

@media screen and (min-width: 768px) and (max-width: 1600px) {
  .body_wrap img {
    margin-top: -0.1vw;
  }
}
@media screen and (max-width: 767px) {
  .body_wrap img {
    margin-top: -0.3vw;
  }
}
/* ヘッダー */
/* —— 共通 —— */
.site-header {
  position: relative;
  z-index: 10;
  background: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1em;
  max-width: 1200px;
  margin: 0 auto;
  gap: 0 5em;
  height: 4.9em;
}

.logo {
  width: 18.5em;
}

/* —— PCグローバルナビ —— */
.global-nav .nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0 1.7em;
}

.global-nav .nav__item {
  position: relative;
}

.global-nav .nav__item > a {
  display: block;
  color: #333;
  text-decoration: none;
  position: relative;
  font-size: 0.85em;
  font-weight: 300;
  transition: all 0.1s ease;
  letter-spacing: 0.06em;
}

.global-nav .nav__item:not(.has-submenu) > a:hover::before {
  content: "";
  position: absolute;
  background-color: #333;
  width: 100%;
  height: 0.08em;
  left: 0;
  right: 0;
  bottom: -1.3em;
  margin: 0 auto;
}

.global-nav .nav__item.has-submenu > a {
  padding-right: 1.5em;
}

.global-nav .nav__item.has-submenu:nth-of-type(2) {
  margin-right: -0.6em;
}

/* PC用フラット矢印（常に下向き） */
.global-nav .nav__item.has-submenu > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.7em;
  width: 0.3em;
  height: 0.3em;
  border: solid #666;
  border-width: 0 0.1em 0.1em 0;
  transform: translateY(-50%) rotate(45deg);
  /* 下向き */
}

/* PCサブメニュー初期状態（アニメーション用） */
.global-nav .nav__item.has-submenu .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
  padding: 1.3em 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-0.5rem);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.global-nav .nav__item.has-submenu:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.global-nav .nav__item.has-submenu .submenu li a {
  display: block;
  padding: 0.7em 1.5em;
  white-space: nowrap;
  color: #333;
  text-decoration: none;
  font-size: 0.85em;
  font-weight: 300;
  letter-spacing: 0.06em;
}

/* —— ハンバーガーアイコン —— */
.hamburger {
  display: none;
  /* SPのみ */
  position: relative;
  width: 2.5em;
  height: 2em;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
  /* メニューより前面 */
  font-size: 3vw;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.15em;
  background: #333;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center center;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

/* 開いたときのバツ形状 */
.hamburger.open span:nth-child(1) {
  transform: translateY(0.92em) rotate(45deg);
  background: #fff;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  background: #fff;
  transform: translateY(-0.92em) rotate(-45deg);
}

/* —— SPメニュー —— */
.sp-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 80vw;
  max-width: 300px;
  height: 100vh;
  background: #3a5abb;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 2rem 1rem;
  overflow-y: auto;
  z-index: 50;
}

.sp-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  padding: 3em 40px;
}

.sp-nav__list li {
  margin-bottom: 1rem;
}

/* メニュー項目 */
.sp-nav__list li > a,
.sp-nav__list li > .submenu-toggle {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 16px;
  background: none;
  border: none;
  padding: 0.5rem 0;
  cursor: pointer;
  position: relative;
  padding-right: 1.5em;
  /* 矢印用空間 */
  /* ── タップ時のちらつきを抑える ── */
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  color: #fff;
  text-decoration: none;
}

.sp-nav__list li > a:active,
.sp-nav__list li > .submenu-toggle:active {
  background-color: transparent;
  outline: none;
}

.sp-nav .has-submenu {
  margin-bottom: 0.3rem;
}

/* SP内の<span class="arrow">を完全に消去 */
.sp-nav .has-submenu .arrow {
  display: none !important;
}

/* SP用フラット矢印：閉じた状態は下向き */
.sp-nav .has-submenu > .submenu-toggle::after {
  content: "";
  position: absolute;
  top: 57%;
  left: 75px;
  width: 0.5em;
  height: 0.5em;
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  transform: translateY(-90%) rotate(45deg);
  /* 下向き */
  transition: transform 0.3s ease;
}

/* 開いたら上向きに */
.sp-nav .has-submenu.open > .submenu-toggle::after {
  transform: translateY(-50%) rotate(-135deg);
  /* 上向き */
}

/* SPサブメニュー：開く前は高さ0 */
.sp-nav .has-submenu > .submenu {
  list-style: none;
  margin: 0;
  padding-left: 1rem;
  margin-top: 0.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

/* SPサブメニュー：開いたとき */
.sp-nav .has-submenu.open > .submenu {
  max-height: 500px;
  /* 十分な高さ */
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* —— メニュー開閉 —— */
body.menu-open .sp-nav {
  transform: translateX(0);
}

@media (max-width: 1200px) {
  .site-header {
    font-size: 1.33vw;
  }
}
@media (max-width: 767px) {
  .site-header {
    font-size: 3vw;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  .logo {
    width: 13em;
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.8em;
    max-width: 1200px;
    margin: 0 auto;
    gap: 0 5em;
    height: 3.9em;
  }
  .global-nav {
    display: none;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .sp-nav {
    display: none;
  }
}
/* btn */
.btn {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}
.btn a {
  position: absolute;
  z-index: 2;
  display: block;
  margin: 0 auto;
}
.btn a:nth-of-type(1) {
  bottom: 110px;
  left: 380px;
  margin: 0 auto;
  width: 335px;
}
.btn a:nth-of-type(2) {
  bottom: 110px;
  right: 380px;
  width: 335px;
}
.btn a img {
  width: 100%;
  height: auto;
}

.map {
  position: relative;
}
.map iframe {
  position: absolute;
  bottom: 360px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 515px;
  height: 295px;
}

.footer {
  background-color: #3a5abb;
  color: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 1600px) {
  .btn a:nth-of-type(1) {
    bottom: 6.85vw;
    left: 23.8vw;
    width: 20.9vw;
  }
  .btn a:nth-of-type(2) {
    bottom: 6.85vw;
    right: 23.8vw;
    width: 20.9vw;
  }
  .map iframe {
    bottom: 35vw;
    width: 50vw;
    height: 28.9vw;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 3vw;
    margin-top: 3.9em;
  }
  /* btn */
  .btn a {
    padding-left: 0.7vw;
  }
  .btn a:nth-of-type(1) {
    bottom: 65vw;
    left: 0;
    right: 0;
    width: 92vw;
  }
  .btn a:nth-of-type(2) {
    bottom: 6.5vw;
    left: 0;
    right: 0;
    width: 92vw;
  }
  .btn a img {
    width: 100%;
    height: auto;
  }
  .map iframe {
    bottom: 55vw;
    width: 80vw;
    height: 48vw;
  }
  .footer {
    padding-top: 6vw;
    padding-bottom: 6vw;
    font-size: 3.2vw;
  }
}
/*  ----------------------------------------------------------

fixed btn

----------------------------------------------------------  */
.fixed-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  z-index: 999;
  width: 5.3em;
}

.fixed-btn li:nth-child(1) {
  margin-bottom: 0.5em;
}

.fixed-btn img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1600px) {
  .fixed-btn {
    font-size: 1vw;
  }
}
@media screen and (max-width: 767px) {
  .fixed-btn {
    top: auto;
    right: auto;
    bottom: 0;
    transform: none;
    -webkit-transform: none;
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    background: #f3f3f3;
  }
  .fixed-btn a {
    width: 100%;
    padding: 0;
    padding-top: 1vw;
    height: 14vw;
    display: flex;
    align-items: center;
    text-decoration: none !important;
    line-height: 1;
  }
  /* icon */
  .fixed-btn li img {
    width: 51vw;
    height: auto;
    margin-top: 0;
  }
  .fixed-btn .tel a img {
    margin-left: -1.5vw;
  }
  .fixed-btn .reserve a img {
    margin-right: -1.5vw;
  }
}
/*  ----------------------------------------------------------

slider

----------------------------------------------------------  */
.slider__block {
  position: relative;
  overflow: hidden;
}
.slider__block .slider {
  position: absolute;
  bottom: 16vw;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.slider__block--1 {
  margin-bottom: -0.6vw;
}

.slider__block--2 .slider {
  bottom: 3vw;
}

.slider__block--3 .slider {
  bottom: 10vw;
}

.slider__block--4 .slider {
  bottom: 10.5vw;
}

.slider--type1 .slick-slide {
  box-sizing: border-box;
  padding: 0 2vw; /* 左右それぞれの余白 */
}

.slider--type2 .slick-slide {
  padding: 0 2.1vw;
}

.slick-arrow:before {
  content: "" !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.slick-next:before {
  background: url(../images/arrow3_r.png) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}

.slick-prev:before {
  background: url(../images/arrow3_l.png) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}

.slick-arrow {
  font-size: 15px !important;
  z-index: 2 !important;
  width: 9vw !important;
  height: 9vw !important;
}

.slick-next {
  top: 25vw !important;
  right: 3vw !important;
}

.slick-prev {
  top: 25vw !important;
  left: 3vw !important;
}

.slider__block--2 .slick-next:before {
  background: url(../images/arrow1_r.png) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}
.slider__block--2 .slick-prev:before {
  background: url(../images/arrow1_l.png) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}
.slider__block--2 .slick-next {
  top: 76vw !important;
  right: 4.5vw !important;
}
.slider__block--2 .slick-prev {
  top: 76vw !important;
  left: 4.5vw !important;
}

.slider__block--3 .slick-next:before {
  background: url(../images/arrow2_r.png) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}
.slider__block--3 .slick-prev:before {
  background: url(../images/arrow2_l.png) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}
.slider__block--3 .slick-next {
  top: 73.5vw !important;
  right: 4.5vw !important;
}
.slider__block--3 .slick-prev {
  top: 73.5vw !important;
  left: 4.5vw !important;
}

.slider__block--4 .slick-next:before {
  background: url(../images/arrow1_r.png) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}
.slider__block--4 .slick-prev:before {
  background: url(../images/arrow1_l.png) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}
.slider__block--4 .slick-next {
  top: 95vw !important;
  right: 4.5vw !important;
}
.slider__block--4 .slick-prev {
  top: 95vw !important;
  left: 4.5vw !important;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */