@charset "UTF-8";
.appear.up .item {
  transform: translateY(6px);
}

.appear.down .item {
  transform: translateY(-6px);
}

.appear.left .item {
  transform: translateX(40px);
}

.appear.right .item {
  transform: translateX(-40px);
}

.appear .item {
  transition: all 0.8s;
  opacity: 0;
}
.appear.inview .item {
  opacity: 1;
  transform: none;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.3s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.9s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 1.2s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 1.5s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 1.8s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 2.1s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 2.4s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 2.7s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 3s;
}

.btn {
  position: relative;
  display: inline-block;
  background-color: white;
  border: 1px solid black;
  font-weight: 600;
  font-size: 16px;
  padding: 17px 30px;
  margin: 10px auto;
  cursor: pointer;
  transition: all 0.3s;
  color: white;
  text-decoration: none !important;
  border-radius: 30px;
  background: linear-gradient(to right, #069940, #69c024);
  background: -webkit-linear-gradient(left, #069940, #69c024);
}
.btn.float:hover {
  background-color: black;
  color: white;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}
.btn.filled {
  background-color: black;
  color: white;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}
.btn.filled:hover {
  background-color: white;
  color: black;
  box-shadow: none;
}
.btn.letter-spacing:hover {
  background-color: black;
  letter-spacing: 3px;
  color: white;
}
.btn.shadow {
  box-shadow: none;
}
.btn.shadow:hover {
  transform: translate(-2.5px, -2.5px);
  box-shadow: 5px 5px 0 0 black;
}
.btn.solid {
  box-shadow: 2px 2px 0 0 black;
  border-radius: 7px;
}
.btn.solid:hover {
  transform: translate(2px, 2px);
  box-shadow: none;
}
.btn.slide-bg {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn.slide-bg::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.3s;
  z-index: -1;
}
.btn.slide-bg:hover {
  color: white;
}
.btn.slide-bg:hover::before {
  transform: none;
}
.btn.cover-3d {
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
  perspective: 300px;
}
.btn.cover-3d span {
  display: inline-block;
  transform: translateZ(20px);
}
.btn.cover-3d::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateX(90deg);
  transition: all 0.3s;
  transform-origin: top center;
  opacity: 0;
}
.btn.cover-3d:hover {
  color: white;
}
.btn.cover-3d:hover::before {
  transform: none;
  opacity: 1;
}

.btn-cubic {
  position: relative;
  display: inline-block;
  transform-style: preserve-3d;
  perspective: 300px;
  width: 150px;
  height: 50px;
  margin: 0 auto;
  cursor: pointer;
  font-weight: 600;
}
.btn-cubic span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid black;
  line-height: 48px;
  text-align: center;
  transition: all 0.3s;
  transform-origin: center center -25px;
}
.btn-cubic .hovering {
  background-color: black;
  color: white;
  transform: rotateX(90deg);
}
.btn-cubic .default {
  background-color: white;
  color: black;
  transform: rotateX(0);
}
.btn-cubic:hover .hovering {
  transform: rotateX(0);
}
.btn-cubic:hover .default {
  transform: rotateX(-90deg);
}

.hero {
  overflow: hidden;
  padding-top: 100px;
}

.swiper {
  overflow: visible !important;
}
.swiper .swiper-slide {
  height: 500px;
  overflow: hidden;
}
.swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.3);
  transition: transform 1.9s ease;
}
.swiper .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 61, 125, 0.1);
}
.swiper .swiper-slide-active img {
  transform: none;
}
.swiper .swiper-slide-active .hero__title {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.swiper .hero__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 20px));
  color: white;
  font-size: 25px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease 1s, transform 0.3s ease 1s;
}
.swiper .hero__footer {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-indeX: 2;
  height: 68px;
  width: 22px;
  overflow: hidden;
}
.swiper .hero__downarrow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 6px;
  animation-name: kf-arrow-anime;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.swiper .hero__scrolltext {
  position: absolute;
  transform: rotate(90deg);
  color: rgba(255, 255, 255, 0.7);
  left: -8px;
  top: 11px;
  font-size: 1.2em;
}
@keyframes kf-arrow-anime {
  0%, 50%, 100% {
    transform: translateY(-10%);
  }
  30% {
    transform: none;
  }
}

