/*  ----------------------------------------------------------
header
----------------------------------------------------------  */

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

.header {
  height: 12rem;
  padding: 2rem 3%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 20;
}

.header::after {
  background: url(../img/texture2.jpg) repeat center top/100% auto;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: calc(100% - 11rem);
  z-index: 0;
}

.header_logo {
  position: relative;
  width: 15rem;
  z-index: 5;
}

.header button {
  border: 0;
}

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

.gnav {
  background: url(../img/texture1.jpg) repeat center top/100% auto;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s linear;
  width: 35rem;
  z-index: 30;
}

.gnav.open {
  opacity: 1;
  pointer-events: auto;
}

.gnav_logo {
  aspect-ratio: 5/3;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  margin-bottom: 3rem;
  padding: 6rem 0 0 4rem;
  width: 100%;
}

.gnav_logo a {
  display: block;
  width: 18rem;
}

.gnav_menu {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-left: 4rem;
}

.gnav_menu li {
  font-family: var(--eng);
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  letter-spacing: 0;
  position: relative;
}

.gnav_menu li span {
  font-family: var(--noto);
  font-size: 1.4rem;
  margin-left: 2rem;
}

.gnav_menu li:last-of-type a {
  font-size: 3.5rem;
}

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

.navbtn {
  align-items: center;
  aspect-ratio: 13/10;
  background: var(--red);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.5rem 0 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 11rem;
  z-index: 50;
}

.navbtn_line {
  background-color: #000;
  height: 2px;
  transition: all 0.3s ease;
  width: 6rem;
}

.navbtn_line.middle {
  transform: translate(1rem, 1.3rem);
  width: 3.6rem;
}

.navbtn_line.bottom {
  transform: translateY(2.6rem);
}

.navbtn_txt {
  bottom: 1rem;
  font-size: 1.4rem;
  opacity: 1;
  position: absolute;
  transition: all 0.3s ease;
}

.navbtn.active .navbtn_txt {
  opacity: 0;
}

.navbtn.active .top {
  background: #fff;
  transform: translateY(1.7rem) rotate(30deg);
  width: 7rem;
}

.navbtn.active .middle {
  opacity: 0;
  transform: scaleX(0);
}

.navbtn.active .bottom {
  background: #fff;
  transform: translateY(1.3rem) rotate(-30deg);
  width: 7rem;
}

/*=============== overlayer ===========*/

/*  ----------------------------------------------------------
hamburger
----------------------------------------------------------  */

.gnav-sp {
  -webkit-overflow-scrolling: touch;
  background: url(../img/texture1.jpg) repeat center center/100% auto;
  bottom: 0;
  display: block;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -9999;
}

.gnav-sp nav {
  width: 100%;
}

.gnav-sp .wrap {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}

.gnav-sp-menu li {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 2rem;
  text-align: center;
}

.gnav-sp-menu li a {
  display: block;
  padding: 1.2rem 0;
  white-space: nowrap;
}

.gnav-sp-menu li:last-of-type {
  font-size: 3rem;
}

/* toggle */

.toggle-btn {
  background: var(--org);
  cursor: pointer;
  display: block;
  height: 6rem;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.5s;
  width: 6rem;
  z-index: 100000;
}

.toggle-btn span {
  background-color: #fff;
  display: block;
  height: 0.2rem;
  left: 2rem;
  position: absolute;
  transition: all 0.4s;
  width: 2rem;
}

.toggle-btn span:nth-child(1) {
  top: 1.9rem;
}

.toggle-btn span:nth-child(2) {
  top: 2.7rem;
}

.toggle-btn span:nth-child(3) {
  top: 3.5rem;
}

/* open */

.open .gnav-sp {
  display: block;
  opacity: 1;
  top: 0;
  z-index: 99999;
}

.open .toggle-btn span:nth-child(1) {
  transform: translateY(0.8rem) rotate(-45deg);
}

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

.open .toggle-btn span:nth-child(3) {
  transform: translateY(-0.8rem) rotate(45deg);
}

/* mask */

#mask {
  display: none;
  transition: all 0.5s;
}

.open #mask {
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.8;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}

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

.footer {
  background: #fff;
  padding: 26rem 0 4rem;
  position: relative;
}

