@charset "UTF-8";

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

.header {
  position: absolute;
  top: 1.5rem;
  width: 100%;
  z-index: 50;
}

.top .header {
  height: 47vw;
  top: 0;
  width: 21.5%;
}

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

.top .header_container {
  flex-direction: column;
  gap: 7rem;
  justify-content: flex-start;
  padding: 5rem 0 0 0;
  width: 100%;
}

.header_logo a {
  display: block;
}

.header_logo {
  width: 23rem;
}

.top .header_logo {
  width: 100%;
}

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

.gnav {
  position: relative;
}

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

body[class*=page] .gnav_menu {
  background: #fff;
  padding: 0 1em;
}

.top .gnav_menu {
  align-items: flex-start;
  flex-direction: column;
  gap: 2.5rem;
  width: -moz-max-content;
  width: max-content;
}

.gnav_menu li a {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.33em;
  position: relative;
  text-align: center;
}

.gnav_menu li a::first-letter {
  color: var(--main);
}

body[class*=page] .gnav_menu li a {
  letter-spacing: 0.2em;
}

.gnav_menu li:last-of-type img {
  display: block;
  margin-left: 1.5em;
  width: 2.8rem;
}

/*=============== 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: url(../img/texture1.jpg) repeat center top/100% auto;
  padding: 5.5rem 0 2rem;
}

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

.footer_nav li a {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  position: relative;
  width: 100%;
}

.footer_nav li a::first-letter {
  color: var(--main);
}

.footer_nav li:last-of-type img {
  display: block;
  width: 3rem;
}

.footer_logo {
  height: auto;
  margin: 5rem auto;
  width: 32rem;
}

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

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

.top-container {
  margin: 0 auto;
  max-width: 116rem;
  padding: 0 3rem;
}

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

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

.more {
  height: 4.8rem;
  margin-inline: auto;
  width: 20rem;
}

.more a {
  background: var(--sub);
  color: #fff;
  display: block;
  height: 100%;
  letter-spacing: 0.34em;
  line-height: 4.8rem;
  position: relative;
  text-align: center;
  width: 100%;
}

.more a::after {
  border: 1px solid #fff;
  content: "";
  display: block;
  height: calc(100% - 6px);
  left: 2px;
  position: absolute;
  top: 2px;
  width: calc(100% - 6px);
}

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

.top-heading {
  font-family: var(--ttl);
  font-size: clamp(3rem, 0.94vw + 2.65rem, 4rem);
  font-weight: 400;
  letter-spacing: 0.125em;
  line-height: 1;
  text-align: center;
}

.top-heading span {
  color: var(--main);
  display: block;
  font-family: var(--plus);
  font-size: clamp(1.4rem, 0.38vw + 1.26rem, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/*  ----------------------------------------------------------
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: 3rem;
  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-family: inherit;
  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: 2rem 1.5rem;
  grid-template: 1fr 1fr/1fr 1fr 1fr;
}

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

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

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

.fixed-btn {
  color: #fff;
  padding: 1rem 0.2rem;
  position: relative;
}

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

.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 {
  background: var(--sub);
}

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

.fixed-btn--1 span:last-of-type {
  display: block;
  display: flex;
  font-size: 2.2rem;
  font-weight: 700;
  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 {
  background: var(--main);
}

.fixed-btn--2 span:first-of-type {
  align-items: center;
  display: flex;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.36em;
  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: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-orientation: upright;
  writing-mode: vertical-rl;
}

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

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

.top-fv .swiper-pagination {
  bottom: 1rem;
  padding-right: 7rem;
  text-align: right;
}

.top-fv .swiper-pagination-bullet {
  background-color: #000;
  height: 10px;
  margin: 0 10px !important;
  opacity: 1;
  transition: 0.3s ease-in-out;
  width: 10px;
}

.top-fv .swiper-pagination-bullet-active {
  background-color: var(--sub);
}

.top-kv {
  height: 45vw;
  margin: 0 0 0 auto;
  overflow: hidden;
  position: relative;
  width: 78.5%;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.top-kv .swiper-slide-active img,
.top-kv .swiper-slide-duplicate-active img,
.top-kv .swiper-slide-prev img {
  animation: zoomOut 8s linear normal both;
}

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

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

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

.top-news_body {
  margin: 6rem auto 6.5rem;
  max-width: 101rem;
}

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

.top-concept {
  background: url(../img/texture1.jpg) repeat center top/100% auto;
}

.top-concept_bg {
  background: url(../img/texture2.jpg) repeat center/100% auto;
  clip-path: polygon(0 11%, 100% 0, 100% 89%, 0 100%);
  position: relative;
}

.top-concept_body {
  margin: 0 0 0 auto;
  padding: 15rem 0 22.5rem;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  z-index: 5;
}

.top-concept_wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 3rem;
  justify-content: center;
}

.top-concept_ttl {
  color: #fff;
  font-family: var(--ttl);
  font-size: clamp(2.4rem, 0.38vw + 2.26rem, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.88;
  writing-mode: vertical-rl;
}

.top-concept_txt {
  color: #fff;
  font-size: clamp(1.6rem, 0.19vw + 1.53rem, 1.8rem);
  letter-spacing: 0.22em;
  line-height: 2.11;
  writing-mode: vertical-rl;
}

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

.top-concept_img {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 75%;
}

.top-concept_img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

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

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

.top-menu_deco {
  position: absolute;
  top: -16rem;
  right: 2%;
  width: 40%;
  z-index: 0;      
}

.top-menu_deco img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .top-menu_deco {
    width: 40%;
    right: 2%;
    top: -10rem;
  }
}

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

.top-menu_wrap:nth-of-type(2) {
  flex-direction: row-reverse;
  margin-top: 13.5rem;
}

.top-menu_wrap:nth-of-type(3) {
  margin: 8rem 0 7.5rem;
}

.top-menu_wrap:nth-of-type(4) {
  align-items: flex-start;
}

.top-menu_body {
  background-image: repeating-linear-gradient(90deg, #000000, #000000 10px, transparent 10px, transparent 20px), repeating-linear-gradient(180deg, #000000, #000000 10px, transparent 10px, transparent 20px), repeating-linear-gradient(90deg, #000000, #000000 10px, transparent 10px, transparent 20px), repeating-linear-gradient(180deg, #000000, #000000 10px, transparent 10px, transparent 20px);
  background-position: left top, right top, left bottom, left top;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-size: 100% 3px, 3px 100%, 100% 3px, 3px 100%;
  padding: 3.5rem 4rem;
  width: 40%;
}

.top-menu_img {
  width: 54.5%;
}

.top-menu_ttl {
  font-family: var(--ttl);
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: 0.065em;
  line-height: 1.33;
  margin-bottom: 1rem;
  text-align: center;
}

.top-menu_txt {
  letter-spacing: 0.1em;
  line-height: 2;
  margin-bottom: 4rem;
}

.top-menu_inner {
  display: flex;
  flex-direction: column-reverse;
  gap: 4.5rem;
  width: 47.5%;
}

.top-menu_inner .top-menu_img {
  width: 100%;
}

.top-menu_inner .top-menu_body {
  width: 100%;
}

.top-menu_inner .top-menu_txt {
  margin-bottom: 3rem;
}

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

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

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

.top-gallery .loopslider {
  height: 20rem;
  margin: 8.5rem 0;
  overflow: hidden;
}

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

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

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

/*=============== top-yoyaku ===========*/

