@charset "UTF-8";
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
}

.zen-kaku-gothic-new {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  /* 1. 本物がある人はそれを、2. なければ代替Webフォント、3. 最後は和文 */
  font-family: "Gill Sans", "Segoe UI", "Cabin", "Josefin Sans", "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  font-optical-sizing: auto;
}

@media (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
img {
  max-width: 100%;
  height: auto;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  color: #292929;
  cursor: pointer;
  transition: .3s;
}

.link_underline {
  text-decoration: underline !important;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pc_only {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp_only {
    display: none !important;
  }

  .pc_only {
    display: block;
  }
}
.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1s;
}
.fadein.fadein-bottom {
  transform: translate(0, 30px);
}
.fadein.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 15px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 10;
  display: none;
  /* 最初は非表示 */
}
@media screen and (min-width: 768px) {
  .back-to-top {
    right: 20px;
  }
}

/* -------------------------
	header
------------------------- */
#header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
}
#header .contact_btn {
  width: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: .04em;
  line-height: 1.2;
  color: #FFFFFF;
  text-align: center;
  white-space: nowrap;
  padding: 0 1em;
  background-color: #D6A708;
}

#header_menu {
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 0 20px;
}
#header_menu .logo {
  width: 130px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header_menu .logo_img {
  width: 110px;
  height: auto;
}
#header_menu .wrap_item {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0;
  height: 50px;
}
@media screen and (min-width: 768px) {
  #header_menu .wrap_item {
    display: none;
  }
}

#header .hamburger {
  position: relative;
  z-index: 1000;
  background-color: white;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
#header .hamburger.active {
  background-color: #292929;
}

#header .hamburger span {
  display: inline-block;
  transition: all .4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 2px;
  background-color: #656565;
  width: 40%;
}

#header .hamburger span:nth-of-type(1) {
  top: 18px;
}

#header .hamburger span:nth-of-type(2) {
  top: 24px;
}

#header .hamburger span:nth-of-type(3) {
  top: 30px;
  width: 25%;
}

#header .hamburger.active span {
  background-color: #ffffff;
}

#header .hamburger.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

#header .hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

#header .hamburger.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

#header #hamburger_menu {
  display: none;
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #292929;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
#header #hamburger_menu .wrap_item {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#header #hamburger_menu .wrap_item:first-child {
  margin-bottom: 2rem;
}
#header #hamburger_menu ul {
  display: none;
}
#header #hamburger_menu ul:has(> .main) {
  padding: 62px 10px 10px;
}
#header #hamburger_menu ul li {
  list-style: none;
  text-align: center;
}
#header #hamburger_menu ul li a {
  padding: 1rem;
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
}
#header #hamburger_menu.active {
  display: block;
  z-index: 999;
  opacity: 1;
}
#header #hamburger_menu.active #hamburger_menu_wrap {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#header #hamburger_menu.active ul:has(> .main) {
  display: block;
}
#header #hamburger_menu.active li.main ._arrow {
  display: inline-block;
  padding-right: 1.3em;
  position: relative;
}
#header #hamburger_menu.active li.main ._arrow::after {
  content: url("../img/common/arrow_down.svg");
  display: inline-block;
  position: absolute;
  top: calc(50% - 4px);
  right: 0;
  transform: translateY(-50%);
}
#header #hamburger_menu.active li.main.open ul.sub {
  display: block;
  width: 54%;
  margin: .5rem auto;
  padding: .5rem 0;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
}
#header #hamburger_menu.active li.main.open ul.sub li a {
  font-size: 1.5rem;
  font-weight: normal;
}
#header #hamburger_menu.active .contact_btn {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: .04em;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 74%;
  height: 6rem;
  background-color: #F2AA08;
  border-radius: .6rem;
  margin: 0 auto;
  position: relative;
}
#header #hamburger_menu.active .contact_btn::after {
  content: url("../img/common/arrow_btn.svg");
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1.3rem;
  transform: translateY(-50%);
}
#header #hamburger_menu.active .contact_btn.--other {
  background: #B2B95B;
}
#header #hamburger_menu.active .sns_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 2rem;
}
#header #hamburger_menu.active .sns_list a {
  padding: 0;
}

