@charset "UTF-8";

/* Google Font　------------------------------------ */

/* Noto Sans JP */
/* @import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap"); */

/* Lato' */
@import url("https://fonts.googleapis.com/css?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

/* Noto Serif Japanese */
/* @import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap"); */

/* yakuhanmp-noto */
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.4.1/dist/css/yakuhanmp-noto.min.css");

/* Montserrat */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,600;1,600&display=swap");

/* Catamaran */
@import url("https://fonts.googleapis.com/css2?family=Catamaran:wght@600&display=swap");

/* commom　ここから　------------------------------------ */

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  background: #b9e3f9;
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
}

@media screen and (max-width: 519px) {
  body {
    font-size: 0.9375rem;
  }
}

body.appear {
  background: #f0f0f0;
}

* {
  box-sizing: border-box;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
  outline: none;
}

img {
  width: 100%;
  height: auto;
}

/* Font指定　------------------------------------ */
.font-notosans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}

.font-lato {
  font-family: "Lato", sans-serif !important;
}

.font-montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

/* ローディング画面　------------------------------ */
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #b9e3f9;
  z-index: 9999999;
  text-align: center;
  color: #333;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#splash-logo img,
#splash-logo canvas {
  width: 120px;
}

/*画面遷移アニメーション*/

.splashbg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-width: 0px; /*開始はボーダーの太さは0*/
  border-style: solid;
  border-color: #b9e3f9; /*拡大する四角の色*/
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes backBoxAnime {
  99.9% {
    /*アニメーション終了ぎりぎりまで*/
    z-index: 2; /*最前面に*/
    border-width: 0px; /*開始はボーダーの太さは0*/
  }
  100% {
    z-index: -1; /*最背面に*/
    border-width: 0px; /*終了はボーダーの太さは0*/
  }
}

/* loading テキストアニメーション */
.loading-area {
  display: flex;
  justify-content: center;
  gap: 1px;
}

.loading-area span {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  animation: rotate 1s infinite linear;
}

.loading-area span:nth-child(2) {
  animation-delay: 0.1s;
}

.loading-area span:nth-child(3) {
  animation-delay: 0.2s;
}

.loading-area span:nth-child(4) {
  animation-delay: 0.3s;
}

.loading-area span:nth-child(5) {
  animation-delay: 0.4s;
}

.loading-area span:nth-child(6) {
  animation-delay: 0.5s;
}

.loading-area span:nth-child(7) {
  animation-delay: 0.6s;
}

.loading-area span:nth-child(8) {
  animation-delay: 0.7s;
}

.loading-area span:nth-child(9) {
  animation-delay: 0.8s;
}

.loading-area span:nth-child(10) {
  animation-delay: 0.9s;
}

@keyframes rotate {
  10% {
    transform: scale(1.1);
  }
}

@media screen and (max-width: 959px) {
  #splash-logo img,
  #splash-logo canvas {
    width: 80px;
  }
  .loading-area span {
    font-size: 0.95rem;
  }
}

#wrapper {
  position: relative;
  opacity: 0; /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #wrapper {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

#header {
  position: fixed; /*header固定*/
  height: 100px; /*Headerの高さ設定*/
  width: 100%;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding-left: clamp(15.5rem, 15rem + -12.5vw, 0rem);
}

@media screen and (max-width: 959px) {
  #header {
    height: 75px;
  }
}

@media screen and (max-width: 519px) {
  #header {
    height: 55px;
  }
}

/*pc-nav*/
#pc-nav {
  background: #b9e3f9;
  border-radius: 40px;
  padding: 10px 50px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

#pc-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

#pc-nav li a {
  display: block;
  text-decoration: none;
  color: #333;
  padding: 5px 25px;
  transition: all 0.3s;
  white-space: nowrap;
}
@media (min-width: 959px) and (max-width: 1300px) {
  #pc-nav li a {
    color: #333;
    padding: 5px 12px;
  }
  .pc-nav-tel {
    display: none;
  }
}

#pc-nav li.current a,
#pc-nav li a:hover {
  background-color: #00a7ff;
  border-radius: 5px;
  color: #fff;
}

.top-tel-area {
  font-size: 1.05rem;
  letter-spacing: 0.05rem;
}

#pc-nav li a i {
  margin-right: 0.25rem;
}

/*h1*/

h1 {
  font-family: "新ゴ B";
  font-family: Shin Go Bold;
  /* text-transform: uppercase; */
  font-size: 1.5rem;
  position: absolute;
  top: 15%;
  left: 5%;
  line-height: 1.25;
  letter-spacing: 0.05em;
}

h1 span.top-lead {
  font-family: "新ゴ R";
  font-family: Shin Go Regular;
  font-size: 1.1rem;
}

h1 > a {
  text-decoration: none;
}

@media screen and (max-width: 519px) {
  h1 {
    font-size: 1.1rem;
    top: 7px;
  }
  h1 span.top-lead {
    font-weight: normal;
    font-size: 1rem;
  }
}

h1 a {
  color: #111;
}

@media screen and (max-width: 959px) {
  #pc-nav {
    display: none;
  }
}

/* top-main ---------------------------------------- */
#top-main {
  width: 100%;
  height: 100vh;
  position: relative;
  background: #fff;
}

#top-main:before {
  content: "";
  position: fixed;
}

.slideshow {
  position: fixed;
  width: 100%;
  margin-top: 100px;
  height: calc(100vh - 100px);
  overflow: hidden;
}

.slideshow-items {
  position: relative;
  width: 100%;
  height: 100%;
}

