/* ***********************************
 *
 *    Ire's CSS Reset & Base
 *
 * *********************************** */
/* Reset margin, padding, border
 * *********************************** */
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Typography
 * *********************************** */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.4;
}

* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a,
a:visited {
  color: inherit;
}

/* Layout
 * *********************************** */
article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}

/* Elements
 * *********************************** */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol,
ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
}

img {
  border-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

/* Attributes & states
 * *********************************** */
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Utility classes
 * *********************************** */
.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  left: -9999px;
  top: -9999px;
}

/* common
  -------------------------------------*/
* {
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
}

body {
  width: 100%;
  text-align: justify;
  letter-spacing: 0.1rem;
  font-feature-settings: "palt";
  -moz-font-featu-webkit-font-re-settings: "palt";
  -webkit-font-feature-settings: "palt";
  -moz-font-feature-settings: "palt";
  line-height: 3.5rem;
  text-align: justify;
  background: url(../img/bg_texture.png);
  overflow-x: hidden;
}

body,
#wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

footer {
  margin-top: auto;
}

a, a:visited {
  text-decoration: none;
}
a:hover, a:visited:hover {
  color: #F70E00;
  text-decoration-color: transparent;
  transition: all 0.3s ease;
}

@media screen and (max-width: 959px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 960px) {
  .is-sp {
    display: none !important;
  }
}
html {
  font-family: mode-mincho-b-large-std, benton-modern-display, serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-weight: bold;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0;
}

h1, h2, h3, h4, h5, h6, p, a, span {
  font-family: mode-mincho-b-large-std, benton-modern-display, serif;
}

/* ====================================================
   animation
 ==================================================== */
@keyframes SlideDown {
  0% {
    opacity: 0;
    transform: translateY(-64px);
    -webkit-transform: translateY(-64px);
    -moz-transform: translateY(-64px);
    -ms-transform: translateY(-64px);
    -o-transform: translateY(-64px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-list__item {
  animation: SlideIn 1.6s;
}

@keyframes SlideIn {
  0% {
    opacity: 0;
    transform: translateX(64px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
* {
  box-sizing: border-box;
}

.nav {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav > ul {
  display: flex;
  justify-content: center;
}
.nav > ul > li {
  padding: 10px 20px;
  background-color: #000000;
  cursor: pointer;
  color: #ffffff;
}
.nav > ul > li + li {
  margin-left: 20px;
}

footer {
  margin: 10rem 6rem 6rem;
}

.l-header {
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  left: 0;
  right: 0;
  z-index: 999;
  transition: top 0.6s ease;
  height: auto;
  top: -80px;
}
@media screen and (max-width: 1080px) {
  .l-header {
    height: 80px;
    top: 0;
  }
}
.l-header.is-visible {
  top: 0;
}
.l-header.is-hidden {
  top: -80px;
}
.l-header__inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .l-header__inner {
    padding: 2rem 4rem 2.5rem;
  }
}
.l-header__title {
  width: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
@media screen and (max-width: 1080px) {
  .l-header__title {
    width: 16rem;
  }
}
.l-header__title img {
  display: block;
  width: 60%;
  height: 100%;
}
.l-header__title a:last-of-type img {
  width: 120%;
  margin-left: -2rem;
}
.l-header__gnav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 2rem;
}
@media screen and (max-width: 1080px) {
  .l-header__gnav {
    display: none;
  }
}
.l-header__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.l-header__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
  color: #222;
  width: 100%;
  font-size: 1.8;
}
@media screen and (min-width: 1080px) {
  .l-header__link {
    font-size: 1.2rem;
  }
}
.l-header__link:visited {
  color: #222;
}
@media screen and (max-width: 1080px) {
  .l-header__link .c-icon--cart {
    margin-top: 0.5rem;
  }
}
.l-header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #fff;
  transition: ease 0.4s;
  padding: 6rem 4rem;
}
@media screen and (min-width: 1080px) {
  .l-header__nav {
    padding: 0;
    display: none;
  }
}
.l-header__hamburger {
  width: 48px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
@media screen and (min-width: 1080px) {
  .l-header__hamburger {
    display: none;
  }
}
.l-header__hamburger .hamburger {
  background-color: transparent;
  border: none;
  z-index: 9999;
}
.l-header__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.l-header__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 1.2rem;
}
.l-header__link a:visited {
  color: #222;
}

.l-section {
  overflow: hidden;
}
@media screen and (min-width: 1080px) {
  .l-section#fuari .c-section__wrap {
    flex-direction: row-reverse;
  }
  .l-section#fuari .c-section__container {
    margin-left: 0;
    margin-right: 9rem;
  }
}

#instagram .c-section {
  align-items: flex-end;
  padding: 4rem 2rem 0;
  margin: 0;
}
@media screen and (max-width: 1080px) {
  #instagram .c-section {
    align-items: center;
  }
}

