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

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

#wrapper {
  overflow: hidden;
}

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

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 #005F53;
  border-radius: 50%;
  border-right: 1px solid rgba(0, 95, 83, 0.2);
  border-top: 1px solid rgba(0, 95, 83, 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: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

#l-header.is-fixed {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

#l-header.is-fixed .inner #logo {
  position: initial;
  margin: 0 auto;
  padding: 0px 0 10px;
  width: 180px;
}

#l-header.is-fixed .inner #header_nav {
  margin: 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;
}

@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;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}

@media all and (max-width: 639px) {
  #l-header {
    position: initial;
    margin-top: 40px;
  }
}

#l-header .inner {
  margin: 0 auto;
  padding: 10px 20px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

@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 {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 190%;
  width: 270px;
  -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: 340px;
  }
}

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

#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;
  position: absolute;
  bottom: 100px;
  bottom: 36px;
  right: 2%;
  z-index: 2;
}

@media all and (max-width: 1367px) {
  #l-header .header_contact {
    position: absolute;
    right: 30px;
    top: -100px;
  }
}

@media all and (max-width: 1100px) {
  #l-header .header_contact {
    right: 30px;
    top: -90px;
    padding-right: 0px;
  }
}

@media all and (max-width: 896px) {
  #l-header .header_contact {
    top: 30px;
  }
}

@media all and (max-width: 639px) {
  #l-header .header_contact {
    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: 10px auto;
  text-align: center;
  z-index: 1;
}

#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;
  text-shadow: 1px 1px 0 #EBEBEB, -1px -1px 0 #EBEBEB,
 -1px 1px 0 #EBEBEB, 1px -1px 0 #EBEBEB,
 0px 1px 0 #EBEBEB,  0 -1px 0 #EBEBEB,
 -1px 0 0 #EBEBEB, 1px 0 0 #EBEBEB;
}

#header_nav ul li a {
  display: block;
  position: relative;
  line-height: 1.5;
  font-size: 1.4rem;
  padding: 10px 14px;
  color: #525252;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}

#header_nav ul li a .eng {
  display: block;
  font-size: 1.1rem;
  font-family: 'Arvo', serif;
  font-weight: 400;
  color: #005F53;
  position: relative;
  letter-spacing: 0.1rem;
}

#header_nav ul li a:after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background: #005F53;
  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, #header_nav ul li.active a {
  -webkit-transition: 0.2s width ease-in;
  transition: 0.2s width ease-in;
}

#header_nav ul li:hover a .eng, #header_nav ul li.active a .eng {
  color: #6c7c7a;
}

#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: #005F53;
  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: #979797;
}

#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(108, 124, 122, 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: #6c7c7a;
}

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

#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: #4d3e3e;
  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: 50vh;
  margin: 22% 0 0 auto;
  width: 40%;
  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;";
}

@media all and (max-width: 1100px) {
  .slide-img {
    margin: 72% 0 0 auto;
    height: 30vw;
  }
}

@media all and (max-width: 896px) {
  .slide-img {
    margin: 42% 0 0 auto;
    height: 30vw;
  }
}

@media all and (max-width: 639px) {
  .slide-img {
    height: 20vh;
    width: 50%;
    margin: 60% 0 0 auto;
  }
}

#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: 896px) {
  #slide-wrap {
    height: 70vw;
  }
}

@media all and (max-width: 639px) {
  #slide-wrap {
    display: block;
    height: 100%;
    width: calc(100% - 40px);
    margin-top: 30px;
  }
}

.slide-leftarea {
  background-color: #ddd;
  padding: 100px 0;
  position: relative;
}

@media all and (max-width: 639px) {
  .slide-leftarea {
    padding: 70px 0;
  }
}

.slide-leftarea:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/top-bg.jpg) no-repeat;
  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%);
  -webkit-backdrop-filter: blur(4px);
          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 {
  z-index: 50;
  position: absolute;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  width: 30%;
  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-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.6));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.6));
  -webkit-animation: view-zoomin 1s ease-out 3.4s forwards;
          animation: view-zoomin 1s ease-out 3.4s forwards;
}

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

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

.catch-txt2 {
  z-index: 1;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  position: absolute;
  right: 3%;
  bottom: 11.5%;
  font-size: 5rem;
  opacity: 0;
  -webkit-animation: view-zoomin 1s ease-out 2.8s forwards;
          animation: view-zoomin 1s ease-out 2.8s forwards;
}

@media all and (max-width: 896px) {
  .catch-txt2 {
    bottom: 13.5%;
    font-size: 3rem;
  }
}

@media all and (max-width: 639px) {
  .catch-txt2 {
    bottom: 3.5%;
    font-size: 2rem;
    line-height: 1.2;
    right: auto;
    left: 5%;
  }
}

.catch-txt {
  z-index: 1;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  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.6rem;
  }
}

@media all and (max-width: 639px) {
  .catch-txt {
    top: 44%;
    font-size: 1.3rem;
  }
  .catch-txt .type2 {
    width: 85%;
    margin: 0 auto;
  }
  .catch-txt .type3 {
    width: 76%;
    margin: 0 auto;
  }
}

.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);
    /*文字が上に揃うまで待機*/
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.updown span:nth-child(19) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.updown span:nth-child(20) {
  -webkit-animation-delay: 0.95s;
          animation-delay: 0.95s;
}

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

.updown span:nth-child(22) {
  -webkit-animation-delay: 1.05s;
          animation-delay: 1.05s;
}

.updown span:nth-child(23) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.updown span:nth-child(22) {
  -webkit-animation-delay: 1.05s;
          animation-delay: 1.05s;
}

