@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oooh+Baby&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap");
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #131313;
  font-family: "Noto Sans JP", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.5rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.1em;
}

a {
  color: #7b7b7b;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

#wrapper {
  overflow: hidden;
  position: relative;
}

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

.bold {
  font-weight: 600;
}

h2,
h3 {
  line-height: 1.4;
}
h2 .ja,
h3 .ja {
  font-weight: 600;
}

.u-txt {
  letter-spacing: 0.05rem;
}

.border-line {
  display: block;
  border-top: 2px dashed #464646;
  margin: 35px 0;
}

.mincho {
  font-family: "YakuHanMP", "Cinzel", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
}

/* animation
----------------------------------*/
@-webkit-keyframes view-zoomin {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes view-zoomin {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes view-slideup {
  0% {
    opacity: 0;
    transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes view-slideup {
  0% {
    opacity: 0;
    transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.animation {
  opacity: 0;
}

.slideup.on {
  opacity: 1;
  -webkit-animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
          animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.zoomin.on {
  opacity: 1;
  -webkit-animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
          animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.loader {
  align-items: center;
  background: #888888;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  perspective: 100px;
  width: 100%;
  height: 100vh;
}
.loader::after {
  -webkit-animation: loader 0.8s linear infinite;
          animation: loader 0.8s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  border: 1px solid #fefefe;
  border-radius: 50%;
  border-right: 1px solid rgba(243, 246, 246, 0.2);
  border-top: 1px solid rgba(243, 246, 246, 0.2);
  height: 80px;
  width: 80px;
}
.loader.off {
  display: none;
}

@-webkit-keyframes rotate {
  0% {
    transform: rotateY(0);
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    transform: rotateY(360deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotateY(0);
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    transform: rotateY(360deg);
  }
}
@-webkit-keyframes loader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading-panel {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0px;
  overflow: hidden;
}

.first.loading-panel {
  left: 0;
  top: 0;
  background: #5f5f5f;
  -webkit-animation: slide-in-top 10s ease-out infinite;
          animation: slide-in-top 10s ease-out infinite;
}

.second.loading-panel {
  right: 0;
  bottom: 0;
  background: #5f5f5f;
  -webkit-animation: slide-in-bottom 10s ease-out infinite;
          animation: slide-in-bottom 10s ease-out infinite;
}

/* Animations */
@-webkit-keyframes slide-in-left {
  0% {
    transform: translate(-100%);
  }
  10% {
    transform: translate(0);
  }
  80% {
    transform: translate(0);
  }
  90% {
    transform: translate(-100%);
  }
  100% {
    transform: translate(-100%);
  }
}
@keyframes slide-in-left {
  0% {
    transform: translate(-100%);
  }
  10% {
    transform: translate(0);
  }
  80% {
    transform: translate(0);
  }
  90% {
    transform: translate(-100%);
  }
  100% {
    transform: translate(-100%);
  }
}
@-webkit-keyframes slide-in-right {
  0% {
    transform: translate(100%);
  }
  10% {
    transform: translate(0);
  }
  80% {
    transform: translate(0);
  }
  90% {
    transform: translate(100%);
  }
  100% {
    transform: translate(100%);
  }
}
@keyframes slide-in-right {
  0% {
    transform: translate(100%);
  }
  10% {
    transform: translate(0);
  }
  80% {
    transform: translate(0);
  }
  90% {
    transform: translate(100%);
  }
  100% {
    transform: translate(100%);
  }
}
@-webkit-keyframes slide-in-bottom {
  0% {
    top: 0%;
  }
  10% {
    top: 0%;
  }
  15% {
    top: -100%;
  }
  75% {
    top: -100%;
  }
  80% {
    top: 0%;
  }
  100% {
    top: 0%;
  }
}
@keyframes slide-in-bottom {
  0% {
    top: 0%;
  }
  10% {
    top: 0%;
  }
  15% {
    top: -100%;
  }
  75% {
    top: -100%;
  }
  80% {
    top: 0%;
  }
  100% {
    top: 0%;
  }
}
@-webkit-keyframes slide-in-top {
  0% {
    top: 0%;
  }
  10% {
    top: 0%;
  }
  15% {
    top: 100%;
  }
  75% {
    top: 100%;
  }
  80% {
    top: 0%;
  }
  100% {
    top: 0%;
  }
}
@keyframes slide-in-top {
  0% {
    top: 0%;
  }
  10% {
    top: 0%;
  }
  15% {
    top: 100%;
  }
  75% {
    top: 100%;
  }
  80% {
    top: 0%;
  }
  100% {
    top: 0%;
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes late-fade {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes late-fade {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #888888;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}

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

/*画面遷移アニメーション*/
.splashbg {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleY(0);
  background-color: rgb(209, 183, 143); /*伸びる背景色の設定*/
  -webkit-animation-name: PageAnime;
          animation-name: PageAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes PageAnime {
  0% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
  50% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  51% {
    transform-origin: top;
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}

@keyframes PageAnime {
  0% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
  50% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  51% {
    transform-origin: top;
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0; /*はじめは透過0に*/
}

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

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

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.moviline {
  width: 50%;
  height: 1px;
  background-color: #5f5f5f;
  margin-left: auto;
  margin-right: 0;
  -webkit-animation: pathmove 3s ease-in-out infinite;
          animation: pathmove 3s ease-in-out infinite;
}

@-webkit-keyframes pathmove {
  0% {
    width: 0%;
    top: 0;
    opacity: 0;
  }
  50% {
    width: 60%;
    opacity: 1;
  }
  100% {
    width: 100%;
    top: 50px;
    opacity: 0;
  }
}

@keyframes pathmove {
  0% {
    width: 0%;
    top: 0;
    opacity: 0;
  }
  50% {
    width: 60%;
    opacity: 1;
  }
  100% {
    width: 100%;
    top: 50px;
    opacity: 0;
  }
}
/* header
----------------------------------*/
@-webkit-keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
#l-header {
  z-index: 200;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.2s ease-in;
  background: #fff;
}
#l-header:before {
  content: "";
  position: absolute;
  background: #fff;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}
#l-header.is-fixed {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
}
#l-header.is-fixed .head-right_contact {
  display: none;
}
#l-header.is-fixed .inner {
  padding: 10px 20px;
  transition: 0.8s;
}
#l-header.is-fixed #header_nav ul li .header_link {
  color: #333;
}
#l-header.is-fixed #header_nav ul li .header_link span {
  color: #5f5f5f;
}
#l-header .inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1900px;
  margin: 0 auto;
  padding: 10px 15px;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
#l-header .inner #logo {
  width: 230px;
  transition: all 0.2s ease-in;
}
#l-header .head-right {
  margin-left: auto;
  margin-right: 10px;
}
#l-header .head-right_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
  position: relative;
  padding-right: 40px;
}
@media all and (max-width: 1100px) {
  #l-header .head-right_contact {
    position: absolute;
    right: 20px;
    top: 30px;
    padding-right: 0;
  }
}
#l-header .head-right_txt {
  font-size: 12px;
  line-height: 1.6;
  margin-left: 15px;
  letter-spacing: 0.1rem;
  padding: 8px 10px;
  color: #111;
  border: 4px double #5f5f5f;
  background: #fff;
  right: 5px;
  top: 10px;
  line-height: 1.6;
}
#l-header .head-btn {
  background: #fff;
  margin-left: 10px;
}
#l-header .head-btn a {
  padding: 5px 6px;
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: #5f5f5f;
  position: relative;
}
@media all and (max-width: 1100px) {
  #l-header .head-btn a {
    padding: 5px 12px;
  }
}
#l-header .head-btn a i {
  margin-right: 3px;
}
@media all and (max-width: 1100px) {
  #l-header .head-btn a i {
    margin-right: auto;
  }
}
@media all and (max-width: 1100px) {
  #l-header .head-btn a {
    border: 1px solid #888888;
  }
}
#l-header .head-btn.head-tel a {
  background: #5f5f5f;
  color: #5f5f5f;
}
#l-header .head-btn.head-tel a:hover {
  background: #464646;
}
#l-header .head-btn.head-right_reserve a {
  background: #888888;
}
#l-header .head-btn.head-right_reserve a:hover {
  background: #6f6f6f;
}
#l-header .head-btn.head-right_access a {
  background: #888888;
  color: #fff;
}
#l-header .head-btn.head-right_access a:hover {
  background: #5f5f5f;
}
#l-header .head-right_tel a,
#l-header .head-right_mail a {
  display: block;
  padding: 4px 15px;
  transition: all 0.2s ease-in;
  background: #111;
  color: #fff;
  font-size: 1.4rem;
}
#l-header .head-right_tel a:before,
#l-header .head-right_mail a:before {
  margin-right: 5px;
}
#l-header .head-right_tel a {
  background: transparent;
  padding: 2px 15px 0;
  color: #fff;
  font-family: "Oooh Baby", cursive;
  font-weight: 600;
  width: auto;
  height: auto;
  background: #5f5f5f;
  font-size: 1.6rem;
  position: relative;
}
#l-header .head-right_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  font-size: 1.5rem;
}
#l-header .head-right_tel a:hover {
  color: #5f5f5f;
}
#l-header .head-right_mail {
  margin-left: 10px;
}
#l-header .head-right_mail a {
  font-family: "Oooh Baby", cursive;
  font-weight: 600;
  color: #fefefe;
}
#l-header .head-right_mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
#l-header .head-right_mail a:hover {
  background: #5f5f5f;
}
#l-header .head-right_lower {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
}

@media all and (max-width: 1100px) {
  .head-right_tel span,
.head-btn span {
    display: none;
  }
}

