@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #403020;
  background: #242323;
  font-family: "Noto Serif JP", 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: rgb(23.0704225352, 22.4295774648, 22.4295774648);
  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;
}

.font-title {
  font-family: "Noto Serif JP";
  font-weight: 700;
}

.border-line {
  display: block;
  border-top: 2px dashed rgb(36.2511210762, 56.3049327354, 135.7488789238);
  margin: 35px 0;
}

.p0 {
  padding-top: 0 !important;
}

.h-p45 {
  padding: 45px 0 !important;
}

.m-w900 {
  max-width: 900px !important;
}

/* 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: #242323;
  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 #242323;
  border-radius: 50%;
  border-right: 1px solid rgba(36, 35, 35, 0.2);
  border-top: 1px solid rgba(36, 35, 35, 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 {
  width: 100%;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  background: #000;
}
#l-header.is-fixed {
  position: fixed;
  width: 100%;
  z-index: 200;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 5px solid #242323;
}
#l-header.is-fixed::after {
  display: none;
}
#l-header.is-fixed .inner {
  padding: 10px 5px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#l-header.is-fixed .inner #logo {
  width: 100px;
}
@media all and (max-width: 1100px) {
  #l-header.is-fixed .inner #logo {
    width: 80px;
  }
}
@media all and (max-width: 896px) {
  #l-header {
    backdrop-filter: none;
  }
}
#l-header .inner {
  position: relative;
  padding: 20px 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
  max-width: calc(100% - 200px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media all and (max-width: 896px) {
  #l-header .inner {
    min-width: initial;
    padding: 10px 20px;
  }
}
#l-header .inner #logo {
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  width: 100px;
  z-index: 2;
  position: relative;
  margin-left: 20px;
}
@media all and (max-width: 1100px) {
  #l-header .inner #logo {
    width: 90px;
  }
}
@media all and (max-width: 896px) {
  #l-header .inner #logo {
    width: 80px;
  }
}
#l-header .head-right {
  position: relative;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 839px) {
  #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;
}
#l-header .head-right_tel,
#l-header .head-right_mail {
  text-align: center;
  white-space: nowrap;
}
#l-header .head-right_tel span,
#l-header .head-right_mail span {
  font-size: 1.2rem;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
#l-header .head-right_tel a,
#l-header .head-right_mail a {
  position: relative;
  display: block;
  font-family: "Cinzel", serif;
  font-weight: 500;
  line-height: 1.2;
  color: #242323;
  background: #fff;
  border-radius: 30px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  padding: 0 3px;
  padding: 15px 30px;
  font-size: 1.4rem;
}
#l-header .head-right_tel a:hover,
#l-header .head-right_mail a:hover {
  opacity: 0.6;
}
#l-header .head-right_txt {
  text-align: center;
}
#l-header .head-right_txt a {
  position: relative;
  display: block;
  font-family: "Noto Serif JP";
  font-weight: 700;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 1.6rem;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  border: 2px solid #fff;
  padding: 5px 15px;
  border-radius: 3px;
}
#l-header .head-right_txt a:hover {
  background: rgba(255, 255, 255, 0.2);
}
#l-header .head-right_btn a {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  border: 2px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.5rem;
  color: #fff;
  border-radius: 100%;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
#l-header .head-right_btn a i {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#l-header .head-right_btn a:hover {
  background: rgba(255, 255, 255, 0.2);
}

#header_nav {
  position: relative;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
#header_nav > ul {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#header_nav > ul li {
  position: relative;
  text-align: center;
}
#header_nav > ul li a {
  position: relative;
  display: block;
  line-height: 1.3;
  color: #fff;
  font-size: 1.6rem;
}
#header_nav > ul li a span {
  display: block;
  font-family: "Libre Baskerville", serif;
  font-weight: 500;
  font-size: 1.6em;
  text-align: center;
}
#header_nav > ul li a img {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
}
#header_nav > ul li a:hover span {
  opacity: 0.6;
}
#header_nav .dropdown {
  display: none;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  top: 40px;
  padding-top: 18px;
  z-index: 999;
  width: 100%;
}
#header_nav .dropdown li:last-child {
  border-radius: 0 0 5px 5px;
  overflow: hidden;
}
#header_nav .dropdown .dropdown-li a {
  display: block;
  width: auto;
  padding: 10px;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-shadow: none;
  -webkit-filter: none;
          filter: none;
}
#header_nav .dropdown .dropdown-li a:after {
  display: none;
}
#header_nav .dropdown .dropdown-li a:hover {
  background: #f2f2f2;
}
@media all and (max-width: 1367px) {
  #header_nav > ul {
    gap: 20px;
  }
}
@media all and (max-width: 1100px) {
  #header_nav > ul li {
    padding: 0 0.9em;
  }
  #header_nav > ul li a {
    font-size: 1.4rem;
  }
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 7px;
  z-index: 200;
}
#page-top a {
  display: block;
  background: rgba(255, 207, 63, 0.7019607843);
  color: #242323;
  border: 2px solid #242323;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  text-align: center;
}
#page-top a:hover {
  opacity: 0.6;
}

/* swiper
----------------------------------*/
@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}
@keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}
/* canvas
----------------------------------*/
#canvas-container {
  position: absolute;
  z-index: 20;
  left: 0;
  bottom: -10px;
}
@media all and (max-width: 639px) {
  #canvas-container #sineCanvas {
    height: 70px;
    width: 100%;
  }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  -webkit-animation: zoom-in 11s linear 0s 1 normal both;
          animation: zoom-in 11s linear 0s 1 normal both;
}

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

.slide-img {
  overflow: hidden;
  width: 100%;
  height: 50vh;
}
.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: 70vh;
  }
}
@media all and (max-width: 639px) {
  .slide-img {
    height: 45vh;
  }
}

#slideshow {
  position: relative;
}

.slide-wrap {
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: 20px;
  -webkit-box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.09);
          box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.09);
}
@media all and (max-width: 896px) {
  .slide-wrap {
    max-width: calc(100% - 15px);
  }
}

#catch {
  z-index: 50;
  position: absolute;
  width: 1100px;
  height: 100%;
  left: 43%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 20px;
  padding-left: 40px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-transition: opacity 2s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: opacity 2s cubic-bezier(0.18, 0.06, 0.23, 1);
  opacity: 0;
}
@media (max-width: 1100px) {
  #catch {
    left: 53%;
  }
}
@media (max-width: 925px) {
  #catch {
    left: 53%;
  }
}
#catch.on {
  opacity: 1;
}
@media all and (max-width: 1100px) {
  #catch {
    width: 100%;
    left: 46%;
  }
  #catch img {
    width: 82%;
  }
}
@media all and (max-width: 639px) {
  #catch {
    padding: 8px;
    height: auto;
    top: auto;
    left: 13%;
    -webkit-transform: none;
            transform: none;
    bottom: -30px;
  }
  #catch img {
    background: #494444;
    width: 70%;
    padding: 8px;
  }
}

.catch2 {
  position: absolute;
  right: 2%;
  bottom: 2%;
  -webkit-transition: opacity 2s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: opacity 2s cubic-bezier(0.18, 0.06, 0.23, 1);
  opacity: 0;
  width: 300px;
}
.catch2.on {
  opacity: 1;
}
@media all and (max-width: 1100px) {
  .catch2 {
    width: 20%;
  }
}

#scrolldown {
  position: absolute;
  right: 15px;
  bottom: 60px;
  color: #fefefe;
  font-family: "Libre Baskerville", serif;
  font-weight: 500;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  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;
  }
}
.slider img,
.slider-item img {
  width: 100%;
  height: 92vh !important;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 639px) {
  .slider img,
  .slider-item img {
    height: 53vh !important;
  }
}

.slick-prev, .slick-next {
  display: none !important;
}

/* slick
----------------------------------*/
#slider-wrap {
  position: relative;
  margin: 10px auto;
}

.slider.slick-initialized {
  display: block;
}

.slider-item {
  width: 100%;
  max-width: 1100px;
}
.slider-item img {
  width: 100%;
  height: 69vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  z-index: 200;
  width: 20px;
  height: 20px;
  top: 50%;
  margin-top: -10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  cursor: pointer;
}
@media all and (max-width: 639px) {
  .slide-arrow {
    width: 15px;
    height: 15px;
    margin-top: -7px;
  }
}
.slide-arrow.prev-arrow {
  left: 50%;
  margin-left: -580px;
  border-bottom: solid 2px;
  border-left: solid 2px;
  border-color: #fff;
}
@media all and (max-width: 1100px) {
  .slide-arrow.prev-arrow {
    left: 10px;
    margin-left: 0;
  }
}
@media all and (max-width: 639px) {
  .slide-arrow.prev-arrow {
    border-color: #ffffff;
  }
}
.slide-arrow.next-arrow {
  right: 50%;
  margin-right: -580px;
  border-top: solid 2px;
  border-right: solid 2px;
  border-color: #fff;
}
@media all and (max-width: 1100px) {
  .slide-arrow.next-arrow {
    right: 10px;
    margin-right: 0;
  }
}
@media all and (max-width: 639px) {
  .slide-arrow.next-arrow {
    border-color: #ffffff;
  }
}