@media screen and (min-width: 768px) {
  #header {
    box-shadow: 0 1px 10px -2px rgba(0, 0, 0, 0.06);
  }

  #header_menu {
    padding: 0;
  }
  #header_menu .logo {
    width: 190px;
    height: 80px;
  }
  #header_menu .logo_img {
    width: 180px;
  }
  #header_menu > ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 1rem;
    width: auto;
    height: 80px;
  }
  #header_menu > ul li {
    width: auto;
    height: 100%;
  }
  #header_menu > ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 .75em;
    font-size: 1.5vw;
    font-weight: bold;
    letter-spacing: 0;
    white-space: nowrap;
  }
  #header_menu > ul li .contact_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 .78em;
    font-size: 1.5vw;
    font-weight: bold;
    letter-spacing: 0;
    background: #F2AA08;
  }
  #header_menu > ul li .contact_btn.--other {
    background: #B2B95B;
    margin-left: 1rem;
  }
  #header_menu > ul li .contact_btn:hover {
    filter: brightness(0.94);
  }
  #header_menu > ul li.main {
    min-width: 120px;
    padding-left: 1rem;
    position: relative;
  }
  #header_menu > ul li.main > a svg {
    margin-left: .5em;
    font-size: .6em;
  }
  #header_menu > ul li.main .sub {
    display: none;
    position: absolute;
    top: 100%;
    /* 親要素の下に配置 */
    left: 0;
    min-width: 200px;
    /* 親よりも広くする */
  }
  #header_menu > ul li.main.open .sub {
    display: block;
    width: 200px;
    padding-top: 10px;
  }
  #header_menu > ul li.main.open .sub > ul {
    background-color: #FFFFFF;
    border-radius: 1rem;
    margin: 0;
    padding: 1rem 2rem 2rem;
    box-shadow: 0 3px 6px -2px rgba(0, 0, 0, 0.16);
  }
  #header_menu > ul li.main.open .sub > ul li a {
    justify-content: flex-start;
    font-weight: normal;
    padding: 1rem 2rem;
  }
}
@media screen and (min-width: 1100px) {
  #header_menu {
    padding: 0;
  }
  #header_menu .logo {
    width: 226px;
  }
  #header_menu > ul {
    height: 80px;
  }
  #header_menu > ul li a {
    padding: 0 2rem;
    font-size: 1.5rem;
  }
  #header_menu > ul li .contact_btn {
    padding: 0 2rem;
    font-size: 1.5rem;
  }
  #header_menu > ul li.main {
    min-width: 150px;
    padding-left: 2rem;
  }
}
/* -------------------------
	footer
------------------------- */
.footer {
  background-color: #292929;
  margin: 0;
  padding: 60px 0 0;
}
.footer .footer_inner {
  padding: 0 20px 1.2rem;
}
.footer .footer_logo {
  width: 144px;
  height: auto;
}
.footer .address {
  margin-top: 3rem;
  padding: 0 1.5rem;
}
.footer .address p {
  font-size: 1.3rem;
  letter-spacing: .04em;
  line-height: 1.69;
  color: #FFFFFF;
}
.footer .address a {
  font-size: 1.3rem;
  letter-spacing: .04em;
  line-height: 1;
  text-decoration: underline;
  color: #FFFFFF;
  display: inline-block;
  margin-top: 20px;
}
.footer .address .footer_sns {
  margin-top: 30px;
}
.footer .address .footer_sns .sns_list {
  display: flex;
  align-items: center;
  gap: 0 1.5rem;
}
.footer .info {
  margin-top: 5rem;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #FFFFFF;
}
.footer .info .info_item {
  padding-left: 18px;
  position: relative;
  font-size: 1.4rem;
}
.footer .info .info_item::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #F2AA08;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 0;
}
.footer .footer_contact .btn_row.footer_contact_btn {
  max-width: 330px;
  width: 100%;
}
.footer .footer_contact .btn_row.footer_contact_btn a {
  background: #F2AA08;
  border-radius: 10px;
  padding: 18px;
  display: flex;
  max-width: inherit;
  width: 100%;
}
.footer .copy {
  margin-top: 5rem;
  text-align: center;
}
.footer .copy small {
  font-size: 1.2rem;
  letter-spacing: .04em;
  color: #FFFFFF;
}