.menu {
  overflow: hidden;
}

.swiperslide {
  overflow: visible !important;
}
.swiperslide .swiper-slide {
  height: 300px;
  overflow: hidden;
}
.swiperslide .swiper-slide img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.3);
  transition: transform 1.9s ease;
}
.swiperslide .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 61, 125, 0.1);
}
.swiperslide .swiper-slide-active img {
  transform: none;
}
.swiperslide .swiper-slide-active .hero__title,
.swiperslide .swiper-slide-active .herosub__title,
.swiperslide .swiper-slide-active .price {
  opacity: 1;
}
.swiperslide .hero__title,
.swiperslide .herosub__title,
.swiperslide .price {
  color: white;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease 0.5s;
}
.swiperslide .hero__title {
  position: absolute;
  top: 83%;
  right: 2%;
}
.swiperslide .price {
  position: absolute;
  top: 90%;
  right: 2%;
  text-decoration: underline;
}

.animate-title,
.tween-animate-title {
  opacity: 0;
}
.animate-title.inview,
.tween-animate-title.inview {
  opacity: 1;
}
.animate-title.inview .char,
.tween-animate-title.inview .char {
  display: inline-block;
}
.animate-title .char,
.tween-animate-title .char {
  opacity: 0;
}

.animate-title.inview .char {
  animation-name: kf-animate-chars;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.animate-title.inview .char:nth-child(1) {
  animation-delay: 0.04s;
}
.animate-title.inview .char:nth-child(2) {
  animation-delay: 0.08s;
}
.animate-title.inview .char:nth-child(3) {
  animation-delay: 0.12s;
}
.animate-title.inview .char:nth-child(4) {
  animation-delay: 0.16s;
}
.animate-title.inview .char:nth-child(5) {
  animation-delay: 0.2s;
}
.animate-title.inview .char:nth-child(6) {
  animation-delay: 0.24s;
}
.animate-title.inview .char:nth-child(7) {
  animation-delay: 0.28s;
}
.animate-title.inview .char:nth-child(8) {
  animation-delay: 0.32s;
}
.animate-title.inview .char:nth-child(9) {
  animation-delay: 0.36s;
}
.animate-title.inview .char:nth-child(10) {
  animation-delay: 0.4s;
}
.animate-title.inview .char:nth-child(11) {
  animation-delay: 0.44s;
}
.animate-title.inview .char:nth-child(12) {
  animation-delay: 0.48s;
}
.animate-title.inview .char:nth-child(13) {
  animation-delay: 0.52s;
}
.animate-title.inview .char:nth-child(14) {
  animation-delay: 0.56s;
}
.animate-title.inview .char:nth-child(15) {
  animation-delay: 0.6s;
}
.animate-title.inview .char:nth-child(16) {
  animation-delay: 0.64s;
}
.animate-title.inview .char:nth-child(17) {
  animation-delay: 0.68s;
}
.animate-title.inview .char:nth-child(18) {
  animation-delay: 0.72s;
}
.animate-title.inview .char:nth-child(19) {
  animation-delay: 0.76s;
}
.animate-title.inview .char:nth-child(20) {
  animation-delay: 0.8s;
}
.animate-title.inview .char:nth-child(21) {
  animation-delay: 0.84s;
}
.animate-title.inview .char:nth-child(22) {
  animation-delay: 0.88s;
}
.animate-title.inview .char:nth-child(23) {
  animation-delay: 0.92s;
}
.animate-title.inview .char:nth-child(24) {
  animation-delay: 0.96s;
}
.animate-title.inview .char:nth-child(25) {
  animation-delay: 1s;
}
.animate-title.inview .char:nth-child(26) {
  animation-delay: 1.04s;
}
.animate-title.inview .char:nth-child(27) {
  animation-delay: 1.08s;
}
.animate-title.inview .char:nth-child(28) {
  animation-delay: 1.12s;
}
.animate-title.inview .char:nth-child(29) {
  animation-delay: 1.16s;
}
.animate-title.inview .char:nth-child(30) {
  animation-delay: 1.2s;
}

@keyframes kf-animate-chars {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.cover-slide {
  position: relative;
  overflow: hidden;
}
.cover-slide::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #eaebe6;
  opacity: 0;
}
.cover-slide.inview::after {
  opacity: 1;
  animation-name: kf-cover-slide;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes kf-cover-slide {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.1% {
    transform-origin: right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.img-zoom, .bg-img-zoom {
  opacity: 0;
}
.inview .img-zoom, .inview .bg-img-zoom {
  opacity: 1;
  transition: transform 0.3s ease;
  animation-name: kf-img-show;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}
.inview .img-zoom:hover, .inview .bg-img-zoom:hover {
  transform: scale(1.05);
}

@keyframes kf-img-show {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  50.1% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
  }
}
.hover-darken::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: background-color 0.3s ease;
  pointer-events: none;
  animation-name: kf-img-show;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}
.hover-darken:hover::before {
  background-color: rgba(0, 0, 0, 0.4);
}

.bg-img-zoom {
  background-image: url(images/image-1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}

.img-bg50 {
  position: relative;
}
.img-bg50::before {
  display: block;
  content: "";
  padding-top: 50%;
}

label {
  margin-bottom: none !important;
}

/*------------------------------

  ここから下がハンバーガーメニュー
  に関するCSS

------------------------------*/
/* チェックボックスは非表示に */
.drawer-hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer-open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100; /* 重なり順を一番上に */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: "";
  display: block;
  height: 3px;
  width: 35px;
  border-radius: 3px;
  background: #06993f;
  transition: 0.7s;
  position: absolute;
}

/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
  bottom: 11px;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
  top: 11px;
  width: 30px;
}

.drawer-open span {
  width: 20px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
  width: 35px;
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* メニューのデザイン*/
.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 100px;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.9);
  transition: 0.5s;
}

