@charset "UTF-8";

/*=============== header ===========*/

.header {
  height: 8rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 50;
}

.header_container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  padding: 0 5rem;
}

.header_logo {
  height: auto;
  width: 13.7rem;
}

/*=============== gnav ===========*/

.gnav {
  position: relative;
}

.gnav_menu {
  align-items: center;
  display: flex;
  gap: 2.8rem;
  justify-content: center;
}

.gnav_menu li a {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-align: center;
}

.gnav_menu li:last-of-type i {
  font-size: 2rem;
}

/*=============== navbtn ===========*/

.navbtn {
  display: none;
}

.navbtn_line {
  background-color: #fff;
  display: block;
  height: 0.2rem;
  left: 1.4rem;
  position: absolute;
  top: 50%;
  transition: 0.1s;
  visibility: visible;
  width: 3.4rem;
}

.navbtn_line::before,
.navbtn_line::after {
  background-color: #fff;
  content: "";
  display: block;
  height: 0.2rem;
  position: absolute;
  transition: all 0.3s;
  visibility: visible;
  width: 3.4rem;
}

.navbtn_line::before {
  top: -1.2rem;
}

.navbtn_line::after {
  top: 1.2rem;
}

.navbtn.open .navbtn_line {
  visibility: hidden;
}

.navbtn.open .navbtn_line::before {
  transform: translateY(1.2rem) rotate(45deg);
}

.navbtn.open .navbtn_line::after {
  transform: translateY(-1.2rem) rotate(-45deg);
}

/*  ----------------------------------------------------------
footer
----------------------------------------------------------  */

.footer {
  background: #fff;
  padding: 4rem 0 1.5rem;
}

.footer_nav {
  align-items: center;
  display: flex;
  gap: 4rem;
  justify-content: center;
}

.footer_nav li a {
  display: block;
  font-weight: 500;
  letter-spacing: 0.1em;
  width: 100%;
}

.footer_nav li:last-of-type a {
  font-size: 2rem;
}

.footer_logo {
  height: auto;
  margin: 9.5rem auto 7rem;
  width: 15.3rem;
}

.footer_copyright {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-align: center;
}

/*  ----------------------------------------------------------
main / container 
----------------------------------------------------------  */

main {
  overflow: hidden;
}

.top-container {
  margin: 0 auto;
  padding: 0 3rem;
  width: min(90%, 116rem);
}

.preparation {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 5rem 0;
  text-align: center;
}

/*  ----------------------------------------------------------
more
----------------------------------------------------------  */

.more {
  display: block;
  height: 5.4rem;
  margin-inline: auto;
  width: 22.8rem;
}

.more a {
  background: var(--main);
  border-radius: 2rem;
  color: #fff;
  display: block;
  font-family: var(--ttl);
  font-weight: 700;
  height: 100%;
  letter-spacing: 0.1em;
  line-height: 5.4rem;
  position: relative;
  text-align: center;
  width: 100%;
}

.more a::before,
.more a::after {
  aspect-ratio: 42/40;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.1rem;
}

.more a::before {
  background: url(../img/more_deco1.png) no-repeat center/contain;
  left: 1.5rem;
}

.more a::after {
  background: url(../img/more_deco2.png) no-repeat center/contain;
  right: 1.5rem;
}

.more-brw a {
  background: var(--brw);
}

/*  ----------------------------------------------------------
top-heading
----------------------------------------------------------  */