#header_nav {
  position: relative;
  width: 700px;
  transition: all 0.3s ease-in;
}
@media all and (max-width: 1100px) {
  #header_nav {
    width: 600px;
    margin: 0 auto;
  }
}
#header_nav.is-fixed {
  position: fixed;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 100;
}
#header_nav.is-fixed .header_link {
  color: #545454;
}
#header_nav ul {
  display: flex;
  flex-wrap: wrap;
  padding: 12px 0 7px;
  max-width: 1200px;
  margin: 0 auto;
}
#header_nav ul li {
  position: relative;
  flex: 1 0 auto;
}
@media all and (max-width: 1100px) {
  #header_nav ul li {
    text-align: center;
  }
}
#header_nav ul li .header_link {
  display: block;
  letter-spacing: 0.1em;
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
  color: #5f5f5f;
  text-align: center;
}
#header_nav ul li .header_link img {
  display: block;
  width: 30px;
  margin: 0 auto 4px;
}
#header_nav ul li .header_link span {
  display: block;
  font-size: 1.2rem;
  font-family: "Oooh Baby", cursive;
  font-weight: 600;
  color: #888888;
  position: relative;
  line-height: 1;
}
#header_nav ul li .header_link:after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background: #5f5f5f;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  transition: 0.2s width ease-in;
}
#header_nav ul li .header_link:hover:after, #header_nav ul li .header_link.active:after {
  width: 20px;
}
#header_nav ul li .sub-menu {
  display: none;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.055);
  display: none;
  margin: 0;
  opacity: 0;
  position: absolute;
  width: 165px;
  visibility: hidden;
  -webkit-transiton: opacity 0.2s;
  transition: opacity 0.2s;
  z-index: 1;
}
#header_nav ul li .sub-menu li {
  background-color: rgb(255, 255, 255);
  padding: 10px 15px 10px 30px;
  margin-bottom: 2px;
  position: relative;
  transition: 0.8s;
}
#header_nav ul li .sub-menu li:before {
  position: absolute;
  content: "";
  left: 17px;
  top: 15px;
  box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #888888;
}
#header_nav ul li .sub-menu li a {
  display: block;
  font-weight: normal;
  font-size: 1.2rem;
  color: #545454;
}
#header_nav ul li .sub-menu li:hover {
  background-color: rgb(230, 225, 220);
}
#header_nav ul li:hover .sub-menu, #header_nav ul li.active .sub-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transition: 0.8s;
}
#header_nav .dropdown {
  display: none;
  position: absolute;
  left: -10px;
  top: 25px;
  z-index: 999;
  padding-top: 30px;
}
#header_nav .dropdown .dropdown-li {
  border-right: 0;
  margin: 0;
  background: #fff;
  border-bottom: 1px solid #5f5f5f;
}
#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 150px;
  padding: 8px;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  color: #fff;
  background: #111;
  font-weight: normal;
}
#header_nav .dropdown .dropdown-li a:hover {
  color: #5f5f5f;
}
#header_nav .dropdown .dropdown-li a:after {
  display: none;
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 7px;
  z-index: 200;
}
#page-top a {
  display: block;
  background: #5f5f5f;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  text-align: center;
}
#page-top a:hover {
  opacity: 0.6;
}
@media all and (max-width: 896px) {
  #page-top {
    display: none;
  }
}

/* swiper
----------------------------------*/
@-webkit-keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}
@-webkit-keyframes slideIn {
  0% {
    transform: translate(-100vw, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes slideIn {
  0% {
    transform: translate(-100vw, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    background: rgba(255, 255, 255, 0.5);
  }
  100% {
    background: rgba(255, 255, 255, 0.9);
  }
}
@keyframes fadeIn {
  0% {
    background: rgba(255, 255, 255, 0.5);
  }
  100% {
    background: rgba(255, 255, 255, 0.9);
  }
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  -webkit-animation: zoom-in 11s linear 0s 1 normal both;
          animation: zoom-in 11s linear 0s 1 normal both;
}

.swiper-slide {
  position: relative;
}
.swiper-slide:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  right: 0;
  top: 0;
  background-position: 50%;
  background-size: cover;
  z-index: -1;
}
.swiper-slide.slide1:before {
  background-image: url(../img/1.jpg);
  background-position: 60% 50%;
}
.swiper-slide.slide2:before {
  background-image: url(../img/2.jpg);
  background-position: 50% 50%;
}
.swiper-slide.slide3:before {
  background-image: url(../img/3.jpg);
  background-position: 90% 50%;
}

.slide-img {
  overflow: hidden;
  width: 100%;
  height: 90vh;
  margin: 0 auto;
}
.slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 1100px) {
  .slide-img {
    height: 65vw;
  }
}
@media screen and (max-width: 890px) and (orientation: landscape) {
  .slide-img {
    height: 90vh;
  }
}
@media all and (max-width: 639px) {
  .slide-img {
    height: 60vh;
  }
}

#slide-wrap {
  position: relative;
}

#slideshow {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
#slideshow:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(51, 51, 51, 0.4);
}

.slide-txt {
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  width: 40%;
  padding: 30px 25px;
  z-index: 20;
  background-image: linear-gradient(69deg, transparent 0%, rgba(255, 255, 255, 0.6) 20%, #fff 50%, rgba(255, 255, 255, 0.6) 80%, transparent 100%);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  text-align: center;
}
@media all and (max-width: 1100px) {
  .slide-txt {
    width: 55%;
  }
}
@media all and (max-width: 639px) {
  .slide-txt {
    padding: 20px 10px;
    width: 80%;
  }
}
.slide-txt:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 10px;
  left: 10px;
  border: 0.9px solid #fff;
  opacity: 0.7;
}
@media all and (max-width: 639px) {
  .slide-txt:before {
    top: 5px;
    left: 5px;
  }
}

.slide-fixed {
  position: absolute;
  left: 50%;
  bottom: 2%;
  transform: translateX(-50%);
  width: 500px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  z-index: 20;
}
@media all and (max-width: 896px) {
  .slide-fixed {
    width: 50%;
  }
}
.slide-fixed li {
  width: 31%;
}
@media all and (max-width: 639px) {
  .slide-fixed {
    width: 60%;
  }
}

#catch {
  z-index: 50;
  position: absolute;
  margin: 0 auto;
  text-align: center;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  transition: opacity 2s cubic-bezier(0.18, 0.06, 0.23, 1);
  opacity: 1;
}
#catch.on {
  opacity: 1;
}
@media all and (max-width: 639px) {
  #catch {
    width: 70%;
  }
}
@media all and (max-width: 400px) {
  #catch {
    width: 92%;
  }
}

.top-subarea {
  position: absolute;
  bottom: 10%;
  left: 0;
  z-index: 3;
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .top-subarea {
    bottom: -90px;
  }
}
@media all and (max-width: 400px) {
  .top-subarea {
    bottom: -80px;
  }
}
.top-subarea .top-subarea-box {
  font-size: 1.4rem;
  display: block;
  text-align: left;
}
@media all and (max-width: 639px) {
  .top-subarea .top-subarea-box.t-m20 {
    margin-top: 5px;
  }
}
@media all and (max-width: 400px) {
  .top-subarea .top-subarea-box.t-m20 {
    margin-top: 10px;
  }
}
.top-subarea .top-subarea-box-txt {
  color: #fff;
  background: #888888;
  padding: 13px 30px;
  font-weight: normal;
  font-size: 1.5rem;
  display: inline-block;
  text-align: right;
}
@media all and (max-width: 639px) {
  .top-subarea .top-subarea-box-txt {
    color: #888888;
    background: #fff;
    padding: 10px 30px;
    font-size: 1rem;
  }
}
@media all and (max-width: 400px) {
  .top-subarea .top-subarea-box-txt {
    color: #888888;
    background: #fff;
    padding: 8px 30px;
    font-size: 1.2rem;
  }
}

#scrolldown {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  color: #fefefe;
  font-family: "Oooh Baby", cursive;
  font-weight: 600;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  font-size: 1.4rem;
  z-index: 100;
  height: 210px;
}
#scrolldown:before, #scrolldown:after {
  position: absolute;
  content: "";
  z-index: 2;
  left: 50%;
}
#scrolldown:before {
  width: 1px;
  height: 100px;
  bottom: 0;
  background: #f0f0f0;
  transform: translateX(-50%);
}
#scrolldown:after {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 100%;
  top: 100px;
  margin-left: -4px;
  -webkit-animation: scroll-point 2.3s ease-out infinite;
          animation: scroll-point 2.3s ease-out infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
@media all and (max-width: 896px) {
  #scrolldown {
    display: none;
  }
}

@-webkit-keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}
/* contact_bnr
----------------------------------*/
.contact_bnr {
  margin: 0 auto;
}
.contact_bnr > li {
  margin-bottom: 20px;
}
.contact_bnr > li a {
  position: relative;
  max-width: 320px;
  color: #5f5f5f;
}
.contact_bnr > li span {
  background: #5f5f5f;
  color: #fff;
  border-radius: 50px;
  padding: 4px 20px;
  margin-right: 15px;
  font-weight: normal;
}
@media all and (max-width: 896px) {
  .contact_bnr > li span {
    margin-right: 0;
    margin-bottom: 10px;
    display: inline-block;
  }
  .contact_bnr > li a {
    text-align: center;
    margin: 0 auto 20px;
  }
  .contact_bnr > li:first-of-type {
    margin-right: 0;
  }
}
.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  position: relative;
  color: #5f5f5f;
  font-family: "Comfortaa", cursive;
  font-weight: 500;
  font-size: 3.8rem;
  line-height: 1.2;
}
.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  font-size: 0.7em;
}
.contact_bnr > li .bnr_tel:hover {
  color: #5f5f5f;
  text-shadow: 0 0 4px rgba(95, 95, 95, 0.1);
}
@media all and (max-width: 1100px) {
  .contact_bnr > li .bnr_tel {
    font-size: 3rem;
  }
}
@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_tel {
    font-size: 2.8rem;
    text-align: center;
  }
}
.contact_bnr > li .bnr_mobile {
  background: #fefefe;
  color: #888888;
}
.contact_bnr > li .bnr_mobile:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3cd";
  font-weight: 900;
}
.contact_bnr > li .bnr_fax {
  background: #fdfdfd;
  color: #888888;
}
.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}
.contact_bnr > li .bnr_mail {
  background: #888888;
  color: #fff;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 600;
  border-radius: 50px;
  line-height: 1.4;
  padding: 15px 8px;
}
.contact_bnr > li .bnr_mail .small {
  font-size: 0.8em;
  margin-left: 4px;
}
.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f073";
  font-weight: 900;
  font-size: 0.8em;
  margin-right: 15px;
}
.contact_bnr > li .bnr_mail:hover {
  background: #888888;
  color: #fff;
}
@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_mail {
    font-size: 1.4rem;
  }
}

/* footer
----------------------------------*/
footer {
  position: relative;
}

#l-footer {
  font-size: 1.4rem;
  position: relative;
  width: 100%;
  color: #fff;
}
#l-footer:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  width: 100%;
  height: 80%;
  background: #f3f6f6;
}
@media all and (max-width: 1100px) {
  #l-footer:before {
    height: 90%;
  }
}
#l-footer .inner {
  padding: 60px 20px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
}
#l-footer .footer-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0;
  color: #131313;
  position: relative;
  z-index: 2;
}
#l-footer .footer-column .footer-left {
  width: 40%;
}
#l-footer .footer-column .footer-right {
  width: 55%;
}
#l-footer .footer-txt {
  padding-left: 8px;
}
#l-footer .footer-txt span {
  background: #888888;
  padding: 5px 10px;
  font-size: 13px;
  color: #fefefe;
}
@media all and (max-width: 1100px) {
  #l-footer .footer-column {
    justify-content: space-around;
    max-width: 80%;
  }
  #l-footer .footer-column .footer-left {
    font-size: 12px;
    width: 47%;
  }
  #l-footer .footer-column .footer-middle {
    width: 50%;
  }
  #l-footer .footer-column .footer-right {
    width: 100%;
    margin-top: 20px;
  }
}
@media all and (max-width: 896px) {
  #l-footer .footer-column {
    max-width: 90%;
  }
}
@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
  }
  #l-footer .inner {
    padding: 40px 20px;
  }
  #l-footer .inner .right-inner {
    padding: 8px;
    font-size: 12px;
  }
  #l-footer .footer-column {
    max-width: 100%;
    margin: 20px auto 0;
  }
  #l-footer .footer-column .footer-left,
