@charset "UTF-8";
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


:root {
  --hero-radius: 12px;
  --hero-pad-x: 48px;
  --hero-pad-y: 128px;
  --hero-btn: #00a3ff;
  --color-red: #f83737;
  --color-blue: #5883d2;
  --color-green: #a3be9c;
  --color-orange: #ea9838;
  --color-black: #1d1d1f;
  --color-txt: #6e6e73;
  /* --bg-blue: #cce4fd; */
  --bg-dark: #2a2b3f;
  --bg-skyblue: #e4f1ff;
  --bg-green: #cbdbc6;
}
@media (max-width: 640px) {
  :root {
    --hero-pad-x: 20px;
    --hero-pad-y: 20px;
  }
}

html {
  scroll-behavior: smooth;
}

/* 外部リンクからのアンカーリンク(#)で遷移した際の位置調整 */
:target {
  scroll-margin-top: 95px; /* PC時のヘッダーの高さ(80px) + 余白 */
}
@media (width < 1025px) {
  :target {
    scroll-margin-top: 75px; /* SP/TB時のヘッダーの高さ(60px) + 余白 */
  }
}

body{
  font-size: 100%;
  font-weight: 400;
  color: var(--color-black);
  font-family: "Noto Sans JP", sans-serif;
}
@media (width < 767px) {
  body{
    font-size: 87.5%;
  }
}
a{
  text-decoration: none;;
}

img{
  max-width: 100%;
  height: 100%;
  vertical-align: top;
}

a{
  color: var(--color-black);
  text-decoration: none;
}

a:hover{
  /* color: var(--color-black); */
  text-decoration: none;
}

ul li{
  list-style: none;
}

strong{
  font-weight: 500;
}

section{
  position: relative;
}

.pc{
  display: block;
}
@media (width < 969px) {
  .pc{
    display: none;
  }
}
.tb-pc{
  display: block;
}
@media (width < 768px) {
.tb-pc{
  display: none;
}
}
.sp{
  display: none;
}
@media (width < 767px) {
  .sp{
    display: block;
  }
}

.gray-box{
    margin: 30px auto 0;
    background: #f7f7f7;
    padding: 20px;
    color: #4e4e4e;
    line-height: 2;
    font-size: 18px;
}
@media (width < 767px) {
  .gray-box{
    font-size: 16px;
  }
}

/*!!!!!!! ハンバーガーメニュー !!!!!!!*/
#navArea nav {
  display: block;
  position: fixed;
  top: 0;
  right: -400px;
  bottom: 0;
  width: 400px;
  /* background: #ffffff; */
  background: var(--bg-dark);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .4s;
  z-index: 10;
  opacity: 0;
}
body.open {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
   #navArea nav {
    right: -220px;
    width: 220px;
  }
}
.open #navArea nav {
  right: 0;
  opacity: 1;
}
#navArea nav .inner {
  padding: 25px;
  box-sizing: border-box;
}
#navArea nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 60px;
}
#navArea nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #ffffff;
}
#navArea nav .inner ul li a {
  display: block;
  color: #ffffff;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
 #navArea nav .inner ul li a span {
  display: block;
  font-size: 1.4em;
  font-weight: 900;
  line-height: 1.1;
  color: #A3BE9C;
  /* text-transform: uppercase; */
}
#navArea nav .inner ul li a:hover {
  background: #fff;
  color: #222222;
}

#navArea nav .inner ul li a:hover span {
  color: var(--color-blue);
}

#navArea nav .inner ul li a.nav-tel span {
  color: var(--color-blue);
}

#navArea nav .inner ul li a.nav-contact span {
  color: var(--color-orange);
}
#navArea nav .inner ul li a.nav-contact:hover {
  color: var(--color-orange);
}

#navArea nav .inner ul li a.nav-contact:hover span {
  color: var(--color-orange);
}
/*! ===================================!*/
/*! footer */
/*! ==================================== !*/

.footerContents{
  margin-top: 0!important;
}

.footer_line_sp{
  display: none!important;
}



.footerContents {
  margin-top: 60px!important;
}
@media (821px <= width) {
  .footerContents{
      border-top:none!important;
    }
}





/*============
.toggle_btn
=============*/

.toggle_btn {
  display: block;
  background: var(--bg-dark);
  position: relative;
  width: 80px;
  height: 80px;
  transition: all .5s;
  cursor: pointer;
  z-index: 20;
}
@media screen and (max-width: 1025px) {
  .toggle_btn {
    width: 60px;
    height: 60px;
  }
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 50%;
  width: 40px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 4px;
  transition: all .5s;
  transform: translateX(-50%);
}
@media screen and (max-width: 1025px) {
  .toggle_btn span {
    width: 30px;
  }
}
.toggle_btn span:nth-child(1) {
  top: 30px;
}
.toggle_btn span:nth-child(2) {
  top: 42px;
}
@media screen and (max-width: 1025px) {
  .toggle_btn span:nth-child(1) {
    top: 20px;
  }
  .toggle_btn span:nth-child(2) {
    top: 29px;
  }
}
.toggle_btn .menu-text {
  position: absolute;
  right: 0;
  width: 80px;
  bottom: 15px;
  text-align: center;
  top: auto;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 1025px) {
  .toggle_btn .menu-text {
    top: 36px;
    width: 100%;
    font-size: 10px;
  }
}