.top-heading {
  font-family: var(--ttl);
  font-size: clamp(3.2rem, 0.75vw + 2.92rem, 4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
}

.top-heading span {
  display: block;
  font-family: var(--noto);
  font-size: clamp(1.3rem, 0.28vw + 1.19rem, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.19em;
}

.top-concept .top-heading {
  font-size: clamp(3.2rem, 1.5vw + 2.64rem, 4.8rem);
}

.top-concept .top-heading span {
  display: inline-block;
  margin-left: 1rem;
}

/*  ----------------------------------------------------------
news 
----------------------------------------------------------  */

.CMS-NEWS-INDEX {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 6rem;
}

.CMS-NEWS-INDEX::after {
  content: "";
  display: block;
  width: 32%;
}

.page-news .CMS-NEWS-INDEX {
  margin-bottom: 4rem;
  padding-bottom: 8rem;
  position: relative;
}

.CMS-NEWS-ITEM {
  width: 32%;
}

.page-news .CMS-NEWS-ITEM {
  margin-bottom: 5rem;
}

.CMS-NEWS-THUMBNAIL {
  -o-object-fit: cover;
  aspect-ratio: 320/200;
  margin-bottom: 2.5rem;
  object-fit: cover;
  width: 100%;
}

.CMS-NEWS-TIME {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
}

.page-news .CMS-NEWS-TIME {
  letter-spacing: 0.1em;
}

.CMS-NEWS-LINK {
  font-weight: 400;
  line-height: 1.53;
  width: 100%;
}

.CMS-NEWS-MORE-READ {
  background: var(--main);
  border: 2px solid var(--main);
  bottom: 0;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  left: 50%;
  padding: 2rem 0;
  position: absolute;
  text-align: center;
  transform: translate(-50%, 0);
  transition: all 0.3s;
  width: 28rem;
}

.CMS-NEWS-MORE-READ:hover {
  opacity: 0.7;
}

.top-news .CMS-NEWS-MORE-READ {
  display: none;
}

.CMS-NEWS-TITLE {
  border-bottom: solid 1px rgba(0, 0, 0, 0.4);
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 3rem;
  padding: 1rem 0 1.5rem 0;
  position: relative;
}

.CMS-NEWS-TITLE:after {
  border-bottom: solid 4px var(--main);
  bottom: -2px;
  content: " ";
  display: block;
  position: absolute;
  width: 25%;
}

.CMS-NEWS-CONTENT {
  color: #000;
}

.CMS-NEWS-CONTENT img {
  display: block;
  height: auto;
  margin: 4rem auto;
  width: 70%;
}

/*  ----------------------------------------------------------
instagram
----------------------------------------------------------  */

.CMS-INSTAGRAM-LIST {
  display: grid;
  gap: 1.5rem;
  grid-template: 1fr 1fr/1fr 1fr 1fr;
}

.CMS-INSTAGRAM-LIST > * img {
  -o-object-fit: cover;
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
}

.CMS-INSTAGRAM-LIST > *:nth-of-type(n+7) {
  display: none;
}

/*  ----------------------------------------------------------
scroll
----------------------------------------------------------  */

.scroll {
  bottom: 11rem;
  color: #fff;
  font-family: var(--ttl);
  font-size: 2rem;
  left: 4%;
  letter-spacing: 0.1em;
  line-height: 1;
  position: absolute;
  writing-mode: vertical-rl;
}

.scroll::after {
  background: #fff;
  content: "";
  display: block;
  height: 15rem;
  left: -1rem;
  position: absolute;
  top: 0;
  width: 1px;
}

/*=============== fixed-btn ===========*/

.fixed-btn {
  background: var(--sub);
  border-bottom-left-radius: 2rem;
  border-top-left-radius: 2rem;
  color: #fff;
  padding: 1rem 0.2rem;
  position: relative;
}

.fixed-btn img {
  display: block;
  height: auto;
  margin: 0 auto 0.8rem;
  width: 3rem;
}

.fixed-btn__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
}

.fixed-btn__inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}