.updown span:nth-child(23) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.updown span:nth-child(24) {
  -webkit-animation-delay: 1.15s;
          animation-delay: 1.15s;
}

.updown span:nth-child(25) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.updown span:nth-child(26) {
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
}

.updown span:nth-child(27) {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

.updown span:nth-child(28) {
  -webkit-animation-delay: 1.35s;
          animation-delay: 1.35s;
}

@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;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  font-size: 1.4rem;
  z-index: 100;
  height: 210px;
}

#scrolldown:before, #scrolldown:after {
  position: absolute;
  content: "";
  z-index: 2;
  left: 50%;
}

#scrolldown:before {
  width: 1px;
  height: 100px;
  bottom: 0;
  background: #f0f0f0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#scrolldown:after {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 100%;
  top: 100px;
  margin-left: -4px;
  -webkit-animation: scroll-point 2.3s ease-out infinite;
          animation: scroll-point 2.3s ease-out infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

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

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

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

/* contact_bnr
----------------------------------*/
.contact_bnr > li a {
  display: block;
  position: relative;
  max-width: 320px;
}

@media all and (max-width: 896px) {
  .contact_bnr > li a {
    text-align: center;
    margin: 0 auto 0px;
  }
  .contact_bnr > li:first-of-type {
    margin-right: 0;
  }
}

.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  position: relative;
  color: #005F53;
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: 3.8rem;
  line-height: 1.2;
  text-align: center;
  margin: 0 auto;
}

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

.contact_bnr > li .bnr_tel:hover {
  color: #817971;
  text-shadow: 0 0 4px rgba(129, 121, 113, 0.1);
}

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

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

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

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

.contact_bnr > li .bnr_fax {
  background: #fdfdfd;
  color: #6b6b6b;
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
  margin: 0 auto;
  color: #e9e2d9;
}

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

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

.contact_bnr > li .bnr_mail {
  background: #005F53;
  color: #fff;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 600;
  border-radius: 50px;
  line-height: 1.4;
  padding: 15px 8px;
}

.contact_bnr > li .bnr_mail .small {
  font-size: 0.8em;
  margin-left: 4px;
}

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

.contact_bnr > li .bnr_mail:hover {
  background: #005F53;
  color: #fff;
}

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

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

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

#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: #131313;
  position: relative;
  z-index: 2;
  max-width: 540px;
}

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

#l-footer .footer-txt span {
  background: #005F53;
  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 #005F53;
}

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

.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: 300px;
  position: relative;
  z-index: 5;
  margin: 0 auto 30px 0;
  text-align: center;
}

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

