@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #fff;
  background: #111;
  background-image: url(../img/0.png), url(../img/bg_r.png), url(../img/bg_l.png);
  background-size: 100%, 13%, 13%;
  background-repeat: repeat, no-repeat, no-repeat;
  background-position: center center, top right, top left;
  background-attachment: scroll, scroll, scroll;
  width: 100%;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.1em;
}

@media (max-width: 1000px) {
  body {
    background-size: 100%, 30%, 30%;
    background-position: bottom right, bottom left, bottom center;
  }
}

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

#wrapper {
  overflow: hidden;
}

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

.bold {
  font-weight: 700;
}

h2,
h3 {
  line-height: 1.4;
}

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

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

/* animation
----------------------------------*/
@-webkit-keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            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 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fdfdfd;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}

.loader::after {
  -webkit-animation: loader 0.5s linear infinite;
          animation: loader 0.5s linear infinite;
  border: 1px solid #dfad71;
  border-radius: 50%;
  border-right: 1px solid rgba(223, 173, 113, 0.2);
  border-top: 1px solid rgba(223, 173, 113, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}

.loader.off {
  display: none;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* header
----------------------------------*/
@-webkit-keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

#l-header {
  z-index: 200;
  position: relative;
  width: 100%;
}

#l-header.is-fixed {
  position: fixed;
  background: #222;
  top: 0;
  left: 0;
}

#l-header.is-fixed .inner #logo {
  margin-bottom: 0;
}

#l-header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1200px;
  min-width: 1000px;
  margin: 0 auto;
  padding: 10px 0 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media all and (max-width: 896px) {
  #l-header .inner {
    min-width: initial;
  }
}

#l-header .inner #logo {
  width: 250px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media all and (max-width: 1100px) {
  #l-header .inner #logo {
    width: 260px;
  }
}

#l-header .head-right {
  margin-left: auto;
  margin-right: 5px;
}

@media all and (max-width: 896px) {
  #l-header .head-right {
    display: none;
  }
}

#l-header .head-right_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}

#l-header .head-right_contact > p:not(:last-of-type) {
  margin-right: 10px;
}

#l-header .head-right_txt {
  display: block;
  font-size: 12px;
}

#l-header .head-right_txt a {
  color: #543a25;
  padding-bottom: 4px;
  border-bottom: 1px dashed #dfad71;
}

#l-header .head-right_tel a,
#l-header .head-right_mail a {
  display: block;
  padding: 4px 15px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  background: #111;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
}

#l-header .head-right_tel a:before,
#l-header .head-right_mail a:before {
  margin-right: 5px;
}

#l-header .head-right_tel a:hover,
#l-header .head-right_mail a:hover {
  color: #543a25;
}

#l-header .head-right_tel a {
  background: transparent;
  padding: 0 15px;
  color: #f66009;
  border-radius: 40px;
  width: auto;
  height: auto;
  font-family: "Montserrat", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  position: relative;
}

#l-header .head-right_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  font-size: 1.6rem;
}

#l-header .head-right_tel a:hover {
  color: #ff5810;
}

#l-header .head-right_mail {
  margin-left: 10px;
}

#l-header .head-right_mail a {
  font-family: "Dancing Script", serif;
  font-weight: 500;
  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: #543a25;
}

#l-header .head-btn a {
  display: block;
  font-family: "Montserrat", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  padding: 3px 10px;
}

#l-header .head-btn a i {
  display: inline-block;
  margin-right: 5px;
}

#l-header .head-btn.head-right_access a {
  background: url(../img/paper-3.png);
  color: #543a25;
}

#l-header .head-btn.head-right_reserve a {
  background: url(../img/bg-orange.jpg);
  color: #543a25;
}

#l-header .head-right_lower {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
}

#l-header .btn-reserve a {
  display: block;
  width: 70px;
  height: 60px;
  padding: 8px 0;
  text-align: center;
  background: #dfad71;
  color: #fff;
  -webkit-transition: background 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: background 0.2s cubic-bezier(0.26, 0.06, 0, 1);
}

#l-header .btn-reserve a i {
  font-size: 2.2rem;
}

#l-header .btn-reserve a span {
  font-weight: bold;
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0;
}

#l-header .btn-reserve a:hover {
  background: #dfad71;
}

#header_nav {
  position: relative;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

#header_nav.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #222;
  z-index: 20;
}

#header_nav ul {
  margin: 0 auto;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 12px 0 7px;
}

#header_nav ul li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  border-right: 1px dashed #ccc;
}

#header_nav ul li a {
  display: block;
  letter-spacing: 0.1em;
  position: relative;
  font-size: 1.4rem;
  padding-bottom: 4px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

#header_nav ul li a img {
  display: block;
  width: 30px;
  margin: 0 auto 4px;
}

#header_nav ul li a span {
  display: block;
  font-size: 1.8rem;
  font-family: "Dancing Script", serif;
  font-weight: 500;
  color: #dfad71;
  position: relative;
  line-height: 1.2;
}

#header_nav ul li a:after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background: #fff;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0px;
  -webkit-transition: 0.2s width ease-in;
  transition: 0.2s width ease-in;
}

#header_nav ul li a:hover span, #header_nav ul li a.active span {
  color: #dfad71;
}

#header_nav ul li a:hover:after, #header_nav ul li a.active:after {
  width: 20px;
}

#header_nav .dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 40px;
  z-index: 999;
  padding-top: 30px;
}

#header_nav .dropdown .dropdown-li {
  border-right: 0;
  margin: 0;
  background: #fff;
  border-bottom: 1px dashed #dfad71;
  padding: 3px;
  background: url(../img/bg-yellow.jpg);
}

#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 160px;
  padding: 10px 8px;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  color: #333;
  background: #fefefe;
}

#header_nav .dropdown .dropdown-li a:hover {
  color: #dfad71;
}

#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: url(../img/bg-orange.jpg);
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
          box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
  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: 639px) {
  #page-top {
    bototm: 20px;
  }
}

/* swiper
----------------------------------*/
@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}
@keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}

/* canvas
----------------------------------*/
#canvas-container {
  position: absolute;
  z-index: 20;
  left: 0;
  bottom: -10px;
}

@media all and (max-width: 639px) {
  #canvas-container #sineCanvas {
    height: 70px;
    width: 100%;
  }
}

.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: 75vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slide-img .slide-txt {
  z-index: 50;
  position: absolute;
  left: 2%;
  bottom: 4%;
  width: 650px;
}

@media all and (max-width: 1100px) {
  .slide-img {
    height: 50vh;
  }
}

@media all and (max-width: 639px) {
  .slide-img {
    height: 40vh;
  }
}

#slideshow {
  position: relative;
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
}

@media all and (max-width: 896px) {
  #slideshow {
    max-width: calc(100% - 15px);
  }
}

#catch {
  z-index: 50;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 2%;
  width: 650px;
  opacity: 0;
}

#catch.on {
  opacity: 1;
  -webkit-transition: 2s;
  transition: 2s;
}

@media all and (max-width: 1367px) {
  #catch {
    width: 500px;
  }
}

@media all and (max-width: 1100px) {
  #catch {
    width: 60%;
  }
}

@media screen and (max-width: 890px) and (orientation: landscape) {
  #catch {
    width: 40%;
  }
}

@media all and (max-width: 639px) {
  #catch {
    width: 80%;
    bottom: -15%;
  }
}

#scrolldown {
  position: absolute;
  right: 15px;
  bottom: 60px;
  color: #fefefe;
  font-family: "Dancing Script", serif;
  font-weight: 500;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  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;
  -webkit-transform: translateX(-50%);
          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
----------------------------------*/
@media all and (max-width: 639px) {
  .contact_bnr > li {
    width: 90%;
    margin: 0 auto;
  }
  .contact_bnr > li:first-child {
    margin-right: auto;
  }
}

.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  position: relative;
  color: #dfad71;
  font-size: 4rem;
  font-family: "Dancing Script", serif;
  font-weight: 500;
  padding: 10px 0;
}

@media all and (max-width: 1100px) {
  .contact_bnr > li .bnr_tel {
    font-size: 3.2rem;
  }
}

.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  font-size: 0.8em;
}

.contact_bnr > li .bnr_tel:hover {
  color: #f66009;
}

@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_tel {
    font-size: 2.6rem;
    text-align: center;
  }
}

.contact_bnr > li .bnr_mobile {
  background: #fefefe;
  color: #dfad71;
}

.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: #dfad71;
}

.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}

.contact_bnr > li .bnr_mail {
  background: #fff8e7;
  color: #543a25;
  padding: 17px 0;
  font-size: 1.8rem;
}

@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_mail {
    font-size: 1.4rem;
  }
}

.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}

.contact_bnr > li .bnr_mail:hover {
  color: #dfad71;
}

.contact_bnr > li a,
.contact_bnr > li span {
  display: block;
  color: #111;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  padding: 12px 10px;
}

.contact_bnr > li a:before,
.contact_bnr > li span:before {
  margin-right: 5px;
  font-size: 0.85em;
  position: relative;
  display: inline-block;
}

@media all and (max-width: 639px) {
  .contact_bnr > li a,
  .contact_bnr > li span {
    margin: 0 auto;
    white-space: nowrap;
    padding: 10px 0;
    width: 100%;
  }
  .contact_bnr > li a:before,
  .contact_bnr > li span:before {
    font-size: 1.5rem;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

/* footer
----------------------------------*/
#l-footer {
  font-size: 1.4rem;
  position: relative;
  overflow: hidden;
}

#l-footer:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  opacity: 0.7;
  background: #222;
  z-index: -2;
}

#l-footer .inner {
  padding: 60px 20px 40px;
  position: relative;
  z-index: 3;
}

#l-footer .inner .footer-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

