@charset "UTF-8";

/*fs*/

p {
  margin: 0;
}

/* common */

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: #333;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  text-rendering: auto;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

.-gothic {
  font-family: "游ゴシック ", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.-eng {
  font-family: Arial, Helvetica, sans-serif;
}

.underline {
  text-decoration: underline;
}

a {
  color: #222;
  text-decoration: none;
}

.-c_red {
  color: #d00;
}

@media (hover: hover) and (pointer: fine) {
  a,
  a img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  a:hover,
  a:hover img {
    opacity: 0.6;
    text-decoration: none;
  }

  .shoparea__list--a:hover,
  .shoparea__list--a:hover img,
  .shoparea__list--pic::after {
    opacity: 1;
    transition: 0.2s;
  }

  .shoparea__list--a:hover img {
    transform: scale(1.1);
  }

  .shoparea__list--a:hover .shoparea__list--pic::after {
    opacity: 0.4;
  }

  .gridarea__case--area:hover {
    opacity: 1;
  }

  /*button*/
  .i-arrow,
  .i-w-arrow,
  .i-g-arrow {
    transition: 0.3s;
  }
  .line_btn--a:hover .i-arrow,
  .line_btn--a:hover .i-w-arrow,
  .line_btn--a:hover .i-g-arrow,
  .unker_menu a:hover .i-g-arrow,
  .submit_btn:hover .i-w-arrow,
  .gridarea__case--area:hover .i-w-arrow {
    padding-right: 26px;
  }
}

li {
  list-style: none;
}

.imgmax {
  display: block;
  height: auto;
  width: 100%;
}

.-pconly {
  display: block;
}

.-sponly {
  display: none;
}

.-underline {
  text-decoration: underline;
  color: #af852f;
}

.-reset_form input,
.-reset_form button,
.-reset_form select,
.-reset_form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

.-reset_form textarea {
  resize: vertical;
}

.-reset_form input[type="checkbox"],
.-reset_form input[type="radio"] {
  display: none;
}

.-reset_form input[type="submit"],
.-reset_form input[type="button"],
.-reset_form label,
.-reset_form button,
.-reset_form select {
  cursor: pointer;
}

.-reset_form select::-ms-expand {
  display: none;
}

.-reset_form ::placeholder {
  color: #ccc;
}

.-reset_form ::-ms-input-placeholder {
  color: #ccc;
}

.-reset_form :-ms-input-placeholder {
  color: #ccc;
}

.logout.my-false {
  display: none;
}
.login.my-true {
  display: none;
}
.regist.my-true {
  display: none;
}

.-base {
  max-width: 1200px;
  max-width: min(calc(100% - 40px), 1200px);
  margin-inline: auto;
}

.-area {
  margin-bottom: 100px;
}

.-larea {
  margin-bottom: 140px;
}

/*layout*/

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  transition: 0.3s;
}

#corpo_logo {
  display: none;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 190px;
}

#gnav {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  max-width: min(calc(100% - 40px), 1200px);
  margin-inline: auto;
  padding: 40px 0;
  transition: 0.3s;
}

#gnav li {
  line-height: 1.2;
}

#gnav li:not(:last-child) {
  margin-right: 30px;
}

#gnav li a {
  color: #fff !important;
  font-weight: normal;
}

#gnav br {
  display: none;
}

/*animation*/
header.fixed {
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid #ccc;
}

header.fixed #corpo_logo {
  display: block;
}

header.fixed #gnav {
  padding: 20px 0;
}

header.fixed #gnav li a {
  color: #000 !important;
}
/*animation END*/

#main__mv {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}

@keyframes zoomUp {
  /* 1.15倍させる指定 */
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}

.swiper-container {
  position: relative;
}

