@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #371819;
  background: #0d0f0d;
  font-family: "YakuHanJP", "Lato", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.5rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.1em;
}

a {
  color: #010101;
  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: 600;
}

h2,
h3 {
  line-height: 1.4;
}

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

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

.border-line {
  display: block;
  border-top: 2px dashed #0d1329;
  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: #f7f5f2;
  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;
  -webkit-perspective: 100px;
          perspective: 100px;
  width: 100%;
  height: 100vh;
}

.loader::after {
  -webkit-animation: loader 2.5s linear infinite;
          animation: loader 2.5s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -50px;
  margin-left: -50px;
  border: 1px solid #0d0f0d;
  border-radius: 50%;
  border-right: 1px solid rgba(13, 15, 13, 0.2);
  border-top: 1px solid rgba(13, 15, 13, 0.2);
}

.loader.off {
  display: none;
}

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

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

@-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: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(13, 15, 13, 0.5);
  -webkit-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

#l-header.is-fixed {
  position: fixed;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: .3s;
  transition: .3s;
}

@media all and (max-width: 896px) {
  #l-header {
    background: transparent;
  }
}

#l-header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 97%;
  min-width: 1000px;
  margin: 0 auto;
  padding: 15px 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;
  position: relative;
}

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

#l-header .inner #logo {
  width: 300px;
  padding-top: 10px;
  -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-txt {
  position: absolute;
  left: 10px;
  top: 5px;
  font-size: 12px;
  color: #371819;
  letter-spacing: 0;
}

#l-header .head-btn a {
  padding: 4px 15px;
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}

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

#l-header .head-btn.head-right_access {
  margin: 0 8px;
}

#l-header .head-btn.head-right_access a {
  background: #ddb044;
  color: #0d0f0d;
}

#l-header .head-btn.head-right_access a:hover {
  background: #7a5f20;
}

#l-header .head-btn.head-right_reserve a {
  background: #A27F2B;
  color: #0d0f0d;
}

#l-header .head-btn.head-right_reserve a:hover {
  background: #7a5f20;
}

#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.4rem;
  font-weight: 500;
}

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

#l-header .head-right_tel a {
  background: transparent;
  padding: 0 15px;
  color: #fff;
  border-radius: 40px;
  width: auto;
  height: auto;
  font-size: 2.2rem;
  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: #dac286;
}

#l-header .head-right_tel span {
  position: absolute;
  top: 7px;
  left: auto;
  right: auto;
  padding-left: 36px;
  width: 100px;
  font-size: 0.9rem;
  color: #fff;
}

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

#l-header .head-right_mail a {
  font-family: "YakuHanJP", "Libre Baskerville", serif;
  font-weight: 600;
  color: #fefefe;
  background: #0d0f0d;
}

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

#l-header .head-right_lower {
  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 .btn-reserve a {
  display: block;
  width: 70px;
  height: 60px;
  padding: 8px 0;
  text-align: center;
  background: #0d0f0d;
  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: #A27F2B;
}

#header_nav {
  width: 870px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin-left: auto;
}

#header_nav.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background-color: rgba(13, 15, 13, 0.4);
}

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

#header_nav ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

#header_nav ul li a {
  display: block;
  letter-spacing: 0.1em;
  position: relative;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
  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.7rem;
  font-family: "YakuHanJP", "Libre Baskerville", serif;
  font-weight: 600;
  color: #ffe96c;
  position: relative;
  line-height: 1;
}

#header_nav ul li a:after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: #ceae5f;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -5px;
  -webkit-transition: 0.2s width ease-in;
  transition: 0.2s width ease-in;
}
#header_nav ul li.hatsunetsu a:after {
  display: none;
}

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

#header_nav .drop-parent:hover .dropdown-wrap {
  opacity: 1;
  max-height: 600px;
  visibility: visible;
}

#header_nav .dropdown-wrap {
  opacity: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 108px;
  z-index: 250;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  width: 100%;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  max-height: 0;
  visibility: hidden;
  background-color: rgba(162, 127, 43, 0.8);
}

#header_nav .dropdown-wrap .drop-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 45px 10px;
  max-width: 85%;
  margin: 0 auto;
  position: relative;
  z-index: 253;
}

@media all and (max-width: 896px) {
  #header_nav .dropdown-wrap .drop-inner {
    display: block;
  }
}

#header_nav .dropdown-wrap .drop-title {
  text-align: center;
  opacity: 1;
}

#header_nav .dropdown-wrap .drop-title .ja {
  color: #371819;
  font-size: 1.7rem;
}

#header_nav .dropdown-wrap .drop-title .eng {
  display: block;
  font-family: "YakuHanJP", "Libre Baskerville", serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #0d0f0d;
}

@media all and (max-width: 896px) {
  #header_nav .dropdown-wrap .drop-title {
    display: none;
  }
}

#header_nav .dropdown-wrap .dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 1000px;
  margin-left: 20px;
}

#header_nav .dropdown-wrap .dropdown .dropdown-li {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  max-width: 260px;
  position: relative;
  margin-bottom: 8px;
}

#header_nav .dropdown-wrap .dropdown .dropdown-li:not(:last-of-type) {
  margin-right: 20px;
}

#header_nav .dropdown-wrap .dropdown .dropdown-li:after {
  display: none;
}

#header_nav .dropdown-wrap .dropdown .dropdown-li > a {
  display: block;
  background: #fff;
  padding: 5px 8px;
  color: #371819;
  text-align: center;
  border-radius: 30px;
}

#header_nav .dropdown-wrap .dropdown .dropdown-li > a:after {
  display: none;
}

#header_nav .dropdown-wrap .dropdown .dropdown-li > a:hover {
  color: #90b55d;
}

#header_nav .dropdown-wrap .dropdown .drop-child-list {
  margin-top: 8px;
}

#header_nav .dropdown-wrap .dropdown .drop-child-list .child-li:not(:last-of-type) {
  margin-bottom: 5px;
}

#header_nav .dropdown-wrap .dropdown .drop-child-list .child-li a {
  display: block;
  color: #371819;
  padding: 3px;
  letter-spacing: 0.1rem;
  padding-left: 15px;
  font-size: 1.3rem;
  border-bottom: 0.9px solid #fff;
  text-align: left;
}

#header_nav .dropdown-wrap .dropdown .drop-child-list .child-li a:hover {
  color: #371819;
  background: rgba(255, 255, 255, 0.6);
}

#header_nav .dropdown-wrap .dropdown .drop-child-list .child-li a:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  margin-top: -3px;
  border-radius: 50%;
}

#l-main {
  z-index: -1;
  overflow: hidden;
}

#navigation {
  display: none;
}

#navigation.is-fixed {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background-color: rgba(13, 15, 13, 0.4);
  z-index: 100;
}

#navigation.is-fixed .head-right_access {
  margin: 0 8px;
}

#navigation.is-fixed .head-right_access a {
  color: #dac286;
}

#navigation.is-fixed .head-right_access a:hover {
  background: #7a5f20;
}

#header_nav2 {
  position: relative;
  width: 50%;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin-right: auto;
}

#header_nav2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 70px;
}

#header_nav2 ul li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

#header_nav2 ul li a {
  display: block;
  letter-spacing: 0.1em;
  position: relative;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

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

#header_nav2 ul li a span {
  display: block;
  font-size: 1.7rem;
  font-family: "YakuHanJP", "Libre Baskerville", serif;
  font-weight: 600;
  color: #ffe96c;
  position: relative;
  line-height: 1;
}

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

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

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

#header_nav2 .dropdown .dropdown-li {
  border-right: 0;
  margin: 0;
  background: #fff;
  border-bottom: 1px solid #A27F2B;
}

#header_nav2 .dropdown .dropdown-li a {
  display: block;
  width: 150px;
  padding: 8px;
  line-height: 40px;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  color: #333;
  font-weight: normal;
}

#header_nav2 .dropdown .dropdown-li a:hover {
  color: #0d0f0d;
}

#header_nav2 .dropdown .dropdown-li a:after {
  display: none;
}

.navi-right {
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  width: 50%;
  line-height: 70px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.navi-right .right1 {
  width: 250px;
  text-align: left;
}

.navi-right .right2 {
  width: 100px;
  text-align: left;
}

.navi-right .right3 {
  line-height: 16px;
  text-align: left;
}

.navi-right .right1 .head-right_tel a,
.navi-right .right1 .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.4rem;
  font-weight: 500;
}

.navi-right .right1 .head-right_tel a:before,
.navi-right .right1 .head-right_mail a:before {
  margin-right: 5px;
}

.navi-right .right1 .head-right_tel a {
  background: transparent;
  padding: 0 15px;
  color: #fff;
  border-radius: 40px;
  width: auto;
  height: auto;
  font-size: 2.5rem;
  position: relative;
}

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

.navi-right .right1 .head-right_tel a:hover {
  color: #dac286;
}

.navi-right .right1 .head-right_mail {
  margin-left: 10px;
}

.navi-right .right1 .head-right_mail a {
  font-family: "YakuHanJP", "Libre Baskerville", serif;
  font-weight: 600;
  color: #fefefe;
  background: #0d0f0d;
}

.navi-right .right1 .head-right_mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}

.navi-right .right1 .head-right_mail a:hover {
  background: #ffe96c;
}

.navi-right .right1 .head-right_lower {
  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;
}

.navi-right .right1 .btn-reserve a {
  display: block;
  width: 70px;
  height: 60px;
  padding: 8px 0;
  text-align: center;
  background: #0d0f0d;
  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);
}

.navi-right .right1 .btn-reserve a i {
  font-size: 2.2rem;
}

.navi-right .right1 .btn-reserve a span {
  font-weight: bold;
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.navi-right .right1 .btn-reserve a:hover {
  background: #A27F2B;
}

.navi-right .timetable_s {
  padding: 20px 20px;
  width: 100%;
  font-size: 0.9rem;
  border-top: 1px solid #ccc;
}

.navi-right .timetable_s th,
.navi-right .timetable_s td {
  border-bottom: 1px solid #ccc;
  padding: 10px 5px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
}

.navi-right .timetable_s th .txt,
.navi-right .timetable_s td .txt {
  letter-spacing: 0;
  font-size: 12px;
}

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

.navi-right .timetable_s.type1 td {
  border-right: 0.9px solid rgba(255, 255, 255, 0.2);
}

.navi-right .timetable_s.type1 td.crowd {
  background: #371819;
}

.navi-right .timetable_s.type1 td.td-last {
  border-right: 0;
}

.navi-right .timetable_s .thead th {
  border-top: 0;
  color: #ceae5f;
}

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

.navi-right .timetable_s .circle {
  color: #ffe96c;
}

.navi-right .timetable_s .triangle {
  color: #83c3cb;
}

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

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 7px;
  z-index: 200;
}

#page-top a {
  display: block;
  background: #A27F2B;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  text-align: center;
}

#page-top a:hover {
  opacity: 0.6;
}

@media all and (max-width: 896px) {
  #page-top {
    display: none;
  }
}

/*hed_side
----------------------------------*/
#hed_side {
  position: fixed;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: auto;
  z-index: 222;
  -webkit-transition: .2s ease-in all;
  transition: .2s ease-in all;
}

#hed_side ul li img {
  width: 30px;
}

#hed_side ul li a {
  display: block;
  padding: 15px;
  background: #95813f;
  margin-bottom: 5px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#hed_side ul li:nth-child(5){
  display: none;
}

