@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 300;
  overflow-x: hidden
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom
}

figure {
  margin: 0
}

picture img {
  width: 100%;
  height: auto;
  vertical-align: top
}

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

header {
  width: 100%;
  height: 100vh;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  letter-spacing: 0.2em;
  overflow: hidden;
  padding: 1em;
  /* 全体の余白を削除 */
  box-sizing: border-box;
}

.slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slideshow-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}


/* ヘッダー文字部分の固定 */

.header-flex-container {
  position: fixed;
  /* 固定 */
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 3%;
  /* 左右5%の余白で切れ防止 */
  z-index: 999;
  background-color: #686461;
  opacity: 0.9;
}

.header-logo {
  width: 5em;
  height: auto;
}

.header-ul {
  list-style: none;
  margin: 0 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 1vw;
}

.header-li {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  white-space: nowrap;
  font-weight: 400;
  font-size: 1.1em;
  margin-right: 1em;
  margin-left: 1em;
}

.header-li-span {
  display: inline-block;
  /* インライン要素をブロック要素に変更 */
  background-color: #D77F70;
  /* 背景色を赤に設定 */
  color: #FFF;
  /* 文字色を白に設定 */
  padding: 0.5em 1em;
  /* ボックス内の余白を設定 */
  border-radius: 5px;
  /* 角を丸くする（必要に応じて調整） */
  line-height: 1;
  /* 行の高さを1に設定 */
  vertical-align: middle;
  /* インライン要素の垂直方向の位置を中央に */
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #FFF;
}

nav {
  margin: 0 0 0 auto;
}

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

.sp-nav {
  display: none;
}

@media screen and (max-width: 1080px) {
  header {
    padding: 10px 2%;
  }
  .header-li-span {
    padding: 2em 3em;
    /* ボックス内の余白を設定 */
    border-radius: 5px;
    /* 角を丸くする（必要に応じて調整） */
  }
  .header-navi {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 2%;
  }
  .header-ul {
    gap: 5px;
  }
  .header-logo img {
    width: 3.5em;
    height: auto;
  }
  .sp-nav {
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #686461;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.9s ease-in-out, opacity 0.9s ease-in-out;
    display: block;
  }
  #hamburger {
    display: block;
    width: 35px;
    height: 30px;
    margin: 0;
    margin-right: 15px;
    position: relative;
    z-index: 100;
  }
  #hamburger span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFF;
    transform: translateY(-50%);
  }
  #hamburger::before,
  #hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFF;
  }
  #hamburger::before {
    top: 0;
  }
  #hamburger::after {
    bottom: 0;
  }
  .sp-nav ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 500
  }
  .sp-nav li {
    margin: 0;
    padding: 0;
    font-size: 1em;
    font-weight: 600
  }
  .sp-nav li span {
    font-size: 16px;
    color: #FFF;
  }
  .sp-nav li a,
  .sp-nav li span {
    display: block;
    padding: 15px 0;
    color: #FFF;
  }
  .sp-nav .close {
    position: relative;
    padding-left: 20px;
    font-size: 1em;
  }
  .sp-nav .close::before,
  .sp-nav .close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 16px;
    height: 1px;
    background: #FFF;
  }
  .sp-nav .close::before {
    transform: rotate(45deg);
  }
  .sp-nav .close::after {
    transform: rotate(-45deg);
  }
  .toggle {
    transform: translateY(0);
    opacity: 0.99
  }
  .pc-nav {
    display: none;
  }
}

.floating-banner {
  position: fixed;
  z-index: 99999;
  bottom: 0em;
  right: 0em;
  width: 270px;
  display: none
}

.floating-banner a {
  display: block
}

.floating-banner__image {
  max-width: 100%
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px
}

.side-image {
  max-width: 100px;
  height: auto
}

.main-title {
  margin: 0;
  font-size: 1.8em;
  font-weight: 400;
  text-align: center;
  color: #FFF;
  letter-spacing: .35em;
  line-height: 2em;
  display: block
}

.title {
  margin: 0;
  font-size: 1.65em;
  font-weight: 400;
  text-align: center;
  color: #FFF;
  letter-spacing: .4em;
  line-height: 2em;
  display: block
}

.title-2 {
  margin: 0;
  font-size: 2em;
  font-weight: 600;
  text-align: center;
  color: #686461;
  font-family: "Cantarell", sans-serif;
  letter-spacing: 0.12em;
  display: block
}

.title-2b {
  margin: 0;
  font-size: 2em;
  font-weight: 600;
  text-align: center;
  color: #516B75;
  font-family: "Cantarell", sans-serif;
  letter-spacing: 0.12em;
  display: block
}