#l-footer .inner .footer-column .footer-left {
  width: 45%;
}

#l-footer .inner .footer-column .footer-right {
  width: 50%;
}

#l-footer .right-inner {
  padding: 20px;
}

#l-footer .footer-txt {
  padding-left: 8px;
}

#l-footer .footer-txt span {
  background: #dfad71;
  padding: 5px 10px;
  font-size: 13px;
  color: #fefefe;
}

@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
  }
  #l-footer .inner {
    padding: 40px 10px;
  }
  #l-footer .inner .footer-column {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    text-align: center;
  }
  #l-footer .inner .footer-column .footer-left {
    width: 95%;
    font-size: 12px;
  }
  #l-footer .inner .footer-column .footer-right {
    width: 98%;
    margin-top: 20px;
  }
}

/* footer_navi
----------------------------------*/
.footer_navi {
  padding: 15px 10px 10px;
  margin: 0 auto;
}

.footer_navi ul {
  margin: 0 auto;
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer_navi ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  margin-bottom: 4px;
}

.footer_navi ul li a {
  color: #543a25;
  font-size: 1.3rem;
  position: relative;
  padding-left: 20px;
  text-align: center;
  display: block;
}

.footer_navi ul li a span {
  display: none;
}

.footer_navi ul li a:hover {
  color: #dfad71;
}

.footer_navi ul li .dropdown {
  display: none;
}

.footer_navi ul li .dropdown .dropdon-li a {
  font-size: 1.2rem;
}

.footer-infowrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-infowrap .footer-tel {
  margin-right: 20px;
}

@media all and (max-width: 896px) {
  .footer-infowrap {
    display: block;
  }
  .footer-infowrap .footer-tel {
    margin: 0;
  }
}

.footer-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media all and (max-width: 896px) {
  .footer-link {
    margin-bottom: 10px;
  }
}

@media all and (max-width: 639px) {
  .footer-link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer-btn a {
  display: block;
  color: #fff;
  width: 75px;
  padding: 5px 0;
  text-align: center;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 1.2rem;
}

.footer-btn a i {
  padding-top: 4px;
  font-size: 2.4rem;
  display: block;
  margin: 0 auto;
  line-height: 1;
  text-align: center;
}

@media all and (max-width: 639px) {
  .footer-btn a {
    font-size: 12px;
  }
  .footer-btn a i {
    font-size: 2rem;
  }
}

.footer-btn a:hover {
  opacity: 0.8;
}

.footer-btn.footer-access {
  background: #dfad71;
  margin-right: 10px;
  border-radius: 8px;
}

.footer-btn.footer-map {
  background: url(../img/bg-orange.jpg);
  border-radius: 8px;
}

.flogo {
  width: 300px;
  margin: 0 auto 15px;
  min-height: 0;
  position: relative;
  text-align: center;
  z-index: 5;
}

@media all and (max-width: 639px) {
  .flogo {
    margin: 0 auto 20px;
  }
}

.copyright {
  padding: 20px 0;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  color: #fff;
  background: #dfad71;
}

@media all and (max-width: 896px) {
  .copyright {
    font-size: 12px;
    padding: 15px 0 15px;
  }
}

/*----------------------------------
 top-contents
----------------------------------*/
.top-img-box {
  position: relative;
}

.top-img-box:before, .top-img-box:after {
  position: absolute;
  content: "";
  width: 35%;
  background-image: url(../img/bg1.png);
  background-repeat: repeat;
  z-index: -2;
  opacity: 1;
}

.top-img-box:before {
  height: 60%;
  top: -10%;
  left: 0;
}

.top-img-box:after {
  height: 45%;
  right: 0;
  bottom: -10%;
}

.top-gradient-box {
  position: relative;
}

.top-gradient-box:before, .top-gradient-box:after {
  position: absolute;
  content: "";
  width: 15%;
  background: -webkit-gradient(linear, left top, right top, color-stop(12.5%, #dfad71), color-stop(12.5%, #fff), color-stop(37.5%, #fff), color-stop(37.5%, #ffbf30), color-stop(62.5%, #ffbf30), color-stop(62.5%, #fff), color-stop(87.5%, #fff), color-stop(87.5%, #dfad71));
  background: linear-gradient(90deg, #dfad71 12.5%, #fff 12.5%, #fff 37.5%, #ffbf30 37.5%, #ffbf30 62.5%, #fff 62.5%, #fff 87.5%, #dfad71 87.5%);
  background-size: 70px 70px;
  background-position: 50px 50px;
  z-index: -2;
  opacity: 0.2;
}

.top-gradient-box:before {
  height: 80%;
  top: -10%;
  left: 0;
}

.top-gradient-box:after {
  height: 80%;
  right: 0;
  bottom: -10%;
}

.sec1-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1800px;
  margin-right: auto;
  margin-left: auto;
}

.sec1-wrap + .sec1-wrap {
  margin-top: 120px;
}

.sec1-wrap .sec1-img-box {
  width: 56%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.sec1-wrap .sec1-img-box img {
  width: 100%;
  border-radius: 8px;
}

.sec1-wrap .sec1-img-box .sec1-img01 {
  width: 60%;
}

.sec1-wrap .sec1-img-box .sec1-img02 {
  width: 40%;
}

.sec1-wrap .sec1-box {
  width: 40%;
  padding: 20px 40px;
}

.sec1-wrap.type1 .sec1-img-box {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.sec1-wrap.type1 .sec1-img-box .sec1-img01 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media all and (max-width: 896px) {
  .sec1-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sec1-wrap + .sec1-wrap {
    margin-top: 60px;
  }
  .sec1-wrap .sec1-img-box {
    width: 95%;
    margin-bottom: 20px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .sec1-wrap .sec1-box {
    width: 100%;
    padding: 20px;
  }
}

.lead01 {
  font-size: 3.6rem;
  text-align: center;
  letter-spacing: 0.15em;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  font-weight: 600;
  margin-bottom: 25px;
}

.lead01.type1 {
  color: #dfad71;
}

.lead01 .part1 {
  color: #dfad71;
}

.lead01 .part1 em {
  font-style: normal;
  font-family: "Dancing Script", serif;
  font-weight: 500;
  font-size: 6rem;
  display: inline-block;
}

@media all and (max-width: 896px) {
  .lead01 {
    font-size: 2.8rem;
  }
}

@media all and (max-width: 639px) {
  .lead01 {
    font-size: 2rem;
  }
  .lead01 .part1 em {
    font-size: 3.5rem;
  }
}

.bg-sec2 {
  position: relative;
  padding-top: 150px;
  background: #fefefe;
}

.bg-sec2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 60%;
  top: 0;
  left: 0;
  background: url(../img/bg-sec2.jpg) no-repeat 80% 50%/cover;
  z-index: 1;
}

@media all and (max-width: 639px) {
  .bg-sec2:before {
    height: 220px;
  }
}

.pick-title {
  position: relative;
  z-index: 2;
  line-height: 1;
  font-size: 2.4rem;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  padding-left: 30px;
  margin-bottom: 20px;
  color: #dfad71;
}

.pick-title .eng {
  line-height: 1;
  font-family: "Dancing Script", serif;
  font-weight: 500;
  display: block;
  font-size: 2rem;
  color: #dfad71;
}

.pick-title:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 40px;
  top: -20px;
  left: 0;
  background: #dfad71;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}

@media all and (max-width: 639px) {
  .pick-title {
    font-size: 1.5rem;
  }
  .pick-title .eng {
    font-size: 1.6rem;
  }
  .pick-title:before {
    left: 10px;
  }
}

.top-interview {
  position: relative;
}

.top-interview .more {
  position: absolute;
  left: 50%;
  bottom: 10px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.top-interview .more a {
  display: block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  font-weight: 700;
  line-height: 54px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 204px;
  height: 54px;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  background: #6c4618;
  position: relative;
}

.top-interview .more a svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.top-interview .more a svg rect {
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  stroke: #dfad71;
  stroke-width: 1;
  stroke-dasharray: 200px, 16px;
  stroke-dashoffset: 70px;
}

.top-interview .more a:hover {
  background: #111;
}

.top-interview .more a:hover svg rect {
  stroke-dashoffset: 284px;
}

.top-interview .more a span {
  color: #fff;
}

.top-box2 {
  margin: 0 auto;
  max-width: 700px;
  padding: 40px;
  position: relative;
  z-index: 2;
  -webkit-box-shadow: 0 0 16px rgba(84, 58, 37, 0.05);
          box-shadow: 0 0 16px rgba(84, 58, 37, 0.05);
  background: #fefefe;
}

@media all and (max-width: 639px) {
  .top-box2 {
    max-width: 90%;
    padding: 20px;
  }
}

.top-box2-txt {
  line-height: 2;
}

.top-icon {
  position: relative;
}

.top-icon:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-top-icon.jpg) no-repeat center/cover;
  z-index: -2;
  opacity: 0.7;
}

.feature-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 40px;
  margin-left: -2%;
}

.feature-list > li {
  width: 31.33%;
  margin-left: 2%;
  margin-bottom: 50px;
  position: relative;
}

.feature-list > li:nth-child(3n + 2) {
  margin-top: -30px;
}

@media all and (max-width: 639px) {
  .feature-list > li:nth-child(3n + 2) {
    margin-top: 0;
  }
}

.feature-list > li .feature-txt {
  position: relative;
  padding-top: 20px;
}

.feature-list > li .feature-txt .feature-num {
  display: block;
  position: absolute;
  font-family: "Dancing Script", serif;
  font-weight: 500;
  font-size: 5rem;
  line-height: 1;
  color: #6bcad7;
  left: 50%;
  top: -40px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
}

@media all and (max-width: 639px) {
  .feature-list {
    width: 90%;
    margin: 0 auto;
  }
  .feature-list > li {
    width: 100%;
    margin: 0 auto 30px;
  }
  .feature-list > li .feature-txt .feature-num {
    font-size: 3.5rem;
  }
}

.icon-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.icon-list li {
  width: 20%;
  margin-bottom: 35px;
  padding: 0 4px;
}

.icon-list li a {
  display: block;
  text-align: center;
  font-weight: 600;
  padding: 10px;
  height: 100%;
  -webkit-transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  position: relative;
  padding: 15px 0;
  color: #543a25;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
}

.icon-list li a img {
  width: 65px;
  margin: 0 auto 5px;
}

.icon-list li a:before {
  position: absolute;
  content: "";
  width: 97%;
  height: 97%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  background: #fff;
  opacity: 0.7;
  border-radius: 2px;
  z-index: -1;
  -webkit-transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
}

.icon-list li a:hover {
  color: #6bcad7;
}

.icon-list li a:hover:before {
  opacity: 0.9;
  -webkit-transform: translate(-50%, -50%) scale(1.2);
          transform: translate(-50%, -50%) scale(1.2);
}

@media all and (max-width: 639px) {
  .icon-list li {
    width: 50%;
  }
  .icon-list li a {
    font-size: 12px;
  }
}

.icon-list.type1 {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.pickup-img {
  position: relative;
}

.pickup-img .pick-lead {
  position: absolute;
  font-family: "Dancing Script", serif;
  font-weight: 500;
  color: #543a25;
  left: 10px;
  top: -30px;
  opacity: 0.8;
  font-size: 3rem;
}

@media all and (max-width: 639px) {
  .pickup-img .pick-lead {
    font-size: 2rem;
    top: -15px;
  }
}

.bnr-box {
  padding: 40px 0;
  text-align: center;
}

@media all and (max-width: 639px) {
  .bnr-box {
    padding: 20px;
  }
}

.title01 {
  font-size: 1.8rem;
  margin-bottom: 14px;
  color: #3b709e;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
}

.title01 span {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: #dfad71;
  font-family: "Dancing Script", serif;
  font-weight: 500;
}

@media all and (max-width: 639px) {
  .title01 {
    font-size: 1.4rem;
  }
  .title01 span {
    font-size: 1.3rem;
  }
}

.title01.white {
  color: #fcfcfc;
}

.title01.white span {
  color: #fff;
}

.title02 {
  margin-bottom: 10px;
}

.title02 span {
  color: #543a25;
  font-weight: 600;
  background: url(../img/bg-yellow.jpg);
  padding: 3px 10px;
  border-radius: 30px;
  letter-spacing: 0.2em;
}

@media all and (max-width: 639px) {
  .title02 {
    font-size: 1.2rem;
  }
}

.title03 {
  background: rgba(223, 173, 113, 0.2);
  padding: 8px;
  color: #543a25;
  border-top: 1px solid #dfad71;
}

.map-big {
  margin-top: 40px;
  width: 100%;
  height: 350px;
}

.map-big iframe {
  width: 100%;
}

@media all and (max-width: 639px) {
  .map-big {
    height: 280px;
  }
}

/* --news--
----------------------------------*/
.news-box {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 200px;
}

@media all and (max-width: 896px) {
  .news-box {
    margin-top: 0;
  }
}

@media all and (max-width: 639px) {
  .news-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 10px;
  }
}

.news-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
}

.news-title span {
  display: block;
}

.news-title .eng {
  font-family: "Dancing Script", serif;
  font-weight: 500;
  color: #dfad71;
  position: relative;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
}

.news-title .ja {
  font-size: 2rem;
  position: relative;
  margin: 0 auto;
  margin-bottom: 20px;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  font-weight: 700;
}

@media all and (max-width: 639px) {
  .news-title {
    margin-bottom: 30px;
  }
  .news-title .eng {
    font-size: 2.5rem;
  }
  .news-title .ja {
    font-size: 1.5rem;
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    margin-bottom: 0;
  }
}

.news-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media all and (max-width: 639px) {
  .news-right {
    width: 100%;
    margin: 10px 0 0;
  }
}

.topic-dl .topic-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dotted #ccc;
  position: relative;
  padding: 10px 0;
}

.topic-dl .topic-inner:before {
  width: 40px;
  border-bottom: 1px solid #dfad71;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
}

.topic-dl .topic-inner dt {
  width: 7em;
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
}

@media all and (max-width: 639px) {
  .topic-dl .topic-inner dt {
    font-size: 12px;
  }
}

.topic-dl .topic-inner dd {
  padding-left: 20px;
}

.topic-dl .topic-inner dd a {
  font-weight: 600;
}

.topic-dl .topic-inner dd a:hover {
  color: #dfad71;
}

@media all and (max-width: 639px) {
  .topic-dl {
    padding-bottom: 40px;
  }
}

.top-bg {
  background: url(../img/top-bg01.jpg) no-repeat center/cover;
  background-attachment: fixed;
  height: 400px;
}

@media all and (max-width: 1100px) {
  .top-bg {
    background-attachment: scroll;
  }
}

/* --top-bnr-list--
----------------------------------*/
.top-bnr-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}