.footer::after {
  background: url(../img/texture2.jpg);
  clip-path: polygon(0 35%, 100% 0, 100% 100%, 0 100%);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.footer::before {
  background-color: var(--red);
  bottom: 0;
  clip-path: polygon(0 4rem, 100% 42%, 0 100%);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
}

.footer_wrap {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}

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

.footer_nav li a {
  color: #fff;
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1;
  line-height: 1;
  text-align: center;
  width: 100%;
}

.footer_nav li a span {
  color: #c9c9c9;
  display: block;
  font-family: var(--eng);
  margin-top: 1rem;
}

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

.footer_logo {
  height: auto;
  width: 16rem;
}

.footer_copyright {
  color: #fff;
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin-top: 8rem;
  position: relative;
  text-align: center;
  z-index: 5;
}

main {
  overflow: hidden;
}

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

.top-wrap {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.top-wrap.ycenter {
  align-items: center;
}

.top-wrap.xcenter {
  justify-content: center;
}

.top-wrap.rev {
  flex-direction: row-reverse;
}

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

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

.more {
  margin-left: auto;
  margin-right: auto;
  width: -moz-max-content;
  width: max-content;
}

.more a {
  align-items: center;
  display: flex;
  font-family: var(--eng);
  font-size: 1.8rem;
  font-weight: 700;
  gap: 1rem;
  justify-content: center;
}

.more a::after {
  aspect-ratio: 261/225;
  background: url(../img/more-red.png) no-repeat center center/contain;
  content: "";
  display: block;
  margin-bottom: 0.5rem;
  position: relative;
  width: 15rem;
}

.more-wht a {
  color: #fff;
}

.more-wht a::after {
  background-image: url(../img/more-wht.png);
}

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

.top-heading {
  color: var(--brw);
  font-family: var(--ttl);
  font-size: 6.5rem;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 1;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
}

.top-heading span {
  color: var(--bk);
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 0.8rem;
}

/*  ----------------------------------------------------------
loop slider 
----------------------------------------------------------  */

#loopslider {
  height: 220px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  text-align: left;
  width: 100%;
}

#loopslider ul {
  display: inline-block;
  height: 220px;
  margin: 0 !important;
  overflow: hidden;
  padding: 0 !important;
}

#loopslider ul:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

#loopslider ul li {
  display: inline;
  float: left;
  height: 220px;
  overflow: hidden;
  width: 361px;
}

#loopslider ul img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  padding: 0 5px;
  width: 100%;
}

/*  ----------------------------------------------------------
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: 350/260;
  margin-bottom: 1.5rem;
  object-fit: cover;
  width: 100%;
}

.CMS-NEWS-TIME {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.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(--red);
  border: 2px solid var(--red);
  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.2);
  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(--brw);
  bottom: -2px;
  content: " ";
  display: block;
  position: absolute;
  width: 25%;
}

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

.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 {
  align-items: center;
  bottom: 15rem;
  color: #fff;
  display: flex;
  font-family: var(--eng);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0em;
  position: absolute;
  right: 3rem;
  writing-mode: vertical-rl;
  z-index: 10;
}

.scroll::after {
  animation: scroll infinite 2s;
  background: #fff;
  content: "";
  height: 10rem;
  margin-top: 1rem;
  width: 0.3rem;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/*  ----------------------------------------------------------
parallax
----------------------------------------------------------  */

.bg-parallax {
  height: 80rem;
  position: relative;
  width: 100%;
}

.bg-parallax::before {
  background: url(../img/parallax.jpg) no-repeat center;
  background-size: cover;
  content: "";
  display: block;
  height: 100vh;
  left: 0;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: -1;
}

.bg-parallax::after {
  aspect-ratio: 100/13;
  background: url(../img/texture1.jpg) no-repeat center bottom/100% auto;
  bottom: 0;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  content: "";
  display: block;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 5;
}

.bg-parallax_deco {
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
}