/* contact_bnr
----------------------------------*/
.contact_bnr {
  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;
  margin: 0 auto 10px;
}
.contact_bnr > li {
  margin-bottom: 8px;
  width: 48%;
}
.contact_bnr > li a {
  display: block;
  position: relative;
}
.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  text-align: center;
  position: relative;
  color: #995A3D;
  border-radius: 40px;
  font-family: "Libre Baskerville", serif;
  font-weight: 500;
  font-size: 3.6rem;
}
.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  font-size: 0.7em;
  color: #242323;
}
.contact_bnr > li .bnr_tel:hover {
  color: #fa7e3b;
}
@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.6rem;
    text-align: center;
  }
}
.contact_bnr > li .bnr_mobile {
  background: #fefefe;
  color: #242323;
}
.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: #242323;
}
.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}
.contact_bnr > li .bnr_mail {
  background: #242323;
  /*background: $base_color;*/
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 50px;
  line-height: 1.4;
  padding: 15px;
}
.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: #242323;
  /*background: $blue;*/
  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;
  }
}

/* footer
----------------------------------*/
#l-footer {
  font-size: 1.4rem;
  position: relative;
  width: 100%;
  background: #242323;
  color: #ffffff;
  /* footer_navi
  ----------------------------------*/
}
#l-footer .inner {
  padding: 60px 20px 40px;
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
}
#l-footer .footer-column {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}
#l-footer .footer-column .footer-left,
#l-footer .footer-column .footer-right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  text-align: center;
}
#l-footer .footer-column .footer-right {
  margin-left: 0;
}
@media all and (max-width: 639px) {
  #l-footer .footer-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #l-footer .footer-column .footer-left,
  #l-footer .footer-column .footer-right {
    width: 100%;
  }
  #l-footer .footer-column .footer-right {
    margin-top: 20px;
  }
}
@media all and (max-width: 1100px) {
  #l-footer .footer-column {
    max-width: 80%;
  }
}
@media all and (max-width: 896px) {
  #l-footer .footer-column {
    max-width: 95%;
    text-align: center;
  }
  #l-footer .footer-column .footer-left,
  #l-footer .footer-column .footer-right {
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
  }
  #l-footer .inner {
    padding: 40px 20px;
  }
  #l-footer .footer-column {
    max-width: 100%;
    padding-bottom: 0;
  }
}
#l-footer .footer-txt {
  padding: 3px 12px;
  margin-left: 80px;
  text-align: left;
  line-height: 2;
  margin-top: 22px;
  font-family: "Noto Serif JP";
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff;
}
#l-footer .footer-txt span {
  padding: 0 2px;
  background: #af0909;
  color: #fff;
  display: inline-block;
  margin-right: 10px;
}
@media all and (max-width: 896px) {
  #l-footer .footer-txt {
    max-width: 70%;
    margin: 22px auto 0;
  }
}
@media all and (max-width: 639px) {
  #l-footer .footer-txt {
    max-width: 100%;
    font-size: 1.2rem;
    margin-top: 10px;
  }
}
#l-footer .footer_navi {
  margin: 0 auto;
  max-width: 900px;
}
#l-footer .footer_navi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#l-footer .footer_navi ul > li {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  padding: 0 5px;
}
#l-footer .footer_navi ul > li > a {
  color: #ffffff;
  font-size: 1.4rem;
  position: relative;
  text-align: center;
  display: block;
  font-weight: 600;
}
#l-footer .footer_navi ul > li > a:hover, #l-footer .footer_navi ul > li > a.active {
  color: #d3b157;
}
#l-footer .footer_navi ul > li > a span {
  display: none;
}
#l-footer .footer_navi ul > li .dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#l-footer .footer_navi ul > li .dropdown .dropdown-li {
  width: 33%;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}
#l-footer .footer_navi ul > li .dropdown .dropdown-li a {
  font-size: 1.2rem;
  color: #fa7e3b;
}
#l-footer .footer_navi ul > li .dropdown .dropdown-li a:before {
  display: none;
}

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

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

.inner2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.copyright {
  padding: 20px 0;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  /*background: $brown;*/
}
@media all and (max-width: 896px) {
  .copyright {
    font-size: 11px;
  }
}

/*----------------------------------
 top-contents
----------------------------------*/
.top-gray-box {
  position: relative;
}
.top-gray-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26757/bg_01.png) no-repeat 75% 82%/cover;
  opacity: 0.4;
  z-index: -1;
  -webkit-transition: opacity 0.3s ease, background-position 0.3s ease;
  transition: opacity 0.3s ease, background-position 0.3s ease;
}
@media screen and (max-width: 768px) {
  .top-gray-box:before {
    opacity: 0.2;
    background-position: 75% 80%;
  }
}

.dot {
  background: url(../img/bg-03.jpg) no-repeat center/cover;
}

.title-big {
  position: absolute;
  left: 20px;
  top: -20px;
}
.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: "Noto Serif JP", serif;
  font-size: 4rem;
  color: #242323;
  line-height: 1.2;
  /*opacity: 0.6;*/
}
.title-big .eng:first-letter {
  color: #c59e30;
}
.title-big .ja {
  display: block;
  color: #111;
  /*color: $base_color;*/
  font-size: 1.8rem;
  font-family: "Noto Serif JP";
  font-weight: 700;
}
@media all and (max-width: 639px) {
  .title-big {
    top: -20px;
  }
  .title-big .eng {
    font-size: 2.8rem;
  }
  .title-big .ja {
    font-size: 1.4rem;
  }
}

.title-big2 {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
  text-align: center;
}
.title-big2 span {
  display: block;
  line-height: 1.2;
}
.title-big2 .eng {
  font-size: 4rem;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
}
.title-big2 .ja {
  font-size: 2.5rem;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .title-big2 .eng {
    font-size: 3rem;
  }
  .title-big2 .ja {
    font-size: 1.5rem;
  }
}
.title-big2.white .eng {
  color: #fff;
}
.title-big2.white .ja {
  color: #fff;
}
.title-big2.gold .eng {
  color: #c59e30;
}
.title-big2.gold .ja {
  color: #c59e30;
}

.title-big3 {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  z-index: 2;
}
.title-big3 .ja {
  position: relative;
  z-index: 3;
  display: block;
  margin-top: -60px;
  font-size: 3rem;
  color: #995A3D;
  letter-spacing: 0.15em;
  font-family: "Noto Serif JP";
  font-weight: 700;
}
.title-big3 .eng {
  font-size: 12rem;
  font-family: "Libre Baskerville", serif;
  font-weight: 500;
  color: #242323;
  opacity: 0.4;
}
@media all and (max-width: 639px) {
  .title-big3 {
    margin-bottom: 35px;
  }
  .title-big3 .eng {
    font-size: 6rem;
  }
  .title-big3 .ja {
    font-size: 1.6rem;
    margin-top: -15px;
  }
}

.top-box {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}
@media all and (max-width: 896px) {
  .top-box {
    max-width: 90%;
  }
}
@media all and (max-width: 639px) {
  .top-box {
    padding: 25px;
  }
}

.sec1-wrap {
  padding: 25px 0;
  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;
}
.sec1-wrap .sec1-child {
  background: #fff;
  width: 48%;
  /*background: #fefefe;*/
  padding: 90px 30px 30px;
  position: relative;
}
@media all and (max-width: 639px) {
  .sec1-wrap .sec1-child {
    width: 90%;
    margin: 0 auto;
    padding: 80px 15px 15px;
    margin-bottom: 40px;
  }
}

.news-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 4px 4px 6px;
  border-bottom: 0.9px solid #ddd;
}
.news-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.news-list li .date {
  font-size: 1.2rem;
  color: #242323;
  border: 0.9px solid #242323;
  padding: 4px 6px;
  /*background: #111;*/
}
@media all and (max-width: 639px) {
  .news-list li .date {
    font-size: 12px;
  }
}
.news-list li .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 20px;
  line-height: 1.4;
}
.news-list li .txt a {
  color: #af0909;
  text-decoration: underline;
}
@media all and (max-width: 896px) {
  .news-list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .news-list li .data {
    display: inline-block;
    font-size: 13px;
    padding: 4px;
  }
  .news-list li .txt {
    margin: 5px 0 0;
    display: block;
  }
}