@media all and (max-width: 896px) {
  .flogo {
    margin: 0 auto 40px;
    max-width: 220px;
    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: #333;
}

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

@media all and (max-width: 639px) {
  .copyright {
    padding: 40px 0 74px;
    color: #333;
  }
}

/*----------------------------------
 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(#6c7c7a), to(#f3f6f6));
  background-image: linear-gradient(to right, #6c7c7a, #f3f6f6);
  opacity: 0.7;
}

.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: #005F53;
  line-height: 1.3;
  display: inline-block;
  background: #005F53;
  background: -webkit-gradient(linear, left top, right top, from(#005F53), to(#005F53));
  background: linear-gradient(to right, #005F53, #005F53);
  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: #005F53;
  font-family: "Kaisei Opti", serif;
  font-weight: 400;
  text-transform: uppercase;
}

.title-big2 .ja {
  font-size: 2rem;
  color: #817971;
}

@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: #6c7c7a;
  display: inline-block;
  background: #6c7c7a;
  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: #131313;
}

@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: #005F53;
  -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: #005F53;
}

@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: #005F53;
}

.pick-title:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 40px;
  top: -20px;
  left: 0;
  background: #005F53;
  -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: #00463d;
}

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

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

@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: calc(2.33% + (2.33% / 2));
}

.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 {
  z-index: 2;
}

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

.icon-list li a:hover .icon-title {
  color: #005F53;
}

@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: calc(2% + (2% / 3));
}

.icon-list.type2 li:nth-child(3n) {
  margin-right: calc(2% + (2% / 3));
}

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

.choice-list li {
  margin-bottom: 10px;
}

.choice-list .title {
  font-size: 1.8rem;
}

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

.choice-list .title span {
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: 4rem;
  font-style: italic;
  color: #83997d;
  padding-right: 10px;
}

@media all and (max-width: 639px) {
  .choice-list .title span {
    font-size: 2.4rem;
  }
}

.sec6 {
  position: relative;
  color: #fff;
}

.sec6:before, .sec6:after {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  left: 0;
}

.sec6:before {
  height: 100%;
  background: #6c7c7a;
}

.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;
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: #68afd8;
}

.title01 span {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #005F53;
  font-family: "Kaisei Opti", serif;
  font-weight: 600;
  text-transform: uppercase;
}

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

.title01.white {
  color: #fcfcfc;
}

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

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

.title02 span {
  background: #6c7c7a;
  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: #005F53;
  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: #005F53;
}

.title03:after {
  width: 40%;
  bottom: -6px;
  background: #005F53;
  opacity: 0.7;
}

.title04 {
  padding: 8px 0;
  text-align: center;
  background: #005F53;
  margin-bottom: 15px;
  color: #fff;
}

.title04.type1 {
  background: #076116;
  color: #817971;
}

/* --news--
----------------------------------*/
.news-box-area {
  background-color: #dbdbdb;
  color: #fff;
  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 #5c5c5c;
  padding-right: 20px;
  position: relative;
}

.news-title span {
  display: block;
}

.news-title .eng {
  font-family: "Kaisei Opti", serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #6c7c7a;
  position: relative;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
}

.news-title .ja {
  font-size: 2rem;
  position: relative;
  margin: 0 auto;
  color: black;
  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-bottom: 1px dotted #ccc;
  position: relative;
  padding: 10px 0;
}

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

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

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

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

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

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

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

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

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

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

.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(0, 95, 83, 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-commonbox {
  position: relative;
  margin: 80px auto;
}

.top-commonbox .inner {
  padding: 60px;
  width: calc(100% - 50px);
  position: relative;
  margin: 0 auto;
}

.top-commonbox .txtarea {
  padding: 40px;
  position: relative;
  z-index: 1;
}

@media all and (max-width: 639px) {
  .top-commonbox {
    margin: 50px auto;
  }
  .top-commonbox .inner {
    padding: 30px 0;
    margin: 0 auto;
    width: calc(100% - 30px);
  }
}

@media all and (max-width: 639px) {
  .top-commonbox .txtarea {
    padding: 20px;
    font-size: 1.2rem;
  }
}

.top-main-box {
  max-width: none;
  margin: 130px auto 100px;
  position: relative;
}

.top-main-box:before {
  position: absolute;
  content: "";
  width: 256px;
  height: 300px;
  background: url(../img/top-greet-deko.png) no-repeat;
  background-size: cover;
  right: 3%;
  top: -130px;
}

.top-main-box .inner {
  width: 100%;
  padding: 0;
}

.top-main-box .titlearea {
  margin-top: 150px;
  padding: 0 40px;
}

.top-main-box .titlearea .main {
  font-size: 2rem;
}

.top-main-box .titlearea .txt {
  margin-top: 100px;
  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: normal;
  text-align: center;
  font-size: 1.7rem;
}

.top-main-box .photoarea {
  text-align: center;
  height: 400px;
  position: relative;
}

.top-main-box .photoarea img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-main-box .eng-title {
  position: absolute;
  top: -20%;
  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-main-box .photoarea .photo {
    height: 400px;
  }
  .top-main-box .photoarea img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media all and (max-width: 896px) {
  .top-main-box:before {
    width: 171px;
    height: 200px;
  }
  .top-main-box .eng-title {
    position: absolute;
    top: -11%;
    right: auto;
    left: 10%;
    font-size: 4rem;
  }
  .top-main-box .titlearea {
    margin-top: 100px;
  }
  .top-main-box .titlearea .txt {
    margin-top: 60px;
    font-size: 1.2rem;
    text-align: left;
  }
  .top-main-box .titlearea .txt .main {
    font-size: 1.5rem;
  }
}

@media all and (max-width: 639px) {
  .top-main-box:before {
    width: 97px;
    height: 114px;
    right: 7%;
  }
  .top-main-box .photoarea {
    height: 180px;
  }
  .top-main-box .photoarea .photo {
    height: 180px;
  }
  .top-main-box .eng-title {
    top: -23%;
    right: auto;
    left: 4%;
    font-size: 3rem;
  }
  .top-main-box .titlearea {
    margin-top: 20px;
    padding: 0 20px;
  }
}

.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-color: #6c7c7a;
  z-index: -1;
  right: -40%;
  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-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-content-box {
  margin: 100px auto;
}

.top-content-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/top-select-bg.jpg) no-repeat;
  background-size: cover;
  opacity: 0.8;
}

.top-content-box.type2:before {
  background: url(../img/flower-bg.jpg) no-repeat;
  background-size: cover;
}

.top-content-box.type2 .list3 .txtarea {
  color: #000;
}

.top-content-box .inner {
  margin: 0 auto;
  max-width: 1500px;
  padding: 100px 0 50px;
}

.top-content-box .list3 {
  margin-top: 50px;
}

.top-content-box .list3 .icon {
  text-align: center;
}

.top-content-box .list3 .txtarea {
  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;
}

.top-content-box .list3 .title {
  text-align: center;
  font-size: 2rem;
}

.top-content-box .list3 .txt {
  margin-top: 20px;
}

.top-content-box.bg-none {
  margin: 0px auto 100px;
}

.top-content-box.bg-none:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/top-info-bg.jpg) no-repeat;
  background-size: cover;
  opacity: 0.8;
}

.top-content-box.bg-none .inner {
  margin: 0 auto;
  max-width: 1500px;
  padding: 50px 0 20px;
}

.top-content-box.bg-none .inner .txt.type2 {
  text-align: center;
}

@media all and (max-width: 639px) {
  .top-content-box .inner {
    padding: 50px 0;
  }
  .top-content-box .subtxtarea {
    text-align: left;
  }
  .top-content-box .list3 {
    margin-top: 50px;
  }
  .top-content-box .list3 .icon {
    text-align: center;
    margin: 0 auto;
    width: 40%;
  }
  .top-content-box .list3 .title {
    text-align: center;
    font-size: 1.7rem;
  }
}

.top-news-box {
  margin: 100px auto;
  position: relative;
  padding: 0;
  width: calc(100% - 80px);
}

.top-news-box .inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px 0 0;
}

.top-news-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  background: url(../img/noise.png) repeat;
  background-size: 100px 100px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}

.top-news-box .news-list {
  margin-left: 40px;
}

@media all and (max-width: 1100px) {
  .top-news-box {
    width: calc(100% - 80px);
  }
}

@media all and (max-width: 639px) {
  .top-news-box {
    width: calc(100% - 40px);
    margin: 50px auto;
  }
  .top-news-box:before {
    width: 100%;
    height: 100%;
    bottom: 0;
  }
  .top-news-box .mtitle {
    margin-bottom: 20px;
  }
  .top-news-box .news-list {
    margin-left: 0px;
    padding: 0 20px 20px;
  }
}

