@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #333333;
  font-family: "YakuHanMP", "Cinzel", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 1.7rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.1em;
  background-color: #fff;
}

a {
  color: rgb(115.4070247934, 108.25, 101.0929752066);
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

#wrapper {
  overflow: hidden;
}

.cover {
  width: 500px;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 639px) {
  .cover {
    height: 210px;
  }
}

.pagearea {
  background-color: #fff;
  border-top: 6px solid #ffffff;
}
.pagearea.border-none {
  border-top: none;
}
.pagearea.gray {
  border-top: 6px solid #e0e0e0;
  background-color: #ffffff;
}
.pagearea.gray2 {
  border-top: 6px solid #e0e0e0;
  background-color: #f5f5f5;
}
.pagearea.bg-green {
  position: relative;
}
.pagearea.bg-green:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/noise.png) repeat;
  background-size: 100px 100px;
  left: 0;
  top: 0;
}
.pagearea.bg-green2 {
  position: relative;
}
.pagearea.bg-green2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/noise2.png) repeat;
  background-size: 100px 100px;
  left: 0;
  top: 0;
}
.pagearea.bottom {
  border-bottom: 6px solid #e0e0e0;
}
.pagearea .inner {
  padding: 60px;
  width: calc(100% - 50px);
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
@media all and (max-width: 1367px) {
  .pagearea {
    padding: 0 20px;
    margin: 0 auto;
  }
}
@media all and (max-width: 896px) {
  .pagearea .inner {
    padding: 50px 0px;
  }
}
@media all and (max-width: 639px) {
  .pagearea {
    width: 100%;
    margin: 0 auto;
    padding: 50px 0 0;
  }
  .pagearea .inner {
    padding: 30px 0;
    margin: 0 auto;
    width: calc(100% - 30px);
  }
  .pagearea.border-none {
    padding: 0px 0 0;
    border-top: none;
  }
}

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

.bold {
  font-weight: 600 !important;
}

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

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

.mincho {
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}

/* 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: #f2edde;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  -webkit-perspective: 100px;
          perspective: 100px;
  width: 100%;
  height: 100vh;
}
.loader::after {
  -webkit-animation: loader 0.5s linear infinite;
          animation: loader 0.5s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -40px;
  margin-left: -40px;
  border: 1px solid #2544B3;
  border-radius: 50%;
  border-right: 1px solid rgba(37, 68, 179, 0.2);
  border-top: 1px solid rgba(37, 68, 179, 0.2);
  content: "";
  height: 80px;
  width: 80px;
}
.loader.off {
  display: none;
}

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

@keyframes rotate {
  0% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}
@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* header
----------------------------------*/
@-webkit-keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
#l-header {
  z-index: 200;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  background-color: #fff;
}
#l-header.is-fixed {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  position: fixed;
  backdrop-filter: blur(16px);
}
#l-header.is-fixed .inner #header_nav {
  margin: 0 0 0 auto;
}
#l-header.is-fixed .inner #header_nav ul li {
  text-shadow: none;
}
#l-header.is-fixed .inner #header_nav ul li a {
  padding-bottom: 0px;
}
#l-header.is-fixed .inner #header_nav ul li a span.eng {
  color: #333;
}
#l-header.is-fixed .inner #header_nav ul li a span.ja {
  color: #444;
}
@media all and (max-width: 1367px) {
  #l-header.is-fixed .header_contact {
    position: absolute;
    right: 30px;
    top: -30px;
  }
  #l-header.is-fixed .header_contact .head-btn {
    width: 40px;
  }
}
@media all and (max-width: 1100px) {
  #l-header.is-fixed .header_contact {
    top: -30px;
  }
  #l-header.is-fixed .header_contact .head-btn {
    width: 40%;
  }
  #l-header.is-fixed #header_nav {
    padding: 0;
    margin: 10px auto 0;
  }
  #l-header.is-fixed #header_nav ul {
    padding: 0;
  }
  #l-header.is-fixed #header_nav ul li a {
    padding-bottom: 0px;
  }
}
@media all and (max-width: 896px) {
  #l-header.is-fixed .header_contact {
    display: none;
  }
}
@media all and (max-width: 639px) {
  #l-header.is-fixed {
    margin-top: 0px;
  }
  #l-header.is-fixed:before {
    display: none;
  }
}
@media all and (max-width: 896px) {
  #l-header {
    background: transparent;
    backdrop-filter: none;
  }
}
@media all and (max-width: 639px) {
  #l-header {
    position: initial;
    margin-top: 10px;
  }
}
#l-header .inner {
  margin: 0 auto;
  padding: 30px 20px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 95%;
}
@media all and (max-width: 1367px) {
  #l-header .inner {
    display: block;
  }
}
@media all and (max-width: 896px) {
  #l-header .inner {
    min-width: initial;
  }
}
#l-header .inner #logo {
  width: 180px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
#l-header .inner #logo .logo1 {
  display: block;
}
#l-header .inner #logo .logo2 {
  display: none;
}
@media all and (max-width: 1860px) {
  #l-header .inner #logo {
    width: 160px;
  }
}
@media all and (max-width: 1100px) {
  #l-header .inner #logo {
    width: 115px;
  }
}
#l-header .header_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  z-index: 2;
}
@media all and (max-width: 1367px) {
  #l-header .header_contact {
    position: absolute;
    right: 30px;
    top: 40px;
  }
}
@media all and (max-width: 1100px) {
  #l-header .header_contact {
    right: 30px;
    top: 30px;
    padding-right: 0px;
  }
}
@media all and (max-width: 896px) {
  #l-header .header_contact {
    top: 30px;
    display: none;
  }
}
@media all and (max-width: 639px) {
  #l-header .header_contact {
    display: none;
    top: -40px;
  }
}
#l-header .head-btn a {
  display: block;
  position: relative;
  margin-left: 5px;
  width: 30px;
}
#l-header .head-btn a:hover {
  opacity: 0.4;
}
@media all and (max-width: 1100px) {
  #l-header .head-btn {
    width: 40px;
  }
}
@media all and (max-width: 639px) {
  #l-header .head-btn {
    width: 30px;
  }
}

#header_nav {
  position: relative;
  margin-left: auto;
  text-align: center;
  z-index: 1;
  width: 850px;
}
#header_nav ul {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1000px;
}
#header_nav ul li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  color: #ebebeb;
}
#header_nav ul li a {
  display: block;
  position: relative;
  line-height: 1.5;
  font-size: 1.7rem;
  padding: 10px 14px;
  color: #505050;
  font-family: "Noto Sans JP", sans-serif, "Cinzel", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 700;
}
#header_nav ul li a .eng {
  display: block;
  font-size: 1.3rem;
  font-family: "Arvo", serif;
  font-weight: 400;
  color: #817971;
  position: relative;
  letter-spacing: 0.1rem;
}
#header_nav ul li a:after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background: #2544B3;
  left: 0;
  bottom: 0px;
  -webkit-transition: 0.2s width ease-in;
  transition: 0.2s width ease-in;
}
@media all and (max-width: 1100px) {
  #header_nav ul li a:after {
    right: 0;
    text-align: center;
    margin: 0 auto;
  }
}
#header_nav ul li:hover a .eng, #header_nav ul li.active a .eng {
  color: #B5A7C5;
}
#header_nav ul li:hover a, #header_nav ul li.active a {
  -webkit-transition: 0.2s width ease-in;
  transition: 0.2s width ease-in;
}
#header_nav ul li .sub-menu {
  display: none;
  border-top: 0;
  display: none;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  width: 260px;
  -webkit-transiton: opacity 0.2s;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 40px;
  padding: 20px;
}
#header_nav ul li .sub-menu li {
  width: 100%;
  margin: 0 auto 5px;
  background-color: #2544B3;
  padding: 10px 15px 10px 30px;
  margin-bottom: 4px;
  position: relative;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
#header_nav ul li .sub-menu li:before {
  position: absolute;
  content: "";
  left: 17px;
  top: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #fff;
}
#header_nav ul li .sub-menu li a {
  display: block;
  font-weight: normal;
  font-size: 1.2rem;
  color: #fff;
  padding: 0;
  text-shadow: none;
}
#header_nav ul li .sub-menu li:hover {
  background-color: rgb(151, 151, 151);
}
#header_nav ul li:hover .sub-menu, #header_nav ul li.active .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
#header_nav ul li:hover .header_link, #header_nav ul li.active .header_link {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  position: relative;
}
#header_nav ul li:hover .header_link:before, #header_nav ul li.active .header_link:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  left: 0;
  right: 0;
  top: -6px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: rgba(181, 167, 197, 0.4);
  z-index: -1;
}
#header_nav ul li:hover .header_link.type2:before, #header_nav ul li.active .header_link.type2:before {
  background-color: rgba(104, 175, 216, 0.4);
}
#header_nav ul li:hover .header_link.type3:before, #header_nav ul li.active .header_link.type3:before {
  background-color: rgba(230, 196, 5, 0.4);
}
#header_nav ul li:hover .header_link.type4:before, #header_nav ul li.active .header_link.type4:before {
  background-color: rgba(211, 221, 76, 0.4);
}
@media all and (max-width: 1367px) {
  #header_nav ul li a {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 1100px) {
  #header_nav {
    text-align: center;
    margin: 20px auto 0px;
    width: 100%;
    border-radius: 10px;
  }
  #header_nav ul li a {
    font-size: 1.3rem;
  }
  #header_nav ul li a .eng {
    font-size: 1rem;
  }
}
#header_nav.UpMove {
  position: fixed;
  width: 100%;
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}
#header_nav.DownMove {
  position: fixed;
  top: 0;
  margin: 0 auto;
  width: 100%;
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
  background-color: white;
  -webkit-box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
}
#header_nav.DownMove ul {
  width: 100%;
  margin-right: 5%;
}
#header_nav.DownMove ul li a {
  color: #000;
}
#header_nav.DownMove ul li a .eng {
  color: #B5A7C5;
}
#header_nav.DownMove ul li:hover a, #header_nav.DownMove ul li.active a {
  color: #fff;
  -webkit-transition: 0.2s width ease-in;
  transition: 0.2s width ease-in;
  background-color: #2544B3;
}
#header_nav.DownMove ul li:hover a .eng, #header_nav.DownMove ul li.active a .eng {
  color: #fff;
}
#header_nav.DownMove ul li:hover .sub-menu a, #header_nav.DownMove ul li.active .sub-menu a {
  background-color: transparent;
  color: #fff;
}
@media all and (max-width: 1367px) {
  #header_nav.DownMove ul {
    margin-right: 1%;
    width: 60%;
  }
  #header_nav.DownMove ul li a {
    font-size: 1.3rem;
  }
}
@media all and (max-width: 1100px) {
  #header_nav.DownMove ul {
    width: 100%;
    max-width: 670px;
  }
}

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

/* swiper
----------------------------------*/
@-webkit-keyframes zoom-in {
  0% {
    -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);
  }
}
@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: translate(-100vw, 0);
            transform: translate(-100vw, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes slideIn {
  0% {
    -webkit-transform: translate(-100vw, 0);
            transform: translate(-100vw, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes slideIn2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideIn2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    background: rgba(255, 255, 255, 0.5);
  }
  100% {
    background: rgba(255, 255, 255, 0.9);
  }
}
@keyframes fadeIn {
  0% {
    background: rgba(255, 255, 255, 0.5);
  }
  100% {
    background: rgba(255, 255, 255, 0.9);
  }
}
.swiper-slide {
  position: relative;
}

.slide-img {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  width: 100%;
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
  opacity: 0;
  -webkit-animation: slideIn2 3s cubic-bezier(0.7, 0, 0.3, 1) 1s forwards;
          animation: slideIn2 3s cubic-bezier(0.7, 0, 0.3, 1) 1s forwards;
}
.slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -o-object-position: center 80%;
     object-position: center 80%;
}
@media all and (max-width: 1100px) {
  .slide-img {
    height: 50vh;
  }
}
@media all and (max-width: 896px) {
  .slide-img {
    height: 70vw;
  }
}
@media all and (max-width: 639px) {
  .slide-img {
    height: 62vh;
    width: 100%;
  }
}

#slide-wrap {
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: 0 auto;
  height: 100vh;
}
@media all and (max-width: 1100px) {
  #slide-wrap {
    height: 55vh;
  }
}
@media all and (max-width: 896px) {
  #slide-wrap {
    height: 70vw;
  }
}
@media all and (max-width: 639px) {
  #slide-wrap {
    display: block;
    height: 100%;
  }
}

.slide-leftarea {
  background-color: #ddd;
  padding: 100px 0;
  position: relative;
}
@media all and (max-width: 639px) {
  .slide-leftarea {
    padding: 150px 0;
  }
}
.slide-leftarea:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #f1f4ff;
  background-size: cover;
  top: 0;
  left: 0;
}

#slideshow {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  #slideshow {
    margin: 0px auto 0;
  }
}

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

.slide-fixed {
  position: absolute;
  left: 50%;
  bottom: 2%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 500px;
  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;
  z-index: 20;
}
@media all and (max-width: 896px) {
  .slide-fixed {
    width: 50%;
  }
}
.slide-fixed li {
  width: 31%;
}
@media all and (max-width: 639px) {
  .slide-fixed {
    width: 60%;
  }
}

.catch-txt {
  z-index: 1;
  font-weight: 500;
  position: absolute;
  top: 44%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  font-size: 2rem;
  width: 100%;
}
@media all and (max-width: 896px) {
  .catch-txt {
    top: 28%;
    font-size: 1.8rem;
  }
}
.catch-txt .updown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.catch-txt span {
  -webkit-transform: translateY(110%);
  transform: translateY(110%);
  display: block;
  -webkit-animation: updown-anim 1s ease-out 3s forwards;
  animation: updown-anim 1s ease-out 3s forwards;
}
@-webkit-keyframes updown-anim {
  0% {
    -webkit-transform: translateY(110%);
    transform: translateY(110%);
    /*表示範囲外から*/
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    /*通常の位置へ*/
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    /*文字が上に揃うまで待機*/
  }
}
@keyframes updown-anim {
  0% {
    -webkit-transform: translateY(110%);
    transform: translateY(110%);
    /*表示範囲外から*/
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    /*通常の位置へ*/
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    /*文字が上に揃うまで待機*/
  }
}
.catch-txt .updown span:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.catch-txt .updown span:nth-child(2) {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}
.catch-txt .updown span:nth-child(3) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.catch-txt .updown span:nth-child(4) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.catch-txt .updown span:nth-child(5) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.catch-txt .updown span:nth-child(6) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.catch-txt .updown span:nth-child(7) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.catch-txt .updown span:nth-child(8) {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}
.catch-txt .updown span:nth-child(9) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.catch-txt .updown span:nth-child(10) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.catch-txt .updown span:nth-child(11) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.catch-txt .updown span:nth-child(12) {
  -webkit-animation-delay: 0.55s;
          animation-delay: 0.55s;
}
.catch-txt .updown span:nth-child(13) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

#catch {
  z-index: 50;
  position: absolute;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  font-size: 4rem;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transition: opacity 2s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: opacity 2s cubic-bezier(0.18, 0.06, 0.23, 1);
  opacity: 0;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.6));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.6));
  color: #fff;
}
@media all and (max-width: 1100px) {
  #catch {
    width: 80%;
    font-size: 3.5rem;
  }
}
@media all and (max-width: 639px) {
  #catch {
    width: 90%;
    font-size: 1.7rem;
  }
}
#catch {
  -webkit-animation: view-zoomin 1s ease-out 3.4s forwards;
          animation: view-zoomin 1s ease-out 3.4s forwards;
}

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

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

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}
/* contact_bnr
----------------------------------*/
.contact_bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px; /* ボタン同士の間隔を統一 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact_bnr > li {
  width: 100%;
  max-width: 320px;
  /* すべてのボタンに共通するベースデザイン */
}
.contact_bnr > li a {
  display: block;
  text-align: center;
  vertical-align: middle;
  font-weight: 600;
  line-height: 1.5;
  padding: 15px 8px; /* サイズ（高さ・幅）の統一 */
  border-radius: 50px; /* カプセル形状の統一 */
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; /* シンプルなアニメーション */
  /* ホバー時のシンプルな動き（少し浮き上がり、わずかに透過） */
}
.contact_bnr > li a:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.contact_bnr > li a {
  /* アイコン共通の右余白 */
}
.contact_bnr > li a i, .contact_bnr > li a:before {
  margin-right: 12px;
}
.contact_bnr > li {
  /* 電話番号ボタン（他のボタンと形状を統一） */
}
.contact_bnr > li .bnr_tel {
  background: rgb(232.698630137, 228.4794520548, 237.5205479452); /* 押しやすいように背景色を設定 */
  color: rgb(129.301369863, 105.5205479452, 156.4794520548);
  font-size: 2.2rem;
  font-family: "Cinzel", serif;
  font-weight: 500;
}
.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  font-size: 0.9em;
}
@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_tel {
    font-size: 1.8rem;
  }
}
.contact_bnr > li {
  /* Instagramボタン */
}
.contact_bnr > li .bnr_instagram {
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%);
  color: #fefefe;
  font-size: 1.8rem;
}
@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_instagram {
    font-size: 1.5rem;
  }
}

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

#l-footer {
  font-size: 1.4rem;
  position: relative;
  width: 100%;
  padding: 20px;
  background-color: #fff;
}
#l-footer .inner {
  padding: 40px 20px 40px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
}
#l-footer .footer-column {
  margin: 0 auto;
  color: #333333;
  position: relative;
  z-index: 2;
  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;
  max-width: 1000px;
}
#l-footer .footer-column .footer-left {
  width: 50%;
}
#l-footer .footer-column .footer-right {
  width: 50%;
}
#l-footer .footer-txt {
  padding-left: 8px;
}
#l-footer .footer-txt span {
  background: #2544B3;
  padding: 5px 10px;
  font-size: 13px;
  color: #fefefe;
}
@media all and (max-width: 1100px) {
  #l-footer .footer-column {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    max-width: 80%;
  }
  #l-footer .footer-column .footer-left {
    font-size: 12px;
    width: 100%;
  }
  #l-footer .footer-column .footer-middle {
    width: 50%;
  }
  #l-footer .footer-column .footer-right {
    width: 100%;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (max-width: 896px) {
  #l-footer .footer-column {
    max-width: 100%;
    display: block;
  }
  #l-footer .footer-column .contact_bnr {
    text-align: center;
  }
}
@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
    padding: 0 20px;
  }
  #l-footer .inner {
    padding: 40px 0px 0;
  }
  #l-footer .inner .right-inner {
    padding: 8px;
    font-size: 12px;
  }
  #l-footer .footer-txt {
    font-size: 1rem;
  }
  #l-footer .footer-column {
    max-width: 100%;
    display: block;
  }
  #l-footer .footer-column .footer-left,
  #l-footer .footer-column .footer-middle {
    width: 100%;
    padding: 40px 20px;
  }
  #l-footer .footer-column .footer-middle {
    margin-top: 25px;
  }
  #l-footer .footer-column .contact_bnr {
    text-align: center;
  }
}

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

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

/* footer_navi
----------------------------------*/
.footer_navi {
  padding: 15px 10px 10px;
  margin: 0 auto;
}
.footer_navi ul {
  margin: 0 auto;
  max-width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer_navi ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  margin-bottom: 4px;
  border-right: 1px solid #2544B3;
}
.footer_navi ul li a {
  color: #817971;
  font-size: 1.3rem;
  position: relative;
  text-align: center;
  display: block;
}
.footer_navi ul li a .ja {
  display: none;
}
.footer_navi ul li a:hover {
  color: #2544B3;
}
.footer_navi ul li .sub-menu {
  display: none;
}
.footer_navi ul li .dropdown {
  display: none;
}
.footer_navi ul li .dropdown .dropdon-li a {
  font-size: 1.2rem;
}

.flogo {
  max-width: 250px;
  position: relative;
  z-index: 5;
  margin: 0 auto 30px;
  text-align: center;
}
@media all and (max-width: 1100px) {
  .flogo {
    max-width: 200px;
    margin: 0 auto 20px;
  }
}
@media all and (max-width: 896px) {
  .flogo {
    margin: 0 auto 40px;
    max-width: 150px;
    text-align: center;
  }
}