.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;";
  -o-object-position: 60% 50%;
     object-position: 60% 50%;
}
.sec2-box .sec2-txt {
  width: 50%;
  margin-left: auto;
  font-weight: 600;
  padding: 100px 35px 80px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  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: #242323;
  font-family: "Noto Serif JP", serif;
  margin-top: -180px;
  margin-bottom: 50px;
  line-height: 2;
}
.lead02 span {
  background: #995A3D;
  padding: 8px 6px;
  color: #fff;
}
@media all and (max-width: 639px) {
  .lead02 {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    margin-top: -150px;
  }
}

.deco {
  position: relative;
}
.deco:before, .deco:after {
  content: "";
  position: absolute;
  width: 25%;
  height: 70%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (max-width: 1100px) {
  .deco:before, .deco:after {
    display: none;
  }
}
.deco:before {
  left: 0;
  background: url(../img/deco01.jpg) no-repeat left center/contain;
}
.deco:after {
  right: 0;
  background: url(../img/deco02.jpg) no-repeat right center/contain;
}
.deco .inner {
  position: relative;
  z-index: 2;
}

.deco-02 {
  display: none;
}
@media all and (max-width: 1100px) {
  .deco-02 {
    max-width: 90%;
    margin: 40px auto 0;
    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;
  }
  .deco-02 img {
    width: 48%;
  }
}

.deco-circle {
  position: absolute;
  width: 300px;
  left: -80px;
  top: 50px;
  opacity: 0.4;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.sec3 {
  position: relative;
}
.sec3:before {
  position: absolute;
  content: "";
  width: 40%;
  height: 100%;
  top: 0;
  right: 0;
  background: url(../img/bg-02.jpg) no-repeat center/cover;
}
@media all and (max-width: 639px) {
  .sec3:before {
    width: 75%;
  }
}

.sec4 {
  background: rgb(252.8913043478, 244.4565217391, 208.6086956522);
}

.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);
  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: #fff;
}
@media all and (max-width: 639px) {
  .sec5:before {
    height: 70%;
  }
}

.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: 2.6666666667%;
}
.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;
}
@media all and (max-width: 639px) {
  .icon-list li a figure {
    width: 60px;
    margin-bottom: 10px;
  }
}
.icon-list li a .icon-title {
  color: #995A3D;
  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.07, 1.02);
          transform: translate(-50%, -50%) scale(1.07, 1.02);
  opacity: 1;
}
.icon-list li a:hover .icon-title {
  color: #242323;
}
@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;
  }
}

.title01 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #242323;
  font-family: "Noto Serif JP";
  font-weight: 700;
}
.title01 span {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: #242323;
  font-family: "Libre Baskerville", serif;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  .title01 span {
    font-size: 1.3rem;
  }
}
.title01.white {
  color: #fcfcfc;
}
.title01.white span {
  color: #fff;
}

.title02 {
  font-size: 1.4rem;
  font-weight: 700;
  padding-bottom: 5px;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
.title02 span {
  background: #242323;
  padding: 4px 8px;
  color: #fff;
}
@media all and (max-width: 639px) {
  .title02 {
    font-size: 1.2rem;
  }
}
.title02.type1 span {
  background: #2f49b0;
}

.title03 {
  background: #fdfdfd;
  border-radius: 0 5px 5px 0;
  padding: 10px 15px;
  font-weight: 600;
  margin-top: 10px;
  font-size: 1.8rem;
  margin-bottom: 50px;
  position: relative;
}
.title03 span {
  font-family: "Libre Baskerville", serif;
  font-weight: 500;
  color: #ffde4b;
  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: #ffde4b;
  border-radius: 5px 5px 0 0;
}
.title03:after {
  width: 40%;
  bottom: -8px;
  background: #fa7e3b;
  border-radius: 0 0 5px 5px;
}

.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: "Libre Baskerville", serif;
  font-weight: 500;
  color: #242323;
  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;
  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: 30px;
}
@media all and (max-width: 639px) {
  .news-right {
    width: 100%;
    margin: 10px 0 0;
  }
}

.topic-dl .topic-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dotted #ccc;
  position: relative;
  padding: 10px 0;
}
.topic-dl .topic-inner:before {
  width: 40px;
  border-bottom: 1px solid #ffffff;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
}
.topic-dl .topic-inner dt {
  width: 7em;
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
}
@media all and (max-width: 639px) {
  .topic-dl .topic-inner dt {
    font-size: 12px;
  }
}
.topic-dl .topic-inner dd {
  padding-left: 20px;
}
.topic-dl .topic-inner dd a {
  font-weight: 600;
}
.topic-dl .topic-inner dd a:hover {
  color: #242323;
}
@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;
  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;
}
.top-bnr-list > .child {
  position: relative;
  width: 48%;
}
.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 > .child {
    width: 48%;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 639px) {
  .top-bnr-list {
    width: 95%;
    padding: 0;
  }
  .top-bnr-list > .child {
    width: 100%;
  }
}
.top-bnr-list .top-bnr-img {
  position: relative;
  width: 100%;
  height: 260px;
  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: "Libre Baskerville", serif;
  font-weight: 500;
  font-size: 3rem;
  letter-spacing: 0.1em;
  color: #242323;
  /*color: $base_color;*/
  padding: 10px 10px 6px;
  background: #fff;
  /*background: #fefefe;*/
}
.top-bnr-list .top-bnr-title .ja {
  font-size: 1.5rem;
  padding: 6px 10px;
  color: #fefefe;
  background: #fa7e3b;
  /*background: $base_color;*/
}
@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: #242323;
  border-bottom: 1px solid #242323;
}
.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: 90px 0;
  position: relative;
}
@media all and (max-width: 1100px) {
  .single {
    padding: 80px 10px;
  }
}

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

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

.margin-top {
  margin-top: -90px;
}
@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: 9px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.mbox.transparent {
  background: transparent;
}
@media all and (max-width: 639px) {
  .mbox {
    padding: 5px;
  }
}

.mbox2 {
  background: #eeeeee;
  padding: 25px 20px;
  border-top: 5px solid;
  -o-border-image: linear-gradient(to right, #af0909 0%, #af0909 33.33%, #ffefa7 33.34%, #ffefa7 100%);
     border-image: -webkit-gradient(linear, left top, right top, from(#af0909), color-stop(33.33%, #af0909), color-stop(33.34%, #ffefa7), to(#ffefa7));
     border-image: linear-gradient(to right, #af0909 0%, #af0909 33.33%, #ffefa7 33.34%, #ffefa7 100%);
  border-image-slice: 1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.mtitle_box2.type1 {
  background: linear-gradient(60deg, #c59e30 0%, #c59e30 85%, #e7c64d 85%);
}

.mtitle_box2 {
  position: relative;
  background: linear-gradient(60deg, #9f2925 0%, #9f2925 85%, #c8342f 85%);
  font-size: 2rem;
  color: #fff;
  padding: 15px 10px;
  line-height: 1.4;
  margin-bottom: 25px;
  font-family: "YakuHanMP", "Shippori Mincho", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 1.5rem;
  }
}

#service-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
}
@media all and (max-width: 896px) {
  #service-box {
    -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;
    margin-bottom: 0;
    padding: 0;
  }
}
#service-box #service-side {
  width: 200px;
  position: sticky;
  left: 0;
  top: 80px;
  margin-bottom: 91px;
}
#service-box #service-side .btn {
  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;
  margin-top: 20px;
}
#service-box #service-side .btn li {
  margin: 0 5px;
  background: #242323;
  border-radius: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  max-width: 50px;
}
#service-box #service-side .btn li:hover {
  background: #995A3D;
}
@media all and (max-width: 896px) {
  #service-box #service-side {
    width: 100%;
    margin: 0 auto;
    position: static;
    top: auto;
    left: auto;
  }
}
#service-box #service-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 40px;
}
@media all and (max-width: 1100px) {
  #service-box #service-main {
    margin-left: 20px;
  }
}
@media all and (max-width: 896px) {
  #service-box #service-main {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    margin: 0;
    width: 100%;
  }
}

.sidenavi_wrap {
  margin-top: 35px;
  background: #eeeeee;
  padding: 0 10px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.05));
          filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.05));
}
@media all and (max-width: 896px) {
  .sidenavi_wrap {
    margin-top: 40px;
  }
}

.title-mini {
  font-family: "Noto Serif JP";
  font-weight: 700;
  background: #d3b157;
  color: #fefefe;
  padding: 4px 0;
  margin: 0 -10px;
  text-align: center;
  font-size: 1.6rem;
}
@media all and (max-width: 896px) {
  .title-mini {
    font-size: 1.35rem;
  }
}

.side-navi {
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 10px 0;
}
@media all and (max-width: 896px) {
  .side-navi {
    font-size: 1.2rem;
  }
}
.side-navi > li a {
  display: block;
  position: relative;
  padding: 8px 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.side-navi > li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  font-weight: 900;
  margin-right: 10px;
  color: #d3b157;
  font-size: 0.5em;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0.5;
}
.side-navi > li a:hover {
  background: #f4f4f3;
}
.side-navi > li a:hover:before {
  opacity: 1;
}
.side-navi > li:not(:last-of-type) {
  border-bottom: 1px dashed #333;
}