.drawer-item {
  list-style: none;
  padding: 0 40px;
}
.drawer-item:hover a {
  color: #06993f;
}
.drawer-item a {
  text-decoration: none !important;
  color: black;
  margin-top: 30px;
  display: block;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
  left: 0; /* メニューを画面に入れる */
}

/******************************************************************

Stylesheet: ベーススタイル

******************************************************************/
body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fcfbf8;
}

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

.font-sm, .sub-title {
  font-size: 14px;
}

.font-md, .footer__li, .header__li {
  font-size: 17px;
}

.font-lr {
  font-size: 17px;
}

.font-lm, .appoint__item h3, .swiperslide .hero__title, .swiperslide .price {
  font-size: 20px;
}

.font-lg, .main-title {
  font-size: 25px;
}

.mb-sm, .appoint__title {
  margin-bottom: 16px !important;
}

.mb-lg, .trouble, .news, .medium, .survice, .high, .key, .tonarisk {
  margin-bottom: 80px !important;
}

.pb-sm {
  padding-bottom: 16px !important;
}

.pb-lg, .hero {
  padding-bottom: 80px !important;
}

.content-width, .footer, .appoint__inner, .appoint__title, .trouble, .news, .medium__container, .medium__title, .survice, .high, .key, .tonarisk, .header__inner {
  width: 84%;
  margin: 0 auto;
  max-width: 1200px;
}

a.anchor {
  display: block;
  padding-top: 200px;
  margin-top: -200px;
}

.main-title {
  font-weight: 600;
  margin-bottom: 30;
  display: block;
}

.sub-title {
  color: #06993f;
}

.flex {
  display: flex;
  flex-direction: column;
}

.purple {
  color: #904669;
}

#main-content {
  position: relative;
  z-index: 0;
}