.c-button {
  font-weight: bold;
  width: 100%;
  max-width: 28rem;
  padding: 1rem 2rem;
  border-radius: 4rem;
  -webkit-border-radius: 4rem;
  -moz-border-radius: 4rem;
  -ms-border-radius: 4rem;
  -o-border-radius: 4rem;
  position: relative;
  background: transparent;
  transition: 0.3s;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 1.2rem;
  border: 1px solid #222;
  font-size: 1.4rem;
}
.c-button:hover {
  color: #721D01;
  background: #fff;
  border: 1px solid #F70E00;
}
.c-button:hover:before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.c-button:hover .c-icon--cart::before {
  content: "";
  background: url("../img/icon_cart--red.svg") no-repeat;
  background-size: contain;
}
.c-button:hover .c-icon--instagram::before {
  content: "";
  background: url("../img/icon_instagram--red.svg") no-repeat;
  background-size: contain;
}
.c-button:hover .c-icon--link::before {
  content: "";
  background: url("../img/icon_link--red.svg") no-repeat;
  background-size: contain;
}

.c-copyright {
  font-size: 0.7rem;
  padding: 2rem;
  text-align: center;
  font-weight: thin;
  opacity: 0.5;
}

.c-hamburger {
  background-color: transparent;
  border: none;
  z-index: 9999;
  cursor: pointer;
  width: 1.6rem;
  height: 2rem;
}
.c-hamburger__line {
  width: 100%;
  height: 2px;
  background-color: #222;
  position: relative;
  transition: ease 0.4s;
  display: block;
}
.c-hamburger__line:nth-child(2) {
  margin: 6px 0;
}
.c-hamburger.is-active .c-hamburger__line:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
@media screen and (min-width: 1080px) {
  .c-hamburger.is-active .c-hamburger__line:nth-child(1) {
    top: 20px;
  }
}
.c-hamburger.is-active .c-hamburger__line:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-active .c-hamburger__line:nth-child(3) {
  top: -8px;
  transform: rotate(-45deg);
}
@media screen and (min-width: 1080px) {
  .c-hamburger.is-active .c-hamburger__line:nth-child(3) {
    top: 0;
  }
}

.l-header__nav.is-active {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}

.c-hero {
  position: relative;
  font-weight: 600;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.c-hero__logo {
  width: 100%;
  padding: 4rem 4rem 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 2rem;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .c-hero__logo {
    padding: 3rem 5rem 2.2rem 8rem;
  }
}
.c-hero__sns {
  position: absolute;
  right: 10.8rem;
  top: 4rem;
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 2rem;
}
@media screen and (min-width: 1080px) {
  .c-hero__sns {
    z-index: 100000;
  }
}
@media screen and (max-width: 1080px) {
  .c-hero__sns {
    position: relative;
    right: auto;
    width: 2rem;
    height: 2rem;
    display: none;
  }
}
.c-hero__link {
  line-height: 2rem;
}
.c-hero__kv {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 8rem 5rem 0;
}
@media screen and (min-width: 1080px) {
  .c-hero__kv {
    margin-top: -5rem;
  }
}
@media screen and (max-width: 1080px) {
  .c-hero__kv {
    gap: 4rem;
    padding: 0;
    flex-direction: column;
  }
}
.c-hero__shop {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  gap: 0.4rem;
}
@media screen and (max-width: 1080px) {
  .c-hero__shop {
    width: 100%;
    padding: 0;
  }
  .c-hero__shop:nth-of-type(1) {
    flex-direction: row-reverse;
    padding-top: 8rem;
  }
}
.c-hero__image {
  width: 100%;
  display: block;
  height: auto;
  max-height: 80vh;
  overflow: hidden;
}
@media screen and (max-width: 1080px) {
  .c-hero__image {
    overflow: initial;
  }
}
.c-hero__image img {
  display: block;
  width: 100%;
  height: auto;
}
.c-hero__text {
  writing-mode: vertical-rl;
  font-size: 1rem;
  align-items: flex-start;
  gap: 0.8rem;
  position: relative;
  padding-top: 7rem;
}
.c-hero__text span {
  display: inline-block;
  transform: translateX(0.2em);
  -webkit-transform: translateX(0.2em);
  -moz-transform: translateX(0.2em);
  -ms-transform: translateX(0.2em);
  -o-transform: translateX(0.2em);
}
.c-hero__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 6rem;
  background-color: #222;
}

