@charset "UTF-8";

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

.header {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 0 7rem 0 5rem;
  position: absolute;
  top: 1rem;
  width: 100%;
  z-index: 10;
}

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

/*  ----------------------------------------------------------
gnav
----------------------------------------------------------  */

.gnav {
  margin-top: 2rem;
}

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

.gnav_menu li:nth-child(1) {
  width: 5.5rem;
}

.gnav_menu li:nth-child(2) {
  width: 7.2rem;
}

.gnav_menu li:nth-child(3) {
  width: 7.6rem;
}

.gnav_menu li:nth-child(4) {
  width: 7.9rem;
}

.gnav_menu li:nth-child(5) {
  width: 9.1rem;
}

.gnav_menu li:nth-child(6) {
  width: 7.3rem;
}

.gnav_menu li:nth-child(7) {
  width: 8.1rem;
}

.gnav_menu li:last-of-type i {
  color: #fff;
  font-size: 4rem;
}

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

.gnav-sp {
  -webkit-overflow-scrolling: touch;
  background: var(--brw);
  bottom: 0;
  display: block;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -9999;
}

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

.gnav-sp-menu {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.gnav-sp-menu li:nth-child(1) {
  width: 6.6rem;
}

.gnav-sp-menu li:nth-child(2) {
  width: 8.6rem;
}

.gnav-sp-menu li:nth-child(3) {
  width: 9.1rem;
}

.gnav-sp-menu li:nth-child(4) {
  width: 9.48rem;
}

.gnav-sp-menu li:nth-child(5) {
  width: 11rem;
}

.gnav-sp-menu li:nth-child(6) {
  width: 8.8rem;
}

.gnav-sp-menu li:nth-child(7) {
  width: 9.7rem;
}

.gnav-sp-menu li:last-of-type i {
  color: #fff;
  font-size: 4rem;
}

/* toggle */

.toggle-btn {
  background: var(--red);
  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: var(--brw);
  padding: 6.5rem 0 2rem;
}

.footer_wrap {
  align-items: flex-start;
  display: flex;
  justify-content: space-around;
  margin-bottom: 4rem;
}

.footer_menu {
  gap: 5rem;
}

.footer_menu li:last-of-type i {
  font-size: 5rem;
}

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

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

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: 0;
  position: relative;
  transition: all 0.3s ease;
  width: 19rem;
}

.more::before {
  aspect-ratio: 429/52;
  background: url(../img/more_deco-yel.png) no-repeat center center/contain;
  content: "";
  display: block;
  left: -2rem;
  position: absolute;
  top: 85%;
  width: 21rem;
}

.more a {
  align-items: center;
  display: block;
  display: flex;
  font-size: 1.9rem;
  justify-content: space-between;
  letter-spacing: 0.2em;
  padding-right: 0.5rem;
  position: relative;
}

.more a::after {
  aspect-ratio: 38/52;
  background: url(../img/more_arw.png) no-repeat center center/contain;
  content: "";
  display: inline-block;
  position: relative;
  width: 1.9rem;
}

.more a:hover {
  padding-right: 0;
}

.more-wh:before {
  background-image: url(../img/more_deco-wht.png);
}

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

.top-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.top-heading span {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
}

.top-txt {
  letter-spacing: 0.15em;
  line-height: 2;
}

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

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

#loopslider ul {
  display: inline-block;
  height: 371px;
  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: 371px;
  overflow: hidden;
  width: 284px;
}

#loopslider ul img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  padding: 0 4px;
  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: 30.5%;
}

.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: 2rem;
  object-fit: cover;
  width: 100%;
}