.footer-btn {
  position: absolute;
  right: 10px;
  top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer-btn .head-btn {
  margin-left: 5px;
  width: 40px;
}
.footer-btn .head-btn:hover {
  opacity: 0.6;
}
@media all and (max-width: 1100px) {
  .footer-btn {
    right: -20px;
    top: 25px;
  }
  .footer-btn .head-btn {
    margin-left: 5px;
    width: 30px;
  }
  .footer-btn .head-btn:hover {
    opacity: 0.6;
  }
}
@media all and (max-width: 896px) {
  .footer-btn {
    position: initial;
    left: 0;
    right: 0;
    margin: 0 auto 20px;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer-column-area {
  margin-bottom: 30px;
}
@media all and (max-width: 896px) {
  .footer-column-area {
    margin-bottom: 0;
  }
}

.footer-facebook iframe {
  height: 370px;
  width: 100%;
}
@media all and (max-width: 639px) {
  .footer-facebook {
    margin-top: 40px;
  }
}

.copyright {
  padding: 0px 0;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 13px 0;
  background-color: #2544B3;
}
@media all and (max-width: 896px) {
  .copyright {
    font-size: 12px;
    padding: 30px 0;
  }
}
@media all and (max-width: 639px) {
  .copyright {
    padding: 20px 0;
  }
}

/*----------------------------------
 top-contents
----------------------------------*/
.top-gray-box {
  position: relative;
}
.top-gray-box:before {
  position: absolute;
  content: "";
  z-index: -2;
  width: 70%;
  height: 100%;
  top: -4%;
  left: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#B5A7C5), to(#f3f6f6));
  background-image: linear-gradient(to right, #B5A7C5, #f3f6f6);
  opacity: 0.7;
}

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

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

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

.title38 {
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 3.8rem;
}
@media all and (max-width: 896px) {
  .title38 {
    font-size: 3rem;
  }
}
@media all and (max-width: 639px) {
  .title38 {
    font-size: 2.4rem;
  }
}

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

.title34 {
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 3.4rem;
}
@media all and (max-width: 896px) {
  .title34 {
    font-size: 2.7rem;
  }
}
@media all and (max-width: 639px) {
  .title34 {
    font-size: 2.1rem;
  }
}

.title32 {
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 3.4rem;
}
@media all and (max-width: 896px) {
  .title32 {
    font-size: 2.7rem;
  }
}
@media all and (max-width: 639px) {
  .title32 {
    font-size: 2.1rem;
  }
}

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

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

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

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

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

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

.title14 {
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 1.4rem;
}
@media all and (max-width: 896px) {
  .title14 {
    font-size: 1.3rem;
  }
}
@media all and (max-width: 639px) {
  .title14 {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
}

.title12 {
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 1.2rem;
}
@media all and (max-width: 896px) {
  .title12 {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 639px) {
  .title12 {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
}

.title-big {
  margin-bottom: 10px;
  text-align: center;
  position: relative;
}
.title-big .eng {
  font-family: "Kaisei Opti", serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 3.5rem;
  color: #2544B3;
  line-height: 1.3;
  display: inline-block;
  background: #2544B3;
  background: -webkit-gradient(linear, left top, right top, from(#2544B3), to(#2544B3));
  background: linear-gradient(to right, #2544B3, #2544B3);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.title-big .ja {
  padding-left: 20px;
  color: #817971;
  font-size: 2rem;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .title-big .eng {
    font-size: 3.5rem;
    line-height: 1;
  }
  .title-big .ja {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}

.title-big2 {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}
.title-big2 span {
  display: block;
  line-height: 1.2;
}
.title-big2 .eng {
  font-size: 4rem;
  color: rgb(232.698630137, 228.4794520548, 237.5205479452);
  font-family: "Kaisei Opti", serif;
  font-weight: 400;
  text-transform: uppercase;
}
.title-big2 .ja {
  font-size: 2rem;
  color: #fff;
}
@media all and (max-width: 639px) {
  .title-big2 .eng {
    font-size: 2.5rem;
  }
  .title-big2 .ja {
    font-size: 1.5rem;
  }
}
.title-big2.white .eng {
  color: #fff;
}
.title-big2.white .ja {
  color: #fff;
}

.title-big3 {
  padding-left: 30px;
  margin: 30px 0;
  position: relative;
  z-index: 3;
}
.title-big3 span {
  display: block;
  line-height: 1.4;
}
.title-big3 .eng {
  font-family: "Kaisei Opti", serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 3.5vw;
  color: #B5A7C5;
  display: inline-block;
  background: #B5A7C5;
  background-image: linear-gradient(135deg, #835315 0%, #ffce08 37%, #918417 47%, #a08924 50%, #a08633 53%, #e1ce08 63%, #85591f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.title-big3 .ja {
  font-size: 3rem;
  position: relative;
  z-index: 2;
  line-height: 1.3;
  letter-spacing: 0.2em;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #333333;
}
@media screen and (max-width: 890px) and (orientation: landscape) {
  .title-big3 {
    padding-left: 8px;
  }
  .title-big3 .eng {
    font-size: 3rem;
  }
  .title-big3 .ja {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .title-big3 {
    padding-left: 8px;
  }
  .title-big3 .eng {
    font-size: 3rem;
  }
  .title-big3 .ja {
    font-size: 2rem;
  }
}

.title-big4 {
  text-align: center;
  position: relative;
  max-width: 90%;
  margin: 40px auto;
}
.title-big4 .inner {
  position: relative;
  display: inline-block;
}
.title-big4 .inner:before, .title-big4 .inner:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  bottom: 0;
  margin-top: -2rem;
  width: 1px;
  height: 4rem;
  background-color: #2544B3;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
.title-big4 .inner:before {
  left: -30px;
}
.title-big4 .inner:after {
  right: -30px;
}
@media all and (max-width: 639px) {
  .title-big4 .inner:before {
    left: -5px;
  }
  .title-big4 .inner:after {
    right: -5px;
  }
}
.title-big4 .txt {
  display: inline-block;
  font-size: 2rem;
  font-weight: 500;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
.title-big4 .txt .eng {
  font-style: normal;
  font-family: "Kaisei Opti", serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 6rem;
  line-height: 1.2;
  color: #2544B3;
}
@media all and (max-width: 639px) {
  .title-big4 .txt {
    font-size: 1.4rem;
  }
  .title-big4 .txt .eng {
    font-size: 3.5rem;
  }
}

.title-big4-q {
  margin: 0 auto;
  text-align: center;
  max-width: 600px;
}
.title-big4-q img {
  width: 100%;
}

.pick-title {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  padding-left: 30px;
  margin-bottom: -15px;
}
.pick-title .eng {
  line-height: 1;
  font-family: "Kaisei Opti", serif;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  font-size: 3.2rem;
  color: #2544B3;
}
.pick-title:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 40px;
  top: -20px;
  left: 0;
  background: #2544B3;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
@media all and (max-width: 639px) {
  .pick-title {
    font-size: 1.4rem;
  }
  .pick-title .eng {
    font-size: 2.2rem;
  }
  .pick-title:before {
    left: 10px;
  }
}

.top-btn a {
  display: block;
  margin: 0 auto;
  width: 350px;
  padding: 15px 20px;
  font-weight: 600;
  background: #817971;
  color: #f2edde;
  border-top: 2px solid #e2ceaf;
  border-bottom: 2px solid #e2ceaf;
  position: relative;
}
.top-btn a i {
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.topic-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 80px;
}
.topic-list > li {
  width: 44%;
  margin-bottom: 70px;
  position: relative;
  margin-right: 4%;
}
.topic-list > li:nth-child(even) {
  -webkit-transform: translateY(-70px);
          transform: translateY(-70px);
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .topic-list > li:nth-child(even) {
    margin-right: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.topic-list > li:nth-child(3n-1) .topic-inner {
  background: rgb(32.6319444444, 59.9722222222, 157.8680555556);
}
.topic-list > li:nth-child(3n) .topic-inner {
  background: #817971;
}
.topic-list > li:nth-child(3), .topic-list > li:nth-child(4) {
  margin-left: 2%;
}
.topic-list > li:nth-child(5), .topic-list > li:nth-child(6) {
  margin-left: 4%;
}
@media all and (max-width: 896px) {
  .topic-list > li {
    margin-bottom: 40px;
  }
}
@media all and (max-width: 639px) {
  .topic-list > li {
    width: 90%;
    margin-right: 0;
  }
  .topic-list > li:nth-child(3), .topic-list > li:nth-child(4) {
    margin-left: 0;
  }
  .topic-list > li:nth-child(5), .topic-list > li:nth-child(6) {
    margin-left: 0;
  }
  .topic-list > li:nth-child(even) {
    margin-right: 0;
    -webkit-transform: none;
            transform: none;
    margin-left: auto;
  }
}
.topic-list > li .topic-inner {
  width: 100%;
  height: 100%;
  background: #B5A7C5;
  position: relative;
}
.topic-list > li figure {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  height: 100%;
  width: 50%;
}
.topic-list > li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  opacity: 0.6;
}
@media all and (max-width: 896px) {
  .topic-list > li figure {
    width: 100%;
    height: 100%;
  }
}
.topic-list > li .topic-num {
  display: block;
  position: absolute;
}
.topic-list > li .topic-num:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 55px;
  bottom: 0;
  right: -10px;
  background: #fff;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
@media all and (max-width: 639px) {
  .topic-list > li .topic-num:before {
    height: 35px;
  }
}
.topic-list > li .topic-num {
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: 7rem;
  line-height: 1;
  color: #fff;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
}
@media all and (max-width: 896px) {
  .topic-list > li .topic-num {
    left: 50%;
    top: 20px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media all and (max-width: 639px) {
  .topic-list > li .topic-num {
    font-size: 4rem;
    top: 30px;
  }
}
.topic-list > li .topic-txt {
  position: relative;
  padding: 50px 30px 50px 40%;
  color: #fff;
}
@media all and (max-width: 896px) {
  .topic-list > li .topic-txt {
    padding: 100px 20px 20px;
  }
}
@media all and (max-width: 639px) {
  .topic-list > li .topic-txt {
    padding: 80px 15px 25px;
  }
}
.topic-list > li .topic-title {
  font-weight: 600;
  color: #fff;
  font-size: 2rem;
}
@media all and (max-width: 639px) {
  .topic-list > li .topic-title {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .topic-list {
    padding: 0 10px;
  }
}

.icon-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 30px auto 0;
}
@media all and (max-width: 639px) {
  .icon-list {
    max-width: 90%;
  }
}
.icon-list.type1 {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.icon-list li {
  width: 31%;
  margin-bottom: 30px;
  margin-right: 3.495%;
}
.icon-list li:nth-child(3n) {
  margin-right: 0;
}
.icon-list li figure {
  margin: 0 auto;
  text-align: center;
}
.icon-list li a {
  display: block;
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
  height: 100%;
  -webkit-transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  position: relative;
  padding: 25px 0;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1), -webkit-transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
}
@media all and (max-width: 639px) {
  .icon-list li a {
    padding: 18px 0;
  }
}
.icon-list li a figure {
  margin: 0 auto 10px;
  width: 70px;
}
@media all and (max-width: 639px) {
  .icon-list li a figure {
    width: 60px;
    margin-bottom: 10px;
  }
}
.icon-list li a .icon-title {
  color: #817971;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
}
@media all and (max-width: 639px) {
  .icon-list li a .icon-title {
    padding: 5px;
  }
}
.icon-list li a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: -webkit-gradient(linear, left top, right bottom, from(#fff), to(#f2edde));
  background-image: linear-gradient(to right bottom, #fff, #f2edde);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1), -webkit-transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  z-index: -1;
}
.icon-list li a:hover:before {
  -webkit-transform: translate(-50%, -50%) scale(1.07, 1.02);
          transform: translate(-50%, -50%) scale(1.07, 1.02);
  opacity: 1;
}
.icon-list li a:hover {
  z-index: 2;
}
.icon-list li a:hover .icon-title {
  color: #2544B3;
}
@media all and (max-width: 639px) {
  .icon-list li {
    width: 48%;
    margin-bottom: 15px;
    margin-right: 4%;
  }
  .icon-list li:nth-child(3n) {
    margin-right: 4%;
  }
  .icon-list li:nth-child(2n) {
    margin-right: 0;
  }
}
.icon-list.type2 li {
  width: 23%;
  margin-right: 2.6666666667%;
}
.icon-list.type2 li:nth-child(3n) {
  margin-right: 2.6666666667%;
}
.icon-list.type2 li:nth-child(4n) {
  margin-right: 0;
}

.sec6 {
  position: relative;
  color: #fff;
}
.sec6:before, .sec6:after {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  left: 0;
}
.sec6:before {
  height: 100%;
  background: #B5A7C5;
}
.sec6:after {
  height: 80%;
  background: url(../img/bg-sec6.jpg) no-repeat center/cover;
}
@media all and (max-width: 1100px) {
  .sec6:after {
    height: 100%;
  }
}

.sec6-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}
.sec6-wrap .sec6-img {
  width: 25%;
}
.sec6-wrap .sec6-txt {
  width: 65%;
  padding: 40px;
  line-height: 2;
}
.sec6-wrap .sec6-name {
  font-size: 4rem;
}
.sec6-wrap .sec6-name .small {
  font-size: 2rem;
  padding-right: 10px;
}
.sec6-wrap .sec6-name .eng {
  font-family: "Kaisei Opti", serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 3rem;
  letter-spacing: 0.2em;
  padding-left: 20px;
}
@media all and (max-width: 639px) {
  .sec6-wrap .sec6-name {
    font-size: 2.2rem;
    line-height: 1.3;
  }
  .sec6-wrap .sec6-name .small {
    font-size: 1.3rem;
  }
  .sec6-wrap .sec6-name .eng {
    font-size: 1.5rem;
    display: block;
  }
}
@media all and (max-width: 1100px) {
  .sec6-wrap {
    margin-bottom: 0;
  }
  .sec6-wrap .sec6-img {
    width: 35%;
  }
  .sec6-wrap .sec6-txt {
    padding: 25px;
  }
}
@media all and (max-width: 639px) {
  .sec6-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sec6-wrap .sec6-img {
    width: 60%;
    margin-bottom: 25px;
  }
  .sec6-wrap .sec6-txt {
    width: 100%;
    padding: 15px;
  }
}

.title01 {
  line-height: 1.4;
}
.title01 span {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2544B3;
  font-family: "Kaisei Opti", serif;
  font-weight: 600;
  text-transform: uppercase;
}
.title01 {
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: #68afd8;
}
@media all and (max-width: 639px) {
  .title01 span {
    font-size: 1.43em;
  }
  .title01 {
    font-size: 1.4rem;
  }
}
.title01.white span {
  color: #fff;
}
.title01.white {
  color: #fcfcfc;
}

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

.title03 {
  background: #f2edde;
  color: #817971;
  padding: 8px 15px;
  font-weight: 600;
  margin-top: 10px;
  font-size: 2rem;
  margin-bottom: 50px;
  position: relative;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
.title03 span {
  font-family: "Kaisei Opti", serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #2544B3;
  margin-right: 8px;
}
@media all and (max-width: 639px) {
  .title03 {
    font-size: 1.4rem;
  }
}
.title03:before, .title03:after {
  position: absolute;
  content: "";
  left: 0;
  height: 6px;
}
.title03:before {
  width: 25%;
  top: -6px;
  background: #2544B3;
}
.title03:after {
  width: 40%;
  bottom: -6px;
  background: #2544B3;
  opacity: 0.7;
}

.title04 {
  padding: 8px 0;
  text-align: center;
  background: #2544B3;
  margin-bottom: 15px;
  color: #fff;
}
.title04.type1 {
  background: #599b64;
  color: #817971;
}

/* --news--
----------------------------------*/
.news-box-area {
  color: #111;
  padding: 20px 10px;
}

.news-box {
  margin: 0 auto 0;
  max-width: 1200px;
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 896px) {
  .news-box {
    margin-top: 0;
  }
}
@media all and (max-width: 639px) {
  .news-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 10px;
    margin-bottom: 0px;
  }
}
.news-box .scrollbar {
  min-height: 50px;
}

.news-title {
  text-align: center;
  text-align: center;
  border-right: 1px solid rgb(92, 92, 92);
  padding-right: 20px;
  width: 20%;
  position: relative;
}
.news-title span {
  display: block;
}
.news-title .eng {
  font-family: "Kaisei Opti", serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #2544B3;
  position: relative;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
}
.news-title .ja {
  font-size: 2rem;
  position: relative;
  margin: 0 auto;
  color: rgb(0, 0, 0);
  max-height: 150px;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  .news-title {
    margin-bottom: 30px;
  }
  .news-title .eng {
    font-size: 2.5rem;
  }
  .news-title .ja {
    font-size: 1.5rem;
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    margin-bottom: 0;
  }
}

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

.topic-dl .topic-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px dotted #ccc;
  position: relative;
  padding: 15px 0;
}
.topic-dl .topic-inner:last-child {
  border-bottom: 1px dotted #ccc;
}
.topic-dl .topic-inner dt {
  width: 7em;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
}
@media all and (max-width: 639px) {
  .topic-dl .topic-inner dt {
    font-size: 12px;
  }
}
.topic-dl .topic-inner dd {
  padding-left: 20px;
}
.topic-dl .topic-inner dd a {
  font-weight: 600;
}
.topic-dl .topic-inner dd a:hover {
  color: #2544B3;
}
@media all and (max-width: 639px) {
  .topic-dl {
    padding-bottom: 40px;
  }
}
.topic-dl .category {
  background: #fff;
  border: 1px solid #B5A7C5;
  color: #B5A7C5;
  padding: 5px;
  margin-right: 30px;
  min-width: 140px;
  text-align: center;
}

.top-bg {
  background: url(../img/top-bg01.jpg) no-repeat center/cover;
  background-attachment: fixed;
  height: 400px;
}
@media all and (max-width: 1100px) {
  .top-bg {
    background-attachment: scroll;
  }
}

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

/* top-anime
----------------------------------*/
.anime-bg {
  position: relative;
}
.anime-bg:before {
  position: absolute;
  content: "";
  width: 100%;
  max-width: 1460px;
  height: 130%;
  top: -50px;
  left: -100px;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  background: rgba(37, 68, 179, 0.7);
  -webkit-animation: photo-anime 1.2s ease-in-out forwards;
          animation: photo-anime 1.2s ease-in-out forwards;
  z-index: -1;
}
@media all and (max-width: 1860px) {
  .anime-bg:before {
    left: -10%;
    width: 120%;
    max-width: 1600px;
    height: 130%;
  }
}
@media all and (max-width: 1100px) {
  .anime-bg:before {
    left: -10%;
    width: 120%;
    height: 130%;
  }
}

@-webkit-keyframes photo-anime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1.2);
            transform: scaleX(1.2);
  }
  70% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  71% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes photo-anime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1.2);
            transform: scaleX(1.2);
  }
  70% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  71% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.anime-bg2 {
  position: relative;
}
.anime-bg2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 140%;
  top: -20%;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  background: rgba(131, 185, 110, 0.5);
  -webkit-animation: photo-anime2 1.2s ease-in-out forwards;
          animation: photo-anime2 1.2s ease-in-out forwards;
  z-index: -1;
}

@-webkit-keyframes photo-anime2 {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  80% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  81% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes photo-anime2 {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  80% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  81% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
/* top-area
----------------------------------*/
@-webkit-keyframes circle-anime {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  5% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes circle-anime {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  5% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes circle-anime2 {
  0% {
    opacity: 0;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  15% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes circle-anime2 {
  0% {
    opacity: 0;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  15% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.top {
  position: relative;
}

.top-banner:hover {
  opacity: 0.7;
}

.top-point-box {
  margin-bottom: 0;
}
.top-point-box.type2 .photo:before {
  background-color: #817971;
}
.top-point-box .inner {
  margin: 0 auto;
  max-width: 1500px;
  padding: 100px 0;
}
.top-point-box .txtarea {
  margin: 0 auto;
}
.top-point-box .txtarea .sub {
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 2rem;
}
.top-point-box .txtarea .typing {
  font-size: 5rem;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
.top-point-box .txtarea .typing span:nth-child(7) {
  width: 30px;
}
.top-point-box .subtxtarea {
  margin-top: 60px;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
}
.top-point-box .photo {
  position: relative;
  z-index: 1;
}
.top-point-box .photo:before {
  position: absolute;
  content: "";
  width: 130%;
  height: 60%;
  background: rgba(37, 68, 179, 0.3);
  z-index: -1;
  right: -80%;
  top: 20%;
  opacity: 0.7;
}
.top-point-box .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-point-box .point-deco {
  position: relative;
  z-index: 1;
}
.top-point-box .point-deco:before {
  position: absolute;
  content: "";
  width: 130%;
  height: 60%;
  background-color: #B5A7C5;
  z-index: -1;
  left: -40%;
  top: 20%;
  opacity: 0.7;
}
.top-point-box .point-flower {
  text-align: center;
  margin: 0 auto;
  mix-blend-mode: luminosity;
}
.top-point-box .eng-title {
  position: absolute;
  bottom: -7%;
  right: 10%;
  font-size: 7rem;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media all and (max-width: 1100px) {
  .top-point-box .eng-title {
    font-size: 5rem;
    bottom: -4%;
    line-height: 1.2;
  }
}
@media all and (max-width: 639px) {
  .top-point-box .inner {
    padding: 50px 0;
  }
  .top-point-box .txtarea {
    margin: 0 auto;
  }
  .top-point-box .txtarea .sub {
    font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
  }
  .top-point-box .txtarea .typing {
    font-size: 2.6rem;
    font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 500;
  }
  .top-point-box .txtarea .typing span:nth-child(7) {
    width: 10px;
  }
  .top-point-box .eng-title {
    font-size: 3rem;
    bottom: -8%;
    right: 4%;
  }
  .top-point-box .point-flower {
    width: 30%;
  }
  .top-point-box .subtxtarea {
    font-size: 1.4rem;
  }
  .top-point-box .photo {
    margin-top: 40px;
    height: 220px;
  }
  .top-point-box .photo img {
    height: 220px;
  }
}

.top-gallery {
  position: relative;
}
.top-gallery .inner {
  position: relative;
}
.top-gallery .titlearea {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 400px;
  padding: 40px;
  background-color: rgba(245, 245, 245, 0.5);
  backdrop-filter: blur(12px);
}
@media all and (max-width: 639px) {
  .top-gallery .titlearea {
    max-width: 300px;
    padding: 20px 40px 20px;
  }
}

/* page content
----------------------------------*/
.page-concept {
  margin: 100px auto 0;
  position: relative;
}
.page-concept:before {
  position: absolute;
  content: "";
  width: 140%;
  height: 125%;
  right: -10%;
  top: -10%;
  background-color: rgba(181, 167, 197, 0.6);
  z-index: -1;
}
.page-concept li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #fff;
}
.page-concept .concept-icon {
  width: 10%;
  max-width: 60px;
}
.page-concept .concept-txt {
  width: 88%;
  margin: 0 auto 0px 2%;
}

.product-list {
  max-width: 1500px;
  margin: 100px auto 0px;
}
.product-list .photo {
  height: 500px;
  display: block;
  overflow: hidden;
}
.product-list .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-list .photo:hover img {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  -webkit-transform: scale(1.12);
          transform: scale(1.12);
}
.product-list .txtarea {
  padding: 20px 0;
}
.product-list .title {
  text-align: center;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
}
.product-list .title:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  background-color: #333;
}
@media all and (max-width: 639px) {
  .product-list .photo {
    height: 200px;
    display: block;
    overflow: hidden;
  }
  .product-list .txtarea {
    padding: 20px 0;
    font-size: 1.2rem;
  }
  .product-list .title {
    text-align: center;
    font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
  }
}

.page-order-box {
  max-width: none;
  margin: 60px auto 10px;
  position: relative;
}
.page-order-box .clearfix {
  max-width: 1200px;
  margin: 0 auto;
}
.page-order-box.type-none {
  margin: 0px auto 200px;
}
.page-order-box.type-none:before {
  display: none;
}
@media all and (max-width: 896px) {
  .page-order-box:before {
    width: 171px;
    height: 200px;
  }
}
@media all and (max-width: 639px) {
  .page-order-box:before {
    width: 97px;
    height: 114px;
    right: 7%;
  }
}

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

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

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

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

.single,
.single03 {
  position: relative;
  margin: 0 auto;
}
.single.inner,
.single03.inner {
  z-index: 2;
}
.single.phalf,
.single03.phalf {
  padding: 60px 0;
}
@media all and (max-width: 1100px) {
  .single.phalf,
  .single03.phalf {
    padding: 60px 15px;
  }
}
@media all and (max-width: 896px) {
  .single.phalf,
  .single03.phalf {
    padding: 30px 0;
  }
}
.single.type1,
.single03.type1 {
  padding: 80px 0 0;
}
@media all and (max-width: 1100px) {
  .single.type1,
  .single03.type1 {
    padding: 80px 15px 0;
  }
}
.single.type2,
.single03.type2 {
  padding: 0 0 80px;
}
@media all and (max-width: 1100px) {
  .single.type2,
  .single03.type2 {
    padding: 0 15px 80px;
  }
}

.single02,
.single04 {
  position: relative;
  margin: 0 auto;
}
.single02.inner,
.single04.inner {
  z-index: 2;
}
.single02.phalf,
.single04.phalf {
  padding: 60px 0;
}
@media all and (max-width: 1100px) {
  .single02.phalf,
  .single04.phalf {
    padding: 60px 0;
  }
}
@media all and (max-width: 896px) {
  .single02.phalf,
  .single04.phalf {
    padding: 30px 0;
  }
}
.single02.type1,
.single04.type1 {
  padding: 80px 0 0;
}
@media all and (max-width: 1100px) {
  .single02.type1,
  .single04.type1 {
    padding: 60px 0 0;
  }
}
.single02.type2,
.single04.type2 {
  padding: 0 0 80px;
}
@media all and (max-width: 1100px) {
  .single02.type2,
  .single04.type2 {
    padding: 0 0 80px;
  }
}

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

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

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

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

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

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

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

.bg-kazari {
  position: relative;
}
.bg-kazari:before {
  position: absolute;
  content: "";
  width: 350px;
  height: 205px;
  right: 0;
  top: -20px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28195/asagara.webp) no-repeat 50%/contain;
  opacity: 0.2;
  z-index: -1;
}
@media all and (max-width: 896px) {
  .bg-kazari:before {
    width: 170px;
    height: 130px;
  }
}
@media all and (max-width: 639px) {
  .bg-kazari:before {
    width: 180px;
    height: 98px;
    top: auto;
    right: -30px;
    bottom: -50px;
  }
}
.bg-kazari.type1:before {
  display: none;
}
.bg-kazari.type1:after {
  position: absolute;
  content: "";
  width: 750px;
  height: 400px;
  left: -10%;
  top: -56px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28195/deco.png) no-repeat 50%/contain;
  opacity: 0.2;
  z-index: -1;
}
@media all and (max-width: 896px) {
  .bg-kazari.type1:after {
    width: 350px;
    height: 200px;
    left: -5%;
    top: 0px;
  }
}
@media all and (max-width: 639px) {
  .bg-kazari.type1:after {
    width: 250px;
    height: 140px;
    left: -17%;
    top: 24px;
  }
}
.bg-kazari.type2:before {
  position: absolute;
  content: "";
  width: 350px;
  height: 205px;
  right: 0;
  top: auto;
  bottom: 0px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28195/asagara.webp) no-repeat 50%/contain;
  opacity: 0.2;
  z-index: -1;
}
@media all and (max-width: 896px) {
  .bg-kazari.type2:before {
    width: 170px;
    height: 130px;
  }
}
@media all and (max-width: 639px) {
  .bg-kazari.type2:before {
    width: 180px;
    height: 98px;
    top: auto;
    right: -30px;
    bottom: 0px;
  }
}
.bg-kazari.type3:before {
  position: absolute;
  content: "";
  width: 350px;
  height: 205px;
  right: auto;
  top: auto;
  bottom: 0px;
  border-left-style: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28195/asagara.webp) no-repeat 50%/contain;
  opacity: 0.2;
  z-index: -1;
}
@media all and (max-width: 896px) {
  .bg-kazari.type3:before {
    width: 170px;
    height: 130px;
  }
}
@media all and (max-width: 639px) {
  .bg-kazari.type3:before {
    display: none;
  }
}

.bg-kazari2 {
  position: relative;
}
.bg-kazari2:before {
  position: absolute;
  content: "";
  width: 250px;
  height: 330px;
  background: url(../img/ki.png) no-repeat 50%/contain;
  right: -50px;
  bottom: -20px;
  z-index: -1;
}
.bg-kazari2:after {
  position: absolute;
  content: "";
  width: 400px;
  height: 300px;
  background: url(../img/hosi.png) no-repeat 50%/contain;
  left: 0px;
  top: -160px;
  z-index: -1;
}
@media all and (max-width: 639px) {
  .bg-kazari2:before {
    height: 80px;
  }
  .bg-kazari2:after {
    display: none;
  }
}

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

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

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

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

/* mtitle
----------------------------------*/
.mtitle {
  margin: 0 auto 40px;
  position: relative;
  text-align: center;
}
.mtitle .eng {
  font-size: 3.2rem;
  color: #2544B3;
  position: relative;
  display: block;
  font-family: "Kaisei Opti", serif;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  padding-top: 15px;
}
.mtitle .ja {
  position: relative;
  font-size: 2.4rem;
  color: #333333;
  letter-spacing: 0.15em;
  font-family: "Noto Sans JP", sans-serif, "Cinzel", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 700;
  font-weight: normal;
}
.mtitle.sbc .eng {
  color: #B5A7C5;
}
.mtitle.mtitle-line .eng:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 40px;
  background: url(../img/sizuku.png) no-repeat;
  background-size: contain;
  top: -39px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.mtitle.mtitle-line .ja {
  display: inline-block;
  padding: 0 40px;
}
.mtitle.mtitle-line.sepia .eng:before {
  -webkit-filter: sepia(1);
          filter: sepia(1);
}
.mtitle.mtitle-line.sepia .ja:before {
  -webkit-filter: sepia(1);
          filter: sepia(1);
}
.mtitle.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.mtitle.white span {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.mtitle.white span:after {
  background-color: #eee;
}
.mtitle.white span.ja {
  border-bottom-color: #fefefe;
}
.mtitle.white.mtitle-line .ja {
  display: inline-block;
}
.mtitle.white.mtitle-line .ja:before {
  background: url(../img/mtitle-line-white.png) repeat-x;
}
.mtitle.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.mtitle.mtitle_left:before {
  left: 2%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.mtitle.mtitle_left span:after {
  left: 0;
  -webkit-transform: none;
          transform: none;
}
@media all and (max-width: 639px) {
  .mtitle {
    text-align: center;
  }
  .mtitle .eng {
    font-size: 2.6rem;
  }
  .mtitle .ja {
    font-size: 1.6rem;
    line-height: 1.4;
    padding-top: 10px;
    display: inline-block;
  }
}

.mtitle2 {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.mtitle2.white .ja {
  color: #fff;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.4));
}
.mtitle2.white .eng {
  color: #fff;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.4));
}
.mtitle2.sbc .eng {
  color: #B5A7C5;
}
.mtitle2.left .eng,
.mtitle2.left .ja {
  text-align: left;
}
.mtitle2 .ja {
  font-family: "Noto Sans JP", sans-serif, "Cinzel", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.4;
  color: #333333;
  text-align: center;
  display: block;
  font-weight: normal;
  padding-top: 10px;
}
.mtitle2 .ja span {
  font-size: 3rem;
  color: #83997d;
}
.mtitle2 .ja {
  padding-bottom: 20px;
  position: relative;
}
.mtitle2 .ja:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 6px;
  background: url(#) repeat-x;
  background-size: 22px 6px;
  left: 0;
  bottom: 10px;
}
.mtitle2 .ja.type2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 12px;
  background: url(#) repeat-x;
  background-size: 56px 11px;
  left: 0;
  bottom: 0;
}
.mtitle2 .eng {
  font-size: 3.2rem;
  color: #2544B3;
  display: block;
  text-align: center;
  font-family: "Kaisei Opti", serif;
  font-weight: 600;
  text-transform: uppercase;
}
@media all and (max-width: 639px) {
  .mtitle2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .mtitle2 .eng {
    font-size: 2.6rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    margin-left: auto;
    line-height: 1.3;
  }
  .mtitle2 .ja {
    font-size: 1.6rem;
  }
  .mtitle2 .ja span {
    font-size: 2rem;
    color: #83997d;
  }
}

.mtitle3 {
  position: relative;
  margin-bottom: 50px;
}
.mtitle3 .eng {
  font-size: 4rem;
  font-family: "Kaisei Opti", serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  background: #fff;
  padding-right: 20px;
  line-height: 1;
  color: #2544B3;
}
.mtitle3 .ja {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 100%;
  right: 1rem;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 2.2rem;
}
@media all and (max-width: 896px) {
  .mtitle3 .ja {
    font-size: 1.85rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle3 .ja {
    font-size: 1.6rem;
  }
}
.mtitle3 .ja {
  letter-spacing: 0.15em;
  color: #2544B3;
}
.mtitle3:after {
  position: absolute;
  content: "";
  background: #2544B3;
  height: 5px;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 0;
  z-index: -1;
}
.mtitle3.type1 {
  text-align: right;
}
.mtitle3.type1 .eng {
  padding-right: 0;
  padding-left: 20px;
}
.mtitle3.type1 .ja {
  right: auto;
  left: 1rem;
}
.mtitle3.type2 .eng {
  background: #2544B3;
  color: #fff;
}
.mtitle3.type2 .ja {
  color: #fff;
}
.mtitle3.type2:after {
  background: #fff;
}
.mtitle3.type3 .eng {
  background: #B5A7C5;
  color: #fff;
}
.mtitle3.type3 .ja {
  color: #fff;
}
.mtitle3.type3:after {
  background: #fff;
}
@media all and (max-width: 1100px) {
  .mtitle3 .eng {
    font-size: 8rem;
  }
}
@media all and (max-width: 896px) {
  .mtitle3 {
    margin-bottom: 40px;
  }
  .mtitle3 .eng {
    font-size: 5.5rem;
    padding-right: 15px;
  }
  .mtitle3 .ja {
    top: 80%;
    right: 0.5rem;
  }
  .mtitle3:after {
    height: 3px;
  }
  .mtitle3.type1 .eng {
    padding-right: 0;
    padding-left: 15px;
  }
  .mtitle3.type1 .ja {
    right: auto;
    left: 0.5rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle3 .eng {
    font-size: 3.8rem;
  }
  .mtitle3 .ja {
    top: 90%;
  }
}

.mtitle_line {
  padding-bottom: 20px;
  position: relative;
  font-weight: 600;
  margin-bottom: 30px;
  color: #2544B3;
  border-top: 2px solid #2544B3;
  padding: 8px 10px 20px;
}
.mtitle_line span {
  font-size: 1.4rem;
  color: #2544B3;
}
.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  opacity: 0.5;
  background-image: repeating-linear-gradient(-45deg, #ccc, #ccc 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media all and (max-width: 639px) {
  .mtitle_line {
    font-size: 1.4rem;
  }
  .mtitle_line span {
    font-size: 12px;
  }
}

.mtitle_balloon {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}
.mtitle_balloon span {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  line-height: 1.3em;
  overflow: hidden;
}
.mtitle_balloon span.eng {
  font-family: "Kaisei Opti", serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 5rem;
}
.mtitle_balloon span:before, .mtitle_balloon span:after {
  content: "";
  display: block;
  border-bottom: 1px solid #333;
  position: absolute;
  width: 50%;
  bottom: 6px;
}
.mtitle_balloon span:before {
  left: -5px;
}
.mtitle_balloon span:after {
  right: -5px;
}
.mtitle_balloon span i {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-top: 1px solid #333;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 2px;
}
.mtitle_balloon.center {
  text-align: center;
}
.mtitle_balloon.white span:before, .mtitle_balloon.white span:after {
  border-bottom-color: #fefefe;
}
.mtitle_balloon.white span i {
  border-color: #fefefe;
}
@media all and (max-width: 639px) {
  .mtitle_balloon {
    font-size: 1.7rem;
  }
  .mtitle_balloon span.eng {
    font-size: 2.4rem;
  }
}

.mtitle-bll {
  font-size: 2rem;
  font-weight: 700;
  border-bottom: 2px solid #eeeeee;
  position: relative;
  margin-bottom: 30px;
  line-height: 1.5;
  padding-bottom: 8px;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.mtitle-bll:after {
  position: absolute;
  content: "";
  display: block;
  bottom: -2px;
  width: 100px;
  height: 2px;
  background: #2544B3;
}
@media all and (max-width: 639px) {
  .mtitle-bll {
    font-size: 1.6rem;
  }
}

.mtitle4 {
  font-weight: normal;
  display: table;
}
.mtitle4 .ja {
  font-size: 1.6rem;
  display: table-cell;
}
.mtitle4 .eng {
  color: #599b64;
  font-weight: bold;
  padding-right: 5px;
  font-size: 2rem;
  display: table-cell;
}
@media all and (max-width: 639px) {
  .mtitle4 .ja {
    font-size: 1.2rem;
  }
  .mtitle4 .eng {
    font-size: 1.8rem;
  }
}

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

.mtitle_box {
  background: rgb(28.2638888889, 51.9444444444, 136.7361111111);
  color: #fff;
  font-size: 1.8rem;
  position: relative;
  padding: 15px 30px 15px 10px;
  margin-bottom: 20px;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
}
.mtitle_box .profile {
  text-align: right;
  color: #fff;
  font-size: 12px;
  margin-left: auto;
  padding-right: 20px;
}
.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f30a";
  font-weight: 900;
  display: block;
  right: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
}
@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.3rem;
    display: block;
  }
  .mtitle_box .profile {
    display: block;
    padding: 4px 0 0;
  }
}

.mtext1 {
  font-size: 2.4rem;
  line-height: 1.6;
  color: #2544B3;
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.mtext1 .txtdeko {
  background-color: #2544B3;
  color: #fff;
  padding: 5px 20px;
  font-size: 1.4rem;
}
.mtext1 .txtdeko-min {
  font-size: 1.4rem;
}

.mtext2 {
  font-size: 2rem;
  letter-spacing: 0.1rem;
  line-height: 1.4;
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 1.4rem;
  }
}

.mtext3 {
  font-size: 2rem;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  text-align: center;
}
.mtext3 .mainttl {
  font-size: 4rem;
  font-family: "Kaisei Opti", serif;
  font-weight: 600;
  text-transform: uppercase;
}
@media all and (max-width: 639px) {
  .mtext3 {
    font-size: 1.4rem;
  }
}

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

/* btn
----------------------------------*/
.common_btn a,
.common_btn button {
  display: block;
  position: relative;
  padding: 0.5em 1em;
  color: #817971;
  font-weight: 600;
  max-width: 320px;
  margin: 40px auto 0;
  border-bottom: 1px solid rgb(214.2, 214.2, 214.2);
}
.common_btn a:before,
.common_btn button:before {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 2em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.common_btn a:after,
.common_btn button:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
  width: 0;
  height: 1px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #B5A7C5;
}
.common_btn a:hover:after,
.common_btn button:hover:after {
  width: 100%;
}
.common_btn a span,
.common_btn button span {
  position: relative;
  z-index: 1;
}
.common_btn.white_btn a {
  color: #fff;
}
.common_btn.white_btn a:after {
  background-color: #fff;
}

.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-wrap p:first-of-type {
  margin-right: 25px;
}
@media all and (max-width: 639px) {
  .btn-wrap p:first-of-type {
    margin: 0 auto;
  }
}
@media all and (max-width: 639px) {
  .btn-wrap {
    display: block;
  }
}

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

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

.btn03 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  margin: 30px auto 0 0;
  padding: 10px 20px;
  width: 300px;
  text-align: center;
  color: #B5A7C5;
  font-size: 1.6rem;
  border: 2px solid #B5A7C5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn03 a::before {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 2px;
  background-color: #B5A7C5;
  -webkit-transition: 0.2s ease 0s;
  transition: 0.2s ease 0s;
}
.btn03 a::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -10px;
  width: 2px;
  height: 100%;
  background-color: #B5A7C5;
  -webkit-transition: 0.2s ease 0.2s;
  transition: 0.2s ease 0.2s;
}
.btn03 a:hover::before {
  width: 0%;
}
.btn03 a:hover::after {
  height: 0%;
}
.btn03 a:hover {
  text-decoration: none;
}

.btn04 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.btn04.basecolor a {
  -webkit-box-shadow: 0 2px 0 #2544B3;
          box-shadow: 0 2px 0 #2544B3;
  color: #2544B3;
}
.btn04.basecolor a:before {
  background: #2544B3;
}
.btn04.basecolor a:after {
  background-color: #2544B3;
}
.btn04.basecolor a:hover {
  color: #fff;
  background-color: #2544B3;
}
.btn04.basecolor a:hover:before {
  background-color: #fff;
}
.btn04.basecolor a:hover a {
  color: #2544B3;
}
.btn04.basecolor a:hover:after {
  background-color: #fff;
}

.btn04 a {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-decoration: none;
  -webkit-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
  -webkit-transform: translateZ(0);
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 30px;
  color: #fff;
  text-align: center;
  line-height: 1;
  -webkit-box-shadow: 0 2px 0 #fff;
          box-shadow: 0 2px 0 #fff;
  text-decoration: none;
  width: 100%;
  max-width: 300px;
}
.btn04 a .pdf {
  background-color: #2544B3;
  color: #fff;
  padding: 2px 6px;
}
@media all and (max-width: 639px) {
  .btn04 a {
    padding: 14px 20px;
    max-width: 260px;
  }
}
.btn04 a:before, .btn04 a:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.btn04 a:before {
  right: 20px;
  width: 20px;
  height: 2px;
  background: #fff;
}
.btn04 a:after {
  right: 32px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.btn04 a:hover {
  color: #fff;
  background-color: rgba(51, 51, 51, 0.4);
  border-bottom: transparent;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: 1;
}
.btn04 a:hover:before {
  background-color: #fff;
}
.btn04 a:hover a {
  color: #fff;
}
.btn04 a:hover:after {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  right: 20px;
  background-color: #fff;
}
.btn04 a:hover .pdf {
  background-color: #fff;
  color: #2544B3;
  padding: 2px 6px;
}

/* menu_bnr
----------------------------------*/
.buttonBoxarea {
  display: block;
  width: 100%;
  margin: 30px auto;
}

.buttonBox {
  margin: 0 auto 40px;
  position: relative;
  width: 100%;
  max-width: 420px;
  min-width: 150px;
  -webkit-box-flex: 20%;
      -ms-flex: 20%;
          flex: 20%;
}
.buttonBox .button {
  padding: 5% 0 0;
  width: 100%;
  height: 80px;
  position: relative;
  background: rgba(128, 116, 85, 0.3);
  text-transform: uppercase;
  color: white;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  font-size: 2rem;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  outline: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media all and (max-width: 896px) {
  .buttonBox .button {
    padding: 6% 0 0;
  }
}
@media all and (max-width: 639px) {
  .buttonBox .button {
    padding: 10% 0 0;
  }
}
.buttonBox .button .button_bnr {
  color: #fff;
}
.buttonBox .button .button_bnr span {
  text-align: center;
  margin: 0 auto;
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  position: relative;
}
@media all and (max-width: 639px) {
  .buttonBox .button .button_bnr span {
    font-size: 1.3rem;
    padding-right: 60px;
  }
}
.buttonBox .button .button_bnr span::before, .buttonBox .button .button_bnr span::after {
  content: "";
  position: absolute;
  background: #fff;
}
.buttonBox .button .button_bnr span::before {
  top: 21px;
  right: 20px;
  height: 1px;
  width: 42px;
}
@media all and (max-width: 639px) {
  .buttonBox .button .button_bnr span::before {
    top: 11px;
  }
}
.buttonBox .button .button_bnr span::after {
  top: 17px;
  right: 19px;
  height: 1px;
  width: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media all and (max-width: 639px) {
  .buttonBox .button .button_bnr span::after {
    top: 7px;
  }
}
.buttonBox::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #B5A7C5;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
.buttonBox:hover::before {
  background: rgb(195, 163, 73);
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.buttonBox .border,
.buttonBox .border2 {
  position: absolute;
  background: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.buttonBox .border {
  top: 0;
  left: 0;
  border-left: 1px solid #d3dd4c;
  border-top: 1px solid #d3dd4c;
  width: 30px;
  height: 30px;
}
.buttonBox .border2 {
  bottom: 0;
  right: 0;
  border-right: 1px solid #d3dd4c;
  border-bottom: 1px solid #d3dd4c;
  width: 30px;
  height: 30px;
}
.buttonBox:hover .border, .buttonBox:hover .border2 {
  width: 102%;
  height: 105%;
}

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

/* page-title
----------------------------------*/
.page-title {
  margin: 0px auto 0;
  position: relative;
  z-index: 1;
  background: url(.#) no-repeat 50%/cover;
  overflow: hidden;
  max-width: 100%;
}
.page-title.type1 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28195/p01.webp) no-repeat 50% 35%/cover;
}
.page-title.type2 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28195/p02.webp) no-repeat 50% 77%/cover;
}
.page-title.type3 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28195/p03.webp) no-repeat 50% 65%/cover;
}
.page-title.type4 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28195/p04.webp) no-repeat 50% 66%/cover;
}
.page-title.type5 {
  background: url(../img/007.jpg) no-repeat 50%/cover;
}
.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #111;
  opacity: 0.3;
}
.page-title > .inner {
  margin: 0 auto;
  padding: 350px 0 80px;
  max-width: 1200px;
}
.page-title .page-lead {
  color: #817971;
  font-size: 2rem;
  text-shadow: 0 0 4px rgba(129, 121, 113, 0.1);
}
.page-title .page-lead span {
  display: block;
}
.page-title .page-lead .ja {
  font-size: 2rem;
  color: #ffffff;
}
.page-title .page-lead .eng {
  font-size: 5rem;
  color: #fff;
  font-family: "Kaisei Opti", serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-transform: initial;
  font-weight: normal;
}
.page-title header {
  background-color: #fff;
}
@media all and (max-width: 1367px) {
  .page-title {
    margin: 0px auto 0;
  }
  .page-title .breadcrumb {
    padding-left: 40px;
  }
}
@media all and (max-width: 896px) {
  .page-title {
    margin: 0px auto 0;
  }
  .page-title > .inner {
    width: 100%;
    padding: 200px 20px 0;
  }
  .page-title .breadcrumb {
    padding-left: 20px;
  }
  .page-title .page-lead {
    font-size: 1.5rem;
  }
  .page-title .page-lead .ja {
    font-size: 1.5rem;
  }
  .page-title .page-lead .eng {
    font-size: 3rem;
  }
  .page-title #l-header .inner {
    padding: 8px 0 30px;
  }
  .page-title #l-header .header_contact {
    top: 10px;
  }
}
@media all and (max-width: 639px) {
  .page-title {
    margin: 0px auto 0;
  }
  .page-title > .inner {
    width: 100%;
    padding: 200px 20px 0;
  }
  .page-title .breadcrumb {
    padding-left: 20px;
    margin-bottom: 40px;
  }
  .page-title .page-lead {
    font-size: 1.5rem;
  }
  .page-title .page-lead .ja {
    font-size: 1.2rem;
  }
  .page-title .page-lead .eng {
    font-size: 1.8rem;
  }
}

.bg-gradient {
  position: relative;
  position: relative;
}
.bg-gradient:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#B5A7C5), to(#fff));
  background-image: linear-gradient(to bottom, #B5A7C5, #fff);
  z-index: -2;
  opacity: 0.3;
}

.bg-01 {
  position: relative;
}
.bg-01:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/52.jpg) no-repeat center top/cover;
  background-attachment: fixed;
  z-index: -2;
}
@media all and (max-width: 1100px) {
  .bg-01:before {
    background-attachment: scroll;
  }
}
.bg-01.type1:before {
  background: #fefefe;
  opacity: 1;
}

.bg-02 {
  position: relative;
  padding: 100px 0 0;
}
.bg-02 .ttlarea {
  position: relative;
}
.bg-02 .ttlarea .mtitle {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 40%;
}
.bg-02 .single02 {
  margin-top: -100px;
  padding: 0;
  background-color: #2544B3;
  width: 100%;
}
@media all and (max-width: 639px) {
  .bg-02 {
    padding-top: 50px;
  }
  .bg-02:before {
    width: 100%;
    height: 300px;
  }
  .bg-02 .single02 {
    width: 100%;
    margin-top: 0px;
  }
  .bg-02 .ttlarea .photo img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

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

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

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

.bg-06 {
  position: relative;
  background: url(../img/bg-06.jpg) no-repeat center top/cover;
  background-attachment: fixed;
}

.bg-medi01 {
  position: relative;
  padding: 50px 0;
}
.bg-medi01:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.7;
  background: url(../img/bg-medi01.jpg) no-repeat center top/cover;
}
.bg-medi01.type2:before {
  background: url(../img/bg-medi02.jpg) no-repeat center top/cover;
}
.bg-medi01.type3:before {
  background: url(../img/bg-medi03.jpg) no-repeat center top/cover;
}
.bg-medi01.type4:before {
  background: url(../img/bg-medi04.jpg) no-repeat center top/cover;
}
.bg-medi01.type5:before {
  background: url(../img/bg-medi05.jpg) no-repeat center top/cover;
}
.bg-medi01.type6:before {
  background: url(../img/bg-medi06.jpg) no-repeat center top/cover;
}
.bg-medi01.type7:before {
  background: url(../img/bg-medi07.jpg) no-repeat center top/cover;
}

.bg-beau01 {
  position: relative;
  padding: 50px 0;
}
.bg-beau01:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.7;
  background: url(../img/bg-beauty01.jpg) no-repeat center top/cover;
}
.bg-beau01.type2:before {
  background: url(../img/bg-beauty02.jpg) no-repeat center top/cover;
}
.bg-beau01.type3:before {
  background: url(../img/bg-beauty03.jpg) no-repeat center top/cover;
}
.bg-beau01.type4:before {
  background: url(../img/bg-beauty04.jpg) no-repeat center top/cover;
}
.bg-beau01.type5:before {
  background: url(../img/bg-beauty05.jpg) no-repeat center top/cover;
}
.bg-beau01.type6:before {
  background: url(../img/bg-beauty06.jpg) no-repeat center top/cover;
}

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

.bg-white {
  position: relative;
  background: #fff;
}
.bg-white .bg-slide {
  padding: 100px 0 50px;
}

.bg-w {
  position: relative;
  margin-bottom: 50px;
  background: #fff;
}
.bg-w:before {
  position: absolute;
  content: "";
  width: calc(100% - 80px);
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background: #fefefe;
  z-index: -1;
}
@media all and (max-width: 639px) {
  .bg-w:before {
    width: calc(100% - 10px);
  }
}

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

.bg-green {
  background: #599b64;
}
.bg-green.type1 {
  position: relative;
}
.bg-green.type1:before {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background-image: linear-gradient(330deg, rgba(2, 2, 2, 0.02) 0%, rgba(2, 2, 2, 0.02) 81%, transparent 81%, transparent 100%), linear-gradient(104deg, rgba(52, 52, 52, 0.01) 0%, rgba(52, 52, 52, 0.01) 24%, transparent 24%, transparent 100%), linear-gradient(273deg, rgba(52, 52, 52, 0.03) 0%, rgba(52, 52, 52, 0.03) 91%, transparent 91%, transparent 100%), linear-gradient(58deg, rgba(212, 212, 212, 0.03) 0%, rgba(212, 212, 212, 0.03) 51%, transparent 51%, transparent 100%), linear-gradient(297deg, rgba(201, 201, 201, 0.01) 0%, rgba(201, 201, 201, 0.01) 59%, transparent 59%, transparent 100%), linear-gradient(37deg, rgba(169, 169, 169, 0.03) 0%, rgba(169, 169, 169, 0.03) 12%, transparent 12%, transparent 100%), linear-gradient(27deg, rgba(144, 144, 144, 0.03) 0%, rgba(144, 144, 144, 0.03) 76%, transparent 76%, transparent 100%), linear-gradient(168deg, rgba(14, 14, 14, 0.03) 0%, rgba(14, 14, 14, 0.03) 31%, transparent 31%, transparent 100%), linear-gradient(237deg, rgba(96, 96, 96, 0.01) 0%, rgba(96, 96, 96, 0.01) 52%, transparent 52%, transparent 100%), linear-gradient(320deg, rgba(30, 30, 30, 0.03) 0%, rgba(30, 30, 30, 0.03) 52%, transparent 52%, transparent 100%), linear-gradient(271deg, rgba(64, 64, 64, 0.03) 0%, rgba(64, 64, 64, 0.03) 27%, transparent 27%, transparent 100%), linear-gradient(290deg, rgba(32, 32, 32, 0.01) 0%, rgba(32, 32, 32, 0.01) 21%, transparent 21%, transparent 100%), linear-gradient(124deg, rgba(231, 231, 231, 0.03) 0%, rgba(231, 231, 231, 0.03) 1%, transparent 1%, transparent 100%), linear-gradient(298deg, rgba(61, 61, 61, 0.03) 0%, rgba(61, 61, 61, 0.03) 46%, transparent 46%, transparent 100%), linear-gradient(222deg, rgba(216, 216, 216, 0.03) 0%, rgba(216, 216, 216, 0.03) 82%, transparent 82%, transparent 100%), linear-gradient(251deg, rgba(211, 211, 211, 0.01) 0%, rgba(211, 211, 211, 0.01) 57%, transparent 57%, transparent 100%), linear-gradient(200deg, rgba(71, 71, 71, 0.03) 0%, rgba(71, 71, 71, 0.03) 9%, transparent 9%, transparent 100%), linear-gradient(95deg, rgba(160, 160, 160, 0.01) 0%, rgba(160, 160, 160, 0.01) 59%, transparent 59%, transparent 100%), linear-gradient(275deg, rgba(160, 160, 160, 0.03) 0%, rgba(160, 160, 160, 0.03) 3%, transparent 3%, transparent 100%), linear-gradient(351deg, rgba(18, 18, 18, 0.02) 0%, rgba(18, 18, 18, 0.02) 26%, transparent 26%, transparent 100%), linear-gradient(245deg, rgba(103, 103, 103, 0.03) 0%, rgba(103, 103, 103, 0.03) 54%, transparent 54%, transparent 100%), linear-gradient(269deg, rgba(145, 145, 145, 0.03) 0%, rgba(145, 145, 145, 0.03) 76%, transparent 76%, transparent 100%), linear-gradient(150deg, rgba(202, 202, 202, 0.03) 0%, rgba(202, 202, 202, 0.03) 3%, transparent 3%, transparent 100%), linear-gradient(98deg, rgba(14, 14, 14, 0.03) 0%, rgba(14, 14, 14, 0.03) 97%, transparent 97%, transparent 100%), linear-gradient(170deg, rgba(142, 142, 142, 0.03) 0%, rgba(142, 142, 142, 0.03) 13%, transparent 13%, transparent 100%), linear-gradient(347deg, rgba(199, 199, 199, 0.01) 0%, rgba(199, 199, 199, 0.01) 73%, transparent 73%, transparent 100%), linear-gradient(263deg, rgba(176, 176, 176, 0.03) 0%, rgba(176, 176, 176, 0.03) 60%, transparent 60%, transparent 100%), linear-gradient(110deg, rgba(191, 191, 191, 0.03) 0%, rgba(191, 191, 191, 0.03) 83%, transparent 83%, transparent 100%), linear-gradient(198deg, rgba(142, 142, 142, 0.01) 0%, rgba(142, 142, 142, 0.01) 64%, transparent 64%, transparent 100%), linear-gradient(204deg, rgba(5, 5, 5, 0.03) 0%, rgba(5, 5, 5, 0.03) 64%, transparent 64%, transparent 100%), linear-gradient(351deg, rgba(83, 83, 83, 0.01) 0%, rgba(83, 83, 83, 0.01) 84%, transparent 84%, transparent 100%), linear-gradient(12deg, rgba(49, 49, 49, 0.01) 0%, rgba(49, 49, 49, 0.01) 57%, transparent 57%, transparent 100%), linear-gradient(288deg, rgba(141, 141, 141, 0.01) 0%, rgba(141, 141, 141, 0.01) 8%, transparent 8%, transparent 100%), linear-gradient(112deg, rgba(191, 191, 191, 0.01) 0%, rgba(191, 191, 191, 0.01) 8%, transparent 8%, transparent 100%), linear-gradient(230deg, rgba(46, 46, 46, 0.03) 0%, rgba(46, 46, 46, 0.03) 34%, transparent 34%, transparent 100%), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
}

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

.bg-gray2 {
  position: relative;
  margin-bottom: 40px;
}
.bg-gray2:before {
  position: absolute;
  content: "";
  width: calc(100% - 80px);
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background: #f3f6f6;
}
@media all and (max-width: 896px) {
  .bg-gray2:before {
    width: calc(100% - 10px);
  }
}

.bg-gray3 {
  position: relative;
}
.bg-gray3:before {
  position: absolute;
  content: "";
  left: 0;
  top: 200px;
  width: 100%;
  height: calc(100% - 200px);
  background-image: linear-gradient(15deg, #2544B3 0%, #B5A7C5 90%, #f1f0e7 90.1%, #f1f0e7 100%);
  opacity: 0.6;
}

.bg-999 {
  background: #aaa;
}

.bg-blue {
  background: rgba(37, 68, 179, 0.2);
}
.bg-blue.bg-half {
  background: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50.1%, rgb(206.8493150685, 197.7397260274, 217.2602739726)), to(rgb(206.8493150685, 197.7397260274, 217.2602739726)));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, rgb(206.8493150685, 197.7397260274, 217.2602739726) 50.1%, rgb(206.8493150685, 197.7397260274, 217.2602739726) 100%);
}

.bg-beige {
  position: relative;
  background: #f2edde;
}
.bg-beige.type1 {
  background: transparent;
}
.bg-beige.type1:before {
  position: absolute;
  content: "";
  width: calc(100% - 80px);
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background: #f2edde;
  z-index: -1;
  opacity: 0.8;
}
@media all and (max-width: 639px) {
  .bg-beige.type1:before {
    width: calc(100% - 10px);
  }
}

.bg-beige2 {
  background: #f2edde;
  position: relative;
}
.bg-beige2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  clip-path: polygon(12% 0, 100% 0%, 88% 100%, 0% 100%);
}

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

.bg-darkgreen {
  position: relative;
  background: #88b486;
  margin: 100px 0;
}
.bg-darkgreen.type1 {
  position: relative;
}
.bg-darkgreen.type1:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background-image: linear-gradient(330deg, rgba(2, 2, 2, 0.02) 0%, rgba(2, 2, 2, 0.02) 81%, transparent 81%, transparent 100%), linear-gradient(104deg, rgba(52, 52, 52, 0.01) 0%, rgba(52, 52, 52, 0.01) 24%, transparent 24%, transparent 100%), linear-gradient(273deg, rgba(52, 52, 52, 0.03) 0%, rgba(52, 52, 52, 0.03) 91%, transparent 91%, transparent 100%), linear-gradient(58deg, rgba(212, 212, 212, 0.03) 0%, rgba(212, 212, 212, 0.03) 51%, transparent 51%, transparent 100%), linear-gradient(297deg, rgba(201, 201, 201, 0.01) 0%, rgba(201, 201, 201, 0.01) 59%, transparent 59%, transparent 100%), linear-gradient(37deg, rgba(169, 169, 169, 0.03) 0%, rgba(169, 169, 169, 0.03) 12%, transparent 12%, transparent 100%), linear-gradient(27deg, rgba(144, 144, 144, 0.03) 0%, rgba(144, 144, 144, 0.03) 76%, transparent 76%, transparent 100%), linear-gradient(168deg, rgba(14, 14, 14, 0.03) 0%, rgba(14, 14, 14, 0.03) 31%, transparent 31%, transparent 100%), linear-gradient(237deg, rgba(96, 96, 96, 0.01) 0%, rgba(96, 96, 96, 0.01) 52%, transparent 52%, transparent 100%), linear-gradient(320deg, rgba(30, 30, 30, 0.03) 0%, rgba(30, 30, 30, 0.03) 52%, transparent 52%, transparent 100%), linear-gradient(271deg, rgba(64, 64, 64, 0.03) 0%, rgba(64, 64, 64, 0.03) 27%, transparent 27%, transparent 100%), linear-gradient(290deg, rgba(32, 32, 32, 0.01) 0%, rgba(32, 32, 32, 0.01) 21%, transparent 21%, transparent 100%), linear-gradient(124deg, rgba(231, 231, 231, 0.03) 0%, rgba(231, 231, 231, 0.03) 1%, transparent 1%, transparent 100%), linear-gradient(298deg, rgba(61, 61, 61, 0.03) 0%, rgba(61, 61, 61, 0.03) 46%, transparent 46%, transparent 100%), linear-gradient(222deg, rgba(216, 216, 216, 0.03) 0%, rgba(216, 216, 216, 0.03) 82%, transparent 82%, transparent 100%), linear-gradient(251deg, rgba(211, 211, 211, 0.01) 0%, rgba(211, 211, 211, 0.01) 57%, transparent 57%, transparent 100%), linear-gradient(200deg, rgba(71, 71, 71, 0.03) 0%, rgba(71, 71, 71, 0.03) 9%, transparent 9%, transparent 100%), linear-gradient(95deg, rgba(160, 160, 160, 0.01) 0%, rgba(160, 160, 160, 0.01) 59%, transparent 59%, transparent 100%), linear-gradient(275deg, rgba(160, 160, 160, 0.03) 0%, rgba(160, 160, 160, 0.03) 3%, transparent 3%, transparent 100%), linear-gradient(351deg, rgba(18, 18, 18, 0.02) 0%, rgba(18, 18, 18, 0.02) 26%, transparent 26%, transparent 100%), linear-gradient(245deg, rgba(103, 103, 103, 0.03) 0%, rgba(103, 103, 103, 0.03) 54%, transparent 54%, transparent 100%), linear-gradient(269deg, rgba(145, 145, 145, 0.03) 0%, rgba(145, 145, 145, 0.03) 76%, transparent 76%, transparent 100%), linear-gradient(150deg, rgba(202, 202, 202, 0.03) 0%, rgba(202, 202, 202, 0.03) 3%, transparent 3%, transparent 100%), linear-gradient(98deg, rgba(14, 14, 14, 0.03) 0%, rgba(14, 14, 14, 0.03) 97%, transparent 97%, transparent 100%), linear-gradient(170deg, rgba(142, 142, 142, 0.03) 0%, rgba(142, 142, 142, 0.03) 13%, transparent 13%, transparent 100%), linear-gradient(347deg, rgba(199, 199, 199, 0.01) 0%, rgba(199, 199, 199, 0.01) 73%, transparent 73%, transparent 100%), linear-gradient(263deg, rgba(176, 176, 176, 0.03) 0%, rgba(176, 176, 176, 0.03) 60%, transparent 60%, transparent 100%), linear-gradient(110deg, rgba(191, 191, 191, 0.03) 0%, rgba(191, 191, 191, 0.03) 83%, transparent 83%, transparent 100%), linear-gradient(198deg, rgba(142, 142, 142, 0.01) 0%, rgba(142, 142, 142, 0.01) 64%, transparent 64%, transparent 100%), linear-gradient(204deg, rgba(5, 5, 5, 0.03) 0%, rgba(5, 5, 5, 0.03) 64%, transparent 64%, transparent 100%), linear-gradient(351deg, rgba(83, 83, 83, 0.01) 0%, rgba(83, 83, 83, 0.01) 84%, transparent 84%, transparent 100%), linear-gradient(12deg, rgba(49, 49, 49, 0.01) 0%, rgba(49, 49, 49, 0.01) 57%, transparent 57%, transparent 100%), linear-gradient(288deg, rgba(141, 141, 141, 0.01) 0%, rgba(141, 141, 141, 0.01) 8%, transparent 8%, transparent 100%), linear-gradient(112deg, rgba(191, 191, 191, 0.01) 0%, rgba(191, 191, 191, 0.01) 8%, transparent 8%, transparent 100%), linear-gradient(230deg, rgba(46, 46, 46, 0.03) 0%, rgba(46, 46, 46, 0.03) 34%, transparent 34%, transparent 100%), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
}
.bg-darkgreen.type2 {
  position: relative;
}
.bg-darkgreen.type2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-image: linear-gradient(56deg, rgba(254, 254, 254, 0.05) 0%, rgba(254, 254, 254, 0.05) 69%, rgba(160, 160, 160, 0.05) 69%, rgba(160, 160, 160, 0.05) 100%), linear-gradient(194deg, rgba(102, 102, 102, 0.02) 0%, rgba(102, 102, 102, 0.02) 60%, rgba(67, 67, 67, 0.02) 60%, rgba(67, 67, 67, 0.02) 100%), linear-gradient(76deg, rgba(169, 169, 169, 0.06) 0%, rgba(169, 169, 169, 0.06) 89%, rgba(189, 189, 189, 0.06) 89%, rgba(189, 189, 189, 0.06) 100%), linear-gradient(326deg, rgba(213, 213, 213, 0.04) 0%, rgba(213, 213, 213, 0.04) 45%, rgba(66, 66, 66, 0.04) 45%, rgba(66, 66, 66, 0.04) 100%), linear-gradient(183deg, rgba(223, 223, 223, 0.01) 0%, rgba(223, 223, 223, 0.01) 82%, rgba(28, 28, 28, 0.01) 82%, rgba(28, 28, 28, 0.01) 100%), linear-gradient(3deg, rgba(20, 20, 20, 0.06) 0%, rgba(20, 20, 20, 0.06) 62%, rgba(136, 136, 136, 0.06) 62%, rgba(136, 136, 136, 0.06) 100%), linear-gradient(200deg, rgba(206, 206, 206, 0.09) 0%, rgba(206, 206, 206, 0.09) 58%, rgba(6, 6, 6, 0.09) 58%, rgba(6, 6, 6, 0.09) 100%), linear-gradient(304deg, rgba(162, 162, 162, 0.07) 0%, rgba(162, 162, 162, 0.07) 27%, rgba(24, 24, 24, 0.07) 27%, rgba(24, 24, 24, 0.07) 100%), linear-gradient(186deg, rgba(166, 166, 166, 0.04) 0%, rgba(166, 166, 166, 0.04) 5%, rgba(210, 210, 210, 0) 5%, rgba(210, 210, 210, 0) 100%), linear-gradient(90deg, rgb(15, 80, 24), rgb(25, 101, 28), rgb(39, 107, 68));
}

.bg-gold {
  position: relative;
  background: #ccbf94;
}
.bg-gold.type1 {
  position: relative;
}
.bg-gold.type1:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-image: linear-gradient(330deg, rgba(2, 2, 2, 0.02) 0%, rgba(2, 2, 2, 0.02) 81%, transparent 81%, transparent 100%), linear-gradient(104deg, rgba(52, 52, 52, 0.01) 0%, rgba(52, 52, 52, 0.01) 24%, transparent 24%, transparent 100%), linear-gradient(273deg, rgba(52, 52, 52, 0.03) 0%, rgba(52, 52, 52, 0.03) 91%, transparent 91%, transparent 100%), linear-gradient(58deg, rgba(212, 212, 212, 0.03) 0%, rgba(212, 212, 212, 0.03) 51%, transparent 51%, transparent 100%), linear-gradient(297deg, rgba(201, 201, 201, 0.01) 0%, rgba(201, 201, 201, 0.01) 59%, transparent 59%, transparent 100%), linear-gradient(37deg, rgba(169, 169, 169, 0.03) 0%, rgba(169, 169, 169, 0.03) 12%, transparent 12%, transparent 100%), linear-gradient(27deg, rgba(144, 144, 144, 0.03) 0%, rgba(144, 144, 144, 0.03) 76%, transparent 76%, transparent 100%), linear-gradient(168deg, rgba(14, 14, 14, 0.03) 0%, rgba(14, 14, 14, 0.03) 31%, transparent 31%, transparent 100%), linear-gradient(237deg, rgba(96, 96, 96, 0.01) 0%, rgba(96, 96, 96, 0.01) 52%, transparent 52%, transparent 100%), linear-gradient(320deg, rgba(30, 30, 30, 0.03) 0%, rgba(30, 30, 30, 0.03) 52%, transparent 52%, transparent 100%), linear-gradient(271deg, rgba(64, 64, 64, 0.03) 0%, rgba(64, 64, 64, 0.03) 27%, transparent 27%, transparent 100%), linear-gradient(290deg, rgba(32, 32, 32, 0.01) 0%, rgba(32, 32, 32, 0.01) 21%, transparent 21%, transparent 100%), linear-gradient(124deg, rgba(231, 231, 231, 0.03) 0%, rgba(231, 231, 231, 0.03) 1%, transparent 1%, transparent 100%), linear-gradient(298deg, rgba(61, 61, 61, 0.03) 0%, rgba(61, 61, 61, 0.03) 46%, transparent 46%, transparent 100%), linear-gradient(222deg, rgba(216, 216, 216, 0.03) 0%, rgba(216, 216, 216, 0.03) 82%, transparent 82%, transparent 100%), linear-gradient(251deg, rgba(211, 211, 211, 0.01) 0%, rgba(211, 211, 211, 0.01) 57%, transparent 57%, transparent 100%), linear-gradient(200deg, rgba(71, 71, 71, 0.03) 0%, rgba(71, 71, 71, 0.03) 9%, transparent 9%, transparent 100%), linear-gradient(95deg, rgba(160, 160, 160, 0.01) 0%, rgba(160, 160, 160, 0.01) 59%, transparent 59%, transparent 100%), linear-gradient(275deg, rgba(160, 160, 160, 0.03) 0%, rgba(160, 160, 160, 0.03) 3%, transparent 3%, transparent 100%), linear-gradient(351deg, rgba(18, 18, 18, 0.02) 0%, rgba(18, 18, 18, 0.02) 26%, transparent 26%, transparent 100%), linear-gradient(245deg, rgba(103, 103, 103, 0.03) 0%, rgba(103, 103, 103, 0.03) 54%, transparent 54%, transparent 100%), linear-gradient(269deg, rgba(145, 145, 145, 0.03) 0%, rgba(145, 145, 145, 0.03) 76%, transparent 76%, transparent 100%), linear-gradient(150deg, rgba(202, 202, 202, 0.03) 0%, rgba(202, 202, 202, 0.03) 3%, transparent 3%, transparent 100%), linear-gradient(98deg, rgba(14, 14, 14, 0.03) 0%, rgba(14, 14, 14, 0.03) 97%, transparent 97%, transparent 100%), linear-gradient(170deg, rgba(142, 142, 142, 0.03) 0%, rgba(142, 142, 142, 0.03) 13%, transparent 13%, transparent 100%), linear-gradient(347deg, rgba(199, 199, 199, 0.01) 0%, rgba(199, 199, 199, 0.01) 73%, transparent 73%, transparent 100%), linear-gradient(263deg, rgba(176, 176, 176, 0.03) 0%, rgba(176, 176, 176, 0.03) 60%, transparent 60%, transparent 100%), linear-gradient(110deg, rgba(191, 191, 191, 0.03) 0%, rgba(191, 191, 191, 0.03) 83%, transparent 83%, transparent 100%), linear-gradient(198deg, rgba(142, 142, 142, 0.01) 0%, rgba(142, 142, 142, 0.01) 64%, transparent 64%, transparent 100%), linear-gradient(204deg, rgba(5, 5, 5, 0.03) 0%, rgba(5, 5, 5, 0.03) 64%, transparent 64%, transparent 100%), linear-gradient(351deg, rgba(83, 83, 83, 0.01) 0%, rgba(83, 83, 83, 0.01) 84%, transparent 84%, transparent 100%), linear-gradient(12deg, rgba(49, 49, 49, 0.01) 0%, rgba(49, 49, 49, 0.01) 57%, transparent 57%, transparent 100%), linear-gradient(288deg, rgba(141, 141, 141, 0.01) 0%, rgba(141, 141, 141, 0.01) 8%, transparent 8%, transparent 100%), linear-gradient(112deg, rgba(191, 191, 191, 0.01) 0%, rgba(191, 191, 191, 0.01) 8%, transparent 8%, transparent 100%), linear-gradient(230deg, rgba(46, 46, 46, 0.03) 0%, rgba(46, 46, 46, 0.03) 34%, transparent 34%, transparent 100%), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
}

@media all and (max-width: 896px) {
  .tbl-scroll {
    width: 100%;
  }
}

@media all and (max-width: 896px) {
  .tbl-border {
    width: 100%;
  }
  .tbl-border th {
    white-space: nowrap;
  }
}

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

.tbl_new {
  width: 100%;
}
.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 15px 10px;
  border: 1px solid #2544B3;
  background-color: #fff;
}
.tbl_new tr th {
  font-weight: 700;
  width: 25%;
  color: #68afd8;
  text-align: left;
  padding-left: 30px;
  letter-spacing: 0;
  color: #2f5540;
  background-color: #fff;
}
@media all and (max-width: 639px) {
  .tbl_new tr th {
    width: 40%;
    padding-left: 10px;
  }
}

.tbl_box {
  width: 100%;
  border: 1px solid #4d77a7;
  background-color: #fff;
}
.tbl_box tr th,
.tbl_box tr td {
  vertical-align: middle;
  padding: 10px 10px;
  border-bottom: 1px solid #4d77a7;
}
.tbl_box tr td {
  width: 70%;
  line-height: 1.4;
}
.tbl_box tr td.left {
  width: 30%;
  position: relative;
  border-right: none;
}
.tbl_box tr td.left:before {
  position: absolute;
  content: "";
  right: -30px;
  top: 34%;
  width: 0;
  height: 0;
  border-left: 16px solid #4d77a7;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.tbl_box.type-purple {
  border: 1px solid #5e5b91;
}
.tbl_box.type-purple tr td {
  width: 50%;
}
.tbl_box.type-purple tr td.left {
  width: 50%;
  position: relative;
  border-right: none;
}
.tbl_box.type-purple tr td.left:before {
  position: absolute;
  content: "";
  right: 0px;
  top: 42%;
  width: 0;
  height: 0;
  border-left: 16px solid #5e5b91;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.tbl_box.type-gold tr th,
.tbl_box.type-gold tr td {
  border: 1px solid #816d41;
  width: 14.2%;
}
.tbl_box.type-gold tr th {
  font-weight: bold;
  color: #fff;
  background-color: rgba(129, 109, 65, 0.8);
  border-right: 1px solid #fff;
}
.tbl_box.type-gold tr th:last-child {
  border-right: none;
}
.tbl_box.type-gold tr .ttl {
  background-color: #816d41;
  color: #fff;
}
.tbl_box.type-gold.tate tr th {
  border-bottom: 1px solid #fff;
}
.tbl_box.type-gold.tate tr th:last-child {
  border-bottom: none;
}
.tbl_box.type-gold.tate2 tr th {
  width: 20%;
  border-bottom: 1px solid #fff;
}
.tbl_box.type-gold.tate2 tr th:last-child {
  border-bottom: none;
}
.tbl_box.type-gold.tate2 tr td {
  width: 80%;
}
@media all and (max-width: 639px) {
  .tbl_box.type-gold {
    overflow-x: scroll;
  }
}
.tbl_box.type-7 {
  border: 1px solid #437045;
}
.tbl_box.type-7 tr th,
.tbl_box.type-7 tr td {
  border: 1px solid #437045;
  width: 14.2%;
}
.tbl_box.type-7 tr th {
  font-weight: bold;
  background-color: rgba(67, 112, 69, 0.1);
}
.tbl_box.type-7 tr .ttl {
  background-color: #437045;
  color: #fff;
}
.tbl_box.type-7 .saturday td {
  color: #1877f2;
}
.tbl_box.type-7 .sunday td {
  color: #f13f79;
}
@media all and (max-width: 639px) {
  .tbl_box {
    padding: 10px;
    font-size: 1rem;
  }
  .tbl_box th {
    padding-left: 10px;
  }
  .tbl_box tr td.left:before {
    right: -14px;
    top: 37%;
    border-left: 10px solid #4d77a7;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
  .tbl_box tr .ttl {
    background-color: #437045;
    color: #fff;
    text-align: left;
  }
  .tbl_box.type-purple tr td {
    width: 50%;
  }
  .tbl_box.type-purple tr td.left {
    width: 50%;
    position: relative;
    border-right: none;
  }
  .tbl_box.type-purple tr td.left:before {
    position: absolute;
    content: "";
    right: 0px;
    top: 43%;
    width: 0;
    height: 0;
    border-left: 10px solid #5e5b91;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
}

.tbl-border {
  width: 100%;
}
.tbl-border.type1 {
  border-top: 1px solid #eee;
}
.tbl-border th,
.tbl-border td {
  padding: 30px 10px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
  font-weight: 500;
}
.tbl-border th a,
.tbl-border td a {
  color: rgb(115.4070247934, 108.25, 101.0929752066);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tbl-border th a:after,
.tbl-border td a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  font-weight: 900;
  color: #2544B3;
  margin-left: 5px;
}
.tbl-border th a.map:after,
.tbl-border td a.map:after {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
}
.tbl-border th a:hover,
.tbl-border td a:hover {
  opacity: 0.6;
}
.tbl-border th span,
.tbl-border td span {
  font-size: 85%;
}
@media all and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 20px 10px;
  }
}

.tbl-border2 {
  width: 100%;
  border: 1px solid #807838;
}
.tbl-border2 th,
.tbl-border2 td {
  padding: 4px 10px;
  vertical-align: middle;
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .tbl-border2 th,
  .tbl-border2 td {
    padding: 10px;
    font-size: 1rem;
  }
}
.tbl-border2 th {
  width: 30%;
  color: #fff;
  text-align: center;
  border-color: #807838;
  background-color: #807838;
  border-bottom: 1px solid #807838;
}
.tbl-border2 th.type1 {
  width: 30%;
}
.tbl-border2 th.type2 {
  width: 10%;
}
.tbl-border2 th.type4 {
  width: 15%;
}
.tbl-border2 th.th-1 {
  width: 45%;
}
.tbl-border2 th.sub {
  background-color: transparent;
  border-right: 1px solid #807838;
  color: #807838;
}
.tbl-border2 th.sub a {
  color: #2544B3;
}
.tbl-border2 th.sub a:hover {
  color: #807838;
}
.tbl-border2 td {
  border-color: #ddd;
  text-align: left;
  padding: 4px 20px;
  border-bottom: 1px solid #807838;
  width: 10%;
}
.tbl-border2 td a {
  font-weight: bold;
  color: #807838;
  font-size: 2rem;
}
.tbl-border2 td a:hover {
  color: #2544B3;
}
@media all and (max-width: 639px) {
  .tbl-border2 td a {
    font-size: 1.4rem;
  }
}

.tbl-border3 {
  width: 100%;
}
.tbl-border3.type2 {
  width: 500px;
  margin: 40px auto 0;
}
.tbl-border3.type3 th {
  width: 12%;
}
@media all and (max-width: 639px) {
  .tbl-border3 {
    margin-bottom: 20px;
  }
  .tbl-border3.type2 {
    margin: 40px auto 20px;
    width: 90%;
  }
  .tbl-border3.type3 th {
    width: 28%;
  }
}
.tbl-border3 th,
.tbl-border3 td {
  padding: 4px 10px;
  vertical-align: middle;
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .tbl-border3 th,
  .tbl-border3 td {
    padding: 10px;
    font-size: 1.2rem;
  }
}
.tbl-border3 th {
  width: 20%;
  color: #000;
  text-align: center;
  border-right: 1px solid #333;
  border-bottom: 5px solid transparent;
}
.tbl-border3 th span {
  font-size: 1.4rem;
}
.tbl-border3 th.th-1 {
  width: 45%;
}
@media all and (max-width: 639px) {
  .tbl-border3 th {
    width: 30%;
  }
}
.tbl-border3 td {
  border-color: #fff;
  position: relative;
  padding-left: 20px;
}
.tbl-border3 td:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 12px;
  top: 8px;
}
.tbl-border3 td.type1:before {
  background: url(../img/year01.png) no-repeat;
  background-size: cover;
}
.tbl-border3 td.type2:before {
  background: url(../img/year02.png) no-repeat;
  background-size: cover;
}
.tbl-border3 td.type3:before {
  background: url(../img/year03.png) no-repeat;
  background-size: cover;
}
.tbl-border3 td.type4:before {
  background: url(../img/year04.png) no-repeat;
  background-size: cover;
}
.tbl-border3 td.type5:before {
  background: url(../img/year05.png) no-repeat;
  background-size: cover;
}
.tbl-border3 td.type6:before {
  background: url(../img/year06.png) no-repeat;
  background-size: cover;
}
.tbl-border3 td.type7:before {
  background: url(../img/year07.png) no-repeat;
  background-size: cover;
}
.tbl-border3 td.type8:before {
  background: url(../img/year08.png) no-repeat;
  background-size: cover;
}
.tbl-border3 td.type9:before {
  background: url(../img/year09.png) no-repeat;
  background-size: cover;
}
.tbl-border3 td.type10:before {
  background: url(../img/year10.png) no-repeat;
  background-size: cover;
}
.tbl-border3 td.type11:before {
  background: url(../img/year11.png) no-repeat;
  background-size: cover;
}
.tbl-border3 td.type12:before {
  background: url(../img/year12.png) no-repeat;
  background-size: cover;
}

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

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

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

.footer-txt {
  font-size: 1.3rem;
  line-height: 1.3;
}

.timetable {
  width: 100%;
  border-top: 1px solid #599b64;
}
.timetable.type1 {
  border-top: 1px solid #B5A7C5;
  border-bottom: 1px solid #599b64;
}
.timetable.type1 th,
.timetable.type1 td {
  border-bottom: 1px solid #599b64;
}
.timetable th,
.timetable td {
  border-bottom: 1px solid #B5A7C5;
  padding: 10px 5px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
  color: #599b64;
}
.timetable th .txt,
.timetable td .txt {
  letter-spacing: 0;
  font-size: 12px;
}
@media all and (max-width: 639px) {
  .timetable th,
  .timetable td {
    font-size: 12px;
  }
}
.timetable .thead th {
  border-top: 0;
}
.timetable .th-1 {
  width: 35%;
  font-weight: 600;
  text-align: center;
}
.timetable .circle {
  color: rgb(24, 70, 42);
}
.timetable .triangle {
  color: #68afd8;
}
@media all and (max-width: 639px) {
  .timetable {
    padding: 15px 10px;
  }
  .timetable .th-1 {
    width: 25%;
  }
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 38%;
  height: 0;
  overflow: hidden;
}
.ggmap.type1 {
  padding-bottom: 30%;
}
@media all and (max-width: 639px) {
  .ggmap.type1 {
    padding-bottom: 30%;
  }
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ggmap.youtube {
  padding-bottom: 56.25%;
}

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

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

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

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

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

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

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

.list_disc.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;
}
.list_disc.type1 li {
  width: 48%;
}
.list_disc li {
  padding: 5px 0 5px 20px;
  font-size: 1.4rem;
  position: relative;
}
.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc;
}
.list_disc li:before {
  content: "●";
  position: absolute;
  left: 0;
  top: 8px;
  color: #2544B3;
  font-size: 0.7em;
}
@media all and (max-width: 639px) {
  .list_disc li {
    font-size: 12px;
  }
}

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

.q-list {
  margin-top: 30px;
}
@media all and (max-width: 639px) {
  .q-list {
    margin-top: 30px;
  }
  .q-list:last-child {
    margin-top: 0;
  }
}
.q-list li {
  position: relative;
  padding-left: 30px;
  font-size: 1.6rem;
  padding-bottom: 10px;
}
@media all and (max-width: 639px) {
  .q-list li {
    font-size: 1.4rem;
  }
}
.q-list li:before {
  position: absolute;
  content: "";
  background: url(../img/teeth.png) no-repeat;
  background-size: contain;
  width: 20px;
  height: 30px;
  left: 0;
}

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

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

.blog-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 50px auto 0;
}
@media all and (max-width: 639px) {
  .blog-wrap {
    margin: 0px auto 20px;
  }
}
.blog-wrap * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.blog-wrap > li {
  width: 30%;
  margin: 0 1% 20px;
  position: relative;
  background: white;
  backdrop-filter: blur(12px);
  padding: 15px 10px;
}
@media all and (max-width: 1100px) {
  .blog-wrap > li {
    width: 48%;
  }
}
.blog-wrap > li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.blog-wrap > li:hover {
  background: white;
}
.blog-wrap > li:hover .blog-img img {
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-wrap > li {
    width: 100%;
    margin: 0 auto 0px;
    padding-bottom: 0;
  }
}