.open .toggle_btn .menu-text{
  opacity: 0;
}

@media (1025px <= width) {
  .toggle_btn {
    display: none;
  }
}

.open .toggle_btn span:nth-child(1) {
  top: 27px;
  transform: translateX(-50%) rotate(45deg);
}
.open .toggle_btn span:nth-child(2) {
  top: 27px;
  transform: translateX(-50%) rotate(-45deg);
}


/*============
#mask
=============*/
#mask {
  position: fixed;
  top: 0;
  left: -100%; /* 初期位置: 画面の左外 */
  width: calc(100% - 400px);
  height: 100%;
  background: #000;
  opacity: 0;    /* 初期状態: 透明 */
  z-index: 10;
  cursor: pointer;
  transition: opacity .4s, left .4s; /* opacity と left の両方に transition を適用 */
}
.open #mask {
  left: 0;       /* 表示位置: 画面の左端 */
  opacity: .7;
}
@media screen and (max-width: 767px) {
  #mask {
    width: calc(100% - 220px);
  }
}

/*!!!!!! contactボタン !!!!!!*/

/* @media (1025px <= width) {
  .contact_btn{
    display: none;
  }
} */

.contact_btn a{
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-orange);
  /* background: #A3BE9C; */
  position: relative;
  color: #fff;
  width: 80px;
  height: 80px;
  transition: all .3s;
}
.contact_btn a i {
  font-size: 32px;
  text-align: center;
  width: 100%;
}
@media (width < 1025px) {
  .contact_btn a{
    width: 60px;
    height: 60px;
  }
  .contact_btn a i {
    font-size: 30px;
  }
}

.contact_btn a:hover,
.contact_btn a:focus {
  opacity: .6;
  transition: all .3s;
  outline: none; 
}

.contact_btn a span{
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  display: block;
}
@media (width < 1025px) {
  .contact_btn a span{
    display: none;
  }
}

.open .contact_btn{
  display: none;
}

/*!!!!!! contact BOX !!!!!!*/

.contact-box{
}
.contact-box h2 {
  text-align: center;
  color: #fff;
  font-size: 82px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 15px;
}
@media (width < 767px) {
.contact-box h2 {
    font-size: 48px;
  }
}
.contact-box p {
  text-align: center;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 30px;
}
@media (width < 767px) {
  .contact-box p {
    text-align: left;
  }
}