.CMS-NEWS-TIME {
  font-size: 1.4rem;
  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(117, 71, 37, 0.5);
  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(--red);
  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: 2.3rem;
  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 {
  bottom: 5rem;
  left: 50%;
  padding-bottom: 0.5rem;
  position: absolute;
  transform: translateX(-50%);
  width: 5.8rem;
  z-index: 5;
}

.scroll::after {
  background: #000;
  content: "";
  display: block;
  height: 8rem;
  left: 50%;
  position: absolute;
  top: 100%;
  width: 2px;
}

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

.fixed-btn {
  border-bottom-left-radius: 1rem;
  border-top-left-radius: 1rem;
  box-shadow: 0 4px 0 var(--brw);
  padding: 1rem 0.5rem;
  position: relative;
}

.fixed-btn a {
  font-family: var(--kaisei);
}

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

.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 {
  border-top: 2px solid #fff;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  padding-top: 1rem;
}

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

.fixed-btn--1 span:first-of-type {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-left: 0.5rem;
  position: relative;
  writing-mode: vertical-rl;
}

.fixed-btn--1 span:last-of-type {
  color: var(--brw);
  display: block;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 0em;
  line-height: 1;
  text-orientation: sideways;
  writing-mode: vertical-rl;
}

.fixed-btn--2 {
  background: var(--red);
}

.fixed-btn--2 span:first-of-type {
  align-items: center;
  color: var(--yel);
  display: flex;
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-left: 0.5rem;
  position: relative;
  writing-mode: vertical-rl;
}

.fixed-btn--2 span:last-of-type {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  writing-mode: vertical-rl;
}

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

.top-kv {
  background: #000;
  position: relative;
}

.top-kv::before {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 25%, rgba(0, 0, 0, 0) 100%);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  display: block;
  height: 15rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 5;
}

#main {
  height: 48vw;
  position: relative;
  width: 100%;
}

.zs-bullets {
  display: flex;
  flex-direction: column;
  margin-left: 6rem;
}

.zs-enabled .zs-slideshow .zs-bullets .zs-bullet {
  background-color: #fff;
  border-color: #fff;
}

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

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

.top-insta {
  background: var(--beg);
  padding: 8rem 0 10rem;
  position: relative;
}

.top-insta::before {
  aspect-ratio: 533/167;
  background: var(--yel);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 37%;
}

.top-insta::after {
  aspect-ratio: 533/167;
  background: var(--yel);
  bottom: 0;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  content: "";
  display: block;
  left: 0;
  position: absolute;
  width: 37%;
}

.top-insta .top-heading {
  width: 20rem;
}

.top-insta .top-heading span {
  color: var(--yel);
}

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

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

.top-concept {
  background: url(../img/texture.jpg) repeat center top/100% auto;
  padding: 8rem 0 7.5rem;
  position: relative;
  z-index: 5;
}

.top-concept_wrap {
  background: #fff;
  display: flex;
  justify-content: space-between;
  margin-right: calc(50% - 50vw);
  padding: 5.5rem calc(50vw - 50%) 10rem 8rem;
}

.top-concept_img {
  position: relative;
  width: 43%;
}

.top-concept_img img:last-of-type {
  left: -24%;
  position: absolute;
  top: 66%;
  width: 135%;
}

.top-concept_body {
  margin-top: 1.5rem;
  position: relative;
  width: 42%;
  z-index: 5;
}

.top-concept .top-heading {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  position: relative;
  text-align: left;
}

.top-concept .top-heading img {
  margin-left: 1rem;
  width: 16.4rem;
}

.top-concept .top-heading span {
  color: var(--yel);
  margin-left: 1em;
}

.top-concept .top-heading::before {
  background: #000;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  width: 138%;
}

.top-concept_ttl {
  color: var(--brw);
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 3rem;
}

.top-concept_ttl span {
  font-size: 1.35em;
}

.top-concept_ttl span.red {
  color: var(--red);
}

.top-concept .top-txt {
  margin-bottom: 8rem;
}

.top-concept .more {
  margin-right: 0;
}

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

.top-menu {
  background: var(--beg);
  padding-bottom: 6rem;
  position: relative;
}

.top-menu::before {
  aspect-ratio: 533/167;
  background: var(--yel);
  bottom: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  content: "";
  display: block;
  position: absolute;
  right: 0;
  width: 37%;
}

.top-menu .top-heading {
  width: 17.5rem;
}

.top-menu .top-heading span {
  color: var(--yel);
  display: block;
  margin-top: 1rem;
}

.top-menu_head {
  background: url(../img/menu_head.jpg) no-repeat center top/cover;
  padding: 8rem 0 6rem;
}

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