@media screen and (min-width: 768px) {
  .footer {
    padding: 6rem 0 0;
  }
  .footer .footer_inner {
    max-width: 1166px;
    margin: 0 auto;
  }
  .footer .footer_logo {
    width: 230px;
  }
  .footer .item_wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
  }
  .footer .address {
    margin-top: 0;
  }
  .footer .info {
    margin-top: 0;
    align-items: flex-start;
    gap: 14px;
  }
  .footer .footer_contact .btn_row.footer_contact_btn {
    max-width: 345px;
    margin: 0;
  }
  .footer .footer_contact .btn_row.footer_contact_btn a {
    padding: 18px 50px;
  }
  .footer .footer_contact .btn_row.footer_contact_btn a::before {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
  }
  .footer .copy {
    margin-top: 6.2rem;
    text-align: left;
  }
}
/* -------------------------
	共通
------------------------- */
.l-main {
  padding-top: 50px;
}

.section {
  padding: 50px 0 60px;
}
.section .inner {
  padding: 0 20px;
}
.section p {
  letter-spacing: .04em;
  line-height: 2.14;
}
.section .sec_title {
  margin-bottom: 40px;
}
.section .sec_title .sec_title_en {
  font-size: 6rem;
  font-weight: bold;
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: .1em;
  color: #289B7D;
}
.section .sec_title span {
  font-size: 2rem;
  letter-spacing: .04em;
  line-height: 1;
}
.section .sec_title--center {
  text-align: center;
}

.btn_row {
  margin: 4rem auto 0;
}
.btn_row a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 288px;
  min-height: 56px;
  width: 100%;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: .04em;
  line-height: 1.285;
  text-align: center;
  color: #292929;
  background-color: #FFFFFF;
  border: solid 2px #292929;
  border-radius: 3em;
  margin: 0 auto;
  padding: .2em 1.2em .3em;
  position: relative;
}
.btn_row a span.arrow {
  position: absolute;
  top: 50%;
  right: 1.3rem;
  transform: translateY(-50%);
}
.btn_row a._black {
  background-color: #292929;
  color: #FFFFFF;
}
.btn_row.col_gap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media screen and (min-width: 768px) {
  .l-main {
    padding-top: 80px;
  }

  .section {
    padding: 100px 0 150px;
  }
  .section .inner {
    max-width: 1046px;
    margin: 0 auto;
  }
  .section .sec_title {
    margin-bottom: 80px;
  }
  .section .sec_title .sec_title_en {
    font-size: 12rem;
    margin-bottom: .1em;
  }
  .section .sec_title span {
    font-size: 3.8rem;
  }
  .section .u-mt-100 {
    margin-top: 100px;
  }

  .btn_row a {
    min-height: 60px;
    width: 300px;
    font-size: 1.6rem;
  }
  .btn_row a::before {
    content: '';
    position: absolute;
    transition: all .4s ease-out;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3em;
    opacity: 0;
    background: rgba(0, 0, 0, 0.1);
    transform: scale(0.1, 0.1);
    z-index: 1;
  }
  .btn_row a:hover::before {
    opacity: 1;
    transform: scale(1, 1);
  }
  .btn_row a._black:hover::before {
    background: rgba(255, 255, 255, 0.1);
  }
  .btn_row.col_gap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}
.breadcrumb .breadcrumb_inner {
  margin: 0;
  padding: 20px 20px 15px;
}
.breadcrumb .breadcrumb_inner ul {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 0 1rem;
  flex-wrap: nowrap;
  /* 折り返さない */
  overflow-x: auto;
  /* 横方向にスクロールさせる */
  white-space: nowrap;
  /* 中の文字を改行させない */
  -webkit-overflow-scrolling: touch;
  padding-bottom: 5px;
}
.breadcrumb .breadcrumb_inner ul:-webkit-scrollbar {
  display: none;
}
.breadcrumb .breadcrumb_inner ul li a {
  font-size: 1rem;
  letter-spacing: 0;
  display: block;
  position: relative;
}
.breadcrumb .breadcrumb_inner ul li a::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("../img/common/breadcrumb_arrow.svg") no-repeat center/contain;
  margin-left: 1rem;
  vertical-align: text-bottom;
}
.breadcrumb .breadcrumb_inner ul li:last-child a:hover {
  cursor: default;
}
.breadcrumb .breadcrumb_inner ul li:last-child a::after {
  display: none;
}