.fukidashi {
  margin: 0.5em auto 1em;
  padding: 5px;
  text-align: center;
  max-width: 50%;
  border-radius: 10px;
  font-size: 2.2rem;
  background: #f9cad8;
  border-radius: 4px;
  position: relative;
}
.fukidashi .type2 {
  background: #ffe53b;
  max-width: 80%;
}
.fukidashi .type2.fukidashi.type2:before {
  border-top-color: #ffe53b;
}

.about-mbox .inner {
  position: relative;
  z-index: 2;
  background: #eeeeee;
  padding: 40px 30px;
  border-top: 5px solid #242323;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
}
.about-mbox .about-img {
  position: relative;
  margin-bottom: 40px;
}
.about-mbox .about-img img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
  object-fit: cover;
}
.about-mbox .about-title {
  position: absolute;
  color: #fff;
  background: #242323;
  padding: 10px 20px;
  bottom: 0;
  left: 0;
}
@media all and (max-width: 639px) {
  .about-mbox .about-title {
    padding: 8px 15px;
  }
}
.about-mbox .about-title02 {
  color: #fff;
  background: #242323;
  padding: 10px 25px 5px;
  display: inline-block;
}
@media all and (max-width: 639px) {
  .about-mbox .about-title02 {
    padding: 10px 20px 5px;
  }
}
.about-mbox.type1 .inner {
  border-top: 5px solid #ffffff;
}
.about-mbox.type1 .about-title {
  background: #ffffff;
}
@media all and (max-width: 1100px) {
  .about-mbox .about-img img {
    height: 280px;
  }
}
@media all and (max-width: 896px) {
  .about-mbox .about-img img {
    height: 220px;
  }
}
@media all and (max-width: 639px) {
  .about-mbox .inner {
    padding: 25px 15px;
  }
  .about-mbox .about-img {
    margin-bottom: 30px;
  }
  .about-mbox .about-img img {
    height: 180px;
  }
}

.content-box + .content-box {
  margin-top: 40px;
}

.sub-title {
  font-size: 2rem;
  font-family: "Noto Serif JP";
  font-weight: 700;
}
@media all and (max-width: 639px) {
  .sub-title {
    font-size: 1.5rem;
  }
}
.sub-title span {
  padding: 5px 8px;
  color: #fff;
  background-color: #d3b157;
  margin-right: 7px;
  border-radius: 5px;
}

.sticky-area02 {
  float: left;
  position: sticky;
  left: 0;
  top: 80px;
  width: 34%;
}
.sticky-area02.type1 {
  float: right;
}
@media all and (max-width: 639px) {
  .sticky-area02 {
    float: none;
    width: 100%;
    position: relative;
    margin-bottom: 25px;
    top: 0;
  }
}

.main-area02 {
  position: relative;
  float: right;
  width: 62%;
}
.main-area02.type1 {
  float: left;
}
@media all and (max-width: 639px) {
  .main-area02 {
    float: none;
    width: 100%;
  }
}

.sentence p + p {
  margin-top: 20px;
}
@media all and (max-width: 639px) {
  .sentence p + p {
    margin-top: 26px;
  }
}

.sentence2 p + p {
  margin-top: 12px;
}
@media all and (max-width: 639px) {
  .sentence2 p + p {
    margin-top: 8px;
  }
}

.bg-grid, .top-list li {
  background: rgba(255, 255, 255, 0.9);
  /* border-top: 1px solid #555;
   border-bottom: 1px solid #555;*/
  background-image: -webkit-gradient(linear, left top, right top, color-stop(95%, transparent), color-stop(50%, rgba(204, 204, 204, 0.2)), to(rgba(204, 204, 204, 0.2))), -webkit-gradient(linear, left bottom, left top, color-stop(95%, transparent), color-stop(50%, rgba(204, 204, 204, 0.2)), to(rgba(204, 204, 204, 0.2)));
  background-image: linear-gradient(90deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2)), linear-gradient(0deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2));
  background-size: 20px 20px;
  background-repeat: repeat;
}

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

#main {
  float: left;
  width: 76%;
}
#main .mbox {
  min-height: 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: sticky;
  right: 0;
  top: 0;
  width: 21%;
  padding-right: 10px;
}
@media all and (max-width: 896px) {
  #side {
    float: none;
    width: 100%;
    position: static;
    margin-top: 40px;
  }
}

/* mtitle
----------------------------------*/
.mtitle {
  margin: 0 auto 40px;
  position: relative;
  text-align: center;
}
.mtitle .eng {
  font-size: 3rem;
  color: #242323;
  position: relative;
  z-index: 2;
  display: block;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
}
.mtitle .ja {
  position: relative;
  z-index: 2;
  font-size: 4rem;
  color: #ffffff;
}
.mtitle .ja span {
  background: -webkit-gradient(linear, left top, right top, from(#866b1e), to(#d8b535));
  background: linear-gradient(to right, #866b1e, #d8b535);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.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: #ffde4b;
}
.mtitle.white span.ja {
  border-bottom-color: #fefefe;
}
.mtitle.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.mtitle.mtitle_left:before {
  left: 2%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.mtitle.mtitle_left span:after {
  left: 0;
  -webkit-transform: none;
          transform: none;
}
@media all and (max-width: 639px) {
  .mtitle {
    text-align: center;
  }
  .mtitle .eng {
    font-size: 1.5rem;
  }
  .mtitle .ja {
    font-size: 1.6rem;
  }
}

.mtitle2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  font-family: "Noto Serif JP";
  font-weight: 700;
  color: #242323;
  letter-spacing: 0.2em;
  position: relative;
}
.mtitle2 span {
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  font-family: "Libre Baskerville", serif;
  font-weight: 500;
  display: block;
  color: #c59e30;
}
.mtitle2 span.ja {
  font-size: 1.8rem;
  font-weight: 700;
}
@media all and (max-width: 639px) {
  .mtitle2 {
    font-size: 1.5rem;
  }
  .mtitle2 span {
    font-size: 1.2rem;
  }
  .mtitle2 span .ja {
    font-size: 1.6rem;
  }
}

.mtitle3 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  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: "Noto Serif JP";
  font-weight: 700;
  line-height: 2;
}
.mtitle3 .eng {
  display: block;
  font-family: "Libre Baskerville", serif;
  font-weight: 500;
  font-size: 2rem;
  color: #242323;
}
@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;
  margin-bottom: 30px;
  color: #995A3D;
  padding: 0 10px 15px;
}
.mtitle_line span {
  font-size: 1.4rem;
  color: #242323;
}
.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  opacity: 0.5;
  background-image: repeating-linear-gradient(-45deg, #ffffff, #ffffff 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: "Libre Baskerville", serif;
  font-weight: 500;
  font-size: 5rem;
}
.mtitle_balloon span:before, .mtitle_balloon span:after {
  content: "";
  display: block;
  border-bottom: 3px solid #333;
  position: absolute;
  width: 50%;
  bottom: 6px;
}
.mtitle_balloon span:before {
  left: -5px;
}
.mtitle_balloon span:after {
  right: -5px;
}
.mtitle_balloon span i {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #333;
  border-right: 3px solid #333;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 2px;
}
.mtitle_balloon.center {
  text-align: center;
}
.mtitle_balloon.white span:before, .mtitle_balloon.white span:after {
  border-bottom-color: #fefefe;
}
.mtitle_balloon.white span i {
  border-color: #fefefe;
}
@media all and (max-width: 639px) {
  .mtitle_balloon {
    font-size: 1.7rem;
  }
  .mtitle_balloon span.eng {
    font-size: 2.4rem;
  }
}

.mtitle-bll {
  font-size: 1.7rem;
  font-weight: 700;
  border-bottom: 2px solid #eeeeee;
  position: relative;
  margin-bottom: 15px;
  line-height: 1.5;
  padding-bottom: 8px;
}
.mtitle-bll:after {
  position: absolute;
  content: "";
  display: block;
  bottom: -2px;
  width: 100px;
  height: 2px;
  background: #242323;
}
@media all and (max-width: 639px) {
  .mtitle-bll {
    font-size: 1.6rem;
  }
}

.mtitle4 {
  font-weight: 600;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
}
.mtitle4 span {
  position: relative;
  display: inline-block;
  min-width: 10%;
}
.mtitle4 span:before, .mtitle4 span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 2rem;
  background-color: #242323;
}
.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: #ffde4b;
}
@media all and (max-width: 639px) {
  .mtitle4 {
    font-size: 2rem;
  }
}
@media all and (max-width: 320px) {
  .mtitle4 span:before {
    left: -3px;
  }
  .mtitle4 span:after {
    right: -3px;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 700;
  position: relative;
  border-left: 6px solid #ffffff;
  margin: 8px 0 15px;
  font-size: 1.1em;
  line-height: 1.4;
  text-align: left;
}
.mtitle_sub .hissu {
  color: #fff;
  background: rgb(61.8591549296, 60.1408450704, 60.1408450704);
  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: 100%;
  background-color: #242323;
}

.mtitle_box {
  background: #d3b157;
  color: #fff;
  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;
  }
}