.blog-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media all and (max-width: 639px) {
  .blog-img {
    height: 160px;
  }
}
.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;
  width: 100%;
}

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

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

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

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

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

.blog-txt {
  line-height: 1.5;
  color: #333;
  padding: 10px;
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .blog-txt {
    font-size: 12px;
  }
}

.blog-cat {
  font-size: 1.2rem;
}

.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: #2544B3;
  padding: 4px 5px;
  background: #fff;
  font-size: 12px;
  border: 1px solid #2544B3;
}

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

.blog-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 30px;
}
.blog-tab li {
  margin: 0 5px;
}
@media all and (max-width: 639px) {
  .blog-tab li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    margin: 0 3px;
  }
}
.blog-tab a,
.blog-tab button {
  display: block;
  width: 220px;
  padding: 12px 10px;
  text-align: center;
  line-height: 1.5;
  color: #2544B3;
  background: #fff;
  border: 1px solid #2544B3;
  border-radius: 0;
  -webkit-appearance: none;
          appearance: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 1.6rem;
}
@media all and (max-width: 896px) {
  .blog-tab a,
  .blog-tab button {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .blog-tab a,
  .blog-tab button {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}
.blog-tab a:hover,
.blog-tab button:hover {
  background: #f1f4ff;
}
.blog-tab a.current,
.blog-tab button.current {
  color: #fff;
  background: #2544B3;
}
.blog-tab a.current:hover,
.blog-tab button.current:hover {
  background: #2544B3;
}
@media all and (max-width: 639px) {
  .blog-tab a,
  .blog-tab button {
    width: 100%;
    padding: 10px 5px;
  }
}

/* トップ：スタッフブログ／新着情報の左右2カラム */
.blog-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media all and (max-width: 896px) {
  .blog-column {
    display: block;
  }
}
.blog-column > .blog-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 49%;
  margin-right: 0;
  margin-left: 0;
}
@media all and (max-width: 896px) {
  .blog-column > .blog-block {
    width: 100%;
  }
}
@media all and (max-width: 896px) {
  .blog-column > .blog-block + .blog-block {
    margin-top: 40px;
  }
}
.blog-column > .blog-block .common_btn {
  margin-top: auto;
}
.blog-column .scrollbar {
  width: 100%;
  max-height: 460px;
  overflow-y: auto;
  margin: 30px 0 0;
  padding-right: 12px;
}
@media all and (max-width: 639px) {
  .blog-column .scrollbar {
    max-height: 380px;
    margin-top: 20px;
    padding-right: 8px;
  }
}
.blog-column .scrollbar::-webkit-scrollbar {
  width: 6px;
}
.blog-column .scrollbar::-webkit-scrollbar-track {
  background: rgba(37, 68, 179, 0.1);
}
.blog-column .scrollbar::-webkit-scrollbar-thumb {
  background: rgba(37, 68, 179, 0.6);
}
.blog-column .blog-wrap {
  display: block;
  margin: 0;
}
.blog-column .blog-wrap > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0;
  padding: 15px 0;
  background: none;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  border-bottom: 1px solid rgba(37, 68, 179, 0.15);
}
.blog-column .blog-wrap > li:hover {
  background: none;
}
.blog-column .blog-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  width: 120px;
  height: 90px;
  margin-right: 15px;
}
@media all and (max-width: 639px) {
  .blog-column .blog-img {
    -ms-flex-preferred-size: 100px;
        flex-basis: 100px;
    width: 100px;
    height: 75px;
    margin-right: 10px;
  }
}
.blog-column .blog-detail {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: auto;
  min-width: 0;
  padding-top: 0;
}
.blog-column .blog-title {
  margin: 8px 0 0;
  font-size: 1.5rem;
}
@media all and (max-width: 639px) {
  .blog-column .blog-title {
    font-size: 1.4rem;
  }
}