.title3 {
  margin: 0;
  font-size: 1.3em;
  font-weight: 400;
  text-align: center;
  color: #686461;
  letter-spacing: .15em;
  display: block
}

.title3::after {
  content: "";
  display: block;
  width: 5%;
  height: 1px;
  background-color: #686461;
  margin: 10px auto 0
}

.heading-1 {
  margin: 0 auto;
  font-size: 1.5em;
  font-weight: 300;
  text-align: center;
  line-height: 3em;
  letter-spacing: .2em;
  color: #FFF;
  display: block
}

.heading-2 {
  margin: 0 auto;
  font-size: clamp(0.938rem, 0.869rem + 0.34vw, 1.125rem);
  font-weight: 400;
  text-align: center;
  line-height: 3em;
  letter-spacing: .3em;
  color: #595757;
  display: block
}

.lead {
  margin: 0 auto;
  font-family: "Noto Serif JP", "serif";
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 400;
  text-align: center;
  line-height: 2em;
  letter-spacing: .3em;
  color: #595757;
  display: block
}

.lead-2 {
  margin: 0 auto;
  font-family: "Noto Sans JP", "sans-serif";
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 400;
  text-align: center;
  line-height: 1.5em;
  letter-spacing: .4vw;
  color: #FFF;
  display: block
}

.date {
  margin: 0 auto;
  font-family: "Jost", "sans-serif";
  font-size: clamp(1.375rem, 0.739rem + 3.18vw, 3.125rem);
  font-weight: 400;
  text-align: center;
  line-height: 1.5em;
  letter-spacing: .3vw;
  color: #FFF;
  display: block
}

.date-2 {
  margin: 0 auto;
  font-family: "Jost", "sans-serif";
  font-size: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
  font-weight: 400;
  text-align: center;
  line-height: 1.5em;
  color: #FFF;
  display: block
}

span.marker {
  color: #F09D0F
}

.section {
  margin: 0 auto;
  font-size: 16px;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%
}

.image-container img {
  width: 100%;
  height: auto;
  display: block
}

.container {
  position: relative;
  margin: 0 auto;
  max-width: 1080px;
  z-index: 2
}

.background {
  background-color: #686461;
  background-size: cover
}

.background-2 {
  background-color: #516B75;
  background-size: cover;
  position: relative;
}

.svg-container {
  position: absolute;
  top: 0;
  left: 7%;
  width: 25%;
  max-width: 400px;
  height: auto;
  z-index: 1
}

.image-container img {
  width: 100%;
  margin-top: 1em;
  height: auto;
  display: block
}

.present img {
  border-radius: 2%
}

.flex {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.flex-col2 {
  width: calc((100% - 25px) / 2);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column
}

.flex-left {
  width: 28.75%
}

.flex-right {
  width: 68.75%
}

.flex-row-reverse {
  flex-direction: row-reverse
}

.link-caption {
  font-size: clamp(0.938rem, 0.892rem + 0.23vw, 1.063rem);
  line-height: 2em;
  letter-spacing: .1em;
  font-weight: 400;
  color: #595757;
  text-align: justify;
}

.link-text {
  font-size: clamp(1.125rem, 1.011rem + 0.57vw, 1.438rem);
  line-height: 1.6em;
  letter-spacing: .1em;
  font-weight: 450;
  text-align: center;
  color: #686461;
  align-items: center
}

.link-text-2 {
  font-size: clamp(1.125rem, 1.011rem + 0.57vw, 1.438rem);
  line-height: 1.6em;
  letter-spacing: .1em;
  font-weight: 450;
  text-align: center;
  color: #516B75;
  align-items: center
}

.btn {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 350px;
  margin: auto;
  padding: 1.5rem 3rem;
  font-weight: 500;
  border: 3px solid #D77F70;
  color: #FFF;
  background: #D77F70;
  /* 初期状態で赤の塗りつぶし */
  border-radius: 1vh;
  transition: .5s;
  font-size: 1.2em;
  letter-spacing: 2px;
}

.btn:hover {
  color: #D77F70;
  /* テキスト色を赤に反転 */
  border: 2px solid #D77F70;
  background: #FFF;
  /* 背景色を白に反転 */
  box-shadow: none;
  /* ホバー時にシャドウを消す */
}

.points {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  /* 外側にシャドウを追加 */
}

iframe#parentframe {
  width: 100%
}

.wrapper {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto
}

.gallery {
  margin: 0 0 5px
}