#l-footer .footer-column .footer-middle {
    width: 100%;
  }
  #l-footer .footer-column .footer-middle {
    margin-top: 25px;
  }
}

.map-wrap {
  display: flex;
  flex-wrap: wrap;
}
.map-wrap .access-txt {
  width: 25%;
  min-width: 300px;
  background: #888888;
}
.map-wrap .access-txt .inner {
  padding: 45px 25px;
}
@media all and (max-width: 639px) {
  .map-wrap .access-txt {
    width: 100%;
  }
  .map-wrap .access-txt .inner {
    padding: 30px 15px;
    text-align: left;
  }
}

.map-big {
  height: 210px;
  position: relative;
  z-index: 3;
}
@media all and (max-width: 639px) {
  .map-big {
    height: 250px;
    flex: 0 1 auto;
    width: 100%;
  }
}

/* footer_navi
----------------------------------*/
.footer_navi {
  padding: 15px 10px 10px;
  margin: 0 auto;
}
.footer_navi ul {
  display: flex;
  flex-wrap: wrap;
  padding: 12px 0 7px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer_navi ul li {
  position: relative;
  flex: 1 0 auto;
}
.footer_navi ul li .header_link {
  display: block;
  letter-spacing: 0.1em;
  position: relative;
  font-size: 1.2rem;
  color: #000000;
  font-weight: 300;
}
.footer_navi ul li .header_link img {
  display: block;
  width: 30px;
  margin: 0 auto 4px;
}
.footer_navi ul li .header_link span {
  display: block;
  font-size: 1.4rem;
  font-family: "Oooh Baby", cursive;
  font-weight: 600;
  color: #fff;
  position: relative;
  line-height: 1;
}
.footer_navi ul li .header_link:after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background: #5f5f5f;
  left: 0;
  bottom: -6px;
  transition: 0.2s width ease-in;
}
.footer_navi ul li .sub-menu {
  display: none;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.055);
  display: none;
  margin: 0;
  opacity: 0;
  position: absolute;
  width: 165px;
  visibility: hidden;
  -webkit-transiton: opacity 0.2s;
  transition: opacity 0.2s;
  z-index: 1;
  bottom: -20px;
  right: -40px;
  z-index: 2;
}
.footer_navi ul li .sub-menu li {
  background-color: rgb(255, 255, 255);
  padding: 10px 15px 10px 30px;
  margin-bottom: 2px;
  position: relative;
  transition: 0.8s;
}
.footer_navi ul li .sub-menu li:before {
  position: absolute;
  content: "";
  left: 17px;
  top: 15px;
  box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #888888;
}
.footer_navi ul li .sub-menu li a {
  display: block;
  font-weight: normal;
  font-size: 1.2rem;
  color: #545454;
}
.footer_navi ul li .sub-menu li:hover {
  background-color: rgb(230, 225, 220);
}
.footer_navi ul li:hover .sub-menu, .footer_navi ul li.active .sub-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transition: 0.8s;
}
.footer_navi ul li:hover .header_link:after, .footer_navi ul li.active .header_link:after {
  width: 20px;
}

.flogo {
  max-width: 350px;
  min-height: 0;
  position: relative;
  z-index: 5;
  margin: 0 auto 25px 0;
}
@media all and (max-width: 896px) {
  .flogo {
    margin: 0 auto 25px;
    text-align: center;
    max-width: 150px;
    width: 100%;
  }
  .flogo img {
    width: 100%;
  }
}

.copyright {
  background: #111;
  padding: 20px 0;
  font-size: 1.2rem;
  font-weight: normal;
  position: relative;
  z-index: 2;
  color: #fefefe;
}
@media all and (max-width: 896px) {
  .copyright {
    font-size: 12px;
    padding: 15px 0 74px;
  }
}
@media all and (max-width: 639px) {
  .copyright {
    padding-bottom: 70px;
  }
}

/* news
----------------------------------*/
.news-bl {
  overflow: hidden;
}
.news-bl dt {
  float: left;
  width: 8em;
  padding: 5px;
  line-height: 1.3;
  color: #888888;
  text-align: center;
  border: 1px solid #888888;
  border-radius: 30px;
  font-size: 1.3rem;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    font-size: 1.2rem;
  }
}
.news-bl dd {
  padding: 0 0 12px 9.2em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px;
}
.news-bl dd a {
  color: #333;
  background-image: linear-gradient(to right, #888888, #5f5f5f);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 600;
}
.news-bl dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    float: none;
  }
  .news-bl dd {
    padding: 8px 5px;
  }
}

.news-ul li {
  border-top: 1px solid rgba(136, 136, 136, 0.5);
}
.news-ul li:last-child {
  border-bottom: 1px solid rgba(136, 136, 136, 0.5);
}
.news-ul li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 25px 40px 25px 0;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news-ul li a:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  top: 50%;
  right: 20px;
  border-top: 1px solid #888888;
  border-right: 1px solid #888888;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s ease-in-out;
}
.news-ul li a:hover:after {
  right: 10px;
}
@media all and (max-width: 1100px) {
  .news-ul li a {
    padding: 15px 40px 15px 0;
  }
}
.news-ul .day {
  font-size: 15px;
  width: 20%;
  font-family: "Comfortaa", cursive;
  font-weight: 500;
  font-weight: 400;
}
.news-ul .title {
  width: 75%;
  font-weight: 400;
}
@media all and (max-width: 1100px) {
  .news-ul .day, .news-ul .title {
    width: 100%;
  }
}

.link-news {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-top: 50px;
}
@media all and (max-width: 896px) {
  .link-news {
    margin-top: 20px;
  }
}
.link-news .link {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #888888;
  padding-right: 30px;
}
.link-news:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #888888;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
.link-news:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 50%;
  right: 10px;
  border-top: 1px solid #888888;
  border-right: 1px solid #888888;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s ease-in-out;
}
.link-news:hover:before {
  background: #888888;
}
.link-news:hover:after {
  border-color: #fefefe !important;
}

/* single
----------------------------------*/
.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}
@media all and (max-width: 1100px) {
  .single {
    padding: 80px 10px;
  }
}
.single.bgwhite {
  padding: 40px 0;
  background-color: #fff;
}
.single.p0 {
  padding: 0;
}
@media all and (max-width: 1100px) {
  .single.p0 {
    padding: 0px 10px;
  }
}
.single.p0-b80 {
  padding: 0 0 80px 0;
}
@media all and (max-width: 1100px) {
  .single.p0-b80 {
    padding: 0px 10px 80px;
  }
}

.single02 {
  margin: 0 auto;
  padding: 80px 0;
}
@media all and (max-width: 1100px) {
  .single02 {
    width: 100%;
    padding: 80px 10px;
  }
}

.single03 {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}
@media all and (max-width: 1100px) {
  .single03 {
    padding: 80px 10px;
  }
}

.single04 {
  padding-bottom: 80px;
}
@media all and (max-width: 896px) {
  .single04 {
    padding-bottom: 40px;
  }
}

.margin-top {
  margin-top: -80px;
}
@media all and (max-width: 639px) {
  .margin-top {
    margin-top: -30px;
  }
}

.lsingle,
.rsingle {
  width: 48.44%;
}

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fefefe;
  padding: 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.mbox.transparent {
  background: transparent;
}
@media all and (max-width: 639px) {
  .mbox {
    padding: 15px 10px;
  }
}
.mbox.b-top {
  border-top: 5px solid #5f5f5f;
  border-left: 5px solid #5f5f5f;
  box-shadow: 10px 10px 1px 1px rgba(0, 0, 0, 0.4);
}

.mbox2 {
  background: rgba(136, 136, 136, 0.8);
  padding: 30px;
  border: 2px solid #888888;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  .mbox2 {
    padding: 15px;
  }
}

.small-box {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}
.small-box.type1 {
  max-width: 600px;
}

.sentence p + p {
  margin-top: 20px;
}

.bg-grid {
  background: rgba(255, 255, 255, 0.9);
  background-image: linear-gradient(90deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2)), linear-gradient(0deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2));
  background-size: 20px 20px;
  background-repeat: repeat;
}

.bg-map {
  background: url(../img/map.png) no-repeat right bottom;
}
@media all and (max-width: 639px) {
  .bg-map {
    background-size: auto 200px;
    background-position: right top;
  }
}

#main {
  float: left;
  width: 76%;
}
#main .mbox {
  min-height: 700px;
}
@media all and (max-width: 896px) {
  #main .mbox {
    min-height: initial;
  }
}
@media all and (max-width: 896px) {
  #main {
    float: none;
    width: 100%;
  }
}

#side {
  float: right;
  position: -webkit-sticky;
  position: sticky;
  right: 0;
  top: 0;
  width: 21%;
  padding-right: 10px;
}
@media all and (max-width: 896px) {
  #side {
    float: none;
    width: 100%;
    position: static;
    margin-top: 40px;
  }
}

/* mtitle
----------------------------------*/
.mtitle {
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 0;
  position: relative;
}
.mtitle .eng {
  font-size: 4rem;
  line-height: 4rem;
  color: #5f5f5f;
  position: relative;
  font-weight: normal;
  z-index: 2;
  display: block;
  font-family: "Oooh Baby", cursive;
  font-weight: 600;
}
.mtitle .ja {
  position: relative;
  z-index: 2;
  font-size: 1.8rem;
  color: #5f5f5f;
  letter-spacing: 0.15em;
  font-weight: 600;
}
.mtitle.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.mtitle.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.mtitle.white .eng {
  color: #fefefe;
}
.mtitle.white .ja {
  color: #fefefe;
}
@media all and (max-width: 639px) {
  .mtitle {
    text-align: center;
  }
  .mtitle .eng {
    font-size: 1.5rem;
  }
  .mtitle .ja {
    font-size: 2rem;
  }
}

.mtitle3 {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  position: absolute;
  min-height: 100px;
  top: 0;
  left: 0;
}
.mtitle3 .ja {
  display: block;
  font-size: 2.8rem;
  color: #222;
  letter-spacing: 0.2em;
  padding-right: 5px;
  line-height: 2;
}
.mtitle3 .eng {
  display: block;
  font-family: "Oooh Baby", cursive;
  font-weight: 600;
  font-size: 2rem;
  color: #888888;
}
@media all and (max-width: 639px) {
  .mtitle3 {
    -ms-writing-mode: inherit;
        writing-mode: inherit;
    position: static;
    margin-bottom: 20px;
    min-height: initial;
    min-height: auto;
  }
  .mtitle3 .ja {
    font-size: 1.6rem;
  }
  .mtitle3 .eng {
    font-size: 1.4rem;
  }
}

