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

a {
  color: rgb(228.28, 86.8866666667, 31.22);
  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;
}

.en {
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
}

.bold {
  font-weight: 600;
}

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

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

.font3 {
  font-family: "Mochiy Pop One", sans-serif;
  font-weight: 500;
}

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

.smaller {
  font-size: 0.9em;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

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

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

.loader {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fdfdfd;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-perspective: 200px;
          perspective: 200px;
  z-index: 9999;
}
.loader .loader-title {
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  font-size: 3rem;
  letter-spacing: 0.25vw;
}
.loader .loader-title .letter {
  display: inline-block;
}
@media all and (max-width: 639px) {
  .loader .loader-title {
    font-size: 2rem;
  }
}
.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.is-fixed {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
}
#l-header.is-fixed .inner #logo {
  top: 10px;
  width: 200px;
}
@media all and (max-width: 900px) {
  #l-header.is-fixed .inner #logo {
    width: 220px;
  }
}
#l-header.is-fixed .inner {
  padding: 50px 0;
}
#l-header.is-hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
#l-header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 90%;
  min-width: 1000px;
  margin: 0 auto;
  padding: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media all and (max-width: 900px) {
  #l-header .inner {
    min-width: initial;
  }
}
#l-header .inner #logo {
  position: absolute;
  left: 2%;
  top: 10px;
  width: 250px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  z-index: 200;
}
@media all and (max-width: 1025px) {
  #l-header .inner #logo {
    top: 20px;
    width: 250px;
  }
}
#l-header .head-right {
  margin-left: auto;
  margin-right: 5px;
  display: none;
}
#l-header .head-left {
  margin-right: auto;
  margin-left: 5px;
}
@media all and (max-width: 900px) {
  #l-header .head-left {
    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: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
#l-header .head-right_txt {
  font-size: 12px;
  font-weight: 600;
  padding-right: 20px;
  display: block;
  letter-spacing: 0;
}
#l-header .head-right_tel {
  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;
}
#l-header .head-right_tel a,
#l-header .head-right_mail a,
#l-header .head-right_reserve a {
  display: block;
  padding: 4px 15px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  color: #4a4440;
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  font-size: 1.5rem;
}
#l-header .head-right_tel a:before,
#l-header .head-right_mail a:before,
#l-header .head-right_reserve a:before {
  margin-right: 5px;
}
#l-header .head-right_tel a:hover,
#l-header .head-right_mail a:hover,
#l-header .head-right_reserve a:hover {
  color: #e76836;
}
#l-header .head-right_tel a {
  padding: 0 15px;
  color: #e76836;
  font-size: 2rem;
  position: relative;
  font-family: "Concert One", cursive;
  font-weight: 400;
}
#l-header .head-right_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  font-size: 1.6rem;
}
#l-header .head-right_tel a:hover {
  background-color: #fefefe;
}
#l-header .head-right_reserve {
  margin-left: 10px;
}
#l-header .head-right_reserve a:hover {
  background-color: #fefefe;
}
#l-header .head-right_mail {
  margin-left: 10px;
}
#l-header .head-right_mail a {
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  color: #fefefe;
}
#l-header .head-right_mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
#l-header .head-right_mail a:hover {
  background: #69c1df;
}

#header_nav {
  width: 750px;
  margin-top: 6px;
}
@media all and (max-width: 900px) {
  #header_nav {
    display: none;
  }
}
#header_nav {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
#header_nav ul {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#header_nav ul li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
#header_nav ul li:hover .dropdown {
  display: block;
}
#header_nav ul li a {
  display: block;
  position: relative;
  line-height: 1.5;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  text-align: center;
  color: #4a4440;
  overflow: hidden;
}
#header_nav ul li a span {
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
  font-family: "Baloo Da 2", cursive;
  position: relative;
  display: block;
  color: #4a4440;
  font-size: 1.3rem;
}
#header_nav ul li a:hover span, #header_nav ul li a.active span {
  color: #e76836;
}
#header_nav .dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 25px;
  z-index: 999;
  padding-top: 30px;
}
#header_nav .dropdown .dropdown-li {
  border-right: 0;
  margin: 0 0 5px;
  background: #e76836;
}
#header_nav .dropdown .dropdown-li:after {
  display: none;
}
#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 160px;
  padding: 12px 8px;
  color: #fefefe;
}
#header_nav .dropdown .dropdown-li.foot_only {
  display: none;
}
#header_nav .dropdown .dropdown-li:hover a {
  background: #d48b47;
}

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

/* swiper
----------------------------------*/
@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}
@keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}
.swiper-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);
}
.swiper-slide.slide2:before {
  background-image: url(../img/2.jpg);
}
.swiper-slide.slide3:before {
  background-image: url(../img/3.jpg);
}

.slide-img {
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
.slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 639px) {
  .slide-img img {
    -o-object-position: 30% 50%;
       object-position: 30% 50%;
  }
}
@media all and (max-width: 1025px) {
  .slide-img {
    height: 88vh;
  }
}
@media screen and (max-width: 890px) and (orientation: landscape) {
  .slide-img {
    height: 50vw;
  }
}
@media all and (max-width: 639px) {
  .slide-img {
    height: 50vh;
  }
}

#slideshow {
  position: relative;
  width: 100%;
  margin: 0 auto;
  margin-top: -50px;
}
@media all and (max-width: 900px) {
  #slideshow {
    margin-top: 115px;
    width: 93%;
  }
}

#slide-wrap {
  position: relative;
}

#catch {
  z-index: 1;
  position: absolute;
  left: 2%;
  bottom: 2%;
  top: auto;
  opacity: 0;
  width: 600px;
  pointer-events: none;
}
#catch.on {
  opacity: 1;
  -webkit-transition: 2s opacity ease;
  transition: 2s opacity ease;
}
@media all and (max-width: 1367px) {
  #catch {
    width: 450px;
    bottom: 1%;
  }
}
@media all and (max-width: 900px) {
  #catch {
    width: 350px;
  }
}
@media all and (max-width: 639px) {
  #catch {
    width: 56%;
    left: 3%;
    bottom: 0%;
  }
}

#scrolldown {
  position: absolute;
  right: 15px;
  bottom: 0;
  color: #f6eee9;
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  -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: #f6eee9;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#scrolldown:after {
  width: 8px;
  height: 8px;
  background: rgba(246, 238, 233, 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: 900px) {
  #scrolldown {
    display: none;
  }
}

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

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}
/* contact_bnr
----------------------------------*/
.btn a {
  position: relative;
  display: block;
  max-width: 350px;
  margin-top: 40px, 20px;
  margin-left: auto;
  margin-right: auto;
}
.btn.left a {
  margin-left: 0;
}
.btn.white a {
  background: #fff;
  color: #e76836;
}
.btn.white a:hover {
  color: #fff;
  background: #e76836;
}
.btn.white_bd a {
  background: #fff;
  border: 1px solid #fff;
}
.btn.white_bd a:hover {
  color: #fff;
  background: #e76836;
}
.btn.type2 a {
  background: #e76836;
  color: #fff;
}
.btn.type2 a::after {
  color: #fff;
}

.btns a {
  color: #fff;
  border-radius: 30px;
  padding: 8px 24px;
  text-align: center;
  font-size: 0.9em;
  margin-top: 0;
}
.btns a:hover {
  opacity: 0.6;
}
.btns.type2 a {
  margin-top: 10px;
}

.btn-hot a {
  display: block;
  width: 280px;
  margin: 0 auto 15px;
  border: 0.9px solid rgb(207.1696035242, 125.9691629956, 50.3303964758);
  color: #e76836;
  background: #d48b47;
  padding: 10px 0;
  text-align: center;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-hot a:hover {
  background: #4b3718;
  color: #fff;
}
@media all and (max-width: 639px) {
  .btn-hot a {
    width: 90%;
  }
}

.contact_bnr {
  position: relative;
  z-index: 2;
  margin-bottom: 25px;
}
.contact_bnr > li {
  margin: 0 auto;
  margin-bottom: 15px;
}
.contact_bnr > li:last-child {
  margin-bottom: 0;
}
@media all and (max-width: 639px) {
  .contact_bnr > li {
    width: 100%;
    margin: 0 auto 10px;
  }
  .contact_bnr > li:not(:last-child) {
    border-right: 0;
    margin-bottom: 20px;
  }
}
.contact_bnr > li .bnr_free {
  border: 1px solid #d48b47;
  font-size: 3rem;
  line-height: 1;
  font-family: "Concert One", cursive;
  font-weight: 400;
  font-weight: 600;
}
.contact_bnr > li .bnr_free:before {
  content: "Tel.";
  font-size: 1.4rem;
  letter-spacing: 0;
}
.contact_bnr > li .bnr_free.typ02:before {
  content: "Fax.";
}
.contact_bnr > li .bnr_free:hover {
  background: rgba(212, 139, 71, 0.6);
  color: #fefefe;
}
.contact_bnr > li .bnr_tel {
  letter-spacing: 0.15em;
}
.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
}
.contact_bnr > li .bnr_mobile {
  background: #fefefe;
  color: #1e3965;
}
.contact_bnr > li .bnr_mobile:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3cd";
  font-weight: 900;
}
.contact_bnr > li .bnr_fax {
  padding: 15px 0;
  background: #d48b47;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  font-family: "Concert One", cursive;
  font-weight: 400;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_fax {
    font-size: 1.4rem;
  }
}
.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
  color: #fff;
  font-size: 1.4rem;
  margin-right: 8px;
}
.contact_bnr > li .bnr_fax:hover {
  color: #fff;
  background: rgb(188.0528634361, 113.4449339207, 43.9471365639);
}
.contact_bnr > li .bnr_mail {
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
  padding: 15px 0;
  background: #d48b47;
  color: #fff;
}
@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_mail {
    font-size: 1.4rem;
  }
}
.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f073";
  font-weight: 900;
  color: #fff;
  font-size: 1.4rem;
  margin-right: 8px;
}
.contact_bnr > li .bnr_mail:hover {
  color: #fff;
  background: rgb(188.0528634361, 113.4449339207, 43.9471365639);
}
.contact_bnr > li .bnr_mail2 {
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
  padding: 15px 0;
  background: #d48b47;
  color: #fff;
  font-family: "Mochiy Pop One", sans-serif;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_mail2 {
    font-size: 1.4rem;
  }
}
.contact_bnr > li .bnr_mail2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  color: #fff;
  font-size: 1.4rem;
  margin-right: 8px;
}
.contact_bnr > li .bnr_mail2:hover {
  color: #fff;
  background: rgb(188.0528634361, 113.4449339207, 43.9471365639);
}
.contact_bnr > li a {
  position: relative;
  display: block;
  color: #d48b47;
  width: 90%;
  text-align: center;
  font-weight: 500;
  padding: 10px 0;
  margin: 0 auto;
}
@media all and (max-width: 1025px) {
  .contact_bnr > li a {
    width: 100%;
  }
}
@media all and (max-width: 900px) {
  .contact_bnr > li a {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .contact_bnr > li a {
    width: 100%;
  }
  .contact_bnr > li a:before {
    font-size: 2rem;
  }
}

/* footer
----------------------------------*/
#l-footer {
  position: relative;
  padding-top: 80px;
  color: #fff;
}
#l-footer:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #4a4440;
  background-blend-mode: multiply;
  background-image: url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27710/bg_footer.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.8;
}
@media all and (max-width: 639px) {
  #l-footer:before {
    background-attachment: scroll;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}
#l-footer .inner {
  margin: 0px auto;
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1500px;
  position: relative;
  z-index: 3;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#l-footer .inner .footer-left {
  width: 25%;
  padding: 20px;
  text-align: center;
}
#l-footer .inner .footer-middle {
  padding: 0 20px;
  width: 35%;
  border-right: 1px solid rgba(170, 170, 170, 0.5);
  border-left: 1px solid rgba(170, 170, 170, 0.5);
  font-size: 1.4rem;
}
#l-footer .inner .footer-right {
  width: 35%;
  padding-left: 20px;
}
@media all and (max-width: 900px) {
  #l-footer .inner .footer-left {
    width: 48%;
    padding: 0;
    border-right: 0;
    text-align: center;
  }
  #l-footer .inner .footer-middle {
    width: 48%;
    border-right: 0;
  }
  #l-footer .inner .footer-right {
    width: 90%;
    border-top: 0.9px solid #eee;
    padding: 20px 0 0;
    margin: 20px auto 0;
  }
}
@media all and (max-width: 639px) {
  #l-footer {
    padding-top: 40px;
  }
  #l-footer .inner {
    padding: 10px 15px 30px;
  }
  #l-footer .inner .footer-left,
  #l-footer .inner .footer-middle,
  #l-footer .inner .footer-right {
    width: 100%;
    font-size: 13px;
  }
  #l-footer .inner .footer-middle {
    margin-top: 20px;
    border-left: 0;
  }
  #l-footer .inner {
    /*
    .footer-right {
     height: 200px;
    }*/
  }
}

.inner2 {
  width: calc(100% - 80px);
  margin: 0 auto;
  background: rgb(186.26, 68.5733333333, 22.24);
  padding: 30px 20px 20px;
  position: relative;
  z-index: 2;
  border-radius: 20px 20px 0 0;
}
@media all and (max-width: 900px) {
  .inner2 {
    width: 95%;
  }
}

/* footer_navi
----------------------------------*/
.footer_navi {
  max-width: 1000px;
  margin: 25px auto 20px;
}
.footer_navi ul {
  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;
}
.footer_navi ul li {
  width: 25%;
  text-align: left;
  margin-bottom: 15px;
}
@media all and (max-width: 900px) {
  .footer_navi ul li {
    width: 50%;
  }
}
.footer_navi ul li .dropdown {
  display: none;
}
.footer_navi ul li a {
  color: #fff;
  font-size: 1.4rem;
  position: relative;
  padding-left: 20px;
  font-weight: 600;
  display: inline-block;
  line-height: 1.4;
}
.footer_navi ul li a span {
  display: none;
}
.footer_navi ul li a:before {
  content: "";
  background-color: #d48b47;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.7em;
  left: 0;
}
.footer_navi ul li a:hover {
  color: #e76836;
}

.flogo {
  text-align: center;
  width: 90%;
  margin: 0 auto 20px;
}
.flogo img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media all and (max-width: 639px) {
  .flogo {
    width: 80%;
  }
}

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

.copyright {
  font-size: 1.2rem;
  position: relative;
  z-index: 4;
  color: #fff;
}
@media all and (max-width: 900px) {
  .copyright {
    font-size: 12px;
    padding-bottom: 50px;
  }
}

/*----------------------------------
 top-contents
----------------------------------*/
.top-service {
  margin: 40px auto 0;
}
.top-service .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 40px;
}
.top-service .inner .top-service-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 80%;
}
.top-service .inner .top-service-img .img01,
.top-service .inner .top-service-img .img02 {
  width: 48%;
}
.top-service .inner .top-service-img .img01 img,
.top-service .inner .top-service-img .img02 img {
  width: 100%;
  height: 305px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 42%;
     object-position: 50% 42%;
}
@media all and (max-width: 639px) {
  .top-service .inner .top-service-img .img01 img,
  .top-service .inner .top-service-img .img02 img {
    height: 200px;
  }
}
.top-service .inner .top-service-img .img01 img + img,
.top-service .inner .top-service-img .img02 img + img {
  margin-top: 8%;
}
.top-service .inner .top-service-img .img02 {
  margin-top: 40px;
}
.top-service .inner .top-service-txt {
  width: 100%;
  padding: 0;
}
.top-service .inner .top-service-txt p + p {
  margin-top: 15px;
}
@media all and (max-width: 900px) {
  .top-service .inner {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
  .top-service .inner .top-service-img {
    width: 100%;
    margin-bottom: 30px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .top-service .inner .top-service-img .img02 {
    max-width: 350px;
  }
  .top-service .inner .top-service-txt {
    width: 100%;
    margin: auto;
    padding: 0 10px;
  }
  .top-service .inner .top-service-txt p + p {
    margin-top: 10px;
  }
}
@media all and (max-width: 639px) {
  .top-service .inner {
    max-width: 100%;
  }
  .top-service .inner .top-service-img .img02 {
    margin-top: 20px;
  }
}

.deco {
  position: relative;
}
.deco:before, .deco:after {
  position: absolute;
  content: "";
  width: 10%;
  height: 100%;
  top: 0;
  opacity: 0.2;
}
@media all and (max-width: 639px) {
  .deco:before, .deco:after {
    width: 30%;
  }
}
.deco:before {
  left: 0;
  background: url(../img/deco-left.png) repeat-y center left/contain;
}
@media all and (max-width: 639px) {
  .deco:before {
    background-repeat: no-repeat;
    background-position: left top;
  }
}
.deco:after {
  right: 0;
  background: url(../img/deco-right.png) repeat-y center right/contain;
}
@media all and (max-width: 639px) {
  .deco:after {
    background-repeat: no-repeat;
    background-position: right bottom;
  }
}

.lead01 {
  text-align: center;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.15em;
  margin-top: -30px;
  margin-bottom: 25px;
  color: #fdfed6;
}
.lead01 span {
  border-bottom: 0.9px solid #d48b47;
}
@media all and (max-width: 639px) {
  .lead01 {
    font-size: 1.4rem;
    margin-top: -20px;
  }
}
.lead01.type1 {
  margin: 0 auto 25px;
  color: #4b3718;
}

/* --news--
----------------------------------*/
.news-list li {
  padding: 4px 4px 6px;
  border-bottom: 0.9px solid #ddd;
}
.news-list li a {
  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;
  color: rgb(228.28, 86.8866666667, 31.22);
}
.news-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.news-list li .data {
  font-size: 1.3rem;
  color: #fff;
  padding: 4px 8px;
  background: #d48b47;
}
@media all and (max-width: 639px) {
  .news-list li .data {
    font-size: 12px;
  }
}
.news-list li .txt {
  margin-left: 20px;
  text-decoration: underline;
}
@media all and (max-width: 900px) {
  .news-list li {
    display: block;
  }
  .news-list li .txt {
    margin: 5px 0 0;
    display: block;
  }
}

.news-box {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 900px) {
  .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: 10px;
  }
}

.news-title {
  text-align: center;
  margin-bottom: 60px;
  color: #4b3718;
  position: relative;
}
.news-title span {
  display: block;
}
.news-title .eng {
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  color: #d48b47;
  position: relative;
  font-size: 1.8rem;
}
.news-title .ja {
  position: relative;
}
@media all and (max-width: 639px) {
  .news-title {
    margin-bottom: 30px;
  }
  .news-title .eng {
    font-size: 2.4rem;
  }
  .news-title .ja {
    font-size: 1.4rem;
  }
}

.news-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 80px;
}
@media all and (max-width: 639px) {
  .news-right {
    width: 100%;
    margin: 10px 0 0;
  }
}