.contact-box__inner{
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-box__tel,
.contact-box__contact{
  /* width: calc(100% / 2 - 30px); */
  width: min(100%, 400px);
}

.contact-box__tel a,
.contact-box__contact a{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  transition: all .3s;
  padding-block: 10px;
}

.contact-box__tel a{
  background: var(--color-blue);
  border: solid 1px var(--color-blue);
  color: #fff;
  font-size: 1.6em;
  font-weight: 600;
  line-height: 1.2;
}

.contact-box__tel a span {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: .5em;
}
@media (767px <= width) {
  .contact-box__tel a{
    pointer-events: none;
  }
}

.contact-box__contact a{
  background: var(--color-orange);
  border: solid 1px var(--color-orange);
  color: #fff;
  font-size: 1.3em;
  font-weight: 600;
  letter-spacing: 1px;
  padding-block: 16px;
}

.contact-box__contact a:hover{
  transition: all .3s;
  letter-spacing: 4px;
  /* border: solid 1px #ffffff;
  background: #fff;
  color: var(--color-orange); */
}

header{
  position: sticky;
  top: 0;
  z-index: 9;
  background-color: #fff;
}
header{
  /* padding-block: 8px; */
    box-shadow: 0px 0px 10px -5px #777777;
}

.heder__inner{
  display: flex  ;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  position: relative;
}
.cv__buttons {
  display: flex;
  position: fixed;
  top: 0;
  right:0;
  z-index: 100; /* nav(z-index: 10)よりも前面に表示されるように値を大きくします */
}
@media (width < 1025px) {
  .heder__inner{
      height: 60px;
  }
}

.heder__inner__nav{
  display: none;
}
@media (1025px <= width) {
  .heder__inner__nav{
    display: flex  ;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-right: 105px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
  }
  .heder__inner__nav a {
    transition: all .3s;
    color: #333333;
    font-weight: 600;
  }
  .heder__inner__nav a:hover span{
    color: var(--color-blue);
    transition: all .3s;
  }
  .heder__inner__nav a span{
    display: block;
    text-align: center;
    font-weight: 800;
    line-height: 1;
    color: var(--color-green);
    font-size: 18px;
    transition: all .3s;
  }
}
.bg-skyblue{
  background-color: var(--bg-skyblue);
}

.bg-blue{
  background-color: var(--bg-dark);
}

.logo{
  width: 220px;
  height: 67px;
  display: block;
  margin-left: 20px;
}
@media (width < 1025px) {
.logo{
    width: 160px;
    height: 55px;
    margin-left: 10px;
  }
}

.h1--pc {
  font-size: clamp(0.875rem, 0.442rem + 0.85vw, 1.25rem);
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  margin-left: 25px;
  margin-right: auto;
  align-self: end;
  line-height: 4em;
  color: #444343;
  width: auto;
}
.h1--sp {
  display: none;
}
@media (width < 1160px) {
  .h1--pc {
    display: none;
  }
  .h1--sp {
    display: block;
    font-size: 18px;
    font-family: "Noto Serif JP", serif;
    position: absolute;
    top: 90px; /* header(80px) + margin(10px) */
    left: 20px;
    z-index: 1;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    /* font-weight: 500; */
    font-weight: 700;
  }
}
@media (width < 1025px) {
  .h1--sp {
    top: 70px; /* header(60px) + margin(10px) */
  }
}

  .h1--sp span{
    display: none;
  }
@media (640px <= width)  {
  .h1--sp span{
    display: inline-block;
  }
}

.breadcrumb{
  background: var(--bg-dark);
  height: 30px;
}
@media (width < 640px) {
  .breadcrumb{
    height: auto;
  }
}

.breadcrumb__list,
.breadcrumb__list a{
    width: min(calc(100% - 40px), 1180px);
    margin: auto;
    font-size: 12px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    line-height: 2.5;
}
@media (width < 640px) {
  .breadcrumb__list,
  .breadcrumb__list a{
    line-height: 1.5;
    padding-block: 7px;
  }
}

.breadcrumb__list li{
  display: inline-block;
}

.breadcrumb__list li::after{
    content: ">";
  padding: 0 5px;
}

.breadcrumb__list li:last-of-type::after{
  content: "";
  padding: 0;
}

/*! ===================================!*/
/*! mv hero-slider */
/*! ==================================== !*/

.hero-slider {
  position: relative;
  width: 100%;
  /* max-width: 1180px; */
  aspect-ratio: 1530 / 660;
  margin: 0 auto;
  overflow: hidden;
  /* border-radius: var(--hero-radius); */
  background: #000;
}
@media (768px <= width < 1025px)  {
.hero-slider {
  aspect-ratio: 768 / 600;
}
}
@media (width < 767px) {
.hero-slider {
  aspect-ratio: 375 / 500;
}
}

.slides,
.slide {
  width: 100%;
  height: 100%;
}

.slides {
  position: relative;
}

/* Slide */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.0s ease-in-out;
}

@media (width < 969px) {
  .slide:nth-of-type(2) {
    background-position-x: -20px;
  }
}

.slide.is-active {
  opacity: 1;
}


.slide.is-active {
  opacity: 1;
}

/* Overlay gradient to improve text visibility */
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.25));
}

/* Text block */
.slide-content {
  position: absolute;
  z-index: 1;
  color: #fff;
  left: var(--hero-pad-x);
  bottom: var(--hero-pad-y);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  width: min(calc(95% - 20px), 1180px);
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 1025px) {
  .slide-content {
    /* max-width: 90%; */
    bottom: 50px;
  }
}


.slide-content h2,
.slide-content .slide-heading {
  margin: 0 0 15px;
  font-size: clamp(20px, 4vw, 35px);
  font-weight: 700;
  line-height: 1.5;
  text-shadow: 1px 2px 3px #000;
}

.slide-content p {
  margin: 0 0 16px;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.6;
  text-shadow: 1px 2px 3px #000;
}

.btn__orange {
  display: inline-block;
  background: var(--color-orange);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: ease .3s;
}

.hero-slider .btn__orange:hover{
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: ease .3s;
}

.btn__dark {
  display: inline-block;
  border: solid 1px var(--bg-dark);
  color: var(--bg-dark);
  text-align: center;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: ease .3s;
}

.btn__dark:hover{
  color: #fff;
  background: var(--bg-dark);
  transition: ease .3s;;
}
@media (width < 640px) {
  .btn__dark {
    font-size: 14px;
  }
}



/* Arrows */
 .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 22px;
}

.nav:hover {
  background: rgba(0, 0, 0, 0.55);
}

.nav.prev {
  left: 12px;
}