.fixed-btn--1 span:first-of-type {
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.fixed-btn--1 span:last-of-type {
  display: block;
  display: flex;
  font-size: 2rem;
  gap: 0.6rem;
  letter-spacing: 0.1em;
  line-height: 1;
  position: relative;
  text-orientation: sideways;
  writing-mode: vertical-rl;
}

.fixed-btn--1 span:last-of-type::before {
  aspect-ratio: 1/1;
  background: url(../img/icn-tel.png) no-repeat center/contain;
  content: "";
  display: inline-block;
  position: relative;
  width: 2.3rem;
}

.fixed-btn--2 span:first-of-type {
  align-items: center;
  display: flex;
  font-size: 1.2rem;
  letter-spacing: 0.28em;
  line-height: 1;
  margin-left: 0.5rem;
  position: relative;
  text-orientation: sideways;
  writing-mode: vertical-rl;
}

.fixed-btn--2 span:first-of-type::after {
  background: #fff;
  content: "";
  display: inline-block;
  height: 7rem;
  margin-top: 1rem;
  position: relative;
  width: 1px;
}

.fixed-btn--2 span:last-of-type {
  font-size: 1.8rem;
  letter-spacing: 0.07em;
  line-height: 1;
  writing-mode: vertical-rl;
}

/*  ----------------------------------------------------------
mainvisual
----------------------------------------------------------  */

.top-fv {
  background: url(../img/texture1.jpg) repeat center top/100% auto;
  height: 48vw;
  padding-top: 8rem;
  position: relative;
}

.top-fv::before {
  background: url(../img/mv_bg.jpg) repeat center top/100% auto;
  border-bottom-right-radius: 4rem;
  bottom: 0;
  content: "";
  display: block;
  height: 30vw;
  left: 0;
  position: absolute;
  width: 87%;
}

.top-fv_video {
  border-bottom-left-radius: 4rem;
  border-top-left-radius: 4rem;
  display: block;
  height: calc(48vw - 12rem);
  margin: 0 0 0 auto;
  overflow: hidden;
  pointer-events: none;
  position: relative;
  width: 87%;
  z-index: 10;
}

.top-fv_video iframe {
  aspect-ratio: 16/9;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

/*=============== top-news ===========*/

.top-news {
  background: url(../img/texture1.jpg) repeat center top/100% auto;
  padding: 12rem 0 12rem;
}

.top-news_body {
  margin: 5.5rem auto 4rem;
  max-width: 101rem;
}

/*=============== top-concept ===========*/

.top-concept {
  background: var(--bg);
  padding: 14rem 0 11rem;
  position: relative;
  z-index: 5;
}

.top-concept::before {
  aspect-ratio: 461/612;
  background: url(../img/concept_deco1.png) no-repeat center center/contain;
  content: "";
  display: block;
  left: 5%;
  position: absolute;
  top: 0;
  transform: translateY(-30%);
  width: min(15%, 22rem);
}

.top-concept::after {
  aspect-ratio: 329/701;
  background: url(../img/concept_deco2.png) no-repeat center center/contain;
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  right: 1%;
  transform: translateY(23%);
  width: min(11%, 16rem);
}

.top-concept_img {
  margin-bottom: 8rem;
  width: 100%;
}

.top-concept_img img {
  border-radius: 4rem;
}

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

.top-concept_head {
  width: 30%;
}

.top-concept_body {
  width: 63%;
}

.top-concept_ttl {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1;
  margin-bottom: 2.5rem;
}

.top-concept_txt {
  letter-spacing: 0.15em;
  line-height: 1.8;
}

.top-concept .more {
  margin: 8rem auto 0 0;
}

/*=============== top-menu ===========*/

.top-menu {
  background: url(../img/texture1.jpg) repeat center top/100% auto;
  padding: 15rem 0 16rem;
  position: relative;
}

.top-menu::before {
  aspect-ratio: 386/532;
  background: url(../img/menu_deco1.png) no-repeat center center/contain;
  content: "";
  display: block;
  left: 8%;
  position: absolute;
  top: 0;
  transform: translateY(-7%);
  width: min(13%, 19rem);
}

.top-menu::after {
  aspect-ratio: 1108/754;
  background: url(../img/menu_deco2.png) no-repeat center center/contain;
  content: "";
  display: block;
  position: absolute;
  right: -1.5rem;
  top: 0;
  transform: translateY(-25%);
  width: min(38.5%, 56rem);
  z-index: 10;
}

.top-menu_slider {
  margin-top: 12rem;
  padding: 0 2.5rem;
}

.top-menu_slide {
  display: flex;
  justify-content: space-between;
  padding-bottom: 2rem;
}

.top-menu_body {
  padding-top: 1.5rem;
  width: 35%;
}

.top-menu_img {
  position: relative;
  width: 60%;
}

.top-menu_img img {
  border-radius: 2rem;
}

.top-menu_img::after {
  aspect-ratio: 1264/784;
  background: url(../img/slide_deco1.png) no-repeat center center/contain;
  content: "";
  display: block;
  left: 1rem;
  position: absolute;
  top: 1rem;
  width: 100%;
}

.top-menu_ttl {
  font-size: 2rem;
  letter-spacing: 0.19em;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.top-menu_txt {
  letter-spacing: 0.15em;
  line-height: 1.75;
}

.top-menu .more {
  margin: 3rem auto 0 0;
}

.top-menu_thumb {
  margin: 1rem auto 0 0;
  padding: 2rem;
  width: 60%;
}

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

.top-menu_btn {
  opacity: 0.5;
  position: relative;
  transition: opacity 0.5s;
  width: 12rem !important;
}

.top-menu_btn img {
  border-radius: 50%;
}

.top-menu_btn.swiper-slide-thumb-active {
  opacity: 1;
}

.top-menu_btn::after {
  aspect-ratio: 1/1;
  background: url(../img/slide_deco2.png) no-repeat center center/contain;
  content: "";
  display: block;
  left: -1rem;
  position: absolute;
  top: -1rem;
  width: calc(100% + 2rem);
}

.top-menu_slidearea {
  position: relative;
}

.top-menu .swiper-button-prev {
  left: -7rem;
}

.top-menu .swiper-button-next {
  right: -7rem;
}

.top-menu .swiper-button-next,
.top-menu .swiper-button-prev {
  height: 7.2rem;
  width: 7.2rem;
}

.top-menu .swiper-button-next::after,
.top-menu .swiper-button-prev::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
}

.top-menu .swiper-button-next::after {
  background: url(../img/arw-r.png) no-repeat center/contain;
}

.top-menu .swiper-button-prev::after {
  background: url(../img/arw-l.png) no-repeat center/contain;
}

/*=============== top-notice ===========*/

.top-notice {
  margin-top: 10.5rem;
}

.top-notice_box {
  align-items: stretch;
  display: flex;
  position: relative;
  z-index: 0;
}

.top-notice_box::after {
  aspect-ratio: 377/660;
  background: url(../img/tea_deco.png) no-repeat center center/contain;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, -43%);
  width: min(17%, 25rem);
  z-index: -5;
}

.top-notice_body {
  background: url(../img/tea_bg.jpg) repeat center top/100% auto;
  padding: 6rem 0 0;
  width: 48.5%;
}

.top-notice_img {
  width: 51.5%;
}

.top-notice_ttl {
  font-size: 2.4rem;
  font-size: clamp(2rem, 0.38vw + 1.86rem, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.13em;
  margin-bottom: 2rem;
  text-align: center;
}

.top-notice_ttl span {
  display: inline-block;
}

.top-notice_txt {
  letter-spacing: 0.2em;
  line-height: 1.5;
  margin-bottom: 4rem;
  text-align: center;
}

.top-notice_tel {
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
  letter-spacing: 0.09em;
  margin: 0 auto 3rem;
  padding: 0.4rem 0;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
}

.top-notice_tel span {
  background: url(../img/icn-tel-b.png) no-repeat left center/2.3rem auto;
  margin-left: 1rem;
  padding-left: 3rem;
}

.top-notice_tel span a {
  font-size: 2.4rem;
  letter-spacing: 0.11em;
}

.top-notice_sm {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-align: center;
}

.top-notice_sm span {
  display: inline-block;
}

/*=============== top-intro ===========*/

.top-intro {
  background-color: var(--bg);
  background-image: url(../img/dog_deco1.png), url(../img/dog_deco2.png);
  background-position: left top 6rem, right bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 14.5% auto, 13.5% auto;
  padding: 13rem 0 14rem;
}

.top-intro_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 4.5%;
  justify-content: center;
  margin-top: 8rem;
}

.top-intro_wrap li {
  padding-top: 11rem;
  width: max(32rem, 30.3%);
}

.top-intro_box {
  aspect-ratio: 332/326;
  border: 3px solid #000;
  padding-top: 11.5rem;
  position: relative;
}

.top-intro_box::after {
  aspect-ratio: 624/613;
  background: url(../img/intro_line.png) no-repeat center center/contain;
  content: "";
  display: block;
  left: 1rem;
  position: absolute;
  top: 1rem;
  width: 94%;
}

.top-intro_img {
  border: 4px solid #000;
  border-radius: 50%;
  height: 20rem;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
  width: 20rem;
  z-index: 5;
}

.top-intro_name {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  padding-bottom: 1.1rem;
  position: relative;
  text-align: center;
}

.top-intro_name::after {
  background: #000;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 80%;
}

.top-intro_txt {
  line-height: 1.63;
  margin-top: 1.5rem;
  text-align: center;
}

/*=============== top-gallery ===========*/

.top-gallery {
  background: url(../img/gallery_bg.jpg) repeat center top/100% auto;
  padding: 11.5rem 0 12.5rem;
}

.top-gallery .top-heading {
  color: #fff;
}

.top-gallery .loopslider {
  height: 25.7rem;
  margin: 10rem 0 9.5rem;
}

.top-gallery .loopslider .swiper-wrapper {
  transition-timing-function: linear;
}

.top-gallery .loopslider .swiper-slide {
  height: 100%;
  padding: 0 0.5rem;
  width: 31.1rem;
}

.top-gallery .loopslider .swiper-slide img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/*=============== top-access ===========*/

.top-access {
  background: url(../img/texture1.jpg) repeat center top/100% auto;
  padding: 13.5rem 0 0;
}

.top-access_wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 10rem 0 0;
  margin-left: calc(50% - 50vw);
  position: relative;
}