.swiper-text {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.swiper-slide {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-slide-active .swiper-img.noactive,
.swiper-slide-duplicate-active .swiper-img.noactive,
.swiper-slide-prev .swiper-img.noactive {
  /* ８秒かけて拡大させる */
  -webkit-animation: zoomUp 8s linear 0s;
  animation: zoomUp 8s linear 0s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes zoomOut {
  to {
    transform: translateY(4em);
  }
}

.swiper-slide-active .swiper-img.zoomout,
.swiper-slide-duplicate-active .swiper-img.zoomout,
.swiper-slide-prev .swiper-img.zoomout {
  /* ８秒かけて拡大させる */
  -webkit-animation: zoomOut 8s linear 0s;
  animation: zoomOut 8s linear 0s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  transform: scale(1.4);
}

.swiper-img {
  background-size: cover;
  background-position: center center; /* 背景画像は中央を軸に表示させる */
  height: 100vh;
}

#corpo-logo {
  max-width: 106px;
}

#fix_unact {
  position: fixed;
  display: grid;
  grid-template-columns: 70% 30%;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 10;
  background: #020204;
  color: #fff !important;
  height: 80px;
  border-top: 1px solid #444;
}

.fix_unact__mail {
  background: #670b0b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fix_unact__mail a {
  color: #fff !important;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.i-w-mail {
  background: url(../img/i-w-mail.svg) no-repeat left / 30px 22px;
  padding: 5px 0 5px 42px;
}

.fix_unact__tel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fix_unact__tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  width: 100%;
  height: 100%;
}

.fix_unact__tel--min {
  font-size: 1.2rem;
  line-height: 1.4;
}

.fix_unact__info {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.fix_unact__reserve {
  font-size: 2.2rem;
  line-height: 1;
  margin-right: 20px;
}

.fix_unact__num {
  font-size: 2.4rem;
  line-height: 1;
}

.fix_unact__num span {
  font-size: 1.4rem;
}

.-radius img {
  border-radius: 6px;
}

#foot_corpo {
  background: url(../img/corpo_fbg.jpg) no-repeat left center / cover;
  padding: 100px 0;
  color: #fff !important;
}

.foot_grid {
  display: grid;
  grid-template-columns: 106px 860px;
  justify-content: space-between;
  gap: 0 5%;
}

.foot_grid__right {
  display: grid;
  grid-template-columns: repeat(2, 48%);
  gap: 0 4%;
  width: 100%;
}

.foot_grid__add {
  margin: 20px 0;
}

.foot_grid__right .line_btn:not(:last-child) {
  margin-bottom: 20px;
}

.foot_grid__right .line_btn--a {
  color: #fff !important;
  font-size: 1.8rem;
}

.en_footlink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
  margin: 40px auto 0;
}

.en_footlink ul {
  display: flex;
}

.en_footlink ul li:not(:last-child) {
  border-right: 1px solid #fff;
}

.en_footlink ul a {
  color: #fff !important;
  padding: 10px;
}

#copyright {
  margin: 50px auto 130px;
  display: block;
  text-align: center;
  letter-spacing: 0.2em;
}

.i-corpo_facebook {
  display: none;
}

/*button*/
.line_btn--a {
  display: block;
  text-align: center;
  padding: 20px 10px;
  border: 1px solid #c4c4c4;
  border-radius: 30px;
  font-size: 1.4rem;
  line-height: 1.4;
}

.middle_line_btn {
  max-width: 460px;
  width: 100%;
  margin: 50px auto 0;
}

.i-arrow {
  background: url(../img/i-arrow.svg) no-repeat right center / 5px 7px;
  padding-right: 15px;
}

.i-w-arrow {
  background: url(../img/i-w-arrow.svg) no-repeat right center / 5px 7px;
  padding-right: 15px;
}

.i-w-cart {
  background: url(../img/i-w-cart.svg) no-repeat left center / 16px 16px;
  padding-left: 26px;
  display: block;
}

.fixed .i-w-cart {
  background: url(../img/i-b-cart.svg) no-repeat left center / 16px 16px;
  padding-left: 26px;
  display: block;
}

/*title*/
.section--tit {
  font-size: 3.6rem;
  letter-spacing: 2px;
  font-weight: normal;
  text-align: center;
  margin: 0 auto 40px;
}

.section--min {
  text-align: center;
  margin: -20px auto 40px;
}

/*index*/
.act_hyotanya ul {
  display: grid;
  grid-template-columns: repeat(2, 50%);
}

.act_hyotanya--name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  width: 100%;
  display: block;
}

.act_hyotanya--pic {
  position: relative;
}

.act_hyotanya--pic::after {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  content: "";
  display: block;
}

.act_hyotanya ul a {
  position: relative;
  color: #fff !important;
  display: block;
}

.tp-news__blk a {
  display: grid;
  grid-template-columns: 80px auto;
  gap: 0 40px;
  letter-spacing: 0.1em;
  padding: 20px 0;
}