.item {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.item.active-slideshow {
  opacity: 1;
}

.item-image-container {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.item-image {
  margin-top: 0;
  height: calc(100vh - 100px);
}

.item-image::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 3.6vw 5px #fff;
}

.item-image-01 {
  object-fit: cover !important;
}

.item-image-02 {
  object-fit: cover !important;
}

.item-access {
  position: absolute;
  bottom: 80px;
  left: calc(5% + 25px);
}

.item-access div {
  position: relative;
  margin: 2em 0;
  padding: 2em 1em 1em;
  border: solid 3px #95ccff;
  background: #ffffff8a;
  border-radius: 8px;
}

.item-access div .box-title {
  position: absolute;
  display: inline-block;
  top: -18px;
  left: 125px;
  padding: 4px 12px 3px;
  line-height: 1;
  font-size: 30px;
  background: #fff;
  color: #0084ff;
  font-weight: bold;
  text-transform: uppercase;
}
.item-access div p {
  margin: 10px 7px;
  padding: 0;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1.45;
}

@media screen and (max-width: 1380px) {
  .item-access {
    display: none;
  }
}

.toimg-pc {
  display: block;
}

.toimg-md {
  display: none;
}

.toimg-sp {
  display: none;
}

@media screen and (max-width: 959px) {
  .toimg-pc {
    display: none;
  }

  .toimg-md {
    display: block;
  }

  .toimg-sp {
    display: none;
  }
  .slideshow {
    margin-top: 75px;
    height: calc(100vh - 75px);
  }
}

@media screen and (max-width: 519px) {
  .toimg-pc {
    display: none;
  }

  .toimg-md {
    display: none;
  }

  .toimg-sp {
    display: block;
  }
  .slideshow {
    margin-top: 55px;
    height: calc(100vh - 55px);
  }
}

.item-header {
  position: absolute;
  top: 0;
  left: 5%;
  z-index: 10;
  font-size: clamp(1.25rem, 1rem + 1.25vw, 2rem);
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.65;
  font-family: "じゅん 501";
  font-family: Jun 501;
}

.item-header-area {
  background: #ffffff66;
  padding: 15px;
  box-shadow: inset 0 0 50px 0 #ffffff2a;
}

@media screen and (max-width: 959px) {
  .item-image {
    height: calc(100vh - 75px);
  }
  .item-header {
    top: 0;
  }
}
@media screen and (max-width: 519px) {
  .slideshow {
    height: calc(100vh - 55px);
  }
  .item-image {
    height: calc(100vh - 55px);
  }
  .item-header {
    /* top: 7vw; */
    font-size: clamp(1.063rem, 0.917rem + 0.73vw, 1.5rem);
  }
  .item-image-container {
    top: -22vh;
  }

  .item-header-bottom > br {
    display: block;
  }
}

.vertical-part {
  display: inline-block;
  transition: 0.75s;
  transform: translateY(100%);
  padding: 0;
  margin: 0 -3px;
  text-shadow: -1.5px -1.5px 0 #fff, 1.5px -1.5px 0 #fff, -1.5px 1.5px 0 #fff,
    1.5px 1.5px 0 #fff; /* 白い輪郭 */
}

@media screen and (max-width: 768px) {
  .vertical-part {
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff,
      1px 1px 0 #fff; /* 白い輪郭 */
  }
}

.item.active-slideshow .vertical-part {
  transform: translateY(0);
}

.vertical-part > b.vp-blue {
  color: #00a7ff !important;
  /* font-size: 1.35em !important; */
}

.vertical-part > b.vp-red {
  color: #e3007f !important;
  /* font-size: 1.35em !important; */
}

.vertical-part > b.vp-orange {
  color: #ffa500 !important;
  /* font-size: 1.35em !important; */
}

.item-header-top {
  margin-top: 0 !important;
  margin-bottom: 6.5vw;
  margin-left: 0;
  z-index: 10;
  font-size: clamp(1rem, 0.875rem + 0.63vw, 1.375rem);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1rem;
  text-shadow: -1.5px -1.5px 0 #fff, 1.5px -1.5px 0 #fff, -1.5px 1.5px 0 #fff,
    1.5px 1.5px 0 #fff;
}

.item-header-top span {
  display: inline-block;
  font-size: 1.25em;
  letter-spacing: 0.1rem;
  -webkit-text-underline-offset: 0.3em;
  text-underline-offset: 0.3em;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-text-decoration-style: wavy;
  text-decoration-style: wavy;
  -webkit-text-decoration-color: #ffa500;
  text-decoration-color: #ffa500;
}

.item-header-top > br {
  display: none;
}

@media screen and (max-width: 959px) {
  .item-header-top {
    display: inline-block;
    margin-left: 0;
    padding: 7px 15px 7px 15px;
    background: #333;
    letter-spacing: 0.05rem;
    text-shadow: initial;
    opacity: 0.9 !important;
    font-weight: bold !important;
    color: #fff;
  }
  .item-header-top span {
    letter-spacing: 0.05rem;
    -webkit-text-underline-offset: initial; /* WebKitプレフィックスを追加 */
    text-underline-offset: initial;
    -webkit-text-decoration-line: initial; /* WebKitプレフィックスを追加 */
    text-decoration-line: initial;
    -webkit-text-decoration-style: initial; /* WebKitプレフィックスを追加 */
    text-decoration-style: initial;
    -webkit-text-decoration-color: initial; /* WebKitプレフィックスを追加 */
    text-decoration-color: initial;
  }
}

@media screen and (max-width: 519px) {
  .item-header-top {
    margin-top: 0;
    padding: 3px 15px 3px 15px;
    line-height: 1.45 !important;
    font-size: 0.9rem !important;
  }
  .item-header-top > br {
    display: block !important;
  }
  .item-header-top span {
    font-size: 1rem !important;
  }
}

.item-header-bottom {
  margin-top: 45px;
  margin-left: 15px;
  z-index: 10;
  font-size: clamp(1rem, 0.875rem + 0.63vw, 1.375rem);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1rem;
  text-shadow: -1.5px -1.5px 0 #fff, 1.5px -1.5px 0 #fff, -1.5px 1.5px 0 #fff,
    1.5px 1.5px 0 #fff;
}

.item-header-bottom span {
  display: inline-block;
  font-size: 1.25em;
  letter-spacing: 0.1rem;
  -webkit-text-underline-offset: 0.3em;
  text-underline-offset: 0.3em;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-text-decoration-style: wavy;
  text-decoration-style: wavy;
  -webkit-text-decoration-color: #ffa500;
  text-decoration-color: #ffa500;
}

.item-header-bottom > br {
  display: none;
}

@media screen and (max-width: 959px) {
  .item-header-bottom {
    display: inline-block;
    margin-left: 0;
    padding: 7px 15px 7px 15px;
    background: #333;
    letter-spacing: 0.05rem;
    text-shadow: initial;
    opacity: 0.9 !important;
    font-weight: bold !important;
    color: #fff;
  }
  .item-header-bottom span {
    letter-spacing: 0.05rem;
    -webkit-text-underline-offset: initial; /* WebKitプレフィックスを追加 */
    text-underline-offset: initial;
    -webkit-text-decoration-line: initial; /* WebKitプレフィックスを追加 */
    text-decoration-line: initial;
    -webkit-text-decoration-style: initial; /* WebKitプレフィックスを追加 */
    text-decoration-style: initial;
    -webkit-text-decoration-color: initial; /* WebKitプレフィックスを追加 */
    text-decoration-color: initial;
  }
}

@media screen and (max-width: 519px) {
  .item-header-bottom {
    margin-top: 5px;
    padding: 3px 15px 3px 15px;
    line-height: 1.45 !important;
    font-size: 0.9rem !important;
  }
  .item-header-bottom > br {
    display: block !important;
  }
  .item-header-bottom span {
    font-size: 1rem !important;
  }
}

/* container ---------------------------------------- */

/* h2 */

h2 {
  text-transform: uppercase;
  font-size: clamp(2rem, 1.8rem + 1vw, 3rem);
}

#container {
  position: relative;
  z-index: 1;
  background: #fff;
}