#hed_side ul li a.ico {
  font-size: 24px;
  background: #95813f;
}

#hed_side ul li a.sec {
  background: #e0e3e4;
}

#hed_side ul li a span {
  display: block;
  margin-top: 5px;
  font-size: 1.3rem;
  font-weight: 600;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}

#hed_side ul li a:hover {
  opacity: .8;
}

#hed_side ul li a:visited {
  opacity: 1;
}

@media all and (max-width: 896px) {
  #hed_side {
    display: block;
    width: 100%;
    height: auto;
    top: auto;
    bottom: 62px;
  }
  #hed_side li {
    border-right: 1px solid #dadada;
  }
  #hed_side li:last-child {
    border-right: none;
  }
}

/* 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);
  }
}

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

.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:after {
  position: absolute;
  width: 570px;
  height: 570px;
  border: 2px solid #fff;
  border-radius: 100%;
  content: "";
  top: 115px;
  right: -281px;
}

@media all and (max-width: 639px) {
  .swiper-slide:after {
    display: none;
  }
}

.swiper-slide.slide1:before {
  background-image: url(../img/image/01.jpg);
  background-position: 50%;
}

.swiper-slide.slide2:before {
  background-image: url(../img/image/02.jpg);
  background-position: 50%;
}

.swiper-slide.slide3:before {
  background-image: url(../img/image/03.jpg);
}

.slide-img {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  margin-left: auto;
}

.slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

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

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

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

.slider {
  width: 100vw;
  height: 85vh;
  position: relative;
  overflow: hidden;
}

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

#slideshow {
  position: relative;
}

#slide-wrap {
  position: relative;
}

.mainvisual_contactbtn {
  position: absolute;
  right: 115px;
  top: 125px;
  z-index: 100;
}

.mainvisual_contactbtn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -ms-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-pack: -ms-center;
      justify-content: -ms-center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-align: -ms-center;
      align-items: -ms-center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  flex-direction: -ms-column;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: #A27F2B;
  color: #fff;
  text-align: center;
  font-family: "FOT-筑紫A丸ゴシック Std M";
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: 0;
  -webkit-transition: ease-in-out 0.2s;
  transition: ease-in-out 0.2s;
}

.mainvisual_contactbtn a i {
  font-size: 35px;
  margin-bottom: 8px;
}

.mainvisual_contactbtn a:hover {
  opacity: 0.8;
}

@media all and (max-width: 1100px) {
  .mainvisual_contactbtn {
    top: 100px;
    right: 90px;
  }
  .mainvisual_contactbtn a {
    width: 125px;
    height: 125px;
  }
}

@media all and (max-width: 896px) {
  .mainvisual_contactbtn {
    top: 110px;
    right: 30px;
  }
  .mainvisual_contactbtn a {
    width: 125px;
    height: 125px;
  }
}

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

.mainvisual_reserve_btn {
  position: absolute;
  right: 230px;
  top: 293px;
  z-index: 100;
}

.mainvisual_reserve_btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -ms-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-pack: -ms-center;
      justify-content: -ms-center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-align: -ms-center;
      align-items: -ms-center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  flex-direction: -ms-column;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #A27F2B;
  color: #fff;
  text-align: center;
  font-family: "FOT-筑紫A丸ゴシック Std M";
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
  -webkit-transition: ease-in-out 0.2s;
  transition: ease-in-out 0.2s;
}

.mainvisual_reserve_btn a i {
  font-size: 18px;
  margin-bottom: 8px;
}

.mainvisual_reserve_btn a:hover {
  opacity: 0.8;
}

.mainvisual_reserve_btn a span {
  font-size: 1.2rem;
  line-height: 1.6;
}

@media all and (max-width: 1100px) {
  .mainvisual_reserve_btn {
    top: 200px;
    right: 200px;
  }
  .mainvisual_reserve_btn a {
    width: 90px;
    height: 90px;
  }
}

@media all and (max-width: 896px) {
  .mainvisual_reserve_btn {
    top: 232px;
    right: 105px;
  }
  .mainvisual_reserve_btn a {
    width: 90px;
    height: 90px;
  }
}

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

.mainvisual_hatunetu_btn {
  position: absolute;
  right: 230px;
  top: 425px;
  z-index: 100;
}

.mainvisual_hatunetu_btn label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -ms-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-pack: -ms-center;
      justify-content: -ms-center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-align: -ms-center;
      align-items: -ms-center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  flex-direction: -ms-column;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #A27F2B;
  color: #fff;
  text-align: center;
  font-family: "FOT-筑紫A丸ゴシック Std M";
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
  -webkit-transition: ease-in-out 0.2s;
  transition: ease-in-out 0.2s;
}

.mainvisual_hatunetu_btn label i {
  font-size: 18px;
  margin-bottom: 8px;
}

.mainvisual_hatunetu_btn label:hover {
  opacity: 0.8;
}

.mainvisual_hatunetu_btn label span {
  font-size: 1.2rem;
  line-height: 1.6;
}

@media all and (max-width: 1100px) {
  .mainvisual_hatunetu_btn {
    top: 307px;
    right: 240px;
  }
  .mainvisual_hatunetu_btn label {
    width: 80px;
    height: 80px;
  }
}

@media all and (max-width: 896px) {
  .mainvisual_hatunetu_btn {
    right: 138px;
    top: 350px;
  }
  .mainvisual_hatunetu_btn label {
    width: 70px;
    height: 70px;
  }
}

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

.btn-top {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  top: 175px;
  right: 100px;
  z-index: 100;
}

.btn-top li {
  width: 130px;
}

.btn-top li:hover {
  opacity: 0.9;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

@media all and (max-width: 896px) {
  .btn-top {
    top: 70px;
    display: block;
  }
  .btn-top li {
    width: 100px;
  }
}

#catch {
  z-index: 50;
  position: absolute;
  left: 50%;
  bottom: 40%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  opacity: 0;
}

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

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

@media all and (max-width: 896px) {
  #catch {
    width: 300px;
    bottom: 50%;
  }
}

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

.slide-txt {
  position: absolute;
  left: 2%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40%;
  z-index: 40;
}

@media all and (max-width: 1100px) {
  .slide-txt {
    width: 55%;
  }
}

@media all and (max-width: 639px) {
  .slide-txt {
    width: 90%;
    -webkit-transform: none;
            transform: none;
    top: auto;
    bottom: 10%;
  }
}

#scrolldown {
  position: absolute;
  right: 15px;
  bottom: 60px;
  color: #fefefe;
  font-family: "YakuHanJP", "Libre Baskerville", serif;
  font-weight: 600;
  -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;
  }
}

#slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
}

#slideshow:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  right: 0;
  top: 0;
  background-position: 50%;
  background-size: cover;
  z-index: -1;
}

#slideshow:after {
  position: absolute;
  width: 570px;
  height: 570px;
  border: 2px solid #fff;
  border-radius: 100%;
  content: "";
  top: 115px;
  right: -281px;
}

@media all and (max-width: 639px) {
  #slideshow:after {
    display: none;
  }
}

#slideshow .vid-box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#slideshow .vid-box video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media all and (max-width: 896px) {
  #slideshow:after {
    top: 95px;
    right: -395px;
  }
}

@media all and (max-width: 639px) {
  #slideshow {
    height: 100vh;
  }
}

/* contact_bnr
----------------------------------*/
.contact_bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}

.contact_bnr.type1 li {
  width: 85%;
}

.contact_bnr.type1 li .type-line {
  background: #538311;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  padding: 15px 8px;
  position: relative;
}

.contact_bnr.type1 li .type-line:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c0";
  font-weight: 900;
  font-size: 0.8em;
  margin-right: 15px;
  position: absolute;
}

.contact_bnr.type1 li .type-line:hover {
  background: #90b55d;
  color: #fff;
}

@media all and (max-width: 639px) {
  .contact_bnr.type1 li .type-line {
    font-size: 1.5rem;
  }
  .contact_bnr.type1 li .type-line:before {
    font-size: 2rem;
  }
}

@media all and (max-width: 1100px) {
  .contact_bnr.type1 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contact_bnr.type1 li {
    text-align: center;
  }
}

.contact_bnr > li {
  margin-bottom: 20px;
}

.contact_bnr > li span {
  background-color: #A27F2B;
  padding: 5px 10px;
  color: #fff;
}

.contact_bnr > li.type-line {
  margin-bottom: 0;
  margin-left: 30px;
}

.contact_bnr > li.type-line a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  color: #fff;
  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;
}

.contact_bnr > li.type-line a.btn-line {
  background: #00B900;
  font-size: 28px;
}

.contact_bnr > li.type-line a.btn-line i:before {
  line-height: 39px;
}

@media all and (max-width: 639px) {
  .contact_bnr > li.type-line {
    margin-left: 0;
  }
}

.contact_bnr > li a {
  display: block;
  position: relative;
}

@media all and (max-width: 896px) {
  .contact_bnr > li a {
    text-align: center;
  }
}

@media all and (max-width: 639px) {
  .contact_bnr > li:first-of-type {
    margin-right: 0;
  }
}

.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  position: relative;
  color: #A27F2B;
  font-size: 3.7rem;
}

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

.contact_bnr > li .bnr_tel:hover {
  color: #e65b05;
  text-shadow: 0 0 4px rgba(55, 24, 25, 0.1);
}

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

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

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

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

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

.contact_bnr > li .bnr_mail {
  background: #0d0f0d;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 50px;
  line-height: 1.4;
  padding: 15px 8px;
}

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

.contact_bnr > li .bnr_mail:hover {
  background: #83c3cb;
  color: #fff;
}

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

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

.center-contact {
  position: relative;
  width: 100%;
  color: #000;
}

.center-contact .inner {
  padding: 60px 20px 40px;
  position: relative;
  z-index: 3;
  max-width: 1500px;
  margin: 0 auto;
}

.center-contact .footer-btn a {
  display: block;
  border: 2px solid #ceae5f;
  background: white;
  color: #0d0f0d;
  font-weight: 600;
  text-align: center;
  padding: 15px 0;
  width: 300px;
}

.center-contact .footer-btn a i {
  color: #ceae5f;
  display: inline-block;
  padding-left: 5px;
}

@media all and (max-width: 639px) {
  .center-contact .footer-btn {
    position: static;
    margin: 20px auto;
    width: 80%;
  }
  .center-contact .footer-btn a {
    width: 100%;
  }
}

.center-contact .contact-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;
  color: black;
  position: relative;
  z-index: 2;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.center-contact .contact-column .contact-left {
  width: 34%;
}

.center-contact .contact-column .contact-middle {
  width: 60%;
}

.center-contact .contact-column .contact-middle.type1 {
  padding: 30px 40px;
  background-color: #fff;
}

@media all and (max-width: 639px) {
  .center-contact .contact-column .contact-middle.type1 {
    padding: 0px;
  }
  .center-contact .contact-column .contact-middle.type1 > p {
    text-align: center;
  }
}

.center-contact .right-inner {
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  font-size: 1.3rem;
}

.center-contact .footer-txt {
  padding-left: 8px;
}

.center-contact .footer-txt span {
  background: #0d0f0d;
  padding: 5px 10px;
  font-size: 13px;
  color: #000000;
}

@media all and (max-width: 1100px) {
  .center-contact .contact-column {
    max-width: 80%;
  }
  .center-contact .contact-column .contact-left {
    font-size: 12px;
    width: 100%;
    margin-bottom: 20px;
  }
  .center-contact .contact-column .contact-middle {
    width: 100%;
  }
}