.top-access_img {
  width: 51.5%;
}

.top-access_img img {
  border-bottom-right-radius: 4rem;
  border-top-right-radius: 4rem;
}

.top-access_body {
  width: 43%;
}

.top-access_list {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
}

.top-access_list dt,
.top-access_list dd {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  padding: 2.5rem 0;
}

.top-access_list dt:last-of-type,
.top-access_list dd:last-of-type {
  border-bottom: none;
}

.top-access_list dt:first-of-type,
.top-access_list dd:first-of-type {
  padding-top: 0;
}

.top-access_list dt {
  padding-left: 1em;
  width: 30%;
}

.top-access_list dd {
  width: 70%;
}

.top-access_list dd span {
  display: inline-block;
}

.top-access .more {
  margin: 4rem auto 0 0;
}

.top-access_map {
  margin-top: 16rem;
}

.top-access_map iframe {
  height: 40rem;
  width: 100%;
}

/*=============== top-insta ===========*/

.top-insta {
  background-color: var(--bg);
  padding: 13rem 0 17rem;
}

.top-insta_wrap {
  margin: 10.5rem auto 0;
  max-width: 86rem;
  padding: 0 2rem;
  position: relative;
  z-index: 0;
}

.top-insta_wrap::before {
  aspect-ratio: 425/532;
  background: url(../img/insta_deco1.png) no-repeat center center/contain;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(90%, -60%);
  width: 24%;
  z-index: -5;
}