.tp-news__blk li {
  background: url(../img/i-gray_line.svg) repeat-x left bottom / 10px 1px;
}

.newsarea {
  display: grid;
  grid-template-columns: 138px auto;
  gap: 0 8%;
}

.newsarea--tit {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  font-weight: normal;
  line-height: 1.5em;
  height: max-content;
  background: url(../img/i-h_mark.svg) no-repeat center bottom / 48px 48px;
  padding-bottom: 70px;
}

.mediainfo {
  display: grid;
  grid-template-columns: auto 52%;
  gap: 0 5%;
}

.medeia__tit {
  font-size: 3.6rem;
  line-height: 1.5;
  font-weight: normal;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: 2px;
}

.medeia__tit--sub {
  text-align: center;
  margin-bottom: 40px;
}

.three--sect {
  display: grid;
  grid-template-columns: repeat(3, 31%);
  gap: 0 3.5%;
  margin-bottom: 50px;
}

.three--sect.-two {
  grid-template-columns: repeat(2, 31%);
  justify-content: center;
}

.section__sub {
  font-size: 2.4rem;
  font-weight: normal;
  margin: 20px auto 10px;
}
.cross__btn {
  display: grid;
  grid-template-columns: repeat(2, 48%);
  gap: 0 4%;
  max-width: 800px;
  margin: 40px auto 0;
}

.movie-wrap {
  position: relative;
  padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
}

.movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.-videomiddle {
  max-width: 900px;
  max-width: min(calc(100% - 20px), 900px);
  margin-inline: auto;
}

.hospitality {
  background: url(../img/hospitality.jpg) repeat;
  padding: 100px 0;
}

.omotenashi {
  max-width: 1100px;
  max-width: min(calc(100% - 40px), 1100px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 60% auto;
  gap: 0 5%;
}

.omotenashi__txt {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  order: 2;
  letter-spacing: 0.2em;
}

.omotenashi__tit {
  font-size: 3.8rem;
  font-weight: normal;
  line-height: 1.5;
  margin-left: 20px;
}

.omotenashi__scp {
  line-height: 2;
}

.omotenashi--pic {
  order: 1;
}

.google_map--root {
  text-align: center;
  margin: -20px auto 40px;
}

.google_map {
  margin-bottom: 100px;
}

.google_map iframe {
  width: 100%;
}

.list_grid {
  display: grid;
  grid-template-columns: repeat(3, 32%);
  gap: 50px 2%;
}

.list_grid ul {
  display: grid;
  grid-template-columns: repeat(2, 48%);
  justify-content: center;
  gap: 0 4%;
}

.list_grid .line_btn {
  max-width: 170px;
  width: 100%;
  margin-inline: auto;
}

.list_grid ul .line_btn {
  max-width: 100%;
}

.list_grid--pic {
  margin-bottom: 10px;
}

.list_grid--name {
  font-size: 2rem;
  margin-bottom: 10px;
}

.list_grid--info {
  margin-bottom: 20px;
}

.list_grid--name span {
  background: #9f8c73;
  color: #fff !important;
  padding: 5px;
  border-radius: 4px;
  font-size: 1.3rem;
  line-height: 1;
  display: inline-block;
  margin-top: -4px;
}

.three--sect--pic {
  margin-bottom: 16px;
}

/* Modal Base */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 100;
}
.modal-bg {
  position: absolute;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 101;
}

/* Modal Content */
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  z-index: 102;
}
@media screen and (max-width: 740px) {
  .modal-content {
    width: 90vw;
  }
}
.modal-inner {
  position: relative;
  width: 100%;
  min-height: 100px;
  max-height: 500px;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Close Button */
.btn_close {
  display: block;
  position: absolute;
  top: -50px;
  right: 0;
  background-color: white;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  color: black;
  text-align: center;
  font-size: 30px;
  text-decoration: none;
  line-height: 34px;
  z-index: 105;
}

@media (max-width: 1360px) {
  /*common*/
  header.fixed #gnav {
    justify-content: flex-end;
  }

  #fix_unact {
    grid-template-columns: 80% 20%;
  }

  .foot_grid {
    grid-template-columns: 86px auto;
  }

  .foot_grid__right {
    grid-template-columns: 50% 46%;
  }

  .-ded {
    display: none;
  }
}

@media (max-width: 1200px) {
  #gnav br {
    display: block;
  }
}