.top-yoyaku {
  background-image: url(../img/reserve_deco1.png), url(../img/reserve_deco2.png), url(../img/texture1.jpg);
  background-position: top 9rem left calc(50vw - 52%), top 12rem right calc(50vw - 57%), center top;
  background-repeat: no-repeat, no-repeat, repeat;
  background-size: 25rem auto, 30rem auto, 100% auto;
  padding: 11.5rem 0 14.5rem;
}

.top-yoyaku_txt {
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.66;
  margin: 5rem 0 5rem;
  text-align: center;
}

.top-yoyaku_txt span {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-top: 1.5rem;
}

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

.top-access {
  background: url(../img/access_bg.jpg) no-repeat center center/cover;
  padding: 9.5rem 0 10.5rem;
}

.top-access_body {
  background: url(../img/texture1.jpg) no-repeat right center/cover;
  margin: 0 -8rem 0 auto;
  padding: 8.5rem 7rem 7rem;
  width: 65.5rem;
}

.top-access_body::before {
  background-image: repeating-linear-gradient(90deg, #000000, #000000 10px, transparent 10px, transparent 20px), repeating-linear-gradient(180deg, #000000, #000000 10px, transparent 10px, transparent 20px), repeating-linear-gradient(90deg, #000000, #000000 10px, transparent 10px, transparent 20px), repeating-linear-gradient(180deg, #000000, #000000 10px, transparent 10px, transparent 20px);
  background-position: left top, right top, left bottom, left top;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-size: 100% 3px, 3px 100%, 100% 3px, 3px 100%;
  content: "";
  display: block;
  height: calc(100% - 3rem);
  left: 1.2rem;
  position: absolute;
  top: 1.5rem;
  width: calc(100% - 2.4rem);
}

.top-access_list {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  margin: 3.5rem 0 4rem;
}

.top-access_list dt,
.top-access_list dd {
  border-bottom: 1px solid #2b2b2b;
  letter-spacing: 0.05em;
  line-height: 1.53;
  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 {
  padding-left: 1em;
  width: 25%;
}

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

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

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

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

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

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

.top-insta_wrap {
  margin: 8rem auto 0;
  max-width: 91rem;
  padding: 0 2rem;
}

/*=============== top-recruit ===========*/

.top-recruit {
  background: url(../img/recruit_bg.jpg) no-repeat center center/cover;
  padding: 12rem 0 13rem;
}

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

.top-recruit_txt {
  color: #fff;
  line-height: 1.53;
  margin: 4.5rem 0 6rem;
  text-align: center;
}

/*=============== page-menu_list ===========*/

.page-menu_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  row-gap: 3rem;
}

.page-menu_list li {
  width: 48%;
}

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

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

  .top-yoyaku {
    background-position: top 9rem left 3rem, top 12rem right 2rem, center top;
  }

  .top-access_body {
    margin: 0 0 0 auto;
  }
}