.blog-box {
  background: rgba(241, 244, 255, 0.8);
  padding: 30px;
}
.blog-box .blog-wrap {
  margin-top: 0;
}
@media all and (max-width: 639px) {
  .blog-box {
    padding: 15px;
  }
}

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

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

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.color1 {
  color: #2544B3;
}

.color2 {
  color: #68afd8;
}

.color3 {
  color: #e65f3e;
}

.brown {
  color: #817971;
}

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

.bigger {
  font-size: 1.15em;
}

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

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

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

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

.telbnr {
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.telbnr li {
  text-align: center;
  line-height: 1.4;
  width: 45%; /* 2個並び用に調整 */
  position: relative;
  margin: 0;
  max-width: 600px;
}
.telbnr li .telbnr_top {
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, rgb(41.3680555556, 76.0277777778, 200.1319444444) 0%, #2544B3 100%);
  padding: 8px 20px;
  border-radius: 30px;
  display: block;
  font-size: 1.3rem;
  max-width: 70%;
  margin: 0 auto -18px;
  -webkit-box-shadow: 0 4px 12px rgba(37, 68, 179, 0.2);
          box-shadow: 0 4px 12px rgba(37, 68, 179, 0.2);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
  pointer-events: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.telbnr li {
  /* FAX側のラベルはサブカラーのグラデーションに */
}
.telbnr li.fax-li .telbnr_top {
  background: linear-gradient(135deg, rgb(193.9246575342, 182.3698630137, 207.1301369863) 0%, #B5A7C5 100%);
  -webkit-box-shadow: 0 4px 12px rgba(181, 167, 197, 0.2);
          box-shadow: 0 4px 12px rgba(181, 167, 197, 0.2);
}
.telbnr li {
  /* 共通ベーススタイル */
}
.telbnr li a, .telbnr li .fax {
  display: block;
  font-family: "Cinzel", serif;
  font-weight: 500;
  border: 2px solid #2544B3;
  color: #2544B3;
  background: #fff;
  padding: 35px 20px 25px;
  white-space: nowrap;
  position: relative;
  text-decoration: none;
  -webkit-box-shadow: 0 8px 24px rgba(37, 68, 179, 0.12);
          box-shadow: 0 8px 24px rgba(37, 68, 179, 0.12);
  -webkit-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
  z-index: 1;
}
.telbnr li a::before, .telbnr li .fax::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 0;
  padding-bottom: 140%;
  border-radius: 50%;
  background: linear-gradient(135deg, #2544B3 0%, rgb(28.2638888889, 51.9444444444, 136.7361111111) 100%);
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
.telbnr li a .telbnr_main, .telbnr li .fax .telbnr_main {
  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;
  gap: 15px;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.telbnr li a .telbnr_main .tel-icon, .telbnr li .fax .telbnr_main .tel-icon {
  display: inline-block;
  -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;
}
.telbnr li a .sub_txt, .telbnr li .fax .sub_txt {
  display: block;
  font-size: 1.4rem;
  color: #333333; /* $txt から $text に修正 */
  margin-top: 10px;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.telbnr li {
  /* FAX専用スタイル ($sub_color と $text を適用) */
}
.telbnr li .fax {
  pointer-events: none;
  cursor: default;
  border-color: #B5A7C5;
  color: #333333; /* FAX番号の文字色は $text に */
  -webkit-box-shadow: 0 8px 24px rgba(181, 167, 197, 0.1);
          box-shadow: 0 8px 24px rgba(181, 167, 197, 0.1);
}
.telbnr li .fax .telbnr_main {
  color: #B5A7C5; /* アイコンやメイン部分を紫系に */
}
.telbnr li .fax .telbnr_main .tel-num {
  color: #333333; /* 番号自体は読みやすいように $text (#333333) に設定 */
}
.telbnr li .fax::before {
  display: none;
}
.telbnr li {
  /* ホバーエフェクト（aタグのみに有効化） */
}
@media (hover: hover) and (pointer: fine) {
  .telbnr li:hover {
    /* FAXではない通常のliの時だけtopの背景を変える */
  }
  .telbnr li:hover:not(.fax-li) .telbnr_top {
    background: #fff;
    color: #2544B3;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  .telbnr li:hover a {
    color: #fff;
    border-color: transparent;
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-box-shadow: 0 12px 30px rgba(37, 68, 179, 0.3);
            box-shadow: 0 12px 30px rgba(37, 68, 179, 0.3);
  }
  .telbnr li:hover a::before {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  .telbnr li:hover a .sub_txt {
    color: rgba(255, 255, 255, 0.8);
  }
  .telbnr li:hover a .tel-icon {
    -webkit-animation: telShake 0.6s ease infinite alternate;
            animation: telShake 0.6s ease infinite alternate;
  }
}
@media all and (max-width: 1100px) {
  .telbnr li a .telbnr_main, .telbnr li .fax .telbnr_main {
    font-size: 2.8rem;
  }
}
@media all and (max-width: 896px) {
  .telbnr {
    gap: 20px;
  }
  .telbnr li {
    width: 100%;
    margin: 0 auto;
  }
  .telbnr li .telbnr_top {
    max-width: 60%;
  }
}
@media all and (max-width: 639px) {
  .telbnr {
    max-width: 100%;
    gap: 15px;
  }
  .telbnr li {
    width: 100%;
  }
  .telbnr li:last-of-type {
    margin-left: auto;
  }
  .telbnr li .telbnr_top {
    font-size: 1.1rem;
    max-width: 75%;
    margin: 0 auto -12px;
  }
  .telbnr li a, .telbnr li .fax {
    margin-top: 0;
    border-radius: 20px;
    padding: 25px 15px 15px;
    -webkit-box-shadow: 0 6px 16px rgba(37, 68, 179, 0.15);
            box-shadow: 0 6px 16px rgba(37, 68, 179, 0.15);
  }
  .telbnr li a .telbnr_main, .telbnr li .fax .telbnr_main {
    font-size: 2.2rem;
    gap: 10px;
  }
  .telbnr li {
    /* スマホ時のFAXシャドウ調整 */
  }
  .telbnr li .fax {
    -webkit-box-shadow: 0 6px 16px rgba(181, 167, 197, 0.1);
            box-shadow: 0 6px 16px rgba(181, 167, 197, 0.1);
  }
}

@-webkit-keyframes telShake {
  0% {
    -webkit-transform: rotate(-10deg) scale(1.1);
            transform: rotate(-10deg) scale(1.1);
  }
  100% {
    -webkit-transform: rotate(10deg) scale(1.1);
            transform: rotate(10deg) scale(1.1);
  }
}

@keyframes telShake {
  0% {
    -webkit-transform: rotate(-10deg) scale(1.1);
            transform: rotate(-10deg) scale(1.1);
  }
  100% {
    -webkit-transform: rotate(10deg) scale(1.1);
            transform: rotate(10deg) scale(1.1);
  }
}
/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 10px auto 10px;
  font-size: 1.2rem;
  z-index: 1;
  position: relative;
  padding-left: 0;
}
.breadcrumb li {
  display: inline;
  color: #333333;
}
.breadcrumb li a {
  color: #B5A7C5;
}
.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}
@media all and (max-width: 639px) {
  .breadcrumb {
    font-size: 12px;
    width: 98%;
  }
}

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 90%;
}
.form dl dt {
  float: left;
  width: 290px;
  padding-top: 14px;
  font-weight: 700;
}
.form dl dt span {
  color: #fff;
  background: rgb(28.2638888889, 51.9444444444, 136.7361111111);
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
  position: relative;
  top: -2px;
}
.form dl dt span.nini {
  background: #d3dd4c;
  color: #817971;
}
.form dl dt.w-100 {
  width: 100%;
  padding-bottom: 10px;
}
.form dl dd {
  padding-left: 290px;
  padding-bottom: 28px;
  padding-top: 18px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
}
.form dl dd:last-child {
  border-bottom: none;
}
.form dl dd.w-100 {
  padding-top: 20px;
  padding-left: 0px;
}
.form dl.type2 {
  margin-top: 10px;
  background-color: #f3faf3;
  padding: 15px;
}
.form dl.type2 dt {
  width: 100px;
}
.form dl.type2 dd {
  padding-bottom: 15px;
  padding-top: 15px;
  padding-left: 100px;
}
@media all and (max-width: 639px) {
  .form dl.type2 dd {
    padding-left: 0px;
  }
}
.form dl.type2 .textarea {
  background-color: #fff;
}
.form dl.type2 label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}
.form dl.type2 label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #666;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}
.form dl.type2 label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #2544B3;
  z-index: 1;
}
.form dl.type2 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 #f3faf3;
          box-shadow: 20px -1px #f3faf3;
}
.form dl.type2 label.radio_text input[type=radio]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form dl.type2 label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  -webkit-box-shadow: 20px -1px #eeebda;
          box-shadow: 20px -1px #eeebda;
}
.form dl.type2 label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
}
.form dl.type2 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 dl.type2 label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #2544B3;
  border-bottom: 3px solid #2544B3;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}