@media all and (max-width: 896px) {
  .center-contact .contact-column {
    max-width: 95%;
  }
}

@media all and (max-width: 639px) {
  .center-contact {
    font-size: 1.2rem;
  }
  .center-contact .inner {
    padding: 0px;
  }
  .center-contact .inner .right-inner {
    padding: 8px;
    font-size: 12px;
  }
  .center-contact .contact-column {
    max-width: 100%;
  }
  .center-contact .contact-column .contact-right,
  .center-contact .contact-column .contact-middle {
    width: 100%;
  }
  .center-contact .contact-column .contact-middle {
    margin-bottom: 20px;
  }
}

/* footer
----------------------------------*/
footer {
  background: #010101;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#l-footer {
  font-size: 1.4rem;
  position: relative;
  width: 100%;
}

#l-footer .inner {
  padding: 60px 20px 40px;
  position: relative;
  z-index: 3;
  max-width: 1500px;
  margin: 0 auto;
}

#l-footer .footer-btn a {
  display: block;
  border: 2px solid #ceae5f;
  background: #fff;
  color: #0d0f0d;
  font-weight: 600;
  text-align: center;
  padding: 15px 0;
  width: 300px;
}

#l-footer .footer-btn a i {
  color: #ceae5f;
  display: inline-block;
  padding-left: 5px;
}

@media all and (max-width: 639px) {
  #l-footer .footer-btn {
    position: static;
    margin: 20px auto;
    width: 80%;
  }
  #l-footer .footer-btn a {
    width: 100%;
  }
}

#l-footer .footer-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 auto;
  color: #fff;
  position: relative;
  z-index: 2;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

#l-footer .footer-column .footer-middle {
  width: 55%;
}

#l-footer .right-inner {
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 1.3rem;
}

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

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

@media all and (max-width: 1100px) {
  #l-footer .footer-column {
    max-width: 80%;
  }
  #l-footer .footer-column .footer-left {
    font-size: 12px;
    width: 50%;
    width: 100%;
    margin-bottom: 20px;
  }
  #l-footer .footer-column .footer-middle {
    width: 100%;
    margin-bottom: 20px;
  }
  #l-footer .footer-column .footer-right {
    width: 90%;
  }
}

@media all and (max-width: 896px) {
  #l-footer .footer-column {
    max-width: 95%;
  }
}

@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
  }
  #l-footer .inner {
    padding: 40px 20px;
  }
  #l-footer .inner .right-inner {
    padding: 8px;
    font-size: 12px;
  }
  #l-footer .footer-column {
    max-width: 100%;
  }
  #l-footer .footer-column .footer-right,
  #l-footer .footer-column .footer-middle {
    width: 100%;
  }
  #l-footer .footer-column .footer-middle {
    margin-bottom: 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: #371819;
  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: #0d0f0d;
}

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

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

.flogo {
  width: 80%;
  max-width: 300px;
  min-height: 0;
  position: relative;
  z-index: 5;
  margin-bottom: 30px;
}

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

.address {
  text-align: left;
}

@media all and (max-width: 896px) {
  .address {
    text-align: center;
  }
}

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

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

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

.top-gray-box:before {
  position: absolute;
  content: "";
  z-index: -2;
  width: 90%;
  height: 93%;
  top: 0%;
  left: 0;
  background-color: #fff;
  background-blend-mode: multiply;
  background-image: url(../img/pattern02.jpg);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.8;
}

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

.title-big {
  position: absolute;
  left: 20px;
  top: -40px;
}

.title-big.type1 {
  left: auto;
  right: 20px;
}

@media all and (max-width: 896px) {
  .title-big.type1 {
    right: auto;
    left: 20px;
  }
}

.title-big .eng {
  display: block;
  font-family: "YakuHanJP", "Libre Baskerville", serif;
  font-weight: 600;
  font-size: 6rem;
  color: #0d0f0d;
  line-height: 1.2;
  opacity: 0.6;
}

.title-big .ja {
  display: block;
  color: #0d0f0d;
  font-size: 2rem;
  font-weight: 600;
}

@media all and (max-width: 639px) {
  .title-big {
    top: -20px;
  }
  .title-big .eng {
    font-size: 3.5rem;
  }
  .title-big .ja {
    font-size: 1.5rem;
  }
}