.top-detail-box {
  margin: 100px auto;
  width: 100%;
  position: relative;
}

.top-detail-box .inner {
  width: 100%;
  padding: 100px 0;
}

.top-detail-box .photo {
  height: 500px;
  position: relative;
}

.top-detail-box .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-detail-box .photoarea {
  position: relative;
}

.top-detail-box .eng-title {
  position: absolute;
  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;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  right: -4%;
  height: 100%;
  top: 13%;
  line-height: 1.2;
}

.top-detail-box .title {
  margin-bottom: 50px;
}

.top-detail-box .titlearea {
  padding: 0 20px;
}

.top-detail-box .reverse .eng-title {
  left: -4%;
  right: auto;
}

@media all and (max-width: 1100px) {
  .top-detail-box .titlearea {
    position: absolute;
    right: 0;
  }
  .top-detail-box .titlearea.flex-30 {
    width: 300px;
  }
  .top-detail-box .titlearea.flex-30.l-m2 {
    margin: 0 0 0;
    margin-left: auto;
  }
  .top-detail-box .eng-title {
    font-size: 5rem;
  }
  .top-detail-box .reverse .photoarea {
    margin: 0 0 0 auto;
  }
  .top-detail-box .reverse .eng-title {
    left: -4%;
    right: auto;
  }
  .top-detail-box .reverse .titlearea {
    right: auto;
    left: 0;
  }
  .top-detail-box .photoarea.flex-68 {
    width: 60%;
  }
}

@media all and (max-width: 639px) {
  .top-detail-box .inner {
    padding: 50px 0;
  }
  .top-detail-box .photoarea.flex-68 {
    width: 80%;
    margin-left: 0;
  }
  .top-detail-box .photo {
    height: 300px;
  }
  .top-detail-box .eng-title {
    font-size: 3rem;
    right: -20%;
    height: 100%;
    top: -17%;
  }
  .top-detail-box .titlearea {
    position: initial;
  }
  .top-detail-box .titlearea.flex-30 {
    width: 300px;
  }
  .top-detail-box .titlearea.flex-30.l-m2 {
    margin: 0 auto;
    margin-left: auto;
  }
  .top-detail-box .reverse .photoarea {
    margin: 0 0 0 auto;
  }
  .top-detail-box .reverse .photoarea.flex-68 {
    margin-left: auto;
  }
  .top-detail-box .reverse .eng-title {
    left: -7%;
    top: -10%;
    right: auto;
  }
  .top-detail-box .reverse .titlearea.flex-30.l-m2 {
    margin: 0 auto;
    margin-left: auto;
  }
}

.top-attention-box {
  margin: 100px auto;
}

.top-attention-box .detail-box {
  max-width: 1200px;
  margin: 40px auto;
}

.top-gallery {
  position: relative;
}

.top-gallery .inner {
  position: relative;
}

