@charset "UTF-8";
@font-face {
  font-family: "blanch";
  src: url("font/blanch-caps-light.otf") format("truetype");
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
img {
  width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #666;
  font-size: 16px;
  font-weight: 550;
  vertical-align: top;
}
.wrap {
  width: 900px;
  margin: 0 auto;
}
body {
  background: #fde9eb;
  color: #666;
  display: grid;
  font-family: "Poppins", sans-serif;
  font-size: 27px;
  line-height: 1.5;
}

/***************headerまでのメディアクエリここから***************/
@media screen and (max-width: 767px) {
  .wrap {
    width: 100%;
  }
  html {
    width: 100%;
  }
}
/***************headerまでのメディアクエリここから***************/

/******************************************header*********************/

header {
  width: 900px;
  height: 130px;
  background-color: #fff;
  position: fixed;
  z-index: 1000;
}

h1 img {
  width: 130px;
  padding: 10px;
}

.header-flex-container {
  display: flex;
  justify-content: space-between;
}
.header-flex-container ul {
  display: flex;
  justify-content: flex-end;
}
.header-flex-container li {
  margin: 0 1em 0 0;
  padding: 60px 0 30px 0;
}

.line01 {
  width: 900px;
  display: flex;
  justify-content: flex-start;
}
.line01 img {
  width: 180px;
}

/***************logoのホバー***************/
h1 img {
  cursor: pointer;
  transition-duration: 0.7s;
}
h1 img:hover {
  transform: scale(1.3) rotate(9deg); /*回転*/
  transition-duration: 0.7s;
}
/***************ここまで***************/
/***************naviのホバー***************/
a {
  overflow: hidden;
  position: relative;
  display: inline-block;
}
a::before,
a::after {
  position: absolute;
  width: 100%;
  left: 0;
}
a::before {
  background-color: #f5b5bb;
  /* height: 2px; */
  /* bottom: 0; */
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}
a::after {
  content: attr(data-replace);
  height: 100%;
  top: 0;
  transform-origin: 100% 50%;
  transform: translate3d(200%, 0, 0);
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  color: #f5b5bb;
}
a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
a:hover::after {
  transform: translate3d(0, 0, 0);
}
a span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}
a:hover span {
  transform: translate3d(-200%, 0, 0);
}
/***************ここまで***************/

/***************headerのメディアクエリここから***************/
@media screen and (max-width: 767px) {
  header {
    width: 130px;
    height: 250px;
    background-color: #fde9eba9;
    border-right: #666666bd 1px solid;
    border-bottom: #666666bd 1px solid;
    border-radius: 0 0 30px 0;
  }
  h1 img {
    display: none;
  }
  .header-flex-container ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 10px 0 0 0;
  }
  .header-flex-container li {
    margin: 0 10px 0 20px;
    padding: 0;
  }
  .line01 img {
    display: none;
  }
}
/***************headerのメディアクエリここまで***************/

/******************************************main*********************/

/***************ページトップに戻る矢印***************/
html {
  scroll-behavior: smooth;
}
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #ffffff00;
  border: solid 2px pink;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  box-shadow: 0 4px 6px rgb(0 0 0 / 30%);
}
.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid pink;
  border-right: 3px solid pink;
  transform: translateY(20%) rotate(-45deg);
}
@media (hover: hover) and (pointer: fine) {
  .pagetop:hover,
  .pagetop:hover .pagetop__arrow {
    border-color: #ccc;
  }
}
/***************ここまで***************/