.title-big2 {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.title-big2.type1 .ja {
  color: #fff;
  text-shadow: 1px 1px 1px #0d0f0d;
}

.title-big2 span {
  display: block;
  line-height: 1.2;
  letter-spacing: 0.15em;
}

.title-big2 .eng {
  font-size: 3rem;
  color: #0d0f0d;
  font-family: "YakuHanJP", "Libre Baskerville", serif;
  font-weight: 400;
}

.title-big2 .ja {
  font-size: 3.5rem;
  color: #371819;
  font-weight: 600;
  font-family: "YakuHanMP", "Cinzel", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
}

@media all and (max-width: 639px) {
  .title-big2 .eng {
    font-size: 3.4rem;
  }
  .title-big2 .ja {
    font-size: 1.8rem;
  }
}

.title-big2.white .eng {
  color: #fff;
}

.title-big2.white .ja {
  color: #fff;
}

.sec1-wrap {
  padding: 25px 0;
}

.sec1-wrap .sec1-child {
  background: #fefefe;
  padding: 30px 30px;
  position: relative;
}

@media all and (max-width: 639px) {
  .sec1-wrap .sec1-child {
    width: 90%;
    margin: 0 auto;
    padding: 25px 15px 15px;
  }
}

.news-list li {
  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: 4px 4px 6px;
  border-bottom: 0.9px solid #ddd;
}

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

.news-list li .data {
  font-size: 1.3rem;
  color: #dac286;
  padding: 4px 8px;
  background: #111;
}

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

.news-list li .txt {
  margin-left: 20px;
}

.news-list li .txt a {
  color: #0d0f0d;
  text-decoration: underline;
}

@media all and (max-width: 896px) {
  .news-list li {
    display: block;
  }
  .news-list li .txt {
    margin: 5px 0 0;
    display: block;
  }
}

.bg-triangle {
  position: relative;
  overflow: hidden;
  background-color: #E0D9C7;
}

.bg-triangle.type1 {
  background-color: transparent;
}

.bg-triangle .inner {
  position: relative;
  z-index: 2;
}

.bg-triangle:before {
  position: absolute;
  content: "";
  width: 25%;
  height: 100%;
  top: 0;
  left: -300px;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#A27F2B), color-stop(50%, #6f5131), color-stop(65%, #7a5b38), color-stop(75.5%, #7f5f3b), color-stop(82.85%, #81623c), color-stop(88%, #83633d), to(#84643e));
  background-image: linear-gradient(to right bottom, #A27F2B 0%, #6f5131 50%, #7a5b38 65%, #7f5f3b 75.5%, #81623c 82.85%, #83633d 88%, #84643e 100%);
  -webkit-transform: skew(20deg);
  transform: skew(20deg);
  z-index: 1;
  opacity: 0.2;
}

.bg-triangle:after {
  position: absolute;
  content: "";
  width: 5%;
  height: 50%;
  bottom: 0;
  right: 2%;
  background: #84643e;
  -webkit-transform: skew(20deg);
  transform: skew(20deg);
  opacity: 0.1;
}

@media all and (max-width: 896px) {
  .bg-triangle:before {
    left: -180px;
  }
}

@media all and (max-width: 639px) {
  .bg-triangle:before {
    left: -80px;
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
    width: 40%;
  }
  .bg-triangle:after {
    display: none;
  }
}

.bg-triangle.type1:before,
.bg-triangle.type1:after {
  opacity: 0.05;
}

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

.sec2-box {
  position: relative;
}

.sec2-box .sec2-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0px;
}

.sec2-box .sec2-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.sec2-box .sec2-txt {
  width: 50%;
  margin-left: auto;
  padding: 100px 35px 80px;
  position: relative;
  z-index: 2;
  background: rgba(242, 233, 199, 0.8);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

@media all and (max-width: 896px) {
  .sec2-box .sec2-img {
    height: 300px;
    top: -200px;
  }
  .sec2-box .sec2-txt {
    width: 90%;
    margin: 200px auto 0;
    padding: 85px 20px 35px;
  }
}

@media all and (max-width: 639px) {
  .sec2-box .sec2-img {
    height: 220px;
    top: -150px;
  }
  .sec2-box .sec2-txt {
    width: 95%;
    padding: 70px 15px 25px;
    margin-top: 150px;
    background: #fff;
  }
}

.lead02 {
  text-align: center;
  font-size: 3.2rem;
  letter-spacing: 0.15em;
  color: #0d0f0d;
  font-family: "YakuHanMP", "Cinzel", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  margin-top: -180px;
  margin-bottom: 50px;
  line-height: 2;
}

.lead02 span {
  background: #371819;
  padding: 8px 6px;
  color: #fff;
}

@media all and (max-width: 639px) {
  .lead02 {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    margin-top: -150px;
  }
}

.sec3 {
  position: relative;
}

.sec3:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: url(../img/pattern02.jpg);
  opacity: 0.9;
}

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

.sec3.type1:before {
  right: auto;
  left: 0;
  width: 20%;
}

/*top-contents*/
/*----------------------------------
 top-contents
----------------------------------*/
.top-contants {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-contants .image {
  width: 55%;
}

.top-contants .image img {
  display: block;
  width: 100%;
  height: 482px;
  font-family: 'object-fit: cover; object-position: center;';
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.top-contants .detail {
  margin-left: -48px;
  width: 45%;
  padding: 35px;
  background-color: #dac286;
  -webkit-box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
          box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.top-contants.type1 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.top-contants.type1 .detail {
  margin-right: -35px;
}

@media all and (max-width: 639px) {
  .top-contants {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .top-contants .image {
    width: 100%;
  }
  .top-contants .image img {
    height: inherit;
  }
  .top-contants .detail {
    width: 100%;
    margin: 0;
    padding: 20px 15px;
  }
  .top-contants.type1 .detail {
    margin-right: 0;
  }
}

/*column_box*/
.two-columnbox {
  max-width: 1200px;
  position: relative;
  z-index: 1;
  margin: 0 auto 0;
}

.column-inner {
  position: relative;
}

.column-inner-contents {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 690px) {
  .column-inner-contents .type2 {
    display: block;
    margin-bottom: 100px;
  }
}

.photo2 {
  max-width: 600px;
}

@media (max-width: 690px) {
  .photo2 {
    width: 90%;
    margin: 0 auto;
  }
}

.column-inner-contents-txtarea {
  text-align: center;
  position: absolute;
  border: 1px solid #fff;
  left: 40px;
  width: 600px;
  padding: 60px 0;
  background-color: rgba(221, 202, 154, 0.6);
  border: 1px solid #fff;
}

.column-inner-contents-txtarea.type2 {
  text-shadow: none;
  border: none;
  background-color: rgba(221, 202, 154, 0.5);
  padding: 30px 20px 30px;
  width: 60%;
}

.column-inner-contents-txtarea.type2:before {
  content: none;
}

@media (max-width: 690px) {
  .column-inner-contents-txtarea {
    width: 90%;
    padding: 50px 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

.column-inner-contents-txtarea:before {
  content: "";
  background: inherit;
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
}

.two-columnbox .column-inner-contents-txtarea.type-right {
  left: auto;
  right: 40px;
  top: 50px;
}

@media (max-width: 690px) {
  .two-columnbox .column-inner-contents-txtarea.type-right {
    width: 90%;
    padding: 50px 20px;
    left: 0;
    right: 0;
    margin: 100px auto 0;
  }
}

@media (max-width: 430px) {
  .two-columnbox .column-inner-contents-txtarea.type-right {
    right: 0;
  }
}

/*feature_list*/
.feature-list > li {
  width: 90%;
  margin-bottom: 40px;
  position: relative;
}

.feature-list > li:nth-child(2) {
  margin-left: 5%;
}

.feature-list > li:nth-child(2) .feature-inner {
  background: #0d0f0d;
}

@media all and (max-width: 639px) {
  .feature-list > li:nth-child(2) {
    margin-left: auto;
  }
}

.feature-list > li:nth-child(3) {
  margin-left: auto;
}

.feature-list > li:nth-child(3) .feature-inner {
  background: #371819;
}

@media all and (max-width: 639px) {
  .feature-list > li:nth-child(3) {
    margin-left: auto;
  }
}

@media all and (max-width: 896px) {
  .feature-list > li {
    margin-bottom: 40px;
  }
}

@media all and (max-width: 639px) {
  .feature-list > li {
    width: 95%;
    margin: 0 auto 25px;
  }
}

.feature-list > li .feature-inner {
  width: 100%;
  height: 100%;
  background: #bf993b;
  position: relative;
}

.feature-list > li figure {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  height: 100%;
  width: 50%;
}

.feature-list > li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  opacity: 0.4;
}

@media all and (max-width: 896px) {
  .feature-list > li figure {
    width: 100%;
    height: 100%;
  }
}

.feature-list > li .feature-num {
  display: block;
  position: absolute;
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: 7rem;
  line-height: 1;
  color: #fff;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
}

.feature-list > li .feature-num:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 55px;
  bottom: 0;
  right: -10px;
  background: #fff;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

@media all and (max-width: 639px) {
  .feature-list > li .feature-num:before {
    height: 35px;
  }
}

@media all and (max-width: 896px) {
  .feature-list > li .feature-num {
    left: 50%;
    top: 20px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media all and (max-width: 639px) {
  .feature-list > li .feature-num {
    font-size: 4rem;
    top: 30px;
  }
}

.feature-list > li .feature-txt {
  position: relative;
  padding: 60px 30px 60px 40%;
  color: #fff;
}

@media all and (max-width: 896px) {
  .feature-list > li .feature-txt {
    padding: 100px 20px 20px;
  }
}

@media all and (max-width: 639px) {
  .feature-list > li .feature-txt {
    padding: 80px 15px 25px;
  }
}

.feature-list > li .feature-title {
  font-weight: 600;
  color: #fff;
  font-size: 2rem;
}

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

@media all and (max-width: 639px) {
  .feature-list {
    padding: 0 10px;
  }
}

.sec4 {
  background: #ede9e2;
}

.sec4-list {
  position: relative;
  padding-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec4-list > li {
  width: 33.33%;
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
}

.sec4-list > li .sec4-txt {
  position: relative;
  padding: 35px 25px;
}

@media all and (max-width: 896px) {
  .sec4-list {
    width: 80%;
    margin: 0 auto;
  }
  .sec4-list > li {
    width: 100%;
    margin-bottom: 25px;
    padding-bottom: 0;
  }
  .sec4-list > li .btn02 {
    position: static;
    -webkit-transform: none;
            transform: none;
  }
}

@media all and (max-width: 639px) {
  .sec4-list {
    width: 95%;
  }
  .sec4-list > li .sec4-txt {
    padding: 20px 15px;
  }
}

.sec5 {
  position: relative;
}

.sec5:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 55%;
  bottom: 0;
  left: 0;
  background: #A27F2B;
}

.sec5-box {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.sec5-box .sec5-menu {
  width: 42%;
}

.sec5-box .sec5-icon {
  width: 55%;
}

@media all and (max-width: 896px) {
  .sec5-box .sec5-menu,
  .sec5-box .sec5-icon {
    width: 100%;
  }
  .sec5-box .sec5-icon {
    margin-bottom: 35px;
  }
}

.icon-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media all and (max-width: 639px) {
  .icon-list {
    max-width: 90%;
    margin: 0 auto;
  }
}

.icon-list.type1 {
  margin-top: 0;
}

.icon-list li {
  width: 23%;
  margin-bottom: 30px;
  margin-right: calc(2% + (2% / 3));
}

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

.icon-list li a {
  display: block;
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
  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: 25px 0;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1), -webkit-transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
}

@media all and (max-width: 639px) {
  .icon-list li a {
    padding: 18px 0;
  }
}

.icon-list li a figure {
  margin: 0 auto 10px;
  width: 70px;
  height: 80px;
}

@media all and (max-width: 639px) {
  .icon-list li a figure {
    width: 60px;
    margin-bottom: 10px;
  }
}

.icon-list li a .icon-title {
  color: #371819;
  position: relative;
  z-index: 2;
  -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);
}

@media all and (max-width: 639px) {
  .icon-list li a .icon-title {
    padding: 12px 5px;
  }
}

.icon-list li a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: -webkit-gradient(linear, left top, right bottom, from(#fff), to(#fcfcfc));
  background-image: linear-gradient(to right bottom, #fff, #fcfcfc);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1), -webkit-transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  z-index: -1;
}

.icon-list li a:hover {
  z-index: 2;
}

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

.icon-list li a:hover .icon-title {
  color: #0d0f0d;
}

@media all and (max-width: 639px) {
  .icon-list li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 15px;
  }
  .icon-list li:nth-child(2n) {
    margin-right: 0;
  }
}

.sec6 {
  position: relative;
  background-color: #333;
}

.sec6.type1:before {
  height: 30%;
  top: auto;
  bottom: 0;
}

.sec6-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;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.sec6-wrap .sec6-img {
  width: 25%;
}

.sec6-wrap .sec6-txt {
  width: 65%;
  padding: 40px;
  line-height: 2;
}

.sec6-wrap .sec6-name {
  font-size: 4rem;
}

.sec6-wrap .sec6-name .small {
  font-size: 2rem;
  padding-right: 10px;
}

.sec6-wrap .sec6-name .eng {
  font-family: "YakuHanJP", "Libre Baskerville", serif;
  font-weight: 600;
  font-size: 3rem;
  letter-spacing: 0.2em;
  padding-left: 20px;
}

@media all and (max-width: 639px) {
  .sec6-wrap .sec6-name {
    font-size: 2.2rem;
    line-height: 1.3;
  }
  .sec6-wrap .sec6-name .small {
    font-size: 1.3rem;
  }
  .sec6-wrap .sec6-name .eng {
    font-size: 1.5rem;
    display: block;
  }
}

@media all and (max-width: 1100px) {
  .sec6-wrap {
    margin-bottom: 0;
  }
  .sec6-wrap .sec6-img {
    width: 35%;
  }
  .sec6-wrap .sec6-txt {
    padding: 25px;
  }
}

@media all and (max-width: 639px) {
  .sec6-wrap {
    -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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sec6-wrap .sec6-img {
    width: 60%;
    margin-bottom: 25px;
  }
  .sec6-wrap .sec6-txt {
    width: 100%;
    padding: 15px;
  }
}

.title01 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #192450;
  font-family: "YakuHanMP", "Cinzel", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
}

.title01 span {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: #0d0f0d;
  font-family: "YakuHanJP", "Libre Baskerville", serif;
  font-weight: 600;
}

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

.title01.white {
  color: #fcfcfc;
}

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

.title02 {
  font-size: 2.4rem;
  font-weight: 700;
  padding-bottom: 5px;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.title02 span {
  background: #A27F2B;
  padding: 4px 8px;
  color: #fff;
}

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

.title02.type1 span {
  background: #192450;
}

.title03 {
  background: #333;
  color: #fff;
  padding: 10px 15px;
  font-weight: 600;
  margin-top: 10px;
  font-size: 1.8rem;
  margin-bottom: 50px;
  position: relative;
}

.title03 span {
  font-family: "YakuHanJP", "Libre Baskerville", serif;
  font-weight: 600;
  color: #dac286;
  margin-right: 8px;
}

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

.title03:before, .title03:after {
  position: absolute;
  content: "";
  left: 0;
  height: 8px;
}

.title03:before {
  width: 25%;
  top: -8px;
  background: #ceae5f;
  opacity: 0.4;
}

.title03:after {
  width: 40%;
  bottom: -8px;
  background: #0d0f0d;
  opacity: 0.7;
}

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

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

/* --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: "YakuHanJP", "Libre Baskerville", serif;
  font-weight: 600;
  color: #A27F2B;
  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;
  margin-left: 65px;
}

@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 #fefefe;
  position: relative;
  padding: 10px 0;
}

.topic-dl .topic-inner:before {
  width: 95px;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
}

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

.topic-dl .topic-inner dt span {
  padding: 5px;
  background-color: #A27F2B;
  color: #fff;
}

@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: #0d0f0d;
}

@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 {
  padding: 0 15px;
}

.top-bnr-list > .child {
  position: relative;
}

.top-bnr-list > .child:first-of-type {
  margin-bottom: 15px;
}

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

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

.top-bnr-list > .child 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: 160px;
  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 {
  position: absolute;
  stroke-miterlimit: 5;
  stroke-width: 1;
  stroke: #fff;
  right: 20px;
  top: 100px;
  z-index: 4;
  width: 50px;
  height: 50px;
  text-align: center;
  padding-top: 13px;
}

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

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

.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: "YakuHanJP", "Libre Baskerville", serif;
  font-weight: 600;
  font-size: 3rem;
  letter-spacing: 0.1em;
  color: #0d0f0d;
  padding: 10px 10px 6px;
  background: #fefefe;
}

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

@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: #0d0f0d;
  border-bottom: 1px solid #0d0f0d;
}

.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: #fefefe;
  padding: 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.mbox.transparent {
  background: transparent;
}
.modal .mbox.transparent iframe{
  width:576px;
  height:388px 
}

@media all and (max-width: 639px) {
  .mbox {
    padding: 15px 10px;
  }
  .modal .mbox.transparent {
    width: 350px;
  }
  .modal .mbox.transparent iframe{
    width:350px;
    height:241px 
  }
}

.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: 74%;
}

#main .mbox {
  min-height: 700px;
}

@media all and (max-width: 896px) {
  #main .mbox {
    min-height: initial;
  }
}

@media all and (max-width: 896px) {
  #main {
    float: none;
    width: 100%;
  }
}

#side {
  float: right;
  position: -webkit-sticky;
  position: sticky;
  right: 0;
  top: 0;
  width: 22%;
}

@media all and (max-width: 896px) {
  #side {
    float: none;
    width: 100%;
    position: static;
    margin-top: 40px;
  }
}

/* mtitle
----------------------------------*/
.mtitle {
  margin: 0 auto 40px;
  position: relative;
  text-align: center;
}

.mtitle .eng {
  font-size: 3.5rem;
  color: #0d0f0d;
  position: relative;
  z-index: 2;
  display: block;
  font-family: "YakuHanJP", "Libre Baskerville", serif;
  font-weight: 500;
}

.mtitle .ja {
  position: relative;
  z-index: 2;
  font-size: 1.8rem;
  color: #371819;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.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.eng {
  color: #dac286;
}

.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;
    margin: 0 auto 30px;
  }
  .mtitle .eng {
    font-size: 1.5rem;
  }
  .mtitle .ja {
    font-size: 2rem;
  }
}

.mtitle2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  font-family: "YakuHanMP", "Cinzel", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  color: #0d0f0d;
  letter-spacing: 0.2em;
  position: relative;
}

.mtitle2 span {
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  font-family: "YakuHanJP", "Libre Baskerville", serif;
  font-weight: 600;
  display: block;
  color: #ceae5f;
}

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

@media all and (max-width: 639px) {
  .mtitle2 {
    font-size: 1.9rem;
  }
  .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: 2.8rem;
  color: #222;
  letter-spacing: 0.2em;
  padding-right: 5px;
  font-family: "YakuHanMP", "Cinzel", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  line-height: 2;
}

.mtitle3 .eng {
  display: block;
  font-family: "YakuHanJP", "Libre Baskerville", serif;
  font-weight: 600;
  font-size: 2rem;
  color: #0d0f0d;
}

@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: 1.6rem;
  }
  .mtitle3 .eng {
    font-size: 1.4rem;
  }
}

.mtitle_line {
  font-size: 2rem;
  padding-bottom: 20px;
  position: relative;
  font-weight: 600;
  margin-bottom: 20px;
  color: #0d0f0d;
  border-top: 2px solid #A27F2B;
  background: rgba(255, 250, 205, 0.4);
  padding: 8px 10px 20px;
}

.mtitle_line span {
  font-size: 1.4rem;
  color: #0d0f0d;
}

.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  opacity: 0.5;
  background-image: repeating-linear-gradient(-45deg, #A27F2B, #A27F2B 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

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

.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: "YakuHanJP", "Libre Baskerville", serif;
  font-weight: 600;
  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: 2rem;
  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: #0d0f0d;
}

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

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

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

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

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

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

.mtitle5 {
  font-size: 2.7rem;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  position: relative;
  font-family: "YakuHanMP", "Cinzel", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
}

.mtitle5:before {
  position: absolute;
  content: "●●●";
  height: -5px;
  top: 40px;
  left: 50%;
  font-size: 5px;
  letter-spacing: 7px;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  color: #a27f2b;
}

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

.mtitle5 span {
  display: block;
  font-size: 13px;
}

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

.mtitle_sub .hissu {
  color: #fff;
  background: #252a25;
  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: #83c3cb;
}

.mtitle_box {
  background: rgba(25, 36, 80, 0.1);
  color: #371819;
  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.5rem;
  }
}

.mtext-top {
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.7;
  color: var(--base-color);
}

.mtext-top.type1 {
  margin: 0 auto -20px;
  z-index: 3;
}

.mtext-top.type2 {
  text-align: left;
  z-index: 3;
}

.mtext-top span {
  position: relative;
  display: inline-block;
  padding-top: 26px;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 3rem;
  line-height: 1.2;
}

.mtext-top span:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  color: #fdfdfd;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: url(../img/point.png) no-repeat center/contain;
}

@media all and (max-width: 639px) {
  .mtext-top {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .mtext-top.type1 {
    margin: 0 auto -15px;
  }
  .mtext-top span {
    padding-top: 20px;
    font-size: 2rem;
  }
  .mtext-top span:before {
    width: 60px;
    height: 18px;
  }
}

.list-concern-box {
  padding: 50px 20px 40px;
  border-radius: 10px;
  background: #fff;
}

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

/* btn
----------------------------------*/
.btn-wrap {
  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;
}

.btn-wrap p:first-of-type {
  margin-right: 25px;
}

@media all and (max-width: 639px) {
  .btn-wrap p:first-of-type {
    margin: 0 auto;
  }
}

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

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

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

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

.btn01.mail a {
  background: #ffe96c;
  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: 96%;
    font-size: 1rem;
  }
}

.btn02 {
  width: 300px;
  margin: 20px auto 20px;
}

.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #222;
  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-bl {
  overflow: hidden;
}

.news-bl dt {
  float: left;
  width: 8em;
  padding: 5px;
  line-height: 1.3;
  color: #0d0f0d;
  text-align: center;
  border: 1px solid #0d0f0d;
  border-radius: 30px;
  background: #fefefe;
  font-size: 1.3rem;
}

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

.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: #371819;
  background-image: -webkit-gradient(linear, left top, right top, from(#0d0f0d), to(#90b55d));
  background-image: linear-gradient(to right, #0d0f0d, #90b55d);
  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;
    width: 180px;
  }
  .news-bl dd {
    padding: 8px 5px;
    text-align: left;
  }
}

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

.page-title:after {
  position: absolute;
  width: 570px;
  height: 570px;
  border: 2px solid #fff;
  border-radius: 100%;
  content: "";
  top: 115px;
  right: -281px;
}

@media all and (max-width: 639px) {
  .page-title:after {
    display: none;
  }
}

.page-title.kouketuatu {
  background: url(../img/001.jpg) no-repeat 50% 50%/cover;
}

.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 bottom, from(#222), to(#371819));
  background-image: linear-gradient(to right bottom, #222, #371819);
  opacity: 0.3;
}

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

.page-title .page-lead {
  text-align: center;
  color: #dac286;
  font-size: 2rem;
}

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

.page-title .page-lead .ja {
  font-size: 2rem;
  color: #dac286;
}

.page-title .page-lead .eng {
  font-size: 6rem;
  color: #fff;
  font-family: "YakuHanJP", "Libre Baskerville", serif;
  font-weight: 400;
  letter-spacing: 0.2em;
}

@media all and (max-width: 1100px) {
  .page-title .inner {
    width: 100%;
    padding: 160px 0 160px;
  }
}

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

.page-title2 {
  margin: 0 auto 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.page-title2:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #ceae5f;
}

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

.page-title2 .page-lead {
  text-align: center;
  color: #fff;
  font-size: 3.5rem;
  font-family: "YakuHanMP", "Cinzel", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
}

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

@media all and (max-width: 896px) {
  .page-title2 .inner {
    width: 100%;
    padding: 10px 0 10px;
  }
  .page-title2 .page-lead {
    font-size: 1.5rem;
  }
  .page-title2 .page-lead .ja {
    font-size: 1.5rem;
  }
  .page-title2 .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(#0d0f0d), color-stop(#90b55d), to(#A27F2B));
  background-image: linear-gradient(to right, #0d0f0d, #90b55d, #A27F2B);
  z-index: -2;
  opacity: 0.3;
}

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

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

.bg-01.type1:before {
  background: #fefefe;
  opacity: 1;
}

.bg-01.type2:before {
  background: url(../img/bg-02.jpg);
  opacity: 0.8;
}

.bg-02 {
  background: url(../img/grid2.png);
}

.bg-03 {
  position: relative;
  margin-top: 60px;
}

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

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

.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: #0d0f0d;
  z-index: -1;
  opacity: 0.2;
}

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

.bg-green {
  background: #0d0f0d;
}

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

.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%, #f2f4f5), to(#f2f4f5));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #f2f4f5 50.1%, #f2f4f5 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: #f2f4f5;
  z-index: -1;
}

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

.bg-gray2.type1:before {
  background-size: 80%;
}

.bg-999 {
  background: #aaa;
}

.bg-blue {
  background: rgba(144, 181, 93, 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%, #ca9e36), to(#ca9e36));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #ca9e36 50.1%, #ca9e36 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: #f7f5f2;
  z-index: -1;
}

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

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

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

.bg-beige2 {
  background: #E0D9C7;
}

.bg-base2 {
  background: repeating-linear-gradient(45deg, rgba(13, 15, 13, 0.1) 0, rgba(13, 15, 13, 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 #ddd;
}

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

.tbl-profile th {
  width: 24%;
  text-align: left;
  color: #0d0f0d;
  font-weight: 500;
}

.tbl-profile.type1 th {
  width: 25%;
}

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

@media all and (max-width: 896px) {
  .tbl-scroll {
    overflow-x: scroll;
    white-space: nowrap;
    display: block;
  }
}

.tbl {
  width: 100%;
}

.tbl.tbl-price {
  margin-bottom: 40px;
}

.tbl.tbl-price th span {
  display: block;
  font-size: 1.4rem;
}

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

.tbl th {
  background: rgba(131, 195, 203, 0.9);
  font-weight: 500;
}

.tbl thead th {
  background: #A27F2B;
  color: #fff;
}

.tbl td {
  background: #fff;
}

.tbl td.sub {
  background-color: rgba(218, 194, 134, 0.2);
}

.tbl td.td-1 {
  width: 50%;
  font-size: 1.3rem;
}

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

.tbl .th-1 {
  width: 25%;
}

.tbl .th-2 {
  width: 45%;
}

.tbl.type1 td {
  text-align: left;
}

@media all and (max-width: 639px) {
  .tbl th {
    text-align: left;
  }
  .tbl th,
  .tbl td {
    padding: 10px;
    font-size: 12px;
  }
  .tbl th span,
  .tbl td span {
    font-size: 12px;
  }
}

.tbl_new {
  width: 100%;
}

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

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

.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: #371819;
  text-align: left;
  border-color: #0d0f0d;
}

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

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

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

.price {
  font-family: "Cinzel", serif;
  font-weight: 500;
  color: #192450;
  font-size: 1.2em;
}

.price span {
  display: block;
  font-size: 1.4rem;
  color: #371819;
  letter-spacing: 0;
}

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

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

.timetable th,
.timetable td {
  border-bottom: 1px solid #ccc;
  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.type1 td {
  border-right: 0.9px solid rgba(255, 255, 255, 0.2);
}

.timetable.type1 td.crowd {
  background: #371819;
}

.timetable.type1 td.td-last {
  border-right: 0;
}

.timetable .thead th {
  border-top: 0;
  color: #0d0f0d;
}

.timetable .thead th.type1 {
  color: #fff;
}

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

.timetable .circle {
  color: #e65b05;
}

.timetable .circle.type1 {
  color: #83c3cb;
}

.timetable .triangle {
  color: #83c3cb;
}

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

.circle {
  color: #ffe96c;
}

.circle.type1 {
  color: #83c3cb;
}

.triangle {
  color: #83c3cb;
}

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

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

.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: #371819;
  font-weight: bold;
  background: #ffe96c;
  padding: 0 4px;
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 22.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(162, 127, 43, 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 {
  background: rgba(206, 174, 95, 0.5);
  padding: 12px 8px;
  width: 48%;
}

.list_check.type1 li:nth-child(2n) {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .list_check.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list_check.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}

.list_check li {
  padding: 8px;
  font-weight: 700;
  background: #fefefe;
  margin-bottom: 5px;
}

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

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

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

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

.list_check2.type1 {
  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; */
  justify-content: space-around;
}

.list_check2.type1 li {
  width: 29%;
}

.list_check2.type1 li:nth-child(3n) {
  margin-left: 4%;
}

.list_check2.type1 li:last-child {
  /* margin-left: 4%; */
  margin-right: 4%;
}

@media all and (max-width: 639px) {
  .list_check2.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list_check2.type1 li:nth-child(2n) {
    margin-left: auto;
  }
  .list_check2.type1 li:last-child {
    /* margin-left: auto; */
    margin-right: auto;
  }
}

.list_check2.type2 {
  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;
}

.list_check2.type2 > li {
  width: 45%;
}

@media all and (max-width: 639px) {
  .list_check2.type2 > li {
    width: 100%;
    margin: 0 auto 5px;
  }
}

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

.list_check2 li .num {
  color: #0d0f0d;
  margin: 0 4px;
  font-family: "Cinzel", serif;
  font-weight: 500;
}

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

.list_check2 li:not(:last-child) {
  margin-bottom: 4px;
}

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

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

@media all and (max-width: 639px) {
  .list-inline li {
    display: block;
    padding: 0;
  }
  .list-inline li:before {
    content: "-";
    color: #0d0f0d;
  }
  .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", "Cinzel", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  margin-bottom: 5px;
  color: #371819;
}

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

@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.type2 li:before {
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  font-family: "Cinzel", serif;
  font-weight: 500;
  left: 0;
  top: 16px;
  position: absolute;
  font-size: 3.5rem;
  color: #fff;
  background-color: #83c3cb;
  border-radius: 100%;
  margin-right: 20px;
  line-height: 1.5;
  width: 50px;
  height: 50px;
  text-align: center;
}

.ol-list.type2 li .inner {
  margin-left: 20px;
}

@media all and (max-width: 639px) {
  .ol-list.type2 li:before {
    font-size: 3rem;
    width: 40px;
    height: 40px;
  }
  .ol-list.type2 li .inner {
    margin-left: 0;
  }
}

.ol-list li {
  line-height: 2;
  padding-top: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  position: relative;
  padding-left: 40px;
  padding-bottom: 10px;
}

.ol-list li .ol-lead {
  font-family: "YakuHanMP", "Cinzel", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  color: black;
  font-size: 2rem;
}

.ol-list li .inner {
  font-weight: normal;
  display: block;
  padding: 10px;
  line-height: 1.6;
  font-size: 1.4rem;
}

.ol-list li:before {
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  font-family: "Cinzel", serif;
  font-weight: 500;
  left: 0;
  top: 15px;
  position: absolute;
  font-size: 3.5rem;
  color: #0d0f0d;
  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.6rem;
}

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

.list_disc li:before {
  content: "●";
  margin-right: 5px;
  color: #A27F2B;
  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.type2 li {
  width: 23%;
}

.list-btn.type2 li a {
  background-color: #ceae5f;
  border: 1px solid #ceae5f;
  border-radius: 5px;
}

.list-btn.type2 li a:hover {
  border: 1px solid #ceae5f;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background-color: #fff;
  color: #A27F2B;
}

@media all and (max-width: 639px) {
  .list-btn.type2 li {
    width: 48%;
  }
}

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

.list-btn li a {
  border: 2px solid #A27F2B;
  display: block;
  background: #f7f5f2;
  color: #371819;
  font-weight: 700;
  padding: 10px 3px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  border-radius: 5px;
  font-size: 1.5rem;
  letter-spacing: 0;
}

.list-btn li a:hover {
  background-color: #A27F2B;
  border: 2px solid #fff;
  color: #fff;
}

@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: #A27F2B;
  border: 1px solid #fff;
  color: #fff;
}

.list-btn.type1 li a:hover {
  background: #fff;
  border: 1px solid #A27F2B;
  color: #A27F2B;
}

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

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

.list-btn.type3 li {
  width: 22%;
}

.list-btn.type3 li a {
  border: none;
  background-color: transparent;
}

.list-btn.type3 li a:hover {
  -webkit-filter: opacity(0.8);
          filter: opacity(0.8);
}

@media all and (max-width: 639px) {
  .list-btn.type3 li {
    width: 45%;
  }
}

/* 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(255, 255, 255, 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;
  color: #fff;
  background: #ceae5f;
}

.blog-date {
  background: #0d0f0d;
  width: 100px;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #fff;
  font-size: 12px;
}

.blog-date2 {
  color: black;
  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;
}

.blog-txt {
  line-height: 1.5;
  color: #0d0f0d;
  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: #fff;
  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: #f2f4f5;
}

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

.color1 {
  color: #0d0f0d;
}

.color2 {
  color: #83c3cb;
}

.color3 {
  color: #ceae5f;
}

.relative {
  position: relative;
}

.bigger {
  font-size: 1.15em;
}

.num {
  font-weight: 700;
}

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

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

.telbox .inner {
  background: #fff;
  padding: 10px;
}

.txt-link {
  font-weight: 700;
  text-decoration: underline;
}

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

.txt-link:hover {
  text-decoration: none;
}

.telbnr {
  max-width: 700px;
  margin: 20px 0 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;
}

.telbnr li {
  width: 48%;
  border: 3px solid #0d0f0d;
  padding: 10px 10px;
  text-align: center;
  border-radius: 40px;
}

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

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

.telbnr li a:hover {
  color: #0d0f0d;
}

.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: #371819;
  margin-top: -30px;
}

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

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

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

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

.breadcrumb li a {
  color: #ceae5f;
}

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

.form dl dt span.nini {
  background: #ffe96c;
  color: #371819;
}

.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; */
  background: #fff;
  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 #0d0f0d;
  font-weight: 700;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  background: #0d0f0d;
  border-radius: 25px;
}

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

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

.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}

.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}

.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #0d0f0d;
  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 #0d0f0d;
  border-bottom: 3px solid #0d0f0d;
  -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 #0d0f0d;
  -webkit-box-shadow: 0 0 0 8px rgba(13, 15, 13, 0.2);
          box-shadow: 0 0 0 8px rgba(13, 15, 13, 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(55, 24, 25, 0.05);
          box-shadow: 0 0 10px rgba(55, 24, 25, 0.05);
}

.policy {
  padding: 30px;
  background: rgba(144, 181, 93, 0.3);
}

.mtitle_small {
  font-weight: 500;
  color: #371819;
  padding: 7px 0;
  font-size: 1.6rem;
  border-top: 1px solid #ceae5f;
  border-bottom: 1px solid #ceae5f;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

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

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

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

.mtitle_small2:before {
  content: "";
  background-color: #0d0f0d;
  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 {
  padding: 10px;
  width: 48%;
  height: 385px;
  margin: 0 calc(1% + (1% / 2)) 45px 0;
}

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

.gallery li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.gallery li a {
  background: rgba(247, 245, 242, 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;
    height: 250px;
  }
  .gallery li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery li a {
    height: 120px;
  }
  .gallery li p {
    font-size: 12px;
  }
}

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

.video-list {
  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) {
  .video-list {
    margin-top: -20px;
  }
}

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

.video-list.w-100 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.video-list.w-100 > li, .video-list.w-100 .child {
  background: #fefefe;
  padding: 20px;
}

.video-list.w-100 > li figure, .video-list.w-100 .child figure {
  max-width: 500px;
}

.video-list > li,
.video-list .child {
  width: 48%;
  margin-top: 50px;
  position: relative;
}

.video-list > li:nth-child(2n),
.video-list .child:nth-child(2n) {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .video-list > li:nth-child(2n),
  .video-list .child:nth-child(2n) {
    margin-left: auto;
  }
}

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

.video-list > li:hover figure,
.video-list .child:hover figure {
  opacity: 0.8;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.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.type2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.list2.type2.acenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.list2.type2 li:nth-child(2n), .list2.type2 .child:nth-child(2n) {
  margin-left: auto;
  margin-right: 4%;
}

@media all and (max-width: 639px) {
  .list2.type2 li:nth-child(2n), .list2.type2 .child:nth-child(2n) {
    margin-right: auto;
  }
}

.list2 > li,
.list2 .child {
  width: 48%;
  margin-top: 50px;
  position: relative;
}

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

.list3 > li {
  width: 31%;
  text-align: center;
  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: 950px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.list4.type1 li, .list4.type1 .child {
  background: rgba(25, 36, 80, 0.2);
  border-radius: 10px;
  display: block;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.list4.type1 li a, .list4.type1 .child a {
  display: block;
  padding: 15px;
}

.list4.type1 li a.type1, .list4.type1 .child a.type1 {
  padding: 15px 15px 30px;
}

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

.list4.type1 li img, .list4.type1 .child 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.type2 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.list4.type2 li {
  width: 250px;
  height: 250px;
  text-align: center;
  padding: 20px;
  border-radius: 100%;
}

.list4.type2 li figure {
  max-width: 100%;
  text-align: center;
  margin: 20px auto 10px;
}

.list4.type2 li.drop a img {
  -webkit-filter: drop-shadow(5px 5px 5px #aaa);
          filter: drop-shadow(5px 5px 5px #aaa);
}

.list4.type2 li.drop a img:hover {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.list4.type2 li.drop.type1 .mtitle4 {
  position: relative;
  top: -10px;
}

.list4.type2 li.drop.type1 figure {
  position: relative;
  top: -24px;
}

@media all and (max-width: 639px) {
  .list4.type2 {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .list4.type2 li {
    width: 45%;
    height: auto;
    padding: 13px;
  }
  .list4.type2 li .mtitle4 span {
    font-size: 10px;
  }
  .list4.type2 li .mtitle4 span:before, .list4.type2 li .mtitle4 span:after {
    display: none;
  }
  .list4.type2 li figure {
    margin: 0 auto 15px;
    max-width: 110px;
  }
  .list4.type2 li.drop.type1 figure {
    top: 0;
  }
}

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

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

.list4_a li, .list4_a .child {
  width: 24%;
  margin-top: 20px;
}

.list4_a li img, .list4_a .child img {
  max-width: 100%;
}

@media all and (max-width: 639px) {
  .list4_a li, .list4_a .child {
    width: 48%;
  }
  .list4_a li:nth-child(2n), .list4_a .child:nth-child(2n) {
    margin-right: 0;
  }
}

.list5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.list5 li img {
  width: 70px;
  max-width: 100%;
}

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

.list5_a li, .list5_a .child {
  width: 19%;
}

.list5_a li img, .list5_a .child img {
  max-width: 100%;
}

@media all and (max-width: 896px) {
  .list5_a li, .list5_a .child {
    width: 45%;
    margin-bottom: 20px;
  }
}

.prv dt {
  color: #0d0f0d;
  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: 10px;
  background: #fdfdfd;
  font-size: 1.5rem;
  border: 2px solid rgba(162, 127, 43, 0.8);
}

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

.note.type1 {
  background: #f4efe9;
}

.note.type2 {
  width: 70%;
  border: 0;
  background-color: #f1f1f1;
}

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

.flow-dl .flow-inner {
  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;
  width: 48%;
  margin-right: 4%;
  margin-bottom: 25px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.8);
}

.flow-dl .flow-inner:nth-child(2n) {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  .flow-dl .flow-inner {
    width: 100%;
    margin: 0 auto 25px;
  }
  .flow-dl .flow-inner:nth-child(2n) {
    margin-right: auto;
  }
}

.flow-dl dt {
  color: #1f4a30;
  width: 60px;
  text-align: center;
  margin-right: 20px;
  font-family: "YakuHanJP", "Libre Baskerville", serif;
  font-weight: 600;
  padding-top: 8px;
}

.flow-dl dt span {
  font-size: 3.5rem;
  display: block;
  line-height: 1;
  color: #0d0f0d;
  font-family: "Cinzel", serif;
  font-weight: 500;
}

.flow-dl dd {
  width: calc(100% - 80px);
}

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

.number {
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: 4.5rem;
  color: #e65b05;
  line-height: 1;
  top: 0;
  left: 0;
  position: absolute;
}

@media all and (max-width: 639px) {
  .number {
    font-size: 2.8rem;
    top: 10px;
  }
}

.txt1 {
  padding-left: 60px;
}

@media all and (max-width: 639px) {
  .txt1 {
    padding-left: 40px;
  }
}

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

/*flow*/
.u-timeline3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 1.4;
}

.u-timeline3 dt {
  width: 8em;
  padding-top: 3.7em;
}

@media all and (max-width: 896px) {
  .u-timeline3 dt {
    border-left: solid 2px #000;
    margin-left: 1em;
    padding-top: 1em;
    padding-left: 2.5em;
  }
}

.u-timeline3 dt b {
  position: relative;
  display: block;
  font-size: 1.6em;
  font-weight: 600;
  color: #202020;
}

.u-timeline3 dd {
  width: calc(100% - 8em - 20px);
  padding: 2em 0 2em 20px;
  border-left: solid 2px #333;
}

@media all and (max-width: 896px) {
  .u-timeline3 dd {
    width: calc(100% - 1em);
    margin-left: 1em;
    padding-top: 0.5em;
  }
}

.u-timeline3 dd .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #fff;
  padding: 10px;
  margin-left: 1em;
  border-left: solid 8px #A27F2B;
}

.u-timeline3 dd .inner:before {
  content: "";
  position: absolute;
  top: 1.7em;
  left: -30px;
  display: inline-block;
  border-style: solid;
  border-width: 15px;
  border-color: transparent #A27F2B transparent transparent;
}

.u-timeline3 dd .inner:after {
  position: absolute;
  top: 2.7em;
  left: -53px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #A27F2B;
  border-radius: 50%;
}

@media all and (max-width: 639px) {
  .u-timeline3 dd .inner:after {
    left: -49px;
  }
}

.u-timeline3 dd .inner .image {
  width: 31%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media all and (max-width: 896px) {
  .u-timeline3 dd .inner .image {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.u-timeline3 dd .inner .image img {
  width: 100%;
}

.u-timeline3 dd .inner .container {
  width: 69%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding: 10px;
}

@media all and (max-width: 896px) {
  .u-timeline3 dd .inner .container {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.u-timeline3 dd .inner .container .title {
  font-size: 1.5em;
  font-weight: 500;
  border-bottom: solid thin #000;
  margin-bottom: 0.5em;
}

.txt-label {
  font-size: 1.6rem;
  background-color: #A27F2B;
  padding: 3px 10px;
  display: inline-block;
  margin: 10px 0 0;
}

.txt-label span {
  color: #fff;
}

.txt-label.type1 {
  border: 1px solid #A27F2B;
  border-radius: 5px;
  background: none;
}

.txt-label.type1 span {
  color: #A27F2B;
}

.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: "YakuHanJP", "Libre Baskerville", serif;
  font-weight: 600;
}

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

.faq-dl .faq-inner dt:before {
  content: "Q";
  color: #0d0f0d;
  font-size: 3rem;
  background: rgba(13, 15, 13, 0.2);
}

.faq-dl .faq-inner dd:before {
  content: "A";
  color: #0d0f0d;
  font-size: 3rem;
  background: rgba(255, 233, 108, 0.2);
}

.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: #fff;
  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-line {
  background: #00B900;
  font-size: 28px;
}

.sns-list li a.btn-line i:before {
  line-height: 39px;
}

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

.name {
  width: 225px;
  margin: -20px auto 20px;
  position: relative;
  z-index: 2;
  background: #A27F2B;
  color: #fefefe;
  font-weight: 600;
  text-align: center;
  padding: 8px 6px;
  font-family: "YakuHanMP", "Cinzel", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  -webkit-box-shadow: 0 0 8px rgba(55, 24, 25, 0.05);
          box-shadow: 0 0 8px rgba(55, 24, 25, 0.05);
  line-height: 1.8;
  font-size: 1.6rem;
}

.name span {
  color: #fff;
  display: block;
  font-size: 1.4rem;
}

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

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

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

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

.box1 {
  max-width: 800px;
  background: #fefefe;
  padding: 30px;
  border-radius: 5px;
  margin: 0 auto;
}

.box2 {
  max-width: 1000px;
  background: #fefefe;
  padding: 30px;
  border-radius: 5px;
  margin: 0 auto 20px;
}

.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(55, 24, 25, 0.05);
          box-shadow: 0 0 15px rgba(55, 24, 25, 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: #A27F2B;
  font-size: 3.5rem;
  border-right: 1px solid #A27F2B;
  padding-right: 15px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  line-height: 1.2;
  font-family: "Cinzel", serif;
  font-weight: 500;
}

.flow-list li .flow-num span {
  font-size: 1.3rem;
  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: #0d0f0d;
  border-bottom: 1px solid #0d0f0d;
  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 {
    font-size: 2.2rem;
    text-align: center;
    border-right: 0;
    padding: 0 0 4px;
    border-bottom: 1px solid #A27F2B;
  }
  .flow-list li .flow-title {
    font-size: 1.3rem;
  }
  .flow-list li .txt {
    margin: 20px auto 0;
  }
}

.price-dl dt {
  background: #ede9e2;
  padding: 14px 20px;
  font-family: "YakuHanMP", "Cinzel", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  color: #371819;
  border-top: 1px solid #A27F2B;
  border-bottom: 1px solid #A27F2B;
}

.price-dl dd {
  padding: 20px;
  margin-bottom: 25px;
}

.kiritori {
  height: 1px;
  border-top: 1px solid rgba(13, 15, 13, 0.4);
  margin: 50px auto;
  width: 95%;
  display: block;
}

.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.type1 {
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
}

.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 {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

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

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

.slider .slide-txt {
  position: absolute;
  left: 20px;
  bottom: 5%;
  width: 500px;
  z-index: 5;
}

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

.problem-list > li {
  width: 31%;
  margin-right: calc(2.33% + (2.33% / 2));
  margin-bottom: 25px;
}

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

@media all and (max-width: 639px) {
  .problem-list > li {
    width: 100%;
    margin: 0 auto 8px;
  }
  .problem-list > li:nth-child(3n) {
    margin-right: auto;
  }
}

.problem-list > li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 15px 45px 15px 10px;
  background: #fff;
  font-weight: 600;
  font-size: 1.1em;
  -webkit-transition: background 0.2s ease-in;
  transition: background 0.2s ease-in;
  font-family: "YakuHanMP", "Cinzel", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
}

@media all and (max-width: 639px) {
  .problem-list > li a {
    font-size: 13px;
  }
}

.problem-list > li a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  position: absolute;
  width: 30px;
  height: 30px;
  line-height: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  text-align: center;
  border: 1px solid #0d0f0d;
  border-radius: 50%;
}

.problem-list > li a:hover {
  background: #b8e4e9;
}

/* --calendar--
----------------------------------*/
.calendar_head {
  color: #ceae5f;
  border-top: 0.9px solid #0d0f0d;
  padding: 6px;
}

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

.calendar-info span {
  color: #ffe96c;
  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: #371819;
}

@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: #f7f5f2;
  vertical-align: middle;
  font-weight: 600;
}

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

.calendar-box table td.off {
  background: rgba(230, 91, 5, 0.8);
  color: #a33232;
}

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

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

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

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

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

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

.slide_list {
  position: relative;
  display: none;
}

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

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

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

#top-modal {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

#top-modal.close {
  display: none;
  opacity: 0;
}

#top-modal .modal-box {
  max-width: 1000px;
  padding: 40px 30px;
  background: #fff;
  border-radius: 20px;
  position: relative;
  font-size: 1.4rem;
  letter-spacing: 0;
}

@media all and (max-width: 896px) {
  #top-modal .modal-box {
    max-width: 90%;
  }
}

@media all and (max-width: 639px) {
  #top-modal .modal-box {
    padding: 25px 15px;
    font-size: 13px;
  }
}

#top-modal .modal-close {
  display: block;
  position: absolute;
  right: 10px;
  top: 10px;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 1.8rem;
  background: #0d0f0d;
  color: #fff;
  text-align: center;
  border-radius: 100%;
}

@media all and (max-width: 639px) {
  #top-modal .modal-close {
    top: -20px;
  }
}

.scrollbar {
  min-height: 100px;
  max-height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
  margin: 0 auto;
  padding-right: 20px;
}

.scrollbar.modal {
  max-height: 500px;
}

@media screen and (max-width: 890px) and (orientation: landscape) {
  .scrollbar.modal {
    max-height: 200px;
  }
}

@media all and (max-width: 639px) {
  .scrollbar.modal {
    max-height: 350px;
  }
}

.scrollbar.policy-box {
  max-height: 300px;
}

.scrollbar::-webkit-scrollbar {
  overflow: hidden;
  width: 1px;
  background: #fafafa;
}

.scrollbar::-webkit-scrollbar:horizontal {
  height: 1px;
}

.scrollbar::-webkit-scrollbar-button {
  display: none;
}

.scrollbar::-webkit-scrollbar-piece {
  background: #eee;
}

.scrollbar::-webkit-scrollbar-piece:start {
  background: #eee;
}

.scrollbar::-webkit-scrollbar-thumb, .scrollbar::-webkit-scrollbar-corner {
  background: #333;
}

.floating-bnr {
  display: block;
  position: fixed;
  top: 20%;
  right: 0px;
  z-index: 9999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  width: 135px;
}

.floating-bnr :hover {
  opacity: 0.8;
}

.floating-bnr .floating-bnr-img {
  width: 100%;
}

@media screen and (max-width: 896px) {
  .floating-bnr {
    display: none;
  }
}

.vids {
  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;
  width: 90%;
  margin: 0 auto;
}

.vids div {
  width: 48%;
  text-align: center;
  margin: 30px auto;
}

.vids div video {
  width: 100%;
  height: 315px;
  -o-object-fit: cover;
     object-fit: cover;
}

.vids div .vid-title {
  margin-top: 0;
  padding: 10px 0;
  text-align: left;
  font-size: 20px;
  position: relative;
}

.vids div .vid-title:after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -10px;
  height: 2px;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: -webkit-gradient(linear, left top, right top, from(#0d0f0d), to(#3c463c));
  background-image: linear-gradient(to right, #0d0f0d, #3c463c);
}

.vids div p {
  margin-top: 15px;
}

.vids div p a {
  background: #A27F2B;
  padding: 16px 32px;
  color: #fff;
  font-size: 18px;
  border-radius: 30px;
}

@media screen and (max-width: 780px) {
  .vids div {
    width: 48%;
    margin-top: 0;
  }
  .vids div video, .vids div iframe {
    height: 180px;
  }
  .vids div .vid-title {
    font-size: 15px;
    padding: 0;
  }
}

@media screen and (max-width: 480px) {
  .vids {
    margin-top: 30px;
  }
  .vids div {
    width: 95%;
  }
}

.vid-btn a img {
  -webkit-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.vid-btn a:hover img {
  opacity: 0.6;
  -webkit-transition: .3s;
  transition: .3s;
}

/*medical_list*/
.medical_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.medical_list .top_medical_internal {
  position: relative;
  width: 33.3%;
  min-height: 430px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 48px 40px;
  background-color: rgba(162, 127, 43, 0.5);
  text-align: center;
}

.medical_list .top_medical_internal:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/image/04.jpg);
  z-index: -5;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.medical_list .top_medical_internal.type1 {
  width: 33.3%;
  background-color: rgba(230, 91, 5, 0.3);
}

.medical_list .top_medical_internal.type1:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/medical2.jpg);
  background-position: 50% 50%;
  z-index: -5;
}

.medical_list .top_medical_internal.type2 {
  width: 33.3%;
  background-color: rgba(162, 127, 43, 0.5);
}

.medical_list .top_medical_internal.type2:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/image/05.jpg);
  background-position: 50% 50%;
  z-index: -5;
}

.medical_list .top_medical_internal.type3 {
  width: 25%;
  background-color: rgba(31, 74, 48, 0.5);
}

.medical_list .top_medical_internal.type3:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/image/06.jpg);
  z-index: -5;
}

.medical_list .top_medical_internal.type4 {
  width: 25%;
  background-color: rgba(144, 181, 93, 0.5);
}

.medical_list .top_medical_internal.type4:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/image/07.jpg);
  z-index: -5;
}

.medical_list .top_medical_internal.type5 {
  width: 25%;
  background-color: rgba(206, 174, 95, 0.5);
}

.medical_list .top_medical_internal.type5:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/medical6.jpg);
  background-position: 50% 50%;
  z-index: -5;
}