.mtitle4 {
  font-weight: normal;
  text-align: center;
  font-size: 3rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  color: #5f5f5f;
  font-family: "Oooh Baby", cursive;
  font-weight: 600;
  text-shadow: 0px 0px 2px #333;
  position: relative;
}
.mtitle4:before {
  position: absolute;
  content: "";
  width: 200px;
  height: 2px;
  bottom: -10px;
  right: 0;
  left: 0;
  margin: 0 auto;
  background-color: #888888;
}
.mtitle4.white span:before, .mtitle4.white span:after {
  background-color: #888888;
}
@media all and (max-width: 639px) {
  .mtitle4 {
    font-size: 1.8rem;
    padding: 0 20px;
  }
}
@media all and (max-width: 400px) {
  .mtitle4 span:before {
    left: -3px;
  }
  .mtitle4 span:after {
    right: -3px;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 6px solid #888888;
  margin: 8px 0 15px;
  color: #5f5f5f;
  line-height: 1.4;
  text-align: left;
}
.mtitle_sub span {
  color: #888888;
  padding-left: 5px;
  font-size: 0.9em;
}
.mtitle_sub:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #333;
}

.mtitle_sub2 {
  padding-top: 40px;
  padding-left: 20px;
  margin-left: 30px;
  font-weight: 600;
  position: relative;
  border-left: 6px solid #888888;
  text-align: left;
}
@media all and (max-width: 639px) {
  .mtitle_sub2 {
    margin-left: 10px;
    padding-top: 30px;
  }
}
.mtitle_sub2 span {
  color: #fff;
  padding: 10px 40px;
  font-size: 2rem;
  background-color: #5f5f5f;
}
@media all and (max-width: 639px) {
  .mtitle_sub2 span {
    font-size: 1.6rem;
    padding: 5px 20px;
  }
}
.mtitle_sub2:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 40px;
  height: 6px;
  background-color: #333;
}

.mtitle_sub3 {
  font-weight: 600;
  position: relative;
  margin: 0 auto;
  text-align: center;
}
.mtitle_sub3 span {
  text-align: center;
  color: #5f5f5f;
  padding: 10px 40px;
  font-size: 2rem;
}
@media all and (max-width: 639px) {
  .mtitle_sub3 span {
    font-size: 1.6rem;
    padding: 5px 20px;
  }
}

/* btn
----------------------------------*/
.btn01 a {
  background: #5f5f5f;
  text-align: center;
  width: 300px;
  margin: 15px auto;
  color: #fff;
  display: block;
  padding: 8px 5px;
  font-weight: 700;
  border: 2px solid #222;
  border-radius: 35px;
}
.btn01 a:hover {
  background: #888888;
  color: #fefefe;
}
.btn01.mail {
  flex-basis: 100%;
}
.btn01.mail a {
  background: #888888;
  margin: 15px auto 25px;
}
.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
.btn01.left a {
  margin: 15px 0;
}
@media all and (max-width: 639px) {
  .btn01 a {
    width: 95%;
  }
}

.btn02 {
  width: 200px;
  margin: 20px auto 20px;
}
.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #888888;
  border: 1px solid #5f5f5f;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
  text-align: center;
  color: #5f5f5f;
}
.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 50px;
  height: 1px;
  background-color: #5f5f5f;
  transition: all 0.3s ease;
}
.btn02 a:hover i {
  width: 34px;
}
@media all and (max-width: 639px) {
  .btn02 a {
    font-size: 1.2rem;
  }
}

.btn03 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 30px auto;
  padding: 10px 20px;
  width: 300px;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  border: 2px solid #5f5f5f;
  transition: 0.3s;
}
.btn03 a::before {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 2px;
  background-color: #5f5f5f;
  transition: 0.2s ease 0s;
}
.btn03 a::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -10px;
  width: 2px;
  height: 100%;
  background-color: #5f5f5f;
  transition: 0.2s ease 0.2s;
}
.btn03 a:hover::before {
  width: 0%;
}
.btn03 a:hover::after {
  height: 0%;
}
.btn03 a:hover {
  text-decoration: none;
  background: rgb(131, 88, 27);
  background: linear-gradient(157deg, rgb(131, 88, 27) 0%, rgb(246, 184, 39) 100%);
}

/* page-title
----------------------------------*/
.page-title {
  margin: 0 auto 0;
  position: relative;
  z-index: 1;
  background: url(../img/1.jpg) no-repeat 50%/cover;
  overflow: hidden;
  filter: grayscale(1);
}
.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #111;
  opacity: 0.8;
}
.page-title .inner {
  margin: 0 auto;
  padding: 300px 0 30px;
  max-width: 1200px;
}
.page-title .page-lead {
  text-align: center;
  color: #f3f6f6;
  font-size: 2rem;
  text-shadow: 0 0 4px rgba(95, 95, 95, 0.1);
}
.page-title .page-lead span {
  display: block;
}
.page-title .page-lead .ja {
  font-size: 2rem;
  color: #888888;
}
.page-title .page-lead .eng {
  font-size: 5rem;
  color: #fff;
  font-family: "Comfortaa", cursive;
  font-weight: 500;
  letter-spacing: 0.15em;
}
@media all and (max-width: 896px) {
  .page-title .inner {
    width: 100%;
    padding: 90px 0 0;
  }
  .page-title .page-lead {
    font-size: 1.5rem;
  }
  .page-title .page-lead .ja {
    font-size: 1.5rem;
  }
  .page-title .page-lead .eng {
    font-size: 3rem;
  }
}

.bg-gradient {
  position: relative;
  position: relative;
}
.bg-gradient:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #888888, #888888, #5f5f5f);
  z-index: -2;
  opacity: 0.3;
}

.bg-01 {
  position: relative;
  background-image: url(../img/icon03.png), url(../img/icon04.png);
  background-position: 0% 5%, 100% 95%;
  background-repeat: no-repeat;
}

.bg-02 {
  position: relative;
}
.bg-02:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
}
.bg-03 {
  background: rgba(190, 190, 190, 0.2);
  background: -webkit-linear-gradient(to left, rgba(136, 136, 136, 0.2), rgba(243, 246, 246, 0.2));
}
.bg-03 .circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.bg-03 .circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(95, 95, 95, 0.1);
  -webkit-animation: animate 25s linear infinite;
          animation: animate 25s linear infinite;
  bottom: -150px;
}
.bg-03 .circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.bg-03 .circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 12s;
          animation-duration: 12s;
}
.bg-03 .circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
.bg-03 .circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-duration: 18s;
          animation-duration: 18s;
}
.bg-03 .circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.bg-03 .circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.bg-03 .circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}
.bg-03 .circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
  -webkit-animation-duration: 45s;
          animation-duration: 45s;
}
.bg-03 .circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 35s;
          animation-duration: 35s;
}
.bg-03 .circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-duration: 11s;
          animation-duration: 11s;
}

@-webkit-keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 50% 50% 50% 70%/50% 50% 70% 60%;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 50% 50% 50% 70%/50% 50% 70% 60%;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
.bg-04 {
  position: relative;
}
.bg-04 > .bg {
  -webkit-animation: slide 6s ease-in-out infinite alternate;
          animation: slide 6s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #888888 50%, #f3f6f6 50%);
  bottom: 0;
  left: -50%;
  opacity: 0.5;
  position: absolute;
  right: -50%;
  top: 0;
  z-index: -1;
}
.bg-04 > .bg.bg2 {
  animation-direction: alternate-reverse;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
}
.bg-04 > .bg.bg3 {
  -webkit-animation: slide2 5s ease-in-out infinite alternate;
          animation: slide2 5s ease-in-out infinite alternate;
  background-image: linear-gradient(60deg, #888888 50%, #f3f6f6 50%);
}

@-webkit-keyframes slide {
  0% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(25%);
  }
}

@keyframes slide {
  0% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(25%);
  }
}
@-webkit-keyframes slide2 {
  0% {
    transform: translateX(25%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-25%);
  }
}
@keyframes slide2 {
  0% {
    transform: translateX(25%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-25%);
  }
}
.bg-base {
  background: rgba(95, 95, 95, 0.3);
}
.bg-base.type1 {
  background: transparent;
  margin-bottom: 40px;
  position: relative;
}
.bg-base.type1:before {
  position: absolute;
  content: "";
  width: calc(100% - 80px);
  height: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background: #888888;
  z-index: -1;
  opacity: 0.4;
}
@media all and (max-width: 1100px) {
  .bg-base.type1:before {
    width: calc(100% - 10px);
  }
}
.bg-base.type2 {
  background: transparent;
  margin-bottom: 40px;
  position: relative;
}
.bg-base.type2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
  opacity: 0.4;
  background-image: linear-gradient(56deg, rgba(254, 254, 254, 0.05) 0%, rgba(254, 254, 254, 0.05) 69%, rgba(160, 160, 160, 0.05) 69%, rgba(160, 160, 160, 0.05) 100%), linear-gradient(194deg, rgba(102, 102, 102, 0.02) 0%, rgba(102, 102, 102, 0.02) 60%, rgba(67, 67, 67, 0.02) 60%, rgba(67, 67, 67, 0.02) 100%), linear-gradient(76deg, rgba(169, 169, 169, 0.06) 0%, rgba(169, 169, 169, 0.06) 89%, rgba(189, 189, 189, 0.06) 89%, rgba(189, 189, 189, 0.06) 100%), linear-gradient(326deg, rgba(213, 213, 213, 0.04) 0%, rgba(213, 213, 213, 0.04) 45%, rgba(66, 66, 66, 0.04) 45%, rgba(66, 66, 66, 0.04) 100%), linear-gradient(183deg, rgba(223, 223, 223, 0.01) 0%, rgba(223, 223, 223, 0.01) 82%, rgba(28, 28, 28, 0.01) 82%, rgba(28, 28, 28, 0.01) 100%), linear-gradient(3deg, rgba(20, 20, 20, 0.06) 0%, rgba(20, 20, 20, 0.06) 62%, rgba(136, 136, 136, 0.06) 62%, rgba(136, 136, 136, 0.06) 100%), linear-gradient(200deg, rgba(206, 206, 206, 0.09) 0%, rgba(206, 206, 206, 0.09) 58%, rgba(6, 6, 6, 0.09) 58%, rgba(6, 6, 6, 0.09) 100%), linear-gradient(304deg, rgba(162, 162, 162, 0.07) 0%, rgba(162, 162, 162, 0.07) 27%, rgba(24, 24, 24, 0.07) 27%, rgba(24, 24, 24, 0.07) 100%), linear-gradient(186deg, rgba(166, 166, 166, 0.04) 0%, rgba(166, 166, 166, 0.04) 5%, rgba(210, 210, 210, 0) 5%, rgba(210, 210, 210, 0) 100%), linear-gradient(90deg, rgb(15, 80, 24), rgb(25, 101, 28), rgb(39, 107, 68));
}
@media all and (max-width: 1100px) {
  .bg-base.type2:before {
    width: calc(100% - 10px);
  }
}

.bg-border {
  border: 10px solid #888888;
}
@media all and (max-width: 639px) {
  .bg-border {
    border: 7px solid #888888;
  }
}

.bg-gray {
  position: relative;
}
.bg-gray:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #f3f6f6;
}
.bg-gray.bg-half {
  background: transparent;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #f3f6f6 50.1%, #f3f6f6 100%);
}

.bg-999 {
  background: #999;
}