.mtext1 {
  font-size: 2.2rem;
  line-height: 1.6;
  letter-spacing: 0.15em;
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

.mtext2 {
  font-size: 2.5rem;
  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: #242323;
}

/* 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: #ffffff;
  text-align: center;
  width: 300px;
  margin: 15px auto;
  display: block;
  padding: 8px 5px;
  font-weight: 700;
  border: 2px solid #222;
  border-radius: 35px;
}
.btn01 a:hover {
  background: #242323;
  color: #ffefa7;
}
.btn01.mail {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.btn01.mail a {
  background: #ffde4b;
  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;
}
.btn01.type1 a {
  background: #fff;
  border: 0.9px solid #242323;
  color: #fa7e3b;
}
.btn01.type1 a:hover {
  background: #ffde4b;
}
@media all and (max-width: 639px) {
  .btn01 a {
    width: 95%;
  }
}

.btn02 {
  width: 300px;
  margin: 20px auto 20px;
}
.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #242323;
  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: #995A3D;
  text-align: center;
  background: #ffffff;
  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: #995A3D;
  background-image: -webkit-gradient(linear, left top, right top, from(#242323), to(#fa7e3b));
  background-image: linear-gradient(to right, #242323, #fa7e3b);
  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(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26757/page-title.jpg) no-repeat 50%/cover;
  overflow: hidden;
}
.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(#242323), to(#ffeec2));
  background-image: linear-gradient(to right bottom, #242323, #ffeec2);
  opacity: 0.2;
}
.page-title .inner {
  margin: 0 auto;
  padding: 160px 0;
  max-width: 1200px;
}
.page-title .page-lead {
  text-align: center;
  color: #ffde4b;
  font-size: 2rem;
  position: relative;
}
.page-title .page-lead span {
  display: block;
  position: relative;
  z-index: 2;
}
.page-title .page-lead .ja {
  font-size: 1.8rem;
  color: #fad77c;
  text-shadow: 3px 3px 3px rgb(0, 0, 0);
}
.page-title .page-lead .eng {
  font-size: 5rem;
  color: #fff;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  text-shadow: 3px 3px 3px rgb(0, 0, 0);
}
@media all and (max-width: 896px) {
  .page-title .inner {
    width: 100%;
    padding: 80px 0;
  }
  .page-title .page-lead .ja {
    font-size: 1.2rem;
  }
  .page-title .page-lead .eng {
    font-size: 2.4rem;
  }
}

.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(#242323), color-stop(#fa7e3b), to(#ffffff));
  background-image: linear-gradient(to right, #242323, #fa7e3b, #ffffff);
  z-index: -2;
  opacity: 0.3;
}

.bg-01 {
  position: relative;
  overflow: hidden;
}
.bg-01:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26757/page-title.jpg) no-repeat center/cover;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26757/page-title.jpg) no-repeat center/cover;
  z-index: -1;
}
@media all and (max-width: 896px) {
  .bg-01:before {
    height: 85%;
  }
}
.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;
  padding-top: 120px;
}
.bg-03:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-03.jpg) no-repeat center bottom/cover;
  background: #242323;
  opacity: 0.4;
  z-index: -2;
}

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

.bg-w {
  position: relative;
  background: rgba(255, 207, 63, 0.7019607843);
  padding: 30px;
}
@media (max-width: 639px) {
  .bg-w {
    padding: 15px;
  }
}

.bg-base {
  background: rgba(36, 35, 35, 0.4);
}
.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: #242323;
  z-index: -1;
  opacity: 0.2;
}
@media all and (max-width: 896px) {
  .bg-base.type1:before {
    width: calc(100% - 10px);
  }
}

.bg-green {
  position: relative;
  background: transparent;
}
.bg-green:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-green.jpg);
  z-index: -1;
}

.bg-green2 {
  background: #ffeec2;
}

.bg-yellow {
  background: rgba(255, 242, 183, 0.9);
}

.bg-gray {
  position: relative;
  background: #f4f4f3;
}
.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%, #f4f4f3), to(#f4f4f3));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #f4f4f3 50.1%, #f4f4f3 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: #f4f4f3;
  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(250, 126, 59, 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%, white), to(white));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, white 50.1%, white 100%);
}

.bg-beige {
  position: relative;
}
.bg-beige:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fefae9;
}
.bg-beige.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: #fefae9;
  z-index: -1;
}
@media all and (max-width: 1100px) {
  .bg-beige.type1:before {
    width: calc(100% - 10px);
  }
}

.bg-beige2 {
  background: url(../img/bg-beige.jpg);
}

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

/* tbl
----------------------------------*/
.higawari-box table {
  width: 100% !important;
  letter-spacing: 0;
  border-collapse: collapse;
}
.higawari-box table th,
.higawari-box table td {
  padding: 6px;
  border: 1px solid #995A3D;
  vertical-align: middle;
}
.higawari-box table th {
  background: #242323;
  color: #fff;
}
.higawari-box table .td-1 {
  width: 10%;
  font-weight: 600;
  text-align: center;
  background: lemonchiffon;
}
@media all and (max-width: 639px) {
  .higawari-box table .td-1 {
    font-size: 15%;
  }
}
.higawari-box table .td-2 {
  background: #eef7ae;
}
.higawari-box table .td-3 {
  width: 10%;
  text-align: center;
  background: lemonchiffon;
  font-weight: 600;
  color: #c54343;
}

.tbl {
  width: 100%;
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border: 1px solid #ccc;
  font-size: 1.4rem;
}
.tbl th {
  background: rgba(36, 35, 35, 0.2);
  font-weight: 500;
}
.tbl thead th {
  background: #ffffff;
  color: #fff;
}
.tbl td {
  background: #fff;
}
.tbl td.td-1 {
  width: 50%;
  font-size: 1.3rem;
}
@media all and (max-width: 639px) {
  .tbl td.td-1 {
    font-size: 12px;
  }
}
.tbl .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: 10px 10px;
}
.tbl_new tr th {
  font-weight: 600;
  width: 25%;
  color: #995A3D;
  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: #fefae9;
}

.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: #995A3D;
  text-align: left;
  border-color: #242323;
}
.tbl-border th.th-1 {
  width: 45%;
}
@media all and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}
.tbl-border td {
  border-color: rgb(231.8043478261, 231.8043478261, 229.6956521739);
}

.price-box {
  max-width: 600px;
  margin: 30px auto;
  padding: 25px;
  text-align: center;
  font-size: 1.1em;
  font-family: "Noto Serif JP";
  font-weight: 700;
}
.price-box img {
  -webkit-transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  transition: transform 0.4s ease, box-shadow 0.3s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.3s ease;
}
.price-box img:hover {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
@media all and (max-width: 639px) {
  .price-box {
    padding: 20px 15px;
    font-size: 1em;
  }
  .price-box img:hover {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
}

.exm {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: #995A3D;
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 5px;
}

.price-wrap {
  padding: 10px;
  background: #fff;
  margin-bottom: 20px;
}

.price {
  font-weight: 600;
  text-align: center;
}
.price span {
  font-family: "Lato";
  font-size: 2.8rem;
  color: #84001d;
}
@media all and (max-width: 639px) {
  .price span {
    font-size: 2rem;
  }
}

.timetable {
  padding: 20px 20px;
  width: 100%;
  border-top: 1px solid #995A3D;
}
.timetable th,
.timetable td {
  border-bottom: 1px solid #995A3D;
  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: #995A3D;
}
.timetable.type1 td.td-last {
  border-right: 0;
}
.timetable .thead th {
  border-top: 0;
  color: #995A3D;
}
.timetable .th-1 {
  width: 35%;
  font-weight: 600;
  text-align: center;
}
.timetable .circle {
  color: #242323;
}
.timetable .triangle {
  color: #2f49b0;
}
@media all and (max-width: 639px) {
  .timetable {
    padding: 15px 10px;
  }
  .timetable .th-1 {
    width: 25%;
  }
}

.star {
  color: #9df4ff;
}

.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: #f4f4f3;
}
.notion .triangle {
  font-size: 2rem;
  color: #2f49b0;
}
.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: #995A3D;
  font-weight: bold;
  background: #ffde4b;
  padding: 0 4px;
}

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