.c-icon {
  width: 2.4rem;
  height: 2.4rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
}
@media screen and (max-width: 1080px) {
  .c-icon {
    width: 2rem;
    height: 2rem;
  }
}
.c-icon--instagram::before {
  content: "";
  display: inline-flex;
  width: 1.8rem;
  height: 1.8rem;
  background: url(../img/icon_instagram.svg) no-repeat;
  background-size: contain;
  margin-top: 0.2rem;
}
.c-icon--instagram::before:hover {
  background: url(../img/icon_instagram--red.svg) no-repeat;
}
@media screen and (max-width: 1080px) {
  .c-icon--instagram::before {
    width: 2rem;
    height: 2rem;
    margin-top: 0;
  }
}
.c-icon--cart::before {
  content: "";
  display: inline-flex;
  width: 1.8rem;
  height: 1.8rem;
  background: url(../img/icon_cart.svg) no-repeat;
  background-size: contain;
  margin-top: 0.4rem;
}
.c-icon--cart::before:hover {
  background: url(../img/icon_cart--red.svg) no-repeat;
}
@media screen and (max-width: 1080px) {
  .c-icon--cart::before {
    width: 2.4rem;
    height: 2.4rem;
    margin-top: 0.2rem;
  }
}
.c-icon--aloha::before {
  content: "";
  display: inline-flex;
  width: 1.8rem;
  height: 1.8rem;
  background: url(../img/icon_aloha.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1080px) {
  .c-icon--aloha::before {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.c-icon--link::before {
  content: "";
  display: inline-flex;
  width: 1.4rem;
  height: 1.4rem;
  background: url(../img/icon_link.svg) no-repeat;
  background-size: contain;
  margin-top: 0.3rem;
}
@media screen and (max-width: 1080px) {
  .c-icon--link::before {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.c-icon--car::before {
  content: "";
  display: inline-flex;
  width: 1.4rem;
  height: 1.4rem;
  background: url(../img/icon_car.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1080px) {
  .c-icon--car::before {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.c-icon--bus::before {
  content: "";
  display: inline-flex;
  width: 1.4rem;
  height: 1.4rem;
  background: url(../img/icon_bus.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1080px) {
  .c-icon--bus::before {
    width: 1.4rem;
    height: 1.4rem;
  }
}

.c-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 2rem;
  padding-left: 5rem;
}
@media screen and (max-width: 1080px) {
  .c-logo {
    padding: 0;
    margin-left: -2rem;
    gap: 1rem;
  }
}
.c-logo__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.c-logo__link:nth-of-type(2) {
  transform: scale(0.85);
  -webkit-transform: scale(0.85);
  -moz-transform: scale(0.85);
  -ms-transform: scale(0.85);
  -o-transform: scale(0.85);
}
.c-logo__image {
  height: 2.8rem;
}
@media screen and (max-width: 1080px) {
  .c-logo__image {
    height: 2.2rem;
  }
}

.c-nav {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
  gap: 2rem;
}
@media screen and (min-width: 1080px) {
  .c-nav {
    padding: 10rem;
  }
}
.c-nav__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.c-nav__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
  color: #222;
  width: 100%;
  font-size: 1.8;
}
@media screen and (min-width: 1080px) {
  .c-nav__link {
    font-size: 1.2rem;
  }
}
.c-nav__link:visited {
  color: #222;
}
@media screen and (max-width: 1080px) {
  .c-nav__link .c-icon--cart {
    margin-top: 0.5rem;
  }
}

.c-scroll {
  transition: opacity 1s;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  right: 0;
  bottom: 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  z-index: 0;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  color: #222;
  width: 6rem;
  height: 6rem;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
}
@media screen and (max-width: 1080px) {
  .c-scroll {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.c-scroll:visited {
  color: #222;
}
.c-scroll::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  background-size: contain;
  transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  margin-top: 0.8rem;
}
.c-scroll::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}
.c-scroll.is-fadein {
  visibility: visible;
  opacity: 1;
}
.c-scroll:hover {
  opacity: 0.8;
  transition-duration: 0.5s;
  bottom: 1rem;
}

.c-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6rem;
  margin-top: 20rem;
}
@media screen and (max-width: 1080px) {
  .c-section {
    gap: 4rem;
    margin-top: 10rem;
  }
}
.c-section__wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 6rem;
}
@media screen and (max-width: 1080px) {
  .c-section__wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
.c-section__container {
  display: flex;
  justify-content: center;
  align-items: space-between;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
  flex: 0.5;
  margin-left: 9rem;
}
@media screen and (max-width: 1080px) {
  .c-section__container {
    margin: 0;
    padding: 0 4rem;
    align-items: center;
  }
}
.c-section__container #map {
  padding: 0;
}
.c-section__title {
  font-size: 2.8rem;
  line-height: 4rem;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .c-section__title {
    font-size: 2.2rem;
    line-height: 3.2rem;
    text-align: center;
  }
}
.c-section__title img {
  max-height: 4.6rem;
  max-width: 16rem;
}
.c-section__text {
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 3.2rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 2rem;
}
.c-section__text h3 {
  font-weight: bold;
  font-size: 1.6rem;
}
.c-section__image {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.c-section__image img {
  width: 50%;
}

.p-access {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
}
.p-access__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 2rem;
}
.p-access__title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0.4rem;
  font-size: 1.2rem;
}
.p-access__text {
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.p-access__text .large {
  font-weight: bold;
  font-size: 120%;
}
.p-access__text .small {
  font-size: 90%;
}

.p-banner-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
  padding: 1rem 4rem;
  padding-left: 5rem;
}

.p-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 2rem;
}
@media screen and (max-width: 1080px) {
  .p-banner {
    padding-left: 0;
  }
}
.p-banner__text {
  font-size: 0.9rem;
  text-align: center;
}
.p-banner__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.p-banner__image {
  height: 3.4rem;
}
@media screen and (max-width: 1080px) {
  .p-banner__image {
    height: 2.8rem;
  }
}
.p-banner:nth-child(2) .p-banner__image {
  transform: scale(0.85);
}

.l-section#instagram .c-section {
  margin-bottom: 6rem;
}

.p-feature {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.p-feature__product {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 2rem;
  padding: 0 6rem 10rem;
}
@media screen and (max-width: 1080px) {
  .p-feature__product {
    flex-direction: column-reverse;
    padding: 0 4rem 12rem;
  }
}
.p-feature__switch {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex: 1;
}
.p-feature__image {
  max-height: 80rem;
}
.p-feature__about {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4rem;
  flex: 1;
}
.p-feature__logo {
  height: 10rem;
}
.p-feature__title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: -2rem;
}
.p-feature__text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  font-size: 1.4rem;
  text-align: center;
  line-height: 2.4rem;
  font-weight: normal;
}
@media screen and (max-width: 1080px) {
  .p-feature__text {
    text-align: left;
  }
}
.p-feature__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
}

.switch {
  position: relative;
}

.switch img {
  cursor: pointer;
  transition: opacity 0.5s;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
}

.switch:hover img:first-of-type {
  opacity: 0;
}

.switch img:last-of-type {
  position: absolute;
  top: 0px;
  left: auto;
  opacity: 0;
}

.switch:hover img:last-of-type {
  opacity: 1;
}

.p-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.p-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.p-map {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  height: 60rem;
  width: 100%;
  background-color: #F3F3F3;
}
@media screen and (max-width: 1080px) {
  .p-map {
    flex-direction: column-reverse;
    gap: 4rem;
    padding-bottom: 6rem;
  }
}
.p-map__google {
  flex: 2;
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1080px) {
  .p-map__google {
    flex: auto;
  }
}
.p-map__google iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.p-map__access {
  font-weight: normal;
  font-size: 1.2rem;
  flex: 1;
  padding: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 1080px) {
  .p-map__access {
    padding: 0;
    gap: 2rem;
  }
}

.u-flex {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .u-flex {
    flex-direction: column;
  }
}
.u-flex__item {
  width: calc(33.3333333333% - 2rem);
}/*# sourceMappingURL=style.css.map */