@media screen and (max-width: 519px) {
  #container {
    margin-top: -22vh !important;
  }
}

/* topics */

#topics {
  border-left: 3px solid #000;
  padding: 0 0 0 20px;
}

@media screen and (max-width: 768px) {
  #topics {
    margin: 0 0 100px 0;
  }
}

#topics h2 {
  font-size: 1.5rem;
}

#topics h2 span.bgLRextend::before {
  background: #333;
}

.bx-wrapper {
  box-shadow: none;
  border: none;
}

/*topics*/

.slider li {
  max-width: 1000px !important;
}

/*ニュース1行の周りの余白*/
.slider a {
  display: block;
  background: #fff;
  padding: 10px 0 10px 6rem;
  text-indent: -2.85rem;
}

/*日付*/
.slider time {
  display: inline-block;
  font-size: 1rem;
  margin-right: 10px;
  color: #333;
}

@media screen and (max-width: 768px) {
  .slider {
    /* padding:20px; */
    background: #fff;
  }

  .slider li {
    border-bottom: 1px dashed #ccc;
  }

  .slider li:last-child {
    border-bottom: none;
  }
  .slider time {
    display: block;
    padding-bottom: 10px;
  }
  .slider a {
    padding: 15px 0 10px;
    text-indent: initial;
    line-height: 1.45;
  }
}

/* main-area */

#main-area {
  width: 90%;
  margin: 0 auto;
  padding: 50px 0;
}

@media screen and (max-width: 519px) {
  #main-area {
    padding: 25px 0 50px;
  }
}

/* store */

#store {
  display: flex;
  justify-content: space-between;
  align-items: top;
  flex-wrap: wrap;
  margin: 0 0 50px;
  background-image: url(../img/store_bg.png);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 70vw auto;
  min-height: 440px;
}

#store .content {
  width: 40%;
  text-align: right;
  padding: 0 0 0 45px;
  order: 2;
}

#store .store-img {
  width: 60%;
  height: auto;
  text-align: left;
  margin: 0;
  padding: 0;
  order: 1;
}

#store .store-img picture {
  margin: 0;
  padding: 0 15px;
}

#store .store-img-right {
  display: none;
  width: 60%;
  height: auto;
  text-align: left;
  margin-top: 0px;
  order: 3;
}

/* --#store .content --*/

#store h2 {
  margin: 0 0 15px 0;
}

#store p {
  line-height: 1.65;
  margin: 0 0 5px 0;
}

#store .store-lead {
  position: relative;
  color: #00a7ff;
  font-size: clamp(1.375rem, 1.148rem + 1.14vw, 2rem);
  font-weight: bold;
  margin: 0 0 45px 0;
  line-height: 1em;
}

#store .store-lead::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: 0;
  background: #b9e3f9;
  width: 12em;
  height: 3px;
}

#store p.store-txt-top {
  line-height: 1.85em;
  font-size: clamp(1rem, 0.943rem + 0.28vw, 1.156rem);
  margin-bottom: 25px;
  font-weight: bold;
  color: red;
}

#store p.store-txt-top span {
  display: inline-block;
}

#store .store-img-sp {
  display: none;
  background-image: url(../img/store_bg.png);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100% auto;
  margin: 0 0 15px !important;
  padding: 0 !important;
}

#store .store-img-sp01 {
  display: none;
}

#store .store-img-sp02 {
  display: none;
}

#store .store-lead span,
#store p.store-txt span {
  display: inline-block !important;
}

/* --#store .store-img --*/

#store .store-img .store-img-pc {
  max-width: 1000px !important;
}

/* --#store .store-img-right --*/

#store .store-img-right > picture {
  width: 100%;
  max-width: 1100px !important;
  padding-top: 25px;
}

@media screen and (max-width: 1556px) {
  #store {
    min-height: initial;
  }
  #store .content {
    width: 38%;
    text-align: right;
    order: 2;
    padding: 0 25px 0 0;
  }

  #store .store-img {
    width: 62%;
    height: auto;
    text-align: left;
    margin-top: 0px;
    order: 1;
  }
}