.bg-parallax_deco::before {
  aspect-ratio: 100/13;
  background: url(../img/texture1.jpg) no-repeat center bottom/100% auto;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.bg-parallax_deco::after {
  aspect-ratio: 100/13;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

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

.fixed-btn {
  padding: 1rem 0rem;
  position: relative;
}

.fixed-btn a {
  display: block;
}

.fixed-btn img:last-of-type {
  display: block;
  height: 3.5rem;
  width: 3.5rem;
}

.fixed-btn_icn {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

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

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

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

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

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

.fixed-btn--1 {
  background: var(--org);
}

.fixed-btn--1 img:first-of-type {
  display: block;
  width: 4.6rem;
}

.fixed-btn--2 {
  background: #e42021;
}

.fixed-btn--2 img:first-of-type {
  display: block;
  width: 6.7rem;
}

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

.top-kv {
  background: url(../img/lattice.png) no-repeat right bottom/44% auto;
  background-color: #fff;
  height: 55vw;
  position: relative;
}

.top-kv::after {
  background: #161616;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 70%);
  content: "";
  display: block;
  height: 90%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

#main {
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 90%);
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 5;
}

.zs-enabled .zs-slideshow .zs-bullets {
  display: flex;
  flex-direction: column;
  left: 1rem;
  top: 40%;
}

.zs-enabled .zs-slideshow .zs-bullets .zs-bullet {
  background-color: var(--gry);
  border-color: var(--gry);
  height: 8px;
  width: 8px;
}

.zs-enabled .zs-slideshow .zs-bullets .zs-bullet.active {
  background-color: var(--org);
  border-color: var(--org);
}

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

.top-news {
  background-color: #fff;
  margin-top: -5.5rem;
  padding: 0 0 10rem;
}

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

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

.top-concept {
  background-image: url(../img/lattice2.png), url(../img/concept_line.png), url(../img/concept_line.png), url(../img/texture1.jpg);
  background-position: left bottom, left 2rem top, right 2rem top, center top;
  background-repeat: no-repeat, repeat-y, repeat-y, repeat;
  background-size: 40% auto, 10rem auto, 10rem auto, 100% auto;
  padding: 10rem 0 20rem;
  position: relative;
}

.top-concept::before {
  background-color: #161616;
  bottom: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  content: "";
  display: block;
  height: 12%;
  left: 0;
  position: absolute;
  width: 100%;
}

.top-concept::after {
  background: url(../img/texture2.jpg) no-repeat center bottom/100% auto;
  bottom: 0;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  content: "";
  display: block;
  height: 12%;
  left: 0;
  position: absolute;
  width: 100%;
}

.top-concept_img {
  display: block;
  margin: 8rem auto 3.5rem;
  position: relative;
  width: 58rem;
}

.top-concept_img::before {
  aspect-ratio: 191/427;
  background: url(../img/concept_deco1.png) no-repeat center center/contain;
  content: "";
  display: block;
  left: -30%;
  position: absolute;
  top: -8rem;
  width: 11rem;
}

.top-concept_img::after {
  aspect-ratio: 199/375;
  background: url(../img/concept_deco2.png) no-repeat center center/contain;
  content: "";
  display: block;
  left: 110%;
  position: absolute;
  top: -8rem;
  width: 17rem;
}

.top-concept_ttl {
  font-size: 3.3rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.5;
  margin-bottom: 3.5rem;
  text-align: center;
}

.top-concept_txt {
  letter-spacing: 0.14em;
  line-height: 2.5;
  margin-bottom: 6rem;
  text-align: center;
}

.top-concept_body {
  position: relative;
}

.top-concept_body::before {
  aspect-ratio: 189/287;
  background: url(../img/concept_deco3.png) no-repeat center center/contain;
  bottom: 10rem;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  width: 11rem;
}

.top-concept_body::after {
  aspect-ratio: 184/88;
  background: url(../img/concept_deco4.png) no-repeat center center/contain;
  bottom: 3rem;
  content: "";
  display: block;
  position: absolute;
  right: 2%;
  width: 10rem;
}

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

.top-menu {
  background: url(../img/texture2.jpg) repeat center top/100% auto;
  margin-top: -2px;
  padding: 4rem 0 24rem;
  position: relative;
}

.top-menu::before {
  aspect-ratio: 100/13;
  background: url(../img/texture1.jpg) no-repeat center bottom/100% auto;
  bottom: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  content: "";
  display: block;
  left: 0;
  position: absolute;
  width: 100%;
}

.top-menu::after {
  aspect-ratio: 100/13;
  background: #fff;
  bottom: 0;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  content: "";
  display: block;
  left: 0;
  position: absolute;
  width: 100%;
}

.top-menu .top-heading {
  color: #fff;
  margin-bottom: 4rem;
  margin-left: 20rem;
}

.top-menu .top-heading span {
  color: #fff;
}

.top-menu_list {
  margin: 7rem 0 0;
}

.top-menu_item {
  align-items: flex-start;
  display: flex;
  position: relative;
}

.top-menu_item:nth-of-type(2) {
  flex-direction: row-reverse;
  margin: 7rem 0;
}

.top-menu_img {
  margin-right: -2rem;
  position: relative;
  width: 50%;
  z-index: 5;
}

.top-menu_item:nth-of-type(2) .top-menu_img {
  margin-left: -2rem;
  margin-right: 0;
  margin-top: 8rem;
}

.top-menu_ttl {
  bottom: -0.3em;
  color: #fff;
  font-family: var(--osw);
  font-size: 7rem;
  font-weight: 700;
  left: -0.8em;
  letter-spacing: 0.14em;
  position: absolute;
  writing-mode: vertical-rl;
}

.top-menu_item:nth-of-type(2) .top-menu_ttl {
  left: auto;
  right: -0.8em;
}

.top-menu_body {
  align-items: center;
  aspect-ratio: 50/32;
  background-color: #68491a;
  display: flex;
  margin-top: 8rem;
  padding: 0 4rem 0 8rem;
  position: relative;
  width: 50%;
}

.top-menu_item:nth-of-type(2) .top-menu_body {
  margin-top: 0;
  padding: 0 8rem 0 4rem;
}

.top-menu_txt {
  color: #fff;
}

.top-menu .more {
  margin-left: 0;
}

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

.top-gallery {
  background: #fff;
  margin-top: -2px;
  padding: 4rem 0 13rem;
  position: relative;
}

.top-gallery #loopslider {
  margin: 6rem 0 9.5rem;
}

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

.top-access {
  background: url(../img/texture1.jpg) repeat center top/100% auto;
  margin-top: -2px;
  padding-top: 2rem;
  position: relative;
}

.top-access_wrap {
  align-items: start;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-top: 5.5rem;
  position: relative;
}

.top-access_img {
  width: 48%;
}

.top-access_body {
  width: 47%;
}

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

.top-access_list dt,
.top-access_list dd {
  border-bottom: 1px solid var(--bk);
  font-weight: 400;
  padding: 2rem 0;
}

.top-access_list dt:first-of-type,
.top-access_list dd:first-of-type {
  border-top: 1px solid var(--bk);
}

.top-access_list dt {
  background: #574e3d;
  color: #fff;
  text-align: center;
  width: 20%;
}

.top-access_list dd {
  padding-left: 1em;
  width: 80%;
}

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

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

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

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

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

.top-insta {
  background: #fff;
  padding: 13rem 0 7rem;
}

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

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

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

  .top-concept_img::before {
    left: -25%;
  }

  .top-concept_img::after {
    left: 103%;
  }

  .top-concept_body::before {
    left: 5%;
  }

  .top-concept_body::after {
    right: 10%;
  }
}