.medical_list .top_medical_internal.type6 {
  width: 25%;
  background-color: rgba(25, 36, 80, 0.5);
}

.medical_list .top_medical_internal.type6:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/image/08.jpg);
  background-position: 50% 50%;
  z-index: -5;
}

.medical_list .top_medical_internal > .list-inline2 {
  margin-bottom: 30px;
}

.medical_list .top_medical_internal > .list-inline2 li {
  display: inline-block;
  margin: 0 10px 10px 0;
  padding: 0 15px 0 15px;
  line-height: 27px;
  border-radius: 0;
  font-size: 1.8rem;
  font-weight: 500;
  color: #ffffff;
  background-color: transparent;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  border-radius: 30px;
  border: 1px solid #fff;
}

.medical_list .top_medical_internal > .list-inline2 li a {
  color: #fff;
}

.medical_list .top_medical_internal > .list-inline2 li:hover {
  background-color: #fff;
  border: 1px solid #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.medical_list .top_medical_internal > .list-inline2 li:hover a {
  color: #111;
}

@media all and (max-width: 639px) {
  .medical_list .top_medical_internal > .list-inline2 li {
    font-size: 1.4rem;
  }
}

.medical_list .top_medical_internal .btn a {
  position: absolute;
  bottom: 15px;
  left: calc(50% - 95px);
  display: block;
  width: 180px;
  padding-right: 10px;
  line-height: 38px;
  color: #fff;
  border: #fff solid 1px;
  border-radius: 19px;
  font-family: "Lucida Grande", "segoe UI", "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic ProN", Meiryo, Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}