@media all and (max-width: 639px) {
  .form dl.type2 label.checkbox_text:after {
    margin-top: -8px;
  }
}
.form dl.type2 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 dl.type2 label.checkbox_text input[type=checkbox]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form dl.type2 label.checkbox_text input[type=checkbox]:checked:focus {
  -webkit-box-shadow: 40px 0px #666;
          box-shadow: 40px 0px #666;
  opacity: 0.1;
}
.form dl.type2 label.checkbox_text input[type=checkbox]:focus {
  -webkit-box-shadow: 41px 0px #eee;
          box-shadow: 41px 0px #eee;
}
.form .textarea,
.form textarea {
  border: 0;
  padding: 20px 15px;
  width: 100%;
  background: #f5f5f5;
  border-radius: 0;
  -webkit-appearance: none;
}
.form .textarea {
  height: 30px;
}
.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}
.form .textarea02:last-child {
  margin-right: 0;
}
.form .textarea03 {
  width: 10%;
  max-width: 100px;
  margin-right: 1%;
}
.form .textarea04 {
  width: 20%;
  margin-right: 1%;
}
.form .textarea05 {
  width: 70%;
  margin-right: 1%;
}
.form .textarea06 {
  height: 90px;
}
.form .textarea07 {
  height: 56px;
}
.form .textarea08 {
  height: 200px;
}
.form .secect-num {
  border: 0;
  padding: 10px 35px 10px 15px;
  background: #f5f5f5;
  position: relative;
}
.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 #2544B3;
  font-weight: 700;
  padding: 12px 5px;
  margin: 40px auto;
  width: 250px;
  background: rgb(28.2638888889, 51.9444444444, 136.7361111111);
  border-radius: 25px;
}
.form button:hover {
  background: #fff;
  color: #2544B3;
}
.form button:before {
  font-weight: normal;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 10px;
}
.form .select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 192px;
  min-width: 12em;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #333;
}
.form .select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  width: -webkit-calc(100% + 5em);
  margin: 0;
  padding: 11px 35px 11px 11px;
  padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}
.form .entypo-down-open-mini:before {
  font-family: "FontAwesome";
  content: "\f0ab";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: 0.75rem;
  margin-top: -8px;
  margin-top: -0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #2544B3;
}
.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: #2544B3;
  z-index: 1;
}
.form label.radio_text input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  -webkit-box-shadow: 20px -1px #fff;
          box-shadow: 20px -1px #fff;
}
.form label.radio_text input[type=radio]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  -webkit-box-shadow: 20px -1px #eeebda;
          box-shadow: 20px -1px #eeebda;
}
.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
}
.form label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
  padding: 1px;
}
.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #2544B3;
  border-bottom: 3px solid #2544B3;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}
@media all and (max-width: 639px) {
  .form label.checkbox_text:after {
    margin-top: -8px;
  }
}
.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;
  max-width: 700px;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

.shadow {
  -webkit-box-shadow: 0 0 10px rgba(129, 121, 113, 0.05);
          box-shadow: 0 0 10px rgba(129, 121, 113, 0.05);
}

.policy {
  padding: 30px;
  background: rgba(37, 68, 179, 0.3);
}

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

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