.top-menu_item {
  align-items: flex-start;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.top-menu_item:nth-child(2) {
  background: var(--yel);
  margin: 7.5rem 0 10rem;
  padding: 4rem 0;
  position: relative;
}

.top-menu_item:nth-child(2):after {
  aspect-ratio: 316/310;
  background: url(../img/menu_deco2.png) no-repeat center/contain;
  bottom: -5rem;
  content: "";
  display: block;
  position: absolute;
  right: -1rem;
  width: 15.8rem;
  z-index: 10;
}

.top-menu_item:nth-child(2):before {
  content: "ペットボトルのドリンクもございます!";
  display: block;
  left: 0;
  position: absolute;
  top: 100%;
}

.top-menu_item:last-child {
  flex-direction: row;
}

.top-menu_img {
  position: relative;
  width: 49.5%;
  z-index: 0;
}

.top-menu_img:after {
  background: #e5d8c4;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: -3rem;
  top: 2.5rem;
  width: 100%;
  z-index: -1;
}

.top-menu_body {
  margin-top: 1rem;
  position: relative;
  width: 46%;
  z-index: 5;
}

.top-menu_heading {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  position: relative;
}

.top-menu_heading-1:before {
  background: #000;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  right: 0;
  width: 118%;
  z-index: 5;
}

.top-menu_heading-1:after {
  aspect-ratio: 316/310;
  background: url(../img/menu_deco1.png) no-repeat center/contain;
  bottom: -5rem;
  content: "";
  display: block;
  position: absolute;
  right: -1rem;
  width: 15.8rem;
  z-index: 10;
}

.top-menu_heading-2:before {
  background: #000;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  width: 118%;
  z-index: 5;
}

.top-menu_heading-2:after {
  aspect-ratio: 306/303;
  background: url(../img/menu_deco3.png) no-repeat center/contain;
  bottom: -7rem;
  content: "";
  display: block;
  position: absolute;
  right: -1rem;
  width: 15.3rem;
  z-index: 10;
}

.top-menu_ttl {
  color: var(--brw);
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  line-height: 1.64;
  margin-bottom: 4rem;
}

.top-menu_catch {
  display: block;
  margin-bottom: 1rem;
  width: 44rem;
}

.top-menu_inner {
  margin: 0 0 0 auto;
  width: 50%;
}

.top-menu_inner .top-txt {
  text-align: justify;
  width: 80%;
}

.top-menu_fig {
  left: -2.5rem;
  position: absolute;
  top: -7rem;
  width: 51%;
}

.top-menu_wrap {
  align-items: center;
  display: flex;
  gap: 10rem;
  justify-content: left;
}

.top-menu_deco {
  width: 38%;
}

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

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

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

.top-gallery_bg {
  background: rgba(244, 236, 225, 0.8);
  padding: 6.5rem 0 8rem;
}

.top-gallery .top-heading {
  width: 20rem;
}

.top-gallery .top-heading span {
  color: var(--brw);
  display: block;
  margin-top: 0.5rem;
}

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

.top-gallery .more {
  margin-right: auto;
}

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

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

.top-access_wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 8rem 0 0;
  position: relative;
}

.top-access_img {
  width: 40%;
}

.top-access_body {
  width: 53%;
}

.top-access .top-heading {
  width: 16.5rem;
}

.top-access .top-heading span {
  color: var(--yel);
  display: block;
  margin-top: 0.5rem;
}