.breadcrumb--bg {
  background: #F6F2E3;
}

@media screen and (min-width: 768px) {
  .breadcrumb .breadcrumb_inner {
    padding: 20px 9vw;
  }
  .breadcrumb .breadcrumb_inner ul li a {
    font-size: 1.3rem;
  }
}
/* -------------------------
	トップページ
------------------------- */
.mv_wrap {
  position: relative;
  margin-bottom: 130px;
}
.mv_wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 130px;
  background: #289B7D;
  position: absolute;
  top: 100%;
  left: 0;
}
.mv_wrap figure {
  position: absolute;
  bottom: -90px;
  left: 20px;
  z-index: 1;
  width: 82vw;
}
.mv_wrap figure img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .mv_wrap {
    margin-bottom: 0;
  }
  .mv_wrap::after {
    display: none;
  }
  .mv_wrap figure {
    bottom: 50px;
    left: 9vw;
    width: 64vw;
  }
}
.main-visual {
  overflow: hidden;
}

.main-visual .item picture {
  display: block;
  width: 100%;
  height: 100%;
}

.main-visual .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-visual .slick-active img {
  animation-play-state: running;
}

.main-visual .slick-slide:not(.slick-active) img {
  animation-play-state: paused;
}

@media (max-width: 767px) {
  @keyframes zoomUp {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.1);
    }
    /* スマホは1.1倍くらいが丁度いい */
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.sec_title + .img_wrap {
  margin-top: 30px;
}

.img_wrap {
  margin-top: 60px;
}
.img_wrap figure {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}
.img_wrap h3 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: .08em;
  line-height: 1;
  margin-bottom: 16px;
}