.slick-prev,
.slick-next {
  position: absolute;
  z-index: 3;
  top: 42%;
  cursor: pointer;
  outline: none;
  border-top: 3px solid #405C70;
  border-right: 3px solid #405C70;
  height: 25px;
  width: 25px
}

.slick-prev {
  left: 2.5%;
  transform: rotate(-135deg)
}

.slick-next {
  right: 2.5%;
  transform: rotate(45deg)
}

.choice-btn li {
  cursor: pointer;
  outline: none;
  background: #333;
  width: 25%!important
}

.choice-btn li img {
  opacity: .4
}

.choice-btn li.slick-current img {
  opacity: 1
}

.choice-btn .slick-track {
  transform: unset!important
}

.shine span.mask {
  position: relative;
  display: block;
  line-height: 0;
  overflow: hidden
}

.shine span.mask::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  top: 0;
  left: -75%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  transform: skewX(-25deg)
}

.shine span.mask:hover::before {
  animation: shine .7s
}

@keyframes shine {
  100% {
    left: 125%
  }
}

#footer {
  background-color: #686461;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #e7e7e7;
  color: #fff
}

#footer .logo a {
  font-size: 2em;
  color: #fff;
  text-decoration: none;
  font-weight: 700
}

#footer .address {
  margin-top: 10px;
  font-size: 1em;
  color: #fff;
  line-height: 1.6
}

.navi-row {
  display: flex;
  flex-direction: column;
  align-items: center
}

.navi,
.sns-navi {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center
}

.navi li,
.sns-navi li {
  margin: 10px 15px
}

.navi li a {
  color: #fff;
  font-size: 1.1em;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: color .3s ease
}

.navi li a:hover {
  opacity: .7
}

.sns-navi li a {
  font-size: 3em;
  color: #fff;
  transition: color .3s ease
}

.sns-navi li a:hover {
  opacity: .7
}

.copyright {
  font-size: .9em;
  color: #fff;
  margin-top: 30px
}

.sp-view {
  display: none
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9
}

.youtube iframe {
  width: 100%;
  height: 100%
}

.pages {
  width: 100%
}

.pages iframe {
  width: 100%;
  height: 100%
}

@keyframes animationZoom1 {
  100% {
    transform: scale(1.1)
  }
}

.mbottom-5 {
  margin-bottom: 5px
}

.mbottom-10 {
  margin-bottom: 10px
}

.mbottom-15 {
  margin-bottom: 15px
}

.mbottom-30 {
  margin-bottom: 30px
}

.mbottom-50 {
  margin-bottom: 50px
}

.mbottom-70 {
  margin-bottom: 70px
}

.mbottom-100 {
  margin-bottom: 100px
}

.mbottom-200 {
  margin-bottom: 200px
}

.mtop-200 {
  margin-top: 200px
}

.mtop-100 {
  margin-top: 100px
}

.mtop-50 {
  margin-top: 50px
}

.mtop-70 {
  margin-top: 70px
}

.mtop-30 {
  margin-top: 30px
}

.mtop-15 {
  margin-top: 15px
}

.mtop-10 {
  margin-top: 10px
}

.mtop-5 {
  margin-top: 5px
}

.pbottom-200 {
  padding-bottom: 200px
}

.pbottom-100 {
  padding-bottom: 100px
}

.pbottom-70 {
  padding-bottom: 70px
}

.pbottom-50 {
  padding-bottom: 50px
}

.pbottom-30 {
  padding-bottom: 30px
}

.pbottom-15 {
  padding-bottom: 15px
}

.pbottom-10 {
  padding-bottom: 10px
}

.pbottom-5 {
  padding-bottom: 5px
}

.ptop-200 {
  padding-top: 200px
}

.ptop-150 {
  padding-top: 150px
}

.ptop-100 {
  padding-top: 100px
}

.ptop-70 {
  padding-top: 70px
}

.ptop-50 {
  padding-top: 50px
}

.ptop-30 {
  padding-top: 30px
}

.ptop-15 {
  padding-top: 15px
}

.ptop-10 {
  padding-top: 10px
}

.ptop-5 {
  padding-top: 5px
}

.sp-br {
  display: none
}

.br-sp {
  display: block
}

.slideshow {
  position: absolute;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0
}

.slideshow-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  animation-name: kenburns;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 25s;
  opacity: 1;
  transform: scale(1.4)
}

.slideshow-image:nth-child(1) {
  animation-name: kenburns-1;
  z-index: 3
}

.slideshow-image:nth-child(2) {
  animation-name: kenburns-2;
  z-index: 2
}

.slideshow-image:nth-child(3) {
  animation-name: kenburns-3;
  z-index: 1
}