@media screen and (max-width: 1320px) {
  #store .store-lead::after {
    right: 0;
    left: 0;
    width: 100%;
  }
}

@media screen and (min-width: 992px) and (max-width: 1320px) {
  #store {
    background-image: url(../img/store_bg02.png);
    background-repeat: no-repeat;
    background-position: right 50px;
    background-size: 70% auto;
  }
  #store .content {
    width: 40%;
    text-align: left;
    order: 1;
    padding: 0 15px 0 0;
  }

  #store .store-img {
    display: none;
  }

  #store .store-img-right {
    margin-top: 50px;
    padding-left: 10px;
    display: block;
    order: 3;
  }
}
@media screen and (max-width: 991px) {
  #store {
    background-image: none !important;
  }
  #store h2,
  #store .store-lead,
  #store p.store-txt-top {
    text-align: center;
  }
  #store .content {
    width: 100%;
    text-align: left;
    order: 1;
    padding: 0;
  }
  #store .store-img-sp {
    display: inline-block;
  }
  #store .store-img-sp01 {
    display: block;
  }

  #store .store-img {
    display: none;
  }

  #store .store-img-right {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  #store .store-img-sp {
    display: block;
    background-image: none;
    text-align: center;
  }
  #store .store-img-sp01 {
    display: none;
  }

  #store .store-img-sp02 {
    display: block;
    max-width: 400px;
    margin: 0 auto;
  }
  #store p.store-txt {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* access */

#access {
  margin-top: -280px;
}

#access picture {
  display: inline-block;
  width: 100%;
  padding-left: 12%;
  /* background: #b9e3f9; */
}

#access .access-bg {
  position: relative;
  max-width: 13.02vw;
  min-width: 250px;
  z-index: 10 !important;
}

#access .access-area {
  /* position: relative; */
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #fff;
  border: solid 1px #ccc;
  box-shadow: 0 4px 4px #ccc;
  width: 100%;
  margin: -20px auto 100px auto;
}

#access .access-area .access-block {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 35px 25px;
}

#access .access-area .access-block h3 {
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
  margin: 0;
}

#access .access-area .access-block p {
  line-height: 1.45;
  margin: 0 0 20px 0;
}

#access .access-area .access-block p span {
  display: inline-block;
}

#access .store-access-map {
  width: 50%;
}

#access .iframe-wrap {
  position: relative;
  padding-bottom: 51.65%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  z-index: 2;
}

#access .iframe-wrap iframe,
#access .iframe-wrap object,
#access .iframe-wrap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

p.access-txt-top {
  position: relative;
  padding: 0;
  margin: 0 !important;
  color: #333;
  font-weight: bold;
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
}

p.access-txt-top:before,
p.access-txt-top:after {
  position: absolute;
  top: 52%;
  width: 3rem;
  border-top: 2px dashed;
  content: "";
}

@media screen and (max-width: 550px) {
  p.access-txt-top:before,
  p.access-txt-top:after {
    display: none;
  }
}
p.access-txt-top:before {
  left: 1rem;
}

p.access-txt-top:after {
  right: 1rem;
}

p.access-txt {
  padding: 0;
  margin: 15px 0 !important;
}

@media screen and (max-width: 1040px) {
  #access .access-area .access-block,
  #access .store-access-map {
    width: 100%;
  }
  #access .access-area .access-block {
    padding: 40px 20px;
  }
}

@media screen and (max-width: 768px) {
  #access .access-bg {
    background-attachment: inherit;
  }
}

/* storeとaccessの重なり */

@media screen and (max-width: 1630px) {
  #access {
    margin-top: calc((12.2vw + 55px) * -1);
  }
}

@media screen and (min-width: 992px) and (max-width: 1320px) {
  /* #access {
    margin-top: -235px;
  } */

  #access picture {
    text-align: right;
    padding-left: initial;
    padding-right: 0;
  }
  #access .access-bg {
    max-width: 220px;
    min-width: 220px;
  }
}

@media screen and (max-width: 991px) {
  #access {
    margin-top: 0;
  }

  #access picture {
    text-align: center;
    padding-left: initial;
    padding-right: initial;
  }
  #access .access-bg {
    max-width: 200px;
    min-width: 200px;
  }
}

/* map-area */

#map-area {
  margin-left: calc(-5% - 10px);
  width: calc(100% + 10% + 20px);
  background: #b9e3f9;
  padding: 10px 5% 0;
  margin-bottom: 150px;
  box-shadow: rgb(204, 204, 204) 0px 0px 20px;
}

#map-area .map {
  /* margin-left: -5%;
  width: calc(100% + 10%); */
  width: 100%;
  min-height: 300px;
}

#map-area .map > iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  margin: 0 !important;
  padding: 0 !important;
}

/* スマホ表示用。flipLeftTriggerを指定している親要素に指定しないとうまく動かない*/
#store,
.service-area {
  transform: translate3d(0, 0, 0);
}

/* reserve */

#reserve {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 0 auto 100px auto;
  padding: 100px 30px;
  text-align: center;
}

#reserve .scrolldown1 {
  top: -10vh;
}

#reserve h2 {
  font-size: 1.2rem;
}

#reserve .tel {
  font-size: 2vw;
  margin: 0 0 20px 0;
}

#reserve p br {
  display: none;
}

@media screen and (max-width: 990px) {
  #reserve h2 {
    font-size: 1rem;
  }
  #reserve .tel {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 540px) {
  #reserve p br {
    display: block;
  }
}

/* service */

#service h2 {
  text-align: center;
  margin: 0 0 100px 0;
}

@media screen and (max-width: 550px) {
  #service h2 {
    margin: 0 0 50px 0;
  }
}

#service h2 span.bgLRextend::before {
  background: #333;
}