/* list
----------------------------------*/
.list_common li {
  padding-bottom: 4px;
  font-size: 1.4rem;
  margin-bottom: 5px;
  border-bottom: 1px dotted rgba(36, 35, 35, 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: #fefefe;
  padding: 12px 8px;
  width: 48%;
}
.list_check.type1 li:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list_check.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list_check.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}
.list_check li {
  padding: 4px 8px 4px 25px;
  font-weight: 700;
  color: #995A3D;
  margin-bottom: 5px;
  position: relative;
}
.list_check li .small {
  font-weight: normal;
  font-size: 0.9em;
  display: block;
  padding: 10px;
  background: #fefae9;
  border-radius: 5px;
}
.list_check li a {
  color: #242323;
  border-bottom: 1px dotted #242323;
}
.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  position: absolute;
  top: 4px;
  left: 0;
  color: #242323;
}
@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;
}
.list_check2.type1 li {
  width: 48%;
}
.list_check2.type1 li:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list_check2.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list_check2.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}
.list_check2 li {
  padding: 4px;
  color: #995A3D;
  font-weight: 600;
}
.list_check2 li .num {
  color: #242323;
  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: #242323;
}
.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 #2f49b0;
  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: #242323;
  font-weight: normal;
}
@media all and (max-width: 639px) {
  .list-inline li {
    display: block;
    padding: 0;
  }
  .list-inline li:before {
    content: "-";
    color: #242323;
  }
  .list-inline li:not(:last-of-type):after {
    display: none;
  }
}

.list-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list-btn li {
  width: 32%;
  margin: 0 1.995% 10px 0;
}
.list-btn li a {
  display: block;
  background: rgba(254, 250, 233, 0.5);
  color: #995A3D;
  font-weight: 600;
  padding: 10px 3px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  font-size: 1.5rem;
  letter-spacing: 0;
  -webkit-transition: 0.2s ease-in all;
  transition: 0.2s ease-in all;
}
.list-btn li a:hover {
  background: rgb(251.7826086957, 238.9130434783, 184.2173913043);
}
.list-btn li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list-btn li {
    width: 90%;
    margin: 0 auto 10px;
  }
  .list-btn li a {
    font-size: 1.2rem;
  }
  .list-btn li:nth-child(3n) {
    margin-right: auto;
  }
}

.ol-list {
  counter-reset: number;
  list-style: none;
  padding: 5px;
}
.ol-list.type1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ol-list.type1 > li {
  width: 48%;
}
.ol-list.type1 > li:nth-child(2n) {
  margin-left: 4%;
}
.ol-list li {
  line-height: 2;
  padding-top: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  position: relative;
  padding-left: 30px;
  padding-bottom: 10px;
}
.ol-list li .ol-lead {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
}
.ol-list li .inner {
  font-weight: 500;
  display: block;
  padding: 10px 5px;
  line-height: 1.6;
  font-size: 1.4rem;
}
.ol-list li:before {
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  font-family: "Libre Baskerville", serif;
  font-weight: 500;
  position: absolute;
  font-size: 3rem;
  line-height: 1;
  background: #c59e30;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  top: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (max-width: 639px) {
  .ol-list li {
    font-size: 1.2rem;
  }
  .ol-list li .ol-lead {
    font-size: 1.25rem;
  }
  .ol-list li .inner {
    font-size: 0.9em;
  }
  .ol-list li:before {
    font-size: 2.4rem;
    top: 10px;
  }
}

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

.list-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list-btn li {
  width: 32%;
  margin: 0 1.995% 10px 0;
}
.list-btn li a {
  display: block;
  background: #fefae9;
  color: #995A3D;
  font-weight: 700;
  padding: 10px 3px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  font-size: 1.5rem;
  letter-spacing: 0;
}
.list-btn li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list-btn li {
    width: 90%;
    margin: 0 auto 10px;
  }
  .list-btn li a {
    font-size: 1.2rem;
  }
  .list-btn li:nth-child(3n) {
    margin-right: auto;
  }
}
.list-btn.type1 {
  max-width: 1000px;
  margin: 0 auto 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list-btn.type1 li a {
  background: #242323;
  border: 1px solid rgb(10.1408450704, 9.8591549296, 9.8591549296);
}
.list-btn.type1 li a:hover {
  background: rgb(251.2686567164, 158.7313432836, 108.7313432836);
}
.list-btn.type1 li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f13a";
  font-weight: 900;
  margin-right: 5px;
}

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

.pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 15px;
}
.pages div {
  width: 48%;
}
.pages div a {
  font-weight: 600;
}

.blog-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.blog-wrap a {
  display: block;
  width: 32%;
  height: 100%;
  margin: 0 0.5% 20px 0.5%;
  position: relative;
}
@media all and (max-width: 1100px) {
  .blog-wrap a {
    width: 49%;
  }
}
@media all and (max-width: 639px) {
  .blog-wrap a {
    width: 90%;
    margin: 0 auto 25px;
  }
}
.blog-wrap * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.blog-wrap > li {
  width: 32%;
  margin: 0 0.5% 20px 0.5%;
  position: relative;
  background: #fff;
  padding-bottom: 40px;
  overflow: hidden;
  border-radius: 15px;
}
@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: 20px;
}

.blog-category {
  display: inline-block;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  color: rgb(134.7686915888, 79.2757009346, 53.7313084112);
  font-size: 12px;
}

.blog-date {
  background: #fefae9;
  width: 90px;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #995A3D;
  border-radius: 30px;
  font-size: 12px;
}

.blog-page-detail {
  padding-bottom: 3px;
  border-bottom: 2px solid #f4f4f3;
  margin-bottom: 10px;
}

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

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

.more {
  position: absolute;
  font-size: 1.8rem;
  border: 0.9px solid #ccc;
  color: #ccc;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 30px;
  display: block;
  right: 0;
  bottom: -10px;
  font-weight: 700;
  border-radius: 0 0 20px 0;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.blogtxt {
  line-height: 1.5;
  color: #333;
  font-size: 13px;
}

.blogtitle {
  color: #242323;
  margin-bottom: 5px;
  font-size: 1.4rem;
  line-height: 1.4;
}
@media all and (max-width: 639px) {
  .blogtitle {
    font-size: 1.2rem;
  }
}

.blogtime {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  border-top: 1px solid #eee;
  padding: 8px;
  text-align: right;
  display: block;
  font-family: "Libre Baskerville", serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: #ffffff;
}
@media all and (max-width: 639px) {
  .blogtime {
    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: #f4f4f3;
}
.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: #242323;
}

.color2 {
  color: #84001d;
}

.color3 {
  color: #2f49b0;
}

.relative {
  position: relative;
}

.bigger {
  font-size: 1.15em;
}

.num {
  font-weight: 700;
}
.num a {
  color: #242323;
  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: #242323;
}

.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;
  color: #2f49b0;
}
.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 #242323;
  padding: 10px 10px;
  text-align: center;
  border-radius: 40px;
}
.telbnr li a {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: #242323;
}
.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.telbnr li a:hover {
  color: #242323;
}
.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: #995A3D;
  margin-top: -30px;
}
.telbnr-ttl span {
  background: #f4f4f3;
  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: #ffffff;
}
.breadcrumb li a {
  color: #fff;
}
.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: #242323;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
  position: relative;
  top: -2px;
}
.form dl dt span.nini {
  background: #ffde4b;
  color: #995A3D;
}
.form dl dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
}
.form dl dd:last-child {
  border-bottom: none;
}
.form .textarea,
.form textarea {
  border: 0;
  padding: 20px 15px;
  width: 100%;
  background: #f5f5f5;
  border-radius: 0;
  -webkit-appearance: none;
}
.form .textarea {
  height: 30px;
}
.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}
.form .textarea02:last-child {
  margin-right: 0;
}
.form .textarea03 {
  width: 20%;
  margin-right: 1%;
}
.form button {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  border: 1px solid #242323;
  font-weight: 700;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  background: #242323;
  border-radius: 25px;
}
.form button:hover {
  background: #fff;
  color: #242323;
}
.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: #242323;
}
.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: #242323;
  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 #242323;
  border-bottom: 3px solid #242323;
  -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 #242323;
  -webkit-box-shadow: 0 0 0 8px rgba(36, 35, 35, 0.2);
          box-shadow: 0 0 0 8px rgba(36, 35, 35, 0.2);
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
}
@media all and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

.shadow {
  -webkit-box-shadow: 0 0 10px rgba(153, 90, 61, 0.05);
          box-shadow: 0 0 10px rgba(153, 90, 61, 0.05);
}

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

.mtitle_small {
  font-weight: 600;
  padding: 7px 0;
  font-size: 1.6rem;
  border-top: 1px solid #242323;
  /*border-top: 1px solid $gold;*/
  border-bottom: 1px solid #242323;
  margin-bottom: 20px;
}
.mtitle_small:before {
  content: "―";
  margin-right: 8px;
  color: #242323;
}
@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: #242323;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.6em;
  left: 0;
}