.bg-base2 {
  background: repeating-linear-gradient(45deg, rgba(136, 136, 136, 0.1) 0, rgba(136, 136, 136, 0.1) 20px, #fefefe 20px, #fefefe 40px);
}

/* tbl
----------------------------------*/
.tbl-profile {
  width: 100%;
}
.tbl-profile th,
.tbl-profile td {
  padding: 10px 5px;
  font-size: 1.4rem;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
}
@media all and (max-width: 639px) {
  .tbl-profile th,
.tbl-profile td {
    font-size: 12px;
  }
}
.tbl-profile th {
  width: 30%;
  text-align: left;
  color: #5f5f5f;
}
.tbl-profile.type1 th {
  width: 25%;
}
@media all and (max-width: 639px) {
  .tbl-profile.type1 th {
    width: 30%;
  }
}

.tbl {
  width: 100%;
}
.tbl.tbl-price th {
  background: #5f5f5f;
  color: #5f5f5f;
}
.tbl.tbl-price th span {
  display: block;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.4;
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border: 0.9px solid #131313;
  font-size: 1.4rem;
}
.tbl th.center,
.tbl td.center {
  text-align: center;
}
.tbl th {
  background: #888888;
  font-weight: 600;
  text-align: center;
}
.tbl thead th {
  background: #5f5f5f;
  color: #fff;
}
.tbl td {
  background: #fff;
}
.tbl td.td-1 {
  width: 50%;
  font-size: 1.3rem;
}
@media all and (max-width: 639px) {
  .tbl td.td-1 {
    font-size: 12px;
  }
}
.tbl td.price-td {
  text-align: right;
}
.tbl .th-1 {
  width: 25%;
}
.tbl .th-2 {
  width: 45%;
}
.tbl.type1 td {
  text-align: left;
}
@media all and (max-width: 639px) {
  .tbl th {
    text-align: left;
  }
  .tbl th,
.tbl td {
    padding: 10px;
    font-size: 12px;
  }
  .tbl th span,
.tbl td span {
    font-size: 12px;
  }
}

.tbl_new {
  width: 100%;
}
.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 15px 10px;
}
.tbl_new tr th {
  font-weight: 700;
  width: 25%;
  color: #5f5f5f;
  text-align: left;
  padding-left: 30px;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .tbl_new tr th {
    width: 40%;
  }
}
.tbl_new tr:nth-child(odd) th, .tbl_new tr:nth-child(odd) td {
  background: #fff;
}

.tbl-border {
  width: 100%;
}
.tbl-border th,
.tbl-border td {
  padding: 15px 10px;
  border-bottom: 2px solid;
  vertical-align: middle;
}
@media all and (max-width: 639px) {
  .tbl-border th,
.tbl-border td {
    padding: 10px;
    font-size: 1.2rem;
  }
}
.tbl-border th {
  width: 20%;
  color: #5f5f5f;
  text-align: left;
  border-color: #888888;
}
.tbl-border th.th-1 {
  width: 45%;
}
@media all and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}
.tbl-border td {
  border-color: #e4ebeb;
}
.tbl-border.min th, .tbl-border.min td {
  padding: 10px;
  font-size: 1.2rem;
}

.tbl-box {
  border-collapse: collapse;
  margin: 40px auto 0;
  padding: 0;
  width: 90%;
  max-width: 650px;
  table-layout: fixed;
  color: #000;
  background-color: #fff;
  border: 1px solid;
}
.tbl-box tr {
  background-color: #fff;
  padding: 0.35em;
  border-bottom: 1px solid #bbb;
}
.tbl-box tr:last-child {
  border-bottom: none;
}
.tbl-box thead {
  border-bottom: 5px solid #5f5f5f;
}
.tbl-box th,
.tbl-box td {
  width: 48%;
  padding: 1em 10px 1em 1em;
  border-right: 1px solid #bbb;
}
.tbl-box th:last-child,
.tbl-box td:last-child {
  border: none;
}
.tbl-box th {
  color: #333;
}
.tbl-box .ttl {
  color: #fff;
  background-color: #888888;
}
.tbl-box .price {
  text-align: right;
}

.marker {
  padding: 0 4px;
  margin-left: 4px;
  background: #fff;
  color: #5f5f5f;
}

.price {
  color: #5f5f5f;
  font-size: 1.2em;
}
.price span {
  display: block;
  font-size: 1.4rem;
  color: #5f5f5f;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .price {
    font-size: 1.5rem;
  }
  .price span {
    font-size: 13px;
  }
}

.timetable-wrap {
  box-shadow: 0 0 4px rgba(136, 136, 136, 0.2);
  margin-bottom: 20px;
}

.timetable {
  width: 100%;
  border-top: 1px solid #5f5f5f;
}
.timetable.type1 {
  border-top: none;
}
.timetable.type1 th,
.timetable.type1 td {
  border: none;
}
.timetable.type1 .thead th {
  border-bottom: 2px solid #5f5f5f;
}
.timetable.type1 td {
  color: #131313;
}
.timetable th,
.timetable td {
  border-bottom: 1px solid #5f5f5f;
  padding: 10px 5px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
}
.timetable th .txt,
.timetable td .txt {
  letter-spacing: 0;
  font-size: 12px;
}
@media all and (max-width: 639px) {
  .timetable th,
.timetable td {
    font-size: 12px;
  }
}
.timetable .thead th {
  border-top: 0;
}
.timetable .th-1 {
  width: 35%;
  font-weight: 600;
  text-align: center;
}
.timetable .circle {
  color: #fff;
}
.timetable .triangle {
  color: #5f5f5f;
}
@media all and (max-width: 639px) {
  .timetable {
    padding: 15px 10px;
  }
  .timetable .th-1 {
    width: 25%;
  }
}
.timetable.type2 .circle {
  color: #888888;
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 46.25%;
  height: 0;
  overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ggmap.youtube {
  padding-bottom: 56.25%;
}

/* list
----------------------------------*/
.list_common li {
  padding-bottom: 4px;
  font-size: 1.4rem;
  margin-bottom: 5px;
  border-bottom: 1px dotted rgba(95, 95, 95, 0.5);
}
.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.list_check.type1 {
  display: flex;
  flex-wrap: wrap;
}
.list_check.type1 li {
  background: #fefefe;
  padding: 12px 8px;
  width: 48%;
}
.list_check.type1 li:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list_check.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list_check.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}
.list_check li {
  padding: 8px;
  font-weight: 700;
  background: #fefefe;
  margin-bottom: 5px;
}
.list_check li span {
  font-weight: normal;
  font-size: 0.9em;
  display: block;
  padding: 10px;
  background: rgba(136, 136, 136, 0.2);
  margin-top: 10px;
}
.list_check li a {
  color: #888888;
  border-bottom: 1px dotted #888888;
}
.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  margin-right: 10px;
  color: #888888;
}
@media all and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.2rem;
  }
}

.list_check2.type1 {
  display: flex;
  flex-wrap: wrap;
}
.list_check2.type1 li {
  width: 48%;
}
.list_check2.type1 li:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list_check2.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list_check2.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}
.list_check2 li {
  padding: 2px 8px 2px 30px;
  position: relative;
}
.list_check2 li .num {
  color: #888888;
  margin: 0 4px;
  font-family: "Comfortaa", cursive;
  font-weight: 500;
}
.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 8px;
  color: #5f5f5f;
}
.list_check2 li:not(:last-child) {
  margin-bottom: 4px;
}

.list-inline2 {
  text-align: center;
}
.list-inline2 li {
  display: inline-block;
  padding: 4px 15px;
  background: #fefefe;
  border: 1px solid #5f5f5f;
  font-weight: 700;
  border-radius: 30px;
}
.list-inline2 li:not(:last-child) {
  margin-right: 8px;
}

.list-inline li {
  display: inline-block;
  padding: 3px;
}
.list-inline li:not(:last-of-type):after {
  content: "/";
  margin: 0 5px;
  color: #888888;
  font-weight: normal;
}
@media all and (max-width: 639px) {
  .list-inline li {
    display: block;
    padding: 0;
  }
  .list-inline li:before {
    content: "-";
    color: #888888;
  }
  .list-inline li:not(:last-of-type):after {
    display: none;
  }
}

.list_num li {
  position: relative;
  padding: 6px 4px 6px 50px;
  font-size: 2rem;
  margin-bottom: 5px;
  color: #5f5f5f;
}
.list_num li span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.5rem;
  color: #5f5f5f;
}
@media all and (max-width: 639px) {
  .list_num li {
    font-size: 1.3rem;
  }
  .list_num li span {
    font-size: 2.8rem;
  }
}

.ol-list {
  counter-reset: number;
  list-style: none;
  padding: 5px;
}
.ol-list.type1 {
  display: flex;
  flex-wrap: wrap;
}
.ol-list.type1 > li {
  width: 48%;
}
.ol-list.type1 > li:nth-child(2n) {
  margin-left: 4%;
}
.ol-list li {
  line-height: 2;
  padding-top: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  position: relative;
  padding-left: 40px;
  padding-bottom: 10px;
}
.ol-list li .ol-lead {
  color: #555555;
  font-size: 2rem;
}
.ol-list li .inner {
  font-weight: normal;
  display: block;
  padding: 10px;
  line-height: 1.6;
  font-size: 1.4rem;
}
.ol-list li:before {
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  font-family: "Comfortaa", cursive;
  font-weight: 500;
  left: 0;
  top: 15px;
  position: absolute;
  font-size: 3.5rem;
  color: #888888;
  margin-right: 10px;
  line-height: 1;
}
@media all and (max-width: 639px) {
  .ol-list li {
    font-size: 1.2rem;
  }
  .ol-list li .ol-lead {
    font-size: 1.4rem;
  }
  .ol-list li .inner {
    font-size: 0.9em;
  }
  .ol-list li:before {
    font-size: 3rem;
  }
}

.list_disc li {
  padding: 5px 0 5px 20px;
  font-size: 1.4rem;
  position: relative;
}
.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc;
}
.list_disc li:before {
  content: "●";
  position: absolute;
  left: 0;
  top: 8px;
  color: #888888;
  font-size: 0.7em;
}
@media all and (max-width: 639px) {
  .list_disc li {
    font-size: 12px;
  }
}