@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 {
    align-items: center;
    background: url(../img/texture2.jpg) repeat center top/100% auto;
    display: flex;
    height: 6rem;
    padding: 0 3%;
  }

  .header::after {
    content: none;
  }

  .header_logo {
    width: 10rem;
  }

  .gnav {
    width: 100%;
  }

  .gnav_logo {
    aspect-ratio: auto;
    height: 10rem;
    padding: 2rem 0 0 3rem;
  }

  .gnav_logo a {
    width: 12rem;
  }

  .navbtn {
    width: 7.8rem;
  }

  .navbtn_line {
    width: 4.2rem;
  }

  .navbtn_line.middle {
    transform: translate(0.7rem, 0.9rem);
    width: 2.5rem;
  }

  .navbtn_line.bottom {
    transform: translateY(1.8rem);
  }

  .navbtn_txt {
    bottom: 0.2rem;
    font-size: 1.2rem;
  }

  .navbtn.active .top {
    transform: translateY(1.2rem) rotate(30deg);
    width: 5rem;
  }

  .navbtn.active .bottom {
    transform: translateY(0.92rem) rotate(-30deg);
    width: 5rem;
  }

  .footer {
    padding: 12rem 0 2rem;
  }

  .footer::after {
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
  }

  .footer::before {
    clip-path: polygon(0 2rem, 100% 35%, 0 100%);
  }

  .footer_wrap {
    align-items: center;
    flex-direction: column-reverse;
    gap: 3rem;
  }

  .footer_nav {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 1rem;
    padding-right: 0;
  }

  .footer_nav li a span {
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }

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

  .footer_logo {
    width: 12rem;
  }

  .footer_copyright {
    margin-top: 4rem;
  }

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

  .top-wrap {
    flex-direction: column;
  }

  .top-wrap.rev {
    flex-direction: column;
  }

  .top-wrap.mdrev {
    flex-direction: column-reverse;
  }

  .preparation {
    font-size: 2.4rem;
  }

  .more a {
    font-size: 1.6rem;
  }

  .more a::after {
    width: 10rem;
  }

  .top-heading {
    font-size: 4rem;
  }

  .top-heading span {
    font-size: 1.4rem;
    margin-top: 0.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%;
  }

  .scroll {
    display: none;
  }

  .bg-parallax {
    background-size: auto 100%;
    height: 30rem;
  }

  .fixed-btn {
    padding: 0.5rem 0;
    width: 50%;
  }

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

  .fixed-btn img:last-of-type {
    height: 3rem;
    margin: 0;
    width: 3rem;
  }

  .fixed-btn_icn {
    gap: 0.3rem;
    margin-bottom: 0;
  }

  .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 span:first-of-type {
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    margin-left: 0;
    text-orientation: initial;
    writing-mode: horizontal-tb;
  }

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

  .fixed-btn span:last-of-type {
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    writing-mode: horizontal-tb;
  }

  .top-kv {
    height: 44rem;
  }

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

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

  .top-concept {
    background-position: left bottom, left 0.3rem top, right 0.3rem top, center top;
    background-size: 40% auto, 2rem auto, 2rem auto, 100% auto;
    padding: 8rem 0 15rem;
  }

  .top-concept::after {
    background-size: 200% auto;
  }

  .top-concept_img {
    margin: 4rem auto 3rem;
    max-width: 50rem;
    width: 75%;
  }

  .top-concept_img::before {
    left: -5%;
    width: 13%;
  }

  .top-concept_img::after {
    left: 85%;
    width: 17%;
  }

  .top-concept_ttl {
    font-size: 2.2rem;
  }

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

  .top-concept_body::before {
    bottom: 5rem;
    left: 3rem;
    width: 15%;
  }

  .top-concept_body::after {
    bottom: 10rem;
    right: 5%;
    width: 15%;
  }

  .top-menu {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 2rem 0 10rem;
  }

  .top-menu .top-heading {
    margin-left: auto;
  }

  .top-menu_list {
    margin: 5rem 0 4rem;
  }

  .top-menu_item {
    flex-direction: column;
  }

  .top-menu_item:nth-of-type(2) {
    flex-direction: column;
    margin: 6rem 0;
  }

  .top-menu_img {
    margin-right: 0;
    width: 100%;
  }

  .top-menu_item:nth-of-type(2) .top-menu_img {
    margin: 0;
  }

  .top-menu_ttl {
    font-size: min(12.8vw, 7rem);
    letter-spacing: 0.08em;
  }

  .top-menu_body {
    aspect-ratio: auto;
    background-size: cover;
    margin: -1rem 0 0 auto;
    padding: 3rem 2rem;
    width: 100%;
  }

  .top-menu_item:nth-of-type(2) .top-menu_body {
    padding: 3rem 2rem;
  }

  .top-menu_txt-top {
    text-align: center;
  }

  .top-menu .more {
    margin-left: auto;
  }

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

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

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

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

  .top-access_img {
    width: 100%;
  }

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

  .top-access_list dt {
    border-bottom: none;
    padding: 0.5rem 0 0.5rem 1em;
    position: relative;
    text-align: left;
    width: 100%;
  }

  .top-access_list dd {
    padding: 0.5rem 0 1% 1em;
    width: 100%;
  }

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

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

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

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

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

@media screen and (max-width: 767px) {
  #loopslider {
    height: 112px;
    margin: 0 auto;
  }

  #loopslider ul {
    height: 112px;
  }

  #loopslider ul li {
    height: 112px;
    width: 190px;
  }
}

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