/*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;
  padding-bottom: 40px;
  max-width: 1500px;
  margin: 100px auto 0;
}
.gallery li {
  margin-right: 2%;
  margin-bottom: 30px;
  width: 31%;
  position: relative;
}
.gallery li:nth-child(3n) {
  margin-right: 0;
}
.gallery li a {
  display: block;
  text-align: center;
  padding: 0px;
  overflow: hidden;
}
.gallery li a img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -o-object-position: center 5%;
     object-position: center 5%;
  /*IE対策*/
}
@media all and (max-width: 639px) {
  .gallery li a img {
    height: 160px;
  }
}
.gallery li a:hover img {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  -webkit-transform: scale(1.12);
          transform: scale(1.12);
}
.gallery li p {
  font-size: 14px;
  margin: 3px 0 10px;
  background-color: #fff;
  padding: 10px 20px;
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 0;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .gallery li {
    margin: 0 2% 20px;
    width: 46%;
  }
  .gallery li p {
    padding: 6px 10px;
  }
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes slideDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slide-down {
  -webkit-animation-name: slideDown;
  animation-name: slideDown;
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
.slide-up {
  -webkit-animation-name: slideUp;
  animation-name: slideUp;
}

.content-wrap {
  height: 420px;
  overflow: hidden;
  position: relative;
  margin: 0;
}

.close-btn,
.more-btn {
  display: block;
  width: 100%;
  padding: 80px 0 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(245, 245, 245, 0)), color-stop(60%, whitesmoke));
  background: linear-gradient(to bottom, rgba(245, 245, 245, 0) 0%, whitesmoke 60%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0 );
}

.close-btn {
  background: none;
}

.slide-up {
  height: 420px;
  padding-bottom: 0;
  overflow: hidden;
}

.slide-down {
  height: auto;
  overflow: visible;
  padding-bottom: 50px;
}

.more-btn p {
  display: inline-block;
  color: #fff;
  cursor: pointer;
  background: #658a76;
  padding: 10px 20px;
  width: 80%;
  max-width: 280px;
  border-radius: 50px;
}
@media all and (max-width: 639px) {
  .more-btn p {
    padding: 6px 20px;
  }
}
.more-btn p.type-green {
  background: #7d995d;
}
.more-btn p.type-brown {
  background: #ac9281;
}
.more-btn p.type-purple {
  background: #a19fc4;
}

.close-btn {
  padding: 0;
  padding-bottom: 20px;
}

.close-btn p {
  background: #aaa;
}

.list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1500px;
  margin-top: -40px;
  margin-left: auto;
  margin-right: auto;
}
.list2.type1 > li,
.list2.type1 > .child {
  background: #fefefe;
  padding: 15px;
}
.list2 > li,
.list2 > .child {
  width: 48%;
  margin-top: 40px;
  position: relative;
}
.list2 > li:nth-child(2n),
.list2 > .child:nth-child(2n) {
  margin-left: 4%;
}
.list2 > li.w10,
.list2 > .child.w10 {
  width: 10%;
}
@media all and (max-width: 639px) {
  .list2 > li.w10,
  .list2 > .child.w10 {
    width: 100%;
  }
}
.list2 > li.w25,
.list2 > .child.w25 {
  width: 25%;
}
@media all and (max-width: 639px) {
  .list2 > li.w25,
  .list2 > .child.w25 {
    width: 100%;
  }
}
.list2 > li.w65,
.list2 > .child.w65 {
  width: 65%;
}
@media all and (max-width: 639px) {
  .list2 > li.w65,
  .list2 > .child.w65 {
    width: 100%;
  }
}
.list2.al-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media all and (max-width: 639px) {
  .list2 {
    margin-top: -20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media all and (max-width: 896px) {
  .list2 > li:nth-child(2n),
  .list2 > .child:nth-child(2n) {
    margin-left: auto;
  }
}
@media all and (max-width: 896px) {
  .list2 > li,
  .list2 > .child {
    width: 100%;
    margin: 20px auto 0;
  }
}
.list3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list3 > li {
  width: 31%;
  position: relative;
  margin: 0 3.495% 30px 0;
}
.list3 > li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list3 > li {
    width: 95%;
    margin: 0 auto 30px;
  }
  .list3 > li:nth-child(3n) {
    margin-right: auto;
  }
}
@media all and (max-width: 639px) {
  .list3 > li.type-2 {
    width: 48%;
    margin: 0 auto 10px;
  }
  .list3 > li.type-2:nth-child(2n) {
    margin-left: 4%;
  }
  .list3 > li.type-2:nth-child(3n) {
    margin-right: auto;
  }
  .list3 > li.type-2 .feature-txt {
    padding: 10px;
  }
  .list3 > li.type-2 .feature-title {
    font-size: 1.2rem;
  }
}

.list4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list4.type1 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list4.type1 li {
  padding: 15px;
  background: rgba(104, 175, 216, 0.2);
  border-radius: 10px;
  display: block;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.list4.type1 li a {
  display: block;
}
.list4.type1 li a:hover {
  position: relative;
  -webkit-transform: translate(0, 10px);
          transform: translate(0, 10px);
}
.list4.type1 li img {
  width: 60px;
  margin: 0 auto 10px;
}
@media all and (max-width: 639px) {
  .list4.type1 > li {
    width: 48%;
  }
  .list4.type1 > li img {
    width: 50px;
  }
}
.list4 li {
  margin: 0 1% 20px;
  width: 23%;
}
@media all and (max-width: 1100px) {
  .list4 li {
    width: 31.33%;
  }
}
@media all and (max-width: 639px) {
  .list4 {
    margin-left: auto;
  }
  .list4 li {
    width: 48%;
    margin: 0px 1% 20px;
  }
}

.list6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -30px;
}
.list6 li {
  margin-top: 30px;
  width: 15.8%;
  margin: 0 1% 0 0;
}
.list6 li:nth-child(6n) {
  margin-right: 0;
}
@media all and (max-width: 1100px) {
  .list6 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .list6 li {
    width: 31%;
    margin-bottom: 80px;
  }
  .list6 li:nth-child(3n) {
    margin-right: 0;
  }
}
@media all and (max-width: 639px) {
  .list6 {
    margin-left: auto;
  }
  .list6 li {
    width: 48%;
    margin: 40px 2% 0 0;
  }
  .list6 li:nth-child(3n) {
    margin-right: 2%;
  }
  .list6 li:nth-child(2n) {
    margin-right: 0;
  }
}

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

.box-arrow {
  position: relative;
}
.box-arrow:after {
  position: absolute;
  content: "";
  right: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 0 30px 30px;
  border-color: transparent transparent transparent #d3dd4c;
  z-index: 3;
}
@media all and (max-width: 639px) {
  .box-arrow:after {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: auto;
    bottom: -15px;
    border-width: 15px 20px 0 20px;
    border-color: #d3dd4c transparent transparent transparent;
  }
}

.caution {
  color: #e65f3e;
  letter-spacing: 0;
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .caution {
    font-size: 1.1rem;
  }
}

.note {
  padding: 20px;
  margin-top: 10px;
  background: #B5A7C5;
  border-radius: 8px;
  letter-spacing: 0;
  font-size: 1.5rem;
}
@media all and (max-width: 639px) {
  .note {
    font-size: 12px;
  }
}
.note.type1 {
  background: #f4efe9;
}

.note2 {
  padding: 20px;
  background: #f1f4ff;
  margin-top: 30px;
}

.flow-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flow-dl .flow-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48%;
  margin-right: 4%;
  margin-bottom: 25px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.8);
}
.flow-dl .flow-inner:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .flow-dl .flow-inner {
    width: 100%;
    margin: 0 auto 25px;
  }
  .flow-dl .flow-inner:nth-child(2n) {
    margin-right: auto;
  }
}
.flow-dl dt {
  color: #2544B3;
  width: 60px;
  text-align: center;
  margin-right: 20px;
  font-family: "Kaisei Opti", serif;
  font-weight: 600;
  text-transform: uppercase;
  padding-top: 8px;
}
.flow-dl dt span {
  font-size: 3.5rem;
  display: block;
  line-height: 1;
  color: #599b64;
  font-family: "Cinzel", serif;
  font-weight: 500;
}
.flow-dl dd {
  width: calc(100% - 80px);
}
.flow-dl dt:not(:last-child),
.flow-dl dd:not(:last-child) {
  margin-bottom: 20px;
}
@media all and (max-width: 639px) {
  .flow-dl dt {
    font-size: 1.3rem;
  }
  .flow-dl dt span {
    font-size: 2.2rem;
  }
}

.number {
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: 4.5rem;
  color: #e6c405;
  line-height: 1;
  top: 0;
  left: 0;
  position: absolute;
}
@media all and (max-width: 639px) {
  .number {
    font-size: 2.8rem;
    top: 10px;
  }
}

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

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

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

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

.faq-dl {
  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: #fff;
}
@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: "Kaisei Opti", serif;
  font-weight: 600;
  text-transform: uppercase;
}
.faq-dl .faq-inner dt {
  background-image: -webkit-gradient(linear, left top, right top, from(#2544B3), to(#2544B3));
  background-image: linear-gradient(to right, #2544B3, #2544B3);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 10px 10px 55px;
}
.faq-dl .faq-inner dt:before {
  content: "Q";
  color: #d3dd4c;
  font-size: 3rem;
}
.faq-dl .faq-inner dd {
  padding: 20px 20px 20px 55px;
}
.faq-dl .faq-inner dd:before {
  content: "A";
  color: #e6c405;
  font-size: 3rem;
}

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

.profi-box {
  position: relative;
}

.name {
  width: 200px;
  margin: -20px auto 20px;
  position: absolute;
  z-index: 2;
  background: #2544B3;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 15px 6px;
  -webkit-box-shadow: 0 0 8px rgba(129, 121, 113, 0.05);
          box-shadow: 0 0 8px rgba(129, 121, 113, 0.05);
  line-height: 1.5;
  font-size: 1.6rem;
  border-radius: 0 5px 5px 0;
  bottom: 0;
  left: -10px;
  -webkit-filter: drop-shadow(6px 5px 1px rgba(0, 0, 0, 0.6));
          filter: drop-shadow(6px 5px 1px rgba(0, 0, 0, 0.6));
}
.name .small {
  font-size: 0.8em;
}

.profi-txt {
  background-color: #fff;
  border-top: 2px solid #B5A7C5;
  padding: 20px;
}
.profi-txt span {
  color: #2544B3;
  font-weight: bold;
  padding-right: 8px;
}

.clinicphoto {
  max-width: 580px;
}
.clinicphoto img {
  width: 100%;
}

.greet {
  font-weight: 600;
  letter-spacing: 0;
  line-height: 2;
  color: #817971;
}

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

.box1 {
  background: #fff;
  -webkit-box-shadow: 0 3 10px rgba(37, 68, 179, 0.15);
          box-shadow: 0 3 10px rgba(37, 68, 179, 0.15);
  padding: 30px;
  border-radius: 8px;
  margin-right: auto;
  margin-left: auto;
}
.box1.type1 {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
}
.box1.type1:before {
  position: absolute;
  content: "";
  left: 50%;
  top: -80px;
  width: 1px;
  height: 80px;
  z-index: 2;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(95.8888888889, 123.4444444444, 222.1111111111)), to(#2544B3));
  background-image: linear-gradient(to top, rgb(95.8888888889, 123.4444444444, 222.1111111111), #2544B3);
  opacity: 0.7;
}
@media all and (max-width: 639px) {
  .box1 {
    padding: 25px 15px;
  }
}

.pickup {
  font-family: "Kaisei Opti", serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #2544B3;
}

.flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.flow-list.type1 {
  display: block;
}
.flow-list.type1 li {
  width: 100%;
}
.flow-list.type1 li .flow-title {
  margin-bottom: 10px;
}
.flow-list li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 35px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #fefefe;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 15px rgba(129, 121, 113, 0.05);
          box-shadow: 0 0 15px rgba(129, 121, 113, 0.05);
}
.flow-list li.type100 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin-right: 0;
}
.flow-list li:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .flow-list li {
    width: 90%;
    margin: 0 auto 30px;
  }
  .flow-list li:nth-child(2n) {
    margin-right: auto;
  }
}
.flow-list li .flow-num {
  color: #2544B3;
  font-size: 3.5rem;
  border-right: 1px solid #2544B3;
  padding-right: 15px;
  -ms-flex-item-align: center;
      align-self: center;
  line-height: 1.2;
  font-family: "Cinzel", serif;
  font-weight: 500;
}
.flow-list li .flow-num span {
  font-size: 1.3rem;
  display: block;
  text-align: center;
}
.flow-list li .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 35px;
}
.flow-list li .flow-title {
  color: #2544B3;
  border-bottom: 1px solid #2544B3;
  padding-bottom: 4px;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}
@media all and (max-width: 639px) {
  .flow-list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flow-list li .flow-num {
    font-size: 2.2rem;
    text-align: center;
    border-right: 0;
    padding: 0 0 4px;
    border-bottom: 1px solid #2544B3;
  }
  .flow-list li .flow-title {
    font-size: 1.3rem;
  }
  .flow-list li .txt {
    margin: 20px auto 0;
  }
}

.flow-box {
  position: relative;
  margin-bottom: 20px;
}
.flow-box .txtarea {
  position: relative;
}
.flow-box .txtarea .flow-arrow {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  width: 0;
  height: 0;
  bottom: 50px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #B5A7C5;
}
@media all and (max-width: 639px) {
  .flow-box .txtarea {
    padding-bottom: 50px;
  }
  .flow-box .txtarea .flow-arrow {
    bottom: 10px;
  }
}

.price-dl dt {
  background: rgb(234.7934782609, 227.0217391304, 203.7065217391);
  padding: 14px 20px;
  color: #817971;
  border-top: 1px solid #B5A7C5;
  border-bottom: 1px solid #B5A7C5;
}
.price-dl dd {
  padding: 20px;
  margin-bottom: 25px;
}

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

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

/* slick
----------------------------------*/
.sliderArea-box {
  border-left: 2px solid #2544B3;
}
@media all and (max-width: 639px) {
  .sliderArea-box {
    border-left: none;
  }
}

.sliderArea {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 25px;
}
@media all and (max-width: 639px) {
  .sliderArea {
    max-width: 100%;
  }
}

.sliderArea.w300 {
  max-width: 300px;
}

.slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}

.slick-slide {
  margin: 0 5px;
  padding: 15px !important;
}

.slick-slide img {
  width: 100%;
  height: 100%;
}

.slick-prev,
.slick-next {
  z-index: 1;
  background: #333;
}

.slick-prev:before,
.slick-next:before {
  color: #000;
}

.slick-prev:before {
  position: absolute;
  content: "";
  color: #000;
  background: url(../img/arrow-left.png) no-repeat !important;
  background-size: contain !important;
  width: 20px;
  height: 20px;
  left: 10px;
  top: 48%;
  z-index: 1;
}
@media all and (max-width: 639px) {
  .slick-prev:before {
    left: -10px;
  }
}

@media all and (max-width: 639px) {
  .slick-prev {
    left: -30px !important;
  }
}

.slick-next:before {
  color: #000;
  position: absolute;
  content: "";
  background: url(../img/arrow-right.png) no-repeat !important;
  background-size: contain !important;
  width: 20px;
  height: 20px;
  right: 10px;
  top: 48%;
  z-index: 1;
}
@media all and (max-width: 639px) {
  .slick-next:before {
    right: -10px;
  }
}

@media all and (max-width: 639px) {
  .slick-next {
    right: -30px !important;
  }
}

.slick-slide {
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  opacity: 0.2;
}

.slick-active {
  opacity: 1;
}

.slick-current {
  opacity: 1;
}

.slide_list {
  position: relative;
  display: none;
  margin: 0px auto 30px;
}
.slide_list li {
  margin-right: 1%;
}
.slide_list li img {
  height: 300px;
  -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;
}
.slide_list li p {
  display: none;
}
.slide_list li .caption,
.slide_list li .caption2 {
  display: none;
}
.slide_list li:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
@media all and (max-width: 639px) {
  .slide_list li img {
    width: 200px;
    height: 240px;
  }
}

.slide_list2 {
  position: relative;
  display: none;
  margin: 0px auto;
}
.slide_list2 li {
  margin-right: 1%;
}
.slide_list2 li p {
  display: none;
}
.slide_list2 li .caption,
.slide_list2 li .caption2 {
  display: none;
}
.slide_list2 li img {
  height: 300px;
  -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;
}
.slide_list2 li:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
@media all and (max-width: 639px) {
  .slide_list2 li img {
    width: 200px;
    height: 240px;
  }
}

.top-list li {
  padding: 8px;
  font-weight: 600;
}
.top-list li:not(:last-child) {
  margin-bottom: 10px;
  border-bottom: 1px solid #817971;
}
.top-list li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 5px;
  color: #e6c405;
}
.top-list.type1 li:before {
  color: #68afd8;
}

.name-box {
  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;
  text-align: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  font-weight: 600;
  margin: 10px auto 40px;
}
.name-box p {
  color: rgb(28.2638888889, 51.9444444444, 136.7361111111);
}
.name-box p span {
  display: block;
  font-size: 1.3rem;
  color: #817971;
}
@media all and (max-width: 639px) {
  .name-box p span {
    font-size: 12px;
  }
}
.name-box p:first-child {
  margin-left: 30px;
}

.about-txt {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 70px;
     -moz-column-gap: 70px;
          column-gap: 70px;
}
@media all and (max-width: 639px) {
  .about-txt {
    -webkit-column-count: inherit;
       -moz-column-count: inherit;
            column-count: inherit;
  }
}

.top-anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 800px;
  margin: 30px auto 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top-anchor li {
  width: 31%;
}
.top-anchor li a {
  display: block;
  width: 100%;
  text-align: center;
}
.top-anchor li img {
  max-width: 80%;
  margin: 0 auto;
}
.top-anchor li .anchor-title {
  position: relative;
  margin-top: 20px;
}
.top-anchor li .anchor-title span {
  padding: 10px 0;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  border-top: 0.9px solid #2544B3;
  border-bottom: 0.9px solid #2544B3;
  letter-spacing: 0.15em;
}
@media all and (max-width: 639px) {
  .top-anchor li .anchor-title span {
    display: block;
    font-size: 1.2rem;
    line-height: 1.3;
    padding: 6px 0;
  }
}
.top-anchor li .anchor-title:after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 12.5px 0 12.5px;
  border-color: #2544B3 transparent transparent transparent;
}

/* top_main
----------------------------------*/
.top_main {
  overflow: hidden;
  margin-bottom: 20px;
}
.top_main .inner {
  position: relative;
  margin: 40px 0 60px;
}
.top_main .inner .top_main_contents {
  position: relative;
  max-width: calc(100% - 100px);
  margin: 0 auto;
}
.top_main .inner .top_main_contents .top_main_txt {
  position: relative;
  width: 750px;
  left: 0%;
  max-width: 100%;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(3px);
  padding: 35px 50px;
}
.top_main .inner .top_main_contents .top_main_img {
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 40px;
  width: 800px;
  max-width: 100%;
}
.top_main .inner .top_main_contents .top_main_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 896px) {
  .top_main .inner .top_main_contents .top_main_img {
    display: none;
  }
}
.top_main .inner .top_main_contents .top_main_img_small {
  display: none;
}
@media all and (max-width: 896px) {
  .top_main .inner .top_main_contents .top_main_img_small {
    display: block;
    margin-bottom: 30px;
  }
}
@media all and (max-width: 896px) {
  .top_main .inner .top_main_contents {
    max-width: 90%;
    margin: auto;
  }
  .top_main .inner .top_main_contents .top_main_txt {
    left: 0%;
    padding: 15px;
  }
}
@media all and (max-width: 639px) {
  .top_main .inner .top_main_contents {
    max-width: 95%;
  }
}

.bg-concern {
  border: 2px solid #e2ceaf;
  max-width: 1200px;
  margin: -30px auto 40px;
  position: relative;
  z-index: 2;
  padding: 25px 0;
}
@media all and (max-width: 896px) {
  .bg-concern {
    max-width: 95%;
  }
}

.feature-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-left: auto;
  margin-right: auto;
  margin-top: 50px;
}
.feature-list > li {
  width: 31%;
  position: relative;
  margin-bottom: 50px;
}
@media all and (max-width: 639px) {
  .feature-list > li {
    width: 95%;
    margin: 0 auto 35px;
  }
}
.feature-list > li:nth-child(3n+2) {
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
@media all and (max-width: 639px) {
  .feature-list > li:nth-child(3n+2) {
    -webkit-transform: none;
            transform: none;
  }
}
.feature-list > li .feature-inner {
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
  position: relative;
}
.feature-list > li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 639px) {
  .feature-list > li figure {
    width: 100%;
    height: 250px;
  }
}
.feature-list > li .feature-num {
  display: block;
  position: absolute;
  text-align: center;
  font-size: 3rem;
  width: 70px;
  height: 70px;
  background: rgba(17, 17, 17, 0.8);
  font-family: "Cinzel", serif;
  font-weight: 500;
  color: #fff;
  left: 20px;
  top: -30px;
  z-index: 3;
  border-radius: 50%;
  line-height: 70px;
}
@media all and (max-width: 639px) {
  .feature-list > li .feature-num {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 3rem;
  }
}
.feature-list > li .feature-txt {
  position: relative;
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .feature-list > li .feature-txt {
    padding: 25px 15px;
    font-size: 1.2rem;
  }
}
.feature-list > li .feature-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  margin-bottom: 10px;
}
@media all and (max-width: 639px) {
  .feature-list > li .feature-title {
    font-size: 1.5rem;
  }
}
.feature-list > li:hover .feature-inner {
  background: lemonchiffon;
}
@media all and (max-width: 639px) {
  .feature-list {
    padding: 0 10px;
  }
}

.article-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;
}
.article-box .left {
  width: 30%;
}
.article-box .right {
  width: 68%;
}
@media all and (max-width: 896px) {
  .article-box {
    padding: 0 10px;
  }
  .article-box .left {
    width: 100%;
  }
  .article-box .right {
    width: 100%;
  }
}