main {
  position: relative;
  z-index: -1;
}

#container {
  transition: transform 0.5s, box-shadow 0.5s;
  background-color: white;
  position: relative;
  z-index: 10;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: transparent;
  display: flex;
  align-items: center;
  z-index: 100;
}
.header.triggered {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
}
.header__nav {
  display: none;
}
.header__ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  align-items: center;
}
.header__li {
  padding: 0;
  margin-left: 50px;
  font-weight: bold;
}
.header__li:hover > a {
  color: #06993f;
}
.header__li > a {
  color: #333333;
  text-decoration: none !important;
  text-transform: uppercase;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header #situ {
  background: url(../images/ヘッダーアイコン.png) no-repeat 14px center;
  background-image: url(../images/ヘッダーアイコン.png);
}

.tonarisk {
  padding-top: 110px;
}
.tonarisk__img {
  display: none;
  margin-bottom: 25px;
  height: 550px;
}
.tonarisk__img > img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.tonarisk__title {
  padding-top: 60px;
  text-align: center;
  font-size: 50px;
  font-weight: bold;
}
.tonarisk__title span {
  color: #06993f;
}
.tonarisk__title h1 {
  font-size: 45px;
}

.key__item {
  position: relative;
  margin-bottom: 50px;
}
.key__content {
  position: relative;
}
.key__day {
  font-size: 22px;
  color: #333333;
  line-height: 1.8;
}
.key__day span {
  color: #06993f;
  font-weight: bold;
}
.key__text {
  margin-bottom: 30px;
  font-size: 16px;
  text-align: start;
}
.key__img {
  margin-bottom: 25px;
  height: 300px;
}
.key__img > img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.key__title {
  padding-top: 60px;
  text-align: center;
}
.key__title .sub-title {
  margin-bottom: 55px;
}

.high__item {
  position: relative;
  margin-bottom: 50px;
}
.high__content {
  position: relative;
}
.high__house {
  position: absolute;
  top: -20%;
  right: -9%;
  z-index: -1;
}
.high__htitle {
  font-size: 20px;
  font-weight: bold;
  margin-top: 14px;
  margin-bottom: 30px;
  color: #333333;
}
.high__day {
  font-size: 14px;
  color: #06993f;
  font-weight: bold;
  padding: 5px;
  border: 1px solid #535353;
  border-radius: 10px;
  width: 155px;
  margin: 0 auto;
}
.high__text {
  margin-bottom: 30px;
  font-size: 16px;
  text-align: start;
}
.high__img {
  margin-bottom: 25px;
  height: 430px;
}
.high__img > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.high__title {
  padding-top: 60px;
  text-align: center;
  margin-bottom: 40px;
}
.high__title .sub-title {
  margin-bottom: 100px;
}
.high__btn {
  text-align: center;
}
.high #high__content750 {
  display: none;
}

.survice__item {
  position: relative;
  margin-bottom: 50px;
}
.survice__content {
  background-color: white;
  height: 305px;
  text-align: center;
  width: 50%;
  position: absolute;
  top: 0%;
  left: 0%;
  border-radius: 30px;
  padding-top: 50px;
}
.survice__htitle {
  font-size: 22px;
  font-weight: bold;
  margin-top: 19px;
  margin-bottom: 13px;
  color: #333333;
}
.survice__day {
  font-size: 14px;
  color: #06993f;
  font-weight: bold;
  padding: 5px;
  border: 1px solid #535353;
  border-radius: 10px;
  width: 144px;
  margin: 0 auto;
}
.survice__text {
  margin-bottom: 30px;
  font-size: 16px;
}
.survice__img {
  margin-bottom: 13px;
  height: 305px;
  z-index: -1;
}
.survice__img > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.survice__title {
  padding-top: 60px;
  margin-bottom: 55px;
  text-align: center;
}
.survice button {
  font-size: 11px;
}