.nav.next {
  right: 12px;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 90px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
@media (width < 1025px) {
  .dots {
    /* left: var(--hero-pad-x); */
    bottom: 20px;
  }
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.dot.is-active {
  background: #fff;
}

.hero-slider .dots-wrapper {
    /* margin-left: auto; */
    /* margin-right: auto; */
  width: min(calc(95% - 20px), 1180px);

    /* background: #000000; */
    /* height: 100px; */
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.hero-slider .dots-wrapper .dots {
  text-align: left;
}

/*!!!!!! Accordion !!!!!!*/
.search-box {
  padding: 20px 20px;
  width: 100%;
  position: absolute;
  right: 0;
  top: -137px;
  max-width: 920px;
}
@media (1024px <= width < 1180px)  {
.search-box{
  max-width: 830px;
}
}
@media (width < 1023px) {
.search-box {
  position: static;
  width: 100%;
  max-width: 100%;
  padding: 30px 20px;
}
}

.search-box::after{
    position: absolute;
    display: block;
    left: -80px;
    top: 0;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 137.5px 80px;
    border-color: transparent transparent #fff;
}


.top_search-bg {
  background-color: #fff;
}

.site_message {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--color-black);
  font-weight: 600;
}
@media (width < 969px) {
  .site_message {
    font-size: 17px;
  }
}

.site_message i {
  margin-inline: 15px 10px;
  color: var(--color-blue);
  transition: color .3s;
}

.site_message a {
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden; /* はみ出した矢印を隠す */
  text-decoration: none;
  padding-right: 1em;
  padding-bottom: 2px;
  border-radius: 30px;
  line-height: 1.6;
  transition: all .3s;
}

@media (width > 1024px) {
  .site_message a:hover {
    background: #5884d3;
  }

  .site_message__text {
    transition: color .3s;
  }

  .site_message a:hover i,
  .site_message a:hover .site_message__text {
    color: #fff;
  }

  .site_message a .arrow {
    position: relative;
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    margin-left: .5em;
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.4s ease, opacity 0.2s ease;
  }


  .site_message a .arrow::before {
    content: '';
    position: absolute;
    top: -4px; /* Symmetrical positioning */
    right: 0;
    width: 10px;
    height: 2px;
    background-color: #ffffff;
    transform-origin: right center;
    transform: rotate(0deg);
    transition: transform 0.4s ease 0.2s, top 0.4s ease 0.2s;
  }

  .site_message a .arrow::after {
    content: '';
    position: absolute;
    top: 4px;  /* Symmetrical positioning */
    right: 0;
    width: 10px;
    height: 2px;
    background-color: #ffffff;
    transform-origin: right center;
    transform: rotate(0deg);
    transition: transform 0.4s ease 0.2s, top 0.4s ease 0.2s;
  }

  .site_message a:hover .arrow {
    opacity: 1;
    transform: translateX(0);
  }

  .site_message a:hover .arrow::before {
    top: 0; /* Align with the center of the main line */
    transform: rotate(45deg);
  }

  .site_message a:hover .arrow::after {
    top: 0; /* Align with the center of the main line */
    transform: rotate(-45deg);
  }
}
@media (width < 1025px) {
  .site_message a {
    background: #5884d3;
    width: 100%;
    height: 43px;
    border-radius: 0;
  }

  .site_message__text {
    transition: color .3s; /* テキストの色変更にトランジションを適用 */
  }

  /* ホバー時にアイコンとテキストの色を白に変更 */
  .site_message a i,
  .site_message a .site_message__text {
    color: #fff;
  }

  /* 矢印のコンテナ・基本スタイル */
  .site_message a .arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 25px;
    height: 2px;
    /* background-color: #ffffff; */
    transform: translateY(-50%);
    transition: none;
  }

  /* 矢印の先端・上側 */
  .site_message a .arrow::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 2px;
    background-color: #ffffff;
    transform-origin: right center;
    transform: rotate(45deg);
    transition: none;
  }

  /* 矢印の先端・下側 */
  .site_message a .arrow::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 2px;
    background-color: #ffffff;
    transform-origin: right center;
    transform: rotate(-45deg);
  }
}