#service .service-area {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 300px 0;
}

/* @media screen and (max-width: 992px) {
  #service .service-area {
    margin: 0 0 200px 0;
  }
} */

@media screen and (max-width: 992px) {
  #service .service-area {
    margin: 0 0 50px 0;
  }
}

#service .service-area::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 23em;
  background: #f3f3f3;
  right: 10%;
  top: 20%;
  z-index: -1;
}

#service .service-area:nth-of-type(2n + 1) {
  flex-direction: row-reverse;
}

#service .service-area .img {
  width: 50%;
}

#service .service-area .content {
  width: 40%;
  background: #fff;
  box-shadow: 0 0 20px #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 150px;
}

@media screen and (max-width: 992px) {
  #service .service-area .content {
    width: 47%;
    top: 100px;
  }
}

@media screen and (max-width: 992px) {
  #service .service-area .img {
    width: 100%;
    z-index: 2;
  }
  #service .service-area .content {
    width: 100%;
    top: -10px;
    animation: none;
    opacity: 1;
    z-index: 1;
  }
}

#service .service-area .content-area {
  padding: 40px;
}

@media screen and (max-width: 992px) {
  #service .service-area .content-area {
    padding: 40px 20px;
  }
}

#service .service-area .content-area h3 {
  position: relative;
  font-size: clamp(1.25rem, 1.114rem + 0.68vw, 1.625rem);
  text-align: center;
  line-height: 1.45;
  margin-bottom: 25px;
}

#service .service-area .content-area h3::before {
  content: attr(data-number);
  display: block;
  margin-bottom: clamp(2rem, 1.875rem + 0.63vw, 2.625rem);
  color: #fc5185;
  font-size: clamp(2rem, 1.875rem + 0.63vw, 2.625rem);
  line-height: 1.65;
}

#service .service-area .content-area h3::after {
  content: "";
  position: absolute;
  top: clamp(3.125rem, 3rem + 0.63vw, 3.75rem);
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 20px;
  background-color: #fc5185;
}

/* #service .service-area .content-area h3 {
  text-align: center;
  font-size: 1rem;
  margin: 0 0 30px 0;
} */

#service .service-area .content-area h3 span {
  display: inline-block;
}

#service .service-area .content-area h3 strong {
  color: #00a7ff;
  font-size: 1.35em;
  font-weight: bold;
}

#service .service-area .content-area p {
  margin: 0 0 30px 0;
}

#service .btn {
  text-align: right;
  margin-bottom: 15px;
  line-height: 1.45;
}

#service .btn i {
  margin-right: 0.55rem;
}

.btnlinestretches {
  position: relative;
  color: #333;
  padding: 5px 10px;
  display: inline-block;
  text-decoration: none;
  outline: none;
}

.btnlinestretches span {
  position: relative;
  z-index: 2;
}

.btnlinestretches:hover span {
  color: #fff;
}

.btnlinestretches::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  background: #333;
  width: 100%;
  height: 1px;
  transition: all 0.3s ease-in-out;
}

.btnlinestretches:hover::after {
  height: 100%;
}

/* 手順 */

#service #Flow {
  margin: -150px auto 0;
  padding: 250px 0 7.8125vw;
}

#service #Flow h3 {
  position: relative;
  /* left: -500px; */
  display: flex;
  align-items: center;
  font-size: clamp(1.25rem, 0.977rem + 1.36vw, 2rem);
  white-space: nowrap;
}

#service #Flow h3:before {
  content: "";
  width: 50px;
  height: 1px;
  background: #444;
  display: block;
}

#service #Flow h3::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #444;
  display: block;
}

#service #Flow h3:before {
  margin-right: 0.4em;
}

#service #Flow h3::after {
  margin-left: 0.4em;
}

#service .procedure-area {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 45px 0 0 0;
}

/* #service .flow_design04 {
  width: 60%;
} */

#service .flow_design_img {
  width: calc(40% - 30px);
  margin-top: -150px;
  position: relative;
}

#service .flow_design_img::after {
  content: " ";
  position: absolute;
  left: -30px;
  top: -30px;
  width: 100%;
  height: 100%;
  background-color: #f3f3f3;
  z-index: -1;
}

#service .flow_design {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(30% - 25px);
  padding-right: 25px;
}

@media screen and (max-width: 992px) {
  #service .procedure-area {
    position: relative;
    display: block;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 45px 5% 0 5%;
  }
  #service .flow_design_img {
    width: 100%;
    margin-top: 35px;
  }
  #service .flow_design {
    width: 100%;
    padding-right: 0;
  }
  .flow_design_md {
    display: none;
  }
}

#service .procedure {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  /* background-color: #000; */
}

#service .procedure > li {
  list-style-type: none;
  display: flex;
  padding: 20px 0;
  border-top: solid 1px #e1e8ed;
}

#service .procedure > li dl dt {
  font-size: 1.2em;
  line-height: 2;
  font-weight: bold;
  margin-bottom: 10px;
}

#service .procedure > li .icon-flow {
  line-height: 1;
  font-size: 2em;
  font-weight: bold;
  color: #e26b5d;
  text-align: center;
  width: 70px;
  position: relative;
  margin-top: 0;
}

#service .procedure > li .icon-flow::before {
  content: "STEP";
  font-size: 0.3em;
  display: block;
  margin-bottom: 3px;
  letter-spacing: 1px;
}

#service .procedure > li .icon-flow::after {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 60px);
  background-color: #858585;
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  margin: auto;
}

#service .procedure > li dl dd {
  margin: 0;
}

#service .procedure > li dl {
  width: calc(100% - 70px);
  margin-top: 0.8em;
}


#service .procedure > li.lasttext {
  list-style-type: none;
  padding: 35px 0;
}