.slideshow-image:nth-child(4) {
  animation-name: kenburns-4;
  z-index: -1
}

@keyframes kenburns-1 {
  0% {
    opacity: 1;
    transform: scale(1.4)
  }
  1.5625% {
    opacity: 1
  }
  23.4375% {
    opacity: 1
  }
  26.5625% {
    opacity: 0;
    transform: scale(1.1)
  }
  100% {
    opacity: 0;
    transform: scale(1.2)
  }
}

@keyframes kenburns-2 {
  23.4375% {
    opacity: 1;
    transform: scale(1.4)
  }
  26.5625% {
    opacity: 1
  }
  48.4375% {
    opacity: 1
  }
  51.5625% {
    opacity: 0;
    transform: scale(1.1)
  }
  100% {
    opacity: 0;
    transform: scale(1.2)
  }
}

@keyframes kenburns-3 {
  48.4375% {
    opacity: 1;
    transform: scale(1.4)
  }
  51.5625% {
    opacity: 1
  }
  73.4375% {
    opacity: 1
  }
  76.5625% {
    opacity: 0;
    transform: scale(1.1)
  }
  100% {
    opacity: 0;
    transform: scale(1.2)
  }
}

@keyframes kenburns-4 {
  73.4375% {
    opacity: 1;
    transform: scale(1.4)
  }
  76.5625% {
    opacity: 1
  }
  98.4375% {
    opacity: 1
  }
  100% {
    opacity: 0;
    transform: scale(1.1)
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1.1)
  }
  100% {
    transform: scale(1.1)
  }
}

.add-animation {
  animation: zoomUp 10s linear 0s normal both
}

.zoomIn img {
  transform: scale(1.1);
  transition: .7s ease-in-out
}

.zoomIn a:hover img {
  transform: scale(1.1)
}

.logo-2 {
  width: 50%;
  max-width: 600px;
  position: absolute;
  bottom: 37%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.map-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #f0f0f0;
  margin: 0 auto
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0
}

@media screen and (max-width: 1279px) {
  .container {
    padding: 0 25px
  }
  .mbottom-5 {
    margin-bottom: 3px
  }
  .mbottom-10 {
    margin-bottom: 5px
  }
  .mbottom-15 {
    margin-bottom: 7px
  }
  .mbottom-30 {
    margin-bottom: 15px
  }
  .mbottom-50 {
    margin-bottom: 25px
  }
  .mbottom-70 {
    margin-bottom: 35px
  }
  .mbottom-100 {
    margin-bottom: 50px
  }
  .mtop-200 {
    margin-top: 100px
  }
  .mtop-100 {
    margin-top: 50px
  }
  .mtop-70 {
    margin-top: 35px
  }
  .mtop-50 {
    margin-top: 25px
  }
  .mtop-30 {
    margin-top: 15px
  }
  .mtop-15 {
    margin-top: 7px
  }
  .mtop-10 {
    margin-top: 5px
  }
  .mtop-5 {
    margin-top: 3px
  }
  .pbottom-200 {
    padding-bottom: 100px
  }
  .pbottom-100 {
    padding-bottom: 50px
  }
  .pbottom-70 {
    padding-bottom: 35px
  }
  .pbottom-50 {
    padding-bottom: 25px
  }
  .pbottom-30 {
    padding-bottom: 15px
  }
  .pbottom-15 {
    padding-bottom: 7px
  }
  .pbottom-10 {
    padding-bottom: 5px
  }
  .pbottom-5 {
    padding-bottom: 3px
  }
  .ptop-200 {
    padding-top: 100px
  }
  .ptop-150 {
    padding-top: 75px
  }
  .ptop-100 {
    padding-top: 50px
  }
  .ptop-70 {
    padding-top: 35px
  }
  .ptop-50 {
    padding-top: 25px
  }
  .ptop-30 {
    padding-top: 15px
  }
  .ptop-15 {
    padding-top: 7px
  }
  .ptop-10 {
    padding-top: 5px
  }
  .ptop-5 {
    padding-top: 3px
  }
}