/* menu-btn-list
----------------------------------*/
.top-menu-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;
  margin-bottom: 30px;
}
@media all and (max-width: 1025px) {
  .top-menu-bnr {
    width: 85%;
    margin: 0 auto 30px;
  }
}
@media all and (max-width: 639px) {
  .top-menu-bnr {
    width: 75%;
  }
}
.top-menu-bnr li {
  width: 23.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: 10px;
  left: 10px;
  border: 0.9px solid #1e3965;
}
.top-menu-bnr li a:hover .top-menu-img img {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
  opacity: 0.7;
}
.top-menu-bnr li a:hover .top-menu-title {
  background: #d48b47;
}
.top-menu-bnr li a:hover .top-menu-title .eng {
  color: #fefefe;
}
.top-menu-bnr li a:hover .top-menu-title {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media all and (max-width: 1025px) {
  .top-menu-bnr li {
    width: 48%;
    margin-bottom: 30px;
  }
}
@media all and (max-width: 639px) {
  .top-menu-bnr li {
    width: 100%;
    margin-bottom: 30px;
  }
}
.top-menu-bnr .top-menu-img {
  width: 100%;
  height: 300px;
  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.2s ease-in;
  transition: all 0.2s ease-in;
  display: block;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .top-menu-bnr .top-menu-img {
    height: 230px;
  }
}
.top-menu-bnr .top-menu-title {
  background: #e76836;
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  -webkit-transition: 0.2s ease-in all;
  transition: 0.2s ease-in all;
  font-size: 1.8rem;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  color: #e76836;
  padding: 10px 15px;
  z-index: 2;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.6;
}
.top-menu-bnr .top-menu-title .eng {
  font-size: 2rem;
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  color: #fdfed6;
}
@media all and (max-width: 639px) {
  .top-menu-bnr .top-menu-title {
    font-size: 1.4rem;
  }
  .top-menu-bnr .top-menu-title .eng {
    font-size: 1.2rem;
  }
}

.top-board {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.top-board .top-board-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 30px;
  -webkit-box-shadow: rgba(74, 68, 64, 0.1) 0px 10px 50px;
          box-shadow: rgba(74, 68, 64, 0.1) 0px 10px 50px;
  padding: 25px;
  border-radius: 20px;
  background: #fefefe;
}
@media all and (max-width: 639px) {
  .top-board {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top-board .top-board-box {
    width: 96%;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    margin: 10px auto 0;
    padding: 15px;
  }
}

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

.single00 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0 0;
  position: relative;
}

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

.single03 {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}

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

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fefefe;
  padding: 35px 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.mbox.transparent {
  background: transparent;
}
.mbox.br-20 {
  border-radius: 20px;
}
@media all and (max-width: 639px) {
  .mbox {
    padding: 20px 10px;
  }
}

.mbox2 {
  background: #fff;
  -webkit-box-shadow: rgba(51, 51, 51, 0.1) 0px 10px 50px;
          box-shadow: rgba(51, 51, 51, 0.1) 0px 10px 50px;
  padding: 35px 30px;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 20px;
}
@media all and (max-width: 639px) {
  .mbox2 {
    padding: 25px 15px;
  }
}

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

.sentence p + p {
  margin-bottom: 20px;
  letter-spacing: 0.3rem;
  line-height: 2;
}
@media all and (max-width: 900px) {
  .sentence p + p {
    letter-spacing: 0.1rem;
  }
}

.img-b {
  border: 0.9px solid #ccc;
}

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

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

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

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

/* mtitle
----------------------------------*/
.mtitle_icon {
  margin-bottom: 30px;
  font-size: 3.4rem;
  color: #e76836;
  text-align: center;
}
.mtitle_icon.sbc {
  color: #d48b47;
}
.mtitle_icon.small {
  font-size: 1.8rem;
}
.mtitle_icon.white {
  color: #fff;
}
.mtitle_icon:before {
  font-family: "Font Awesome 5 Free";
  content: "\f141";
  font-weight: 900;
  display: block;
  margin-right: 0;
  margin-bottom: 5px;
  font-size: 0.8em;
}
@media all and (max-width: 639px) {
  .mtitle_icon:before {
    display: block;
  }
}
.mtitle_icon:after {
  display: none;
}
@media all and (max-width: 639px) {
  .mtitle_icon {
    font-size: 2.6rem;
  }
}

.mtitle {
  margin: 0 auto 45px;
  text-align: center;
}
.mtitle.type1 .eng {
  font-family: "Concert One", cursive;
  font-weight: 400;
  color: #4a4440;
}
.mtitle .eng {
  font-size: 1.8rem;
  color: #d48b47;
  position: relative;
  display: block;
  line-height: 1.3;
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
}
.mtitle .ja {
  font-size: 3.5rem;
  color: #4a4440;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.mtitle.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.mtitle.white span {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.mtitle.white span:after {
  background-color: #eee;
}
.mtitle.white span.ja {
  color: #fff;
  border-bottom-color: #fefefe;
}
.mtitle.black {
  color: #333;
}
.mtitle.black span {
  color: #555;
}
.mtitle.black span:after {
  background-color: #555;
}
.mtitle.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.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.1rem;
    letter-spacing: 0.2em;
  }
  .mtitle .ja {
    font-size: 2.8rem;
  }
}

.mtitle1 {
  text-align: center;
  letter-spacing: 0.2rem;
  margin-bottom: 45px;
}
.mtitle1 .en {
  color: #4a4440;
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  font-size: 2rem;
  font-weight: 500;
  margin-top: 20px;
}
.mtitle1 .ja {
  display: block;
  font-size: 4.5rem;
  font-family: "Mochiy Pop One", sans-serif;
  font-weight: 400;
}
.mtitle1 .ja::after {
  content: " ";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #4a4440;
  margin: 20px auto;
}
@media all and (max-width: 900px) {
  .mtitle1 .en {
    font-size: 1rem;
  }
  .mtitle1 .ja {
    font-size: 2.8rem;
    letter-spacing: -0.01rem;
  }
}

.mtitle2 {
  font-size: 2rem;
  position: relative;
  color: #e76836;
  font-weight: 600;
  position: relative;
  padding-left: 20px;
  margin-bottom: 30px;
  line-height: 1.2;
}
.mtitle2 .eng {
  display: block;
  font-size: 1.8rem;
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  color: #d48b47;
}
.mtitle2:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  background: #e76836;
  border-radius: 4px;
}
@media all and (max-width: 639px) {
  .mtitle2 {
    font-size: 1.6rem;
  }
  .mtitle2 .eng {
    font-size: 1.2rem;
  }
  .mtitle2 .viewbtn {
    font-size: 13px;
  }
}

.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: 10px;
  left: 20px;
  padding-top: 40px;
}
.mtitle3:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 30px;
  top: 0;
  left: 50%;
  background: #e76836;
}
.mtitle3 .ja {
  display: block;
  font-size: 2.4rem;
  line-height: 1.3;
  padding-right: 5px;
  font-weight: 600;
  color: #e76836;
}
.mtitle3 .eng {
  display: block;
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  font-size: 2.2rem;
  color: #d48b47;
}
@media all and (max-width: 639px) {
  .mtitle3 {
    position: relative;
    top: 0;
    left: 0;
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    padding: 0 0 0 25px;
    min-height: auto;
    min-height: inherit;
  }
  .mtitle3:before {
    width: 20px;
    height: 1px;
    top: 50%;
    left: 0;
  }
  .mtitle3 .ja {
    font-size: 1.4rem;
  }
  .mtitle3 .eng {
    font-size: 1.8rem;
  }
}

.mtitle_line {
  position: relative;
  margin-bottom: 20px;
  color: #4b3718;
  border-top: 2px solid rgba(231, 104, 54, 0.6);
  font-size: 1.8rem;
  padding: 6px 10px 16px;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
}
.mtitle_line span {
  font-size: 1.4rem;
  color: #e76836;
  margin-left: 10px;
}
.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  opacity: 0.5;
  background-image: repeating-linear-gradient(-45deg, #e76836, #e76836 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.mtitle_line.type1 {
  border-top: 2px solid rgba(212, 139, 71, 0.6);
}
.mtitle_line.type1:after {
  background-image: repeating-linear-gradient(-45deg, #d48b47, #d48b47 1px, transparent 2px, transparent 5px);
}
@media all and (max-width: 639px) {
  .mtitle_line {
    font-size: 1.4rem;
  }
  .mtitle_line span {
    font-size: 12px;
  }
}

.mtitle4 {
  font-weight: 600;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  color: #4b3718;
  margin-bottom: -10px;
}
.mtitle4 span {
  position: relative;
  display: inline-block;
  z-index: 3;
  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: #e76836;
}
.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: #ffdf2c;
}
@media all and (max-width: 639px) {
  .mtitle4 {
    font-size: 1.4rem;
  }
}
@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 #e76836;
  margin: 8px 0 15px;
  font-size: 1.3em;
  line-height: 1.4;
  text-align: left;
}
.mtitle_sub .hissu {
  color: #fff;
  background: rgb(236.44, 138.2266666667, 99.56);
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
}
.mtitle_sub:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #d48b47;
}

.mtitle_box {
  background: rgba(212, 139, 71, 0.7);
  color: #fff;
  font-size: 1.8rem;
  position: relative;
  padding: 10px 10px 10px 20px;
  margin-bottom: 25px;
  font-weight: 600;
  border-radius: 30px;
}
.mtitle_box.eng {
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
}
.mtitle_box span {
  font-weight: normal;
  font-size: 14px;
  padding-left: 10px;
}
.mtitle_box {
  /*
  &:before {
   position: absolute;
   @include awesome(\f5bb);
   display: block;
   right: -2px;
   top: 50%;
   transform: translateY(-50%) rotate(-90deg);
   color: #fff;
  }*/
}
@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.5rem;
  }
}

.mtitle_box2 {
  background: #e76836;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.1rem;
  -webkit-box-shadow: 0 8px 8px rgba(231, 104, 54, 0.2);
          box-shadow: 0 8px 8px rgba(231, 104, 54, 0.2);
  padding: 15px 10px 15px 20px;
  margin-bottom: 25px;
}
.mtitle_box2.sbc {
  -webkit-box-shadow: 0 8px 8px rgba(212, 139, 71, 0.2);
          box-shadow: 0 8px 8px rgba(212, 139, 71, 0.2);
  background: #d48b47;
}
.mtitle_box2 .small-cap {
  font-weight: normal;
  font-size: 14px;
}
.mtitle_box2:before {
  background-color: #fff;
  content: "";
  display: block;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
  position: absolute;
  bottom: -10px;
  right: -150px;
  width: 300px;
  height: 280px;
}
@media all and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 15px;
    line-height: 1.5;
    padding: 10px 10px 10px 15px;
    padding-right: 40px;
  }
  .mtitle_box2 span {
    font-size: 12px;
  }
  .mtitle_box2:before {
    width: 215px;
    right: -170px;
  }
}

.mtext1 {
  font-size: 2.2rem;
  line-height: 1.6;
}
.mtext1 .eng {
  display: block;
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  color: #4b3718;
  line-height: 1.4;
  font-size: 1.5rem;
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.7rem;
    line-height: 2;
  }
}

.mtext2 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 1.6;
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 1.8rem;
  }
}

.mtext3 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.4rem;
  font-weight: 900;
}
.mtext3 span {
  font-size: 3.6rem;
  color: red;
}
@media all and (max-width: 639px) {
  .mtext3 {
    font-size: 1.4rem;
  }
  .mtext3 span {
    font-size: 2rem;
  }
}

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

/* btn
----------------------------------*/
.btn-instagram a {
  display: block;
  width: 300px;
  text-align: center;
  margin: 25px auto 0;
  padding: 15px 10px;
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  background: #ff9807;
  font-size: 1.8rem;
  color: #fff;
  -webkit-transition: background 0.2s ease-in;
  transition: background 0.2s ease-in;
}
.btn-instagram a i {
  display: inline-block;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 0.9px solid #fff;
}
.btn-instagram a:hover {
  background: #e76836;
}
@media all and (max-width: 639px) {
  .btn-instagram a {
    width: 80%;
    font-size: 1.4rem;
  }
}

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

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

.pdf-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-left: auto;
  margin-right: auto;
}
.pdf-btn.row1 {
  grid-template-columns: repeat(1, 1fr);
}
.pdf-btn.row1 li {
  width: 55%;
}
.pdf-btn li {
  width: 100%;
  margin: 0 auto;
}
.pdf-btn li a {
  display: block;
  color: #4b3718;
  background: transparent;
  border: 1px solid #4b3718;
  border-radius: 5px;
  text-align: center;
  padding: 10px;
}
.pdf-btn li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1c1";
  font-weight: 900;
  margin-right: 8px;
  color: #832d3a;
}
.pdf-btn li a:hover {
  background: #4b3718;
  color: #fff;
}
.pdf-btn li a:hover:before {
  color: #fff;
}
@media all and (max-width: 900px) {
  .pdf-btn {
    gap: 5px;
  }
  .pdf-btn li a {
    padding: 5px;
  }
}
@media all and (max-width: 639px) {
  .pdf-btn {
    grid-template-columns: 1fr;
  }
}

.btn01 a {
  background: #fefefe;
  text-align: center;
  width: 300px;
  margin: 15px auto;
  color: #e76836;
  display: block;
  padding: 8px 5px;
  font-weight: 600;
  border: 1px solid #e76836;
  border-radius: 35px;
}
.btn01 a:hover {
  background: #e76836;
  color: #fefefe;
}
.btn01.mail {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.btn01.mail a {
  background: #ffdf2c;
  margin: 15px auto 25px;
}
.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
@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;
  border: 0.9px solid #e76836;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  color: #e76836;
  background: #f1f1f1;
}
.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 50px;
  height: 1px;
  background-color: #e76836;
  -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: 90%;
  }
  .btn02 a {
    font-size: 1.2rem;
  }
}

/* news
----------------------------------*/
.news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  letter-spacing: 0;
  line-height: 1.7;
}
.news dt {
  width: 7em;
  padding: 3px 5px;
  background: #f0f0f0;
  text-align: center;
  color: #4b3718;
}
.news dd {
  padding: 5px;
  background: #fff;
  width: calc(100% - 8.5em);
  margin-left: 8px;
}
.news dt:not(:last-child),
.news dd:not(:last-child) {
  margin-bottom: 7px;
}

.news-bl {
  overflow: hidden;
}
.news-bl dt {
  float: left;
  width: 8em;
  padding: 5px;
  line-height: 1.3;
  color: #e76836;
  text-align: center;
  border: 1px solid #e76836;
  border-radius: 30px;
  background: rgb(255, 244, 239);
  font-size: 1.3rem;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    font-size: 13px;
  }
}
.news-bl dd {
  padding: 0 0 12px 9.2em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px;
}
.news-bl dd a {
  color: #333;
  background-image: -webkit-gradient(linear, left top, right top, from(#e76836), to(#4a4440));
  background-image: linear-gradient(to right, #e76836, #4a4440);
  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: 500;
}
.news-bl dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    float: none;
  }
  .news-bl dd {
    padding: 8px 5px;
  }
}

.profile-dl dt,
.profile-dl dd {
  letter-spacing: 0;
}
.profile-dl dt {
  color: #e76836;
}
.profile-dl dd {
  margin: 4px 0 12px;
}
@media all and (max-width: 639px) {
  .profile-dl {
    font-size: 13px;
  }
}

.news-bl2 li {
  border-top: 1px solid rgba(212, 139, 71, 0.5);
}
.news-bl2 li:last-child {
  border-bottom: 1px solid rgba(212, 139, 71, 0.5);
}
.news-bl2 li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 40px 25px 0;
  color: #d48b47;
  font-weight: 600;
}
.news-bl2 li a:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  top: 50%;
  right: 20px;
  border-top: 1px solid #d48b47;
  border-right: 1px solid #d48b47;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.news-bl2 li a:hover:after {
  right: 10px;
}
.news-bl2 .day {
  font-weight: 500;
  font-size: 15px;
  margin: 0 30px 0 0;
  font-family: "Concert One", cursive;
  font-weight: 400;
}

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

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 1;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27710/p00.webp) no-repeat center/cover;
  overflow: hidden;
}
.page-title.type01 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27710/p01.webp) no-repeat center/cover;
}
.page-title.type02 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27710/p02.webp) no-repeat 50% 68%/cover;
}
.page-title.type03 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27710/p03.webp) no-repeat center/cover;
}
.page-title.type04 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27710/p04.webp) no-repeat 50% 14%/cover;
}
.page-title.type05 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27710/p05.webp) no-repeat 50% 55%/cover;
}
.page-title.type06 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27710/p06.webp) no-repeat center/cover;
}
.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: -webkit-gradient(linear, left bottom, right top, from(rgba(232, 212, 185, 0.1)), to(#72727b));
  background-image: linear-gradient(to right top, rgba(232, 212, 185, 0.1), #72727b);
  opacity: 0.6;
}
.page-title .inner {
  margin: 0 auto;
  padding: 170px 0 120px;
  max-width: 1200px;
  overflow: hidden;
}
.page-title .inner .page-lead:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 70px;
  top: -70px;
  left: 50%;
  background: #fff;
}
@media all and (max-width: 639px) {
  .page-title .inner .page-lead:before {
    height: 35px;
    top: -35px;
  }
}
.page-title .inner .page-lead {
  color: #fefefe;
  text-align: center;
  font-size: 2rem;
  position: relative;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  letter-spacing: 0.2em;
  font-weight: 500;
}
.page-title .inner .page-lead .eng {
  display: block;
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  font-size: 5rem;
  color: #fff;
}
@media all and (max-width: 639px) {
  .page-title .inner .page-lead {
    font-size: 1.5rem;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  .page-title .inner .page-lead .eng {
    font-size: 2.5rem;
  }
}
@media all and (max-width: 900px) {
  .page-title .inner {
    width: 100%;
    padding: 150px 0 80px;
  }
}

.bg-01 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27710/bg-01.webp) no-repeat center/cover;
}

.bg-02 {
  position: relative;
}
.bg-02:before, .bg-02:after {
  position: absolute;
  content: "";
}
.bg-02:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #968a7f;
}
.bg-02:after {
  top: 100%;
  left: 50%;
  margin-left: -60px;
  border: 60px solid transparent;
  border-top: 60px solid #968a7f;
}
@media all and (max-width: 900px) {
  .bg-02:after {
    margin-left: -30px;
    border: 30px solid transparent;
    border-top: 30px solid #968a7f;
  }
}

.bg-03 {
  background: rgba(255, 126, 6, 0.2196078431);
}

.bg-wood {
  position: relative;
}
.bg-wood:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-wood.png);
  opacity: 0.6;
}

.bg-texture {
  position: relative;
}
.bg-texture:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/texture.png);
  opacity: 0.4;
}

.bg-pattern {
  position: relative;
}
.bg-pattern:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/patter01.png);
  opacity: 0.1;
}

.bg-pattern02 {
  position: relative;
  padding: 30px 0;
}
.bg-pattern02:before {
  position: absolute;
  content: "";
  width: 15%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/pattern02.png) no-repeat left top/contain;
  opacity: 0.3;
}
@media all and (max-width: 639px) {
  .bg-pattern02:before {
    top: auto;
    bottom: 0;
    background-position: left bottom;
  }
}

.bg-base {
  position: relative;
}
.bg-base:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  width: calc(100% - 80px);
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: rgba(255, 224, 59, 0.3);
}
@media all and (max-width: 1025px) {
  .bg-base:before {
    width: 100%;
  }
}
.bg-base .inner {
  position: relative;
  z-index: 3;
}
.bg-base.type1 {
  background: transparent;
  position: relative;
}
.bg-base.type1:before {
  background: #e76836;
  opacity: 0.3;
}
.bg-base.type2 .inner {
  position: relative;
  z-index: 3;
}
.bg-base.type2:before {
  background: url(../img/bg-wood.png);
  opacity: 0.6;
}
.bg-base.type3:before {
  position: absolute;
  content: "";
  left: auto;
  top: auto;
  right: 0;
  bottom: 0;
  width: 90%;
  height: 85%;
  z-index: -1;
  -webkit-transform: none;
          transform: none;
  background: #69c1df;
  opacity: 0.2;
}

.bg-brown {
  background: #392a1e;
  color: #fff;
}

.bg-green {
  background: rgba(212, 139, 71, 0.3);
}