.top-insta_wrap::after {
  aspect-ratio: 406/654;
  background: url(../img/insta_deco2.png) no-repeat center center/contain;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  transform: translate(-92%, 30%);
  width: 24%;
  z-index: -5;
}

@media only screen and (max-width: 1400px) {
  /* Wider than xxl-size */
}

@media only screen and (max-width: 1200px) {
  /* Wider than xl-size */

  .gnav_menu li a span {
    display: block;
  }

  .top-concept::before {
    left: 3%;
  }

  .top-menu_body {
    padding-top: 0.5rem;
  }

  .top-menu_ttl {
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .top-menu .more {
    margin: 2rem auto 0 0;
  }

  .top-menu .swiper-button-prev {
    left: -5rem;
  }

  .top-menu .swiper-button-next {
    right: -4.5rem;
  }

  .top-insta_wrap::before {
    transform: translate(60%, -60%);
  }

  .top-insta_wrap::after {
    transform: translate(-82%, 30%);
  }
}

@media only screen and (max-width: 992px) {
  /* Wider than lg-size */

  .page-news .CMS-NEWS-ITEM {
    width: 48%;
  }
}

@media only screen and (max-width: 767px) {
  /* Wider than md-size */

  .header {
    height: 6rem;
  }

  .header_container {
    padding: 0 5%;
  }

  .header_logo {
    width: 12rem;
  }

  .gnav {
    background: url(../img/texture1.jpg) repeat center center/100% auto;
    height: 100%;
    left: 0;
    opacity: 0;
    padding: 0 4%;
    position: fixed;
    top: 0;
    transition: all 0.3s ease-out;
    visibility: hidden;
    width: 100%;
    z-index: 80;
  }

  .gnav.open {
    opacity: 1;
    visibility: visible;
  }

  .gnav_menu {
    flex-direction: column;
    gap: 2rem;
    height: 100%;
    width: 100%;
  }

  .gnav_menu li {
    width: 100%;
  }

  .gnav_menu li a {
    font-size: 1.8rem;
    width: 100%;
  }

  .gnav_menu li:last-of-type i {
    font-size: 3rem;
  }

  .navbtn {
    background: var(--main);
    cursor: pointer;
    display: block;
    height: 6rem;
    position: fixed;
    right: 0;
    top: 0;
    width: 6rem;
    z-index: 100;
  }

  .footer {
    padding: 5rem 0 6rem;
  }

  .footer_nav {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }

  .footer_nav li:last-of-type a {
    font-size: 3rem;
  }

  .footer_logo {
    margin: 3rem auto;
    width: 12rem;
  }

  .top-container {
    padding: 0;
  }

  .preparation {
    font-size: 2.4rem;
  }

  .top-concept .top-heading span {
    display: block;
    margin-left: 0;
  }

  .CMS-NEWS-INDEX {
    margin-bottom: 2rem;
  }

  .top .CMS-NEWS-ITEM {
    margin: 0 auto 3rem;
    max-width: 50rem;
    width: 100%;
  }

  .CMS-NEWS-CONTENT img {
    width: 100%;
  }

  .scroll {
    bottom: 6rem;
    font-size: 1.2rem;
    left: 6%;
  }

  .scroll::after {
    height: 10rem;
    left: -0.3rem;
  }

  .fixed-btn {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    display: flex;
    justify-content: center;
    padding: 0.5rem;
    width: 50%;
  }

  .fixed-btn a {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
  }

  .fixed-btn img {
    margin: 0;
    width: 2.5rem;
  }

  .fixed-btn__wrapper {
    bottom: 0;
    flex-direction: row;
    gap: 0;
    left: 0;
    top: auto;
    transform: none;
    width: 100%;
  }

  .fixed-btn__inner {
    flex-direction: column;
  }

  .fixed-btn--1 {
    border-right: 1px solid #fff;
  }

  .fixed-btn--1 span:first-of-type {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    text-align: center;
    writing-mode: horizontal-tb;
  }

  .fixed-btn--1 span:last-of-type {
    font-size: 2rem;
    letter-spacing: 0.05em;
    text-decoration: underline;
    writing-mode: horizontal-tb;
  }

  .fixed-btn--2 span:first-of-type {
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    margin-left: 0;
    text-orientation: initial;
    writing-mode: horizontal-tb;
  }

  .fixed-btn--2 span:first-of-type::after {
    height: 1px;
    margin-left: 0.5rem;
    margin-top: 0;
    width: 5rem;
  }

  .fixed-btn--2 span:last-of-type {
    font-size: 1.7rem;
    letter-spacing: 0em;
    text-orientation: initial;
    writing-mode: horizontal-tb;
  }

  .top-fv {
    height: min(65vw + 6rem, 50rem);
    padding-top: 6rem;
  }

  .top-fv::before {
    background-size: 200% auto;
    border-bottom-right-radius: 2rem;
    height: 70%;
  }

  .top-fv_video {
    border-bottom-left-radius: 2rem;
    border-top-left-radius: 2rem;
    height: min(65vw - 3rem, 40rem);
  }

  .top-fv_video iframe {
    width: 130%;
  }

  .top-news {
    padding: 6rem 0;
  }

  .top-news_body {
    margin: 3rem 0 0rem;
  }

  .top-concept {
    padding: 6rem 0;
  }

  .top-concept::before {
    left: 1%;
    transform: translateY(-50%);
    width: min(20%, 18rem);
  }

  .top-concept::after {
    width: min(15%, 14rem);
  }

  .top-concept_img img {
    border-radius: 2rem;
  }

  .top-concept_img {
    margin: 0 auto 5rem;
    max-width: 50rem;
  }

  .top-concept_wrap {
    flex-direction: column;
    gap: 3rem;
  }

  .top-concept_head {
    width: 100%;
  }

  .top-concept_body {
    width: 100%;
  }

  .top-concept_ttl {
    line-height: 1.5;
    margin-bottom: 2rem;
  }

  .top-concept_txt {
    border-right: none;
    letter-spacing: 0.1em;
    line-height: 1.8;
  }

  .top-concept .more {
    margin: 4rem auto 0;
  }

  .top-menu {
    padding: 8rem 0 6rem;
  }

  .top-menu::before {
    transform: translateY(-20%);
    width: min(20%, 13rem);
  }

  .top-menu::after {
    width: min(40%, 38rem);
  }

  .top-menu_slider {
    margin-top: 5rem;
    padding: 0 1rem;
  }

  .top-menu_body {
    margin-top: 3rem;
    padding-top: 0;
    width: 100%;
  }

  .top-menu_img {
    width: 100%;
  }

  .top-menu_ttl {
    margin-bottom: 2rem;
  }

  .top-menu_txt {
    letter-spacing: 0.1em;
  }

  .top-menu .more {
    margin: 3rem auto 0;
  }

  .top-menu_thumb {
    margin: 1rem 0 0 0;
    width: 100%;
  }

  .top-menu_btn {
    width: 20% !important;
  }

  .top-menu .swiper-button-prev {
    left: -3%;
  }

  .top-menu .swiper-button-next {
    right: -3%;
  }

  .top-menu .swiper-button-next,
  .top-menu .swiper-button-prev {
    height: 4rem;
    width: 4rem;
  }

  .top-notice {
    margin-top: 6rem;
  }

  .top-notice_box {
    flex-direction: column;
    margin: 0 auto;
    max-width: 50rem;
  }

  .top-notice_box::after {
    transform: translate(20%, -30%);
    width: min(20%, 20rem);
    z-index: 5;
  }

  .top-notice_body {
    padding: 4rem 2rem;
    width: 100%;
  }

  .top-notice_img {
    width: 100%;
  }

  .top-notice_txt {
    margin-bottom: 2rem;
  }

  .top-notice_tel {
    padding: 1rem 2rem;
  }

  .top-notice_tel span {
    display: block;
  }

  .top-intro {
    background-position: left top 2rem, right bottom;
    background-size: 23% auto, 21.4% auto;
    padding: 6rem 0;
  }

  .top-intro_wrap {
    margin-top: 5rem;
  }

  .top-gallery {
    padding: 6rem 0;
  }

  .top-gallery .loopslider {
    height: 16.5rem;
    margin: 4rem 0 5rem;
  }

  .top-gallery .loopslider .swiper-slide {
    width: 20rem;
  }

  .top-access {
    padding: 6rem 0 0;
  }

  .top-access_wrap {
    flex-direction: column;
    gap: 4rem;
    justify-content: center;
    margin: 3rem 0 0;
  }

  .top-access_img img {
    border-radius: 2rem;
  }

  .top-access_img {
    width: 100%;
  }

  .top-access_body {
    margin: 0 auto;
    max-width: 50rem;
    width: 100%;
  }

  .top-access_list dt {
    border-bottom: none;
    font-weight: 700;
    padding: 1.2rem 0 0;
    position: relative;
    width: 100%;
  }

  .top-access_list dt:before {
    content: "◆";
    margin-right: 0.5em;
  }

  .top-access_list dd {
    padding: 0 0 1.2rem 0;
    width: 100%;
  }

  .top-access .more {
    margin: 3rem auto 0;
  }

  .top-access_map {
    margin-top: 5rem;
  }

  .top-access_map iframe {
    height: 25rem;
  }

  .top-insta {
    padding: 8rem 0;
  }

  .top-insta_wrap {
    margin: 4rem auto 0;
    padding: 0 5%;
  }

  .top-insta_wrap::before {
    transform: translate(0%, -60%);
  }

  .top-insta_wrap::after {
    transform: translate(0%, 60%);
  }
}

@media only screen and (max-width: 575px) {
  /* Wider than sm-size */

  .page-news .CMS-NEWS-ITEM {
    width: 100%;
  }

  .page-news .CMS-NEWS-ITEM:last-of-type {
    margin-bottom: 5rem;
  }
}