.list-btn {
  display: flex;
  flex-wrap: wrap;
}
.list-btn.btn-100 > li {
  width: 100%;
}
.list-btn.btn-100 > li:nth-child(3n) {
  margin-right: auto;
}
.list-btn.btn-col2 {
  justify-content: space-between;
}
.list-btn.btn-col2 li {
  width: 48%;
  margin: auto;
  margin-bottom: 20px;
}
.list-btn.btn-col2 li a {
  font-size: 2rem;
  padding: 15px 2px;
}
@media all and (max-width: 639px) {
  .list-btn.btn-col2 li {
    width: 100%;
    margin: 0 auto 20px;
  }
  .list-btn.btn-col2 li a {
    font-size: 1.5rem;
  }
}
.list-btn li {
  width: 32%;
  margin: 0 1.995% 10px 0;
}
.list-btn li a {
  display: block;
  background: #fff;
  color: #888888;
  font-weight: 700;
  padding: 10px 3px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  font-size: 1.6rem;
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
  border: 2px solid #888888;
}
.list-btn li a:after {
  position: absolute;
  content: "";
  width: 70px;
  height: 70px;
  border-bottom: 0.1em solid #888888;
  border-right: 0.1em solid #888888;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.list-btn li a .small {
  display: block;
  font-family: "Oooh Baby", cursive;
  font-weight: 600;
}
.list-btn li a span {
  position: relative;
  z-index: 2;
}
.list-btn li a:hover {
  background: #5f5f5f;
  color: #fff;
}
.list-btn li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list-btn li {
    width: 90%;
    margin: 0 auto 10px;
  }
  .list-btn li a {
    font-size: 1.2rem;
  }
  .list-btn li a .small {
    font-size: 1.2rem;
  }
  .list-btn li:nth-child(3n) {
    margin-right: auto;
  }
}
.list-btn.type1 li a {
  padding: 65px 40px 65px 0;
  border: 1px solid #6f6f6f;
  font-size: 2.5rem;
  text-align: right;
  background: #111;
  color: #888888;
}
.list-btn.type1 li a:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 70%;
  opacity: 0.7;
  transition: 0.2s ease-in all;
  background: url(../img/icon01.jpg) no-repeat center/cover;
}
.list-btn.type1 li a:after {
  width: 30px;
  height: 30px;
}
.list-btn.type1 li a:hover:before {
  opacity: 0.3;
}
@media all and (max-width: 639px) {
  .list-btn.type1 li a {
    font-size: 1.8rem;
    padding: 50px 40px 50px 0;
  }
}
.list-btn.type1 li:last-of-type a:before {
  background: url(../img/icon02.jpg) no-repeat center/cover;
}

/* blog
----------------------------------*/
.top-blog .pages {
  display: none;
}
.top-blog .blog-wrap3 > li {
  padding: 8px;
  background: #fff;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.top-blog .blog-wrap3 > li .blog-img {
  width: 150px;
  height: 100px;
  overflow: hidden;
}
@media all and (max-width: 639px) {
  .top-blog .blog-wrap3 > li .blog-img {
    width: 120px;
    height: 80px;
  }
}
.top-blog .blog-wrap3 > li .blog-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.top-blog .blog-wrap3 > li .blog-img:hover img {
  opacity: 1 !important;
  transform: scale(1.2);
}
.top-blog .blog-wrap3 > li .blog-detail {
  width: calc(100% - 180px);
  margin-left: 25px;
}
@media all and (max-width: 639px) {
  .top-blog .blog-wrap3 > li .blog-detail {
    width: calc(100% - 130px);
    margin-left: 10px;
  }
}
.top-blog .blog-wrap3 > li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.top-blog .blog-wrap3 > li > a:hover ~ .blog-img img {
  opacity: 1;
  transform: scale(1.2);
}

#main .blog-wrap > li {
  width: 32%;
}
@media all and (max-width: 1100px) {
  #main .blog-wrap > li {
    width: 49%;
    margin: 0 0.5% 20px 0.5%;
  }
}
@media all and (max-width: 639px) {
  #main .blog-wrap > li {
    width: 90%;
    margin: 0 auto 10px;
  }
}

.blog-wrap {
  display: flex;
  flex-wrap: wrap;
}
.blog-wrap * {
  transition: 0.3s;
}
.blog-wrap > li {
  width: 24%;
  margin: 0 0.5% 20px 0.5%;
  padding: 15px;
  background: #fefefe;
  position: relative;
  border: 1px solid #ddd;
}
@media all and (max-width: 1100px) {
  .blog-wrap > li {
    width: 49%;
  }
}
.blog-wrap > li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.blog-wrap > li > a:hover ~ .blog-img img {
  opacity: 1;
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-wrap > li {
    width: 90%;
    margin: 0 auto 10px;
  }
}

.blog-wrap2 {
  display: flex;
  flex-wrap: wrap;
}
.blog-wrap2 * {
  transition: 0.3s;
}
.blog-wrap2 > li {
  width: 100%;
  margin: 0 0.5%;
  padding: 10px;
  background: #fefefe;
  position: relative;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blog-wrap2 > li > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.blog-wrap2 > li > a:hover ~ .blog-img img {
  opacity: 1;
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-wrap2 > li {
    width: 100%;
    margin: 0 auto 10px;
    padding: 15px 5px;
  }
}
.blog-wrap2 .blog-detail {
  width: 80%;
}
@media all and (max-width: 639px) {
  .blog-wrap2 .blog-detail {
    width: 65%;
  }
}
.blog-wrap2 .blog-date {
  border: 1px solid #5f5f5f;
  width: 100px;
  padding: 5px 0;
  line-height: 1.3;
  display: inline-block;
  color: #5f5f5f;
  font-size: 11px;
  font-family: "Comfortaa", cursive;
  font-weight: 500;
}
.blog-wrap2 .blog-title {
  font-weight: 600;
  line-height: 1.3;
  margin: 6px 0;
  font-size: 1.5rem;
}
@media all and (max-width: 896px) {
  .blog-wrap2 .blog-title {
    font-size: 1.2rem;
  }
}
.blog-wrap2 .blog-img {
  width: 15%;
  height: 70px;
  overflow: hidden;
  box-sizing: border-box;
}
.blog-wrap2 .blog-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.blog-wrap2 .blog-img:hover img {
  opacity: 1 !important;
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-wrap2 .blog-img {
    width: 30%;
  }
}

.blog-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.blog-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.blog-img:hover img {
  opacity: 1 !important;
  transform: scale(1.2);
}

/*
.blog-detail {
	margin-top: 10px;
}*/
.blog-detail-upper {
  position: relative;
  z-index: 2;
  margin: -31px 0 0;
  color: #fff;
  font-size: 12px;
}

.blog-category {
  display: inline-block;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  background: #111;
}

.blog-page-detail {
  margin-bottom: 15px;
}

.blog-date {
  border: 1px solid #ccc;
  width: 100px;
  padding: 5px 0;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #aaa;
  font-size: 12px;
}

.blog-date2 {
  color: #626262;
  font-size: 0.9em;
  margin-bottom: 5px;
  margin-right: 5px;
}
.blog-date2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}

.blog-title {
  font-weight: 600;
  line-height: 1.3;
  margin: 6px 0;
}

.blog-txt {
  line-height: 1.5;
  padding: 8px;
}
@media all and (max-width: 639px) {
  .blog-txt {
    font-size: 12px;
  }
}

.pages {
  text-align: center;
  margin-top: 30px;
}
.pages .page_next,
.pages .page_prev {
  display: inline-block;
  margin: 0 20px;
}
.pages .page_next a,
.pages .page_prev a {
  color: #888888;
  padding: 4px 5px;
  background: #fff;
  font-size: 12px;
}

.category_nav {
  border: 1px solid #dddddd;
}
.category_nav li a {
  display: block;
  padding: 15px;
  border-bottom: 1px dotted #dddddd;
  background-color: #ffffff;
}
.category_nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  font-weight: 900;
  margin-right: 5px;
}
.category_nav li a:hover {
  background: #f3f6f6;
}
.category_nav li:last-child a {
  border-bottom: none;
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: normal;
}
.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 900;
  margin-right: 5px;
  color: #888888;
}

.blog-month {
  margin-bottom: 10px;
}
.blog-month ul {
  display: flex;
  flex-wrap: wrap;
}
.blog-month ul li {
  width: 49%;
  padding: 5px 0;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 0;
  background: #333;
}
.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}
.blog-month ul li a {
  color: #fff;
  font-size: 12px;
}
.blog-month ul li:hover {
  background: #5f5f5f;
}

/* etc
----------------------------------*/
.cut {
  overflow: hidden;
  zoom: 1;
}

.img-round {
  border-radius: 15px 0 15px 0;
}

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.color1 {
  color: #888888;
}

.color2 {
  color: #5f5f5f;
}

.color3 {
  color: #5f5f5f;
}

.brown {
  color: #5f5f5f;
}

.relative {
  position: relative;
}
.relative.type1 {
  z-index: 5;
}

.bigger {
  font-size: 1.15em;
}

.smaller {
  font-size: 0.95em;
  letter-spacing: 0;
}

.num {
  font-weight: 700;
}
.num a {
  color: #888888;
  font-size: 2.8rem;
  text-align: center;
  margin-left: 5px;
}
@media all and (max-width: 639px) {
  .num a {
    font-size: 2rem;
  }
}
.num a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.num a:hover {
  color: #888888;
}

.telbox {
  max-width: 600px;
  margin: 0 auto 20px;
  padding: 20px;
  background: #333;
  text-align: center;
}
.telbox .inner {
  background: #fff;
  padding: 10px;
}

.txt-link {
  font-weight: 700;
  text-decoration: underline;
}
.txt-link:after {
  font-family: "Font Awesome 5 Free";
  content: "\f101";
  font-weight: 900;
  padding-left: 5px;
}
.txt-link:hover {
  text-decoration: none;
}

.map-link {
  font-weight: 700;
  color: #888888;
  border-bottom: 1px solid #888888;
}
.map-link:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  margin-right: 5px;
}

.telbnr {
  max-width: 500px;
  margin: 20px auto 10px;
}
.telbnr li {
  border: 3px solid #888888;
  padding: 10px 10px;
  text-align: center;
  border-radius: 40px;
}
.telbnr li a {
  width: 100%;
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: #888888;
}
.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.telbnr li a:hover {
  color: #888888;
}
@media all and (max-width: 639px) {
  .telbnr {
    max-width: 100%;
  }
  .telbnr li {
    width: 100%;
    margin: 0 auto 30px;
  }
  .telbnr li a {
    font-size: 2rem;
  }
}

.telbnr-ttl {
  font-weight: 600;
  font-size: 1.8rem;
  color: #5f5f5f;
  margin-top: -30px;
}
.telbnr-ttl span {
  background: #888888;
  padding: 0 20px;
}
@media all and (max-width: 639px) {
  .telbnr-ttl {
    font-size: 1.4rem;
  }
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
}
.breadcrumb li {
  display: inline;
  color: #222;
}
.breadcrumb li a {
  color: #222;
}
.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}
@media all and (max-width: 639px) {
  .breadcrumb {
    font-size: 12px;
  }
}

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 90%;
}
.form dl dt {
  float: left;
  width: 280px;
  padding-top: 20px;
  font-weight: 700;
}
.form dl dt span,
.form .form-pattern-2 dl dt:not(.pattern-exclusion) span.required::before {
  color: #fff;
  background: #888888;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
  position: relative;
  top: -2px;
}
.form dl dt span.nini {
  background: #f3f6f6;
  color: #5f5f5f;
}
.form dl dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
}
.form dl dd:last-child {
  border-bottom: none;
}
.form .textarea,
.form textarea {
  border: 0;
  padding: 20px 15px;
  width: 100%;
  background: #f5f5f5;
  border-radius: 0;
  -webkit-appearance: none;
  font-family: "Noto Sans JP", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.form .textarea {
  height: 30px;
}
.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}
.form .textarea02:last-child {
  margin-right: 0;
}
.form .textarea03 {
  width: 20%;
  margin-right: 1%;
}
.form .form-contents {
  padding: 0;
}
.form .form-contents dl {
  margin-bottom: 0;
}
.form-contents dd:not(.pattern-exclusion) input.textarea {
  height: 40px;
}
.form button,
.form .form-pattern-2 .submit-btn {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  transition: all 0.2s ease-in-out 0s;
  border: 1px solid #888888;
  font-weight: 700;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  background: #888888;
  border-radius: 25px;
  font-family: "Noto Sans JP", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.form button:hover,
.form .form-pattern-2 .submit-btn:hover {
  background: #fff;
  color: #888888;
}
.form .form-pattern-2 .submit-btn::before {
  transition: all .2s ease-in-out 0s;
}

.form .form-pattern-2 .submit-btn:hover::before {
  background: #888888;
}
.form button:before {
  font-weight: normal;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 10px;
}
.form .select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 192px;
  min-width: 12em;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #333;
}
.form .select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  width: -webkit-calc(100% + 5em);
  margin: 0;
  padding: 11px 35px 11px 11px;
  padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}