.bg-gray {
  position: relative;
  background: rgba(240, 241, 237, 0.5);
}
.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%, #f0f1ed), to(#f0f1ed));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #f0f1ed 50.1%, #f0f1ed 100%);
}

.bg-gray2 {
  position: relative;
  margin-bottom: 60px;
}
.bg-gray2:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 90%;
  height: 85%;
  z-index: -1;
  background: #f0f1ed;
}
.bg-gray2.type1:before {
  height: 100%;
}

.bg-beige2 {
  position: relative;
  margin-bottom: 40px;
}
.bg-beige2:before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 75%;
  height: 100%;
  z-index: -1;
  opacity: 0.8;
  background: #fdfed6;
}
@media all and (max-width: 639px) {
  .bg-beige2:before {
    width: 85%;
  }
}

.bg-999 {
  background: #888;
}

.bg-blue {
  background: #d7ebed;
}
.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%, rgb(221.6607929515, 165.0616740088, 112.3392070485)), to(rgb(221.6607929515, 165.0616740088, 112.3392070485)));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, rgb(221.6607929515, 165.0616740088, 112.3392070485) 50.1%, rgb(221.6607929515, 165.0616740088, 112.3392070485) 100%);
}

.bg-beige {
  background: -webkit-gradient(linear, left top, right top, from(rgba(253, 254, 214, 0.7)), to(rgba(253, 254, 214, 0.4)));
  background: linear-gradient(to right, rgba(253, 254, 214, 0.7), rgba(253, 254, 214, 0.4));
}

.bg-base2 {
  background: rgba(75, 55, 24, 0.5);
}

.bg-base3 {
  background: rgba(231, 104, 54, 0.2);
}

.bg-base4 {
  background: #fff;
}

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border: 1px solid #ddd;
  background-color: #fff;
  width: 12.5%;
}
.tbl th {
  color: #4a4440;
  background: #f0f1ed;
}
.tbl th span {
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .tbl th span {
    font-size: 0.9rem;
  }
}
.tbl .cell01 {
  width: 20%;
}
@media all and (max-width: 639px) {
  .tbl th {
    text-align: left;
  }
  .tbl th,
  .tbl td {
    padding: 5px;
    font-size: 1rem;
    text-align: center;
  }
}

.tbl_new {
  margin: 0 auto;
  width: 100%;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 15px 10px;
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .tbl_new tr th,
  .tbl_new tr td {
    font-size: 13px;
  }
}
.tbl_new tr th {
  font-weight: 600;
  width: 25%;
  color: #333;
  text-align: left;
  padding-left: 30px;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .tbl_new tr th {
    width: 25%;
    padding-left: 10px;
  }
}
.tbl_new tr:nth-child(odd) th, .tbl_new tr:nth-child(odd) td {
  background: rgba(212, 139, 71, 0.2);
}

.tbl-border {
  width: 100%;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.tbl-border th,
.tbl-border td {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
  font-size: 1.5rem;
}
@media all and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px;
    font-size: 1.2rem;
  }
}
.tbl-border th {
  width: 25%;
  color: rgb(209.04, 76.96, 24.96);
  text-align: left;
  border-bottom-color: #e76836;
  font-weight: 600;
}
.tbl-border th.th-1 {
  width: 45%;
}
@media all and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

.price {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #ff9807;
}
@media all and (max-width: 639px) {
  .price {
    font-size: 1.4rem;
  }
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.company th,
.company td {
  padding: 10px 10px;
  vertical-align: middle;
}
.company th {
  text-align: left;
  width: 25%;
  position: relative;
  background: #d48b47;
  color: #fff;
  font-weight: 600;
}
.company th::after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #f9f9f9;
  border-width: 10px;
  border-left-color: #d48b47;
  margin-top: -10px;
}
.company td {
  background: #f9f9f9;
  padding-left: 20px;
}

.tbl0 {
  width: 100%;
}
.tbl0 th,
.tbl0 td {
  padding: 3px 5px;
  border: 0;
}
.tbl0 th {
  padding-left: 0;
  font-weight: normal;
  background: none;
  width: 25%;
  color: #111;
}
.tbl0 th:after, .tbl0 th:before {
  display: none;
}
@media all and (max-width: 639px) {
  .tbl0 th {
    width: 40%;
  }
}

/* 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%;
}
@media all and (max-width: 639px) {
  .ggmap {
    padding-bottom: 60%;
  }
}

/* list
----------------------------------*/
.list_common li {
  padding-bottom: 5px;
  padding-left: 1rem;
  margin-bottom: 5px;
  border-bottom: 1px dotted #cccccc;
}
.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.list_policy li {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  padding: 15px 5px 15px 40px;
  font-weight: 600;
  position: relative;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
}
@media all and (max-width: 900px) {
  .list_policy li {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .list_policy li {
    font-size: 1.7rem;
  }
}
.list_policy li:not(:last-child) {
  margin-bottom: 5px;
  border-bottom: 1px solid #eee;
}
.list_policy li.type1:before {
  position: absolute;
  content: "";
  width: 25px;
  height: 1px;
  top: 25%;
  left: 0;
  background: #d48b47;
}
@media all and (max-width: 639px) {
  .list_policy li.type1:before {
    top: 19%;
  }
}
@media all and (max-width: 480px) {
  .list_policy li.type1:before {
    top: 13%;
  }
}
.list_policy li:before {
  position: absolute;
  content: "";
  width: 25px;
  height: 1px;
  top: 50%;
  left: 0;
  background: #d48b47;
}
.list_policy li span {
  display: block;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
}
@media all and (max-width: 900px) {
  .list_policy li span {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .list_policy li span {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}
.list_policy li span {
  letter-spacing: 0.2rem;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  .list_policy {
    padding: 15px;
  }
}

.list_check2 {
  margin-bottom: 10px;
}
.list_check2 li {
  padding: 4px 8px;
  font-weight: 600;
}
.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 8px;
  color: #d48b47;
}
.list_check2 li {
  margin-bottom: 4px;
  border-bottom: 2px solid #ddd;
}
.list_check2.type01 > li {
  padding: 10px;
  border-bottom: none;
  font-size: 1.8rem;
}
@media all and (max-width: 639px) {
  .list_check2.type01 > li {
    font-size: 1.3rem;
  }
}

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

.list-inline.type1 {
  padding: 15px;
  border: 0.9px solid #fff;
  margin-bottom: 20px;
}
.list-inline.type1 li:not(:last-of-type):after {
  color: #fff;
}
.list-inline li {
  display: inline-block;
  padding: 3px;
}
.list-inline li:not(:last-of-type):after {
  content: "/";
  margin: 0 5px;
  color: #e76836;
  font-weight: normal;
}

.spa-flow {
  counter-reset: number;
  list-style: none;
  padding: 10px;
  background: rgba(212, 139, 71, 0.1);
}
.spa-flow.type1 {
  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;
}
.spa-flow.type1 > li {
  width: 48%;
}
.spa-flow > li {
  position: relative;
  padding: 5px 8px 8px 3.5em;
  letter-spacing: 0.1rem;
}
.spa-flow > li:not(:last-child) {
  margin-bottom: 7px;
}
.spa-flow > li:before {
  counter-increment: number;
  position: absolute;
  left: 0;
  top: 0;
  content: counter(number);
  background: rgba(212, 139, 71, 0.6);
  display: block;
  width: 1.8em;
  height: 1.8em;
  text-align: center;
  font-family: "Concert One", cursive;
  font-weight: 400;
  font-size: 2.2rem;
  color: #e76836;
  line-height: 1.8em;
  border-radius: 100%;
}
@media all and (max-width: 639px) {
  .spa-flow > li:before {
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    font-size: 1.6rem;
  }
}
.spa-flow > li .next {
  display: block;
}
.spa-flow > li .next:before {
  font-family: "Font Awesome 5 Free";
  content: "\f101";
  font-weight: 900;
  margin-right: 5px;
  color: #d48b47;
}

.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;
  color: #333;
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-weight: 600;
  font-size: 1.8rem;
  border-bottom: 2px solid #d48b47;
}
.ol-list li .small {
  font-size: 1.5rem;
  font-weight: 400;
  display: block;
}
.ol-list li .next {
  color: #832d3a;
  display: inline-block;
}
.ol-list li .next:before {
  font-family: "Font Awesome 5 Free";
  content: "\f101";
  font-weight: 900;
  margin-right: 5px;
  color: #d48b47;
}
.ol-list li:before {
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  text-align: center;
  color: #e76836;
  font-family: "Concert One", cursive;
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.3;
  margin-right: 10px;
  border-radius: 100%;
}
@media all and (max-width: 639px) {
  .ol-list li {
    font-size: 1.3rem;
  }
  .ol-list li span {
    font-size: 0.9em;
  }
  .ol-list li:before {
    font-size: 1.8rem;
  }
}

.list_disc li {
  padding: 3px 0 3px 20px;
  position: relative;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4rem;
}
.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
}
.list_disc li:before {
  position: absolute;
  content: "●";
  top: 8px;
  left: 0;
  font-size: 10px;
  color: #d48b47;
}
.list_disc li.brown_disc:before {
  color: #4b3718;
}
@media all and (max-width: 639px) {
  .list_disc li {
    font-size: 13px;
  }
}
.list_disc.type01 li:not(:last-of-type) {
  border-bottom: 1px solid #e8d4b9;
}
.list_disc.type01 li:before {
  color: #e76836;
}

.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: #fdfed6;
  color: #4b3718;
  font-weight: 600;
  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: #f1f1f1;
  border: 1px solid rgb(209.04, 76.96, 24.96);
  color: rgb(209.04, 76.96, 24.96);
}
.list-btn.type1 li a:hover {
  background: rgb(209.04, 76.96, 24.96);
  color: #fefefe;
}
.list-btn.type1 li a {
  /*
  &:before {
   @include awesome(\f13a);
   margin-right: 5px;
  }*/
}

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

.blog-wrap,
.blog-wrap2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.blog-wrap *,
.blog-wrap2 * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.blog-wrap > li,
.blog-wrap2 > li {
  width: 24%;
  margin: 0 0.5% 20px 0.5%;
  padding: 15px;
  background: #fefefe;
  position: relative;
  border: 1px solid #e76836;
}
@media all and (max-width: 1025px) {
  .blog-wrap > li,
  .blog-wrap2 > li {
    width: 49%;
  }
}
.blog-wrap > li > a,
.blog-wrap2 > li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.blog-wrap > li > a:hover ~ .blog-img img,
.blog-wrap2 > 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,
  .blog-wrap2 > li {
    width: 90%;
    margin: 0 auto 10px;
  }
}

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

.blog-detail {
  padding-top: 10px;
}

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

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

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

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

.blog-date2 {
  color: rgb(186.26, 68.5733333333, 22.24);
  font-size: 0.9em;
  margin-bottom: 5px;
  margin-right: 5px;
}
.blog-date2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}

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

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

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

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

/* etc
----------------------------------*/
.lh34 {
  line-height: 3.4rem;
}

.img_chosei {
  max-width: 800px;
  width: 58%;
}
.img_chosei.type1 {
  max-width: 1000px;
  width: 88%;
}
@media all and (max-width: 639px) {
  .img_chosei.type1 {
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  .img_chosei {
    width: 80%;
  }
}

.img-chosei2 img {
  width: 100%;
  height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 19%;
     object-position: 50% 19%;
}
@media all and (max-width: 639px) {
  .img-chosei2 img {
    height: 300px;
  }
}

.img_s {
  position: relative;
  display: inline-block;
  margin: 20px auto;
  padding: 10px;
  background: #fff;
  border: 1px solid #eee;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.1);
  -webkit-transform: rotate(-1.5deg);
          transform: rotate(-1.5deg);
  -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}
.img_s img {
  display: block;
  border-radius: 2px;
  width: 100%;
  height: auto;
}
.img_s:hover {
  -webkit-transform: translateY(-10px) rotate(0deg) scale(1.02);
          transform: translateY(-10px) rotate(0deg) scale(1.02);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.05);
}
.img_s:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
  pointer-events: none;
}
.img_s::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 30px;
  background: rgba(227, 193, 177, 0.4);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  z-index: 10;
}

.chosei {
  margin-bottom: 60px;
}
@media all and (max-width: 639px) {
  .chosei {
    margin-bottom: 40px;
  }
}

.cut {
  overflow: hidden;
  zoom: 1;
}

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.color1 {
  color: #e76836;
}

.color2 {
  color: #d48b47;
}

.color3 {
  color: #832d3a;
}

.relative {
  position: relative;
}

.num {
  font-weight: 600;
}
.num a {
  color: #e76836;
  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: #ff9807;
}

.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: 600;
  text-decoration: underline;
  color: rgb(209.04, 76.96, 24.96);
}
.txt-link:hover {
  text-decoration: none;
}

.telbnr {
  max-width: 500px;
  margin: 0 auto 30px;
  padding-top: 30px;
}
.telbnr li {
  border: 3px solid #e76836;
  padding: 10px 10px;
  text-align: center;
  border-radius: 50px;
}
.telbnr li a {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  color: #4b3718;
}
.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.telbnr li a:hover {
  color: #e76836;
}
.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: 600;
  font-size: 1.8rem;
  color: #4b3718;
  margin-top: -30px;
}
.telbnr-ttl span {
  background: #fdfed6;
  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;
  text-align: center;
}
.breadcrumb.bg_white {
  max-width: 100%;
  padding: 20px;
  margin: 0;
  background-color: #fff;
}
.breadcrumb li {
  display: inline;
  color: #aaa;
}
.breadcrumb li a {
  color: #e76836;
}
.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: 500;
}
.form dl dt span {
  color: #fff;
  background: #e76836;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
  position: relative;
  top: -2px;
}
.form dl dt span.nini {
  background: rgba(102, 102, 102, 0.5);
  color: #fff;
}
.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: 15px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  background: #f0f0f0;
}
.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 #e76836;
  font-weight: 600;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  background: #e76836;
  border-radius: 25px;
}
.form button:hover {
  background: #fff;
  color: #e76836;
}
.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: #f0f0f0;
  border: 0;
  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: 15px 35px 15px 15px;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}
.form .entypo-down-open-mini:before {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 900;
  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: #e76836;
  font-weight: 700;
}
.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: #e76836;
  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: 25%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #e76836;
  border-bottom: 3px solid #e76836;
  -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 #fefefe;
  -webkit-box-shadow: 0 0 0 6px rgba(231, 104, 54, 0.2);
          box-shadow: 0 0 0 6px rgba(231, 104, 54, 0.2);
  background: #fefefe;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 20px;
}
@media all and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

.shadow {
  -webkit-box-shadow: 0 0 10px rgba(75, 55, 24, 0.1);
          box-shadow: 0 0 10px rgba(75, 55, 24, 0.1);
}

.policy {
  padding: 30px;
  background: rgba(105, 193, 223, 0.1);
}
.policy .policy-box {
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .policy {
    padding: 20px;
  }
}

.mtitle_small {
  position: relative;
  letter-spacing: 0;
  padding-bottom: 4px;
  margin-bottom: 15px;
  color: #d48b47;
  font-weight: 600;
  border-bottom: 1px solid #ccc;
}
.mtitle_small .eng {
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
}
.mtitle_small .genre {
  display: inline-block;
  background: #fff;
  color: #e76836;
  font-size: 1.4rem;
  padding: 0 4px;
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  margin-left: auto;
  text-align: right;
}
.mtitle_small:before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #d48b47;
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media all and (max-width: 639px) {
  .mtitle_small {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

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

.mtitle_small3 {
  position: relative;
  margin-bottom: 10px;
  padding: 10px 20px;
  border-bottom: 1px solid #e76836;
  border-top: 1px solid #e76836;
  color: #d48b47;
  font-weight: 600;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.mtitle_small3:before {
  content: "";
  background-color: #e76836;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.mtitle_small4 {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 2rem;
  padding: 15px 15px 15px 30px;
  margin-bottom: 30px;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-weight: 500;
}
.mtitle_small4:before {
  position: absolute;
  top: 15%;
  left: 8px;
  width: 6px;
  height: 70%;
  content: "";
  background: rgba(231, 104, 54, 0.5);
}
.mtitle_small4.type1:before {
  background: rgba(212, 139, 71, 0.5);
}
@media all and (max-width: 639px) {
  .mtitle_small4 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding: 12px 12px 12px 24px;
  }
}

.mtitle_small5 {
  position: relative;
  text-align: center;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #4b3718;
  margin-bottom: 35px;
}
.mtitle_small5.type1 {
  font-size: 2.8rem;
  margin-bottom: 40px;
}
.mtitle_small5.type1 span {
  color: rgb(209.04, 76.96, 24.96);
  display: block;
  font-size: 2rem;
}
.mtitle_small5.type1:after {
  width: 80px;
}
.mtitle_small5:after {
  position: absolute;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  bottom: -10px;
  height: 2px;
  width: 150px;
  background: #e76836;
}
@media all and (max-width: 639px) {
  .mtitle_small5 {
    font-size: 1.5rem;
  }
  .mtitle_small5.type1 {
    font-size: 1.8rem;
  }
  .mtitle_small5.type1 span {
    font-size: 1.5rem;
  }
}
.mtitle_small5.sbc {
  color: #d48b47;
}
.mtitle_small5.sbc:after {
  background: #d48b47;
}

/* gallery(photobox)
----------------------------------*/
.gallery_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -2%;
}
@media all and (max-width: 639px) {
  .gallery_ul {
    margin-left: auto;
    margin-right: auto;
  }
}
.gallery_ul > li {
  width: 31.33%;
  margin-left: 2%;
  margin-bottom: 4%;
}
.gallery_ul > li .photobox-wrap {
  width: 100%;
  height: 240px;
  text-align: center;
  overflow: hidden;
  background: rgba(212, 139, 71, 0.1);
  margin-bottom: 10px;
}
.gallery_ul > li .photobox-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit:cover;";
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media all and (max-width: 900px) {
  .gallery_ul > li {
    width: 48%;
  }
}
@media all and (max-width: 639px) {
  .gallery_ul > li {
    width: 85%;
    margin: 0 auto 30px;
  }
  .gallery_ul > li .photobox-wrap {
    height: 180px;
  }
}

.comment {
  font-size: 1.4rem;
  letter-spacing: 0;
  padding: 0 5px;
  color: #4b3718;
}
@media all and (max-width: 639px) {
  .comment {
    font-size: 12px;
  }
}

/*photoギャラリー*/
.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gallery li {
  width: 24%;
  margin: 0 1.3333333333% 30px 0;
}
.gallery li:nth-child(4n) {
  margin-right: 0;
}
.gallery li a {
  background: rgba(253, 254, 214, 0.2);
  display: block;
  text-align: center;
  padding: 0px;
  height: 230px;
}
.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;
  letter-spacing: 0;
}

@media all and (max-width: 900px) {
  .gallery li {
    width: 48%;
    margin: 0 2% 20px 0;
  }
  .gallery li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery li a {
    height: 150px;
  }
  .gallery li p {
    font-size: 12px;
  }
}
.list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -50px;
}
.list2.ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (max-width: 639px) {
  .list2 {
    margin-top: -25px;
  }
}
.list2.type1 > li,
.list2.type1 .child {
  background: #fefefe;
  padding: 25px;
}
@media all and (max-width: 639px) {
  .list2.type1 > li,
  .list2.type1 .child {
    padding: 15px;
  }
}
.list2 > li,
.list2 .child {
  width: 48%;
  margin-top: 50px;
}
.list2 > li:nth-child(2n),
.list2 .child:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list2 > li:nth-child(2n),
  .list2 .child:nth-child(2n) {
    margin-left: auto;
  }
}
@media all and (max-width: 639px) {
  .list2 > li,
  .list2 .child {
    width: 100%;
    margin: 25px auto 0;
  }
}