main {
  background: url(img/photo/access-bg.jpeg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: #fff;
  background-size: 950px auto;
  background-position: 50% 85%;
  padding: 150px 0 50px;
}

h2 {
  position: relative;
  margin: 50px 230px -8px;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
}

h2:before,
h2:after {
  position: absolute;
  z-index: 0;
  bottom: -10px;
  display: block;
  content: "";
  border: 1em solid #fbe2e5;
}

h2:before {
  left: -30px;
  border-left-width: 15px;
  border-left-color: transparent;
}

h2:after {
  right: -30px;
  border-right-width: 15px;
  border-right-color: transparent;
}

h2 span {
  position: relative;
  z-index: 1;
  display: block;
  padding: 1rem 1rem;
  color: #fff;
  background: #fde9eb;
  text-shadow: 1px 2px 3px #808080;
}

h2 span:before,
h2 span:after {
  position: absolute;
  bottom: -10px;
  display: block;
  width: 10px;
  height: 10px;
  content: "";
  border-style: solid;
  border-color: #fde9eb transparent transparent transparent;
}

h2 span:before {
  left: 0;
  border-width: 10px 0 0 10px;
}

h2 span:after {
  right: 0;
  border-width: 10px 10px 0 0;
}

.fade {
  opacity: 0;
  transition: opacity 3s;
}

.fade.view {
  opacity: 1;
}

/***********************************************/

.scroll-space {
  box-sizing: border-box;
  padding-top: 300px;
  height: 1600px;
  color: #fff;
  overflow: hidden;
}
.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
  &.fadein-bottom {
    transform: translate(0, 30px);
  }
  &.scrollin {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
}

/***********************************************/
.honten {
  width: 750px;
  background-color: #ffffff93;
  border: 2px solid pink;
  border-radius: 20px;
  margin: -8px auto 40px;
  padding: 0 30px 30px 30px;
}

iframe {
  border-radius: 20px;
}
.shop-name {
  font-size: 60px;
  font-weight: 900;
  margin: 0 auto 30px;
  border-bottom: pink 3px solid;
  width: fit-content;
  font-family: "blanch", sans-serif;
}
.shop-name2 {
  font-size: 45px;
  font-weight: 900;
  margin: 0 auto 30px;
  border-bottom: pink 3px solid;
  width: fit-content;
  font-family: "blanch", sans-serif;
}

.access-flrx-container {
  width: 800px;
  display: flex;
}

iframe {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

.shop-detail span {
  font-size: 15px;
  font-weight: 600;
}
.shop-detail {
  padding: 0 5px 0 40px;
  text-align: left;
  font-size: 24px;
  font-size: 14px;
}

.icon-flex {
  margin: 10px 0;
}

.hanare {
  width: 750px;
  background-color: #ffffff93;
  border: 2px solid pink;
  border-radius: 20px;
  margin: 10px auto 20px;
  padding: 10px 30px 30px 30px;
}

.googlemap-link img {
  width: 18px;
}
.googlemap-link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 40px 0 0 40px;
  width: 220px;
  height: 50px;
  background: #ccc;
  border-radius: 75px;
  font-size: 18px;
  font-weight: lighter;
  letter-spacing: 2px;
  transition: 1s box-shadow;
  transition: 1s border;
}

.googlemap-link:hover {
  box-shadow: 0 5px 35px 0px rgba(0, 0, 0, 0.215);
  border: pink solid 5px;
  background: #fde9eb;
}

/***************mainのメディアクエリここから***************/
@media screen and (max-width: 767px) {
  main {
    background-image: url(img/moon3.png);
    background-position: 300% -10%;
    background-size: 95%;
    background-repeat: no-repeat;
    padding: 270px 0 50px;
  }
  h2 {
    margin: 10px 10px -8px 0px;
    align-items: right;
  }
  h2:before,
  h2:after {
    display: none;
  }
  h2 span {
    width: 350px;
    padding: 0.3em 1em 0.3em 1em;
    border-radius: 0 20px 20px 0;
    text-align: right;
    align-items: right;
  }
  h2 span:before,
  h2 span:after {
    display: none;
  }
  h2 .fade.view::before h2 .fade.view::after {
    display: none;
  }
  /*****     ここまで↑は共通     *****/
  .honten {
    width: 340px;
    background-color: #ffffff93;
    margin: 0px auto 15px;
    padding: 10px;
    align-items: center;
  }
  .hanare {
    width: 340px;
    background-color: #ffffff93;
    margin: 10px auto 20px;
    padding: 10px;
  }
  .honten-text {
    width: 100%;
    padding: 10px 0;
  }
  .hanare-text {
    width: 100%;
    padding: 10px 0;
  }
  .shop-name {
    margin: -15px auto 15px;
  }
  .shop-name2 {
    margin: 0 auto 15px;
  }
  .shop-detail {
    padding: 0 20px;
  }
  .honten-text br {
    display: none;
  }
  .hanare-text br {
    display: none;
  }
  .access-flrx-container {
    width: 100%;
    display: block;
  }
  iframe {
    width: 320px;
    height: 200px;
    padding: 0 20px;
  }
  .googlemap-link {
    margin: 20px auto 10px;
  }
}
/***************mainのメディアクエリここまで***************/

/******************************************footer*********************/

footer {
  background-color: #fff;
  color: #666;
  padding: 20px 0;
}
.copy {
  font-size: 12px;
  font-weight: 900;
  text-align: right;
  margin: 0 1em 0 0;
}

/**************footerのメディアクエリここまで***************/
@media screen and (max-width: 767px) {
  footer {
    background-color: #e0e0e0;
  }
  .copy {
    font-weight: 500;
    text-align: center;
  }
}
/***************footerのメディアクエリここまで***************/