.top-bnr-list > li {
  width: 48%;
  position: relative;
}

.top-bnr-list > li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.top-bnr-list > li a:hover {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.top-bnr-list > li a:hover .btn-arrow {
  background: #222;
}

.top-bnr-list > li a:hover .btn-arrow i {
  border-bottom-color: #fefefe;
}

.top-bnr-list > li a:hover .btn-arrow i:before {
  border-right-color: #fefefe;
}

.top-bnr-list > li a:hover .top-bnr-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media all and (max-width: 1100px) {
  .top-bnr-list {
    width: 85%;
    margin: 0 auto;
  }
  .top-bnr-list > li {
    width: 48%;
    margin-bottom: 20px;
  }
}

@media all and (max-width: 639px) {
  .top-bnr-list {
    width: 95%;
  }
  .top-bnr-list > li {
    width: 100%;
  }
}

.top-bnr-list .top-bnr-img {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.top-bnr-list .top-bnr-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media all and (max-width: 639px) {
  .top-bnr-list .top-bnr-img {
    height: 200px;
  }
}

.top-bnr-list .btn-arrow {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 20px;
  top: 210px;
  text-align: center;
  line-height: 60px;
  background: #fefefe;
  border: 2px solid #222;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media all and (max-width: 639px) {
  .top-bnr-list .btn-arrow {
    top: 170px;
  }
}

.top-bnr-list .btn-arrow i {
  display: block;
  position: absolute;
  width: 30px;
  border-bottom: 2px solid #222;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 5px;
}

.top-bnr-list .btn-arrow i:before {
  position: absolute;
  width: 10px;
  height: 8px;
  content: "";
  right: 3px;
  bottom: -2px;
  border-right: 3px solid #222;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
}

.top-bnr-list .top-bnr-title {
  font-weight: 700;
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

.top-bnr-list .top-bnr-title .eng {
  font-family: "Dancing Script", serif;
  font-weight: 500;
  font-size: 3rem;
  letter-spacing: 0.1em;
  color: #dfad71;
  padding: 10px 10px 6px;
  background: #fefefe;
}

.top-bnr-list .top-bnr-title .ja {
  font-size: 1.5rem;
  padding: 6px 10px;
  color: #fefefe;
  background: #dfad71;
}

@media all and (max-width: 639px) {
  .top-bnr-list .top-bnr-title .eng {
    font-size: 2.2rem;
  }
  .top-bnr-list .top-bnr-title .ja {
    font-size: 1.3rem;
  }
}

.top-bnr-list .top-bnr-txt {
  color: #222;
  font-size: 1.4rem;
  padding: 10px;
}

@media all and (max-width: 639px) {
  .top-bnr-list .top-bnr-txt {
    font-size: 1.2rem;
  }
}

.map-link {
  font-weight: 700;
  color: #dfad71;
  border-bottom: 1px solid #dfad71;
}

.map-link:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  margin-right: 5px;
}

/* contents
----------------------------------*/
.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}

@media all and (max-width: 1100px) {
  .single {
    padding: 80px 10px;
  }
}

.single02 {
  width: calc(100% - 80px);
  margin: 0 auto;
  padding: 80px 0;
}

@media all and (max-width: 1100px) {
  .single02 {
    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;
  }
}

.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: #333;
  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;
  }
}

.mbox2 {
  background: rgba(255, 255, 255, 0.4);
  padding: 30px;
}

@media all and (max-width: 639px) {
  .mbox2 {
    padding: 15px;
  }
}

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

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

.bg-grid {
  background: rgba(255, 255, 255, 0.9);
  /* border-top: 1px solid #555;
  border-bottom: 1px solid #555;*/
  background-image: -webkit-gradient(linear, left top, right top, color-stop(95%, transparent), color-stop(50%, rgba(204, 204, 204, 0.2)), to(rgba(204, 204, 204, 0.2))), -webkit-gradient(linear, left bottom, left top, color-stop(95%, transparent), color-stop(50%, rgba(204, 204, 204, 0.2)), to(rgba(204, 204, 204, 0.2)));
  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: 300px;
}

@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 {
  font-weight: 700;
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
  text-align: center;
}

.mtitle .eng {
  font-size: 2.8rem;
  color: #dfad71;
  position: relative;
  z-index: 2;
  display: block;
  font-family: "Dancing Script", serif;
  font-weight: 500;
}

.mtitle .ja {
  position: relative;
  z-index: 2;
  font-size: 2.8rem;
  color: #fff;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.mtitle.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.mtitle.white span {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.mtitle.white span:after {
  background-color: #eee;
}

.mtitle.white span.ja {
  border-bottom-color: #fefefe;
}