.medium {
  background-image: url("../images/medium背景.png");
  padding-bottom: 30px;
}
.medium__item {
  color: white;
}
.medium__htitle {
  font-size: 20px;
}
.medium__day {
  margin-bottom: 5px;
  font-size: 14px;
}
.medium__text {
  margin-bottom: 30px;
  font-size: 16px;
}
.medium__img {
  margin-bottom: 13px;
  height: 305px;
}
.medium__img > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.medium__title {
  padding-top: 60px;
  margin-bottom: 55px;
  text-align: center;
  color: white;
}
.medium__title .sub-title {
  color: white;
}
.medium__container {
  margin-bottom: 40px;
}
.medium__btn {
  text-align: center;
}
.medium #white {
  color: #06993f;
  background: linear-gradient(to right, white, white);
  background: -webkit-linear-gradient(left, white, white);
}

.news__title {
  margin-bottom: 65px;
  text-align: center;
}
.news__table {
  margin-bottom: 50px;
}
.news__table #topnews {
  background-color: #f9f7f0;
}
.news__table tr {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-bottom: 1px solid #f1edde;
}
.news__table tr th {
  padding-top: 40px;
  margin-bottom: 20px;
}
.news__table tr td {
  padding-bottom: 40px;
}
.news__table tr th, .news__table tr td {
  padding-left: 40px;
  padding-right: 40px;
}

.trouble__btn {
  text-align: center;
}
.trouble__title {
  margin-bottom: 65px;
  text-align: center;
}
.trouble__table {
  margin-bottom: 50px;
}
.trouble__table #toptrouble {
  background-color: #f9f7f0;
}
.trouble__table tr {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-bottom: 1px solid #f1edde;
}
.trouble__table tr th {
  padding-top: 40px;
  margin-bottom: 20px;
}
.trouble__table tr td {
  padding-bottom: 40px;
}
.trouble__table tr th, .trouble__table tr td {
  padding-left: 40px;
  padding-right: 40px;
}

.appoint {
  color: white;
  text-align: center;
  background-image: url("../images/お問い合わせ背景.png");
  padding-bottom: 100px;
}
.appoint__title {
  padding-top: 80px;
  text-align: center;
}
.appoint .sub-title {
  margin-bottom: 40px;
  color: white;
}
.appoint__tel {
  text-decoration: underline;
  text-align: center;
}
.appoint__text {
  text-align: start;
  margin-bottom: 40px;
}
.appoint__nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.appoint__item {
  margin-bottom: 30px;
  flex-basis: 45%;
}
.appoint__item h2 {
  margin-bottom: 0;
}
.appoint__item:nth-child(1) {
  border-bottom: black dotted 1px;
}
.appoint__for {
  color: white;
  text-decoration-line: underline;
}
.appoint__res {
  margin-bottom: 0;
  padding-top: 10px;
}
.appoint #form {
  padding: 40px, 50px;
}

#appoint__none {
  display: none;
  background-color: white;
  color: black;
  border-radius: 30px;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.footer {
  padding: 60px 0;
  text-align: center;
}
.footer .logo {
  margin-bottom: 30px;
}
.footer__nav p {
  color: #CCCCCC;
  text-align: center;
}
.footer__tona {
  margin-bottom: 0;
}
.footer__place {
  margin-bottom: 30px;
}
.footer__ul {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 30px;
}
.footer__li {
  padding: 0;
  margin-bottom: 15px;
  font-weight: bold;
}
.footer__li:hover > a {
  color: #06993f;
}
.footer__li > a {
  color: #333333;
  text-decoration: none !important;
  text-transform: uppercase;
}

.logo {
  font-size: 230px;
  display: flex;
  justify-content: start;
  text-align: center;
}
.logo__img {
  width: 0.7em;
}
.logo p {
  font-size: 12px;
  display: none;
}