.list2_img {
  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;
}
.list2_img li {
  width: 49%;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
.list2_img li img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  vertical-align: bottom;
}
.list2_img li:hover img {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}
@media all and (max-width: 639px) {
  .list2_img li {
    width: 100%;
    margin-bottom: 15px;
  }
}

.list3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list3.jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list3 > li,
.list3 .child {
  width: 31%;
  position: relative;
  margin: 0 3.495% 30px 0;
}
.list3 > li:nth-child(3n),
.list3 .child:nth-child(3n) {
  margin-right: 0;
}
.list3 > li .promise_img,
.list3 .child .promise_img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 639px) {
  .list3 > li,
  .list3 .child {
    width: 95%;
    margin: 0 auto 30px;
  }
  .list3 > li:nth-child(3n),
  .list3 .child:nth-child(3n) {
    margin-right: auto;
  }
}
.list3.efct > li,
.list3.efct .child {
  border: 1px solid #e76836;
  position: relative;
  border-radius: 10px;
  width: 32%;
  margin: 0 1.3333333333% 25px 0;
}
.list3.efct > li:nth-child(3n),
.list3.efct .child:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 900px) {
  .list3.efct > li,
  .list3.efct .child {
    width: 70%;
    margin: 0 auto 50px;
  }
  .list3.efct > li:nth-child(3n),
  .list3.efct .child:nth-child(3n) {
    margin-right: auto;
  }
}
@media all and (max-width: 639px) {
  .list3.efct > li,
  .list3.efct .child {
    width: 95%;
    margin: 0 auto 50px;
  }
  .list3.efct > li:nth-child(3n),
  .list3.efct .child:nth-child(3n) {
    margin-right: auto;
  }
}
.list3.efct > li .img-box,
.list3.efct .child .img-box {
  width: 100%;
}
.list3.efct > li .img-box img,
.list3.efct .child .img-box img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.list3.efct > li .txt-box,
.list3.efct .child .txt-box {
  padding: 20px;
}
.list3.efct > li .title,
.list3.efct .child .title {
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
  color: #d48b47;
  font-family: "Mochiy Pop One", sans-serif;
}
.list3.efct > li .nmb,
.list3.efct .child .nmb {
  position: absolute;
  top: -10%;
  left: 2%;
  font-size: 6rem;
  font-family: "Concert One", cursive;
  font-weight: 400;
  color: #e76836;
  text-shadow: 2px 2px #fefefe;
}
@media all and (max-width: 639px) {
  .list3.efct > li .nmb,
  .list3.efct .child .nmb {
    font-size: 5rem;
  }
}

.list4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list4 li {
  width: 24%;
  margin: 0 1.3333333333% 25px 0;
}
.list4 li:nth-child(4n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list4 li {
    width: 48%;
    margin-right: 4%;
  }
  .list4 li:nth-child(2n) {
    margin-right: 0;
  }
}

.list3-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.list3-box li {
  position: relative;
  width: 32%;
  text-align: center;
  background: #d48b47;
  color: #fff;
  padding: 20px 15px;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  letter-spacing: 0.15em;
  border-radius: 5px;
  -webkit-animation: float-y 3s ease-in-out infinite;
          animation: float-y 3s ease-in-out infinite;
}
.list3-box li:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.list3-box li:nth-child(2) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.list3-box li:nth-child(3) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.list3-box li:nth-child(odd) {
  background: #e76836;
  top: 20px;
}
@media screen and (max-width: 900px) {
  .list3-box li:nth-child(odd) {
    top: 0;
  }
}
.list3-box li::before, .list3-box li::after {
  position: absolute;
  width: 25px;
  height: 25px;
  content: "";
}
.list3-box li::before {
  top: 5px;
  left: 5px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-radius: 5px 0 0 0;
}
.list3-box li::after {
  bottom: 5px;
  right: 5px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-radius: 0 0 5px 0;
}
.list3-box .pcbr2 {
  display: none;
}
@media all and (max-width: 1025px) {
  .list3-box .pcbr2 {
    display: block;
  }
}
@media all and (max-width: 900px) {
  .list3-box {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .list3-box .pcbr2 {
    display: none;
  }
  .list3-box li {
    width: 100%;
    padding: 15px 10px;
  }
  .list3-box li:not(:last-child) {
    margin-bottom: 10px;
  }
  .list3-box li::before, .list3-box li::after {
    width: 15px;
    height: 15px;
  }
}
@media all and (max-width: 639px) {
  .list3-box {
    max-width: 95%;
  }
}

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

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

.note {
  padding: 15px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.7);
}

.img-cover {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 22%;
     object-position: 50% 22%;
}

.top-content_upper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-content_upper figure {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: auto;
  aspect-ratio: 2.2/1;
  border-radius: 5px;
  overflow: hidden;
}
.top-content_upper .top-content_upper-title {
  width: 20%;
  max-width: 160px;
  padding: 0 10px;
  min-width: 74px;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  text-align: right;
  -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";
  color: #4b3718;
}
.top-content_upper .top-content_upper-title span {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 4rem;
  letter-spacing: 0.15em;
}
@media all and (max-width: 1025px) {
  .top-content_upper figure {
    aspect-ratio: 2/1;
  }
  .top-content_upper .top-content_upper-title {
    max-width: 140px;
    font-size: 2.4rem;
  }
  .top-content_upper .top-content_upper-title span {
    font-size: 3.6rem;
  }
}
@media all and (max-width: 900px) {
  .top-content_upper figure {
    aspect-ratio: 1.8/1;
  }
  .top-content_upper .top-content_upper-title {
    max-width: 120px;
    font-size: 2.2rem;
  }
  .top-content_upper .top-content_upper-title span {
    font-size: 2.8rem;
  }
}
@media all and (max-width: 639px) {
  .top-content_upper figure {
    aspect-ratio: 1.4/1;
  }
  .top-content_upper .top-content_upper-title {
    font-size: 1.3rem;
  }
  .top-content_upper .top-content_upper-title span {
    font-size: 1.8rem;
  }
}

.recruit_flow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.recruit_flow li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 35px;
  padding: 25px;
  background: #ffffff;
  -webkit-box-shadow: 0 0 15px rgba(75, 55, 24, 0.05);
          box-shadow: 0 0 15px rgba(75, 55, 24, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.recruit_flow li:nth-child(2n) {
  margin-right: 0;
}
.recruit_flow li .flow-num {
  color: #d48b47;
  font-size: 3.5rem;
  border-right: 1px solid #d48b47;
  padding-right: 15px;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
}
.recruit_flow li .flow-num span {
  font-size: 1.4rem;
  display: block;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 900;
}
.recruit_flow li .flow-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 35px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.recruit_flow li .mtext1 {
  color: #4b3718;
  border-bottom: 1px solid #d48b47;
  padding-bottom: 4px;
  margin-bottom: 10px;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 2rem;
}
@media all and (max-width: 900px) {
  .recruit_flow li .mtext1 {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .recruit_flow li .mtext1 {
    font-size: 1.45rem;
  }
}
@media all and (max-width: 639px) {
  .recruit_flow li {
    width: 100%;
    margin: 0 0 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruit_flow li .flow-num {
    font-size: 2.2rem;
    text-align: center;
    border-right: 0;
    padding: 0 0 10px;
    border-bottom: 1px solid #d48b47;
  }
  .recruit_flow li .flow-txt {
    margin: 20px 0 0;
    width: 100%;
  }
}

.flow-ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 35px 25px;
  background: rgb(244.5193548387, 235.2032258065, 229.3806451613);
  border-radius: 10px;
}
.flow-ul li a {
  color: rgb(51.8181818182, 38, 16.5818181818);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: underline;
}
.flow-ul li a:hover {
  opacity: 0.6;
}
.flow-ul li:not(:last-child) {
  margin-bottom: 20px;
}
.flow-ul li:nth-child(odd) {
  background: #e76836;
  color: #ffffff;
}
.flow-ul li:nth-child(odd) a {
  color: #ffffff;
}
.flow-ul li:nth-child(odd) .child-num {
  color: #ffffff;
}
.flow-ul li:nth-child(odd) .child-txt h3 {
  color: #ffffff;
}
.flow-ul li:nth-child(odd) .child-icon {
  color: #ffffff;
}
.flow-ul li .child-num {
  width: 16%;
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  text-align: center;
  line-height: 1.3;
  font-size: 2rem;
  color: #e76836;
}
.flow-ul li .child-num span {
  font-family: "Concert One", cursive;
  font-weight: 400;
  display: block;
  font-size: 6rem;
}
.flow-ul li .child-txt {
  width: 60%;
}
.flow-ul li .child-txt h3 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
}
@media all and (max-width: 900px) {
  .flow-ul li .child-txt h3 {
    font-size: 1.85rem;
  }
}
@media all and (max-width: 639px) {
  .flow-ul li .child-txt h3 {
    font-size: 1.6rem;
  }
}
.flow-ul li .child-txt h3 {
  color: #e76836;
  margin-bottom: 5px;
}
.flow-ul li .child-icon {
  width: 20%;
  text-align: center;
  color: #e76836;
  font-size: 5em;
  line-height: 1;
}
@media all and (max-width: 900px) {
  .flow-ul li .child-icon {
    display: none;
  }
}

.flow-dl.type1 dt {
  color: #1e3965;
}
.flow-dl.type1 dt span {
  color: #69c1df;
}
.flow-dl {
  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;
}
.flow-dl .inner {
  width: 48%;
  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;
  padding: 20px;
  background: #fefefe;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 15px rgba(75, 55, 24, 0.05);
          box-shadow: 0 0 15px rgba(75, 55, 24, 0.05);
  margin-bottom: 30px;
}
.flow-dl dt {
  width: 10%;
  color: rgb(186.26, 68.5733333333, 22.24);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  text-align: center;
}
.flow-dl dt span {
  letter-spacing: 0.2rem;
  color: #e76836;
  display: block;
  line-height: 1;
  font-family: "Concert One", cursive;
  font-weight: 400;
  font-size: 4rem;
}
.flow-dl dd {
  width: 85%;
}
@media all and (max-width: 639px) {
  .flow-dl .inner {
    width: 100%;
  }
  .flow-dl dt {
    font-size: 1.2rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 15px;
  }
  .flow-dl dt span {
    font-size: 3rem;
    display: inline-block;
    padding-left: 8px;
  }
  .flow-dl dt {
    width: 100%;
  }
  .flow-dl dt p {
    text-align: center;
    margin-top: 10px;
  }
  .flow-dl dd {
    width: 100%;
  }
}

.flow-dl2 {
  padding: 0 10px;
}
.flow-dl2 .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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  background: #fefefe;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 15px rgba(85, 85, 85, 0.1);
          box-shadow: 0 0 15px rgba(85, 85, 85, 0.1);
}
.flow-dl2 .inner:not(:last-of-type) {
  margin-bottom: 30px;
}
.flow-dl2 dt {
  width: 100%;
  color: #e76836;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  font-family: "Concert One", cursive;
  font-weight: 400;
  font-weight: 400;
  text-align: center;
  border-bottom: 1px solid #e76836;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.flow-dl2 dt span {
  color: #e76836;
  font-size: 4rem;
  display: block;
  font-weight: 600;
  margin-top: -10px;
}
.flow-dl2 dt.co01 {
  color: #d48b47;
  margin-bottom: 0;
  padding-bottom: 0;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: 2.5rem;
}
.flow-dl2 dt.co01 span {
  color: #d48b47;
  font-family: "Concert One", cursive;
  font-weight: 400;
  font-weight: 600;
  font-size: 2.5rem;
}
@media all and (max-width: 639px) {
  .flow-dl2 dt.co01 {
    margin-bottom: 15px;
  }
}
.flow-dl2 dd {
  width: 100%;
}
.flow-dl2.type1 dt {
  width: 15%;
  border-bottom: none;
}
.flow-dl2.type1 dd {
  width: 83%;
  border-left: 1px solid #e76836;
  padding: 0 20px;
}
@media all and (max-width: 639px) {
  .flow-dl2 dt {
    font-size: 1.2rem;
  }
  .flow-dl2 dt span {
    font-size: 2rem;
  }
  .flow-dl2 dt {
    width: 100%;
  }
  .flow-dl2 dd {
    width: 100%;
  }
  .flow-dl2.type1 dt {
    font-size: 1.2rem;
  }
  .flow-dl2.type1 dt span {
    font-size: 2rem;
  }
  .flow-dl2.type1 dt {
    width: 100%;
    border-bottom: 1px solid #e76836;
    border-right: none;
  }
  .flow-dl2.type1 dd {
    width: 100%;
    border-left: none;
  }
}

.feature-dl.type1 dt {
  color: #1e3965;
}
.feature-dl.type1 dt span {
  color: #69c1df;
}
.feature-dl {
  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;
}
.feature-dl .inner {
  width: 31%;
  padding: 20px;
  background: #fefefe;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 15px rgba(85, 85, 85, 0.1);
          box-shadow: 0 0 15px rgba(85, 85, 85, 0.1);
  margin-bottom: 25px;
}
.feature-dl dt {
  color: rgb(186.26, 68.5733333333, 22.24);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  text-align: center;
}
.feature-dl dt span {
  color: #e76836;
  letter-spacing: 0.2rem;
  font-family: "Concert One", cursive;
  font-weight: 400;
  font-size: 3.5rem;
}
.feature-dl dd {
  padding-top: 10px;
  border-top: 0.9px solid #e76836;
}
@media all and (max-width: 639px) {
  .feature-dl .inner {
    width: 100%;
    margin: 0 auto 25px;
  }
  .feature-dl dt {
    font-size: 1.2rem;
  }
  .feature-dl dt span {
    font-size: 1.8rem;
  }
  .feature-dl dt {
    width: 100%;
  }
  .feature-dl dt p {
    text-align: center;
    margin-top: 10px;
  }
}

.more-contents {
  display: none;
  padding: 15px;
  background: #fdfed6;
  margin-top: 20px;
}

.txt1 {
  padding-left: 10px;
}

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

#a01, #a02, #a03, #a04, #a05, #a06, #a07, #a08, #a09, #contact {
  /* 固定ヘッダーの高さ分（例: 80px）を指定 */
  scroll-margin-top: 200px;
}

.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:not(:last-child) {
  margin-right: 20px;
}
@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%;
  }
  .list-center li:not(:last-child) {
    margin: 0 0 15px;
  }
}

.faq {
  margin: 20px auto -20px;
}
.faq dt {
  font-size: 1.8rem;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  margin-bottom: 20px;
  background: #fffdfa;
  color: #4b3718;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 16px;
  padding-left: 36px;
  line-height: 1.6;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.faq dt:before {
  border-radius: 6px;
  content: "Q";
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  position: absolute;
  top: -6px;
  left: -6px;
  text-indent: 0px;
  font-size: 1.6rem;
  line-height: 35px;
  color: #fff;
  background: #e76836;
  width: 35px;
  height: 35px;
  text-align: center !important;
}
@media all and (max-width: 639px) {
  .faq dt {
    font-size: 1.3rem;
  }
  .faq dt:before {
    font-size: 1.4rem;
  }
  .faq dt:after {
    display: none;
  }
}
.faq dt:hover {
  background: rgba(212, 139, 71, 0.2);
}
.faq dt:after {
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
  content: "＋";
  color: #4b3718;
  float: right;
}
.faq dt.active:after {
  font-family: "Font Awesome 5 Free";
  margin-right: 3px;
  content: "ー";
}
.faq dd {
  display: none;
  position: relative;
  margin-bottom: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 16px;
  padding-left: 48px;
  line-height: 2;
  position: relative;
  background: #fff;
}
.faq dd:before {
  content: "A";
  position: absolute;
  top: 0px;
  left: 0px;
  text-indent: 0px;
  font-size: 20px;
  line-height: 35px;
  color: #ff0027;
  width: 35px;
  height: 35px;
  text-align: center !important;
}
.faq:last-child {
  margin-bottom: 0;
}
.faq dt,
.faq dd {
  border-radius: 6px;
}
.faq dt:before,
.faq dd:before {
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
}
.faq b {
  padding: 3px 5px;
  margin: 10px 0;
  line-height: 40px;
  background: #dad2b9;
  font-size: 11px;
}

.faq-dl {
  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;
}
.faq-dl .faq-inner {
  margin-bottom: 20px;
  width: 48%;
  background: #fefefe;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner {
    width: 90%;
    margin: 0 auto 20px;
  }
}
.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
}
.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: "Baloo Da 2", cursive;
  font-weight: 400;
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt:before,
  .faq-dl .faq-inner dd:before {
    font-size: 2.2rem;
  }
}
.faq-dl .faq-inner dt {
  background-image: -webkit-gradient(linear, left top, right top, from(#832d3a), to(#832d3a));
  background-image: linear-gradient(to right, #832d3a, #832d3a);
  color: #fefefe;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 10px 10px 55px;
}
.faq-dl .faq-inner dt:before {
  content: "Q";
  color: #fefefe;
}
.faq-dl .faq-inner dd {
  padding: 20px 20px 20px 55px;
}
.faq-dl .faq-inner dd:before {
  content: "A";
  color: #832d3a;
}

.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: "Baloo Da 2", cursive;
  font-weight: 400;
}
.faq-dl .faq-inner dt {
  margin-bottom: 10px;
  font-weight: 600;
  font-weight: 600;
  color: rgb(209.04, 76.96, 24.96);
}
.faq-dl .faq-inner dt:before {
  content: "Q";
  color: #e76836;
  font-size: 3rem;
  background: rgba(231, 104, 54, 0.2);
}
.faq-dl .faq-inner dd:before {
  content: "A";
  color: #d48b47;
  font-size: 3rem;
  background: rgba(212, 139, 71, 0.2);
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 30px !important;
  right: auto;
  background: rgba(231, 104, 54, 0.7);
}
@media all and (max-width: 639px) {
  .swiper-button-prev,
  .swiper-container-rtl .swiper-button-next {
    left: 10px !important;
  }
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 30px !important;
  left: auto;
  background: rgba(231, 104, 54, 0.7);
}
@media all and (max-width: 639px) {
  .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
    right: 10px !important;
  }
}

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

.point-num {
  position: relative;
  z-index: 2;
  margin: -30px auto 5px;
  line-height: 1;
  color: #111;
  font-family: "Concert One", cursive;
  font-weight: 400;
  font-size: 5rem;
  border-radius: 100%;
  text-align: center;
}
@media all and (max-width: 639px) {
  .point-num {
    font-size: 3rem;
  }
}

.bnr-list {
  text-align: center;
}
@media all and (max-width: 900px) {
  .bnr-list li {
    width: 48%;
    margin-right: 4%;
  }
  .bnr-list li:nth-child(2n) {
    margin-right: 0;
  }
}
.bnr-list a {
  display: block;
  text-align: center;
  background: #fefefe;
  padding: 8px 5px;
  font-size: 1.3rem;
  height: 100%;
}
.bnr-list a img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  height: 45px;
}
@media all and (max-width: 639px) {
  .bnr-list a {
    font-size: 12px;
    line-height: 1.5;
  }
  .bnr-list a img {
    height: 30px;
  }
}
.bnr-list li.bnr-txt {
  font-size: 2rem;
  font-weight: 600;
  line-height: 60px;
  background: #fefefe;
}
@media all and (max-width: 639px) {
  .bnr-list li.bnr-txt {
    font-size: 1.5rem;
  }
}

.sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sns-list.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 15px 0;
}
.sns-list li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  color: #fff;
  display: block;
  background: #d48b47;
  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: 900px) {
  .sns-list li:not(:last-child) {
    margin-right: 8px;
    margin-bottom: 0;
  }
}