.form .entypo-down-open-mini:before {
  font-family: "FontAwesome";
  content: "\f0ab";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: 0.75rem;
  margin-top: -8px;
  margin-top: -0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #888888;
}
.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}
.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}
.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #888888;
  z-index: 1;
}
.form label.radio_text input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  box-shadow: 20px -1px #fff;
}
.form label.radio_text input[type=radio]:checked {
  box-shadow: none;
}
.form label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 20px -1px #eeebda;
}
.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
}
.form label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
  padding: 1px;
}
.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #888888;
  border-bottom: 3px solid #888888;
  transform: rotate(45deg);
  z-index: 1;
}
@media all and (max-width: 639px) {
  .form label.checkbox_text:after {
    margin-top: -18px;
  }
}
.form label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
.form label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
.form label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
.form label.checkbox_text input[type=checkbox]:focus {
  box-shadow: 41px 0px #eee;
}
.form input[type=text],
.form textarea {
  font-size: 16px;
}
@media all and (max-width: 639px) {
  .form input[type=text],
.form textarea {
    transform: scale(0.9);
    margin-left: -5px;
  }
}

.thanks {
  padding: 40px;
  border: 3px solid #888888;
  box-shadow: 0 0 0 8px rgba(136, 136, 136, 0.2);
  max-width: 700px;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

.shadow {
  box-shadow: 0 0 10px rgba(95, 95, 95, 0.05);
}

.policy {
  padding: 30px;
  background: rgba(136, 136, 136, 0.3);
}

.mtitle_small {
  font-weight: 600;
  color: #5f5f5f;
  padding: 0 0 4px;
  font-size: 1.6rem;
  border-bottom: 1px solid #888888;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 15px;
}
.mtitle_small:before {
  content: "―";
  margin-right: 8px;
  color: #888888;
  font-size: 10px;
}
@media all and (max-width: 639px) {
  .mtitle_small {
    padding: 4px;
    font-size: 1.3rem;
  }
}

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
}
.mtitle_small2:before {
  content: "";
  background-color: #888888;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.6em;
  left: 0;
}

#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#a07,
#a08,
#contact,
.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

/*----------------------------------
pc/sp
----------------------------------*/
@media all and (max-width: 639px) {
  .pconly {
    display: none;
  }
}

.sponly {
  display: none;
}
@media all and (max-width: 639px) {
  .sponly {
    display: block;
  }
}

.bx-wrapper {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* grayscale
----------------------------------*/
.grayscale {
  transition: filter 0.2s ease-in;
  filter: grayscale(100%);
}
.grayscale:hover {
  filter: grayscale(0);
}

/*top-about
--------------------------------*/
.top-about {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.top-about::after, .top-about::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 300px;
  z-index: -1;
  opacity: 0.5;
}
.top-about::after {
  top: -100px;
  right: 0;
  background: url(../img/icon01.png) no-repeat center/contain;
}
.top-about::before {
  bottom: -100px;
  left: 0;
  background: url(../img/icon02.png) no-repeat center/contain;
}
.top-about .photo-l, .top-about .photo-r {
  width: 30%;
  height: 450px;
}
.top-about .photo-l img, .top-about .photo-r img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  filter: grayscale(1);
  transition: filter 0.2s ease-in;
}
.top-about .photo-l:hover img, .top-about .photo-r:hover img {
  filter: grayscale(0);
}
.top-about .photo-l {
  transform: translateY(-100px);
}
.top-about .photo-r {
  transform: translateY(100px);
}
.top-about .content {
  width: 35%;
  font-weight: 400;
  padding: 50px 0;
}
.top-about .content h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  font-weight: 600;
  text-align: center;
  position: relative;
}
.top-about .content h2::after {
  content: "About us";
  position: absolute;
  font-family: "Oooh Baby", cursive;
  font-weight: 600;
  font-size: 5rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -80%) rotate(-5grad);
  color: #888888;
  opacity: 0.2;
  z-index: -1;
  font-weight: 400;
}
.top-about .content h3 {
  color: #5f5f5f;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}
.top-about .content p + p {
  margin-top: 20px;
}
@media all and (max-width: 896px) {
  .top-about {
    flex-wrap: wrap;
  }
  .top-about::after {
    top: 0;
    right: -3%;
  }
  .top-about::before {
    bottom: 0;
    left: -3%;
  }
  .top-about .photo-l, .top-about .photo-r {
    width: 70%;
    height: 250px;
  }
  .top-about .photo-l {
    transform: translate(-5%, -50px);
  }
  .top-about .photo-r {
    transform: translate(50%, 0);
  }
  .top-about .content {
    width: 100%;
    padding: 40px 20px;
  }
  .top-about .content h2::after {
    font-size: 4rem;
  }
}
@media all and (max-width: 639px) {
  .top-about .content {
    z-index: 3;
  }
  .top-about .content h2 {
    font-size: 1.5rem;
  }
  .top-about .content h3 {
    font-size: 1.8rem;
  }
  .top-about::after, .top-about::before {
    width: 200px;
    height: 200px;
  }
  .top-about::after {
    top: 80px;
  }
  .top-about::before {
    bottom: 80px;
  }
}

/*mask
--------------------------------*/
.mask {
  position: relative;
  -webkit-clip-path: circle(1%);
          clip-path: circle(1%);
  transition: 0.6s ease-in all;
}
.mask.on {
  -webkit-clip-path: circle(120%);
          clip-path: circle(120%);
}

/*service-top-area
---------------------------------*/
.service-top-area {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}
@media all and (max-width: 896px) {
  .service-top-area {
    margin-top: 40px;
  }
}
.service-top-area h2 {
  width: 10%;
  position: relative;
}
.service-top-area ul {
  width: 80%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.service-top-area ul li {
  width: 48%;
  position: relative;
  margin-bottom: 40px;
}
.service-top-area ul li .img {
  overflow: hidden;
}
.service-top-area ul li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  filter: grayscale(1);
  transition: all 0.5s ease;
}
.service-top-area ul li .img:hover img {
  filter: grayscale(0.2);
  transform: scale(1.3);
}
.service-top-area ul li .info {
  display: block;
  font-size: 1.3rem;
  font-weight: 400;
  background: #fefefe;
  width: 80%;
  padding: 10px;
  position: absolute;
  bottom: 5%;
  right: 5%;
  text-align: center;
}
@media all and (max-width: 896px) {
  .service-top-area ul li .info {
    font-size: 1.1rem;
  }
}
.service-top-area ul li .deco {
  position: absolute;
  top: -2%;
  left: 1%;
  font-size: 3rem;
  font-family: "Comfortaa", cursive;
  font-weight: 500;
  color: #fefefe;
}
@media all and (max-width: 896px) {
  .service-top-area ul li .deco {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 639px) {
  .service-top-area ul li .deco {
    font-size: 2.3rem;
  }
}
@media all and (max-width: 639px) {
  .service-top-area {
    flex-wrap: wrap;
  }
  .service-top-area h2 {
    width: 100%;
  }
  .service-top-area ul {
    width: 100%;
    flex-wrap: wrap;
  }
  .service-top-area ul li {
    width: 100%;
    margin-bottom: 10px;
  }
}

.buttonBoxarea {
  display: block;
  width: 100%;
  margin: 30px auto;
}

.buttonBox {
  margin: 0 auto;
  position: relative;
  width: 100%;
  max-width: 340px;
  min-width: 150px;
  flex: 20%;
}
.buttonBox .button {
  padding: 7% 0 0;
  width: 100%;
  height: 70px;
  position: relative;
  background: #bebebe;
  text-transform: uppercase;
  color: white;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  font-size: 2rem;
  text-align: center;
  align-items: center;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
}
@media all and (max-width: 896px) {
  .buttonBox .button {
    padding: 6% 0 0;
  }
}
@media all and (max-width: 639px) {
  .buttonBox .button {
    padding: 25px 0 0;
  }
}
.buttonBox .button .button_bnr {
  color: #fff;
}
.buttonBox .button .button_bnr .b-txt {
  text-align: center;
  margin: 0 auto;
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  position: relative;
  font-size: 1.5rem;
}
@media all and (max-width: 639px) {
  .buttonBox .button .button_bnr .b-txt {
    font-size: 1rem;
    padding-right: 0px;
  }
}
.buttonBox .button .button_bnr .b-txt::before, .buttonBox .button .button_bnr .b-txt::after {
  content: "";
  position: absolute;
  background: #333;
}
.buttonBox .button .button_bnr .b-txt::before {
  top: 15px;
  right: 20px;
  height: 1px;
  width: 42px;
}
@media all and (max-width: 639px) {
  .buttonBox .button .button_bnr .b-txt::before {
    top: 11px;
  }
}
.buttonBox .button .button_bnr .b-txt::after {
  top: 11px;
  right: 19px;
  height: 1px;
  width: 10px;
  transform: rotate(45deg);
}
@media all and (max-width: 639px) {
  .buttonBox .button .button_bnr .b-txt::after {
    top: 7px;
  }
}
.buttonBox::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #333;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
.buttonBox:hover::before {
  background: #333;
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.buttonBox .border,
.buttonBox .border2 {
  position: absolute;
  background: none;
  transition: all 0.5s ease-in-out;
}
.buttonBox .border {
  top: 0;
  left: 0;
  border-left: 1px solid #5f5f5f;
  border-top: 1px solid #5f5f5f;
  width: 30px;
  height: 30px;
}
.buttonBox .border2 {
  bottom: 0;
  right: 0;
  border-right: 1px solid #5f5f5f;
  border-bottom: 1px solid #5f5f5f;
  width: 30px;
  height: 30px;
}
.buttonBox:hover .border, .buttonBox:hover .border2 {
  width: 100%;
  height: 100%;
}

.slide_list {
  position: relative;
  display: none;
  margin: 40px auto;
}
.slide_list li {
  margin-right: 1%;
}
.slide_list li img {
  width: auto;
  height: 200px;
  filter: grayscale(1);
  transition: filter 0.2s ease-in;
}
.slide_list li:hover img {
  filter: grayscale(0);
}
@media all and (max-width: 639px) {
  .slide_list li img {
    height: 240px;
  }
}
.slide_list li p {
  font-size: 1.3rem;
  font-weight: 400;
}

.top-greet {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
}
.top-greet .img-area {
  width: 50%;
  height: 600px;
}
.top-greet .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.top-greet .content {
  width: 50%;
  padding: 0 80px;
}
@media all and (max-width: 1100px) {
  .top-greet .img-area {
    height: 700px;
  }
}
@media all and (max-width: 896px) {
  .top-greet {
    flex-wrap: wrap;
  }
  .top-greet .img-area {
    width: 100%;
    height: 250px;
  }
  .top-greet .content {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
  }
}

.list2 {
  display: flex;
  flex-wrap: wrap;
  margin-top: -50px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 639px) {
  .list2 {
    margin-top: -25px;
  }
}
.list2.type1 > li,
.list2.type1 .child {
  background: #fefefe;
  padding: 15px;
  box-shadow: 0 0 15px rgba(136, 136, 136, 0.3);
}
@media all and (max-width: 896px) {
  .list2.type2 > li,
.list2.type2 .child {
    width: 100%;
    margin: 25px auto 0;
  }
  .list2.type2 > li:nth-child(2n),
.list2.type2 .child:nth-child(2n) {
    margin-left: auto;
  }
}
@media all and (max-width: 896px) {
  .list2.type2 {
    margin-top: -25px;
  }
}
.list2.ai-c {
  align-items: center;
}
.list2 > li,
.list2 .child {
  width: 48%;
  margin-top: 50px;
}
.list2 > li:nth-child(2n),
.list2 .child:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list2 > li:nth-child(2n),
.list2 .child:nth-child(2n) {
    margin-left: auto;
  }
}
.list2 > li.od-1,
.list2 .child.od-1 {
  order: 1;
  margin-left: 0;
}
@media all and (max-width: 639px) {
  .list2 > li.od-1,
.list2 .child.od-1 {
    order: 2;
  }
}
.list2 > li.od-2,
.list2 .child.od-2 {
  order: 2;
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list2 > li.od-2,
.list2 .child.od-2 {
    margin: 25px auto 0;
    order: 1;
  }
}
@media all and (max-width: 639px) {
  .list2 > li,
.list2 .child {
    width: 100%;
    margin: 25px auto 0;
  }
}
.list2.efct {
  margin-top: 0;
}
.list2.efct > li, .list2.efct .child {
  position: relative;
  background: #fefefe;
  border-radius: 10px;
  width: 48%;
  margin: 0 2.3333333333% 40px 0;
  box-shadow: 2px 3px 15px rgba(102, 102, 102, 0.1);
}
.list2.efct > li:nth-child(2n), .list2.efct .child:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list2.efct > li, .list2.efct .child {
    width: 95%;
    margin: 0 auto 50px;
  }
  .list2.efct > li:nth-child(2n), .list2.efct .child:nth-child(2n) {
    margin-right: auto;
  }
}
.list2.efct > li .img-box, .list2.efct .child .img-box {
  width: 100%;
  height: 270px;
  overflow: hidden;
}
.list2.efct > li .img-box img, .list2.efct .child .img-box img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
  border-radius: 10px 10px 0 0;
}
@media all and (max-width: 896px) {
  .list2.efct > li .img-box, .list2.efct .child .img-box {
    height: 200px;
  }
}
.list2.efct > li .txt-box, .list2.efct .child .txt-box {
  padding: 20px 30px 30px;
}
@media all and (max-width: 639px) {
  .list2.efct > li .txt-box, .list2.efct .child .txt-box {
    padding: 20px;
  }
}
.list2.efct > li .title, .list2.efct .child .title {
  font-weight: 600;
  font-size: 2.1rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  color: #888888;
  border-bottom: 1px solid #888888;
}
.list2.efct > li .nmb, .list2.efct .child .nmb {
  position: absolute;
  top: -3%;
  left: 2%;
  font-size: 6rem;
  font-family: "Comfortaa", cursive;
  font-weight: 500;
  color: #888888;
  text-shadow: 2px 2px #fefefe;
}
@media all and (max-width: 639px) {
  .list2.efct > li .nmb, .list2.efct .child .nmb {
    font-size: 5rem;
  }
}