.img_figcap {
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
}
.img_figcap figcaption {
  width: 66%;
  height: 45px;
  background: #FFFFFF;
  border-radius: 0 45px 0 0;
  position: absolute;
  bottom: -1px;
  left: -1px;
  display: flex;
  align-items: flex-end;
}
.img_figcap figcaption h3 {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .img_wrap {
    margin-top: 60px;
  }
  .img_wrap figure {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
  }
  .img_wrap h3 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  .img_wrap.flex_L {
    display: flex;
    gap: 0 5%;
    margin-top: 120px;
  }
  .img_wrap.flex_L figure {
    width: 52%;
  }
  .img_wrap.flex_L .img_wrap_text {
    width: 43%;
  }
  .img_wrap.flex_L h3 {
    font-size: 2.6rem;
  }
  .img_wrap.flex_R {
    display: flex;
    flex-direction: row-reverse;
    gap: 0 5%;
    margin-top: 120px;
  }
  .img_wrap.flex_R figure {
    width: 52%;
  }
  .img_wrap.flex_R .img_wrap_text {
    width: 43%;
  }
  .img_wrap.flex_R h3 {
    font-size: 2.6rem;
  }

  .img_figcap figcaption {
    width: 63%;
    height: 100px;
    border-radius: 0 80px 0 0;
  }
}
.datalist {
  font-family: "Noto Sans JP", sans-serif;
  margin: 50px 0;
}
.datalist .item_group:not(:last-child) {
  border-bottom: solid 1px #292929;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.datalist .item_group:last-child {
  padding-bottom: 20px;
}
.datalist dt {
  margin-bottom: 1em;
}
.datalist dd {
  padding: 0 10px;
}
.datalist dd p {
  letter-spacing: 0;
  line-height: 1.64;
}
.datalist dd li {
  padding-left: 1em;
  letter-spacing: 0;
  line-height: 1.64;
  position: relative;
}
.datalist dd li::before {
  content: "・";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.datalist .item_title {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: .08em;
  line-height: 1;
  color: #FFFFFF;
  width: 115px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #289B7D;
  border-radius: 3em;
}

@media screen and (min-width: 768px) {
  .datalist {
    max-width: 860px;
    margin: 80px auto 0;
  }
  .datalist .item_group {
    display: flex;
    align-items: center;
    gap: 0 4vw;
  }
}
.cover_fv {
  width: 50%;
  aspect-ratio: 195 / 20.52;
  position: absolute;
  top: calc(50vw * -20 / 195);
  z-index: 1;
}
.cover_fv svg {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .cover_fv {
    width: 34%;
    top: calc(34vw * -20 / 195);
  }
}
/* -------------------------
	About
------------------------- */
.sec_about {
  background-color: #289B7D;
  padding-bottom: 80px;
  border-radius: 0 0 0 80px;
  position: relative;
  z-index: 1;
}
.sec_about .sec_title {
  margin-bottom: 20px;
}
.sec_about .sec_title .sec_title_en {
  color: #A5D6C9;
  position: relative;
  left: -20px;
}
.sec_about .sec_title + p {
  color: #FFFFFF;
}
.sec_about .block_img {
  width: 370px;
  height: 289px;
  border-radius: 0 0 0 50px;
  overflow: hidden;
  margin: 30px 0 0 auto;
}
.sec_about .slick-slide img {
  /* 高さの競合を解消 */
  height: 289px;
  width: auto;
  object-fit: cover;
}

.map {
  margin: 60px 0 0;
}
.map .about_map_title {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: #A5D6C9;
}

@media screen and (min-width: 768px) {
  .sec_about {
    padding: 90px 0 120px;
  }
  .sec_about .about_top {
    width: 57vw;
  }
  .sec_about .about_top p {
    max-width: 527px;
  }
  .sec_about .sec_title .sec_title_en {
    left: -60px;
    margin-bottom: 0;
  }
  .sec_about .block_img {
    width: 30vw;
    height: auto;
    position: absolute;
    top: 170px;
    right: 0;
  }
  .sec_about .slick-slide img {
    height: 570px;
    max-height: 570px;
    min-height: 370px;
  }

  .map {
    margin: 114px 0 0;
  }
  .map .about_map_title {
    font-size: 7rem;
  }
  .map .btn_row {
    margin: 6rem auto 0;
  }
}
/* -------------------------
	News
------------------------- */
.sec_news {
  background: #F6F2E3;
  padding-top: 130px;
  margin-top: -80px;
}
.sec_news .sec_title_wrap {
  margin-bottom: 60px;
}
.sec_news .sec_title {
  margin-bottom: 0;
}
.sec_news .sec_title .sec_title_en {
  margin-bottom: 0;
}
.sec_news .sec_title + p {
  font-weight: bold;
}
.sec_news .p-news__item {
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 20px;
}
.sec_news .p-news__meta {
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.sec_news .p-news__date {
  font-size: 1.2rem;
  white-space: nowrap;
}
.sec_news .p-news__tag {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0;
  white-space: nowrap;
  background: #FFFFFF;
  border: solid 1px #289B7D;
  border-radius: 3em;
  color: #289B7D;
  padding: .1em 1.5em;
}
.sec_news .p-news__link {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: .02em;
  line-height: 1.8;
  padding: 10px 0;
}

@media screen and (min-width: 768px) {
  .sec_news .news_area {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
  }
  .sec_news .sec_title_wrap {
    margin-bottom: 0;
  }
  .sec_news .sec_title + p {
    font-size: 1.8rem;
  }
  .sec_news .btn_row {
    margin: 0;
  }
  .sec_news .p-news__list {
    width: 700px;
    margin: 0 auto;
  }
  .sec_news .p-news__item {
    margin-bottom: 50px;
  }
  .sec_news .p-news__link {
    font-size: 1.6rem;
  }
}
/* -------------------------
	Slider
------------------------- */
.block_slider {
  width: 100%;
  height: 294px;
  overflow: hidden;
}

.slick-slide img {
  height: 294px;
  width: auto;
  object-fit: cover;
}

.sec_stay {
  position: relative;
}
.sec_stay .cover_fv {
  right: 0;
}

@media screen and (min-width: 768px) {
  .block_slider {
    height: 478px;
  }

  .slick-slide img {
    height: 478px;
  }
}
/* -------------------------
	Eat
------------------------- */
.sec_eat {
  position: relative;
  background: #F6F2E3;
}
.sec_eat .img_figcap figcaption {
  background: #F6F2E3;
}

/* -------------------------
	Training
------------------------- */
.sec_training {
  position: relative;
}
.sec_training .cover_fv {
  right: 0;
}

/* -------------------------
	Sports
------------------------- */
.sec_sports {
  position: relative;
  background: #F6F2E3;
  padding-bottom: 140px;
}
.sec_sports .img_figcap figcaption {
  background: #F6F2E3;
}

/* -------------------------
	Access
------------------------- */
.sec_access {
  margin-top: -60px;
  background: #289B7D;
  border-radius: 60px 60px 0 0;
  color: #FFFFFF;
}
.sec_access .sec_title_en {
  color: #A5D6C9 !important;
  margin-bottom: 0 !important;
}
.sec_access .sec_title_ja {
  color: #FFFFFF;
  font-size: 1.4rem;
}
.sec_access .address {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: .04em;
  line-height: 1.42;
  color: #FFFFFF;
  padding-left: 30px;
  position: relative;
}
.sec_access .address span {
  position: absolute;
  top: 5px;
  left: 0;
}
.sec_access .address_map {
  margin-top: 20px;
  width: 100%;
  aspect-ratio: 330 / 176;
  border-radius: 20px;
  overflow: hidden;
}
.sec_access .address_map iframe {
  width: 100%;
  height: 100%;
}
.sec_access .access_means_group {
  margin-top: 40px;
}
.sec_access .means_badge {
  margin-bottom: 10px;
}
.sec_access .info_panel {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 20px 25px 30px;
  margin-top: 30px;
}
.sec_access .info_panel p {
  color: #292929;
}
.sec_access .info_panel figure {
  margin-top: 40px;
}
.sec_access .panel_title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #289B7D;
}
.sec_access .panel_item {
  margin-top: 25px;
}
.sec_access .panel_item__title span {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: .08em;
  line-height: 1;
  color: #289B7D;
  background: #FFFFFF;
  border: solid 1px #289B7D;
  border-radius: 3em;
  padding: .4em 2em .3em;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .sec_access {
    border-radius: 80px 80px 0 0;
  }
  .sec_access .sec_title_ja {
    font-size: 1.8rem !important;
  }
  .sec_access p {
    font-size: 1.6rem;
  }
  .sec_access .access {
    max-width: 900px;
    margin: 0 auto;
  }
  .sec_access .address {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.8rem;
  }
  .sec_access .address span {
    top: -2px;
  }
  .sec_access .access_means {
    max-width: 900px;
    margin: 80px auto 0;
  }
  .sec_access .access_means_group {
    margin-top: 80px;
  }
  .sec_access .info_panel {
    padding: 30px 40px 40px;
  }
  .sec_access .panel_title {
    font-size: 1.8rem;
  }
  .sec_access .panel_item_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 30px;
  }
  .sec_access .panel_item_wrap figure {
    margin-top: 0;
    width: clamp(200px, 47%, 36vw);
  }
  .sec_access .panel_item {
    display: flex;
    gap: 0 40px;
    white-space: nowrap;
  }
}
/* -------------------------
	category-page
------------------------- */
.p-newsSection .inner {
  padding: 0 30px;
}