@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 */

  .top .header {
    height: auto;
    width: 100%;
  }

  .header {
    top: 0;
  }

  .header_container {
    padding: 0;
  }

  .top .header_container {
    flex-direction: initial;
    gap: initial;
    padding: 0;
  }

  .header_logo {
    width: 19rem;
  }

  .top .header_logo {
    width: 19rem;
  }

  .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%;
  }

  body[class*=page] .gnav_menu {
    background: none;
    padding: 0;
  }

  .top .gnav_menu {
    align-items: center;
    gap: 2rem;
    width: 100%;
  }

  .gnav_menu li {
    width: 100%;
  }

  .gnav_menu li a {
    width: 100%;
  }

  .gnav_menu li:last-of-type img {
    margin: 0 auto;
  }

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

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

  .footer_nav {
    flex-direction: column;
    gap: 2rem;
  }

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

  .top-container {
    margin: 0 5%;
    padding: 0;
  }

  .preparation {
    font-size: 2.4rem;
  }

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

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

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

  .CMS-INSTAGRAM-LIST {
    gap: 1rem;
  }

  .fixed-btn {
    border: none;
    display: flex;
    justify-content: center;
    padding: 0.5rem;
    width: 100%;
  }

  .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 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 {
    border-left: 1px solid #fff;
  }

  .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: 35rem;
  }

  .top-fv .swiper-pagination {
    bottom: 0;
    padding-right: 2rem;
  }

  .top-kv {
    height: 32rem;
    width: 100%;
  }

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

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

  .top-concept_bg {
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  }

  .top-concept_body {
    margin: 0;
    padding: 8rem 0 2rem;
    width: 100%;
  }

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

  .top-concept_ttl {
    line-height: 1.5;
    text-align: center;
    writing-mode: horizontal-tb;
  }

  .top-concept_txt {
    letter-spacing: 0.05em;
    line-height: 1.8;
    writing-mode: horizontal-tb;
  }

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

  .top-concept_img {
    display: block;
    margin: 0 calc(50% - 50vw);
    position: static;
    width: auto;
  }

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

  .top-menu_wrap {
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .top-menu_wrap:nth-of-type(2) {
    flex-direction: column-reverse;
    margin-top: 4rem;
  }

  .top-menu_wrap:nth-of-type(3) {
    margin: 5rem 0;
  }

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

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

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

  .top-menu_txt {
    letter-spacing: 0.1em;
    line-height: 1.8;
    margin-bottom: 3rem;
  }

  .top-menu_inner {
    gap: 2rem;
    width: 100%;
  }

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

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

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

  .top-yoyaku {
    background-position: top 2rem left calc(50% - 13rem), top 4rem right calc(50% - 13rem), center top;
    background-size: 11.5rem auto, 14rem auto, 100% auto;
    padding: 6rem 0;
  }

  .top-yoyaku_txt {
    margin: 3rem 0 2rem;
    text-align: left;
  }

  .top-yoyaku_txt span {
    font-size: 1.4rem;
  }

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

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

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

  .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_map iframe {
    height: 25rem;
  }

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

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

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

  .top-recruit_txt {
    margin: 3rem 0 4rem;
  }

  .page-menu_list {
    flex-direction: column;
  }

  .page-menu_list li {
    width: 100%;
  }
}

@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;
  }
}