.top-gallery .titlearea {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 34%;
  max-width: 400px;
  padding: 40px;
  background-color: rgba(245, 245, 245, 0.5);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

@media all and (max-width: 639px) {
  .top-gallery .titlearea {
    max-width: 300px;
    padding: 20px 40px 40px;
  }
}

/* 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(108, 124, 122, 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: 130px auto 100px;
  position: relative;
}

.page-order-box .clearfix {
  max-width: 1200px;
  margin: 0 auto;
}

.page-order-box:before {
  position: absolute;
  content: "";
  width: 256px;
  height: 300px;
  background: url(../img/top-greet-deko.png) no-repeat;
  background-size: cover;
  right: 3%;
  top: -130px;
}

.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: 50px 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;
  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;
  }
}

.margin-top {
  margin-top: -80px;
}

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

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fefefe;
  padding: 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.mbox.transparent {
  background: transparent;
}

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

.mbox.b-top {
  border-top: 5px solid #6c7c7a;
  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);
}

.mbox2 {
  background: rgba(246, 239, 230, 0.8);
  padding: 30px;
  border: 2px solid #f6efe6;
  max-width: 1200px;
  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-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: -webkit-sticky;
  position: sticky;
  right: 0;
  top: 0;
  width: 21%;
  padding-right: 10px;
}

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

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

.mtitle .eng {
  font-size: 2rem;
  color: #333;
  position: relative;
  display: block;
  font-family: 'Arvo', serif;
  font-weight: 400;
  line-height: 1;
  padding-top: 15px;
}

.mtitle .ja {
  position: relative;
  font-size: 2.6rem;
  color: black;
  letter-spacing: 0.15em;
  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: normal;
}

.mtitle.mtitle-line .ja {
  display: inline-block;
  padding: 0 40px;
}

.mtitle.mtitle-line .ja:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 6px;
  background: url(../img/mtitle-line.png) repeat-x;
  background-size: 25px 6px;
  bottom: -20px;
  left: 0;
}

.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: 1.5rem;
  }
  .mtitle .ja {
    font-size: 1.8rem;
    line-height: 1.4;
    padding-top: 10px;
    display: inline-block;
  }
}

.mtitle2 {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}

.mtitle2 .ja {
  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.4;
  color: #131313;
  text-align: center;
  display: block;
  font-weight: normal;
  padding-bottom: 20px;
  position: relative;
}

.mtitle2 .ja span {
  font-size: 3rem;
  color: #83997d;
}

.mtitle2 .ja:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 6px;
  background: url(../img/mtext-line.png) repeat-x;
  background-size: 22px 6px;
  left: 0;
  bottom: 10px;
}

.mtitle2 .ja.type2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 12px;
  background: url(../img/mtext-line2.png) repeat-x;
  background-size: 56px 11px;
  left: 0;
  bottom: 0;
}

.mtitle2 .eng {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 3.2rem;
  color: #6c7c7a;
  margin-left: 20px;
  line-height: 1;
  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;
  }
}

.mtitle2-2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mtitle2-2 .eng {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 3.2rem;
  color: #6c7c7a;
  margin-left: 20px;
  line-height: 1;
  font-family: "Kaisei Opti", serif;
  font-weight: 600;
  text-transform: uppercase;
}

.mtitle2-2 .eng.type-top {
  position: absolute;
  right: 0;
  top: -20px;
}

@media all and (max-width: 639px) {
  .mtitle2-2 {
    -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-2 .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-2 .ja {
    font-size: 1.8rem;
  }
}

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

.mtitle3 .ja {
  display: block;
  font-size: 2.8rem;
  color: #222;
  letter-spacing: 0.2em;
  padding-right: 5px;
  line-height: 2;
}

.mtitle3 .eng {
  display: block;
  font-family: "Kaisei Opti", serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 2rem;
  color: #005F53;
}

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

.mtitle_line {
  padding-bottom: 20px;
  position: relative;
  font-weight: 600;
  margin-bottom: 30px;
  color: #005F53;
  border-top: 2px solid #005F53;
  padding: 8px 10px 20px;
}

.mtitle_line span {
  font-size: 1.4rem;
  color: #005F53;
}

.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: 2.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}

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

.mtitle_balloon span.eng {
  font-family: "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: 3px solid #333;
  position: absolute;
  width: 50%;
  bottom: 6px;
}

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

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

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

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

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

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

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

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

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

@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: #076116;
  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 #005F53;
  margin: 8px 0 15px;
  color: #817971;
  line-height: 1.4;
  text-align: left;
}

.mtitle_sub span {
  color: #005F53;
  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: #666059;
  color: #fff;
  font-size: 1.6rem;
  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;
}

.mtitle_box .profile {
  text-align: right;
  color: #fff;
  font-size: 12px;
  margin-left: auto;
  padding-right: 20px;
  color: #fff778;
}

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

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

.mtext1 .txtdeko {
  background-color: #005F53;
  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: #005F53;
}

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

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

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

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

.btn01 a {
  background: #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: #005F53;
  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: #f6efe6;
  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;
  padding: 10px 20px;
  width: 300px;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  border: 2px solid #6c7c7a;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn03 a::before {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 2px;
  background-color: #6c7c7a;
  -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: #6c7c7a;
  -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;
  background: #83581b;
  background: linear-gradient(157deg, #83581b 0%, #f6b827 100%);
}

.btn04 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.btn04.basecolor a {
  -webkit-box-shadow: 0 2px 0 #005F53;
          box-shadow: 0 2px 0 #005F53;
  color: #005F53;
}

.btn04.basecolor a:before {
  background: #005F53;
}

.btn04.basecolor a:after {
  background-color: #005F53;
}

.btn04.basecolor a:hover {
  color: #fff;
  background-color: #005F53;
}

.btn04.basecolor a:hover:before {
  background-color: #fff;
}

.btn04.basecolor a:hover a {
  color: #005F53;
}

.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: #005F53;
  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: #005F53;
  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: #6c7c7a;
  -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: #c3a349;
  -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: #005F53;
  text-align: center;
  border: 1px solid #005F53;
  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(#005F53), to(#005F53));
  background-image: linear-gradient(to right, #005F53, #005F53);
  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 header logo
----------------------------------*/
.contents #l-header .inner #logo .logo1 {
  display: none;
}

.contents #l-header .inner #logo .logo2 {
  display: block;
}

@media all and (max-width: 639px) {
  .contents #l-header .inner #logo .logo2 {
    display: none;
  }
  .contents #l-header .inner #logo .logo1 {
    display: block;
  }
}

.contents #l-header #header_nav .ja {
  color: #fff;
}

.contents #l-header #header_nav ul li {
  text-shadow: none;
}

.contents #l-header.is-fixed .inner #logo .logo2 {
  display: none;
}

.contents #l-header.is-fixed .inner #logo .logo1 {
  display: block;
}

.contents #l-header.is-fixed #header_nav .ja {
  color: #525252;
}

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

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

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

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

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

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

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

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

.page-title.type8 {
  background: url(../img/page-title08.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.2;
}

.page-title > .inner {
  margin: 0 auto;
  padding: 400px 0 0px;
  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;
  }
  .page-title #l-header.is-fixed .inner {
    padding: 8px 0 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(#6c7c7a), to(#fff));
  background-image: linear-gradient(to bottom, #6c7c7a, #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/bg-01.jpg) no-repeat center/cover;
  background-attachment: fixed;
}

@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: #005F53;
  width: calc(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;
  -webkit-clip-path: circle(1%);
          clip-path: circle(1%);
  -webkit-transition: 0.6s ease-in all;
  transition: 0.6s ease-in all;
}

.mask.on {
  -webkit-clip-path: circle(120%);
          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(108, 124, 122, 0.1);
}

.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: #f6efe6;
  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, #0f5018, #19651c, #276b44);
}

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

.bg-green {
  background: #076116;
}

.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, white, white);
}

.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, #005F53 0%, #6c7c7a 90%, #f1f0e7 90.1%, #f1f0e7 100%);
  opacity: 0.6;
}

.bg-999 {
  background: #aaa;
}

.bg-blue {
  background: rgba(0, 95, 83, 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%, #869593), to(#869593));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #869593 50.1%, #869593 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;
  -webkit-clip-path: polygon(12% 0, 100% 0%, 88% 100%, 0% 100%);
          clip-path: polygon(12% 0, 100% 0%, 88% 100%, 0% 100%);
}

.bg-base2 {
  background: repeating-linear-gradient(45deg, rgba(0, 95, 83, 0.1) 0, rgba(0, 95, 83, 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, white, white);
}

.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, #0f5018, #19651c, #276b44);
}

.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, white, white);
}

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