.p-newsArchive__head {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 54px 20px 40px;
}

.p-newsArchive__title {
  font-size: 6rem;
  font-weight: bold;
  letter-spacing: .04em;
  line-height: .5em;
  color: #289B7D;
  text-align: center;
}
.p-newsArchive__title span {
  display: block;
  font-size: 1.4rem;
  color: #292929;
  margin-top: 1em;
}

.p-newsSection {
  padding: 60px 0;
  background: #F6F2E3;
  border-radius: 60px 60px 0 0;
}

.p-newsArchive__list {
  margin-bottom: 60px;
}

.p-newsArchive__item {
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 20px;
}

.p-newsArchive__meta {
  display: flex;
  align-items: center;
  gap: 0 10px;
}

.p-newsArchive__date {
  font-size: 1.2rem;
  white-space: nowrap;
}

.p-newsArchive__tag {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0;
  white-space: nowrap;
  background: #FFFFFF;
  border: solid 1px #289B7D;
  border-radius: 3em;
  color: #289B7D;
  padding: .1em 1.5em;
}

.p-newsArchive__link {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: .02em;
  line-height: 1.8;
  padding: 10px 0;
}

@media screen and (min-width: 768px) {
  .p-newsArchive__head {
    padding: 90px 20px 70px;
  }

  .p-newsArchive__title {
    font-size: 11rem;
  }
  .p-newsArchive__title span {
    font-size: 1.8rem;
    margin-top: 1.4em;
  }

  .p-newsSection {
    padding: 100px 0;
    border-radius: 80px 80px 0 0;
  }
  .p-newsSection .inner {
    max-width: 752px;
    margin: 0 auto;
  }

  .p-newsArchive__list {
    margin-bottom: 115px;
  }

  .p-newsArchive__link {
    font-size: 1.6rem;
  }

  .p-newsArchive__item {
    margin-bottom: 40px;
  }
}
.p-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
}