.title50.heading,
.title40.heading,
.title32.heading,
.title28.heading,
.title24.heading,
.title22.heading,
.title20.heading,
.title18.heading,
.title16.heading {
  margin-bottom: 30px;
  line-height: 1.6;
}
@media all and (max-width: 900px) {
  .title50.heading,
  .title40.heading,
  .title32.heading,
  .title28.heading,
  .title24.heading,
  .title22.heading,
  .title20.heading,
  .title18.heading,
  .title16.heading {
    margin-bottom: 25px;
    letter-spacing: 0.15em;
  }
}

.title50 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 5rem;
}
@media all and (max-width: 900px) {
  .title50 {
    font-size: 4rem;
  }
}
@media all and (max-width: 639px) {
  .title50 {
    font-size: 3.2rem;
  }
}

.title40 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 4rem;
}
@media all and (max-width: 900px) {
  .title40 {
    font-size: 3.2rem;
  }
}
@media all and (max-width: 639px) {
  .title40 {
    font-size: 2.4rem;
  }
}

.title32 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 3.2rem;
}
@media all and (max-width: 900px) {
  .title32 {
    font-size: 2.6rem;
  }
}
@media all and (max-width: 639px) {
  .title32 {
    font-size: 2rem;
  }
}

.title28 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
}
@media all and (max-width: 900px) {
  .title28 {
    font-size: 2.2rem;
  }
}
@media all and (max-width: 639px) {
  .title28 {
    font-size: 1.8rem;
  }
}

.title24 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
}
@media all and (max-width: 900px) {
  .title24 {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .title24 {
    font-size: 1.7rem;
  }
}
.title24.im {
  font-size: 2.4rem !important;
}
@media all and (max-width: 900px) {
  .title24.im {
    font-size: 2rem !important;
  }
}
@media all and (max-width: 639px) {
  .title24.im {
    font-size: 1.7rem !important;
  }
}

.title22 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
}
@media all and (max-width: 900px) {
  .title22 {
    font-size: 1.85rem;
  }
}
@media all and (max-width: 639px) {
  .title22 {
    font-size: 1.6rem;
  }
}