.tbl-profile th,
.tbl-profile td {
  padding: 10px 5px;
  font-size: 1.4rem;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

.tbl-profile th .txt-num,
.tbl-profile td .txt-num {
  background-color: #83997d;
  padding: 2px 5px;
  width: 10px;
  max-width: 105px;
  max-height: 30px;
}

@media all and (max-width: 639px) {
  .tbl-profile th .txt-num,
  .tbl-profile td .txt-num {
    max-height: 200px;
    width: 100px;
    padding: 2px 0;
    text-align: center;
    min-width: 100px;
  }
}

.tbl-profile th .txt-area,
.tbl-profile td .txt-area {
  display: inline-block;
  background-color: transparent;
  padding: 2px 10px;
}

.tbl-profile th {
  width: 26%;
  text-align: left;
  color: #817971;
}

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

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

.tbl {
  width: 100%;
}

.tbl.tbl-price th {
  background: #6c7c7a;
  color: #817971;
}

.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 #131313;
  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: #6c7c7a;
  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 #005F53;
  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 th,
.tbl-border td {
  padding: 8px 10px;
  border-bottom: 1px solid;
  vertical-align: middle;
  font-size: 1.3rem;
}

@media all and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px;
    font-size: 1rem;
  }
}

.tbl-border th {
  width: 30%;
  color: #fff;
  text-align: left;
  background-color: rgba(0, 95, 83, 0.6);
  border-bottom: 1px solid #fff;
}

.tbl-border th span {
  font-size: 1rem;
}

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

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

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

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

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

@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.3rem;
}

@media all and (max-width: 639px) {
  .tbl-border3 th,
  .tbl-border3 td {
    padding: 10px;
    font-size: 1rem;
  }
}

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

.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(246, 239, 230, 0.2);
          box-shadow: 0 0 4px rgba(246, 239, 230, 0.2);
  margin-bottom: 20px;
}

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

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

.timetable.type1 {
  border-top: 1px solid #6c7c7a;
  border-bottom: 1px solid #076116;
}

.timetable.type1 th,
.timetable.type1 td {
  border-bottom: 1px solid #076116;
}

.timetable th,
.timetable td {
  border-bottom: 1px solid #6c7c7a;
  padding: 10px 5px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
  color: #076116;
}

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

.timetable .triangle {
  color: #68afd8;
}

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

/* ggmap
----------------------------------*/
.ggmap {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 23%;
  height: 0;
  overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ggmap.youtube {
  padding-bottom: 56.25%;
}

/* list
----------------------------------*/
.list_common li {
  padding-bottom: 4px;
  font-size: 1.4rem;
  margin-bottom: 5px;
  border-bottom: 1px dotted rgba(108, 124, 122, 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: #005F53;
  border-bottom: 1px dotted #005F53;
}

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

@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: #005F53;
  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: #005F53;
  font-weight: normal;
}

@media all and (max-width: 639px) {
  .list-inline li {
    display: block;
    padding: 0;
  }
  .list-inline li:before {
    content: "-";
    color: #005F53;
  }
  .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: black;
  font-size: 2rem;
}

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

.ol-list li:before {
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  font-family: "Cinzel", serif;
  font-weight: 500;
  left: 0;
  top: 15px;
  position: absolute;
  font-size: 3.5rem;
  color: #005F53;
  margin-right: 10px;
  line-height: 1;
}

@media all and (max-width: 639px) {
  .ol-list li {
    font-size: 1.2rem;
  }
  .ol-list li .ol-lead {
    font-size: 1.4rem;
  }
  .ol-list li .inner {
    font-size: 0.9em;
  }
  .ol-list li:before {
    font-size: 3rem;
  }
}

.list_disc li {
  padding: 5px 0 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: #005F53;
  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 calc(1.33% + (1.33% / 2)) 10px 0;
}

.list-btn li a {
  display: block;
  background: #fff;
  color: #005F53;
  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 #f6efe6;
}

.list-btn li a:after {
  position: absolute;
  content: "";
  width: 70px;
  height: 70px;
  border-bottom: 0.1em solid #f6efe6;
  border-right: 0.1em solid #f6efe6;
  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 #002c26;
  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: 33%;
  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;
  max-width: 1200px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px auto 0;
}

@media all and (max-width: 639px) {
  .blog-wrap {
    margin: 50px auto 20px;
  }
}

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

.blog-wrap > li {
  width: 30%;
  margin: 0 1% 20px;
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(12px);
          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: #83997d;
  width: 100px;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #fff;
  font-size: 12px;
}

.blog-date2 {
  color: #001310;
  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: #005F53;
  padding: 4px 5px;
  background: #111;
  font-size: 12px;
}

.category_nav {
  border: 1px solid #dddddd;
}

.category_nav li a {
  display: block;
  padding: 15px;
  border-bottom: 1px dotted #dddddd;
  background-color: #ffffff;
}

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

.category_nav li a:hover {
  background: #f3f6f6;
}

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

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

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

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.color1 {
  color: #005F53;
}

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

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

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

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

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

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

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

.telbnr li {
  border: 1px solid #005F53;
  background-color: #005F53;
  padding: 10px 10px;
  text-align: center;
  border-radius: 40px;
}

.telbnr li a {
  width: 100%;
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
}

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

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

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

.telbnr-ttl {
  font-weight: 600;
  font-size: 1.8rem;
  color: #817971;
  margin-top: -30px;
}

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

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

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 10px auto 90px;
  font-size: 1.2rem;
  z-index: 1;
  position: relative;
  padding-left: 0;
}

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