.mtitle.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.mtitle.mtitle_left:before {
  left: 2%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.mtitle.mtitle_left span:after {
  left: 0;
  -webkit-transform: none;
          transform: none;
}

@media all and (max-width: 639px) {
  .mtitle {
    text-align: center;
  }
  .mtitle .eng {
    font-size: 1.5rem;
  }
  .mtitle .ja {
    font-size: 2rem;
  }
}

.mtitle2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  color: #543a25;
  letter-spacing: 0.2em;
  position: relative;
}

.mtitle2 span {
  font-size: 1.8rem;
  font-family: "Dancing Script", serif;
  font-weight: 500;
  display: block;
  color: #dfad71;
  letter-spacing: 0;
}

.mtitle2 span.ja {
  font-size: 1.8rem;
  font-weight: 700;
}

@media all and (max-width: 639px) {
  .mtitle2 {
    font-size: 1.5rem;
  }
  .mtitle2 span {
    font-size: 1.2rem;
  }
  .mtitle2 span .ja {
    font-size: 1.6rem;
  }
}

.mtitle3 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  min-height: 100px;
  top: 0;
  left: 0;
}

.mtitle3 .ja {
  display: block;
  font-size: 3.2rem;
  color: #fff;
  letter-spacing: 0.2em;
  padding-right: 5px;
  font-weight: 600;
  line-height: 2;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
}

.mtitle3 .eng {
  display: block;
  font-family: "Dancing Script", serif;
  font-weight: 500;
  font-size: 2.6rem;
  color: #dfad71;
}

@media all and (max-width: 639px) {
  .mtitle3 {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    position: static;
    margin-bottom: 20px;
    min-height: initial;
    min-height: auto;
  }
  .mtitle3 .ja {
    font-size: 2rem;
  }
  .mtitle3 .eng {
    font-size: 1.6rem;
  }
}

.mtitle_line {
  font-size: 2rem;
  padding-bottom: 15px;
  background: url(../img/bg_mtitle_line.gif) repeat-x left bottom;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.2rem;
  color: #543a25;
}

@media all and (max-width: 639px) {
  .mtitle_line {
    font-size: 1.4rem;
  }
}

.mtitle_balloon {
  font-size: 2.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.mtitle_balloon span {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  line-height: 1.3em;
  overflow: hidden;
}

.mtitle_balloon span.eng {
  font-family: "Dancing Script", serif;
  font-weight: 500;
  font-size: 5rem;
}

.mtitle_balloon span:before, .mtitle_balloon span:after {
  content: "";
  display: block;
  border-bottom: 3px solid #333;
  position: absolute;
  width: 50%;
  bottom: 6px;
}

.mtitle_balloon span:before {
  left: -5px;
}

.mtitle_balloon span:after {
  right: -5px;
}

.mtitle_balloon span i {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #333;
  border-right: 3px solid #333;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 2px;
}

.mtitle_balloon.center {
  text-align: center;
}

.mtitle_balloon.white span:before, .mtitle_balloon.white span:after {
  border-bottom-color: #fefefe;
}

.mtitle_balloon.white span i {
  border-color: #fefefe;
}

@media all and (max-width: 639px) {
  .mtitle_balloon {
    font-size: 1.7rem;
  }
  .mtitle_balloon span.eng {
    font-size: 2.4rem;
  }
}

.mtitle-bll {
  font-size: 1.7rem;
  font-weight: 700;
  border-bottom: 2px solid #eeeeee;
  position: relative;
  margin-bottom: 15px;
  line-height: 1.5;
  padding-bottom: 8px;
}

.mtitle-bll:after {
  position: absolute;
  content: "";
  display: block;
  bottom: -2px;
  width: 100px;
  height: 2px;
  background: #dfad71;
}

@media all and (max-width: 639px) {
  .mtitle-bll {
    font-size: 1.6rem;
  }
}

.mtitle4 {
  font-weight: normal;
  text-align: center;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
}

.mtitle4 span {
  position: relative;
  display: inline-block;
  min-width: 10%;
}

.mtitle4 span:before, .mtitle4 span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 2rem;
  background-color: #dfad71;
}

.mtitle4 span:before {
  left: -11px;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
}

.mtitle4 span:after {
  right: -11px;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}

.mtitle4.white span:before, .mtitle4.white span:after {
  background-color: #ffbf30;
}

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

@media all and (max-width: 320px) {
  .mtitle4 span:before {
    left: -3px;
  }
  .mtitle4 span:after {
    right: -3px;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 700;
  position: relative;
  border-left: 6px solid #dfad71;
  margin: 8px 0 15px;
  font-size: 1.1em;
  line-height: 1.4;
  text-align: left;
}

.mtitle_sub .hissu {
  color: #fff;
  background: #e8c59b;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
}

.mtitle_sub:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #dfad71;
}

.mtitle_box {
  background: rgba(107, 202, 215, 0.3);
  color: #543a25;
  font-size: 1.6rem;
  position: relative;
  padding: 10px 10px;
  margin-bottom: 20px;
  font-weight: 700;
}

.mtitle_box span {
  font-weight: normal;
  font-size: 14px;
  padding-left: 10px;
}

.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f30a";
  font-weight: 900;
  display: block;
  right: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
}

@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.3rem;
    padding: 8px;
  }
}

.mtitle_box2 {
  background: #dfad71;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  font-weight: 700;
  overflow: hidden;
  letter-spacing: 0.1rem;
  -webkit-box-shadow: 0 8px 8px rgba(223, 173, 113, 0.2);
          box-shadow: 0 8px 8px rgba(223, 173, 113, 0.2);
  padding: 15px 10px 15px 20px;
  margin-bottom: 25px;
}

.mtitle_box2 .small-cap {
  font-weight: normal;
  font-size: 14px;
}

.mtitle_box2:before {
  background-color: #fff;
  content: "";
  display: block;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
  position: absolute;
  bottom: -10px;
  right: -150px;
  width: 300px;
  height: 280px;
}

@media all and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 15px;
    line-height: 1.5;
    padding: 10px 10px 10px 15px;
    padding-right: 40px;
  }
  .mtitle_box2 span {
    font-size: 12px;
  }
  .mtitle_box2:before {
    width: 215px;
    right: -170px;
  }
}

.mtext1 {
  font-size: 2.2rem;
  line-height: 1.6;
  letter-spacing: 0.15em;
}

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

.mtext2 {
  font-size: 2.7rem;
  letter-spacing: 0.1rem;
  line-height: 1.4;
}

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

.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: #dfad71;
}

/* btn
----------------------------------*/
.btn01 a {
  background: #fefefe;
  text-align: center;
  width: 300px;
  margin: 15px auto;
  color: #543a25;
  display: block;
  padding: 8px 5px;
  font-weight: 700;
  border: 2px solid #222;
  border-radius: 35px;
}

.btn01 a:hover {
  background: #dfad71;
  color: #fefefe;
}

.btn01.mail {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.btn01.mail a {
  background: #ffbf30;
  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: 300px;
  margin: 20px auto 20px;
}

.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #dfad71;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
  text-align: center;
  color: #ffffff;
}

.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 50px;
  height: 1px;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn02 a:hover i {
  width: 34px;
}

@media all and (max-width: 639px) {
  .btn02 {
    width: 260px;
  }
  .btn02 a {
    font-size: 1.2rem;
  }
}

/* news
----------------------------------*/
.news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  letter-spacing: 0;
  line-height: 1.7;
}

.news dt {
  width: 7em;
  padding: 3px 5px;
  background: #f0f0f0;
  text-align: center;
  color: #543a25;
}

.news dd {
  padding: 5px;
  background: #fff;
  width: calc(100% - 8.5em);
  margin-left: 8px;
}

.news dt:not(:last-child),
.news dd:not(:last-child) {
  margin-bottom: 7px;
}

.news-bl {
  overflow: hidden;
}