/* slick
----------------------------------*/
/*photoギャラリー*/
.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gallery li {
  width: 31%;
  margin: 0 3.495% 30px 0;
}
.gallery li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 896px) {
  .gallery li:nth-child(3n) {
    marign-right: 4%;
  }
}
.gallery li a {
  display: block;
  text-align: center;
  padding: 0px;
  height: 240px;
}
.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 4% 20px 0;
  }
  .gallery li:nth-child(2n) {
    margin-right: 0;
  }
}
@media all and (max-width: 639px) {
  .gallery li a {
    height: 160px;
  }
}

.list {
  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;
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  margin-top: -50px;
}
.list.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media all and (max-width: 639px) {
  .list {
    margin-top: -20px;
  }
}
.list.interview-list .child {
  position: relative;
  padding-bottom: 80px;
}
.list.type1 > li,
.list.type1 .child {
  background: #fff;
  padding: 20px;
}
.list > li,
.list .child {
  width: 48%;
  margin: 50px 0 10px;
  position: relative;
  line-height: 4rem;
}
@media all and (max-width: 639px) {
  .list > li,
  .list .child {
    line-height: 2.5rem;
  }
}
.list > li a img,
.list .child a img {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.list > li:nth-child(2n),
.list .child:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list > li:nth-child(2n),
  .list .child:nth-child(2n) {
    margin-left: auto;
  }
}
@media all and (max-width: 639px) {
  .list > li,
  .list .child {
    width: 100%;
    margin: 20px auto 0;
  }
}

.list2 {
  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;
  max-width: 1500px;
}
@media all and (max-width: 639px) {
  .list2 {
    margin-top: -20px;
  }
}
.list2.interview-list .child {
  position: relative;
  padding-bottom: 80px;
}
.list2.type1 > li,
.list2.type1 .child {
  background: #fefefe;
  padding: 20px;
}
.list2 > li,
.list2 .child {
  width: 78%;
  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: 1100px) {
  .list2 > li,
  .list2 .child {
    margin-top: 20px;
  }
}
@media all and (max-width: 639px) {
  .list2 > li,
  .list2 .child {
    width: 100%;
    margin: 20px auto 0;
  }
}
.list2 > li img,
.list2 .child img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  transition: transform 0.4s ease, box-shadow 0.3s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.3s ease;
}
.list2 > li img:hover,
.list2 .child img:hover {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

.list3 {
  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;
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  margin-top: -50px;
}
@media all and (max-width: 639px) {
  .list3 {
    margin-top: -20px;
  }
}
.list3.interview-list .child {
  position: relative;
  padding-bottom: 80px;
}
.list3.type1 > li,
.list3.type1 .child {
  background: #fefefe;
  padding: 20px;
}
.list3 > li,
.list3 .child {
  width: 48%;
  margin-top: 50px;
  position: relative;
}
.list3 > li:nth-child(2n),
.list3 .child:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list3 > li:nth-child(2n),
  .list3 .child:nth-child(2n) {
    margin-left: auto;
  }
}
@media all and (max-width: 639px) {
  .list3 > li,
  .list3 .child {
    width: 100%;
    margin: 20px auto 0;
  }
}

.example-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 1em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.example-label {
  min-width: 3em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.example-label .exm {
  margin: 0;
  font-weight: bold;
}

.example-details {
  text-align: left;
}

.example-text {
  margin: 0 0 0.5em;
  line-height: 1.6;
}

.list4 {
  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-left: -2%;
  margin-top: -30px;
}
.list4 li {
  width: 23%;
  margin-left: 2%;
  margin-top: 30px;
  padding: 15px;
  border-radius: 10px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.list4 li h3 {
  font-size: 1.6rem;
  text-align: center;
  margin: 20px 0 10px;
  font-weight: bold;
  color: #333;
}
@media all and (max-width: 896px) {
  .list4 li h3 {
    font-size: 1.4rem;
    margin: 18px 0 8px;
  }
}
@media all and (max-width: 639px) {
  .list4 li h3 {
    font-size: 1.2rem;
    margin: 15px 0 8px;
  }
}
.list4 li .price {
  text-align: center;
  margin: 10px 0;
  font-size: 1rem;
  font-weight: bold;
}
.list4 li p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 10px;
}
.list4 li img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 0 auto 10px;
}
.list4 li a {
  display: block;
}
.list4 li a:hover {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
@media all and (max-width: 896px) {
  .list4 li {
    width: 31.33%;
  }
}
@media all and (max-width: 639px) {
  .list4 {
    margin-left: auto;
  }
  .list4 li {
    width: 90%;
    margin: 25px auto 0;
  }
  .list4 li img {
    width: 100%;
  }
}
.list4.type1 {
  max-width: 900px;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

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

.note {
  padding: 10px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.8);
  /*background: rgba($yellow, 0.3);*/
  border-radius: 10px;
}
@media all and (max-width: 639px) {
  .note {
    font-size: 12px;
  }
}
.note.type1 {
  background: #f4efe9;
}

.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: #ffde4b;
  width: 60px;
  text-align: center;
  margin-right: 20px;
  font-family: "Libre Baskerville", serif;
  font-weight: 500;
  padding-top: 8px;
}
.flow-dl dt span {
  font-size: 3.5rem;
  display: block;
  line-height: 1;
  color: #242323;
  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: #fa7e3b;
  line-height: 1;
  top: 0;
  left: 0;
}
@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: #995A3D;
}
.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}
.blog-month ul li a {
  color: #fff;
  font-size: 12px;
}

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

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

.faq-dl .faq-inner {
  padding: 10px;
  margin-bottom: 20px;
}
.faq-dl .faq-inner:not(:last-of-type) {
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 3px solid #eee;
}
.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
  padding: 10px 10px 10px 55px;
}
.faq-dl .faq-inner dt:before,
.faq-dl .faq-inner dd:before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  left: 0;
  top: 0;
  font-family: "Libre Baskerville", serif;
  font-weight: 500;
}
.faq-dl .faq-inner dt {
  margin-bottom: 10px;
  font-weight: 700;
}
.faq-dl .faq-inner dt:before {
  content: "Q";
  color: #242323;
  font-size: 3rem;
  background: rgba(36, 35, 35, 0.2);
}
.faq-dl .faq-inner dd:before {
  content: "A";
  color: #242323;
  font-size: 3rem;
  background: rgba(255, 222, 75, 0.8);
}

.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: #c54343;
  display: block;
  background: #fefefe;
  border-radius: 100%;
  text-align: center;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  position: relative;
}
.sns-list li a:hover {
  opacity: 0.7;
}
.sns-list li a.btn-facebook {
  background: #1877f2;
}
.sns-list li a.btn-twitter {
  background: #1da1f2;
}
.sns-list li a.btn-instagram {
  overflow: hidden;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}
.sns-list li a.btn-instagram i {
  position: relative;
  z-index: 2;
}
.sns-list li a.btn-instagram:before {
  content: "";
  position: absolute;
  /*絶対配置*/
  top: 18px;
  /*ずらす*/
  left: -10px;
  /*ずらす*/
  width: 50px;
  /*グラデーションカバーの幅*/
  height: 50px;
  /*グラデーションカバーの高さ*/
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  /*グラデーション②*/
}
.sns-list li:not(:last-child) {
  margin-right: 10px;
}
@media all and (max-width: 896px) {
  .sns-list li:not(:last-child) {
    margin-right: 5px;
    margin-bottom: 0;
  }
}

.name {
  width: 200px;
  margin: -20px auto 20px;
  position: relative;
  z-index: 2;
  background: #242323;
  color: #fefefe;
  font-weight: 600;
  text-align: center;
  padding: 8px 6px;
  -webkit-box-shadow: 0 0 8px rgba(153, 90, 61, 0.05);
          box-shadow: 0 0 8px rgba(153, 90, 61, 0.05);
  line-height: 1.5;
}
.name span {
  color: #c59e30;
  display: block;
  font-size: 1.4rem;
  font-family: "Libre Baskerville", serif;
  font-weight: 500;
}