.top-access_list {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

.top-access_list dt,
.top-access_list dd {
  border-bottom: 1px solid var(--brw);
  padding: 2rem 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_map {
  margin-top: 5rem;
}

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

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

.top-recruit {
  background: var(--yel);
}

.top-recruit_wrap {
  display: flex;
  justify-content: space-between;
  margin: 0 calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
}

.top-recruit_img {
  clip-path: polygon(27% 0, 100% 0, 100% 100%, 0 100%);
  height: auto;
  width: 58%;
}

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

.top-recruit .more {
  margin-top: 1rem;
}

.top-recruit_body {
  padding: 5rem 0;
  width: 38%;
}

.top-recruit .top-heading {
  margin-bottom: 3rem;
  margin-left: 0;
  width: 18.8rem;
}

.top-recruit .top-heading span {
  color: var(--brw);
}

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

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

  .footer_menu {
    gap: 3rem;
  }
}

@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;
    padding: 0 5%;
  }

  .header_logo {
    width: 12rem;
  }

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

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

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

  .footer_logo {
    width: 15rem;
  }

  .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 {
    width: 17rem;
  }

  .more::before {
    top: 90%;
    width: 19rem;
  }

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

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

  .top-heading span {
    font-size: 1.6rem;
  }

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

  .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 {
    bottom: 2.5rem;
    width: 4.1rem;
  }

  .scroll::after {
    height: 5rem;
    width: 1px;
  }

  .fixed-btn {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    box-shadow: none;
    padding: 1rem 0.5rem 0.5rem;
    width: 100%;
  }

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

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

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

  .fixed-btn__inner {
    border-left: 1px solid #fff;
    border-top: none;
    flex-direction: column;
    padding-left: 1rem;
    padding-top: 0;
  }

  .fixed-btn--1 span:first-of-type {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    margin-left: 0;
    text-orientation: initial;
    writing-mode: horizontal-tb;
  }

  .fixed-btn--1 span:last-of-type {
    font-size: 1.8rem;
    text-align: center;
    text-decoration: underline;
    writing-mode: horizontal-tb;
  }

  .fixed-btn--2 span:first-of-type {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
    margin-left: 0;
    text-orientation: initial;
    writing-mode: horizontal-tb;
  }

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

  #main {
    height: 38rem;
  }

  .zs-bullets {
    margin-left: 2rem;
  }

  .zs-enabled .zs-slideshow .zs-bullets .zs-bullet {
    height: 1rem;
    margin: 0.5rem;
    width: 1rem;
  }

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

  .top-insta .top-heading {
    width: 15rem;
  }

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

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

  .top-concept_wrap {
    flex-direction: column;
    margin-right: 0;
    padding: 3rem 2rem;
  }

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

  .top-concept_img img:last-of-type {
    left: -5%;
    width: 110%;
  }

  .top-concept_body {
    align-items: center;
    margin-bottom: 7rem;
    width: 100%;
  }

  .top-concept .top-heading {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    text-align: center;
  }

  .top-concept .top-heading img {
    width: 12.3rem;
  }

  .top-concept .top-heading::before {
    width: 100%;
  }

  .top-concept_ttl {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .top-concept_ttl span {
    font-size: 1.2em;
    line-height: 1.5;
  }

  .top-concept .top-txt {
    margin-bottom: 3rem;
  }

  .top-concept .more {
    margin-right: auto;
  }

  .top-menu .top-heading {
    width: 14rem;
  }

  .top-menu_head {
    padding: 5.5rem 0 4rem;
  }

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

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

  .top-menu_item:nth-child(2) {
    margin: 12rem 0 9rem;
    padding: 8rem 5% 4rem;
  }

  .top-menu_item:nth-child(2):after {
    bottom: -3.5rem;
    width: 10rem;
  }

  .top-menu_item:nth-child(2):before {
    font-size: 1.4rem;
  }

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

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

  .top-menu_img:after {
    right: -3%;
    top: 4%;
  }

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

  .top-menu_heading {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
  }

  .top-menu_heading-1:before {
    width: 100%;
  }

  .top-menu_heading-1:after {
    width: 12rem;
  }

  .top-menu_heading-2:before {
    width: 100%;
  }

  .top-menu_heading-2:after {
    bottom: -5rem;
    width: 12rem;
  }

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

  .top-menu_catch {
    margin: 0 auto 2rem;
    max-width: 44rem;
    width: 100%;
  }

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

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

  .top-menu_fig {
    top: -10rem;
    width: 25rem;
  }

  .top-menu_wrap {
    flex-direction: column-reverse;
    gap: 5rem;
    margin-top: 6rem;
  }

  .top-menu_deco {
    width: 100%;
  }

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

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

  .top-gallery .top-heading {
    width: 16rem;
  }

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

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

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

  .top-access_img {
    width: 100%;
  }

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

  .top-access .top-heading {
    width: 13.2rem;
  }

  .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-right: auto;
  }

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

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

  .top-recruit_wrap {
    flex-direction: column;
    padding: 0;
  }

  .top-recruit_img {
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
    width: 100%;
  }

  .top-recruit .more {
    margin-right: auto;
    margin-top: 2rem;
  }

  .top-recruit_body {
    margin: 0 auto;
    max-width: 57rem;
    padding: 4rem 5% 3rem;
    width: 100%;
  }

  .top-recruit .top-heading {
    margin-left: auto;
    width: 14rem;
  }
}

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

  #loopslider ul {
    height: 169px;
  }

  #loopslider ul li {
    height: 169px;
    width: 134px;
  }
}

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

  .fixed-btn img {
    display: none;
  }

  .fixed-btn__inner {
    border-left: none;
    padding-left: 0;
  }
}