.news-bl dt {
  float: left;
  width: 8em;
  padding: 5px;
  line-height: 1.3;
  color: #dfad71;
  text-align: center;
  border: 1px solid #dfad71;
  border-radius: 30px;
  background: #fefefe;
  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: #543a25;
  background-image: -webkit-gradient(linear, left top, right top, from(#dfad71), to(#c8df81));
  background-image: linear-gradient(to right, #dfad71, #c8df81);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 700;
}

.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;
  }
}

/* page-title
----------------------------------*/
.page-title {
  margin: 0 auto 0;
  position: relative;
  z-index: 1;
  background: url(../img/1.jpg) no-repeat 50%/cover;
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

@media all and (max-width: 896px) {
  .page-title {
    max-width: calc(100% - 15px);
  }
}

.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: -webkit-gradient(linear, left top, right top, from(#dfad71), to(#543a25));
  background-image: linear-gradient(to right, #dfad71, #543a25);
  opacity: 0.7;
}

.page-title .inner {
  margin: 0 auto;
  padding: 20px 0 20px;
  max-width: 1200px;
}

.page-title .page-lead {
  text-align: center;
}

.page-title .page-lead span {
  display: block;
}

.page-title .page-lead .ja {
  font-size: 2.4rem;
  margin-bottom: 10px;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  color: #fff;
}

.page-title .page-lead .eng {
  font-size: 5rem;
  color: #fff;
  font-family: "Dancing Script", serif;
  font-weight: 500;
  letter-spacing: 0.1rem;
}

@media all and (max-width: 896px) {
  .page-title .inner {
    width: 100%;
    padding: 80px 0 0;
  }
  .page-title .page-lead .ja {
    font-size: 1.5rem;
  }
  .page-title .page-lead .eng {
    font-size: 3.5rem;
  }
}

.bg-gradient {
  position: relative;
  position: relative;
}

.bg-gradient:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#543a25), to(#dfad71));
  background-image: linear-gradient(to right, #543a25, #dfad71);
  background: url(../img/bg-yellow.jpg);
  z-index: -2;
}

.bg-01 {
  position: relative;
  margin: 40px auto;
}

.bg-01:before {
  position: absolute;
  content: "";
  width: calc(100% - 80px);
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background: url(../img/bg-01.jpg) no-repeat center/cover;
  z-index: -1;
  opacity: 0.5;
}

@media all and (max-width: 639px) {
  .bg-01:before {
    width: calc(100% - 10px);
  }
}

.bg-01.type1:before {
  background: #ffbf30;
  opacity: 0.05;
}

.bg-01.type2:before {
  background-image: -webkit-gradient(linear, right top, left top, from(#e4d6a6), color-stop(#fff8e7), to(transparent));
  background-image: linear-gradient(to left, #e4d6a6, #fff8e7, transparent);
  opacity: 0.6;
}

.bg-02 {
  background: rgba(223, 173, 113, 0.3);
}

.bg-03 {
  background: url(../img/bg-03.jpg) no-repeat center bottom/cover;
  padding-bottom: 60px;
}

.bg-pattern {
  background: url(../img/pattern.png) repeat-x left bottom;
}

.bg-w {
  position: relative;
  margin-bottom: 50px;
}

.bg-w:before {
  position: absolute;
  content: "";
  width: calc(100% - 80px);
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background: #fefefe;
  z-index: -1;
}

@media all and (max-width: 639px) {
  .bg-w:before {
    width: calc(100% - 10px);
  }
}

.bg-base {
  background: rgba(223, 173, 113, 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%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background: #dfad71;
  z-index: -1;
  opacity: 0.1;
}

@media all and (max-width: 639px) {
  .bg-base.type1:before {
    width: calc(100% - 10px);
  }
}

.bg-green {
  background: #dfad71;
}

.bg-gray {
  position: relative;
  background: #f2f2ec;
}

.bg-gray.bg-half {
  background: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50.1%, #f2f2ec), to(#f2f2ec));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #f2f2ec 50.1%, #f2f2ec 100%);
}

.bg-gray2 {
  position: relative;
  margin-bottom: 40px;
}

.bg-gray2:before {
  position: absolute;
  content: "";
  width: calc(100% - 80px);
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background: #f2f2ec;
  z-index: -1;
  opacity: 0.5;
}

@media all and (max-width: 639px) {
  .bg-gray2:before {
    width: calc(100% - 10px);
  }
}

.bg-gray2.type1:before {
  background: #543a25;
  opacity: 0.1;
}

.bg-999 {
  background: #aaa;
}

.bg-blue {
  background: rgba(200, 223, 129, 0.2);
}

.bg-blue.bg-half {
  background: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50.1%, #e8c59b), to(#e8c59b));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #e8c59b 50.1%, #e8c59b 100%);
}

.bg-beige {
  position: relative;
  margin-bottom: 40px;
}

.bg-beige:before {
  position: absolute;
  content: "";
  width: calc(100% - 80px);
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background: #fff8e7;
  z-index: -1;
  opacity: 0.3;
}

@media all and (max-width: 639px) {
  .bg-beige:before {
    width: calc(100% - 10px);
  }
}

.bg-beige2 {
  background: #fff5dd;
}

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

/* tbl
----------------------------------*/
.tbl-profile {
  width: 100%;
}

.tbl-profile th,
.tbl-profile td {
  padding: 10px;
  font-size: 1.4rem;
  vertical-align: middle;
  border-bottom: 1px solid #dfad71;
}

@media all and (max-width: 639px) {
  .tbl-profile th,
  .tbl-profile td {
    font-size: 12px;
  }
}

.tbl-profile th {
  width: 24%;
  text-align: left;
}

.tbl-price {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.tbl-price:not(:last-of-type) {
  margin-bottom: 35px;
}

.tbl-price th,
.tbl-price td {
  padding: 10px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media all and (max-width: 639px) {
  .tbl-price th,
  .tbl-price td {
    display: block;
  }
}

.tbl-price th {
  width: 55%;
  text-align: left;
  font-size: 1.4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.tbl-price th p {
  font-weight: normal;
  color: #916b50;
  letter-spacing: 0.1rem;
}

@media all and (max-width: 639px) {
  .tbl-price th {
    font-size: 1.2rem;
    border-right: 0;
    border-bottom: 0;
    width: 100%;
  }
}

.tbl-price td {
  text-align: right;
  font-family: "Montserrat", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  color: #dfad71;
}

@media all and (max-width: 639px) {
  .tbl-price td {
    margin-bottom: 20px;
  }
}

.tbl {
  width: 100%;
  background: none;
}

.tbl .w150 {
  width: 150px;
}

@media all and (max-width: 639px) {
  .tbl .w150 {
    width: 100px;
  }
}

.tbl .w150 img {
  max-width: initial;
}

.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border: 1px solid #ccc;
  font-size: 1.4rem;
}

.tbl th span,
.tbl td span {
  font-size: 1.3rem;
  font-weight: normal;
}

.tbl th {
  background: #dfad71;
  text-align: left;
}

.tbl thead th {
  background: #f2f2ec;
}

.tbl .th-1 {
  background: rgba(223, 173, 113, 0.3);
}

.tbl .th-2 {
  background: rgba(107, 202, 215, 0.2);
}

.tbl .th-3 {
  width: calc(80% / 3);
}

.tbl td.w150 {
  padding: 0;
}

.tbl td {
  background: none;
}

@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;
  }
}

@media all and (max-width: 639px) {
  .tbl.type1 th,
  .tbl.type1 td {
    display: block;
    width: 100%;
  }
  .tbl.type1 td.w150 {
    text-align: center;
    margin: 0 auto;
  }
}

.tbl_new {
  width: 100%;
  background: #111 !important;
}

.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 15px 10px;
}

.tbl_new tr th {
  font-weight: 700;
  width: 35%;
  color: #fff;
  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: #333;
}

.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: #543a25;
  text-align: left;
  border-color: #dfad71;
}

.tbl-border th.th-1 {
  width: 45%;
}

@media all and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

.tbl-border td {
  border-color: #e8e8dd;
}

.price {
  font-weight: bold;
}

.price span {
  color: #543a25;
  font-size: 1.3em;
}

@media all and (max-width: 639px) {
  .price {
    font-size: 1.4rem;
  }
}

.timetable {
  padding: 20px 20px;
  width: 100%;
  border-top: 1px solid #dfad71;
}

.timetable th,
.timetable td {
  border-bottom: 1px solid #dfad71;
  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;
  color: #111;
  background: #fff8e7;
}

.timetable .th-1 {
  width: 35%;
  font-weight: 600;
  text-align: center;
}

.timetable .circle {
  color: #dfad71;
}

.timetable .triangle {
  color: #543a25;
}

@media all and (max-width: 639px) {
  .timetable {
    padding: 15px 10px;
  }
  .timetable .th-1 {
    width: 25%;
  }
}

.notion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 15px;
  background: #f2f2ec;
}

.notion .triangle {
  font-size: 2rem;
  color: #543a25;
}

.notion .notion-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 20px;
  text-align: left;
}

@media all and (max-width: 639px) {
  .notion .notion-right {
    font-size: 12px;
  }
}

.notion .notion-right span {
  color: #543a25;
  font-weight: bold;
  background: #ffbf30;
  padding: 0 4px;
}

/* 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(223, 173, 113, 0.5);
}

.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.list_check.type1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.list_check.type1 li {
  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 {
  margin-bottom: 5px;
}

.list_check li span {
  font-weight: normal;
  font-size: 0.9em;
  display: block;
  padding: 10px;
  background: rgba(255, 248, 231, 0.2);
  margin-top: 10px;
}

.list_check li a {
  color: #dfad71;
  border-bottom: 1px dotted #dfad71;
}

.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  margin-right: 10px;
  color: #dfad71;
}

@media all and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 5px;
    font-size: 1.3rem;
  }
}

.list_check2 li {
  padding: 4px 8px;
  font-weight: 700;
}

.list_check2 li .num {
  color: #dfad71;
  margin: 0 4px;
}

.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 10px;
  color: #dfad71;
}

.list_check2 li:not(:last-child) {
  margin-bottom: 4px;
  border-bottom: 1px dashed #eee;
}

.list-inline2 {
  text-align: center;
}

.list-inline2 li {
  display: inline-block;
  padding: 4px 15px;
  background: #fefefe;
  border: 1px solid #543a25;
  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: #dfad71;
  font-weight: normal;
}

@media all and (max-width: 639px) {
  .list-inline li {
    display: block;
    padding: 0;
  }
  .list-inline li:before {
    content: "-";
    color: #dfad71;
  }
  .list-inline li:not(:last-of-type):after {
    display: none;
  }
}

.list_num li {
  position: relative;
  padding: 6px 4px 6px 50px;
  font-size: 2rem;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  margin-bottom: 5px;
  color: #543a25;
}

.list_num li span {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 3.5rem;
  color: #543a25;
}

@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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      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 dotted #dfad71;
  position: relative;
  padding-left: 40px;
  padding-bottom: 10px;
}

.ol-list li .ol-lead {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  color: #bf7c2b;
  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;
  left: 0;
  top: 15px;
  position: absolute;
  font-size: 3.5rem;
  color: #dfad71;
  font-family: "Dancing Script", serif;
  font-weight: 500;
  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;
  font-size: 1.4rem;
}

.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: 1px solid #dfad71;
}

.list_disc li:before {
  content: "●";
  margin-right: 5px;
  color: #dfad71;
  font-size: 0.7em;
}

@media all and (max-width: 639px) {
  .list_disc li {
    font-size: 12px;
  }
}

.list-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.list-btn li {
  width: 32%;
  margin: 0 calc(1.33% + (1.33% / 2)) 10px 0;
}

.list-btn li a {
  display: block;
  background: #fff8e7;
  color: #543a25;
  font-weight: 700;
  padding: 10px 3px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  font-size: 1.5rem;
  letter-spacing: 0;
}

.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:nth-child(3n) {
    margin-right: auto;
  }
}

.list-btn.type1 {
  max-width: 1000px;
  margin: 0 auto 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.list-btn.type1 li a {
  background: #dfad71;
  border: 1px solid #d69547;
}

.list-btn.type1 li a:hover {
  background: #dae9aa;
}

.list-btn.type1 li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f13a";
  font-weight: 900;
  margin-right: 5px;
}

/* blog
----------------------------------*/
#top-blog .pages {
  display: none;
}

#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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog-wrap * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.blog-wrap > li {
  width: 24%;
  margin: 0 0.5% 20px 0.5%;
  position: relative;
  background: rgba(34, 34, 34, 0.8);
  padding: 15px 10px;
}

@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;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

@media all and (max-width: 639px) {
  .blog-wrap > li {
    width: 90%;
    margin: 0 auto 10px;
  }
}

.blog-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.blog-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}

.blog-img:hover img {
  opacity: 1 !important;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.blog-detail {
  padding-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-date {
  background: #dfad71;
  width: 100px;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #fff;
  font-size: 12px;
}

.blog-date2 {
  color: #d18933;
  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: 700;
  line-height: 1.3;
  margin: 10px 0;
  color: #dfad71;
}

.blog-txt {
  line-height: 1.5;
  color: #fff;
  padding: 10px;
}

@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: #dfad71;
  padding: 4px 5px;
  background: #111;
  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: #f2f2ec;
}

.category_nav li:last-child a {
  border-bottom: none;
}

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

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

.w300 {
  width: 300px;
}

.spbr {
  display: none !important;
}

.color1 {
  color: #dfad71;
}

.color2 {
  color: #543a25;
}

.color3 {
  color: #f66009;
}

.relative {
  position: relative;
}

.txt1 {
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 2;
}

.bigger {
  font-size: 1.15em;
}

.num {
  font-weight: 700;
}

.num a {
  color: #dfad71;
  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: #dfad71;
}

.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:hover {
  text-decoration: none;
}

.telbnr {
  max-width: 500px;
  margin: 20px auto 0;
}

.telbnr li {
  border: 3px solid #dfad71;
  padding: 10px 10px;
  text-align: center;
  border-radius: 40px;
}

.telbnr li a {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: #dfad71;
}

.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}

.telbnr li a:hover {
  color: #dfad71;
}

.telbnr li:last-of-type {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .telbnr {
    max-width: 90%;
  }
  .telbnr li {
    width: 100%;
    margin: 0 auto 30px;
  }
  .telbnr li:last-of-type {
    margin-left: auto;
  }
  .telbnr li a {
    font-size: 2rem;
  }
}

.telbnr-ttl {
  font-weight: 700;
  font-size: 1.8rem;
  color: #543a25;
  margin-top: -30px;
}

.telbnr-ttl span {
  background: #fff;
  padding: 0 20px;
}

@media all and (max-width: 639px) {
  .telbnr-ttl {
    font-size: 1.3rem;
  }
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
}

.breadcrumb li {
  display: inline;
  color: #aaa;
}

.breadcrumb li a {
  color: #dfad71;
}

.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 {
  color: #fff;
  background: #dfad71;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
  position: relative;
  top: -2px;
}

.form dl dt span.nini {
  background: #ffbf30;
  color: #543a25;
}

.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;
}