#service .procedure > li.lasttext > div{
  padding: 25px;
  background: -webkit-repeating-linear-gradient(
    -45deg,
    #f0f8ff,
    #f0f8ff 3px,
    #e9f4ff 3px,
    #e9f4ff 7px
  );
  background: repeating-linear-gradient(
    -45deg,
    #f0f8ff,
    #f0f8ff 3px,
    #e9f4ff 3px,
    #e9f4ff 7px
  );
}



/* 種類 */

#service #kinds {
  margin: -150px auto 0;
  padding: 250px 0 0;
}

#service #kinds h3 {
  position: relative;
  /* left: -500px; */
  display: flex;
  align-items: center;
  font-size: clamp(1.25rem, 0.977rem + 1.36vw, 2rem);
  white-space: nowrap;
}

#service #kinds h3:after {
  content: "";
  width: 50px;
  height: 1px;
  background: #444;
  display: block;
}

#service #kinds h3::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #444;
  display: block;
}

#service #kinds h3:after {
  margin-left: 0.4em;
}

#service #kinds h3::before {
  margin-right: 0.4em;
}

#service .kinds-area {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 45px 0 0 0;
}

#service .kinds-area .kinds-img {
  width: calc(60% - 30px);
  margin-top: -200px;
  background: #f3f3f3;
  /* border: solid 1px #333; */
  padding: 35px 15px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#service .kinds-txt {
  text-align: center;
  padding: 35 15px;
  width: calc(40% - 30px);
}

#service .kinds-txt p {
  text-align: left;
}

#service .kinds-txt img {
  text-align: center;
  margin: 25px auto 0;
  padding: 0 10px;
  max-width: 620px;
}

#service .kinds-txt p.point {
  margin-top: 35px;
  text-align: center;
  font-size: 1.45em;
  font-weight: bold;
  color: #00a7ff;
  letter-spacing: 0.05em;
  line-height: 1.45;
}

#service .kinds-txt p.point span {
  display: inline-block;
}

#service .goods-area {
  width: auto;
  margin: 10px 0;
  padding: 0;
}

#service .goods-area p {
  font-weight: bold;
  font-size: 1em;
  padding-left: 5px;
}

#service .goods-box {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-wrap: wrap;
  margin: 0 5px;
}

#service .goods-box .goods-img {
  border: solid 1px #e1e8ed;
  background: #fff;
  padding: 13px;
  margin-top: -1px;
  margin-left: -1px;
}

#service .goods-box .goods-img > picture > img {
  margin: auto;
  display: block;
  height: 6vw !important;
  min-height: 78px !important;
  width: auto;
}

@media screen and (max-width: 992px) {
  #service .kinds-area {
    margin: 45px 0 0 0;
  }
  #service .kinds-area .kinds-img {
    width: 100%;
    margin-top: 0;
    padding: 10px;
  }
  #service .kinds-txt {
    margin-top: 35px;
    width: 100%;
  }
  #service .goods-box .goods-img {
    padding: 5px;
  }
  /* #service .goods-box .goods-img > picture > img {
    height: 7.5vw !important;
  } */
  #service #kinds h3:after {
    width: 100%;
  }

  #service #kinds h3::before {
    content: "";
    width: 50px;
  }
}

/* about */

#about {
  margin: 100px 0 200px 0;
  padding-top: 100px;
}

@media screen and (max-width: 768px) {
  #about {
    margin: 50px 0 100px 0;
  }
}

#about h2 {
  text-align: center;
  /* color:#B9E3F9; */
  margin: 0 0 100px 0;
}

@media screen and (max-width: 550px) {
  #about h2 {
    margin: 0 0 50px 0;
  }
}

#about .about-list {
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}

#about .about-list li {
  border-bottom: 1px solid #ccc;
  margin: 0 0 15px 0;
  padding: 0 0 15px 0;
}

#about .about-list dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#about .about-list dt {
  width: 30%;
  padding: 0 0 0 40px;
  line-height: 2;
}

@media screen and (max-width: 590px) {
  #about .about-list dt {
    padding: 0 0 0 10px;
  }
}

#about .about-list dd {
  width: 65%;
  line-height: 2;
}

#about .about-list dd span {
  display: inline-block;
}

#about .about-list dd > p {
  line-height: 1.65 !important;
}

#about .about-list dd > p > br {
  display: none;
}

#about .about-list dd > p > span {
  display: inline-block;
}

.pr_05 {
  padding-right: 0.5rem !important;
}
.mb_15 {
  margin-bottom: 15px !important;
}

@media screen and (max-width: 880px) {
  #about .about-list dd > p > br {
    display: block;
  }
}

#about .about-list dd > p.gmap {
  margin-top: 10px;
  margin-bottom: 10px !important;
}

/* faq */

#faq {
  margin: 0 0 200px 0;
}

#faq h2 {
  text-align: center;
  margin: 0 0 100px 0;
}

#faq h2 span.bgLRextend::before {
  background: #333;
}

.faq-bg {
  position: relative;
  height: 55vh;
  background: url("../img/pict_05.jpg") no-repeat center;
  background-size: cover;
  margin: 0 0 200px 25%;
}

.faq-bg::after {
  content: "";
  position: absolute;
  top: 20%;
  left: -32%;
  width: 100%;
  height: 55vh;
  background: #f3f3f3;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .faq-bg,
  .faq-bg::after {
    height: 35vh;
  }
}

@media screen and (max-width: 550px) {
  #faq {
    margin: 0 0 100px 0;
  }

  #faq h2 {
    margin: 0 0 50px 0;
  }

  .faq-bg {
    margin: 0 0 100px 25%;
  }

  .faq-bg,
  .faq-bg::after {
    height: 20vh;
  }
}

/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}

.accordion-area li {
  margin: 10px 0;
}

.accordion-area section {
  border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all 0.5s ease;
}

@media screen and (max-width: 768px) {
  .title {
    font-size: 0.9rem;
  }
}

/*アイコンの＋と×*/
.title::before,
.title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #333;
}
.title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/