.list3 {
  display: flex;
  flex-wrap: wrap;
}
.list3.jc-c {
  justify-content: center;
}
.list3.ai-c {
  align-items: center;
}
.list3.type1 > li {
  background: #fefefe;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(136, 136, 136, 0.3);
}
.list3.type2 > li {
  border: 1px solid #888888;
  padding: 15px;
}
.list3 > li {
  width: 31%;
  position: relative;
  margin: 0 3.495% 20px 0;
}
.list3 > li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 896px) {
  .list3 > li {
    width: 48%;
  }
  .list3 > li:nth-child(2n) {
    margin-right: 0;
  }
  .list3 > li:nth-child(3n) {
    margin-right: 3.495%;
  }
}
@media all and (max-width: 639px) {
  .list3 > li {
    width: 95%;
    margin: 0 auto 20px;
  }
  .list3 > li:nth-child(3n) {
    margin-right: auto !important;
  }
  .list3 > li:nth-child(2n) {
    margin-right: auto !important;
  }
}

.list4 {
  display: flex;
  flex-wrap: wrap;
}
.list4 > li, .list4 .child {
  width: 24%;
  margin: 0 1.3333333333% 25px 0;
}
.list4 > li:nth-child(4n), .list4 .child:nth-child(4n) {
  margin-right: 0;
}
.list4.efct > li, .list4.efct .child {
  position: relative;
  background: rgba(136, 136, 136, 0.1);
  width: 24%;
  margin: 0 1.3333333333% 25px 0;
}
.list4.efct > li:nth-child(4n), .list4.efct .child:nth-child(4n) {
  margin-right: 0;
}
@media all and (max-width: 896px) {
  .list4.efct > li, .list4.efct .child {
    width: 31%;
  }
  .list4.efct > li:nth-child(4n), .list4.efct .child:nth-child(4n) {
    margin: 0 1.3333333333% 25px 0;
  }
  .list4.efct > li:nth-child(3n), .list4.efct .child:nth-child(3n) {
    margin-right: 0;
  }
}
@media all and (max-width: 639px) {
  .list4.efct > li, .list4.efct .child {
    width: 95%;
    margin: 0 auto 50px;
  }
  .list4.efct > li:nth-child(3n), .list4.efct .child:nth-child(3n) {
    margin-right: auto;
  }
}
.list4.efct > li .img-box, .list4.efct .child .img-box {
  width: 100%;
}
.list4.efct > li .img-box img, .list4.efct .child .img-box img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}
.list4.efct > li .txt-box, .list4.efct .child .txt-box {
  padding: 20px;
}
.list4.efct > li .title, .list4.efct .child .title {
  font-weight: 600;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
  color: #888888;
}
.list4.efct > li .nmb, .list4.efct .child .nmb {
  position: absolute;
  top: -13%;
  left: 2%;
  font-size: 6rem;
  transform: rotate(-15deg);
  font-family: "Comfortaa", cursive;
  font-weight: 500;
  color: #888888;
  text-shadow: 2px 2px #fefefe;
}
@media all and (max-width: 639px) {
  .list4.efct > li .nmb, .list4.efct .child .nmb {
    font-size: 5rem;
  }
}

/*photoギャラリー*/
.gallery {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.gallery li {
  width: 24%;
  margin: 0 1.3333333333% 25px 0;
}
.gallery li:nth-child(4n) {
  margin-right: 0;
}
.gallery li a {
  background: rgba(136, 136, 136, 0.2);
  display: block;
  text-align: center;
  padding: 0px;
  height: 200px;
}
.gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.gallery li p {
  font-size: 14px;
  margin: 3px 0 10px;
}
.gallery li .btn01 a {
  background: #fefefe;
  text-align: center;
  width: 80%;
  height: auto;
  margin: 15px auto;
  color: #888888;
  display: block;
  padding: 8px 5px;
  font-weight: 600;
  border: 2px solid #888888;
  border-radius: 35px;
}
.gallery li .btn01 a:hover {
  background: #888888;
  color: #fefefe;
}
@media all and (max-width: 639px) {
  .gallery li .btn01 a {
    width: 95%;
  }
}
.gallery.col2 li {
  width: 48%;
  margin: 0 1% 5%;
}
.gallery.col2 li:nth-child(2n) {
  margin-right: 0;
}
.gallery.col2 li a {
  height: 200px;
  background: #fefefe;
}
.gallery.col2 li a img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 896px) {
  .gallery.col2 li {
    width: 48%;
    margin: 0 1% 20px;
  }
  .gallery.col2 li:nth-child(3n) {
    margin: 0 1% 20px;
  }
  .gallery.col2 li:nth-child(2n) {
    margin-right: 0;
  }
}
.gallery.col3 li {
  width: 31%;
  margin: 0 1% 3%;
}
.gallery.col3 li:nth-child(2n) {
  margin: 0 1% 3%;
}
.gallery.col3 li:nth-child(3n) {
  margin-right: 0;
}
.gallery.col3 li a {
  background: #fefefe;
}
.gallery.col3 li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 896px) {
  .gallery.col3 li {
    width: 48%;
    margin: 0 1% 3%;
  }
  .gallery.col3 li:nth-child(3n) {
    margin: 0 1% 3%;
  }
  .gallery.col3 li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery.col3 li a {
    height: 200px;
  }
}
.gallery.col3-2 li {
  width: 31%;
  margin: 0 1% 40px;
}
.gallery.col3-2 li:nth-child(3n) {
  margin-right: 0;
}
.gallery.col3-2 li a {
  height: 200px;
  background: #fefefe;
  margin-bottom: 15px;
}
.gallery.col3-2 li a img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 639px) {
  .gallery.col3-2 li {
    width: 100%;
    margin-right: 0;
  }
  .gallery.col3-2 li a {
    height: 200px;
  }
}

@media all and (max-width: 896px) {
  .gallery li {
    width: 48%;
    margin: 0 1% 20px;
  }
  .gallery li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery li a {
    height: 120px;
  }
  .gallery li p {
    font-size: 12px;
  }
}
/* accordion
----------------------------------*/
.accordion dt, .accordion dd {
  position: relative;
  padding: 1em 2.8em 1em 1em;
  z-index: 20;
}
.accordion dt {
  background: #fff;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  border-bottom: 1px dotted #111;
  border-top: 1px dotted #111;
  color: #111;
}
.accordion dt:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.7rem;
}
@media all and (max-width: 639px) {
  .accordion dt:after {
    right: 10px;
  }
}
.accordion dt:hover {
  background: rgba(95, 95, 95, 0.2);
}
.accordion dt.on:after {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
}
.accordion dd {
  display: none;
  padding: 20px 30px;
  background: #fff;
  color: #333;
  border-bottom: 1px dotted #111;
}

.mtext1 {
  font-size: 2rem;
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.8rem;
  }
}

.h-img {
  width: 350px;
  height: 440px;
}
.h-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -o-object-position: 80% 50%;
     object-position: 80% 50%;
}
@media all and (max-width: 639px) {
  .h-img {
    width: 100%;
    height: 300px;
  }
}