.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 button {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  border: 1px solid #dfad71;
  font-weight: 700;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  background: #dfad71;
  border-radius: 25px;
}

.form button:hover {
  background: #fff;
  color: #dfad71;
}

.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: #dfad71;
}

.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: 3px;
  top: 5px;
  background-color: #dfad71;
  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;
  -webkit-box-shadow: 20px -1px #fff;
          box-shadow: 20px -1px #fff;
}

.form label.radio_text input[type="radio"]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form label.radio_text input[type="radio"]:focus {
  opacity: 0.2;
  -webkit-box-shadow: 20px -1px #eeebda;
          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 #dfad71;
  border-bottom: 3px solid #dfad71;
  -webkit-transform: rotate(45deg);
          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;
  -webkit-box-shadow: 41px 0px #fff;
          box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}

.form label.checkbox_text input[type="checkbox"]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form label.checkbox_text input[type="checkbox"]:checked:focus {
  -webkit-box-shadow: 40px 0px #666;
          box-shadow: 40px 0px #666;
  opacity: 0.1;
}

.form label.checkbox_text input[type="checkbox"]:focus {
  -webkit-box-shadow: 41px 0px #eee;
          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 {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    margin-left: -5px;
  }
}

.fm-txt {
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 5px;
}

.thanks {
  padding: 40px;
  border: 3px solid #dfad71;
  -webkit-box-shadow: 0 0 0 8px rgba(223, 173, 113, 0.2);
          box-shadow: 0 0 0 8px rgba(223, 173, 113, 0.2);
  max-width: 700px;
  margin: 0 auto;
}

@media all and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

.shadow {
  -webkit-box-shadow: 0 0 10px rgba(84, 58, 37, 0.05);
          box-shadow: 0 0 10px rgba(84, 58, 37, 0.05);
}

.policy {
  padding: 30px;
  background: #fbfbfb;
}

.mtitle_small {
  font-weight: bold;
  color: #f66009;
  padding: 10px 0;
  font-size: 1.6rem;
  border-top: 1px solid #dfad71;
  border-bottom: 1px solid #dfad71;
  margin-bottom: 20px;
}

.mtitle_small:before {
  content: "―";
  margin-right: 8px;
  color: #dfad71;
}

@media all and (max-width: 639px) {
  .mtitle_small {
    padding: 6px 4px;
    font-size: 1.3rem;
  }
}

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
}

.mtitle_small2:before {
  content: "";
  background-color: #dfad71;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.6em;
  left: 0;
}

/* slick
----------------------------------*/
.thumb-item li {
  width: 100%;
}

.thumb-item-nav li {
  overflow: hidden;
  height: 100px;
}

.thumb-item-nav li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

@media all and (max-width: 639px) {
  .thumb-item-nav li {
    height: 80px;
  }
}

/*photoギャラリー*/
.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery li {
  width: 24%;
  margin: 0 calc(1% + (1% / 3)) 25px 0;
}

.gallery li:nth-child(4n) {
  margin-right: 0;
}

.gallery li a {
  background: rgba(255, 248, 231, 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;
}

@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;
  }
}

.list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  margin-top: -50px;
}

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

.list2.interview-list .child {
  position: relative;
  padding-bottom: 80px;
}

.list2.type1 > li,
.list2.type1 .child {
  background: #fefefe;
  padding: 20px;
}

.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;
  }
}

@media all and (max-width: 639px) {
  .list2 > li,
  .list2 .child {
    width: 100%;
    margin: 20px auto 0;
  }
}

.list3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media all and (max-width: 639px) {
  .list3.top-list li {
    width: 31%;
  }
}

.list3 li {
  width: 31%;
  position: relative;
  margin: 0 calc(2.33% + (2.33% / 2)) 20px 0;
}

.list3 li:nth-child(3n) {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  .list3 li {
    width: 95%;
    margin: 0 auto 30px;
  }
  .list3 li:nth-child(3n) {
    margin-right: auto;
  }
}

.list4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -2%;
  margin-top: -30px;
}

.list4.type1 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.list4.type1 li {
  padding: 15px;
  background: rgba(107, 202, 215, 0.2);
  border-radius: 10px;
  display: block;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.list4.type1 li a {
  display: block;
}

.list4.type1 li a:hover {
  position: relative;
  -webkit-transform: translate(0, 10px);
          transform: translate(0, 10px);
}

.list4.type1 li img {
  width: 60px;
  margin: 0 auto 10px;
}

@media all and (max-width: 639px) {
  .list4.type1 > li {
    width: 48%;
  }
  .list4.type1 > li img {
    width: 50px;
  }
}

.list4 li {
  margin-left: 2%;
  margin-top: 30px;
  width: 23%;
}

@media all and (max-width: 1100px) {
  .list4 li {
    width: 31.33%;
  }
}

@media all and (max-width: 639px) {
  .list4 {
    margin-left: auto;
  }
  .list4 li {
    width: 90%;
    margin: 25px auto 0;
  }
}

.prv dt {
  color: #dfad71;
  border-bottom: 1px solid #ccc;
  margin: 10px 0;
}

#works:before {
  content: "";
  height: 80px;
  margin-top: -80px;
  display: block;
  visibility: hidden;
}

.note {
  padding: 20px;
  margin-top: 15px;
  background: #fff;
}

.note.type1 {
  background: rgba(107, 202, 215, 0.1);
}

.flow-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flow-dl dt {
  color: #dfad71;
  width: 60px;
  text-align: center;
  margin-right: 20px;
  font-family: "Dancing Script", serif;
  font-weight: 500;
  line-height: 1;
  padding-top: 8px;
}

.flow-dl dt span {
  font-size: 3rem;
  display: block;
  color: #dfad71;
}

.flow-dl dd {
  width: calc(100% - 80px);
  margin-bottom: 40px;
  border-bottom: 1px dashed #f2f2ec;
  padding-bottom: 25px;
}

.flow-dl dt:not(:last-child),
.flow-dl dd:not(:last-child) {
  margin-bottom: 20px;
}

@media all and (max-width: 639px) {
  .flow-dl dt {
    font-size: 1.3rem;
  }
  .flow-dl dt span {
    font-size: 2.2rem;
  }
}