@media (max-width: 1100px) {
  /*common*/
  #gnav li:not(:last-child) {
    margin-right: 13px;
  }

  .fix_unact__reserve {
    font-size: 1.6rem;
  }

  .fix_unact__num {
    font-size: 2rem;
  }

  .fix_unact__tel--min {
    font-size: 1.1rem;
  }

  .act_hyotanya--nam,
  .newsarea--tit,
  .medeia__tit,
  .section--tit,
  .omotenashi__tit {
    font-size: 2.6rem;
  }

  .section__sub {
    font-size: 2rem;
  }

  .list_grid--name {
    font-size: 1.6rem;
  }

  .omotenashi__scp {
    line-height: 1.6;
  }

  .en_footlink ul {
    width: 100%;
    font-size: 1.4rem;
  }

  .en_footlink ul:first-of-type {
    margin-bottom: 20px;
  }

  .en_footlink {
    flex-wrap: wrap;
    font-size: 1.4rem;
  }
}

@media (max-width: 959px) {
  /*common*/
  body {
    font-size: 1.4rem;
    font-weight: 500;
  }

  #corpo_logo {
    width: 144px;
  }

  .fix_unact__tel--min {
    display: none;
  }

  #fix_unact {
    grid-template-columns: repeat(2, 50%);
    height: 70px;
  }

  .fix_unact__info {
    flex-wrap: wrap;
    text-align: center;
    margin: 0;
  }

  .fix_unact__reserve {
    width: 100%;
    font-size: 1.4rem;
    padding-left: 1em;
    margin-bottom: 5px;
  }

  .fix_unact__num {
    width: 100%;
    font-size: 1.8rem;
    letter-spacing: 0;
  }

  .foot_grid__add {
    margin-top: 0;
  }

  .foot_grid__right .line_btn--a {
    font-size: 1.4rem;
  }

  #footer_fb {
    display: none;
  }

  .i-corpo_facebook {
    display: block;
    max-width: 34px;
    margin: -40px 0 0 auto;
  }

  /*index*/
  .google_map iframe {
    height: 450px;
  }

  .list_grid {
    grid-template-columns: repeat(2, 48%);
    gap: 50px 4%;
  }
}