.breadcrumb li a {
  color: #005F53;
}

.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}

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

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 90%;
}

.form dl dt {
  float: left;
  width: 280px;
  padding-top: 14px;
  font-weight: 700;
}

.form dl dt span {
  color: #fff;
  background: #005F53;
  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: 280px;
  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: #005F53;
  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 #005F53;
  border-bottom: 3px solid #005F53;
  -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 #005F53;
  font-weight: 700;
  padding: 12px 5px;
  margin: 40px auto;
  width: 250px;
  background: #005F53;
  border-radius: 25px;
}

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

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

.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: #005F53;
  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 #005F53;
  border-bottom: 3px solid #005F53;
  -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(0, 95, 83, 0.3);
}

.mtitle_small {
  font-weight: 600;
  color: #817971;
  padding: 0 0 4px;
  font-size: 1.6rem;
  border-bottom: 1px solid #005F53;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 15px;
}

.mtitle_small:before {
  content: "―";
  margin-right: 8px;
  color: #005F53;
  font-size: 10px;
}

@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: #005F53;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 40px;
  max-width: 1500px;
  margin: 100px auto 0;
}

.gallery li {
  margin: 0 1.5% 30px;
  width: 29%;
  position: relative;
}

.gallery li a {
  display: block;
  text-align: center;
  padding: 0px;
  overflow: hidden;
}

.gallery li a img {
  width: 100%;
  height: 400px;
  -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-right: auto;
  margin-left: auto;
  margin-top: -50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

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

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

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

.list2 > li.type-50,
.list2 .child.type-50 {
  width: 48%;
}

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

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

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

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

.list3 > li {
  width: 31%;
  position: relative;
  margin: 0 calc(2.33% + (2.33% / 2)) 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: #005F53;
  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: #6c7c7a;
  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: #f6efe6;
  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: #005F53;
  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: #076116;
  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: #4d3f3f;
}

.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(#005F53), to(#005F53));
  background-image: linear-gradient(to right, #005F53, #005F53);
  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;
}

.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: #e65f3e;
  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: #005F53;
  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 #6c7c7a;
  padding: 20px;
}

.profi-txt span {
  color: #005F53;
  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(0, 95, 83, 0.15);
          box-shadow: 0 3 10px rgba(0, 95, 83, 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(#00c5ac), to(#005F53));
  background-image: linear-gradient(to top, #00c5ac, #005F53);
  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: #005F53;
}

.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: #005F53;
  font-size: 3.5rem;
  border-right: 1px solid #005F53;
  padding-right: 15px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  line-height: 1.2;
  font-family: "Cinzel", serif;
  font-weight: 500;
}

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

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

.flow-list li .flow-title {
  color: #005F53;
  border-bottom: 1px solid #005F53;
  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 #005F53;
  }
  .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 #6c7c7a;
}

@media all and (max-width: 639px) {
  .flow-box .txtarea {
    padding-bottom: 50px;
  }
  .flow-box .txtarea .flow-arrow {
    bottom: 10px;
  }
}

.price-dl dt {
  background: #ebe3cc;
  padding: 14px 20px;
  color: #817971;
  border-top: 1px solid #6c7c7a;
  border-bottom: 1px solid #6c7c7a;
}

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

.kiritori {
  height: 1px;
  border-top: 1px solid rgba(0, 95, 83, 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 .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 #005F53;
}

@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: 400px;
  -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: 400px;
  -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;
}

.sinryou-list {
  font-size: 12px;
  letter-spacing: 0;
}

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

.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;
          column-count: 2;
  -webkit-column-gap: 70px;
          column-gap: 70px;
}

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

.txt {
  font-size: 1.4rem;
}

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

.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 #005F53;
  border-bottom: 0.9px solid #005F53;
  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: #005F53 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);
  -webkit-backdrop-filter: blur(3px);
          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%;
  }
}

.clinic-list li {
  margin-bottom: 30px;
}

.clinic-list li a {
  display: block;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.clinic-list li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}

.clinic-list li p {
  font-size: 1.4rem;
  padding: 5px;
  line-height: 1.5;
}

@media all and (max-width: 639px) {
  .clinic-list li a {
    height: 200px;
  }
  .clinic-list li a img {
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .clinic-list li p {
    font-size: 13px;
  }
}

.bundoki {
  width: 350px;
  margin: 0 auto -90px;
  text-align: center;
  opacity: 0.5;
}

@media all and (max-width: 639px) {
  .bundoki {
    width: 85%;
  }
}

.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 #005F53;
  border-bottom: 0.9px solid #005F53;
  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 {
  width: 50%;
  margin-left: auto;
  padding: 40px;
  color: #fff;
}

@media all and (max-width: 639px) {
  .half-box {
    padding: 25px 15px;
    width: 100%;
  }
}

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

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

@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: 90%;
    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%;
}

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

.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 #6c7c7a;
  bottom: -4px;
  left: 0;
  opacity: 0.3;
}

.listbox li span {
  padding-right: 5px;
  color: #005F53;
}

.listbox2 li {
  position: relative;
}

.listbox2 .feature-txt {
  padding: 20px;
  background-color: #fff;
  position: relative;
}

.listbox2 .feature-txt.type1 {
  border-bottom: 2px solid #6c7c7a;
  text-align: center;
  font-size: 1.6rem;
}

.listbox2 .feature-subtxt {
  font-size: 5rem;
  font-weight: bold;
  width: 110%;
  color: #000;
  opacity: 0.1;
  position: absolute;
  bottom: 0;
}