.fixed-btn {
  position: fixed;
  right: 0;
  top: 130px;
  z-index: 150;
  width: 60px;
}
.fixed-btn a {
  display: block;
  font-weight: 600;
  font-size: 1.5rem;
  color: #fff;
}
.fixed-btn a:hover {
  opacity: 0.8;
}
.fixed-btn a:last-of-type {
  margin-top: 10px;
}
@media all and (max-width: 639px) {
  .fixed-btn {
    top: auto;
    width: 100%;
    bottom: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .fixed-btn a {
    background: #aa8f3e;
    padding: 0 10px;
  }
  .fixed-btn a:last-of-type {
    margin: 0;
    background: #6f5e53;
  }
}

.covid-area {
  position: relative;
  padding: 0 0 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(#222), to(#111));
  background: linear-gradient(to bottom, #222, #111);
}

.covid-wrap {
  max-width: 1000px;
  margin: 0 auto 0;
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  -webkit-box-shadow: 0px 7px 29px 0px rgba(0, 0, 0, 0.02);
          box-shadow: 0px 7px 29px 0px rgba(0, 0, 0, 0.02);
  -webkit-transform: translateY(-25px);
          transform: translateY(-25px);
  z-index: 20;
  cursor: pointer;
}
@media all and (max-width: 639px) {
  .covid-wrap {
    max-width: 95%;
    padding: 20px 15px;
    border-radius: 10px;
  }
}

.covid-title {
  border-top: 0.9px solid #2544B3;
  border-bottom: 0.9px solid #2544B3;
  padding: 10px 5px;
  text-align: center;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.6;
  color: #817971;
  margin-bottom: 25px;
  position: relative;
}
.covid-title:after {
  position: absolute;
  content: "";
  right: 10px;
  top: 15px;
  width: 20px;
  height: 20px;
  border-top: 2px solid #68afd8;
  border-right: 2px solid #68afd8;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media all and (max-width: 639px) {
  .covid-title {
    padding: 10px 40px 10px 5px;
    font-size: 1.6rem;
  }
  .covid-title:after {
    width: 14px;
    height: 14px;
  }
}

.covid-content {
  display: none;
}

/*half-box*/
.half-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.half-box.type1 .half-img {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28195/top01.webp) no-repeat center 12%/cover;
}
.half-box.type1 .half-txt {
  padding: 140px 40px;
}
.half-box.type1 .title-big2 {
  padding: 0 0 0 50px;
}
.half-box .half-img {
  width: 50%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28195/top01.webp) no-repeat center 12%/cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.half-box .half-txt {
  width: 50%;
  padding: 140px 40px;
}
.half-box .half-txt .txt {
  line-height: 3.7rem;
}
.half-box .inner {
  max-width: 523px;
  margin: 0 auto;
  position: relative;
}

@media all and (max-width: 1200px) {
  .half-box.type1 .half-txt {
    padding: 80px 40px;
  }
}
@media all and (max-width: 639px) {
  .half-box.type1 .half-txt {
    padding: 40px 20px;
  }
}
@media all and (max-width: 639px) {
  .half-box.type1 .half-img {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .half-box.type1 .title-big2 {
    padding: 0;
  }
}
@media all and (max-width: 639px) {
  .half-box .half-img.type1:before {
    width: 150px;
    height: 150px;
  }
}
@media all and (max-width: 639px) {
  .half-box .half-img.type2:before {
    width: 100px;
    height: 100px;
    left: 12px;
  }
}
@media all and (max-width: 639px) {
  .half-box .half-img {
    width: 100%;
    height: 300px;
  }
  .half-box .half-txt {
    width: 100%;
    padding: 40px 20px;
    min-height: initial;
  }
}
.tel-box {
  border: 0.9px solid #817971;
  width: 80%;
  margin: 0 auto 40px;
  padding: 30px;
  text-align: center;
}
.tel-box a {
  display: block;
  font-size: 4rem;
  line-height: 1.3;
  font-family: "Kaisei Opti", serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #68afd8;
}
.tel-box a:hover {
  color: #2544B3;
}
.tel-box a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 8px;
  font-size: 0.8em;
}
@media all and (max-width: 639px) {
  .tel-box {
    padding: 20px;
    max-width: 95%;
  }
  .tel-box a {
    font-size: 2.6rem;
  }
}

/*----------------------------------
 flex
----------------------------------*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
.flex.sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media all and (max-width: 1100px) {
  .flex.flex-pro {
    display: block;
  }
  .flex.flex-pro .flex-30 {
    width: 90%;
    margin: 0 auto;
  }
  .flex.flex-pro .flex-68 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
  .flex.flex-pro .flex-40 {
    width: 40%;
  }
}
@media all and (max-width: 1100px) and (max-width: 639px) {
  .flex.flex-pro .flex-40 {
    width: 100%;
  }
}
@media all and (max-width: 896px) {
  .flex.flex-tbl {
    display: block;
  }
  .flex.flex-tbl .flex-48 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .flex.flex-tbl .flex-48.l-m2 {
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (max-width: 639px) {
  .flex {
    display: block;
  }
}
.flex.w-100 {
  width: 100%;
}
.flex.j-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex.a-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex.a-first {
  -ms-flex-wrap: inherit;
      flex-wrap: inherit;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.flex.a-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.flex.reverse .flex-68 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.flex.reverse .flex-30 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.flex.reverse .flex-30.l-m2 {
  margin-left: 0;
}
.flex .flex-15 {
  width: 15%;
}
@media all and (max-width: 639px) {
  .flex .flex-15 {
    width: 90%;
    margin: 0 auto;
  }
}
.flex .flex-10 {
  width: 10%;
}
@media all and (max-width: 639px) {
  .flex .flex-10 {
    width: 90%;
    margin: 0 auto;
  }
}
.flex .flex-20 {
  width: 20%;
}
.flex .flex-20.l-m2 {
  margin-left: 2%;
}
@media all and (max-width: 639px) {
  .flex .flex-20 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .flex .flex-20.l-m2 {
    margin-left: auto;
  }
}
.flex .flex-24 {
  width: 24%;
}
@media all and (max-width: 639px) {
  .flex .flex-24 {
    width: 100%;
    margin: 0 auto;
  }
}
.flex .flex-30 {
  width: 30%;
}
.flex .flex-30.l-m2 {
  margin-left: 2%;
}
@media all and (max-width: 639px) {
  .flex .flex-30 {
    width: 100%;
    margin: 0 auto;
  }
  .flex .flex-30.l-m2 {
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-38 {
  width: 38%;
}
.flex .flex-38.l-m2 {
  margin-left: 2%;
}
@media all and (max-width: 639px) {
  .flex .flex-38 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .flex .flex-38.l-m2 {
    margin-left: auto;
  }
}
.flex .flex-40 {
  width: 40%;
}
@media all and (max-width: 1100px) {
  .flex .flex-40 {
    width: 40%;
  }
}
@media all and (max-width: 639px) {
  .flex .flex-40 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-48 {
  width: 48%;
}
@media all and (max-width: 639px) {
  .flex .flex-48 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .flex .flex-48:first-child {
    margin-left: auto;
  }
}
.flex .flex-48.l-m2 {
  margin-left: 2%;
}
@media all and (max-width: 639px) {
  .flex .flex-48.l-m2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-48.l-m4 {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .flex .flex-48.l-m4 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-50 {
  width: 50%;
}
.flex .flex-50 .inner {
  padding: 80px 40px;
}
@media all and (max-width: 639px) {
  .flex .flex-50 {
    width: 100%;
  }
}
.flex .flex-55 {
  width: 55%;
}
@media all and (max-width: 639px) {
  .flex .flex-55 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }
}
.flex .flex-58 {
  width: 58%;
}
@media all and (max-width: 639px) {
  .flex .flex-58 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-60 {
  width: 60%;
}
@media all and (max-width: 639px) {
  .flex .flex-60 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-68 {
  width: 68%;
}
@media all and (max-width: 639px) {
  .flex .flex-68 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-68.l-m2 {
  margin-left: 2%;
}
@media all and (max-width: 639px) {
  .flex .flex-68.l-m2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-70 {
  width: 70%;
}
@media all and (max-width: 639px) {
  .flex .flex-70 {
    width: 100%;
  }
}
.flex .flex-76 {
  width: 76%;
}
@media all and (max-width: 639px) {
  .flex .flex-76 {
    width: 100%;
  }
}
.flex .flex-78 {
  width: 78%;
}
@media all and (max-width: 639px) {
  .flex .flex-78 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-78.l-m2 {
  margin-left: 2%;
}
@media all and (max-width: 639px) {
  .flex .flex-78.l-m2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-80 {
  width: 80%;
}
@media all and (max-width: 639px) {
  .flex .flex-80 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-86 {
  width: 86%;
}
@media all and (max-width: 639px) {
  .flex .flex-86 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-86.l-m4 {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .flex .flex-86.l-m4 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-85 {
  width: 85%;
}
@media all and (max-width: 639px) {
  .flex .flex-85 {
    width: 100%;
  }
}

.t-black {
  color: #111;
}

.listbox {
  margin: 0 30px;
}
@media all and (max-width: 639px) {
  .listbox {
    margin: 0 15px;
  }
}
.listbox li {
  padding: 5px 30px;
  border-bottom: 2px dotted #83997d;
  position: relative;
  font-size: 1.6rem;
}
@media all and (max-width: 639px) {
  .listbox li {
    padding: 5px 20px;
  }
  .listbox li.t-min {
    font-size: 1.3rem;
  }
}
.listbox li:before {
  position: absolute;
  content: "";
  width: 100%;
  border-bottom: 2px solid #B5A7C5;
  bottom: -4px;
  left: 0;
  opacity: 0.3;
}
.listbox li span {
  padding-right: 5px;
  color: #2544B3;
}

.whiten-box .title {
  text-align: center;
  font-size: 2rem;
}
.whiten-box .title span {
  font-size: 3rem;
  font-weight: bold;
  color: #B5A7C5;
}
@media all and (max-width: 639px) {
  .whiten-box .title {
    font-size: 1.5rem;
  }
  .whiten-box .title span {
    font-size: 2rem;
  }
}
.whiten-box .txt .line {
  border-bottom: 2px solid #B5A7C5;
}
.whiten-box .txt .bold {
  font-size: 1.6rem;
  font-weight: bold;
}
@media all and (max-width: 639px) {
  .whiten-box .txt .bold {
    font-size: 1.5rem;
  }
}

.photo-deko {
  -webkit-filter: drop-shadow(8px 8px 0px #83997d);
          filter: drop-shadow(8px 8px 0px #83997d);
}
.photo-deko img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.photo-deko {
  margin-bottom: 20px;
}

.attention-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 0 50px;
}
.attention-box .list3 {
  max-width: 900px;
  margin: 0 auto;
}
.attention-box li {
  background-color: #2544B3;
  border-radius: 20px;
  padding: 20px;
  margin: 0 auto 20px;
  text-align: center;
}
.attention-box li .txt {
  text-align: center;
  color: #fff;
  padding-top: 10px;
}
@media all and (max-width: 639px) {
  .attention-box {
    padding-bottom: 100px;
  }
  .attention-box li {
    width: 48%;
    margin-right: 2%;
  }
  .attention-box li:nth-child(2n) {
    margin-right: 0;
  }
}

/* Q and A table
----------------------------------*/
.qa-list dl {
  position: relative;
  margin: 30px 0 0;
  cursor: pointer;
  border: 1px solid rgb(244, 232, 255);
}
.qa-list dl:first-child {
  margin-top: 0;
}

.qa-list.type1 dl {
  border: none;
}
.qa-list.type1 dl dt {
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  padding: 20px 30px;
}
.qa-list.type1 dl dt:before {
  content: "";
}
.qa-list.type1 dl dd:before {
  content: "";
}
.qa-list.type1 dl dd {
  padding: 20px 30px;
}
@media all and (max-width: 896px) {
  .qa-list.type1 dl dt {
    padding: 20px 20px;
  }
  .qa-list.type1 dl dd {
    padding: 20px 0px;
  }
}

.qa-list .open dt::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.qa-list dl dt {
  position: relative;
  padding: 20px 30px 20px 60px;
  font-weight: bold;
  background-color: #ffffff;
  border-bottom: 1px solid #2544B3;
  font-size: 1.8rem;
}
.qa-list dl dt:before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  top: 22px;
  left: 20px;
  display: block;
  content: "Q.";
  color: #777;
}
.qa-list dl dt:after {
  position: absolute;
  top: 40%;
  right: 26px;
  display: block;
  width: 7px;
  height: 7px;
  margin: auto;
  content: "";
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

.qa-list dl dd {
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 60px;
}
.qa-list dl dd:before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  left: 20px;
  display: block;
  content: "A.";
  font-weight: bold;
  color: #2544B3;
}

@media all and (max-width: 896px) {
  .qa-list dl {
    margin: 10px 0 0;
  }
  .qa-list dl:after {
    top: 20px;
    right: 20px;
    width: 7px;
    height: 7px;
  }
  .qa-list dl dt {
    padding: 16px 26px;
    font-size: 14px;
  }
  .qa-list dl dt:before {
    font-size: 14px;
    top: 20px;
    left: 15px;
  }
  .qa-list dl dd {
    margin: 0;
    padding: 16px;
    font-size: 14px;
  }
  .qa-list dl dd:before {
    font-size: 14px;
    left: 15px;
    margin-top: 5px;
  }
}
.price-list {
  max-width: 1500px;
  margin: 0 auto;
}
.price-list li {
  margin-bottom: 50px;
}
.price-list .mainttl {
  text-align: center;
  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;
  margin-bottom: 10px;
  border-bottom: 2px solid #B5A7C5;
}
.price-list .mainttl .txt {
  color: #2544B3;
  font-size: 2rem;
  padding-bottom: 5px;
}
.price-list .mainttl .num {
  text-align: right;
  font-size: 2rem;
  font-family: "Kaisei Opti", serif;
  font-weight: 600;
  text-transform: uppercase;
}
.price-list .mainttl .num span {
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .price-list .mainttl .txt {
    color: #2544B3;
    font-size: 1.4rem;
  }
  .price-list .mainttl .num {
    text-align: right;
    font-size: 1.3rem;
    font-family: "Kaisei Opti", serif;
    font-weight: 600;
    text-transform: uppercase;
  }
  .price-list .mainttl .num span {
    font-size: 1.4rem;
  }
}

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

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

.news-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 4px 4px 6px;
}
.news-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.news-list li .data {
  font-size: 1.6rem;
  color: #333;
  border: 0.9px solid #333;
  padding: 0px 10px;
  font-family: "Cinzel", serif;
  font-weight: 500;
  /*background: #111;*/
}
@media all and (max-width: 639px) {
  .news-list li .data {
    font-size: 12px;
  }
}
.news-list li .tag {
  font-size: 1.4rem;
  color: #fff;
  background-color: #333;
  border: 0.9px solid #333;
  padding: 4px 6px;
  margin-left: 20px;
  width: 120px;
  text-align: center;
  /*background: #111;*/
}
@media all and (max-width: 639px) {
  .news-list li .tag {
    font-size: 12px;
    margin-left: 0px;
  }
}
.news-list li .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 4px 0 0 20px;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #000;
  font-weight: normal;
}
.news-list li .txt a {
  color: #000;
  font-weight: normal;
  text-decoration: underline;
  font-weight: normal;
}
.news-list li .txt a:hover {
  opacity: 0.5;
}
@media all and (max-width: 896px) {
  .news-list li {
    display: block;
  }
  .news-list li .data {
    display: inline-block;
    font-size: 1.2rem;
    padding: 4px;
    margin-left: 0;
  }
  .news-list li .txt {
    margin: 5px 0 0;
    display: block;
    font-size: 1.2rem;
  }
}

.anime-txt {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 50%;
  top: 30%;
}
@media all and (max-width: 639px) {
  .anime-txt {
    top: -10%;
    width: 60%;
  }
}

#catch-logo {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transition: opacity 2s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: opacity 2s cubic-bezier(0.18, 0.06, 0.23, 1);
  opacity: 0;
  -webkit-animation: texton 1s linear 3s forwards;
          animation: texton 1s linear 3s forwards;
}

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

@keyframes texton {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.5;
  }
}
.cls-1 {
  stroke: rgb(255, 255, 255);
  stroke-width: 0.5px;
  fill: rgb(255, 255, 255);
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  -webkit-animation: textAnime 9s linear 3s forwards;
          animation: textAnime 9s linear 3s forwards;
}
.cls-1.type2 {
  -webkit-animation: textAnime2 2s linear 3s forwards;
          animation: textAnime2 2s linear 3s forwards;
  stroke-dasharray: 0;
  fill: none;
  stroke: none;
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
  stroke-miterlimit: 10;
  stroke-width: 2px;
}

@-webkit-keyframes textAnime {
  0% {
    stroke-dashoffset: 600;
    fill: transparent;
  }
  15% {
    fill: transparent;
  }
  31% {
    stroke-dashoffset: 0;
    fill: rgb(255, 255, 255);
  }
  32% {
    stroke-dashoffset: 0;
    fill: rgb(255, 255, 255);
  }
}

@keyframes textAnime {
  0% {
    stroke-dashoffset: 600;
    fill: transparent;
  }
  15% {
    fill: transparent;
  }
  31% {
    stroke-dashoffset: 0;
    fill: rgb(255, 255, 255);
  }
  32% {
    stroke-dashoffset: 0;
    fill: rgb(255, 255, 255);
  }
}
@-webkit-keyframes textAnime2 {
  0% {
    fill: transparent;
  }
  15% {
    fill: transparent;
  }
  100% {
    stroke: #fff;
    stroke-dasharray: 9.044 9.044;
  }
}
@keyframes textAnime2 {
  0% {
    fill: transparent;
  }
  15% {
    fill: transparent;
  }
  100% {
    stroke: #fff;
    stroke-dasharray: 9.044 9.044;
  }
}
@-webkit-keyframes animeline {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes animeline {
  to {
    stroke-dashoffset: 0;
  }
}
/*----------------------------------
txtdeko
----------------------------------*/
.txtdeko .main {
  position: relative;
  color: #2544B3;
  font-size: 2rem;
}
.txtdeko .main:before {
  position: absolute;
  content: "";
  background-color: #2544B3;
  opacity: 0.2;
  height: 10px;
  width: 104%;
  left: -2%;
  bottom: 0;
}
@media all and (max-width: 639px) {
  .txtdeko .main {
    font-size: 1.5rem;
    display: inline-block;
  }
}
.txtdeko .minmain {
  position: relative;
  z-index: 1;
}
.txtdeko .minmain:before {
  position: absolute;
  content: "";
  background-color: #2544B3;
  opacity: 0.2;
  height: 10px;
  width: 112%;
  left: -6%;
  bottom: 0;
  z-index: -1;
}
.txtdeko .mintxt {
  font-size: 1.2rem;
  display: block;
  line-height: 1.4;
}
@media all and (max-width: 639px) {
  .txtdeko .mintxt {
    font-size: 1rem;
    display: block;
    line-height: 1.4;
  }
}
.txtdeko .txt {
  padding-left: 5px;
}

.txtdeko2 {
  position: relative;
  padding-top: 14px;
}
.txtdeko2:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 14px;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 14px solid #2544B3;
}

.txtdeko3 {
  position: relative;
  padding: 0 20px;
}
.txtdeko3 span {
  position: relative;
}
.txtdeko3 span:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 8px;
  border-left: 10px solid #2544B3;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  top: 2px;
  left: -8px;
}
.txtdeko3.type2 span:before {
  left: -12px;
  border-left: 10px solid #599b64;
}
@media all and (max-width: 639px) {
  .txtdeko3 {
    text-align: left;
  }
}

.txtdeko4 {
  margin-bottom: 10px;
  text-align: center;
  position: relative;
}
.txtdeko4 span {
  background-color: #B5A7C5;
  padding: 2px 15px;
  font-family: "Noto Sans JP", sans-serif, "Cinzel", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 700;
  position: relative;
  z-index: 2;
  font-size: 1.8rem;
  border-radius: 50px;
}
@media all and (max-width: 639px) {
  .txtdeko4 span {
    font-size: 1.4rem;
    display: inline-block;
  }
}
.txtdeko4.t-left {
  text-align: left;
}

.txtdeko5 {
  background-color: #2544B3;
  color: #fff;
  padding: 4px 20px;
}
.txtdeko5.type-purple {
  background-color: #5e5b91;
}
.txtdeko5.type-green {
  background-color: #437045;
}

.txtdeko-min {
  font-weight: normal;
  font-size: 1.2rem;
}
.txtdeko-min span {
  color: rgb(10.7916666667, 19.8333333333, 52.2083333333);
  font-weight: bold;
}

.txtdeko-min2 {
  font-weight: normal;
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .txtdeko-min2 {
    font-size: 1.2rem;
  }
}

.txtdeko-min3 {
  font-weight: normal;
  font-size: 1.4rem;
  margin-bottom: 5px;
  position: relative;
  padding-left: 10px;
}
.txtdeko-min3:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 70%;
  background-color: #B5A7C5;
  left: 0;
  top: 15%;
}
@media all and (max-width: 639px) {
  .txtdeko-min3 {
    font-size: 1.2rem;
  }
}
.txtdeko-min3 span {
  color: #2544B3;
}

.txtdeko-minbox {
  margin-top: 10px;
  font-size: 1.2rem;
}
.txtdeko-minbox .txt span {
  color: #2544B3;
  font-weight: bold;
}
.txtdeko-minbox .min {
  font-weight: normal;
}
.txtdeko-minbox .min span {
  color: #2544B3;
  font-weight: bold;
}

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

.txtdeko-blue {
  color: #1877f2;
  text-align: left;
}

.txtdeko-red {
  color: #f13f79;
  text-align: left;
}

.txtdeko-bold {
  font-weight: bold;
  text-align: left;
}

.txtdeko-arrow {
  position: relative;
}
.txtdeko-arrow span {
  position: relative;
}
.txtdeko-arrow span:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 20px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid #599b64;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  bottom: -50px;
}

.txtdeko-arrow-right {
  position: relative;
}
.txtdeko-arrow-right span {
  position: relative;
  padding-left: 30px;
}
.txtdeko-arrow-right span:before {
  position: absolute;
  content: "";
  width: 18px;
  height: 10px;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #599b64;
  border-top: 10px solid transparent;
  top: 1px;
  left: 0;
}

.txtdeko6 span {
  background-color: #2544B3;
  color: #fff;
  padding: 4px 10px;
}

.txtdeko7 span {
  color: #fff;
  background: #599b64;
  padding: 2px 5px;
}

.minbox {
  background-color: #fff;
  padding: 20px;
  margin: 10px auto 20px;
}
.minbox.type2 {
  padding: 15px 20px;
  margin-bottom: 10px;
}
.minbox.type3 {
  padding: 15px 20px;
  margin-bottom: 0px;
}

.deko-line {
  position: relative;
}
.deko-line:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 27px;
  background: url(../img/dog-line.png) repeat;
  background-size: 145px 27px;
  top: 0;
}
.deko-line:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 27px;
  background: url(../img/dog-line.png) repeat;
  background-size: 145px 27px;
  bottom: 0;
}

.border-line {
  position: relative;
  padding: 50px 0;
}
.border-line:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 6px;
  background: url(#) repeat-x;
  background-size: 22px 6px;
  left: 0;
  bottom: 50px;
}

.basebox {
  background-color: rgba(37, 68, 179, 0.15);
  font-weight: 300;
  padding: 30px;
  display: table;
  margin-top: 10px;
  width: 100%;
}
.basebox .photo3 img {
  width: 100%;
  height: 206px;
  -o-object-fit: cover;
     object-fit: cover;
}
.basebox .photo2 img {
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
}
.basebox .photo img {
  width: 100%;
  height: 100%;
  min-height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}
.basebox .title {
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #2544B3;
  font-family: "Noto Sans JP", sans-serif, "Cinzel", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 700;
  font-weight: bold;
  font-size: 2rem;
}
.basebox .mintitle {
  text-align: center;
  margin-top: 15px;
}
.basebox .mintitle.t-m0 {
  margin-top: 0;
}
.basebox .mintitle.t-m0 span {
  background-color: #e65f3e;
  font-size: 1.3rem;
  display: inline-block;
  padding: 4px 10px;
}
.basebox .mintitle span {
  background-color: #83997d;
  padding: 4px 20px;
  border-radius: 50px;
  color: #fff;
}
.basebox .subtitle {
  text-align: center;
}
@media all and (max-width: 639px) {
  .basebox .photo3 img {
    height: 120px;
  }
  .basebox .photo2 img {
    height: 120px;
  }
  .basebox .photo img {
    height: 120px;
  }
}

.whitebox {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 40px;
  border-radius: 20px;
  position: relative;
}
.whitebox.arrow:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 20px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid #fff;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.whitebox .txtdeko {
  position: relative;
  padding-bottom: 20px;
}
.whitebox .txtdeko .num {
  border: 1px solid #2544B3;
  color: #2544B3;
  padding: 10px 16px;
}
.whitebox .txtdeko .txt {
  padding-left: 5px;
  font-size: 2rem;
}
.whitebox .txtdeko:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 6px;
  background: url(#) repeat;
  background-size: 22px 6px;
  bottom: 0;
  mix-blend-mode: color-burn;
}
.whitebox .box-detail {
  max-width: 600px;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .whitebox {
    padding: 20px;
  }
  .whitebox .txtdeko .num {
    padding: 6px 12px;
  }
  .whitebox .txtdeko .txt {
    font-size: 1.4rem;
  }
  .whitebox .box-detail {
    max-width: 600px;
    margin: 0 auto;
    font-weight: normal;
  }
}

.borderbox {
  border: 1px solid rgba(37, 68, 179, 0.6);
  padding: 20px;
  margin-top: 10px;
  width: 100%;
}
.borderbox.type-20 {
  margin-top: 20px;
}
.borderbox .title {
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #2544B3;
}

/*----------------------------------
txtbox
----------------------------------*/
.txtbox {
  text-align: left;
  display: table;
}
.txtbox .title {
  display: table-cell;
  font-size: 2rem;
  width: 18%;
  text-align: center;
  background-color: #2544B3;
  color: #fff;
  margin: 0 2% 20px 0;
  vertical-align: middle;
}
.txtbox .txt {
  display: table-cell;
  vertical-align: middle;
  padding: 0 0 0 10px;
}
@media all and (max-width: 639px) {
  .txtbox {
    display: block;
  }
  .txtbox .title {
    width: 50%;
    margin: 0 auto 20px;
    display: block;
    font-size: 1.5rem;
  }
  .txtbox .txt {
    width: 100%;
    padding: 0px;
  }
}

.txtbox2 .title {
  border-bottom: 2px solid #2544B3;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-weight: bold;
  position: relative;
}
.txtbox2 .title span {
  color: #2544B3;
}
.txtbox2.type2 {
  background-color: rgba(89, 155, 100, 0.4);
  color: #fff;
  padding: 4px 20px;
  margin-bottom: 10px;
}
.txtbox2.type2 .title {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0px;
}
.txtbox2.type2 span {
  font-size: 2rem;
  color: #333;
  padding: 0 4px;
}
@media all and (max-width: 639px) {
  .txtbox2.type2 span {
    font-size: 1.8rem;
  }
}