@media (max-width: 767px) {
  /*common*/
  #gnav {
    display: none;
  }

  .-pconly {
    display: none;
  }

  .-sponly {
    display: block;
  }

  header.fixed {
    height: 60px;
  }

  #spfootlink {
    max-width: 1100px;
    max-width: min(calc(100% - 40px), 1100px);
    margin: 0 auto 30px;
  }

  #spfootlink ul {
    display: grid;
    grid-template-columns: repeat(2, 49.5%);
    gap: 5px 1%;
    text-align: center;
    font-size: 1.5rem;
  }

  #spfootlink ul li:first-of-type {
    grid-column: span 2;
  }

  #spfootlink ul a {
    background: #f7f6f4;
    color: #4b120e;
    display: block;
    padding: 10px;
    border-radius: 4px;
  }

  #spfootlink ul li:first-of-type a {
    background: #2b0b08;
    color: #fff !important;
  }

  .foot_grid {
    grid-template-columns: 100%;
    gap: 20px 0;
  }

  .corpo_fbg-logo {
    max-width: 60px;
    margin: 0 auto;
  }

  .foot_grid__right {
    grid-template-columns: 100%;
    gap: 30px 0;
  }

  .en_footlink {
    display: none;
  }

  .i-corpo_facebook {
    margin: 30px auto 0;
  }

  #humberger {
    width: 32px;
    height: 24px;
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  #humberger > div {
    position: relative;
    width: 32px;
    height: 22px;
    cursor: pointer;
    z-index: 12;
    margin: 0 auto;
  }

  #humberger span {
    position: absolute;
    left: 0;
    width: 90%;
    height: 2px;
    background-color: #000;
    border-radius: 4px;
  }

  #humberger,
  #humberger span {
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
  }
  #humberger span:nth-of-type(1) {
    top: 6px;
  }
  #humberger span:nth-of-type(2) {
    top: 12px;
  }
  #humberger span:nth-of-type(3) {
    bottom: 2px;
  }

  #-trigger.active #humberger span {
    background-color: #fff;
  }

  #-trigger.active #humberger span:nth-of-type(1) {
    -webkit-transform: translateY(7px) rotate(-45deg);
    transform: translateY(7px) rotate(-45deg);
  }
  #-trigger.active #humberger span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    -webkit-animation: active-btn05-bar02 0.8s forwards;
    animation: active-btn05-bar02 0.8s forwards;
  }
  @-webkit-keyframes active-btn05-bar02 {
    100% {
      height: 0;
    }
  }
  @keyframes active-btn05-bar02 {
    100% {
      height: 0;
    }
  }
  #-trigger.active #humberger span:nth-of-type(3) {
    -webkit-transform: translateY(-5px) rotate(45deg);
    transform: translateY(-5px) rotate(45deg);
  }

  #fix_footer ul > li {
    font-size: 1rem;
  }

  #fixnav {
    display: none;
  }

  .active #fixnav {
    background: rgba(0, 0, 0, 0.86);
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100 - 70px);
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    padding: 100px 0 30px;
  }

  .fixnav__inner {
    width: 100%;
    padding: 0 20px;
    height: 100%;
    text-align: left;
    overflow: auto;
  }

  .fixnav__contents {
    color: #000;
    padding: 40px 20px 80px;
  }

  .fixnav__contents .line_btn {
    margin: 25px auto 40px;
    width: 260px;
  }

  .fixnav__inner .line_btn--a {
    color: #fff !important;
  }

  .fixnav__inner_nav {
    margin: 20px auto 40px;
  }

  .fixnav__inner_nav li {
    border-bottom: 1px solid #747474;
  }

  .fixnav__inner_nav a {
    color: #fff !important;
    padding: 20px;
    display: block;
  }

  .fixnav__inner_nav .i-w-arrow {
    display: block;
  }

  .i-w-shop {
    background: url(../img/i-f-cart.svg) no-repeat left center / 24px 24px;
    padding: 5px 0 5px 34px;
  }

  /*index*/
  .act_hyotanya ul {
    display: grid;
    grid-template-columns: 100%;
  }

  .act_hyotanya--name {
    font-size: 2.4rem;
    display: block;
  }

  .mediainfo {
    grid-template-columns: 100%;
    gap: 30px 0;
  }

  .media__area {
    max-width: 400px;
    margin: 0 auto;
  }

  .three--sect {
    grid-template-columns: 100%;
    gap: 40px 0;
  }

  .cross__btn {
    grid-template-columns: 100%;
    gap: 20px 0;
  }

  .omotenashi {
    grid-template-columns: 100%;
    gap: 40px 0;
  }

  .omotenashi__txt {
    order: 1;
    margin: 0 auto;
  }

  .omotenashi__scp {
    line-height: 2;
  }

  .omotenashi--pic {
    order: 2;
  }

  .hospitality .middle_line_btn {
    max-width: 460px;
    max-width: min(calc(100% - 40px), 460px);
  }

  .list_grid__wrapper {
    overflow: scroll;
    width: 100vw;
  }

  .list_grid {
    display: flex;
    gap: 0 20px;
    width: max-content;
    padding-right: 20px;
  }

  .list_grid article {
    width: 300px;
  }

  .list_grid article:last-of-type {
    margin-right: 20px;
  }

  #copyright {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }

  .three--sect.-two {
    grid-template-columns: 100%;
  }
}

@media (max-width: 600px) {
  #fix_unact {
    grid-template-columns: 70% 30%;
  }
}
@media (max-width: 559px) {
  /*index*/
  .newsarea {
    grid-template-columns: 100%;
  }

  .newsarea--tit {
    font-size: 2.4rem;
    margin: 0 auto 30px;
    padding: 0 0 40px 40px;
    background-size: 40px;
    background-position: 70% bottom;
  }

  .google_map {
    width: 100vw;
    margin-left: -20px;
  }

  .swiper-slide-active .swiper-img.zoomout,
  .swiper-slide-duplicate-active .swiper-img.zoomout,
  .swiper-slide-prev .swiper-img.zoomout {
    transform: scale(1.4);
  }

  .swiper-text {
    top: 40%;
  }
}

@media (max-width: 519px) {
}

@media (max-width: 414px) {
  .fix_unact__num {
    letter-spacing: -1px;
  }

  .i-w-mail {
    background: url(../img/i-w-mail.svg) no-repeat center top / 20px 22px;
    padding: 23px 0 0px 0px;
  }
}

@media (max-width: 375px) {
}

@media (max-width: 360px) {
}

@media (max-width: 320px) {
}