.page-numbers {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0;
  color: #A3CFBA;
}

.page-numbers:link,
.page-numbers:visited {
  color: #A3CFBA;
}

.page-numbers:active,
.page-numbers:hover {
  color: #289B7D;
}

.page-numbers.current {
  color: #289B7D;
}

/* -------------------------
	single-page
------------------------- */
.p-newsSingle__title {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: .02em;
  line-height: 1.7;
  margin: 12px 0 30px;
}

.p-newsContent__wrap {
  margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .p-newsSingle__title {
    font-size: 2.8rem;
    line-height: 1.7;
    margin: 60px 0 50px;
  }

  .p-newsContent__wrap {
    margin-bottom: 80px;
  }
}
/* -------------------------
	img-replace
------------------------- */
.img-replace {
  display: inline-block;
  color: transparent;
  font-size: 6rem !important;
  position: relative;
}
.img-replace::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.sec_about .img-replace::after {
  background: url("../img/common/img-replace_about.svg") no-repeat center/contain;
}

.sec_news .img-replace::after {
  background: url("../img/common/img-replace_news.svg") no-repeat center/contain;
}

.sec_stay .img-replace::after {
  background: url("../img/common/img-replace_stay.svg") no-repeat center/contain;
}

.sec_eat .img-replace::after {
  background: url("../img/common/img-replace_eat.svg") no-repeat center/contain;
}

.sec_training .img-replace::after {
  background: url("../img/common/img-replace_training.svg") no-repeat center/contain;
}

.sec_sports .img-replace::after {
  background: url("../img/common/img-replace_sports.svg") no-repeat center/contain;
}

.sec_access .img-replace::after {
  background: url("../img/common/img-replace_access.svg") no-repeat center/contain;
}

.about_map_title .img-replace {
  font-size: 3rem !important;
}
.about_map_title .img-replace::after {
  background: url("../img/common/img-replace_about-map.svg") no-repeat center/contain;
}

.p-newsArchive__head {
  padding: 40px 0;
}
.p-newsArchive__head .img-replace {
  color: transparent;
  font-size: 6rem !important;
  margin-top: 0;
  line-height: 1;
}
.p-newsArchive__head .img-replace::after {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.p-newsArchive__head .img-replace + span {
  margin-top: 0;
}
.p-newsArchive__head .img-replace::after {
  background: url("../img/common/img-replace_news.svg") no-repeat center/contain;
}

.category-news .p-newsArchive__head .img-replace {
  background: url("../img/common/img-replace_news.svg") no-repeat center/contain;
}

.reservation .img-replace {
  font-size: 5rem !important;
}
.reservation .img-replace::after {
  background: url("../img/common/img-replace_reservation.svg") no-repeat center/contain;
}

@media screen and (min-width: 768px) {
  .img-replace {
    font-size: 12rem !important;
  }

  .about_map_title .img-replace {
    font-size: 7rem !important;
  }

  .sec_news .img-replace {
    font-size: 11rem !important;
  }

  .sec_access .img-replace {
    font-size: 11rem !important;
  }

  .p-newsArchive__head {
    padding: 60px 0 70px;
  }
  .p-newsArchive__head .img-replace {
    font-size: 11rem !important;
  }

  .reservation .img-replace {
    font-size: 11rem !important;
  }
}

/*# sourceMappingURL=common.css.map */