.title20 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 2rem;
}
@media all and (max-width: 900px) {
  .title20 {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .title20 {
    font-size: 1.45rem;
  }
}

.title18 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
}
@media all and (max-width: 900px) {
  .title18 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .title18 {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}

.title16 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
}
@media all and (max-width: 900px) {
  .title16 {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .title16 {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}

.title-big {
  text-align: center;
}
.title-big .eng {
  display: block;
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  font-size: 6rem;
  color: #e76836;
}
.title-big .ja {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
}
@media all and (max-width: 639px) {
  .title-big .eng {
    font-size: 3.5rem;
  }
  .title-big .ja {
    font-size: 1.4rem;
  }
}

.title01 {
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: rgb(188.0528634361, 113.4449339207, 43.9471365639);
  line-height: 1.4;
}
.title01 .ja {
  font-family: "Mochiy Pop One", sans-serif;
  display: block;
  font-size: 2.4rem;
  color: #e76836;
  font-weight: 400;
}

.title02 {
  margin-bottom: 10px;
}
.title02 span {
  display: inline-block;
}
@media all and (max-width: 639px) {
  .title02 span:not(.lead) {
    display: block;
  }
}
.title02 .lead {
  background: #8fce96;
  display: inline-block;
  margin-right: 4px;
  color: #fff;
  padding: 3px 8px;
  font-weight: 600;
  line-height: 1.3;
}
.title03 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 20px;
}
.title03.type1 {
  color: #e76836;
}
@media all and (max-width: 639px) {
  .title03 {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}

.title04 {
  margin-bottom: 25px;
  position: relative;
  font-size: 1.8rem;
  padding-left: 55px;
  padding-top: 8px;
  color: #4b3718;
}
.title04 .num {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 5rem;
  line-height: 1;
  font-family: "Concert One", cursive;
  font-weight: 400;
  color: rgb(188.0528634361, 113.4449339207, 43.9471365639);
}
@media all and (max-width: 639px) {
  .title04 {
    font-size: 1.3rem;
    padding-left: 50px;
    padding-top: 0;
  }
  .title04 .num {
    font-size: 3rem;
  }
}

.head-border {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
.head-border span {
  font-size: 2rem;
  color: #832d3a;
  letter-spacing: 0.15em;
}
@media all and (max-width: 639px) {
  .head-border span {
    font-size: 1.4rem;
  }
}
.head-border:before, .head-border:after {
  content: "";
  height: 1px;
  width: 10px;
  background-color: #e76836;
}
.head-border:before {
  margin-right: 1em;
}
.head-border:after {
  margin-left: 1em;
}

.slick-prev,
.slick-next {
  background: rgba(255, 255, 255, 0.8);
  width: 35px;
  height: 35px;
  z-index: 20 !important;
  border-radius: 50%;
  border: 1px solid #72727b;
  top: 40%;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.slick-prev:before,
.slick-next:before {
  color: #72727b;
}
.slick-prev:hover,
.slick-next:hover {
  background: #f0f1ed;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

.txt01 {
  font-size: 1.4rem;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .txt01 {
    font-size: 13px;
  }
}

.top-gallery {
  margin: 30px auto;
}
.top-gallery li {
  margin: 0 8px;
}
.top-gallery li a {
  display: block;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 20px !important;
}
.top-gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 639px) {
  .top-gallery li a {
    height: 250px;
  }
}

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

.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.tp {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.column2 .child {
  width: 48%;
}
.column2 .child01 {
  width: 40%;
}
.column2 .child02 {
  width: 55%;
}
.column2 .child03 {
  width: 35%;
}
.column2 .child04 {
  width: 60%;
}
.column2 .child-txt {
  position: absolute;
  width: 50%;
  right: 0;
  padding: 35px 30px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  border-radius: 10px;
}
.column2 .child-txt.type1 {
  right: auto;
  left: 0;
}
.column2 .child-img {
  width: 60%;
  border-radius: 10px;
  overflow: hidden;
}
.column2 .child-img.type1 {
  margin-left: auto;
}
@media all and (max-width: 900px) {
  .column2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .column2 .child,
  .column2 .child01,
  .column2 .child02,
  .column2 .child03,
  .column2 .child04,
  .column2 .child-img {
    width: 100%;
  }
  .column2 .child.bm10,
  .column2 .child01.bm10,
  .column2 .child02.bm10,
  .column2 .child03.bm10,
  .column2 .child04.bm10,
  .column2 .child-img.bm10 {
    margin-bottom: 10px;
  }
  .column2 .child.bm20,
  .column2 .child01.bm20,
  .column2 .child02.bm20,
  .column2 .child03.bm20,
  .column2 .child04.bm20,
  .column2 .child-img.bm20 {
    margin-bottom: 20px;
  }
  .column2 .child.column2-img,
  .column2 .child01.column2-img,
  .column2 .child02.column2-img,
  .column2 .child03.column2-img,
  .column2 .child04.column2-img,
  .column2 .child-img.column2-img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 30px;
  }
  .column2 .child.column2-img2,
  .column2 .child01.column2-img2,
  .column2 .child02.column2-img2,
  .column2 .child03.column2-img2,
  .column2 .child04.column2-img2,
  .column2 .child-img.column2-img2 {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 20px;
  }
  .column2 .child.column2-fee,
  .column2 .child01.column2-fee,
  .column2 .child02.column2-fee,
  .column2 .child03.column2-fee,
  .column2 .child04.column2-fee,
  .column2 .child-img.column2-fee {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 20px;
  }
  .column2 .child-txt {
    position: relative;
    width: 100%;
    margin: 20px auto 0 !important;
    padding: 0 10px !important;
  }
  .column2 .child-img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin: auto !important;
    border-radius: 10px 10px 0 0;
  }
}

.fluid-img {
  padding-right: 20px;
  padding-bottom: 20px;
}
.fluid-img img {
  -webkit-animation: fluidrotate 15s ease 0s infinite;
          animation: fluidrotate 15s ease 0s infinite;
  -webkit-box-shadow: 20px 20px 0 rgb(227.264, 83.6693333333, 27.136);
          box-shadow: 20px 20px 0 rgb(227.264, 83.6693333333, 27.136);
}
@media all and (max-width: 900px) {
  .fluid-img {
    padding-right: 10px;
    padding-bottom: 10px;
  }
  .fluid-img img {
    -webkit-animation: fluidrotate 15s ease 0s infinite;
            animation: fluidrotate 15s ease 0s infinite;
    -webkit-box-shadow: 10px 10px 0 rgb(227.264, 83.6693333333, 27.136);
            box-shadow: 10px 10px 0 rgb(227.264, 83.6693333333, 27.136);
  }
}

@-webkit-keyframes fluidrotate {
  0%, 100% {
    border-radius: 50% 50% 45% 55%/55% 45% 55% 45%;
  }
  20% {
    border-radius: 60% 40% 60% 40%/45% 55% 45% 55%;
  }
  40% {
    border-radius: 45% 55% 40% 60%/60% 45% 55% 40%;
  }
  60% {
    border-radius: 55% 45% 65% 35%/40% 65% 35% 60%;
  }
  80% {
    border-radius: 40% 60% 55% 45%/55% 40% 60% 45%;
  }
}

@keyframes fluidrotate {
  0%, 100% {
    border-radius: 50% 50% 45% 55%/55% 45% 55% 45%;
  }
  20% {
    border-radius: 60% 40% 60% 40%/45% 55% 45% 55%;
  }
  40% {
    border-radius: 45% 55% 40% 60%/60% 45% 55% 40%;
  }
  60% {
    border-radius: 55% 45% 65% 35%/40% 65% 35% 60%;
  }
  80% {
    border-radius: 40% 60% 55% 45%/55% 40% 60% 45%;
  }
}
.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;
  margin-bottom: 80px;
}
.top-list > li {
  width: 23.5%;
  position: relative;
}
.top-list > li:nth-child(even) {
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
@media all and (max-width: 900px) {
  .top-list > li {
    width: 48%;
    margin-bottom: 30px;
  }
}
.top-list .top-list-title {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
}
.top-list .top-list-title span {
  border-radius: 5px 0 0 0;
  background: #fff;
  color: #4b3718;
  font-weight: 600;
  padding: 3px 8px;
}
@media all and (max-width: 639px) {
  .top-list .top-list-title span {
    display: block;
  }
}

.kiritori {
  display: block;
  margin: 45px auto;
  height: 1px;
  width: 90%;
  background-image: -webkit-gradient(linear, left top, right top, from(#832d3a), to(#d48b47));
  background-image: linear-gradient(to right, #832d3a, #d48b47);
  opacity: 0.6;
}

/* animation
----------------------------------*/
@-webkit-keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes animation-bar {
  0% {
    left: 0;
    right: auto;
    width: 0;
  }
  50% {
    left: 0;
    right: auto;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
    width: 100%;
  }
  100% {
    left: auto;
    right: 0;
    width: 101%;
  }
}
@keyframes animation-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 101%;
    width: 0;
  }
}
@-webkit-keyframes animation-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes float-y {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@keyframes float-y {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@keyframes animation-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animation-content.move .animation-bar:before {
  -webkit-animation: animation-bar 0.8s ease 0s 1 normal forwards;
          animation: animation-bar 0.8s ease 0s 1 normal forwards;
}
.animation-content.move .animation-txt {
  -webkit-animation: animation-txt 0s ease 0.4s 1 normal forwards;
          animation: animation-txt 0s ease 0.4s 1 normal forwards;
}
.animation-content .animation-box {
  display: block;
  text-align: center;
}
.animation-content .animation-bar {
  position: relative;
  display: inline-block;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.animation-content .animation-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #e76836;
}
.animation-content .animation-txt {
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.effect_fade {
  opacity: 0;
  -webkit-transform: translate(0, 45px);
          transform: translate(0, 45px);
  -webkit-transition: all 2s;
  transition: all 2s;
}
.effect_fade.effect_scroll {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.top-bg {
  position: relative;
}
.top-bg:before {
  position: absolute;
  content: "";
  width: 15%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fdfed6), to(#e3dccb));
  background-image: linear-gradient(to bottom, #fdfed6, #e3dccb);
  z-index: -1;
}
@media all and (max-width: 639px) {
  .top-bg:before {
    width: 30%;
  }
}

.top-greet-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  max-width: 1200px;
  margin-left: 10%;
}
@media all and (max-width: 900px) {
  .top-greet-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
}
@media all and (max-width: 639px) {
  .top-greet-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.top-greet-lead {
  width: 45%;
}
@media all and (max-width: 900px) {
  .top-greet-lead {
    width: 100%;
  }
}

.lead-line {
  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;
}
.lead-line:not(:last-of-type) {
  margin-bottom: 20px;
}
.lead-line .capital {
  font-size: 9rem;
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  line-height: 1;
  width: 30%;
  letter-spacing: 0.15em;
  text-align: center;
  color: #e76836;
}
@media all and (max-width: 1025px) {
  .lead-line .capital {
    font-size: 7rem;
  }
}
@media all and (max-width: 639px) {
  .lead-line .capital {
    font-size: 4rem;
  }
}
.lead-line .lead-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 40px;
  color: #4b3718;
  font-size: 2rem;
}
.lead-line .lead-txt .eng {
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  display: block;
  color: rgba(75, 55, 24, 0.5);
  font-size: 4rem;
  line-height: 1.4;
}
@media all and (max-width: 1025px) {
  .lead-line .lead-txt .eng {
    font-size: 3rem;
  }
}
@media all and (max-width: 639px) {
  .lead-line .lead-txt {
    font-size: 1.3rem;
  }
  .lead-line .lead-txt .eng {
    font-size: 1.8rem;
  }
}

.top-greet-box {
  color: #fefefe;
}
@media all and (max-width: 900px) {
  .top-greet-box {
    padding: 0;
  }
}
.top-greet-box .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media all and (max-width: 900px) {
  .top-greet-box .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.top-greet-box .inner .img {
  width: 40%;
}
@media all and (max-width: 900px) {
  .top-greet-box .inner .img {
    margin: 0 auto 20px;
  }
}
.top-greet-box .inner .txt {
  text-align: center;
  font-size: 1.8rem;
  width: 55%;
}
@media all and (max-width: 900px) {
  .top-greet-box .inner .txt {
    width: 100%;
  }
}
.top-greet-box .inner .txt .txt01 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: bold;
}
@media all and (max-width: 1025px) {
  .top-greet-box .inner .txt .txt01 {
    font-size: 2.2rem;
  }
}
@media all and (max-width: 900px) {
  .top-greet-box .inner .txt .txt01 {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .top-greet-box .inner .txt .txt01 {
    font-size: 18px;
  }
}
.top-greet-box .inner .txt .txt01 p {
  color: #4a4440;
}
.top-greet-box .inner .txt .txt02 {
  margin-bottom: 40px;
}
@media all and (max-width: 900px) {
  .top-greet-box .inner .txt .txt02 {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .top-greet-box .inner .txt .txt02 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .top-greet-box .inner .txt .txt02 {
    font-size: 13px;
  }
}
.top-greet-box.type2 {
  padding-right: 0;
  position: relative;
}
@media all and (max-width: 900px) {
  .top-greet-box.type2 {
    width: 95vw;
    margin-left: auto;
  }
}
@media all and (max-width: 639px) {
  .top-greet-box.type2 {
    width: 95%;
    margin-left: auto;
  }
}
.top-greet-box.type2:before {
  position: absolute;
  content: "OKINAWA TOKUDEN";
  color: rgba(231, 104, 54, 0.1);
  background-size: 6contain;
  width: 100%;
  height: 100%;
  top: 8%;
  left: 3%;
  z-index: -1;
  opacity: 0.7;
  font-size: 10rem;
  font-weight: 700;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media all and (max-width: 900px) {
  .top-greet-box.type2:before {
    top: -1%;
    font-size: 7rem;
  }
}
@media all and (max-width: 639px) {
  .top-greet-box.type2:before {
    left: 0;
    top: -2%;
    width: 90%;
    font-size: 3rem;
  }
}
.top-greet-box.type2 .title-bg span {
  margin-top: -30px;
  font-size: 13rem;
  color: rgba(231, 104, 54, 0.1);
}
.top-greet-box.type2 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
}
@media all and (max-width: 1025px) {
  .top-greet-box.type2 .inner {
    gap: 20px;
    margin-bottom: 0;
  }
}
.top-greet-box.type2 .inner .txt01 {
  text-align: left;
  font-size: 1.5rem;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  font-size: 2.3rem;
  position: relative;
  z-index: 50;
  color: #e76836;
}
@media all and (max-width: 1025px) {
  .top-greet-box.type2 .inner .txt01 {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 639px) {
  .top-greet-box.type2 .inner .txt01 {
    font-size: 18px;
    text-align: center;
  }
}
.top-greet-box.type2 .inner .txt01 p:not(:last-child) {
  margin-bottom: 20px;
}
.top-greet-box.type2 .inner .txt02 {
  color: #4a4440;
  font-size: 1.5rem;
  text-align: left;
  margin-bottom: 0;
}
.top-greet-box.type2 .inner .txt02 p:not(:last-child) {
  margin-bottom: 15px;
}
@media all and (max-width: 639px) {
  .top-greet-box.type2 .inner .txt02 p {
    font-size: 14px;
  }
}
.top-greet-box.type2 .inner .img {
  margin-right: -25px;
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top-greet-box.type2 .inner .img .left img,
.top-greet-box.type2 .inner .img .right img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.top-greet-box.type2 .inner .img .left {
  margin-right: 25px;
  margin-top: 120px;
}
@media all and (max-width: 639px) {
  .top-greet-box.type2 .inner .img .left {
    margin-right: 20px;
  }
}
@media all and (max-width: 1025px) {
  .top-greet-box.type2 .inner .img {
    margin-right: -120px;
    width: 51%;
  }
}
@media all and (max-width: 900px) {
  .top-greet-box.type2 .inner .img {
    margin-right: auto;
    width: 95%;
  }
}

.greet-title {
  font-size: 2.2rem;
  letter-spacing: 0.2vw;
  font-weight: 600;
  line-height: 2;
}
@media all and (max-width: 639px) {
  .greet-title {
    font-size: 1.6rem;
  }
}

.top-greet-img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 1500px;
  margin: 30px auto 0;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}
.top-greet-img-box .img-box1 {
  width: 30%;
}
.top-greet-img-box .img-box2 {
  width: 60%;
  margin-bottom: 30px;
}

.top-greet-box2 {
  position: relative;
  padding: 30px 0;
}
@media all and (max-width: 639px) {
  .top-greet-box2 {
    padding: 40px 20px;
  }
}
.top-greet-box2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(../img/bg-01.jpg) no-repeat center/cover;
}
.top-greet-box2 .inner {
  max-width: 700px;
  margin: 0 auto;
  font-weight: 600;
  line-height: 2;
  color: #fff;
  position: relative;
  z-index: 2;
}

.staff-txt {
  padding: 10px;
}

.marker-b {
  background: #333;
  color: #fff;
  padding: 0 4px;
}

.marker-brown {
  background: #4b3718;
  color: #fff;
  padding: 0 4px;
}

.menu-head {
  background: url(../img/menu-head.jpg) no-repeat 70% center/cover;
  height: 350px;
  max-width: 1500px;
  margin: 50px auto;
  border-radius: 30px;
}
@media all and (max-width: 639px) {
  .menu-head {
    height: 200px;
    background-position: center left;
  }
}
.menu-head.type01 {
  background: url(../img/menu-head2.jpg) no-repeat 70% center/cover;
}
@media all and (max-width: 639px) {
  .menu-head.type01 {
    height: 200px;
    margin: 0px auto 40px;
    background-position: 20% center;
  }
}
.menu-head.type02 {
  background: url(../img/menu-head3.jpg) no-repeat 70% center/cover;
}
@media all and (max-width: 639px) {
  .menu-head.type02 {
    height: 200px;
    margin: 0px auto 40px;
    background-position: 20% center;
  }
}

.menu-head-txt {
  max-width: 600px;
  margin: 0 auto 50px;
  text-align: center;
}

.menu-list {
  margin-bottom: 30px;
}
.menu-list.type1 li {
  background: #e76836;
  color: #fff;
}
.menu-list.type1 li .right {
  color: #ffdf2c;
}
.menu-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 8px 4px;
}
.menu-list > li.info2 {
  display: block;
  padding: 0;
  color: rgb(113.6363636364, 83.3333333333, 36.3636363636);
  margin-bottom: 0 !important;
}
.menu-list > li.info2:before {
  display: none;
}
.menu-list > li:not(:last-of-type) {
  margin-bottom: 20px;
}
.menu-list > li p {
  display: inline-block;
  line-height: 1.5;
}
.menu-list > li:before {
  background: radial-gradient(#aaa 20%, transparent 0) center center/8px 8px;
  content: "";
  display: inline-block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 4px;
  margin: 0 1.2em;
}
@media all and (max-width: 639px) {
  .menu-list > li:before {
    margin: 0 5px;
  }
}
.menu-list > li .info {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  font-size: 1.4rem;
  color: #e76836;
  margin-top: 10px;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding: 8px;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .menu-list > li .info {
    font-size: 13px;
  }
}
.menu-list > li .left {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  max-width: 65%;
  letter-spacing: 0.1rem;
  font-weight: 600;
}
.menu-list > li .left .small {
  color: #555;
  padding-top: 5px;
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0;
}
.menu-list > li .left {
  position: relative;
}
.menu-list > li .left:after {
  content: ".";
  display: inline-block;
  width: 0;
  color: transparent;
  pointer-events: none;
}
@media all and (max-width: 639px) {
  .menu-list > li .left {
    max-width: 65%;
  }
  .menu-list > li .left .small {
    font-size: 12px;
  }
}
.menu-list > li .right {
  max-width: 35%;
  text-align: right;
  color: #4b3718;
  font-size: 1.1em;
}

.menu-title {
  margin: -55px 0 30px;
  position: relative;
  z-index: 2;
}
.menu-title span {
  background: #e76836;
  padding: 4px 8px;
  color: #fff;
  font-size: 1.8rem;
}
.menu-title span em {
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 2.2rem;
}
@media all and (max-width: 639px) {
  .menu-title {
    margin-top: -45px;
  }
  .menu-title span {
    font-size: 1.3rem;
  }
  .menu-title span em {
    font-size: 1.5rem;
  }
}

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

.calendar-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 0.9em;
}
.calendar-box div.calendar {
  width: 48%;
}
@media all and (max-width: 639px) {
  .calendar-box div.calendar {
    width: 100%;
    margin-bottom: 10px;
  }
}
.calendar-box table {
  width: 100%;
}
.calendar-box table th,
.calendar-box table td {
  width: 14.28%;
  border: 0.9px solid #666;
  font-weight: normal;
  padding: 5px;
  height: 45px;
  font-size: 1.3rem;
  color: #4b3718;
}
@media all and (max-width: 639px) {
  .calendar-box table th,
  .calendar-box table td {
    height: 40px;
    font-size: 1.2rem;
  }
}
.calendar-box table th {
  background: #fdfed6;
  vertical-align: middle;
  font-weight: 600;
}
.calendar-box table td {
  background: #fefefe;
}
.calendar-box table td.off {
  background: #d48b47;
  color: rgb(93.0397727273, 31.9602272727, 41.1931818182);
}
.calendar-box th.sun,
.calendar-box td.sun {
  color: rgb(93.0397727273, 31.9602272727, 41.1931818182);
}
.calendar-box th.sat,
.calendar-box td.sat {
  color: #1e3965;
}
.calendar-box .item-td {
  background: #eadc8b;
}
.calendar-box .item-td .days {
  color: #4b3718;
}
.calendar-box .item-td .item {
  display: none;
}

.calendar-info {
  max-width: 300px;
  margin: 20px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  background: #fff;
  padding: 10px;
}
.calendar-info .info-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.calendar-info .info-child:not(:last-child) {
  margin-right: 20px;
}
.calendar-info .info-txt {
  margin-left: 10px;
}
.calendar-info .mark {
  font-size: 2.5rem;
}
.calendar-info .mark.mark1 {
  color: #d48b47;
}
.calendar-info .mark.mark2 {
  color: #d1edf9;
}

.top-btn-instagram {
  margin: 40px auto;
  display: block;
  position: relative;
  width: 380px;
  padding: 20px 0;
  text-align: center;
  color: #e76836;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#fff), color-stop(#fdfed6), to(#e3dccb));
  background-image: linear-gradient(to right bottom, #fff, #fdfed6, #e3dccb);
  -webkit-box-shadow: rgba(212, 139, 71, 0.1) 0px 10px 50px;
          box-shadow: rgba(212, 139, 71, 0.1) 0px 10px 50px;
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  font-size: 2rem;
}
.top-btn-instagram:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 110px;
  top: -110px;
  left: 50%;
  background: #d48b47;
  opacity: 0.4;
}
.top-btn-instagram:after {
  position: absolute;
  content: "Check It Out!";
  font-family: "Concert One", cursive;
  font-weight: 400;
  right: -40px;
  bottom: -10px;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  color: #d48b47;
  font-size: 2.2rem;
}
.top-btn-instagram:hover {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.top-btn-instagram:hover:before {
  top: -80px;
  height: 80px;
}
@media all and (max-width: 639px) {
  .top-btn-instagram {
    width: 80%;
  }
  .top-btn-instagram:after {
    font-size: 1.5rem;
    right: -5%;
  }
}

.frame-box {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  -webkit-box-shadow: rgba(212, 139, 71, 0.1) 0px 10px 50px;
          box-shadow: rgba(212, 139, 71, 0.1) 0px 10px 50px;
  border: 4px double #4b3718;
  background: #fefefe;
}
.frame-box:before, .frame-box:after {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  top: 0;
  opacity: 0.7;
}
@media all and (max-width: 639px) {
  .frame-box:before, .frame-box:after {
    width: 40px;
    height: 40px;
    opacity: 0.5;
  }
}
.frame-box:before {
  background: url(../img/fr-left.png) no-repeat left top/contain;
  left: 0;
}
.frame-box:after {
  background: url(../img/fr-right.png) no-repeat right top/contain;
  right: 0;
}

.frame-bottom {
  position: relative;
}
.frame-bottom:before, .frame-bottom:after {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  bottom: 0;
  opacity: 0.7;
}
@media all and (max-width: 639px) {
  .frame-bottom:before, .frame-bottom:after {
    width: 40px;
    height: 40px;
    opacity: 0.5;
  }
}
.frame-bottom:before {
  background: url(../img/fr-b-left.png) no-repeat left top/contain;
  left: 0;
}
.frame-bottom:after {
  background: url(../img/fr-b-right.png) no-repeat right top/contain;
  right: 0;
}

.frame-inner {
  padding: 75px 40px;
  position: relative;
  z-index: 2;
}
@media all and (max-width: 639px) {
  .frame-inner {
    padding: 40px 12px;
  }
}

.pai-list {
  position: relative;
  padding: 25px;
  text-align: center;
  font-size: 2rem;
  line-height: 1.3;
  background: #fff;
  color: #4b3718;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .pai-list {
    font-size: 1.3rem;
    padding: 15px;
  }
}
.pai-list:before, .pai-list:after {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  opacity: 0.7;
}
@media all and (max-width: 639px) {
  .pai-list:before, .pai-list:after {
    width: 25px;
    height: 25px;
  }
}
.pai-list:before {
  left: 0;
  top: 0;
  border-top: 0.9px solid #d48b47;
  border-left: 0.9px solid #d48b47;
}
.pai-list:after {
  right: 0;
  bottom: 0;
  border-right: 0.9px solid #d48b47;
  border-bottom: 0.9px solid #d48b47;
}

.system-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
}
.system-dl dt,
.system-dl dd {
  margin-bottom: 5px;
}
.system-dl dt {
  background: #4b3718;
  padding: 8px;
  color: #fff;
  border-radius: 10px;
  width: 30%;
  text-align: center;
}
@media all and (max-width: 639px) {
  .system-dl dt {
    padding: 5px;
    letter-spacing: 0;
    font-size: 13px;
  }
}
.system-dl dd {
  width: 65%;
  line-height: 1.1;
  -ms-flex-item-align: center;
      align-self: center;
}
.system-dl dd span {
  font-size: 2.6rem;
  color: #832d3a;
}
.system-dl dd span.type1 {
  font-size: 2.2rem;
  line-height: 1.3;
}
@media all and (max-width: 639px) {
  .system-dl dd span {
    font-size: 1.6rem;
  }
  .system-dl dd span.type1 {
    font-size: 1.4rem;
  }
}

.system-box {
  background: rgba(253, 254, 214, 0.8);
  padding: 10px;
  position: relative;
}
.system-box:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 0 24px 24px 0;
  border-color: transparent #fefefe transparent transparent;
}

.hoshou {
  font-weight: 600;
}
.hoshou span {
  font-size: 2rem;
  color: #832d3a;
}
.hoshou {
  border-bottom: 1px solid #ccc;
}

.style {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}
.style a {
  display: block;
  width: 47%;
  height: 300px;
  padding: 0 10px;
}
@media all and (max-width: 639px) {
  .style a {
    height: 240px;
    padding: 0 5px;
  }
}
.style a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -o-object-position: 50% 0%;
     object-position: 50% 0%;
}

.recipe {
  position: relative;
  padding: 20px 10px 10px;
  margin-top: 10px;
}
.recipe:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  background-image: repeating-linear-gradient(-45deg, #ddd, #ddd 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  opacity: 0.5;
}

.recipe-dl {
  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;
}
.recipe-dl dt {
  width: 5.5em;
  color: rgb(146.7136563877, 88.5066079295, 34.2863436123);
  text-transform: uppercase;
}
.recipe-dl dt:after {
  content: "・・・";
  margin-left: 3px;
  font-size: 10px;
}
.recipe-dl dd {
  width: calc(100% - 7em);
}

.fixed-btn {
  position: fixed;
  right: 0;
  top: 32%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 150;
}
.fixed-btn.type1 {
  top: 32%;
}
@media all and (max-width: 900px) {
  .fixed-btn {
    display: none !important;
  }
}
.fixed-btn .btn-instagram {
  text-align: center;
  padding: 15px 12px;
  display: block;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-radius: 10px 0 0 10px;
  color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  line-height: 1.2;
  width: 85px;
}
.fixed-btn .btn-instagram:not(:first-child) {
  margin-top: 10px;
}
.fixed-btn .btn-instagram i {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 8px;
}
.fixed-btn .btn-instagram span {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.fixed-btn .btn-instagram:hover {
  opacity: 0.9;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.fixed-btn .btn-instagram:hover i {
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.tcen {
  text-align: center;
}
@media all and (max-width: 639px) {
  .tcen {
    text-align: left;
  }
}

.top-bnr {
  position: relative;
  max-width: 1000px;
  width: 95%;
  margin: 50px auto;
}
.top-bnr a {
  display: block;
  text-align: center;
  padding: 50px 30px;
  border: 3px solid #fff;
}
.top-bnr a:before, .top-bnr a:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.top-bnr a:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27710/top_bnr.webp) no-repeat left 47%/cover;
  z-index: -2;
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}
.top-bnr a:after {
  background: radial-gradient(circle, rgba(206, 206, 206, 0.1) 0%, rgba(207, 207, 207, 0.2) 80%, transparent 100%);
  z-index: -1;
}
.top-bnr a .in_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}
.top-bnr a .in_box .child-txt {
  margin: 0 auto;
  width: 70%;
  padding: 0 10px;
}
.top-bnr a .in_box .top-bnr-ttl {
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  font-size: 4.5rem;
  line-height: 1.3;
}
@media all and (max-width: 900px) {
  .top-bnr a .in_box .top-bnr-ttl {
    font-size: 3.5rem;
  }
}
@media all and (max-width: 639px) {
  .top-bnr a .in_box .top-bnr-ttl {
    font-size: 2.5rem;
  }
}
.top-bnr a .in_box .top-bnr-ttl span {
  color: #fff;
  font-size: 7.8rem;
}
.top-bnr a .in_box .top-bnr-ttl.type1 {
  display: table;
  margin: 10px auto 0;
  border-bottom: 4px double #fff;
  font-size: 1.9rem;
}
.top-bnr a .in_box .top-bnr-ttl.type1 span {
  font-size: 2.6rem;
}
.top-bnr a .in_box .top-bnr-txt {
  color: #493d36;
  background: #fff;
  border: 1px solid #fff;
  display: inline-block;
  padding: 5px 25px;
  font-size: 1.4rem;
  border-radius: 20px;
  margin-top: 20px;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
@media all and (max-width: 639px) {
  .top-bnr a .in_box .top-bnr-txt {
    font-size: 1rem;
  }
}
.top-bnr a:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.2));
}
.top-bnr a:hover .top-bnr-txt {
  color: #fff;
  background: rgba(0, 0, 0, 0);
}
@media all and (max-width: 639px) {
  .top-bnr {
    margin: 0 auto;
  }
  .top-bnr a .inner .child {
    width: 50%;
    margin: 0 auto 20px;
  }
  .top-bnr a .inner .child-txt {
    width: 100%;
  }
  .top-bnr a .inner .top-bnr-ttl {
    font-size: 2.5rem;
  }
  .top-bnr a .inner .top-bnr-ttl span {
    font-size: 3.5rem;
  }
}

.frame {
  padding: 32px;
  background-color: #fff;
}
.frame h2,
.frame p {
  text-align: justify;
  text-justify: inter-ideograph;
}
@media all and (max-width: 639px) {
  .frame {
    padding: 16px;
  }
}

.dl_list {
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  font-weight: 300;
}
.dl_list dt {
  float: left;
  width: 10em;
  background: #e76836;
  padding: 5px 0px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  margin: 2px 0 0;
}
.dl_list dd {
  padding-left: 11em;
  padding-top: 5px;
  padding-bottom: 10px;
  line-height: 1.6;
  border-bottom: dotted 1px #aaa;
  margin: 5px 0;
}
.dl_list dd:last-child {
  border-bottom: 0px;
}
@media all and (max-width: 900px) {
  .dl_list dt {
    float: none;
    width: 100%;
    margin: 2px 0 0;
  }
  .dl_list dd {
    padding-left: 0;
    padding-top: 5px;
    padding-bottom: 5px;
    margin: 5px 0;
  }
}

.total_bx {
  text-align: center;
  background-color: #fff;
  padding: 16px 0;
  margin-bottom: 16px;
  margin-top: 50px;
}

input#total {
  border: 0px solid #fff;
  font-size: 2.3rem;
  width: 8em;
  color: #e76836;
  background: #fff;
  text-align: right;
}

.sec01 {
  padding: 80px 20px 80px 11vw;
  position: relative;
  background-color: #fff;
}

.t-layout-wrapper {
  position: relative;
}
.t-layout-wrapper .t-ttl01 {
  left: -85px;
  top: 4vw;
}
.t-layout-wrapper .t-ttl01.type1 {
  right: -85px;
  left: auto;
  top: 0;
}
.t-layout-wrapper .t-ttl01 {
  display: inline-block;
  width: 22px;
  color: #e8d4b9;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: "Baloo Da 2", cursive;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: lighter;
  position: absolute;
  width: 42px;
}
.t-layout-wrapper .t-ttl01:before {
  background: #e8d4b9;
  content: "";
  display: inline-block;
  height: 80px;
  width: 1px;
  margin-bottom: 24px;
}
@media all and (max-width: 900px) {
  .t-layout-wrapper .t-ttl01 {
    display: block;
    width: auto;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    font-size: 22px;
    position: static;
    margin-bottom: 20px;
  }
  .t-layout-wrapper .t-ttl01:before {
    height: 1px;
    width: 80px;
    margin: 0 15px 0 0;
    vertical-align: middle;
  }
}
.t-layout-wrapper .t-ttl02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #e76836;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  margin-bottom: -6px;
  font-weight: 400;
}
.t-layout-wrapper .t-ttl02 .num {
  color: #111;
  font-family: "Oswald";
  font-size: 6vw;
  letter-spacing: 0.1em;
  font-weight: lighter;
  vertical-align: middle;
  margin-right: 50px;
}

.t-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.t-layout.block {
  display: block;
}
@media all and (max-width: 900px) {
  .t-layout {
    display: block;
  }
}
.t-layout .l-img {
  width: 100%;
  min-width: 0;
}
.t-layout .l-img img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  max-height: 100%;
  height: 500px;
  width: 100%;
  border-radius: 30px;
}
@media all and (max-width: 900px) {
  .t-layout .l-img img {
    border-radius: 0;
  }
}
@media all and (max-width: 639px) {
  .t-layout .l-img img {
    height: auto;
  }
}
.t-layout .l-desc {
  background: white;
  width: 70%;
  margin: -150px auto 0;
  padding: 4vw 5vw;
  position: relative;
  z-index: 5;
  border-radius: 30px;
}
.t-layout .l-desc.bg-white {
  background: white;
}
@media all and (max-width: 900px) {
  .t-layout .l-desc {
    margin: -200px auto 0;
    padding: 50px;
    width: 90%;
  }
}
@media all and (max-width: 639px) {
  .t-layout .l-desc {
    margin: -50px auto 0;
    padding: 30px;
  }
}
.t-layout .l-desc .l-ttl01 {
  line-height: 1;
  position: absolute;
  left: 63px;
  top: -45px;
}
.t-layout .l-desc .l-ttl01 .num {
  font-family: "Baloo Da 2", cursive;
  font-size: 6vw;
  letter-spacing: 0.1em;
  font-weight: lighter;
  vertical-align: middle;
  margin-right: 35px;
}
.t-layout .l-desc .l-ttl02 {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
@media all and (max-width: 900px) {
  .t-layout .l-desc .l-ttl02 {
    margin-bottom: 20px;
  }
}
.t-layout .l-desc .l-ttl02 .main-ttl {
  display: block;
  color: #e76836;
  font-size: 20px;
  margin-bottom: 25px;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  line-height: 1.7;
}
@media all and (max-width: 900px) {
  .t-layout .l-desc .l-ttl02 .main-ttl {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.7;
  }
}
@media all and (max-width: 639px) {
  .t-layout .l-desc .l-ttl02 .main-ttl {
    text-align: center;
    letter-spacing: 0.4rem;
  }
}
.t-layout .l-desc .l-ttl02 .sub-ttl {
  display: block;
  font-size: 20px;
  line-height: 2;
}
.t-layout .l-desc .l-txt {
  margin-bottom: 0px;
}
.t-layout.p02 .l-img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.t-layout.p02 .l-desc {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 4vw 0 0 -125px;
}
@media all and (max-width: 1025px) {
  .t-layout.p02 .l-desc {
    margin: 24vw 70px 0 -350px;
  }
}
@media all and (max-width: 900px) {
  .t-layout.p02 .l-desc {
    margin: -200px auto 0;
    padding: 50px;
    width: 90%;
  }
}
@media all and (max-width: 639px) {
  .t-layout.p02 .l-desc {
    margin: -50px auto 0;
    padding: 30px 15px;
  }
}
@media all and (max-width: 900px) {
  .t-layout.p02 .l-img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .t-layout.p02 .l-desc {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: -50px auto 0;
  }
}
.t-layout .l-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px -15px -20px;
}
@media all and (max-width: 900px) {
  .t-layout .l-btn {
    display: block;
    margin: 20px 0 -15px;
  }
}
.t-layout .l-btn li {
  margin: 0 auto 20px;
  width: 90%;
}
@media all and (max-width: 900px) {
  .t-layout .l-btn li {
    margin: 0 auto 15px;
    width: 100%;
  }
}
.t-layout .l-btn li a {
  min-width: 0;
  width: 100%;
}
.t-layout .l-btn li .btn-style01 {
  display: inline-block;
  border: 1px solid #fff;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  min-width: 250px;
  padding: 12px 30px;
  position: relative;
  text-align: left;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #fff;
}
.t-layout .l-btn li .btn-style01:after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
  top: calc(50% - 4px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.t-layout .l-btn li .btn-style01:hover {
  background: #111;
  color: #fff;
}
.t-layout .l-btn li .btn-style01:hover:after {
  right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.sec05-card-wrapper {
  width: calc(100% - 4vw);
  margin: 0 auto;
}

.sec01_2 {
  padding: 130px 11vw 100px 0;
  position: relative;
}
@media all and (max-width: 1025px) {
  .sec01_2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media all and (max-width: 900px) {
  .sec01_2 {
    padding: 60px 0 30px;
  }
}

/* --top-bnr-list--
----------------------------------*/
.top-bnr-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  gap: 20px;
}
.top-bnr-list > li {
  width: calc((100% - 20px) / 2);
  position: relative;
}
.top-bnr-list > li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.top-bnr-list > li a:hover {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.top-bnr-list > li a:hover .top-bnr-img {
  position: relative;
}
.top-bnr-list > li a:hover .top-bnr-img img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.top-bnr-list > li a:hover .top-bnr-img::before {
  opacity: 0.1;
}
.top-bnr-list > li a:hover .top-bnr-title {
  background: rgba(255, 255, 255, 0.8);
  color: #4a4440;
}
.top-bnr-list > li a:hover .top-bnr-title .eng {
  color: #e76836;
}
.top-bnr-list.col1 > li {
  width: 100%;
}
@media all and (max-width: 639px) {
  .top-bnr-list {
    gap: 10px;
  }
  .top-bnr-list > li {
    width: 100%;
    margin-bottom: 0;
  }
}
.top-bnr-list .top-bnr-img {
  position: relative;
  width: 100%;
  height: 400px;
  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::before {
  background: #4a4440;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0.6;
  z-index: 1;
}
.top-bnr-list .top-bnr-img.tp img {
  -o-object-position: top;
     object-position: top;
}
.top-bnr-list .top-bnr-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: block;
}
@media all and (max-width: 639px) {
  .top-bnr-list .top-bnr-img {
    height: 200px;
  }
}
.top-bnr-list .top-bnr-title {
  font-weight: 500;
  padding: 15px 0;
  line-height: 1.4;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 250px;
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: all 0.5s ease;
          transform: all 0.5s ease;
  color: #fff;
  text-align: center;
}
.top-bnr-list .top-bnr-title .eng {
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  font-size: 2em;
  display: block;
  white-space: nowrap;
  color: #fff;
}
.top-bnr-list .top-bnr-title .ja {
  font-size: 0.9em;
  display: block;
  font-weight: 500;
  letter-spacing: 0.01em;
  left: 20px;
}
@media all and (max-width: 639px) {
  .top-bnr-list .top-bnr-title {
    width: 150px;
    height: 150px;
  }
  .top-bnr-list .top-bnr-title .eng {
    font-size: 1.5em;
  }
  .top-bnr-list .top-bnr-title .ja {
    font-size: 1rem;
  }
}
.top-bnr-list .top-bnr-txt {
  color: #222;
  padding: 10px;
  font-size: 1.4rem;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
}

.top-bnr-list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1500px;
  margin: 0 auto;
}
.top-bnr-list2 > li {
  width: 31%;
  position: relative;
  margin-bottom: 20px;
}
.top-bnr-list2 > li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.top-bnr-list2 > li a:hover {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.top-bnr-list2 > li a:hover .btn-arrow {
  background: #e76836;
}
.top-bnr-list2 > li a:hover .btn-arrow i {
  border-bottom-color: #fefefe;
}
.top-bnr-list2 > li a:hover .btn-arrow i:before {
  border-right-color: #fefefe;
}
.top-bnr-list2 > li a:hover .top-bnr-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media all and (max-width: 1025px) {
  .top-bnr-list2 {
    width: 85%;
    margin: 0 auto;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
@media all and (max-width: 900px) {
  .top-bnr-list2 {
    width: 95%;
  }
}
@media all and (max-width: 639px) {
  .top-bnr-list2 {
    width: 95%;
  }
  .top-bnr-list2 > li {
    width: 100%;
  }
}
.top-bnr-list2 .top-bnr-img {
  position: relative;
  width: 100%;
  height: 240px;
  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);
  border-radius: 10px;
}
.top-bnr-list2 .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;
}
.top-bnr-list2 .top-bnr-img .point {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(51, 51, 51, 0.7);
  padding: 5px;
  font-size: 1.3rem;
  color: #fefefe;
  border: 1px solid #fefefe;
}
@media all and (max-width: 639px) {
  .top-bnr-list2 .top-bnr-img {
    height: 200px;
  }
}
.top-bnr-list2 .btn-arrow {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 5px;
  top: 200px;
  text-align: center;
  line-height: 60px;
  border: 1px solid #e76836;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media all and (max-width: 639px) {
  .top-bnr-list2 .btn-arrow {
    top: 180px;
  }
}
.top-bnr-list2 .btn-arrow i {
  display: block;
  position: absolute;
  width: 30px;
  border-bottom: 1px solid #e76836;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 5px;
}
.top-bnr-list2 .btn-arrow i:before {
  position: absolute;
  width: 10px;
  height: 8px;
  content: "";
  right: 3px;
  bottom: -1px;
  border-right: 2px solid #e76836;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
}
.top-bnr-list2 .top-bnr-title {
  font-weight: 500;
  padding: 15px;
  line-height: 1.4;
}
.top-bnr-list2 .top-bnr-title .eng {
  font-family: "Baloo Da 2", cursive;
  font-weight: 400;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #e76836;
  display: block;
}
.top-bnr-list2 .top-bnr-title .ja {
  font-size: 1.8rem;
  display: block;
  color: #222;
  font-family: "Mochiy Pop One", sans-serif;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  .top-bnr-list2 .top-bnr-title .eng {
    font-size: 1.2rem;
  }
  .top-bnr-list2 .top-bnr-title .ja {
    font-size: 1.6rem;
  }
}
.top-bnr-list2 .top-bnr-txt {
  color: #222;
  padding: 10px;
  font-size: 1.4rem;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.bg-bluepot {
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.98) 2px, rgba(255, 255, 255, 0.98) 102px), repeating-linear-gradient(0deg, transparent, transparent 52px, rgb(153, 208, 255) 52px, rgb(153, 208, 255) 54px);
}

.bg-orange-dot {
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.98) 2px, rgba(255, 255, 255, 0.98) 102px), repeating-linear-gradient(0deg, transparent, transparent 52px, rgba(231, 104, 54, 0.3) 52px, rgba(231, 104, 54, 0.3) 54px);
}

.btn03 {
  background: #fefefe;
  text-align: center;
  width: 300px;
  margin: 15px auto;
  color: #4d2c2b;
  padding: 8px 5px;
  font-weight: 600;
  border: 2px solid #e76836;
  border-radius: 35px;
  overflow: hidden;
  position: relative;
  display: block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.btn03.t-20 {
  margin-top: 20px;
  margin-bottom: 0;
}
@media all and (max-width: 639px) {
  .btn03 {
    width: 260px;
  }
}
.btn03 span {
  position: relative;
}
.btn03 .fas {
  position: relative;
}
.btn03::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #587fd1;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
  -webkit-transition: border-radius 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53) 40ms, -webkit-transform 0.48s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: border-radius 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53) 40ms, -webkit-transform 0.48s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: transform 0.48s cubic-bezier(0.895, 0.03, 0.685, 0.22), border-radius 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53) 40ms;
  transition: transform 0.48s cubic-bezier(0.895, 0.03, 0.685, 0.22), border-radius 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53) 40ms, -webkit-transform 0.48s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
}
.btn03:hover {
  color: #fff;
}
.btn03:hover::before {
  background-color: #e76836;
  border-radius: 50% 50% 0 0/0 0 0 0;
  -webkit-transition: border-radius 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53) 20ms, -webkit-transform 0.48s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: border-radius 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53) 20ms, -webkit-transform 0.48s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.48s cubic-bezier(0.165, 0.84, 0.44, 1), border-radius 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53) 20ms;
  transition: transform 0.48s cubic-bezier(0.165, 0.84, 0.44, 1), border-radius 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53) 20ms, -webkit-transform 0.48s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.content-list li {
  position: relative;
}
.content-list li.child {
  margin-bottom: 40px;
}
@media all and (max-width: 639px) {
  .content-list li.child {
    margin-bottom: 70px;
  }
}
.content-list li .inner {
  position: absolute;
  top: 30px;
  right: 20px;
  -webkit-filter: grayscale(4%) drop-shadow(5px 5px 0px rgba(16, 30, 92, 0.6));
          filter: grayscale(4%) drop-shadow(5px 5px 0px rgba(16, 30, 92, 0.6));
}
@media all and (max-width: 900px) {
  .content-list li .inner {
    top: 20px;
    right: 20px;
  }
}
.content-list li .inner .num {
  font-size: 2rem;
  background-color: #e76836;
  color: #fff;
  padding: 8px 14px;
  border-radius: 5px;
}
@media all and (max-width: 900px) {
  .content-list li .inner .num {
    font-size: 1.2rem;
  }
}
.content-list li .inner .txt {
  font-size: 1.8rem;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  display: inherit;
  margin-top: 20px;
  padding: 20px 14px;
  background-color: #fff;
  border-radius: 5px;
}
@media all and (max-width: 900px) {
  .content-list li .inner .txt {
    font-size: 1.2rem;
  }
}
.content-list li figure {
  border-radius: 10px 10px 0 0;
  border-bottom: 3px solid #e76836;
}
.content-list li .btn03 {
  position: absolute;
  bottom: -21px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.voice-wrapper {
  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;
}
.voice-wrapper .voice-box {
  position: relative;
  width: 48%;
  margin: 20px auto;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.voice-wrapper .voice-box .voice-img img {
  position: relative;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: 0;
  width: 120px;
}
.voice-wrapper .voice-box .voice-right {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 40px;
  padding: 15px;
  background: #f6f6f6;
  border-radius: 10px;
}
.voice-wrapper .voice-box .voice-right .voice-title {
  font-size: 1.7rem;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #e76836;
  text-align: center;
  margin-bottom: 10px;
}
.voice-wrapper .voice-box .voice-right .voice-title::before {
  content: "【";
}
.voice-wrapper .voice-box .voice-right .voice-title::after {
  content: "】";
}
.voice-wrapper .voice-box .voice-right .voice-name {
  font-size: 1.3rem;
  text-align: right;
  margin-bottom: 20px;
}
.voice-wrapper .voice-box .voice-right .voice-txt {
  line-height: 2.2;
}
.voice-wrapper .voice-box .voice-right:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 30px 20px 0;
  border-color: transparent #f6f6f6 transparent transparent;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: -30px;
}
@media all and (max-width: 900px) {
  .voice-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .voice-wrapper .voice-box {
    width: 100%;
    margin: 0 auto 25px;
    min-height: 100px;
  }
  .voice-wrapper .voice-box:last-child {
    margin: 0 auto;
  }
  .voice-wrapper .voice-box .voice-img img {
    width: 50px;
  }
  .voice-wrapper .voice-box .voice-right {
    margin-left: 20px;
    padding: 10px;
  }
  .voice-wrapper .voice-box .voice-right .voice-title {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
  }
  .voice-wrapper .voice-box .voice-right .voice-title::before, .voice-wrapper .voice-box .voice-right .voice-title::after {
    display: none;
  }
  .voice-wrapper .voice-box .voice-right .voice-name {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  .voice-wrapper .voice-box .voice-right .voice-txt {
    line-height: 2;
  }
  .voice-wrapper .voice-box .voice-right:before {
    border-width: 10px 15px 10px 0;
    left: -15px;
  }
}

.company-greet .daihyo {
  padding: 5px;
  font-size: 2rem;
}
@media all and (max-width: 1025px) {
  .company-greet .daihyo {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .company-greet .daihyo {
    font-size: 1.4rem;
  }
}

.img-area {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 95vw;
  gap: 20px;
}
@media all and (max-width: 639px) {
  .img-area {
    gap: 10px;
  }
}

.top-sec2-line {
  position: relative;
  height: 40px;
  max-width: 750px;
  margin: 0 auto;
  border-top: 1px solid #b3a682;
  border-right: 1px solid #b3a682;
  border-left: 1px solid #b3a682;
}
.top-sec2-line i {
  display: block;
  position: absolute;
  left: 50%;
  top: -100%;
  width: 1px;
  height: 200%;
  background: #b3a682;
}
@media all and (max-width: 900px) {
  .top-sec2-line {
    max-width: 75%;
  }
}
@media all and (max-width: 639px) {
  .top-sec2-line {
    display: none;
  }
}

@media all and (max-width: 639px) {
  .top-sec2-list.list3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }
}
.top-sec2-list li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.top-sec2-list li .top-sec2-list-lead {
  width: 150px;
  height: 150px;
  margin: 0 auto 30px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f2f2f2;
  border-radius: 50%;
  border: 1px solid #ddd;
  position: relative;
  z-index: 2;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top-sec2-list li .top-sec2-list-lead .fas {
  font-size: 45px;
  margin-bottom: 8px;
  color: #666;
  display: block;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.top-sec2-list li .top-sec2-list-lead:before, .top-sec2-list li .top-sec2-list-lead:after {
  display: none;
}
.top-sec2-list li:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.top-sec2-list li:hover .top-sec2-list-lead {
  background: #fff;
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: #eee;
}
.top-sec2-list li:hover .top-sec2-list-lead .fas {
  color: #e76836;
}
.top-sec2-list li.is-highlight .top-sec2-list-lead {
  background: #fff;
  border: 2px solid #e76836;
  -webkit-box-shadow: 0 4px 15px rgba(231, 104, 54, 0.2);
          box-shadow: 0 4px 15px rgba(231, 104, 54, 0.2);
}
.top-sec2-list li.is-highlight:hover .top-sec2-list-lead {
  -webkit-box-shadow: 0 15px 35px rgba(231, 104, 54, 0.3);
          box-shadow: 0 15px 35px rgba(231, 104, 54, 0.3);
}
.top-sec2-list .txt {
  font-weight: 600;
  text-align: center;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media all and (max-width: 639px) {
  .top-sec2-list .txt {
    text-align: left;
  }
}
.top-sec2-list .txt .title01 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 2rem;
}
@media all and (max-width: 900px) {
  .top-sec2-list .txt .title01 {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .top-sec2-list .txt .title01 {
    font-size: 1.45rem;
  }
}
.top-sec2-list .txt .title01 {
  color: #4a4440;
}
.top-sec2-list .txt .title01.highlight-text {
  color: #e76836;
}
@media all and (max-width: 639px) {
  .top-sec2-list {
    padding: 0 20px;
  }
  .top-sec2-list li:hover {
    -webkit-transform: none;
            transform: none;
  }
  .top-sec2-list li .num {
    line-height: 1.3;
  }
  .top-sec2-list li .top-sec2-list-lead {
    margin-top: -40px;
  }
}

.slide_list {
  position: relative;
  display: none;
  margin: 60px auto;
}
.slide_list li {
  margin-right: 1.5%;
}
.slide_list li img {
  width: auto;
  height: 200px;
  -webkit-transition: -webkit-filter 0.2s ease-in;
  transition: -webkit-filter 0.2s ease-in;
  transition: filter 0.2s ease-in;
  transition: filter 0.2s ease-in, -webkit-filter 0.2s ease-in;
  border-radius: 5px;
}
.slide_list li:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
@media all and (max-width: 639px) {
  .slide_list {
    margin: 30px auto;
  }
  .slide_list li {
    margin-right: 3%;
  }
  .slide_list li img {
    height: 120px;
  }
}

.price-card {
  max-width: 700px;
  margin: 0 auto;
  color: #333;
}
.price-card .fee-box {
  padding: 20px;
  border-radius: 12px;
  background-color: #fff;
}
.price-card .fee-box .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.price-card .fee-box .row .num {
  font-size: 28px;
  font-weight: bold;
}
.price-card .fee-box .row .title {
  font-size: 22px;
  font-weight: bold;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 10px;
}
@media all and (max-width: 639px) {
  .price-card .fee-box .row .title {
    font-size: 16px;
  }
}
.price-card .fee-box .row .amount {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
}
@media all and (max-width: 900px) {
  .price-card .fee-box .row .amount {
    font-size: 2.2rem;
  }
}
@media all and (max-width: 639px) {
  .price-card .fee-box .row .amount {
    font-size: 1.8rem;
  }
}
.price-card .fee-box .row .amount {
  letter-spacing: 0.04em;
  font-weight: bold;
}
.price-card .fee-box .row .amount small {
  font-size: 14px;
}
.price-card .plus-icon {
  background: #e76836;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 10px auto;
  font-weight: bold;
}
.price-card .detail-table {
  border: 2px solid #444;
  background: #fff;
  margin: 15px 0;
}
.price-card .detail-table .head {
  background: #e76836;
  color: #fff;
  text-align: center;
  padding: 6px;
  font-weight: bold;
}
.price-card .detail-table table {
  width: 100%;
  border-collapse: collapse;
}
.price-card .detail-table table th,
.price-card .detail-table table td {
  border: 1px solid #444;
  padding: 10px;
}
.price-card .detail-table table th {
  font-size: 14px;
  width: 56%;
}
.price-card .detail-table table td {
  text-align: right;
  font-weight: bold;
  font-size: 18px;
}
.price-card .detail-table table td span {
  font-size: 17px;
  font-weight: normal;
}
.price-card .footer-notes {
  font-size: 17px;
  line-height: 1.5;
}
.price-card .footer-notes .right {
  text-align: right;
}
.price-card .footer-notes .etc-area {
  margin-top: 10px;
}
.price-card .footer-notes .etc-area p {
  margin: 2px 0;
}

.accordion {
  margin-top: 50px;
}
.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
  border: 1px solid #ddd;
}
.accordion dt {
  background: #f1f1f1;
  color: #4b3718;
  cursor: pointer;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
}
.accordion dt:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.4rem;
}
.accordion dt.on:after {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
}
.accordion dd {
  display: none;
  padding: 30px;
  background: #fefefe;
}
@media all and (max-width: 639px) {
  .accordion {
    margin-top: 30px;
  }
  .accordion dt,
  .accordion dd {
    padding: 0.8em 0.6em;
  }
  .accordion dt {
    font-size: 1.2rem;
  }
  .accordion dt:after {
    font-size: 0.9rem;
    right: 8px;
  }
  .accordion dd {
    padding: 15px;
  }
}

.panel2 {
  display: none;
}
.panel2:first-of-type {
  display: block;
}

.category_tab2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}
.category_tab2 li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
}
@media all and (max-width: 900px) {
  .category_tab2 li {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .category_tab2 li {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
.category_tab2 li {
  line-height: 1.4;
  border-width: 2px;
  border-style: solid;
  border-color: #e76836;
  background: transparent;
  color: #4b3718;
  padding: 25px 15px;
  margin-right: 1%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 5px;
}
.category_tab2 li i {
  font-size: 130%;
  margin-right: 10px;
  color: #e76836;
}
.category_tab2 li:last-child {
  margin-right: 0;
}
.category_tab2 li:hover {
  background: #e76836;
  color: #fff;
}
.category_tab2 li:hover i {
  color: #fff;
}
.category_tab2 li.active {
  background: #e76836;
  color: #fff;
}
.category_tab2 li.active i {
  color: #fff;
}
.category_tab2 li.active::after {
  position: absolute;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 10px solid #e76836;
  border-bottom: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.category_tab2 li:nth-child(even) {
  border-color: #d48b47;
}
.category_tab2 li:nth-child(even) i {
  color: #d48b47;
}
.category_tab2 li:nth-child(even):hover {
  background: #d48b47;
  color: #fff;
}
.category_tab2 li:nth-child(even):hover i {
  color: #fff;
}
.category_tab2 li:nth-child(even).active {
  background: #d48b47;
  color: #fff;
}
.category_tab2 li:nth-child(even).active i {
  color: #fff;
}
.category_tab2 li:nth-child(even).active::after {
  border-top: 10px solid #d48b47;
}
@media all and (max-width: 1025px) {
  .category_tab2 {
    margin-bottom: 20px;
  }
}
@media all and (max-width: 900px) {
  .category_tab2 {
    margin-bottom: 20px;
  }
  .category_tab2 li {
    padding: 20px 10px;
    font-size: 1.3rem;
  }
  .category_tab2 li i {
    margin-right: 0;
    margin-bottom: 5px;
    display: block;
  }
}
@media all and (max-width: 639px) {
  .category_tab2 li {
    padding: 15px 5px;
    font-size: 1rem;
  }
}

.about-mbox .inner {
  position: relative;
  z-index: 2;
  background: #fefefe;
  padding: 40px 30px;
  border-top: 5px solid #e76836;
  border-radius: 20px;
  -webkit-box-shadow: rgba(51, 51, 51, 0.1) 0px 10px 50px;
          box-shadow: rgba(51, 51, 51, 0.1) 0px 10px 50px;
}
.about-mbox .inner.side10 {
  padding: 40px 10px;
}
.about-mbox .inner.inner2 {
  background: transparent;
  border-top: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.about-mbox .about-img {
  position: relative;
  margin-bottom: 30px;
}
.about-mbox .about-img img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  -o-object-position: 50% 13%;
     object-position: 50% 13%;
}
.about-mbox .about-img img.type2 {
  -o-object-position: 50% 70%;
     object-position: 50% 70%;
}
.about-mbox .about-img img.type3 {
  -o-object-position: 50% 46%;
     object-position: 50% 46%;
}
.about-mbox .about-img img.type4 {
  -o-object-position: 50% 20%;
     object-position: 50% 20%;
}
.about-mbox .about-title {
  position: absolute;
  color: #fff;
  background: #e76836;
  padding: 15px 20px;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
}
@media all and (max-width: 900px) {
  .about-mbox .about-title {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .about-mbox .about-title {
    font-size: 1.7rem;
  }
}
.about-mbox .about-title {
  bottom: 10px;
  left: 10px;
  border-radius: 5px;
  line-height: 1.6;
}
@media all and (max-width: 639px) {
  .about-mbox .about-title {
    bottom: 5px;
    left: 5px;
    padding: 10px 15px;
  }
}

.imgArea {
  width: 100%;
  height: 85%;
  position: relative;
}
.imgArea .slider {
  overflow: hidden;
}
.imgArea .slider-img {
  width: 100%;
  height: 400px;
  overflow: hidden;
}
@media all and (max-width: 900px) {
  .imgArea .slider-img {
    height: 250px;
  }
}
.imgArea .slider-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.imgArea .slider-img:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.imgArea .slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}
.imgArea .slick-dots li button:before {
  content: "" !important;
  height: 100% !important;
  width: 100% !important;
}

@media all and (max-width: 900px) {
  .txt {
    width: 100%;
  }
  .imgArea {
    width: 100%;
    margin-top: 20px;
  }
}
.day_flow dt {
  background: #e76836;
  color: #fff;
  padding: 5px 10px 5px 25px;
  border-radius: 30px;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
}
@media all and (max-width: 900px) {
  .day_flow dt {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .day_flow dt {
    font-size: 1.7rem;
  }
}
.day_flow dd {
  border-left: 5px dotted rgb(241.88, 172.4533333333, 145.12);
  margin-left: 25px;
  padding: 15px 15px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.day_flow dd h3 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
}
@media all and (max-width: 900px) {
  .day_flow dd h3 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .day_flow dd h3 {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
.day_flow dd h3 {
  color: #e76836;
}
.day_flow.type1 dt {
  background: #d48b47;
}
.day_flow.type1 dd {
  border-left: 5px dotted rgb(231.3215859031, 191.1233480176, 153.6784140969);
}
.day_flow.type1 dd h3 {
  color: #d48b47;
}

.chosei4 {
  margin-bottom: 25px;
}
@media all and (max-width: 900px) {
  .chosei4 {
    margin-bottom: 15px;
  }
}

.list_check.col2, .list_check.col3, .list_check.col4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: grid;
  gap: 10px;
}
.list_check.col2 li:not(:last-child), .list_check.col3 li:not(:last-child), .list_check.col4 li:not(:last-child) {
  margin-bottom: 0 !important;
}
.list_check.col2 {
  grid-template-columns: repeat(2, 1fr);
}
.list_check.col3 {
  grid-template-columns: repeat(3, 1fr);
}
.list_check.col4 {
  grid-template-columns: repeat(4, 1fr);
}
.list_check.type1 li:before {
  color: #d48b47;
}
.list_check.type2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
}
.list_check.white li:before {
  color: #fff;
}
.list_check li:not(:last-child) {
  margin-bottom: 10px;
}
.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-weight: 900;
  margin-right: 3px;
  color: #e76836;
}
@media all and (max-width: 639px) {
  .list_check li:before {
    margin-right: 2px;
  }
  .list_check li li:not(:last-child) {
    margin-bottom: 5px;
  }
  .list_check.col2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
  }
  .list_check.col3, .list_check.col4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}

.user-info {
  text-align: center;
  padding: 40px 10px;
}
.user-info .orange-title {
  color: #f38233;
  font-size: 24px;
  margin-bottom: 20px;
}
.user-info .main-txt {
  font-size: 18px;
  margin-bottom: 15px;
}
@media all and (max-width: 639px) {
  .user-info .main-txt {
    text-align: left;
  }
}
.user-info .icon-arrow {
  color: #f38233;
  font-size: 16px;
  margin-bottom: 15px;
}
.user-info .orange-btn {
  display: block;
  max-width: 550px;
  margin: 0 auto 25px;
  padding: 15px;
  background: #f38233;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  border-radius: 8px;
}
.user-info .sub-txt {
  font-size: 16px;
  line-height: 1.8;
}
@media all and (max-width: 639px) {
  .user-info .sub-txt {
    text-align: left;
  }
}
@media all and (max-width: 639px) {
  .user-info .orange-title {
    font-size: 20px;
  }
  .user-info .main-txt {
    font-size: 16px;
  }
  .user-info .orange-btn {
    font-size: 17px;
    width: 95%;
  }
  .user-info .sub-txt {
    font-size: 15px;
  }
}

.balloon_l {
  margin: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.balloon_r {
  margin: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.faceicon img {
  width: 80px;
  height: auto;
}
@media all and (max-width: 639px) {
  .faceicon img {
    width: 200px;
  }
}

.balloon_r .faceicon {
  margin-left: 25px;
}

.balloon_l .faceicon {
  margin-right: 25px;
}

.balloon_r .faceicon {
  -webkit-box-ordinal-group: 3 !important;
      -ms-flex-order: 2 !important;
          order: 2 !important;
}

.says {
  max-width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  padding: 17px 13px 15px 18px;
  border-radius: 12px;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 !important;
  line-height: 1.5;
}
.says p {
  margin: 8px 0 0 !important;
}
.says p:first-child {
  margin-top: 0 !important;
}
.says:after {
  content: "";
  position: absolute;
  border: 10px solid transparent;
}

.balloon_l .says:after {
  left: -26px;
  border-right: 22px solid #fff;
}

.balloon_r .says:after {
  right: -26px;
  border-left: 22px solid #fff;
}

.bg-on-left:before {
  -webkit-animation: bg-on-left-anime 1s ease-out 0s forwards;
          animation: bg-on-left-anime 1s ease-out 0s forwards;
}
.bg-on-left.time2:before {
  -webkit-animation: bg-on-left-anime2 0.8s ease-out 0.8s forwards;
          animation: bg-on-left-anime2 0.8s ease-out 0.8s forwards;
}

.bg-on-left:before {
  -webkit-animation: bg-on-left-anime 1s ease-out 0s forwards;
          animation: bg-on-left-anime 1s ease-out 0s forwards;
}
.bg-on-left.time2:before {
  -webkit-animation: bg-on-left-anime2 0.8s ease-out 0.8s forwards;
          animation: bg-on-left-anime2 0.8s ease-out 0.8s forwards;
}

@-webkit-keyframes bg-on-left-anime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes bg-on-left-anime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes bg-on-left-anime2 {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes bg-on-left-anime2 {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
.content-box + .content-box {
  margin-top: 40px;
}

.content-box {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.content-box:before {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: -1;
}
.content-box.type1:before {
  left: auto;
  right: 0;
}
.content-box.type1 .child-txt {
  margin-left: auto;
}
.content-box.type1 .photo:before {
  right: auto;
  left: 0;
}
.content-box .content-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.content-box .content-flex .child-txt {
  position: relative;
  width: 50%;
  padding: 60px;
}
.content-box .content-flex .child-txt .num {
  position: absolute;
  color: #e8d4b9;
  font-size: 10rem;
  font-family: "Concert One", cursive;
  font-weight: 400;
  top: 30px;
  left: 30px;
  line-height: 1;
}
.content-box .content-flex .child-txt .content-title {
  position: relative;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: #4b3718;
  line-height: 1.6;
}
.content-box .content-flex .child-txt .content-title i {
  color: #e76836;
}
.content-box .content-flex .child-txt .content-title .small {
  display: block;
  font-size: 2rem;
  margin-top: 5px;
}
.content-box .content-flex .child-txt .txt {
  margin: 30px auto;
}
.content-box .content-flex .child-txt .txt p + p {
  margin-top: 15px;
}
.content-box .content-flex .child-txt .txt2 {
  margin: 30px auto 0;
}
.content-box .content-flex .child-txt .txt2 p + p {
  margin-top: 15px;
}
.content-box .content-flex .child-txt .content-btn a {
  position: relative;
  overflow: hidden;
  color: #4b3718;
  width: 100%;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
}
@media all and (max-width: 900px) {
  .content-box .content-flex .child-txt .content-btn a {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .content-box .content-flex .child-txt .content-btn a {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}
.content-box .content-flex .child-txt .content-btn a {
  padding: 10px;
  border: 1px solid #e76836;
  display: block;
  text-align: center;
  max-width: 220px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.content-box .content-flex .child-txt .content-btn a:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #e76836;
  top: 0;
  left: 10px;
}
.content-box .content-flex .child-txt .content-btn a:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #e76836;
  top: 0;
  right: 10px;
}
.content-box .content-flex .child-txt .content-btn a:hover {
  color: #fff;
  border: 1px solid #e76836;
  -webkit-box-shadow: #d48b47 0 80px 0px 2px inset;
  box-shadow: #d48b47 0 80px 0px 2px inset;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.content-box .content-flex .child-txt .content-btn a:hover:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  left: -1px;
}
.content-box .content-flex .child-txt .content-btn a:hover:after {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  right: -1px;
}
.content-box .content-flex .child-img .photo {
  height: 100%;
}
.content-box .content-flex .child-img .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.content-box .content-flex .child-img .photo:before {
  position: absolute;
  content: "";
  width: 50%;
  height: 0%;
  top: 0;
  right: 0;
}
.content-box .content-flex .child-img .photo.type1:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27710/service01.webp) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type2:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27710/service02.webp) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type3:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27710/service03.webp) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type4:before {
  background: url(../img/photo04.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type5:before {
  background: url(../img/photo05.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type6:before {
  background: url(../img/photo06.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type7:before {
  background: url(../img/photo07.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
@media all and (max-width: 900px) {
  .content-box {
    width: calc(100% - 40px);
  }
  .content-box .content-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content-box .content-flex .child-txt {
    width: 100%;
    padding: 30px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .content-box .content-flex .child-txt .num {
    font-size: 8rem;
    top: 15px;
    left: 15px;
  }
  .content-box .content-flex .child-txt .content-title {
    font-size: 1.8rem;
  }
  .content-box .content-flex .child-txt .content-title .small {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
  }
  .content-box .content-flex .child-txt .txt {
    margin: 25px auto;
  }
  .content-box .content-flex .child-txt .txt p + p {
    margin-top: 10px;
  }
  .content-box .content-flex .child-txt .txt2 {
    margin: 25px auto 0;
  }
  .content-box .content-flex .child-txt .txt2 p + p {
    margin-top: 10px;
  }
  .content-box .content-flex .child-img {
    width: 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .content-box .content-flex .child-img .photo {
    position: relative;
    height: auto;
    padding-bottom: 56.25%;
  }
  .content-box .content-flex .child-img .photo.type1:before, .content-box .content-flex .child-img .photo.type2:before, .content-box .content-flex .child-img .photo.type3:before, .content-box .content-flex .child-img .photo.type4:before, .content-box .content-flex .child-img .photo.type5:before, .content-box .content-flex .child-img .photo.type6:before, .content-box .content-flex .child-img .photo.type7:before {
    width: 100%;
    background-size: cover;
  }
}
@media all and (max-width: 900px) {
  .content-box {
    width: calc(100% - 20px);
  }
  .content-box .content-flex .child-txt {
    padding: 20px;
  }
  .content-box .content-flex .child-txt .num {
    font-size: 6rem;
  }
  .content-box .content-flex .child-txt .content-title {
    font-size: 1.4rem;
  }
  .content-box .content-flex .child-txt .content-title .small {
    font-size: 1.3rem;
  }
  .content-box .content-flex .child-txt .txt {
    margin: 20px auto;
  }
  .content-box .content-flex .child-txt .txt2 {
    margin: 20px auto 0;
  }
}

.letter-section {
  padding: 40px 20px;
  background: rgba(231, 104, 54, 0.7);
  border-radius: 12px;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .letter-section {
    padding: 30px 15px;
  }
}
.letter-section .section-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 32px;
  color: #fff;
  position: relative;
  font-size: 2.5rem;
  padding-bottom: 8px;
}
.letter-section .section-title::after {
  content: "";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f0a1";
  font-weight: 900;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  bottom: -16px;
  font-size: 18px;
}
@media all and (max-width: 639px) {
  .letter-section .section-title {
    font-size: 2rem;
  }
}
.letter-section .letter-item {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.letter-section .letter-item .meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}
.letter-section .letter-item .message {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
}
.letter-section .btn-area {
  text-align: center;
  margin-top: 10px;
}
.letter-section .btn-area .toggle-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.letter-section .btn-area .toggle-btn:hover {
  background: #e76836;
}

.js-marker.white span {
  background-image: -webkit-gradient(linear, left top, right top, from(#e76836), to(#e76836));
  background-image: linear-gradient(90deg, #e76836, #e76836);
}
.js-marker span {
  background-image: -webkit-gradient(linear, left top, right top, from(#ffb46e), to(#ff9807));
  background-image: linear-gradient(90deg, #ffb46e, #ff9807);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 35%;
  -webkit-transition: all 4s ease-in-out;
  transition: all 4s ease-in-out;
}
.js-marker.on span {
  background-size: 100% 35%;
}

.interview-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.interview-list .interview-item {
  position: relative;
  width: calc(33.333% - 14px);
  cursor: pointer;
  overflow: hidden;
  line-height: 0;
}
@media screen and (max-width: 890px) {
  .interview-list .interview-item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 560px) {
  .interview-list .interview-item {
    width: 100%;
  }
}
.interview-list .interview-item img {
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.interview-list .interview-item .label {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #e76836;
  color: #fff;
  padding: 10px 25px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
  z-index: 2;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  letter-spacing: 0.1em;
}
.interview-list .interview-item {
  /* 写真上のテキスト情報 */
}
.interview-list .interview-item .info-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  line-height: 1.4;
  z-index: 2;
}
.interview-list .interview-item .info-text .name {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.interview-list .interview-item .info-text .meta {
  font-size: 0.9rem;
}
.interview-list .interview-item {
  /* ホバー時のマスク */
}
.interview-list .interview-item .mask {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(231, 104, 54, 0.7);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 3;
}
.interview-list .interview-item .mask span {
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 20px;
  font-weight: bold;
  line-height: 1;
}
.interview-list .interview-item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.interview-list .interview-item:hover .mask {
  opacity: 1;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  overflow-y: auto;
}
.modal-overlay .modal-window {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1000px;
  background: #fff;
  padding: 50px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
}
@media all and (max-width: 900px) {
  .modal-overlay .modal-window {
    top: 100px;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    margin-bottom: 50px;
  }
}
@media all and (max-width: 639px) {
  .modal-overlay .modal-window {
    padding: 40px 20px 20px;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.modal-overlay .modal-window .modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 45px;
  height: 45px;
  background: #d48b47;
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 10;
}
@media all and (max-width: 639px) {
  .modal-overlay .modal-window .modal-close {
    top: 5px;
    right: 5px;
    width: 35px;
    height: 35px;
  }
}
.modal-overlay .modal-window .modal-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media all and (max-width: 900px) {
  .modal-overlay .modal-window .modal-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.modal-overlay .modal-window .modal-content .modal-left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 400px;
          flex: 0 0 400px;
  text-align: center;
}
.modal-overlay .modal-window .modal-content .modal-left img {
  width: 100%;
  height: auto;
  display: block;
}
.modal-overlay .modal-window .modal-content .modal-left .name {
  margin-top: 15px;
  font-weight: bold;
  font-size: 2.2rem;
  text-align: center;
}
.modal-overlay .modal-window .modal-content .modal-left .name span {
  font-size: 1.5rem;
  color: #666;
  font-weight: normal;
}
@media all and (max-width: 639px) {
  .modal-overlay .modal-window .modal-content .modal-left {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}
.modal-overlay .modal-window .modal-content .modal-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 15px;
}
.modal-overlay .modal-window .modal-content .modal-right .q-box {
  margin-bottom: 25px;
}
.modal-overlay .modal-window .modal-content .modal-right .q-box h4 {
  color: #e76836;
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.modal-overlay .modal-window .modal-content .modal-right .q-box h4::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #e76836;
}
.modal-overlay .modal-window .modal-content .modal-right .q-box p {
  line-height: 1.8;
  color: #444;
  font-size: 1.5rem;
}

.ring-box {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.ring-box::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 20px;
  width: calc(100% - 40px);
  height: 25px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27710/ring.png) repeat-x left top/contain;
  z-index: 5;
  opacity: 0.8;
}
.ring-box .list_disc li {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 5px;
}
.ring-box .list_disc li:hover {
  background-color: #fff9c4;
  -webkit-transform: translateY(-5px) rotate(-1deg);
          transform: translateY(-5px) rotate(-1deg);
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
  color: #e76836;
}

.form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
  background-color: #e76836 !important;
  padding: 7px;
  border-radius: 20px;
}