/*----------------------------------
boxdeko
----------------------------------*/
.boxdeko {
  background-color: white;
  padding: 40px;
  font-weight: 300;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 60px auto;
  border-radius: 20px;
}
.boxdeko .title {
  margin: 0 auto;
  text-align: center;
}
.boxdeko .title span {
  background-color: #2544B3;
  color: #fff;
  padding: 10px 30px;
  border-radius: 50px;
  text-align: center;
}
@media all and (max-width: 896px) {
  .boxdeko {
    margin-bottom: 0;
    padding: 20px 0;
    width: 100%;
  }
  .boxdeko.sp-b-20 {
    margin-bottom: 20px;
  }
  .boxdeko .title span {
    display: inline-block;
  }
}
.boxdeko.type-white {
  background-color: #fff;
}
.boxdeko.type-green {
  background-color: rgba(136, 180, 134, 0.1);
}
.boxdeko a {
  padding: 0 5px;
}
.boxdeko .btn {
  border: 1px solid #776528;
  padding: 4px 20px;
  background-color: #776528;
  color: #fff;
  border-radius: 50px;
}
.boxdeko .btn:hover {
  background-color: #fff;
  color: #776528;
}

.boxdeko2 {
  padding: 20px;
  background-color: #fff;
}
@media all and (max-width: 896px) {
  .boxdeko2 {
    padding: 20px;
  }
  .boxdeko2.sp-b-20 {
    margin-bottom: 20px;
  }
}

.boxdeko-min {
  padding: 10px;
  background-color: rgba(221, 221, 221, 0.4);
}
.boxdeko-min.type-white {
  padding: 20px;
  background-color: #fff;
}
.boxdeko-min .main {
  border-bottom: 2px dotted #83997d;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.txtdeko3-bg {
  position: relative;
}
.txtdeko3-bg:before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(37, 68, 179, 0.2);
}

@-webkit-keyframes txtdeko3 {
  0% {
    width: 0%;
    background-color: #599b64;
  }
  100% {
    width: 100%;
  }
}

@keyframes txtdeko3 {
  0% {
    width: 0%;
    background-color: #599b64;
  }
  100% {
    width: 100%;
  }
}
.boxdeko3 {
  background-color: rgba(37, 68, 179, 0.1);
  padding: 40px;
  border-radius: 0px;
  max-width: 1500px;
  margin: 0 auto 50px;
  position: relative;
}
.boxdeko3.txtdeko3-bg {
  background: none;
}
@media all and (max-width: 896px) {
  .boxdeko3 {
    padding: 20px;
  }
  .boxdeko3.sp-b-20 {
    margin-bottom: 20px;
  }
}
.boxdeko3.type2 {
  margin-top: 100px;
  border-radius: 20px 20px 0 0;
}
.boxdeko3 .mtext3 {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  top: -20px;
}
.boxdeko3 .leaf01 {
  position: absolute;
  width: 80px;
  left: -4%;
  top: 2%;
  z-index: 2;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  opacity: 0;
}
.boxdeko3 .leaf02 {
  position: absolute;
  width: 50px;
  left: 0%;
  top: 26%;
  z-index: 2;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
  opacity: 0;
}
.boxdeko3 .leaf03 {
  position: absolute;
  width: 100px;
  right: -5%;
  bottom: -3%;
  z-index: 2;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  opacity: 0;
}
.boxdeko3 .leaf04 {
  position: absolute;
  width: 70px;
  right: 5%;
  bottom: -14%;
  z-index: 2;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
  opacity: 0;
}
@media all and (max-width: 1367px) {
  .boxdeko3 .leaf03 {
    width: 80px;
    right: -1%;
    bottom: -2%;
  }
  .boxdeko3 .leaf04 {
    width: 40px;
    right: 8%;
    bottom: -6%;
  }
}
@media all and (max-width: 896px) {
  .boxdeko3 .leaf01 {
    width: 50px;
    left: -1%;
    top: 2%;
  }
  .boxdeko3 .leaf02 {
    width: 30px;
    left: 2%;
    top: 16%;
  }
  .boxdeko3 .leaf03 {
    width: 50px;
    right: -0.5%;
    bottom: 2%;
  }
  .boxdeko3 .leaf04 {
    width: 40px;
    right: 8%;
    bottom: -6%;
  }
}
@media all and (max-width: 639px) {
  .boxdeko3 .leaf01 {
    width: 50px;
    left: -1%;
    top: -4%;
  }
  .boxdeko3 .leaf02 {
    width: 30px;
    left: 2%;
    top: 18%;
  }
  .boxdeko3 .leaf03 {
    width: 50px;
    right: -2%;
    bottom: 2%;
  }
  .boxdeko3 .leaf04 {
    width: 40px;
    right: 12%;
    bottom: -8%;
  }
}

.anime-leaf {
  -webkit-animation: leaf 1s ease-out 0.5s forwards;
          animation: leaf 1s ease-out 0.5s forwards;
}

.anime-leaf2 {
  -webkit-animation: leaf 1s ease-out 0.9s forwards;
          animation: leaf 1s ease-out 0.9s forwards;
}

.anime-leaf3 {
  -webkit-animation: leaf 1s ease-out 1.3s forwards;
          animation: leaf 1s ease-out 1.3s forwards;
}

.anime-leaf4 {
  -webkit-animation: leaf 1s ease-out 1.7s forwards;
          animation: leaf 1s ease-out 1.7s forwards;
}

/*----------------------------------
photodeko
----------------------------------*/
.photodeko {
  border: 1px solid #2544B3;
}

@media all and (max-width: 639px) {
  .photodeko2 img {
    height: 150px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.w-photo {
  max-width: 300px;
  margin: 0 auto;
}

/*----------------------------------
animation
----------------------------------*/
.bg-on:before {
  -webkit-animation: bg-onanime 1s ease-out 0.6s forwards;
          animation: bg-onanime 1s ease-out 0.6s forwards;
}

@-webkit-keyframes bg-onanime {
  100% {
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
}

@keyframes bg-onanime {
  100% {
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
}
.flower-on {
  -webkit-animation: flower-onanime 1s ease-out 0.7s forwards;
          animation: flower-onanime 1s ease-out 0.7s forwards;
}

@-webkit-keyframes flower-onanime {
  100% {
    mix-blend-mode: normal;
  }
}

@keyframes flower-onanime {
  100% {
    mix-blend-mode: normal;
  }
}
.updown-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.updown-txt span {
  -webkit-transform: translateY(110%);
          transform: translateY(110%);
  display: block;
}
.updown-txt.updown-go span {
  -webkit-animation: updown-anim 1s ease-out forwards;
          animation: updown-anim 1s ease-out forwards;
}

.updown-go span:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.updown-go span:nth-child(2) {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}

.updown-go span:nth-child(3) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.updown-go span:nth-child(4) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}

.updown-go span:nth-child(5) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.updown-go span:nth-child(6) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}

.updown-go span:nth-child(7) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.updown-go span:nth-child(8) {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}

.updown-go span:nth-child(9) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.updown-go span:nth-child(10) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}

.updown-go span:nth-child(11) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.updown-go span:nth-child(12) {
  -webkit-animation-delay: 0.55s;
          animation-delay: 0.55s;
}

.updown-go span:nth-child(13) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.updown-go span:nth-child(14) {
  -webkit-animation-delay: 0.65s;
          animation-delay: 0.65s;
}

.updown-go span:nth-child(15) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.updown-go span:nth-child(16) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}

.updown-go span:nth-child(17) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.updown-go span:nth-child(18) {
  -webkit-animation-delay: 0.85s;
          animation-delay: 0.85s;
}

.border-anime {
  width: 0;
  height: 2px;
  background-color: #555;
  -webkit-animation: border1-anime 0.6s linear 1s forwards;
          animation: border1-anime 0.6s linear 1s forwards;
}

@-webkit-keyframes border1-anime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes border1-anime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/*左右のアニメーション*/
.leftAnime {
  opacity: 0; /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  -webkit-animation-name: slideTextX100;
          animation-name: slideTextX100;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
          animation-name: slideTextX-100;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
/* 4-2　パタッ（左へ） */
.flipLeft {
  -webkit-animation-name: flipLeftAnime;
          animation-name: flipLeftAnime;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-perspective-origin: left center;
          perspective-origin: left center;
  opacity: 0;
}

@-webkit-keyframes flipLeftAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(50deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(50deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipLeftAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(50deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(50deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
/*========= レイアウトのためのCSS ===============*/
/*========= 背景色の動きのCSS ===============*/
/*背景色が伸びて出現 共通*/
.bgextend {
  -webkit-animation-name: bgextendAnimeBase;
          animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  -webkit-animation-name: bgextendAnimeSecond;
          animation-name: bgextendAnimeSecond;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*--------- 左から --------*/
.bgLRextend::before {
  -webkit-animation-name: bgLRextendAnime;
          animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #2544B3; /*伸びる背景色の設定*/
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
/*--------- 右から --------*/
.bgRLextend::before {
  -webkit-animation-name: bgRLextendAnime;
          animation-name: bgRLextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #2544B3; /*伸びる背景色の設定*/
}

@-webkit-keyframes bgRLextendAnime {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes bgRLextendAnime {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
/*--------- 下から --------*/
.bgDUextend::before {
  -webkit-animation-name: bgDUextendAnime;
          animation-name: bgDUextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #2544B3; /*伸びる背景色の設定*/
}

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

@keyframes bgDUextendAnime {
  0% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  100% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}
/*--------- 上から --------*/
.bgUDextend::before {
  -webkit-animation-name: bgUDextendAnime;
          animation-name: bgUDextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

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

@keyframes bgUDextendAnime {
  0% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}
#top_2 ul li a {
  display: block;
  background-size: cover;
  position: relative;
  z-index: 0;
  padding: 120px 0;
  overflow: hidden;
  /*ブラー効果でボヤけた部分を非表示*/
}
#top_2 ul li a:before {
  content: "";
  background: inherit;
  /*.bgImageで設定した背景画像を継承する*/
  -webkit-filter: blur(15px);
  -moz-filter: blur(15px);
  -o-filter: blur(15px);
  -ms-filter: blur(15px);
  filter: blur(15px);
  position: absolute;
  /*ブラー効果で画像の端がボヤけた分だけ位置を調整*/
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  z-index: -1;
  /*重なり順序を一番下にしておく*/
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
#top_2 ul li a.item-1 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28195/top_product01.webp);
  background-position: center 54%;
}
#top_2 ul li a.item-2 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28195/top_product02.webp);
  background-position: center 14%;
}
#top_2 ul li a.item-3 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28195/top_product03.webp);
  background-position: center 5%;
  background-size: contain;
  background-repeat: no-repeat;
}
#top_2 ul li a.item-3:before {
  background-size: cover;
}
#top_2 ul li a.item-4 {
  background-image: url();
}
#top_2 ul li a.item-5 {
  background-image: url(#);
}
#top_2 ul li a:hover:before {
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
#top_2 ul li a .inner {
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#top_2 ul li a .inner .in_item:nth-child(2) {
  margin-left: 38px;
}
@media all and (max-width: 639px) {
  #top_2 ul li a .inner .in_item:nth-child(2) {
    margin-left: 17px;
  }
}
#top_2 ul li a .top_2_item_read_text {
  color: #fff;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 2.4rem;
}
@media all and (max-width: 896px) {
  #top_2 ul li a .top_2_item_read_text {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  #top_2 ul li a .top_2_item_read_text {
    font-size: 1.7rem;
  }
}
#top_2 ul li a .top_2_item_read_text {
  padding-top: 8px;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.9);
}
#top_2 ul li a .top_2_item_read_text span {
  display: block;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
}
@media all and (max-width: 896px) {
  #top_2 ul li a .top_2_item_read_text span {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  #top_2 ul li a .top_2_item_read_text span {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
#top_2 ul li a .top_2_item_read_text span {
  line-height: 1em;
}

.interview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media all and (max-width: 896px) {
  .interview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 639px) {
  .interview-grid {
    grid-template-columns: 1fr;
  }
}
.interview-grid .interview-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.interview-grid .interview-card.voice-yellow {
  background-color: #efe9f6;
  border-color: #B5A7C5;
}
.interview-grid .interview-card .user-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}
.interview-grid .interview-card .user-meta .user-initial {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #B5A7C5;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.interview-grid .interview-card .user-meta .user-tag {
  margin: 0;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
}
@media all and (max-width: 896px) {
  .interview-grid .interview-card .user-meta .user-tag {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .interview-grid .interview-card .user-meta .user-tag {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
.interview-grid .interview-card .user-meta .user-tag {
  font-weight: bold;
  color: #333333;
}
.interview-grid .interview-card .interview-text {
  margin: 0;
  line-height: 1.6;
}

.top-bnr.insta-bnr {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  overflow: hidden;
}
.top-bnr.insta-bnr a {
  display: block;
  padding: 60px 30px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.top-bnr.insta-bnr a:before, .top-bnr.insta-bnr a:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.top-bnr.insta-bnr a:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28195/insta_bnr.webp) no-repeat center/cover;
  -webkit-filter: grayscale(100%) brightness(0.8);
          filter: grayscale(100%) brightness(0.8);
  z-index: -2;
}
.top-bnr.insta-bnr a:after {
  background: linear-gradient(135deg, rgba(81, 91, 212, 0.85) 0%, rgba(129, 52, 175, 0.85) 30%, rgba(221, 42, 123, 0.85) 60%, rgba(254, 218, 119, 0.8) 100%);
  z-index: -1;
}
.top-bnr.insta-bnr a .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}
.top-bnr.insta-bnr a .inner .child-txt {
  width: 100%;
  color: #ffffff;
  text-align: center;
}
.top-bnr.insta-bnr a .inner .child-txt .bnr-title {
  margin-bottom: 25px;
  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;
}
.top-bnr.insta-bnr a .inner .child-txt .bnr-title .insta-icon {
  display: block;
  font-size: 5.5rem;
  color: #ffffff;
  margin-bottom: 10px;
  -webkit-filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
          filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
}
.top-bnr.insta-bnr a .inner .child-txt .bnr-title .eng {
  display: block;
  font-size: 2rem;
  font-family: "Arial", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.15em;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.top-bnr.insta-bnr a .inner .child-txt .bnr-title .ja {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.top-bnr.insta-bnr a .inner .child-txt p {
  line-height: 1.8;
  color: #ffffff;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.top-bnr.insta-bnr a:hover {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
.top-bnr.insta-bnr a:hover:after {
  background: linear-gradient(135deg, rgba(81, 91, 212, 0.75) 0%, rgba(129, 52, 175, 0.75) 30%, rgba(221, 42, 123, 0.75) 60%, rgba(254, 218, 119, 0.7) 100%);
}
.top-bnr.insta-bnr a:hover .insta-icon {
  -webkit-filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.9));
          filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.9));
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media all and (max-width: 896px) {
  .top-bnr.insta-bnr a {
    padding: 45px 15px;
  }
  .top-bnr.insta-bnr a .inner .child-txt .bnr-title .insta-icon {
    font-size: 4.5rem;
  }
  .top-bnr.insta-bnr a .inner .child-txt .bnr-title .eng {
    font-size: 1.6rem;
  }
  .top-bnr.insta-bnr a .inner .child-txt .bnr-title .ja {
    font-size: 2.2rem;
  }
}
@media all and (max-width: 639px) {
  .top-bnr.insta-bnr a {
    padding: 35px 15px;
  }
  .top-bnr.insta-bnr a .inner .child-txt .bnr-title .insta-icon {
    font-size: 3.8rem;
  }
  .top-bnr.insta-bnr a .inner .child-txt .bnr-title .eng {
    font-size: 1.4rem;
  }
  .top-bnr.insta-bnr a .inner .child-txt .bnr-title .ja {
    font-size: 1.8rem;
  }
}

.product_list {
  width: 100%;
  margin: 10px auto 0;
}
.product_list * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product_list > ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  .product_list > ul {
    display: block;
  }
}
.product_list > ul > li {
  position: relative;
  width: calc(33.33% - 30px);
  margin: 10px;
  padding: 10px 5px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 1px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 1px;
}
.product_list > ul > li:hover {
  background: rgba(242, 242, 242, 0.2);
}
.product_list > ul > li:hover > figcaption > img {
  opacity: 0.5;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.product_list > ul > li:hover > .btn {
  color: #fff;
  background: #0068b7;
}
.product_list > ul > li > figcaption {
  position: relative;
  width: 95%;
  height: 250px;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
.product_list > ul > li > figcaption > img {
  height: 100%;
  width: 250px;
  margin: 0 auto;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
  text-align: center;
}
@media all and (max-width: 639px) {
  .product_list > ul > li > figcaption {
    background: #fff;
    width: 95%;
    height: auto;
  }
}
.product_list > ul > li > .btn {
  padding: 2px 0;
  margin: 16px auto;
  font-size: 1.2rem;
  border: 1px solid #0068b7;
  display: block;
  width: 160px;
  text-align: center;
  color: #0068b7;
}
.product_list > ul > li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
.product_list > ul > li > h3 {
  font-size: 1.6rem;
  color: #0068b7;
  font-family: "Cinzel", serif;
  margin: 8px 0;
  text-align: center;
}
.product_list > ul > li > p {
  text-align: center;
}
.product_list > ul > li > .catch {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 100px;
  z-index: 9999;
  top: -20px;
  left: -10px;
  position: relative;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  background: #0068b7;
  color: #fff;
  margin-bottom: -10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 0 0;
  box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 0 0;
}
.product_list > ul > li > .product_list_ttl {
  font-size: 1.8rem;
  margin: 10px 0;
  text-align: center;
  font-weight: normal;
  color: #0068b7;
  font-family: "Cinzel", serif;
}
.product_list > ul > li > .text {
  text-align: left;
  font-size: 13px;
}
.product_list > ul > li > .text:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0a9";
  margin-right: 3px;
  color: #0068b7;
}
.product_list > ul > li.soldout {
  position: relative;
}
.product_list > ul > li.soldout:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/soldout-2.png) no-repeat;
  z-index: 10;
  background-size: 110%;
  background-position: center;
}
@media all and (max-width: 639px) {
  .product_list > ul > li {
    width: 93%;
    margin-right: 0;
    margin-bottom: 40px;
    padding: 0 5px 5px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 1px, rgba(0, 0, 0, 0.2) 1px 1px 0 1px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 1px, rgba(0, 0, 0, 0.2) 1px 1px 0 1px;
  }
}

@media all and (max-width: 639px) {
  .product_list_btn {
    position: relative;
  }
}

/* accordion
----------------------------------*/
.accordion {
  margin-top: 60px;
}
.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
}
.accordion dt {
  background: #2544B3;
  color: #fff;
  cursor: pointer;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
.accordion dt span {
  font-size: 1.4rem;
}
.accordion dt:after {
  position: absolute;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  content: "＋";
  right: 20px;
  top: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.accordion dt.on:after {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.accordion dd {
  display: none;
  padding: 35px 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.4rem;
  }
  .accordion dt span {
    font-size: 1.1rem;
  }
  .accordion dt:after {
    right: 8px;
  }
  .accordion dd {
    padding: 20px 15px;
  }
}

/* accordion 開閉を促すアニメーション
----------------------------------*/
.accordion.acc-hint dt {
  padding-right: 60px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.accordion.acc-hint dt .acc-hint-icon {
  margin-right: 0.6em;
}
.accordion.acc-hint dt span {
  display: inline-block;
  margin-left: 1em;
  opacity: 0.85;
}
.accordion.acc-hint dt .acc-hint-close {
  display: none;
}
.accordion.acc-hint dt:after {
  -webkit-animation: acc-hint-pulse 1.8s ease-in-out infinite;
          animation: acc-hint-pulse 1.8s ease-in-out infinite;
}
.accordion.acc-hint dt:hover {
  background: #2d52d4;
  -webkit-box-shadow: 0 4px 12px rgba(37, 68, 179, 0.2);
          box-shadow: 0 4px 12px rgba(37, 68, 179, 0.2);
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}
.accordion.acc-hint dt:hover:after {
  -webkit-animation: none;
          animation: none;
  -webkit-transform: translateY(-50%) scale(1.25);
      -ms-transform: translateY(-50%) scale(1.25);
          transform: translateY(-50%) scale(1.25);
}
.accordion.acc-hint dt.on .acc-hint-open {
  display: none;
}
.accordion.acc-hint dt.on .acc-hint-close {
  display: inline-block;
}
.accordion.acc-hint dt.on:after {
  -webkit-animation: none;
          animation: none;
}
.accordion.acc-hint dt.on:hover:after {
  -webkit-transform: translateY(-50%) rotate(45deg) scale(1.25);
      -ms-transform: translateY(-50%) rotate(45deg) scale(1.25);
          transform: translateY(-50%) rotate(45deg) scale(1.25);
}
.accordion.acc-hint dd {
  background: transparent;
  padding: 0;
}
.accordion.acc-hint dt.on + dd .interview-card {
  -webkit-animation: acc-hint-cardin 0.5s ease both;
          animation: acc-hint-cardin 0.5s ease both;
}
.accordion.acc-hint dt.on + dd .interview-card:nth-child(1) {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}
.accordion.acc-hint dt.on + dd .interview-card:nth-child(2) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.accordion.acc-hint dt.on + dd .interview-card:nth-child(3) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.accordion.acc-hint dt.on + dd .interview-card:nth-child(4) {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}
@media all and (max-width: 639px) {
  .accordion.acc-hint dt {
    padding-right: 30px;
  }
  .accordion.acc-hint dt span {
    display: block;
    margin-left: 0;
  }
}

@-webkit-keyframes acc-hint-pulse {
  0%,
  100% {
    -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(-50%) scale(1.3);
            transform: translateY(-50%) scale(1.3);
    opacity: 0.6;
  }
}

@keyframes acc-hint-pulse {
  0%,
  100% {
    -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(-50%) scale(1.3);
            transform: translateY(-50%) scale(1.3);
    opacity: 0.6;
  }
}

@-webkit-keyframes acc-hint-cardin {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes acc-hint-cardin {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
  background-color: #B5A7C5 !important;
  padding: 5px;
}

/* media-box（メディア紹介）
----------------------------------*/
.media-box {
  position: relative;
  max-width: 900px;
  margin: 30px auto 0;
  padding: 60px 40px 45px;
  background: #fff;
  border: 2px solid #ccbf94;
  border-radius: 12px;
  -webkit-box-shadow: 0 12px 32px rgba(129, 121, 113, 0.14);
          box-shadow: 0 12px 32px rgba(129, 121, 113, 0.14);
  text-align: center;
}
@media all and (max-width: 639px) {
  .media-box {
    padding: 50px 20px 35px;
    margin-top: 45px;
  }
}
.media-box .media-icon {
  position: absolute;
  top: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 72px;
  height: 72px;
  line-height: 72px;
  border-radius: 50%;
  background: #2544B3;
  color: #fff;
  font-size: 2.8rem;
  -webkit-box-shadow: 0 6px 18px rgba(37, 68, 179, 0.35);
          box-shadow: 0 6px 18px rgba(37, 68, 179, 0.35);
  -webkit-animation: media-pulse 2.4s ease-in-out infinite;
          animation: media-pulse 2.4s ease-in-out infinite;
}
@media all and (max-width: 639px) {
  .media-box .media-icon {
    top: -30px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 2.2rem;
  }
}
.media-box .media-label {
  display: inline-block;
  margin-bottom: 15px;
  padding: 4px 18px;
  border-radius: 20px;
  background: #2544B3;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  font-weight: 600;
}
.media-box .media-lead {
  margin-bottom: 15px;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.6;
}
@media all and (max-width: 639px) {
  .media-box .media-lead {
    font-size: 1.8rem;
  }
}
.media-box .media-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, rgba(230, 196, 5, 0.45)));
  background: linear-gradient(transparent 60%, rgba(230, 196, 5, 0.45) 60%);
  padding: 0 2px;
}
.media-box .media-txt {
  font-size: 1.5rem;
  line-height: 1.9;
}
@media all and (max-width: 639px) {
  .media-box .media-txt {
    font-size: 1.4rem;
    text-align: left;
  }
}

@-webkit-keyframes media-pulse {
  0%, 100% {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
  50% {
    -webkit-transform: translateX(-50%) scale(1.08);
            transform: translateX(-50%) scale(1.08);
  }
}

@keyframes media-pulse {
  0%, 100% {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
  50% {
    -webkit-transform: translateX(-50%) scale(1.08);
            transform: translateX(-50%) scale(1.08);
  }
}