.txt1 {
  padding-left: 10px;
}

.blog-month {
  margin-bottom: 10px;
}

.blog-month ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      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;
}

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

.list-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.list-center li {
  width: 50%;
}

@media all and (max-width: 639px) {
  .list-center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .list-center li {
    width: 100%;
  }
}

.faq-dl .faq-inner {
  padding: 10px;
  margin-bottom: 20px;
}

.faq-dl .faq-inner:not(:last-of-type) {
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 3px solid #eee;
}

.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
  padding: 10px 10px 10px 55px;
}

.faq-dl .faq-inner dt:before,
.faq-dl .faq-inner dd:before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  left: 0;
  top: 0;
  font-family: "Dancing Script", serif;
  font-weight: 500;
}

.faq-dl .faq-inner dt {
  margin-bottom: 10px;
  font-weight: 700;
}

.faq-dl .faq-inner dt:before {
  content: "Q";
  color: #dfad71;
  font-size: 3rem;
  background: rgba(223, 173, 113, 0.2);
}

.faq-dl .faq-inner dd:before {
  content: "A";
  color: #dfad71;
  font-size: 3rem;
  background: rgba(255, 191, 48, 0.2);
}

.point-title {
  position: relative;
  font-size: 2.5rem;
  letter-spacing: 0.2rem;
  border-bottom: 1px solid #dfad71;
  line-height: 1.3;
  margin-bottom: 15px;
}

.point-title span {
  color: #dfad71;
  font-size: 4rem;
  font-family: "Dancing Script", serif;
  font-weight: 500;
}

@media all and (max-width: 639px) {
  .point-title {
    font-size: 1.6rem;
  }
  .point-title span {
    font-size: 2.2rem;
  }
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 30px !important;
  right: auto;
  background: rgba(223, 173, 113, 0.7);
}

@media all and (max-width: 639px) {
  .swiper-button-prev,
  .swiper-container-rtl .swiper-button-next {
    left: 10px !important;
  }
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 30px !important;
  left: auto;
  background: rgba(223, 173, 113, 0.7);
}

@media all and (max-width: 639px) {
  .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
    right: 10px !important;
  }
}

@media all and (max-width: 639px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 17px !important;
    height: 28px !important;
    background-size: 17px 28px !important;
  }
}

.point-num {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  background: #dfad71;
  color: #222;
  font-family: "Dancing Script", serif;
  font-weight: 500;
  font-size: 3.5rem;
  border-radius: 100%;
  text-align: center;
  margin: 0 auto -20px;
  line-height: 60px;
  -webkit-box-shadow: 0 0 0 4px rgba(254, 254, 254, 0.6);
          box-shadow: 0 0 0 4px rgba(254, 254, 254, 0.6);
}

.sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sns-list.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 15px 0;
}

.sns-list li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  color: #ff5810;
  display: block;
  background: #fefefe;
  border-radius: 100%;
  text-align: center;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  position: relative;
}

.sns-list li a:hover {
  opacity: 0.7;
}

.sns-list li a.btn-facebook {
  background: #1877f2;
}

.sns-list li a.btn-twitter {
  background: #1da1f2;
}

.sns-list li a.btn-instagram {
  overflow: hidden;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}

.sns-list li a.btn-instagram i {
  position: relative;
  z-index: 2;
}

.sns-list li a.btn-instagram:before {
  content: "";
  position: absolute;
  /*絶対配置*/
  top: 18px;
  /*ずらす*/
  left: -10px;
  /*ずらす*/
  width: 50px;
  /*グラデーションカバーの幅*/
  height: 50px;
  /*グラデーションカバーの高さ*/
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  /*グラデーション②*/
}

.sns-list li:not(:last-child) {
  margin-right: 10px;
}

@media all and (max-width: 896px) {
  .sns-list li:not(:last-child) {
    margin-right: 5px;
    margin-bottom: 0;
  }
}

.greet-box {
  width: 65%;
  padding: 20px;
}

@media all and (max-width: 639px) {
  .greet-box {
    width: 100%;
  }
}

.greet-txt {
  color: #dfad71;
  line-height: 2;
}

.name {
  color: #916b50;
  padding-bottom: 8px;
  border-bottom: 1px solid #916b50;
  font-weight: 600;
  margin-bottom: 20px;
}

.name .small {
  font-size: 1.4rem;
}

.name .lead {
  font-size: 2.4rem;
  padding: 0 5px;
}

.name .eng {
  font-family: "Dancing Script", serif;
  font-weight: 500;
  font-size: 2rem;
  color: #f66009;
}

@media all and (max-width: 639px) {
  .name .small {
    font-size: 12px;
  }
  .name .lead {
    font-size: 1.8rem;
  }
  .name .eng {
    font-size: 1.6rem;
  }
}

.vertical-content {
  margin-left: 100px;
}

.vertical-content.type1 {
  margin-left: 180px;
}

@media all and (max-width: 1100px) {
  .vertical-content.type1 {
    margin-left: 100px;
  }
}

@media all and (max-width: 639px) {
  .vertical-content.type1 {
    margin-left: 0;
  }
}

@media all and (max-width: 639px) {
  .vertical-content {
    margin-left: 0;
  }
}

.box1 {
  background: rgba(254, 254, 254, 0.5);
  padding: 30px;
  border-radius: 5px;
}

@media all and (max-width: 639px) {
  .box1 {
    padding: 15px;
  }
}

.flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

.flow-list.type1 {
  display: block;
}

.flow-list.type1 > li {
  width: 100%;
}

.flow-list.type1 > li .flow-title {
  margin-bottom: 10px;
}

.flow-list > li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 35px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #fefefe;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 15px rgba(84, 58, 37, 0.05);
          box-shadow: 0 0 15px rgba(84, 58, 37, 0.05);
}

.flow-list > li:nth-child(2n) {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  .flow-list > li {
    width: 90%;
    margin: 0 auto 30px;
  }
  .flow-list > li:nth-child(2n) {
    margin-right: auto;
  }
}

.flow-list > li .flow-num {
  color: #dfad71;
  border-right: 1px solid #dfad71;
  padding-right: 15px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  line-height: 1.2;
  font-size: 1.3rem;
  font-family: "Dancing Script", serif;
  font-weight: 500;
}

.flow-list > li .flow-num span {
  font-size: 3.5rem;
  display: block;
  text-align: center;
}

.flow-list > li .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 35px;
}

.flow-list > li .flow-title {
  color: #dfad71;
  border-bottom: 1px solid #dfad71;
  padding-bottom: 4px;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}

@media all and (max-width: 639px) {
  .flow-list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flow-list > li .flow-num {
    text-align: center;
    border-right: 0;
    padding: 0 0 4px;
    border-bottom: 1px solid #dfad71;
  }
  .flow-list > li .flow-num span {
    font-size: 2.5rem;
  }
  .flow-list > li .flow-title {
    font-size: 1.3rem;
  }
  .flow-list > li .txt {
    margin: 20px auto 0;
  }
}

.price-dl dt {
  padding: 12px 10px;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  background: #fff8e7;
  color: #543a25;
  border-top: 1px solid rgba(84, 58, 37, 0.3);
  border-bottom: 1px solid rgba(84, 58, 37, 0.3);
}

.price-dl dd {
  padding: 12px 10px;
  font-family: "Montserrat", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  color: #4f8abd;
  background: #fff;
  border-bottom: 1px solid rgba(84, 58, 37, 0.3);
}

.kiritori {
  height: 1px;
  border-top: 1px dashed #d69547;
  margin: 40px 0;
  display: block;
}

.interview-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.interview-head .interview-lead {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: 2;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 30px;
}