@media (min-width: 480px) {
  /******************************************************************

  Stylesheet: 480px以上(スマホの横向き)のモニタで適用

  ******************************************************************/
}
@media (min-width: 600px) {
  /******************************************************************

  Stylesheet: 600px以上のタブレットやモニタで適用

  ******************************************************************/
  .flex {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .liquor__inner {
    justify-content: space-between;
  }
  .liquor__item {
    flex-basis: 47%;
    margin-bottom: 60px;
  }
  .tonarisk__title h1 {
    font-size: 1.5em;
  }
  .key__img {
    height: 550px;
  }
  .high .sub-title {
    margin-bottom: 55px;
  }
  .survice__day {
    font-size: 22px;
    width: 139px;
  }
  .appoint__item:nth-child(1) {
    border-bottom: none;
  }
  .header .logo {
    justify-content: flex-start;
  }
}
@media (min-width: 750px) {
  /******************************************************************

  Stylesheet: 960px以上のモニタで適用

  ******************************************************************/
  .font-sm, .sub-title {
    font-size: 16px;
  }
  .font-md, .header__li, .footer__li {
    font-size: 19px;
  }
  .font-lr {
    font-size: 23px;
  }
  .font-lm, .swiperslide .hero__title, .swiperslide .price, .appoint__item h3 {
    font-size: 28px;
  }
  .font-lg, .main-title {
    font-size: 36px;
  }
  .mb-lg, .tonarisk, .key, .high, .survice, .medium, .news, .trouble {
    margin-bottom: 150px !important;
  }
  .pb-lg, .hero {
    padding-bottom: 150px !important;
  }
  a.anchor {
    display: block;
    padding-top: 150px;
    margin-top: -150px;
  }
  .tonarisk__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .tonarisk__title {
    flex-basis: 45%;
  }
  .tonarisk__img {
    flex-basis: 45%;
    display: block;
  }
  .key__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .key__img {
    flex-basis: 45%;
    height: 370px;
  }
  .key__content {
    flex-basis: 45%;
  }
  .key__day {
    line-height: 2.2;
  }
  .survice__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .survice__item {
    flex-basis: 45%;
  }
  .survice__content {
    height: 320px;
  }
  .survice__img {
    height: 320px;
  }
  .survice button {
    font-size: 13px;
  }
  .high__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .high__content {
    display: none;
  }
  .high__title {
    flex-basis: 45%;
  }
  .high #high__content750 {
    display: block;
    flex-basis: 45%;
  }
  .medium__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .medium__item {
    flex-basis: 30%;
  }
  .medium__img {
    height: 200px;
  }
  .news__table tr {
    flex-direction: row;
  }
  .news__table tr th {
    padding-top: 35px;
  }
  .news__table tr td {
    padding-top: 32px;
    padding-bottom: 20px;
  }
  .trouble__table tr {
    flex-direction: row;
  }
  .trouble__table tr th {
    padding-top: 35px;
  }
  .trouble__table tr td {
    padding-top: 32px;
    padding-bottom: 20px;
  }
  .appoint__nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .appoint__for {
    display: none;
  }
  .appoint #appoint__none {
    display: block;
  }
  .appoint__time {
    font-size: 12px;
  }
  .appoint__item button {
    font-size: 16px;
    padding: 40px 55px;
  }
  .header__nav {
    display: block;
  }
  .drawer {
    display: none;
  }
  .mobile-menu__btn {
    display: none;
  }
  .swiper-slide {
    box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
  }
}
@media (min-width: 1280px) {
  /******************************************************************

  Stylesheet: 1280px以上のモニタで適用

  ******************************************************************/
  .popular__item {
    flex-basis: 23%;
  }
  .seat__item {
    flex-basis: 23%;
  }
  .travel__inner {
    padding: 50px 150px;
  }
  .course__inner {
    padding: 50px 150px;
  }
  .side {
    display: block;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /******************************************************************

  Stylesheet: Retinaディスプレイで適用

  ******************************************************************/
  /* 

  EXAMPLE 
  .icon {
  	background: url(images/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }

  */
}
@media print {
  /******************************************************************

  Stylesheet: プリンタのみに適用

  ******************************************************************/
}/*# sourceMappingURL=style.css.map */