.title.close::before {
  transform: rotate(45deg);
}

.title.close::after {
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
  display: none; /*はじめは非表示*/
  background: #f3f3f3;
  margin: 0 3% 3% 3%;
  padding: 3%;
}

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

#footer {
  padding: 50px 0;
  border-top: 1px solid #333;
  background: #fff;
  text-align: center;
  position: relative;
  text-transform: uppercase;
}

#footer h2 {
  margin-left: 5%;
  text-align: left;
}

@media (max-width: 1200px) {
  #footer h2 {
    margin-left: 0;
    margin-bottom: 45px;
    text-align: center;
  }
}

#footer .footer-logo {
  font-weight: bold;
  letter-spacing: 0.3em;
  margin: 0 0 50px 0;
  color: #666;
}

#footer small {
  color: #888;
}

/* footer-area */

.footer-section-top {
  width: 90%;
  margin: 35px auto 0;
  padding: 0;
}

.footer {
  font-size: 15px;
  color: #4b5564;
  background: #fff;
}

.footer-section-bottom {
  padding: 3rem 2rem 0;
  /* color: #ed7d31; */
  /* background: #fff2cc; */
}

.footer-address {
  margin-bottom: 2rem;
  text-align: center;
  font-style: normal;
}

.footer-address h3 {
  font-size: 1.8rem;
}

.footer-address p {
  line-height: 1.45;
}

.footer-address p.address {
  margin-bottom: 25px;
}

.footer-address p.address > span {
  display: inline-block;
}

.footer-address div.tel-area {
  margin: 35px 0;
}

.footer-address p.tel-header {
  font-size: 1.1rem;
  background: #f0f0f0;
  padding: 7px 12px;
}

.footer-address p.tel-header span {
  display: inline-block;
}

.footer-address dl.tel-number {
  display: flex;
  padding: 0;
  align-items: flex-end;
  margin: 15px 0 55px 15px;
}
@media (max-width: 1200px) {
  .footer-address dl.tel-number {
    width: 100%;
    margin: 25px auto !important;
    justify-content: center;
  }
}

.footer-address dl.tel-number dt {
  margin-right: 10px;
  line-height: 1 !important;
  font-size: clamp(1.375rem, 1.325rem + 0.25vw, 1.625rem);
  white-space: nowrap;
}

.footer-address dl.tel-number dd > a {
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
}

.footer-address dl.tel-number dd {
  font-size: clamp(2.25rem, 2.125rem + 0.63vw, 2.875rem);
  font-weight: 900;
  letter-spacing: 0.1rem;
  margin-bottom: -7px;
  white-space: nowrap;
  line-height: 1 !important;
}

.footer-address dl.store-info {
  margin: 15px 0 25px;
  padding: 0;
}

.footer-address dl.store-info dt {
  display: inline-block;
  background: #ed7d31;
  color: #fff;
  padding: 7px 17px;
  letter-spacing: 0.1rem;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 1;
}