.listbox2 .feature-main {
  position: absolute;
  background-color: #6c7c7a;
  color: #fff;
  padding: 14px 20px;
  text-align: center;
  top: -5px;
  left: 10px;
  font-size: 2rem;
  font-family: "Cinzel", serif;
  font-weight: 500;
  -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));
}

.listbox2 .feature-main2 {
  color: #6c7c7a;
  font-weight: bold;
  padding: 14px 20px;
  text-align: center;
  font-size: 2rem;
  border-bottom: 2px solid #6c7c7a;
}

.dental-box .title {
  text-align: center;
  font-size: 3rem;
}

.dental-box .title span {
  font-size: 5rem;
  font-weight: bold;
  color: #6c7c7a;
}

@media all and (max-width: 639px) {
  .dental-box .title {
    font-size: 1.5rem;
  }
  .dental-box .title span {
    font-size: 2rem;
  }
}

.dental-box .txt span {
  border-bottom: 2px solid #6c7c7a;
}

.whiten-box .title {
  text-align: center;
  font-size: 2rem;
}

.whiten-box .title span {
  font-size: 3rem;
  font-weight: bold;
  color: #6c7c7a;
}

@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 #6c7c7a;
}

.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);
  margin-bottom: 20px;
}

.photo-deko img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.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: #005F53;
  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 #f4e8ff;
}

.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 {
  padding: 20px 30px;
}

.qa-list.type1 dl dd:before {
  content: "";
}

@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 #005F53;
  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: #005F53;
}

@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 #6c7c7a;
}

.price-list .mainttl .txt {
  color: #005F53;
  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: #005F53;
    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: white;
  stroke-width: 0.5px;
  fill: white;
  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: white;
  }
  32% {
    stroke-dashoffset: 0;
    fill: white;
  }
}

@keyframes textAnime {
  0% {
    stroke-dashoffset: 600;
    fill: transparent;
  }
  15% {
    fill: transparent;
  }
  31% {
    stroke-dashoffset: 0;
    fill: white;
  }
  32% {
    stroke-dashoffset: 0;
    fill: white;
  }
}

@-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: #005F53;
  font-size: 2rem;
}

.txtdeko .main:before {
  position: absolute;
  content: "";
  background-color: #005F53;
  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: #005F53;
  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 #005F53;
}

.txtdeko3 {
  position: relative;
  padding: 0 20px;
}

.txtdeko3 span {
  position: relative;
}

.txtdeko3 span:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 8px;
  border-left: 10px solid #005F53;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  top: 2px;
  left: -8px;
}

.txtdeko3.type2 span:before {
  left: -12px;
  border-left: 10px solid #076116;
}

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

.txtdeko4 {
  margin-bottom: 10px;
  text-align: center;
  position: relative;
}

.txtdeko4 span {
  background-color: #6c7c7a;
  padding: 2px 15px;
  font-family: "Kaisei Opti", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  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: #005F53;
  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: #005F53;
  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: #6c7c7a;
  left: 0;
  top: 15%;
}

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

.txtdeko-min3 span {
  color: #005F53;
}

.txtdeko-minbox {
  margin-top: 10px;
  font-size: 1.2rem;
}

.txtdeko-minbox .txt span {
  color: #005F53;
  font-weight: bold;
}

.txtdeko-minbox .min {
  font-weight: normal;
}

.txtdeko-minbox .min span {
  color: #005F53;
  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 #076116;
  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 #076116;
  border-top: 10px solid transparent;
  top: 1px;
  left: 0;
}

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

.txtdeko7 span {
  color: #fff;
  background: #076116;
  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(../img/mtext-line.png) repeat-x;
  background-size: 22px 6px;
  left: 0;
  bottom: 50px;
}

.basebox {
  background-color: rgba(0, 95, 83, 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 #005F53;
  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: 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 #005F53;
  color: #005F53;
  padding: 10px 16px;
}

.whitebox .txtdeko .txt {
  padding-left: 5px;
  font-size: 2rem;
}

.whitebox .txtdeko:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 6px;
  background: url(../img/mtext-line.png) 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(0, 95, 83, 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 #005F53;
}

.box-list li {
  border: 4px dotted #005F53;
  padding: 20px;
}

.box-list li .detail {
  margin: 0 auto;
  text-align: center;
}

.box-list .txt {
  margin-bottom: 10px;
}

.box-list .txtlink {
  margin: 0 auto;
  text-align: center;
}

.box-list .txtlink span {
  background-color: #076116;
  color: #fff;
  padding: 6px 30px;
  border-radius: 50px;
  font-size: 1.4rem;
  border: 1px solid #076116;
}

.box-list .txtlink:hover span {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: #fff;
  color: #076116;
}

/*----------------------------------
txtbox
----------------------------------*/
.txtbox {
  text-align: left;
  display: table;
}

.txtbox .title {
  display: table-cell;
  font-size: 2rem;
  width: 18%;
  text-align: center;
  background-color: #005F53;
  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 #005F53;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-weight: bold;
  position: relative;
}

.txtbox2 .title span {
  color: #005F53;
}

.txtbox2.type2 {
  background-color: rgba(7, 97, 22, 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: #005F53;
  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(0, 95, 83, 0.2);
}

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

@keyframes txtdeko3 {
  0% {
    width: 0%;
    background-color: #076116;
  }
  51% {
  }
  100% {
    width: 100%;
  }
}

.boxdeko3 {
  background-color: rgba(0, 95, 83, 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 #005F53;
}

@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(30px);
            filter: blur(30px);
  }
}

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

.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: #005F53;
  /*伸びる背景色の設定*/
}

@-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: #005F53;
  /*伸びる背景色の設定*/
}

@-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: #005F53;
  /*伸びる背景色の設定*/
}

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

#riten{
  display: none;
}