.medical_list .top_medical_internal .btn a:hover {
  background-color: #fff;
  color: #111;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media all and (max-width: 1100px) {
  .medical_list .top_medical_internal {
    width: 50%;
  }
  .medical_list .top_medical_internal.type1, .medical_list .top_medical_internal.type2, .medical_list .top_medical_internal.type3, .medical_list .top_medical_internal.type4, .medical_list .top_medical_internal.type5, .medical_list .top_medical_internal.type6 {
    width: 50%;
  }
}

@media all and (max-width: 639px) {
  .medical_list .top_medical_internal {
    width: 100%;
    min-height: auto;
  }
  .medical_list .top_medical_internal.type1, .medical_list .top_medical_internal.type2, .medical_list .top_medical_internal.type3, .medical_list .top_medical_internal.type4, .medical_list .top_medical_internal.type5, .medical_list .top_medical_internal.type6 {
    width: 100%;
  }
}

.time-bl {
  font-size: 0.8rem;
}

.time-bl dt {
  background: #fff;
  color: #111;
  display: inline-block;
  padding: 0 5px;
}

.time-bl dd {
  color: #fff;
}

.naika_list li {
  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: 890px;
  margin-bottom: 80px;
}

.naika_list li:nth-child(2n) {
  margin-left: 80px;
}