@media screen and (max-width: 1080px) {
  li {
    display: inline;
    margin: 0 auto;
    font-size: 15px
  }
  .logo-2 {
    width: 90%;
    max-width: 800px;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%)
  }
  @media screen and (max-width: 767px) {
    .floating-banner {
      display: none
    }
.title3 {
  font-size: 1.1em
}
    .btn {
      width: 350px;
      border-radius: 1.5vh;
      font-size: 1em;
    }
    .title {
      font-size: 1.2em;
      letter-spacing: 0.1em
    }
    .title-2 {
      font-size: 1.5em;
    }
    .title-2b {
      font-size: 1.5em;
    }
    .main-title {
      font-size: 1.6em;
      letter-spacing: 0.2em
    }
    .heading-1 {
      font-size: 1.1em;
    }
    .side-image {
      max-width: 70px;
      height: auto
    }
    .svg-container {
      left: 5%;
      width: 30%;
      max-width: 400px
    }
    .image-container img {
      width: 90%
    }
    .lead-2 {
      font-size: 17px
    }
    .lead-3 {
      font-size: 17px
    }
    .annotation {
      text-align: left
    }
    .br-sp {
      display: none
    }
    .sp-view {
      display: block
    }
    .floating-banner {
      display: block;
      width: 100vw;
      bottom: 0;
      right: 0
    }
    .header-logo {
      width: 60px
    }
    .btn {
      padding: 1rem 2rem;
      width: 250px
    }
    .address {
      font-size: 15px
    }
    .navi-row {
      margin: 15px auto
    }
    .navi {
      display: flex;
      flex-flow: column
    }
    #footer .navi {
      display: flex;
      flex-wrap: wrap;
      font-size: 15px
    }
    #footer .navi li {
      margin: 0 auto;
      font-size: 15px
    }
    #footer .sns-navi li {
      font-size: 30px;
      display: flex
    }
    #footer .sitenavi {
      width: 100%;
      text-align: center;
      font-size: 15px
    }
    #footer .copyright {
      font-size: 15px
    }
    .mbottom-15 {
      margin-bottom: 1.5vw
    }
    .mbottom-30 {
      margin-bottom: 2vw
    }
    .mbottom-50 {
      margin-bottom: 5vw
    }
    .mbottom-70 {
      margin-bottom: 7vw
    }
    .mbottom-100 {
      margin-bottom: 10vw
    }
    .mtop-200 {
      margin-top: 20vw
    }
    .mtop-100 {
      margin-top: 10vw
    }
    .mtop-70 {
      margin-top: 7vw
    }
    .mtop-50 {
      margin-top: 5vw
    }
    .mtop-30 {
      margin-top: 2vw
    }
    .mtop-15 {
      margin-top: 1.5vw
    }
    .pbottom-200 {
      padding-bottom: 20vw
    }
    .pbottom-100 {
      padding-bottom: 10vw
    }
    .pbottom-70 {
      padding-bottom: 7vw
    }
    .pbottom-50 {
      padding-bottom: 5vw
    }
    .pbottom-30 {
      padding-bottom: 3vw
    }
    .pbottom-15 {
      padding-bottom: 1.5vw
    }
    .ptop-200 {
      padding-top: 20vw
    }
    .ptop-100 {
      padding-top: 10vw
    }
    .ptop-70 {
      padding-top: 7vw
    }
    .ptop-50 {
      padding-top: 5vw
    }
    .ptop-30 {
      padding-top: 3vw
    }
    .ptop-15 {
      padding-top: 1.5vw
    }
    .ptop-150 {
      padding-top: 15vw
    }
    .container {
      padding: 0 5vw
    }
    .flex:last-child {
      margin-bottom: 0
    }
    .flex-col2 {
      width: 100%
    }
    .flex-col2:first-child {
      margin-bottom: 2vw
    }
    .flex-col3 {
      width: 100%
    }
    .flex-col3:nth-child(-n+2) {
      margin-bottom: 5vw
    }
    .flex-left {
      margin-bottom: 5vw;
      width: 100%
    }
    .flex-right {
      width: 100%
    }
    .flex-row-reverse {
      flex-direction: row
    }
    .sp-br {
      display: block
    }
    #footer {
      padding: 30px 15px
    }
    #footer .logo a {
      font-size: 1.5em
    }
    .navi,
    .sns-navi {
      flex-direction: column;
      align-items: center
    }
    .navi li,
    .sns-navi li {
      margin: 10px 0
    }
    .navi li a {
      padding: 10px 0;
      line-height: 1.6
    }
    .sns-navi {
      flex-direction: row;
      justify-content: center
    }
    .sns-navi li {
      margin: 10px 15px
    }
    .sns-navi li a {
      font-size: 1.2em
    }
    .address br.sp-br {
      display: none
    }
    .copyright {
      margin-top: 20px
    }
  }
  @media(min-width: 768px) {
    a[href^="tel:"] {
      pointer-events: none
    }
  }
  @media(max-width: 525px) {
    .heading-1 {
      font-size: 14px;
      letter-spacing: .1em
    }
    .heading-2 {
      font-size: 14px;
      letter-spacing: .1em;
    }
  }