.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 {
  border-top: 5px solid;
  -o-border-image: linear-gradient(to right, #af0909 0%, #af0909 33.33%, #fad77c 33.34%, #fad77c 100%);
     border-image: -webkit-gradient(linear, left top, right top, from(#af0909), color-stop(33.33%, #af0909), color-stop(33.34%, #fad77c), to(#fad77c));
     border-image: linear-gradient(to right, #af0909 0%, #af0909 33.33%, #fad77c 33.34%, #fad77c 100%);
  border-image-slice: 1;
  max-width: 1150px;
  background: #eeeeee;
  position: relative;
  padding: 40px 30px;
  -webkit-box-shadow: 0 0 8px rgba(153, 90, 61, 0.05);
          box-shadow: 0 0 8px rgba(153, 90, 61, 0.05);
  margin-right: auto;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  .box1 {
    padding: 20px 15px;
  }
}

.box2 {
  max-width: 800px;
  padding: 25px;
  margin: 40px auto;
  position: relative;
  z-index: 2;
}

.bg-greet p {
  color: #fff;
  text-align: center;
  font-size: 2rem;
}
.bg-greet h2 {
  color: #fff;
  text-align: center;
}

.greet-box {
  line-height: 2;
  font-weight: 600;
  max-width: 900px;
  margin: 0 auto;
  background: #eeeeee;
  padding: 40px;
  text-align: center;
}
@media all and (max-width: 1367px) {
  .greet-box {
    max-width: 60%;
  }
}
@media all and (max-width: 896px) {
  .greet-box {
    max-width: 80%;
    margin: 0 auto;
  }
}
@media all and (max-width: 639px) {
  .greet-box {
    padding: 15px;
    max-width: 90%;
  }
}

.top-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top-list li {
  width: 48%;
  padding: 20px;
  position: relative;
  border: 2px solid #ffffff;
  border-radius: 10px;
  margin-bottom: 25px;
  overflow: hidden;
}
.top-list li:before {
  position: absolute;
  content: "";
  width: 20%;
  height: 100%;
  top: 0;
  left: -5%;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#242323), color-stop(#ffde4b), to(#ffde4b));
  background-image: linear-gradient(to right bottom, #242323, #ffde4b, #ffde4b);
  -webkit-transform: skew(15deg);
          transform: skew(15deg);
  opacity: 0.2;
}
@media all and (max-width: 639px) {
  .top-list li {
    width: 95%;
    margin: 0 auto 25px;
  }
}
.top-list li figure {
  position: absolute;
  width: 120px;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
@media all and (max-width: 896px) {
  .top-list li figure {
    width: 80px;
  }
}
.top-list li a {
  display: inline-block;
  padding: 6px 10px;
  font-weight: 600;
  color: #995A3D;
  border: 2px solid #995A3D;
  background: rgba(255, 222, 75, 0.3);
  -webkit-transition: background 0.2s ease-in;
  transition: background 0.2s ease-in;
}
.top-list li a:hover {
  background: rgba(255, 222, 75, 0.5);
}
.top-list li a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: 900;
  margin-left: 7px;
  color: #242323;
}
.top-list li a:not(:first-of-type) {
  margin-left: 8px;
  background: rgba(255, 222, 75, 0.4);
}
.top-list li a:not(:first-of-type):hover {
  background: rgba(255, 222, 75, 0.7);
}
@media all and (max-width: 896px) {
  .top-list li a:not(:first-of-type) {
    margin: 8px 0 0;
  }
}
.top-list li .txt {
  padding-left: 140px;
}
.top-list li .txt p {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-family: "Noto Serif JP";
  font-weight: 700;
}
@media all and (max-width: 896px) {
  .top-list li .txt {
    padding-left: 100px;
  }
}
@media all and (max-width: 639px) {
  .top-list li .txt p {
    font-size: 1.3rem;
  }
}

/* menu-btn-list
----------------------------------*/
.top-menu-bnr {
  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;
  gap: 27px;
}
.top-menu-bnr li {
  width: 45.5%;
}
.top-menu-bnr li a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.top-menu-bnr li a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 12px;
  left: 12px;
  border: 1px solid #ccc;
  z-index: 1;
}
.top-menu-bnr li a:hover .top-menu-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 0.7;
}
.top-menu-bnr li a:hover .top-menu-title .ja {
  color: #eeeeee;
  background: rgba(255, 207, 63, 0.7019607843);
  text-shadow: none;
}
@media all and (max-width: 1367px) {
  .top-menu-bnr li {
    width: 47%;
    margin-left: auto;
    margin-right: auto;
  }
  .top-menu-bnr li:nth-child(1), .top-menu-bnr li:nth-child(2) {
    margin-bottom: 30px;
  }
}
@media all and (max-width: 639px) {
  .top-menu-bnr li {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .top-menu-bnr li:not(:last-child) {
    margin-bottom: 30px;
  }
  .top-menu-bnr li a:before {
    top: 6px;
    left: 6px;
  }
}
.top-menu-bnr .top-menu-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  background: #000;
}
.top-menu-bnr .top-menu-img img {
  width: 100%;
  height: 100%;
  opacity: 0.9;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  display: block;
  margin: 0 auto;
}
.top-menu-bnr .top-menu-title {
  width: 85%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  -webkit-transition: 0.2s ease-in all;
  transition: 0.2s ease-in all;
  z-index: 2;
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6), 0 0 10px rgba(0, 0, 0, 0.5);
}
.top-menu-bnr .top-menu-title .ja {
  font-family: "Noto Serif JP";
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  border: 2px solid #fff;
  background: transparent;
  padding: 2px 12px;
  border-radius: 2px;
  display: inline-block;
  text-shadow: 2px 2px 3px rgb(0, 0, 0), 0 0 10px rgba(0, 0, 0, 0.72);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top-menu-bnr .top-menu-title .eng {
  font-family: "Libre Baskerville", serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 0, 0, 0.4);
}
@media all and (max-width: 639px) {
  .top-menu-bnr .top-menu-title .ja {
    font-size: 1.3rem;
  }
  .top-menu-bnr .top-menu-title .eng {
    font-size: 1.2rem;
  }
}

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

.top-title-box {
  padding: 50px 20px;
  text-align: center;
  border: 0.9px solid rgba(255, 255, 255, 0.5);
  position: relative;
  max-width: 80%;
  margin: 0 auto;
}
.top-title-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 30px;
  left: 30px;
  border: 0.9px solid rgba(255, 255, 255, 0.5);
}
@media all and (max-width: 896px) {
  .top-title-box {
    margin-bottom: 25px;
  }
}
@media all and (max-width: 639px) {
  .top-title-box {
    padding: 30px 15px;
    max-width: 90%;
  }
  .top-title-box:before {
    top: 15px;
    left: 15px;
  }
}

.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.column2 .child {
  width: 48%;
}
@media all and (max-width: 896px) {
  .column2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
  }
  .column2 .child {
    width: 100%;
  }
  .column2 .child.column2-img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 30px;
  }
}

.btn03 {
  display: inline-block;
  background: #242323;
  padding: 10px 20px;
  margin-top: 10px;
  color: #fff;
  border: 1px solid #242323;
}
.btn03:hover {
  background: #fff;
  color: #242323;
}

.txt-common {
  padding: 50px 10px 0;
}

.top-bnr {
  display: block;
  background: #fad77c;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media all and (max-width: 639px) {
  .top-bnr > li:last-child {
    margin-bottom: 0;
  }
}
.top-bnr figure {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.top-bnr figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
}
@media all and (max-width: 639px) {
  .top-bnr figure {
    height: 200px;
  }
}
.top-bnr .inner {
  padding: 20px;
  text-align: center;
}
.top-bnr .bnr-title {
  background: #fff;
  padding: 10px 0;
  text-align: center;
  font-family: "Noto Serif JP";
  font-weight: 700;
  font-size: 1.7rem;
  border-radius: 30px;
}
@media all and (max-width: 639px) {
  .top-bnr .bnr-title {
    font-size: 1.3rem;
  }
}
.top-bnr:hover figure img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}
.top-bnr:hover .bnr-title {
  color: #a98b3c;
}

.top-bnr-num {
  position: absolute;
  left: 20px;
  top: -20px;
  width: 140px;
  z-index: 2;
}
@media all and (max-width: 639px) {
  .top-bnr-num {
    width: 100px;
    left: -10px;
  }
}

.gallery-img {
  display: block;
  width: 100%;
}
.gallery-img img {
  width: 100%;
}

.policy-list {
  max-width: 800px;
  margin: 0 auto;
}
.policy-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #fff;
  border-radius: 40px;
}
.policy-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.policy-list li .txt1 {
  font-family: "Noto Serif JP";
  font-weight: 700;
  font-size: 2rem;
  padding: 8px 20px;
  color: #fff;
  background: #242323;
  border-radius: 15px;
  width: 45%;
}
.policy-list li .txt2 {
  padding: 8px 20px 8px 30px;
  font-weight: 600;
  -ms-flex-item-align: center;
      align-self: center;
  font-size: 1.8rem;
}
@media all and (max-width: 639px) {
  .policy-list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
  }
  .policy-list li .txt1 {
    width: 100%;
    font-size: 1.5rem;
    padding: 6px;
  }
  .policy-list li .txt2 {
    padding: 8px 0;
    font-size: 1.2rem;
  }
}

.greet-list > li {
  padding: 10px;
  font-size: 1.05em;
  background: rgba(36, 35, 35, 0.3);
  border-radius: 20px;
  line-height: 1.7;
  font-weight: 600;
}