.naika_list li:nth-child(3n) {
  margin-left: 160px;
}

.naika_list li:nth-child(4n) {
  margin-left: 240px;
}

.naika_list li:nth-child(5n) {
  margin-left: 160px;
}

.naika_list li:nth-child(6n) {
  margin-left: 80px;
}

.naika_list li figure {
  width: 230px;
  position: relative;
}

.naika_list li .txt {
  width: calc(100% - 400px);
  padding-top: 30px;
  position: relative;
}

.naika_list li .txt > dl dt {
  font-size: 2.5rem;
  letter-spacing: 2px;
  position: relative;
}

.naika_list li .txt > dl dt:before {
  content: "";
  position: absolute;
  width: 660px;
  height: 1px;
  background-color: #ceae5f;
  bottom: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -182px;
  z-index: -1;
}

@media all and (max-width: 1100px) {
  .naika_list li {
    margin-left: auto;
  }
  .naika_list li figure {
    width: 180px;
  }
  .naika_list li figure img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .naika_list li:nth-child(2n) {
    margin-left: auto;
  }
  .naika_list li:nth-child(3n) {
    margin-left: auto;
  }
  .naika_list li:nth-child(4n) {
    margin-left: auto;
  }
  .naika_list li:nth-child(5n) {
    margin-left: auto;
  }
  .naika_list li:nth-child(6n) {
    margin-left: auto;
  }
  .naika_list li .txt {
    width: calc(100% - 250px);
  }
  .naika_list li .txt > dl dt {
    font-size: 1.5rem;
  }
  .naika_list li .txt > dl dt:before {
    width: 120%;
    left: -78px;
  }
}