.interview-head .interview-btn {
  cursor: pointer;
  width: 220px;
  padding: 15px 8px;
  text-align: center;
  background: #ffbf30;
  color: #543a25;
  font-weight: 600;
  position: relative;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.interview-head .interview-btn:before {
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.interview-head .interview-btn:hover {
  background: #bf7c2b;
  color: #fff;
}

@media all and (max-width: 639px) {
  .interview-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
  .interview-head .interview-lead {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    margin: 0 0 15px;
    font-size: 1.3rem;
  }
  .interview-head .interview-btn {
    width: 100%;
  }
}

.interview-box {
  background: #fff8e7;
  letter-spacing: 0;
  padding: 30px;
  display: none;
}

@media all and (max-width: 639px) {
  .interview-box {
    padding: 15px 15px;
  }
}

.course-list li .upper {
  padding: 15px;
  background: rgba(223, 173, 113, 0.2);
}

.course-list li .lower {
  padding: 15px;
  background: #fff8e7;
}

.course-list li:not(:last-of-type) {
  margin-bottom: 20px;
}

.top-box-implant {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-image: -webkit-gradient(linear, left top, right top, from(#4f8abd), to(#6bcad7));
  background-image: linear-gradient(to right, #4f8abd, #6bcad7);
  padding: 15px 15px;
}

.top-box-implant .child {
  width: 50%;
  padding: 30px 20px;
  background: rgba(255, 244, 202, 0.3);
}

.top-box-implant .child.type1 {
  background: rgba(226, 245, 245, 0.3);
}

@media all and (max-width: 639px) {
  .top-box-implant {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#4f8abd), to(#6bcad7));
    background-image: linear-gradient(to bottom, #4f8abd, #6bcad7);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px;
  }
  .top-box-implant .child {
    width: 100%;
    margin: 0 auto;
    padding: 25px 20px;
  }
  .top-box-implant .child:first-of-type {
    margin-bottom: 10px;
  }
}

.adv-list li {
  padding: 12px;
  background: #fff;
  font-weight: 600;
}

.adv-list li .small {
  font-weight: normal;
  font-size: 1.4rem;
  padding: 6px;
}

@media all and (max-width: 639px) {
  .adv-list li .small {
    font-size: 12px;
  }
}

.adv-list li:not(:last-of-type) {
  margin-bottom: 4px;
}

.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.column2 .child {
  width: 48%;
}

@media all and (max-width: 639px) {
  .column2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .column2 .child {
    width: 100%;
  }
  .column2 .child.column2-img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 30px;
  }
}

.slider {
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
  height: 80vh;
  position: relative;
  overflow: hidden;
}

@media all and (max-width: 896px) {
  .slider {
    max-width: calc(100% - 15px);
  }
}

.slider > div {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: absolute;
  left: 0;
  top: 0;
}

.slider > div img.slider-img {
  display: none;
}

.slider > div > div {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  background-repeat: no-repeat;
}

@media all and (max-width: 1100px) {
  .slider {
    height: 50vh;
  }
}

.kodawari-box {
  background: #fff;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  padding: 60px 30px 40px;
  -webkit-box-shadow: 15px 15px #ddddce;
          box-shadow: 15px 15px #ddddce;
  margin-top: -30px;
}

@media all and (max-width: 639px) {
  .kodawari-box {
    width: 95%;
    margin-top: 15px;
    padding: 15px;
    -webkit-box-shadow: 6px 6px #ddddce;
            box-shadow: 6px 6px #ddddce;
  }
}

.top-btn01 {
  display: block;
  padding: 15px;
  background: #fff;
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
}

.top-btn01:hover {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}

/* slide_list
----------------------------------*/
.slide_list {
  position: relative;
  padding-bottom: 40px;
  display: none;
}

.slide_list li {
  margin-right: 1%;
}

.slide_list li img {
  width: auto;
  height: 260px;
  border-radius: 15px 0 15px 0;
}

@media all and (max-width: 639px) {
  .slide_list li img {
    height: 180px;
  }
}

.gallery-title {
  font-family: "Dancing Script", serif;
  font-weight: 500;
  font-size: 6rem;
  color: #dfad71;
  margin-bottom: -30px;
  position: relative;
  z-index: 4;
  text-align: center;
}

.gallery-title span {
  display: inline-block;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}

@media all and (max-width: 639px) {
  .gallery-title {
    font-size: 3.5rem;
  }
}

.access-list li {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media all and (max-width: 639px) {
  .access-list li {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.access-list li:not(:last-child) {
  border-bottom: 1px dashed #ccc;
  margin-bottom: 15px;
}

.access-list li span {
  font-size: 3rem;
  line-height: 1;
  font-family: "Dancing Script", serif;
  font-weight: 500;
  color: #6bcad7;
}

.access-list li .access-img {
  width: 200px;
  margin: 0 20px;
}

@media all and (max-width: 639px) {
  .access-list li .access-img {
    width: 180px;
    margin-right: 0;
  }
}

.access-list li .access-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media all and (max-width: 639px) {
  .access-list li .access-txt {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-top: 10px;
  }
}

.letter_img figure {
  margin-right: 48px;
}

.letter_img_r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.letter_img_r figure {
  margin-left: 48px;
}

.letter_img,
.letter_img_r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 32px;
  position: relative;
}

.letter_img figure figcaption,
.letter_img_r figure figcaption {
  text-align: left;
  padding: 6px;
  max-width: 400px;
  font-size: 12px;
}

.letter_img .info,
.letter_img_r .info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.letter_img .info p,
.letter_img_r .info p {
  text-align: justify;
  text-justify: inter-ideograph;
}

@media all and (max-width: 896px) {
  .letter_img,
  .letter_img_r {
    display: block;
    padding: 8px;
  }
  .letter_img figure,
  .letter_img_r figure {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 16px;
  }
  .letter_img figure img,
  .letter_img_r figure img {
    width: auto;
  }
}

.dl_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.dl_list dt {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  color: #f66009;
  width: 100px;
}

.dl_list dd {
  width: calc(100% - 120px);
  padding-bottom: 8px;
}

/* CUSTOM
----------------------------------*/
/* menu-btn-list
----------------------------------*/
.menu-btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 10px;
  margin: 0 auto 60px;
}

.menu-btn-list .child {
  width: 33.33%;
}

.menu-btn-list .child a {
  display: block;
  position: relative;
  height: 350px;
  overflow: hidden;
  background-image: linear-gradient(45deg, #dfad71, #543a25);
}

.menu-btn-list .child a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  opacity: 0.5;
  -webkit-transition: 0.2s all ease-in;
  transition: 0.2s all ease-in;
}

.menu-btn-list .child a:hover img {
  opacity: 0.8;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media all and (max-width: 639px) {
  .menu-btn-list .child {
    width: 100%;
  }
  .menu-btn-list .child a {
    height: 60vmin;
  }
}

.menu-btn-list .menu-btn-title {
  position: absolute;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  left: 30px;
  top: 20px;
  color: #fefefe;
  font-weight: 400;
  z-index: 2;
  font-size: 2.3rem;
}

.menu-btn-list .menu-btn-title span {
  font-size: 4rem;
  line-height: 1;
  border-bottom: 2px solid #fefefe;
  font-family: "Dancing Script", serif;
  font-weight: 500;
  -webkit-writing-mode: initial;
      -ms-writing-mode: initial;
          writing-mode: initial;
  margin-bottom: 20px;
}

@media all and (max-width: 896px) {
  .menu-btn-list .menu-btn-title {
    left: 10px;
    padding-right: 15px;
  }
}

@media all and (max-width: 639px) {
  .menu-btn-list .menu-btn-title {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    font-size: 1.6rem;
    left: 15px;
  }
  .menu-btn-list .menu-btn-title span {
    font-size: 2.5rem;
    margin-right: 20px;
  }
}

.arrow {
  position: absolute;
  stroke-miterlimit: 5;
  stroke-width: 1;
  stroke: #fefefe;
  right: 20px;
  bottom: 30px;
  z-index: 4;
  width: 50px;
  height: 50px;
  text-align: center;
  padding-top: 13px;
}

.arrow:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 2px solid #fefefe;
  border-radius: 100%;
}

@media all and (max-width: 639px) {
  .arrow {
    width: 35px;
    height: 35px;
    padding-top: 5px;
  }
  .arrow .arrow-svg {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}

.column_r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.column,
.column_r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.column .side,
.column_r .side {
  width: 360px;
  vertical-align: middle;
}

.column .main,
.column_r .main {
  width: calc(100% - 390px);
}

@media (max-width: 1000px) {
  .column,
  .column_r {
    display: block;
  }
  .column .side,
  .column_r .side {
    width: 100%;
  }
  .column .main,
  .column_r .main {
    width: calc(100% - 0px);
  }
}

.position_bk {
  width: 100%;
  height: 100%;
  position: relative;
}

.position_c {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1ch;
  position: absolute;
  z-index: 100;
  margin: auto;
  width: 100%;
  height: 100%;
}

.position_c img {
  width: 100%;
  max-width: 800px;
}

/* --calendar--
----------------------------------*/
.calendar_head {
  color: #222;
  padding: 6px;
}

.calendar-info {
  text-align: center;
  font-weight: 600;
}

.calendar-info span {
  color: #ffbf30;
  font-size: 1.1em;
}

.calendar-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 0.9em;
}

.calendar-box div.calendar {
  width: 48%;
}

@media all and (max-width: 639px) {
  .calendar-box div.calendar {
    width: 100%;
    margin-bottom: 10px;
  }
}

.calendar-box table {
  width: 100%;
}

.calendar-box table th,
.calendar-box table td {
  width: 14.28%;
  border: 0.9px solid #666;
  font-weight: normal;
  padding: 5px;
  height: 45px;
  font-size: 1.3rem;
  color: #543a25;
}

@media all and (max-width: 639px) {
  .calendar-box table th,
  .calendar-box table td {
    height: 40px;
    font-size: 1.2rem;
  }
}

.calendar-box table th {
  background: #fff8e7;
  vertical-align: middle;
  font-weight: 600;
}

.calendar-box table td {
  background: #fefefe;
}

.calendar-box table td.off {
  background: rgba(246, 96, 9, 0.8);
}

.calendar-box table td.sat {
  background: #d1edf9;
}

.calendar-box th.sun,
.calendar-box td.sun {
  color: #dc4200;
}

.calendar-box th.sat,
.calendar-box td.sat {
  color: #6bcad7;
}

.calendar-box .item-td {
  background: #eadc8b;
}

.calendar-box .item-td .days {
  color: #543a25;
}

.calendar-box .item-td .item {
  display: none;
}

.calendar-info {
  max-width: 500px;
  margin: 20px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  background: #222;
  padding: 10px;
}

.calendar-info .info-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.calendar-info .info-child:not(:last-child) {
  margin-right: 20px;
}

.calendar-info .info-txt {
  margin-left: 10px;
}

.calendar-info .mark {
  font-size: 2.5rem;
}

.calendar-info .mark.mark1 {
  color: #f66009;
}

.calendar-info .mark.mark2 {
  color: #d1edf9;
}

.bg_img_half_l {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bg_img_half_l:after {
  content: "";
  display: block;
  background-image: url(../img/bg1.png);
  background-repeat: repeat !important;
  position: absolute;
  top: 15%;
  left: 0;
  z-index: -1;
  height: 70%;
  width: 80%;
}

.bg_img_half_r {
  position: relative;
}

.bg_img_half_r:after {
  content: "";
  display: block;
  background-image: url(../img/bg1.png);
  background-repeat: repeat;
  position: absolute;
  top: 0%;
  left: auto;
  right: 0;
  z-index: -1;
  height: 70%;
  width: 80%;
}
/*# sourceMappingURL=basis.css.map */