.footer-address dl.store-info dd {
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

.access-map-area {
  display: flex;
  align-items: flex-end;
}

.access-info {
  position: absolute;
  bottom: 180px;
  right: 33vw;
  width: auto;
  max-width: 350px;
  text-align: center;
  margin: 0 0 25px;
  padding: 25px;
  background: -webkit-repeating-linear-gradient(
    -45deg,
    #f0f8ff,
    #f0f8ff 3px,
    #e9f4ff 3px,
    #e9f4ff 7px
  );
  background: repeating-linear-gradient(
    -45deg,
    #f0f8ff,
    #f0f8ff 3px,
    #e9f4ff 3px,
    #e9f4ff 7px
  );
  z-index: 1;
}

.access-info p.access-info-txt-top {
  position: relative;
  padding: 1rem 1.5rem;
  font-size: 1;
  font-weight: bold;
  display: inline-block;
}

.access-info p.access-info-txt-top i {
  font-size: 1.3em;
  padding-right: 0.5rem;
}

.access-info p.access-info-txt-top::before,
.access-info p.access-info-txt-top::after {
  position: absolute;
  top: 0.8rem;
  height: 1.8rem;
  content: "";
}

.access-info p.access-info-txt-top::before {
  border-left: solid 3px;
  left: 0;
  transform: rotate(-30deg);
}

.access-info p.access-info-txt-top::after {
  border-right: solid 3px;
  right: 0;
  transform: rotate(30deg);
}

.access-info p.access-info-txt {
  line-height: 1.65;
}

.access-info p.access-info-txt span {
  display: inline-block;
}

.access-map {
  margin-left: 100px;
  max-width: 600px;
  position: relative; /* 相対位置指定 */
}

.caption {
  position: absolute;
  font-size: 130%;
  text-align: center;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mask {
  width: 100%;
  height: 100%;
  position: absolute; /* 絶対位置指定 */
  top: 0;
  left: 0;
  opacity: 0; /* マスクを表示しない */
  background-color: rgba(0, 0, 0, 0.4); /* マスクは半透明 */
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.access-map:hover .mask {
  opacity: 1; /* マスクを表示する */
}

.footer-img {
  width: 100%;
  /* padding: 10px 45px; */
  border: 0;
  /* box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);  */
}

@media (min-width: 1201px) and (max-width: 1340px) {
  .access-map {
    margin-left: 30px;
    max-width: 600px;
  }
}

@media (max-width: 1200px) {
  .access-map {
    width: 90%;
    margin: 45px auto 0;
  }
  .footer-img {
    width: 90%;
    max-width: 500px !important;
  }
}

.footer-copyright {
  padding: 1rem;
  line-height: 1;
  color: #fff;
  text-align: center;
  background: #ed7d31;
}

.footer-copyright a {
  color: #fff;
}

.md-justify-between {
  justify-content: space-between;
}

@media (max-width: 1200px) {
  .md-justify-between {
    justify-content: initial;
  }
}

.lg-flex {
  display: flex;
}

/* .footer-section-top {
  padding: 2rem;
} */

.footer-address {
  margin-bottom: 0;
  text-align: left;
}

.footer-map {
  max-width: 27%;
  max-height: 140px;
}

@media (max-width: 1200px) {
  .lg-flex {
    display: inline;
  }

  .tel-header {
    margin: 0 25px;
  }
  /* .footer-section-top {
    padding: 2rem;
  } */

  .footer-address {
    margin-bottom: 0;
    text-align: center;
  }

  .footer-map {
    max-width: 100%;
    max-height: 140px;
  }
  .access-info {
    position: relative;
    bottom: initial;
    right: initial;
    width: auto;
    max-width: 350px;
    text-align: center;
    margin: 35px auto 0;
    padding: 25px;
    background: -webkit-repeating-linear-gradient(
      -45deg,
      #f0f8ff,
      #f0f8ff 3px,
      #e9f4ff 3px,
      #e9f4ff 7px
    );
    background: repeating-linear-gradient(
      -45deg,
      #f0f8ff,
      #f0f8ff 3px,
      #e9f4ff 3px,
      #e9f4ff 7px
    );
  }
}

/* ハンバーガーメニュー  */
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 0;
  right: 0;
  cursor: pointer;
  width: 80px;
  height: 70px;
  border-left: 2px solid #333;
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
}

.openbtn span:nth-of-type(1),
.openbtn span:nth-of-type(3) {
  height: 2px;
  background: #333;
  width: 30%;
  opacity: 0;
  top: 22px;
  left: 20px;
}

.openbtn span:nth-of-type(2) {
  top: 22px;
  left: 18px;
  text-transform: uppercase;
  color: #333;
  font-size: 0.9rem;
}

@media screen and (max-width: 550px) {
  .openbtn {
    width: 80px;
    height: 55px;
  }
  .openbtn span:nth-of-type(2) {
    top: 18px;
    font-size: 0.8rem;
  }
}

.openbtn span:nth-of-type(3) {
  top: 35px;
}

/*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/

.openbtn.active span:nth-of-type(1),
.openbtn.active span:nth-of-type(3) {
  opacity: 1;
}

.openbtn.active span:nth-of-type(1) {
  top: 28px;
  left: 30px;
  transform: translateY(6px) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 40px;
  left: 30px;
  transform: translateY(-6px) rotate(45deg);
}

/* g-nav */
#g-nav.panelactive li:last-child a {
  margin: 30px 0 0 0;
  padding: 10px 20px;
  border: 2px solid #333;
  white-space: nowrap;
}
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: -100px;
  right: -120%;
  width: 100%;
  height: calc(100vh + 100px); /*ナビの高さ*/
  background: #b9e3f9;
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: calc(100vh + 100px); /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/* page-top ---------------------------------------- */

/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffa500;
  width: 70px;
  height: 60px;
  /* color: #fff; */
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}

#page-top a:hover {
  background: #777;
  color: #fff;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateX(100px);
}

/*　左の動き　*/

#page-top.LeftMove {
  animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*　右の動き　*/

#page-top.RightMove {
  animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}

/* scrollgress ---------------------------------------- */

.scrollgress {
  z-index: 9999; /*他のposition指定しているエリアより前に出すためz-indexの数字を大きく*/
}

.btnarrow5 {
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  border: 1px solid #555;
  padding: 4px 20px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #333;
  outline: none;
  /*アニメーションの指定*/
  transition: all 0.2s linear;
  font-size: 0.85rem;
}

.btnarrow5:hover {
  background: #333;
  color: #fff;
}

/*矢印と下線の形状*/
.btnarrow5::before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  top: 50%;
  right: -26px;
  /*下線の形状*/
  width: 40px;
  height: 1px;
  background: #333;
  /*アニメーションの指定*/
  transition: all 0.2s linear;
}

.btnarrow5::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 25%;
  right: -21px;
  /*矢印の形状*/
  width: 1px;
  height: 10px;
  background: #333;
  transform: skewX(45deg);
  /*アニメーションの指定*/
  transition: all 0.2s linear;
}

/*hoverした際の移動*/
.btnarrow5:hover::before {
  right: -30px;
}

.btnarrow5:hover::after {
  right: -25px;
}

/* アニメーション ---------------------------------------- */

/*シャッ（左から）*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #b9e3f9; /*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

/* ふわっ（下から） */

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* パタッ（左へ） */
.flipLeft {
  animation-name: flipLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  perspective-origin: left center;
  opacity: 0;
}

@keyframes flipLeftAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }

  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}

/* スマホ表示用。flipLeftTriggerを指定している親要素に指定しないとうまく動かない*/
#store,
.service-area {
  transform: translate3d(0, 0, 0);
}

/* スクロールをしたら出現する要素に透過0を指定　*/
.bgLRextendTrigger,
.bgappearTrigger,
.fadeUpTrigger,
.flipLeftTrigger {
  opacity: 0;
}

/* 用紙サイズの指定（A4） */
@page {
  margin: 10mm;
  size: 210mm 297mm; /* A4縦サイズ */
}
@media print {
  /* 全体設定 */
  body {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact; /* 印刷時でも背景色や背景画像を表示 */
    width: 1280px; /* 印刷時の全ページ幅を統一 */
    zoom: 0.8;
  }
  #g-nav #g-nav-list,
  #header {
    position: relative !important;
  }
  #g-nav,
  nav,
  #page-top,
  .openbtn {
    display: none;
  }
  .bgextend,
  .bgappear.fadeUp.flipLeft {
    opacity: 1;
  }
  #about {
    padding-top: 300px !important;
  }
  .bgLRextendTrigger,
  .bgappearTrigger,
  .fadeUpTrigger,
  .flipLeftTrigger {
    opacity: 1;
  }
}