@media all and (max-width: 639px) {
  .naika_list li figure {
    width: 140px;
  }
  .naika_list li .txt {
    width: calc(100% - 160px);
  }
  .naika_list li .txt > dl dt {
    font-size: 1.3rem;
  }
  .naika_list li .txt > dl dt:before {
    width: 100%;
    left: -20px;
  }
}

/* accordion
----------------------------------*/
.accordion {
  border: 1px solid #ddd;
  margin-top: 50px;
}

.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
}

.accordion dt {
  background: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 600;
  border-bottom: 1px dotted #ddd;
  padding-left: 50px;
}

.accordion dt:before {
  position: absolute;
  content: "Q";
  font-size: 3rem;
  top: 0;
  left: 15px;
  color: #192450;
}

.accordion dt:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.4rem;
}

.accordion dt.on:after {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
}

.accordion dd {
  display: none;
  padding: 20px;
  background: #fff;
  position: relative;
  padding-left: 50px;
  margin-bottom: 40px;
}

.accordion dd:before {
  position: absolute;
  content: "A";
  font-size: 3rem;
  top: 0;
  left: 17px;
  font-weight: 600;
  color: #c54343;
}

@media screen and (max-width: 639px) {
  .accordion {
    margin-top: 30px;
  }
  .accordion dt,
  .accordion dd {
    padding: 10px 10px 10px 35px;
  }
  .accordion dt:before,
  .accordion dd:before {
    font-size: 2rem;
    left: 10px;
  }
  .accordion dt {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
  .accordion dt:after {
    font-size: 0.9rem;
    right: 8px;
  }
}

/* accordion
----------------------------------*/
.accordion_2 {
  border: 1px solid #ddd;
  margin-top: 50px;
}

.accordion_2 dt,
.accordion_2 dd {
  position: relative;
  padding: 1em;
}

.accordion_2 dt {
  background: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 600;
  border-bottom: 1px dotted #ddd;
}

.accordion_2 dt:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.4rem;
}

.accordion_2 dt.on:after {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
}

.accordion_2 dd {
  display: none;
  padding: 20px;
  background: #fff;
}

@media all and (max-width: 639px) {
  .accordion_2 {
    margin-top: 30px;
  }
  .accordion_2 dt,
  .accordion_2 dd {
    padding: 0.8em 0.6em;
  }
  .accordion_2 dt {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
  .accordion_2 dt:after {
    font-size: 0.9rem;
    right: 8px;
  }
}

.blog_side_list {
  position: relative;
  margin: 0 0 16px !important;
  padding: 0 !important;
  width: 100% !important;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.blog_side_list .blog_bx {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 100% !important;
  border-bottom: 1px solid #A27F2B;
  position: relative;
  padding: 8px;
  margin-bottom: 8px;
  background: #FEFEFE;
}

.blog_side_list .blog_bx a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.blog_side_list .blog_bx .blog_bx_flex {
  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;
}

.blog_side_list .blog_bx .blog_bx_flex figcaption {
  width: 100px;
  height: 100px;
  display: block;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
  float: left;
  margin-bottom: 0px;
}

.blog_side_list .blog_bx .blog_bx_flex figcaption img {
  vertical-align: middle;
  height: 100px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.blog_side_list .blog_bx .blog_bx_flex > div {
  width: calc(100% - 120px);
  padding: 0;
}

.blog_side_list .blog_bx .blog_bx_flex > div .ttm {
  float: none;
  padding-top: 0px;
  font-size: 1.2rem;
  color: #888;
  font-weight: normal;
}

.blog_side_list .blog_bx .blog_bx_flex > div .ttm:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f017";
  margin-right: 5px;
  font-weight: normal;
}

.blog_side_list .blog_bx .blog_bx_flex > div .blog_ttl {
  clear: both;
  font-weight: bold;
  color: #A27F2B;
  font-size: 1.5rem;
  margin-bottom: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.blog_side_list .blog_bx .blog_bx_flex > div .blog_ttl span {
  background-color: #ceae5f;
  color: #fff;
  font-size: 12px;
  margin-left: 18px;
  padding: 5px 10px;
  font-weight: lighter;
}

@media all and (max-width: 639px) {
  .blog_side_list .blog_bx .blog_bx_flex > div .blog_ttl span {
    font-size: 9px;
    margin-left: 0;
    padding: 5px;
  }
}

/*----------modal-open*/
.modal-open {
  cursor: pointer;
  /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}

#pop-up {
  display: none;
  /* label でコントロールするので input は非表示に */
}

.overlay {
  display: none;
  /* input にチェックが入るまでは非表示に */
}

#pop-up:checked + .overlay {
  display: block;
  z-index: 9999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}

.window {
  width: 90vw;
  max-width: 780px;
  background-color: #ffffff;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 40px 15px 15px;
}

.text {
  font-size: 18px;
  margin: 0;
}

.close {
  cursor: pointer;
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 20px;
}

/*selectdiv-------------------------------*/
.selectdiv {
  position: relative;
  /*Don't really need this just for demo styling*/
  min-width: 200px;
}

/* IE11 hide native button (thanks Matt!) */
select::-ms-expand {
  display: none;
}

.selectdiv:after {
  content: '<>';
  font: 17px "Consolas", monospace;
  color: #333;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 11px;
  /*Adjust for position however you want*/
  top: 18px;
  padding: 0 0 2px;
  border-bottom: 1px solid #999;
  /*left line */
  position: absolute;
  pointer-events: none;
}

.selectdiv select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Add some styling */
  margin-left: auto;
  display: block;
  width: 100%;
  max-width: 220px;
  height: 50px;
  padding: 0px 24px;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  -ms-word-break: normal;
  word-break: normal;
}

.doctor_tbl th:nth-of-type(2),
.doctor_tbl td:nth-of-type(2),
.doctor_tbl th:nth-of-type(5),
.doctor_tbl td:nth-of-type(5){
  background-color: #eee;
}