.search-box__column {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (width < 969px) {
  .search-box__column {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width < 640px) {
  .search-box__column {
    grid-template-columns: 1fr;
  }
}

.accordion-item {
  background-color: #fff;
  border: 1px solid var(--color-green);
  position: relative;
}

.accordion-title {
  font-size: 14px;
  padding: 10px 45px 10px 20px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  transition: background-color 0.3s;
  -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}


/* Accordion open/close indicator */
.accordion-title::after {
  border-right: solid 3px var(--color-blue);
  border-top: solid 3px var(--color-blue);
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: transform .3s ease-in-out;
  width: 8px;
}

.accordion-title.open::after {
  transform: translateY(-50%) rotate(135deg);
}

/* Icons for each accordion item */
.accordion-title::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
  color: var(--color-green);
  width: 20px;
  display: inline-block;
  text-align: center;
}

.icon-address .accordion-title::before {
  content: '\f3c5'; /* fa-map-marker-alt */
}

.icon-area .accordion-title::before {
  content: '\f5fd'; /* fa-ruler-combined */
}

.icon-layout .accordion-title::before {
  content: '\f4ce'; /* fa-file-alt */
}

.icon-seat .accordion-title::before {
  content: '\f6c0'; /* fa-user-friends */
}

.accordion-content {
  display: none; /* jQueryで表示を制御 */
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10; /* 他の要素より前面に表示 */
  padding: 20px 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-top: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.accordion-link {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion-link li {
  margin-top: 10px;
}

.accordion-link li:first-child {
  margin-top: 0;
}

.accordion-link a {
  display: block;
  font-size: 13px;
  padding-inline: 5px;
  color: var(--color-black);
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.accordion-link a:hover {
  background-color: var(--bg-skyblue);
  color: var(--color-blue);
}

/*! ===================================!*/
/*! Main Content */
/*! ==================================== !*/

article {
  border-top: solid 30px var(--bg-dark);
  padding: 60px 0 90px;
}

article:first-of-type {
  border-top: none;
}

article.contact{
    border-top: none;
}

/* article:last-child{
  padding: 60px 0 0;
} */

@media (width < 1024px) {
  article {
    padding: 30px 0 60px;
  }
  article:last-child{
    padding: 30px 0 90px;
  }
}

article.contact{
  padding: 20px 0 35px
}

/* 
article:last-of-type.contact{
  margin-bottom: 30px;
} */

/* article:nth-of-type(even){
  border-top: solid 30px var(--color-green);
} */

.content{
  width: min(100% - 40px, 1180px);
  margin: auto;
}

.content-free{
  width: 100%;
}

.content__center{
  display: flex;
  justify-content: center;
  align-items: center;;
}

.content__right{
  display: flex;
  justify-content: right;
  align-items: center;;
}
@media (width < 969px) {
  .content__right{
    display: block;
  }
}

.section-title {
  font-size: clamp(1.5rem, 1rem + 2vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  margin-bottom: clamp(1.25rem, -0.516rem + 2.76vw, 2.813rem);
  position: relative;
  z-index: 1;
}

@media (width < 640px) {
.section-title {
  text-align: justify;
  margin-bottom: 2.7em;
  margin-inline: 20px;
  line-height: 1.25;
}
}


.section-title::after {
  /* aria-label属性の値を参照して表示 */
  font-family: "Noto Sans JP", sans-serif;
  content: attr(aria-label);
  width: auto;
  position: absolute;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  font-size: clamp(7.5rem, 4.08rem + 4.91vw, 10rem);
  font-weight: 700;
  color: var(--bg-dark);
  letter-spacing: -2px;
  opacity: .2;
  text-transform: uppercase;
  line-height: 1.6;
  white-space: nowrap;
}
@media (width < 1024px) {
.section-title::after {
  font-size: clamp(4.375rem, 2.581rem + 7.65vw, 6.25rem);
}
}
@media (width < 640px) {
.section-title::after {
  width: 100%;
  position: absolute;
  left: calc(50% - 5px);
  font-size: 50px;
  line-height: 2;
}
}

.content__text{
  text-align: center;
  line-height: 1.8;
  font-size: 18px;
  /* margin-bottom: 120px; */
  margin-bottom: 100px;
  font-weight: 500;
}
@media (641px <= width < 1025px)  {
  .content__text{
    margin-bottom: 60px;
  }
}
@media (width < 640px) {
  .content__text{
    text-align: justify;
    line-height: 1.4;
    font-size: 16px;
    margin-bottom: 20px;
    margin-inline: 20px;
  }
  .content .content__text{
    margin-inline: 0;
  }
}




/*! ===================================!*/
/*! Service */
/*! ==================================== !*/

.service-container {
  /* No base styles */
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .service-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
    margin-inline: 20px;
  }
}

.item {
  display: grid;
  grid-template-columns: 1fr 400px;
  grid-template-rows: auto auto;
  grid-column-gap: 20px;
  grid-row-gap: 0;
  align-items: start;
  max-width: 90%;
  /* margin-left: auto; */
}
@media screen and (min-width: 1025px) {
  .item:nth-of-type(even) {
    grid-template-columns: 400px 1fr;
    margin-right: 0;
    margin-left: auto;
  }
}
@media screen and (max-width: 1024px) {
  .item {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 0;
    margin-inline: 20px;
  }
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
 .item {
    margin-inline: 0;
    display: flex;
    flex-direction: column;
  }
}

.item + .item {
  margin-top: 60px;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .service-container .item + .item {
    margin-top: 0;
  }
}

.caption-img {
  grid-area: 1 / 1 / 3 / 2;
  position: relative; /* 疑似要素の基準にする */
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 400px;
  /* aspect-ratio: 948 / 400; */
  background-repeat: no-repeat;
  /*
    background-attachment: fixed; を使用する場合、
    background-position はビューポートを基準とします。
    'center' を指定することで、画像の中心を基準に表示し、
    自然なパララックス効果を得られます。
  */
  background-position: center;
}
@media screen and (min-width: 1025px) {
  .item:nth-of-type(even) .caption-img {
    grid-area: 1 / 2 / 3 / 3;
  }
}
@media screen and (max-width: 1024px) {
  .caption-img {
    grid-area: 2 / 1 / 3 / 2;
    height: 250px;
    background-attachment: scroll;
  }
}

.service-img01 {
  background-image: url(../img/service_img01.jpg);
}
@media screen and (min-width: 1025px) {
  .service-img01 {
    background-position-x: -500px;
  }
}
.service-img02 {
  background-image: url(../img/service_img02.jpg); /* TODO: 実際の画像パスに修正してください */
}
@media screen and (min-width: 1025px) {
  .service-img02 {
    background-position-x: 400px;
  }
}
.service-img03 {
  background-image: url(../img/service_img03.jpg); /* TODO: 実際の画像パスに修正してください */
}
@media screen and (min-width: 1025px) {
  .service-img03 {
    background-position-x: -500px;
  }
}
.service-img04 {
  background-image: url(../img/service_img04.jpg); /* TODO: 実際の画像パスに修正してください */
}
@media screen and (min-width: 1025px) {
  .service-img04 {
    background-position-x: 250px;
  }
}

.caption-title {
  grid-area: 1 / 2 / 2 / 3;
  font-size: 42px;
  line-height: 1;
  margin-top: 1em;
  padding: 0 20px;
  font-weight: 600;
}
@media screen and (min-width: 1025px) {
  .item:nth-of-type(even) .caption-title {
    grid-area: 1 / 1 / 2 / 2;
  }
}
@media screen and (max-width: 1024px) {
  .caption-title {
    grid-area: 1 / 1 / 2 / 2;
    font-size: 24px;
    margin-top: 0;
    padding: 10px 5px;
  }
}

.caption-title span {
  font-size: 2em;
  color: var(--color-orange);
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .caption-title span {
    margin-inline: 3px;
  }
}

.caption-text {
  grid-area: 2 / 2 / 3 / 3;
  padding: 20px;
  background: #f5f5f7;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .item:nth-of-type(even) .caption-text {
    grid-area: 2 / 1 / 3 / 2;
  }
}
@media screen and (max-width: 1024px) {
  .caption-text {
    grid-area: 3 / 1 / 4 / 2;
  }
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .service-container .caption-text {
    flex-grow: 1;
  }
}

/*! ===================================!*/
/*! Feature */
/*! ==================================== !*/

ol.feature_list {
    list-style: none;
    counter-reset: my-counter;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}
  @media (width < 821px) {

    ol.feature_list{
      justify-content: center;
    }
  
  }


ol.feature_list li{
font-size: 18px;
padding: 30px;
line-height: 2;
text-align: justify;
counter-increment: my-counter;
position: relative;
width: calc(300px - 20px);
height: calc(300px - 20px);
border-radius: 50%;
border: solid 4px var(--color-green);
background: #fff;
display: flex;
align-items: center;
justify-content: center;
}
@media (width < 640px) {
  ol.feature_list li{
    font-size: 12px;
    line-height: 1.5;
    width: 160px;
    height: 160px;
    padding: 15px;
  }
}

ol.feature_list li::before {
content: counter(my-counter) ".";
  position: absolute;
  top: -80px;
  right: 0;
  font-size: 5em;
  color: var(--color-green);
  -webkit-text-stroke: 2px #ffffff;
  text-stroke: 2px #ffffff;
  paint-order: stroke;
  font-style: italic;
}
@media (width < 640px) {
  ol.feature_list li::before {
      top: -38px;
      right: 0;
      font-size: 4.5em;
  }
}

ol.feature_list li mark{
  font-weight: 500;
  font-style: normal;
  background: #FFFF00;
  background: linear-gradient(180deg, rgba(255, 255, 0, 0) 60%, rgba(255, 255, 0, .7) 60%);
}

ol.feature_list li::marker{
  font-size: 2em;
  border: solid 1px #333;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
}

.feature-grid {
  width: 100%;
  margin-top: 80px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
@media (width < 1024px) {
  .feature-grid {
    display: block;
  }
}

.grid01 { grid-area: 1 / 1 / 2 / 2; }
.grid02 { grid-area: 1 / 2 / 2 / 3; }
.grid03 { grid-area: 2 / 1 / 3 / 2; }
.grid04 { grid-area: 2 / 2 / 3 / 3; }


.feature-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.feature-img { grid-area: 1 / 1 / 2 / 2; }

.feature-text {
   grid-area: 1 / 2 / 2 / 3;
   align-self: center;
    /* padding: 20px 60px; */
    height: 100%;
  }


.feature-text h3 {
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 18px;
  margin: 20px 10px 20px;
  line-height: 1.7;
}
@media (width < 821px) {
  .feature-text h3 {
    font-size: 16px;
  }
}

.feature-text h3 span {
  font-size: 1.25em;
    font-weight: 700;
    border: solid 1px;
    border-bottom: solid 4px var(--color-blue);
    color: var(--color-blue);
    padding-inline: 7px;
    padding-block: 0px 0px;
    background: #fdfdfd;
    margin-inline: 3px;
}

.feature-item:nth-child(n+3) h3 span {
  /* border-bottom: solid 4px var(--color-blue); */
}

.feature-text p {
  font-weight: 400;
  opacity: .9;
  text-align: justify;
  padding: 0 20px 20px;
}

.feature-img img{
  object-fit: cover;
}


@media (1024px <= width) {
.grid03 .feature-img { grid-column: 2; grid-row: 1; }
.grid03 .feature-text { grid-column: 1; grid-row: 1; }
.grid04 .feature-img { grid-column: 2; grid-row: 1; }
.grid04 .feature-text { grid-column: 1; grid-row: 1; }
}
@media (width < 1024px) {
.grid02 .feature-img { grid-column: 2; grid-row: 1; }
.grid02 .feature-text { grid-column: 1; grid-row: 1; }
.grid04 .feature-img { grid-column: 2; grid-row: 1; }
.grid04 .feature-text { grid-column: 1; grid-row: 1; }
}


/*! ===================================!*/
/*! EVENTS イベント実績 */
/*! ==================================== !*/

.history{
  background-color: var(--bg-dark);
  color: #fff;
  padding: 80px 0 50px;
  margin-top: 0;
}
@media (width < 1024px) {
  .history {
    padding: 30px 0 30px;
  }
}
.history__title {
  font-size: clamp(1.5rem, 1rem + 2vw, 2.25rem);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.history .section-title::after{
  color: #fff;
}

.history__counter {
  text-align: center;
  font-size: clamp(1.75rem, 1.2rem + 2.5vw, 3.5rem);
  font-weight: 500;
  margin-top: 15px;
  width: min(100%, 500px);
  margin-inline: auto;
  line-height: 1.3;
}
.history__count-number {
  font-size: 1.5em;
  font-weight: 700;
  color: #fff;
  margin-inline: .2em;
}

.history__counter p{
  font-size: .5em;
}
@media (width < 640px) {
  .history__counter {
    margin-top: 40px;
  }

  .history__counter p{
    margin-bottom: 10px;
  }
}

.history__counter .btn__orange{
  width: min(100%, 280px);
}

 .space-up:hover {
  transition: ease .3s;
  letter-spacing: 2px;
}


.history__img {
  height: auto;
  width: min(50%, 500px);
  overflow: hidden;
  }
@media (width < 767px) {
  .history__img {
      height: 250px;
      margin-block: 20px;
      width: 300px;
      margin-inline: auto;
  }
  .history__img img {
    height: 310px;
    object-fit: cover;
    object-position: -160px -60px;
  }
}


.history__box{
  display: flex;
}
@media (width < 640px) {
.history__box{
  display: block;
}
}

/*! ===================================!*/
/*! Room Use ご利用用途 */
/*! ==================================== !*/

.list__box{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 20px;;
  width: 100%;
  margin-top: 120px;
}
@media (width < 640px) {
.list__box{
  margin-top: 40px;
}
}

.use_img{
  width: calc(100% / 8 - 20px);
  text-align: center;
}
.use_img img{
    object-fit: cover;
}

.use_img:nth-child(n + 9) {
    width: calc(100% / 9 - 20px);
}

@media (width < 640px) {
  .use_img{
    width: calc(100% / 2 - 20px);
  }
  .use_img:nth-child(n + 7){
    width: calc(100% / 2 - 20px);
  }
}


/*! ===================================!*/
/*! floor map フロアマップ */
/*! ==================================== !*/

.floor-map__box{
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 20px;
}
@media (width < 767px) {
  .floor-map__box{
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}

.floor-map__box figure{
    width: calc(100% / 4 - 20px);
}
@media (width < 767px) {
  .floor-map__box figure{
    width: 100%;
  }
}

.floor-map__box figure img{
  object-fit: contain;
}


.floor-map__box figcaption{
  text-align: center;
  font-weight: 700;
  color: #a7891e;
  font-size: 15px;
}
@media (width < 821px) {
  .floor-map__box figcaption{
    font-size: 20px;
  }
}

/*! ===================================!*/
/*! facilities おすすめ施設 */
/*! ==================================== !*/

.rec-fac__box{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}
@media (width < 821px) {
  .rec-fac__box{
    justify-content: space-between;
    gap: 10px;
  }
}
@media (width < 767px) {
  .rec-fac__box{
    justify-content: center;
  }
}

@media (820px <= width) {
  .rec-fac__box::before{
    content: "";
    order:1;
    width: 380px;
  }
.rec-fac__box::after{
    content: "";
    width: 380px;
  }
}

.rec-fac__item{
  display: block;
  width: 380px;
  transition: all .3s;
  object-fit: cover;
}
@media (641px <= width < 821px)  {
  .rec-fac__item{
    width: calc(100% / 2 - 5px);
  }
}
@media (width < 640px) {
  .rec-fac__item{
    /* width: calc(100% / 2 - 5px); */
    width: 100%;
  }
}
/* .rec-fac__item img{
  aspect-ratio: 4 / 3;
  transition: all .3s;
}
.rec-fac__item:hover img{
  transform: scale(1.1);
  transition: all .3s;
} */

.rec-fac__img{
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.rec-fac__img figcaption{
  font-size: 14px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(42, 43, 63, .7);
  padding: 4px 8px 5px;
  color: #fff;
  font-weight: 400;
  z-index: 2;
}
@media (width < 767px) {
  .rec-fac__img figcaption{
    font-size: clamp(0.625rem, 0.505rem + 0.51vw, 0.75rem);
  }
}

.rec-fac__scale {
  font-size: 12px;
  padding: 1px 3px 2px;
  color: #fff;
  font-weight: 400;
  margin-right: 0.5em; /* アイコンと施設名の間の余白 */
}
@media (width < 640px) {
  .rec-fac__scale {
    font-size: 10px;
  }
}

.rec-fac__text {
  padding: 5px 0;
}

.rec-fac__item h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  padding-block: 8px;
  position: absolute;
  z-index: 2;
  bottom: 0;
  background-color: rgb(42, 43, 63, .7);
  width: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rec-fac__text p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 3px;
  border-bottom: solid 1px #e7e7e7;
  padding-bottom: 3px;
  font-weight: 500;
  opacity: .9;
  padding-left: 1px;
}

.tag-big__details,
.tag-medium__details,
.tag-small__details{
  span{
    padding-left: 5px;
  }

}

.tag-big__details span{
  border-left: solid 4px var(--color-orange);
}

.tag-medium__details span{
  border-left: solid 4px var(--color-blue);
}

.tag-small__details span{
  border-left: solid 4px var(--color-green);
}

.tag-details__link{
    color: #fff;
    padding: 0 0px 1px;
    border-radius: 10px;
    display: inline-block;
    text-align: center;
    width: 95px;
    text-indent: 0;
    margin-left: auto;
    font-size: 11px;
    transition: all .3s;
    box-sizing: border-box;
}

.tag-big__details .tag-details__link{
  background: var(--color-orange);
  border: solid 1px var(--color-orange);
}
.tag-big__details .tag-details__link:hover {
  background: #fff;
  color: var(--color-orange);
}

.tag-medium__details .tag-details__link{
  background: var(--color-blue);
  border: solid 1px var(--color-blue);
}
.tag-medium__details .tag-details__link:hover {
  background: #fff;
  color: var(--color-blue);
}

.tag-small__details .tag-details__link{
  background: var(--color-green);
  border: solid 1px var(--color-green);
}
.tag-small__details .tag-details__link:hover {
  background: #fff;
  color: var(--color-green);
}

/*! ===================================!*/
/*! Swiper Navigation Buttons */
/*! ==================================== !*/
.facility-slider .swiper-button-prev,
.facility-slider .swiper-button-next {
  width: 34px;
  height: 34px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); */
  transition: opacity 0.3s, transform 0.3s;
}

.facility-slider .swiper-button-prev:hover,
.facility-slider .swiper-button-next:hover {
  transform: scale(1.1);
}

.facility-slider .swiper-button-prev::after,
.facility-slider .swiper-button-next::after {
  font-size: 16px;
  color: var(--bg-dark);
  font-weight: 900;
  /* Swiperのデフォルトスタイル（borderを使った矢印）をリセット */
  border: none;
}


/*! ===================================!*/
/*! Related 関連サービス */
/*! ==================================== !*/

.service-box{

}

.service-box__inner{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
}

.service-box__inner + .service-box__inner{
  margin-top: 40px;
}

@media (width < 640px) {
  .service-box__inner{
    margin-top: 40px;
  }
}

.service-box__inner:nth-of-type(even) {
  flex-direction: row-reverse;
  margin-left: 0;
  margin-right: auto;
}

.service-box__img {
  overflow: hidden;
  width: 60%;
}
.service-box__img img {
  aspect-ratio: 950 / 400;
  width: 100%;
  object-fit: cover;
}
@media (width < 640px) {
  .service-box__img {
    width: 100%;
  }
}

.service-box__text{
  width: 40%;
  padding: 30px 0 0 20px;
}
@media (width < 640px) {
.service-box__text{
  width: 100%;
  padding: 20px 0 0 0;
}
}

.service-box__inner:nth-of-type(even) .service-box__text {
  padding: 30px 20px 0 0;
}
@media (width < 640px) {
  .service-box__inner:nth-of-type(even) .service-box__text {
    padding: 20px 0 0 0;
  }
}

.service-box__text h3{
  text-align: center;
    font-size: 20px;
}
@media (width < 767px) {
.service-box__text h3{
    font-size: 18px;
}
}

.service-box__text p{
  font-weight: 400;
  opacity: .9;
  margin-top: 10px;
  text-align: justify;
}

.service-box__btn{
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding-top: 20px;
}

.service-box__text .btn__blue{
  width: min(100%, 200px);
}

html.modal-open {
  overflow: hidden;
}

/*!!!!! modal !!!!!*/

/* 641px以上でモーダルを開く要素にポインターカーソルを適用 */
@media (min-width: 641px) {
	[data-modal-open] {
		cursor: pointer;
	}
}

/* モーダルと背景の指定 */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0, 0, 0, 50%);
	padding: 40px 15px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	box-sizing: border-box;
	z-index: 100000;
}

/* モーダルの擬似要素の指定 */
.modal:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
	margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active {
	opacity: 1;
	visibility: visible;
}

/* モーダル内側の指定 */
.modal-container {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	background: #fff;
	width: min(100%, 680px);
	padding: 20px;
}

/* モーダルを閉じるボタンの指定 */
.modal-close {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -20px;
	right: -10px;
	width: 40px;
	height: 40px;
	color: #fff;
	background: #000;
	border-radius: 50%;
	cursor: pointer;
}

/* モーダルのコンテンツ部分の指定 */
.modal-content {
	background: #fff;
	text-align: left;
	line-height: 1.8;
}
