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

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

#wrapper {
  position: relative;
  overflow: hidden;
}

#wrapper:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-all.jpg) repeat;
  background-size: 1300px 950px;
  z-index: -1;
  opacity: 0.5;
}

#l-main {
  position: relative;
}

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

.bold {
  font-weight: 600;
}

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

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

/* animation
----------------------------------*/
@-webkit-keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.animation {
  opacity: 0;
}

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

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

/*=============== ローでイング =================*/
.loader {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 0;
  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;
  pointer-events: none;
}

.loader.off {
  display: block;
}

.loader-bg1 {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  background-color: #cbe6df;
  top: 0;
  left: 0;
  -webkit-animation: load-bganime 0.6s ease-out 1.8s forwards;
          animation: load-bganime 0.6s ease-out 1.8s forwards;
}

.loader-bg2 {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  background-color: #cbe6df;
  top: 0;
  right: 0;
  -webkit-animation: load-bganime 0.6s ease-out 1.8s forwards;
          animation: load-bganime 0.6s ease-out 1.8s forwards;
}

.loader-bg3 {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #cbe6df;
  top: 0;
  right: 0;
  -webkit-animation: load-bganime2 0.6s ease-out 1.8s forwards;
          animation: load-bganime2 0.6s ease-out 1.8s forwards;
}

.page-loader {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 0;
  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;
  pointer-events: none;
}

.page-loader.page-loader-off {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.page-loader.page-loader-off .page-loader-inner {
  display: none;
}

.page-loader-inner {
  margin: 60px auto;
  font-size: 7px;
  position: relative;
  text-indent: -9999em;
  border-top: 0.4em solid rgba(216, 216, 216, 0.4);
  border-right: 0.4em solid rgba(216, 216, 216, 0.4);
  border-bottom: 0.4em solid rgba(216, 216, 216, 0.4);
  border-left: 0.4em solid #503e2d;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation: loadanime 1.1s infinite linear, load-none 0.4s ease-out 0.8s forwards;
          animation: loadanime 1.1s infinite linear, load-none 0.4s ease-out 0.8s forwards;
  border-radius: 50%;
  width: 7em;
  height: 7em;
}

.page-loader-inner:after {
  border-radius: 50%;
  width: 5em;
  height: 5em;
}

@-webkit-keyframes loadanime {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loadanime {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes load-tate {
  0% {
    height: 100%;
    opacity: 1;
  }
  100% {
    height: 0%;
  }
}

@keyframes load-tate {
  0% {
    height: 100%;
    opacity: 1;
  }
  100% {
    height: 0%;
  }
}

@-webkit-keyframes load-bganime {
  0% {
    width: 50%;
  }
  100% {
    width: 0%;
  }
}

@keyframes load-bganime {
  0% {
    width: 50%;
  }
  100% {
    width: 0%;
  }
}

@-webkit-keyframes load-bganime2 {
  0% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}

@keyframes load-bganime2 {
  0% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}

@-webkit-keyframes load-none {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}

@keyframes load-none {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}

#splash_logo {
  position: absolute;
  top: 44%;
  width: 292px;
  height: 162px;
  margin: 0 auto;
  text-align: center;
  left: 0;
  right: 0;
  -webkit-animation: anime-aut 0.4s linear 1.2s forwards;
          animation: anime-aut 0.4s linear 1.2s forwards;
}

#splash_logo .svgall {
  position: absolute;
  left: 0;
  top: 0;
  width: 292px;
  height: 162px;
}

#splash_logo span {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/slide-logo.png) no-repeat;
  background-size: cover;
  opacity: 0.3;
}

#splash_logo span.svgall__main {
  width: 0;
  opacity: 1;
  -webkit-animation: load-logoamnime 0.8s linear 0.2s forwards;
          animation: load-logoamnime 0.8s linear 0.2s forwards;
}

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

@keyframes anime-aut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes load-logoamnime {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes load-logoamnime {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/* header
----------------------------------*/
@-webkit-keyframes load-bg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes load-bg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes wave-bg {
  0% {
    background-position: top 0 left 0;
  }
  to {
    background-position: top 0 left 1900px;
  }
}

@keyframes wave-bg {
  0% {
    background-position: top 0 left 0;
  }
  to {
    background-position: top 0 left 1900px;
  }
}

.topbox #l-header {
  -webkit-animation: load-bg 1s ease-out 1s forwards;
          animation: load-bg 1s ease-out 1s forwards;
}

#l-header {
  width: 100%;
  position: absolute;
  z-index: 11;
  width: 100%;
  top: 0px;
  left: 0;
  right: 0;
  margin: 0 0 0 auto;
  opacity: 0;
  -webkit-animation: load-bg 1s ease-out 1.6s forwards;
          animation: load-bg 1s ease-out 1.6s forwards;
}

#l-header .inner #logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: block;
  position: absolute;
  left: 8%;
  top: 30px;
  z-index: 2;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media all and (max-width: 1420px) {
  #l-header .inner #logo {
    width: 180px;
    left: 6%;
  }
}

@media all and (max-width: 1200px) {
  #l-header .inner #logo {
    left: 50px;
    position: relative;
    margin: 0 auto 0 0;
    width: 170px;
  }
}

@media all and (max-width: 896px) {
  #l-header .inner #logo {
    margin: 0 auto;
    text-align: center;
    left: 0;
    right: 0;
  }
}

@media all and (max-width: 639px) {
  #l-header .inner #logo {
    width: 150px;
    top: 30px;
  }
}

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

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

#header_nav {
  position: relative;
  margin: 0 auto;
  text-align: center;
  z-index: 100;
  padding: 30px 0 0px;
  max-width: 1000px;
  width: 80%;
}

#header_nav ul {
  margin: 0 auto;
  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;
}

#header_nav ul li {
  position: relative;
  margin: 0 20px 0 0;
}

#header_nav ul li a:before {
  position: absolute;
  content: "";
  top: -100px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  width: 33px;
  height: 40px;
  background: url(../img/header-nav-icon01.png) no-repeat;
  background-size: cover;
}

#header_nav ul li:nth-child(2) a:before {
  background: url(../img/header-nav-icon02.png) no-repeat;
  background-size: cover;
}

#header_nav ul li:nth-child(3) a:before {
  background: url(../img/header-nav-icon03.png) no-repeat;
  background-size: cover;
}

#header_nav ul li:nth-child(4) a:before {
  background: url(../img/header-nav-icon04.png) no-repeat;
  background-size: cover;
}

#header_nav ul li:nth-child(5) a:before {
  background: url(../img/header-nav-icon05.png) no-repeat;
  background-size: cover;
}

#header_nav ul li:nth-child(6) a:before {
  background: url(../img/header-nav-icon06.png) no-repeat;
  background-size: cover;
}

#header_nav ul li:nth-child(7) a:before {
  background: url(../img/header-nav-icon07.png) no-repeat;
  background-size: cover;
}

#header_nav ul li a {
  display: block;
  position: relative;
  line-height: 1.5;
  font-size: 1.5rem;
  padding: 10px 15px;
  color: #fff;
  z-index: 1;
  text-align: center;
}

#header_nav ul li a span {
  display: block;
  font-size: 1.3rem;
  color: #fff;
  position: relative;
  letter-spacing: 0.1rem;
}

#header_nav ul li a .nav__eng {
  font-family: "Yomogi", cursive;
  font-weight: 300;
}

#header_nav ul li a .nav__txt {
  position: relative;
  z-index: 1;
  font-weight: bold;
}

#header_nav ul li a:hover, #header_nav ul li a.active {
  color: #cbe6df;
  -webkit-transition: 0.2s width ease-in;
  transition: 0.2s width ease-in;
  color: #503e2d;
}

#header_nav ul li a:hover .nav__eng, #header_nav ul li a.active .nav__eng {
  color: #cbe6df;
}

#header_nav ul li a:hover:before, #header_nav ul li a.active:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  top: -40px;
}

#header_nav ul li .sub-menu {
  display: none;
  border-top: 0;
  display: none;
  margin: 0;
  position: absolute;
  width: 260px;
  top: 49px;
  left: 0px;
  visibility: hidden;
  -webkit-transiton: opacity 0.2s;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  z-index: 1;
  padding: 20px;
}

#header_nav ul li .sub-menu li {
  width: 100%;
  margin: 0 auto 5px;
  background-color: #503e2d;
  padding: 10px 15px 10px 30px;
  margin-bottom: 4px;
  position: relative;
  opacity: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transition: transform 0.3s ease, opacity 0.2s ease, -webkit-transform 0.3s ease;
}

#header_nav ul li .sub-menu li:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#header_nav ul li .sub-menu li:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#header_nav ul li .sub-menu li:nth-child(4) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#header_nav ul li .sub-menu li:nth-child(5) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#header_nav ul li .sub-menu li:nth-child(6) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#header_nav ul li .sub-menu li:nth-child(7) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#header_nav ul li .sub-menu li a {
  display: block;
  font-weight: normal;
  font-size: 1.3rem;
  color: #fff;
  padding: 0;
  text-shadow: none;
  text-align: left;
}

#header_nav ul li .sub-menu li a span {
  color: #fff;
}

#header_nav ul li .sub-menu li a:before {
  display: none;
}

#header_nav ul li .sub-menu li:hover {
  background-color: #dad1c9;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#header_nav ul li .sub-menu li:hover a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #333;
}

#header_nav ul li .sub-menu li:hover a span {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #333;
}

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

#header_nav ul li:hover .sub-menu li, #header_nav ul li.active .sub-menu li {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  -webkit-transition: opacity 0.9s ease, -webkit-transform 1s ease;
  transition: opacity 0.9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 0.9s ease;
  transition: transform 1s ease, opacity 0.9s ease, -webkit-transform 1s ease;
  -webkit-animation: opacityAnime 1s 0.1s forwards;
          animation: opacityAnime 1s 0.1s forwards;
}

#header_nav ul li:hover .sub-menu li:nth-child(2), #header_nav ul li.active .sub-menu li:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

#header_nav ul li:hover .sub-menu li:nth-child(3), #header_nav ul li.active .sub-menu li:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

#header_nav ul li:hover .sub-menu li:nth-child(4), #header_nav ul li.active .sub-menu li:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

#header_nav ul li:hover .sub-menu li:nth-child(5), #header_nav ul li.active .sub-menu li:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

#header_nav ul li:hover .sub-menu li:nth-child(6), #header_nav ul li.active .sub-menu li:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

#header_nav ul li:hover .sub-menu li:nth-child(7), #header_nav ul li.active .sub-menu li:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

#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(203, 230, 223, 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(130, 187, 223, 0.4);
}

#header_nav ul li:hover .header_link.type3:before, #header_nav ul li.active .header_link.type3:before {
  background-color: rgba(218, 157, 96, 0.4);
}

#header_nav ul li:hover .header_link.type4:before, #header_nav ul li.active .header_link.type4:before {
  background-color: rgba(235, 200, 95, 0.4);
}

@media all and (max-width: 1680px) {
  #header_nav {
    margin: 0 2% 0 auto;
  }
  #header_nav ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media all and (max-width: 1420px) {
  #header_nav ul li a {
    font-size: 1.4rem;
  }
  #header_nav ul li a span {
    font-size: 1.2rem;
  }
  #header_nav ul li.type-contact {
    margin-left: 10px;
  }
}

@media all and (max-width: 1367px) {
  #header_nav {
    text-align: center;
    width: 100%;
  }
  #header_nav ul {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  #header_nav ul li a {
    font-size: 1.4rem;
  }
}

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

#header_nav.UpMove {
  position: fixed;
  width: 100%;
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes opacityAnime {
  0% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes opacityAnime {
  0% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

/*==ふわっと出現させるためのCSS*/
/*　上に上がる動き　*/
@-webkit-keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}
@keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/
@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* nav
----------------------------------*/
#nav-toggle {
  display: none;
  position: fixed;
  top: 56px;
  left: 80px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 999;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#nav-toggle:before {
  position: absolute;
  content: "";
  left: -45px;
  top: -42px;
  width: 110px;
  height: 115px;
  z-index: -1;
  background: url(../img/moon.png) no-repeat;
  background-size: cover;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#nav-toggle > div {
  position: relative;
  width: 35px;
}

#nav-toggle > div > p {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 25px;
  font-size: 11px;
  text-align: center;
  color: #222;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Yomogi", cursive;
  font-weight: 300;
}

#nav-toggle span {
  width: 100%;
  height: 1px;
  left: 0;
  display: block;
  background: #fff;
  position: absolute;
  -webkit-transition: top 0.5s ease, -webkit-transform 0.6s ease-in-out;
  transition: top 0.5s ease, -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
  transition: transform 0.6s ease-in-out, top 0.5s ease, -webkit-transform 0.6s ease-in-out;
}

#nav-toggle span:nth-child(1) {
  top: 0;
}

#nav-toggle span:nth-child(2) {
  top: 10px;
  width: 90%;
}

#nav-toggle span:nth-child(3) {
  top: 20px;
  width: 80%;
}

#nav-toggle:hover span:nth-child(1) {
  top: 0px;
}

#nav-toggle:hover span:nth-child(2) {
  top: 0px;
}

#nav-toggle:hover span:nth-child(3) {
  top: 0px;
}

@media all and (max-width: 1200px) {
  #nav-toggle {
    z-index: 1000;
    display: block;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media all and (max-width: 896px) {
  #nav-toggle {
    top: 60px;
    right: 40px;
  }
}

@media all and (max-width: 639px) {
  #nav-toggle {
    top: 40px;
    left: auto;
    right: -10px;
  }
  #nav-toggle:before {
    left: -20px;
    top: -26px;
    width: 62px;
    height: 65px;
  }
}

.open #nav-toggle {
  z-index: 1000;
  display: block !important;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.open #nav-toggle:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.open #nav-toggle span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}

.open #nav-toggle span:nth-child(3) {
  top: 10px;
  width: 100%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.nav-active {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.nav-active #pc_btn {
  display: block;
  opacity: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.nav-active #nav-toggle {
  z-index: 1000;
  display: block;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.nav-active #nav-toggle span {
  background-color: #333;
}

.nav-active .navarea li a {
  color: #333;
}

@media all and (max-width: 896px) {
  .nav-active #pc_btn {
    display: none;
  }
  .nav-active #nav-toggle {
    top: 50px;
    right: 20px;
  }
  .nav-active #nav-toggle:before {
    left: -33px;
    top: -36px;
    width: 82px;
    height: 85px;
  }
}

@media all and (max-width: 639px) {
  .nav-active #nav-toggle {
    top: 40px;
    right: -10px;
  }
  .nav-active #nav-toggle:before {
    left: -13px;
    top: -30px;
    width: 56px;
    height: 58px;
  }
}

#sp-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  width: 100%;
  max-width: 350px;
  height: 100%;
}

#sp-nav:before {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #e0edeb;
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#sp-nav:before {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #cbefe4;
  z-index: -1;
  opacity: 0;
}

#sp-nav .nav__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 33%, 100% 44%, 100% 100%, 0% 100%);
          clip-path: polygon(0 33%, 100% 44%, 100% 100%, 0% 100%);
}

#sp-nav .nav__bg:before {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #b2d4b7;
  z-index: -1;
  opacity: 0;
}

#sp-nav .nav__bg2 {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 80%, 100% 60%, 100% 100%, 0% 100%);
          clip-path: polygon(0 80%, 100% 60%, 100% 100%, 0% 100%);
}

#sp-nav .nav__bg2:before {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #a39386;
  z-index: -1;
  opacity: 0;
}

#sp-nav .inner {
  width: 90%;
  margin: 0 auto;
  position: absolute;
  z-index: 1;
  opacity: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#sp-nav .dropdown {
  display: none;
}

#sp-nav .nav__logo {
  display: none;
  width: 120px;
  margin: 20px auto 0;
}

#sp-nav .navarea {
  list-style: none;
  width: 80%;
  margin: 0 auto;
}

#sp-nav .navarea li {
  padding: 0 0 0 30px;
  background-color: #fff;
  margin-bottom: 5px;
  border-radius: 50px;
}

#sp-nav .navarea li a:before {
  position: absolute;
  content: "";
  top: 15px;
  left: -120px;
  text-align: center;
  width: 33px;
  height: 40px;
  background: url(../img/header-nav-icon01.png) no-repeat;
  background-size: cover;
  -webkit-transform: rotate(-95deg);
          transform: rotate(-95deg);
}

#sp-nav .navarea li:nth-child(2) a:before {
  background: url(../img/header-nav-icon02.png) no-repeat;
  background-size: cover;
}

#sp-nav .navarea li:nth-child(3) a:before {
  background: url(../img/header-nav-icon03.png) no-repeat;
  background-size: cover;
}

#sp-nav .navarea li:nth-child(4) a:before {
  background: url(../img/header-nav-icon04.png) no-repeat;
  background-size: cover;
}

#sp-nav .navarea li:nth-child(5) a:before {
  background: url(../img/header-nav-icon05.png) no-repeat;
  background-size: cover;
}

#sp-nav .navarea li:nth-child(6) a:before {
  background: url(../img/header-nav-icon06.png) no-repeat;
  background-size: cover;
}

#sp-nav .navarea li:nth-child(7) a:before {
  background: url(../img/header-nav-icon07.png) no-repeat;
  background-size: cover;
}

#sp-nav .navarea li a {
  text-align: left;
  display: block;
  padding: 7px 0;
  font-weight: bold;
  position: relative;
  z-index: 1;
  position: relative;
  z-index: 1;
}

#sp-nav .navarea li a .nav__eng {
  display: block;
  font-family: "Yomogi", cursive;
  font-weight: 300;
  font-size: 12px;
}

#sp-nav .navarea li a:after {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: absolute;
  content: "";
  z-index: -1;
  width: 0;
  height: 2px;
  bottom: 7px;
  left: 0;
  background-color: #fff;
}

#sp-nav .navarea li a:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#sp-nav .navarea li a:hover:before {
  left: -80px;
}

#sp-nav .navarea li a:hover:after {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 40px;
}

#sp-nav .navarea li:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#sp-nav .navarea li:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#sp-nav .navarea li:nth-child(4) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#sp-nav .navarea li:nth-child(5) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#sp-nav .navarea li:nth-child(6) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#sp-nav .navarea li:nth-child(7) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

@media all and (max-width: 1420px) {
  #sp-nav .navarea {
    display: block;
    margin: 115px auto 0;
  }
}

@media all and (max-width: 896px) {
  #sp-nav .navarea {
    margin: 50px auto 0;
  }
}

@media all and (max-width: 639px) {
  #sp-nav .navarea {
    margin: 30px auto 0;
  }
  #sp-nav .navarea li .nav__eng {
    font-size: 12px;
    line-height: 1;
  }
  #sp-nav .navarea li .nav__txt {
    font-size: 12px;
  }
}

#sp-nav .nav__linklist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px auto 0;
}

#sp-nav .nav__linklist li {
  font-size: 4rem;
  margin-right: 10px;
}

#sp-nav .nav__linklist li:nth-child(3) {
  margin-right: 0;
}

#sp-nav .nav__linklist li a:hover {
  color: #1d9bf0;
}

#sp-nav .nav__linklist li:nth-child(2) a:hover {
  color: #1877f2;
}

#sp-nav .nav__linklist li:nth-child(3) a:hover {
  color: #06c755;
}

@media all and (max-width: 639px) {
  #sp-nav {
    max-width: 100%;
  }
  #sp-nav .nav__logo {
    display: block;
    margin-top: 20px;
  }
  #sp-nav .nav__linklist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 40px auto 0;
  }
  #sp-nav .nav__linklist li {
    font-size: 2.5rem;
    margin-right: 10px;
  }
}

/* open */
.open #sp-nav {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}

.open #sp-nav:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 100%;
  opacity: 1;
}

.open #sp-nav li {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity 0.9s ease, -webkit-transform 1s ease;
  transition: opacity 0.9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 0.9s ease;
  transition: transform 1s ease, opacity 0.9s ease, -webkit-transform 1s ease;
}

.open #sp-nav .inner {
  -webkit-animation: nav-anime-opacity 0.6s ease 0.4s forwards;
          animation: nav-anime-opacity 0.6s ease 0.4s forwards;
}

@media all and (max-width: 896px) {
  .open {
    overflow: hidden;
  }
  .open #sp-nav {
    width: 100%;
    height: 100%;
  }
}

@-webkit-keyframes nav-anime {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

@keyframes nav-anime {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

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

@keyframes nav-anime-opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* page-nav
----------------------------------*/
#page_nav {
  position: absolute;
  top: 50%;
  right: 5.9%;
  -webkit-transform: translateY(-50%) skewX(7.4deg);
          transform: translateY(-50%) skewX(7.4deg);
  z-index: 11;
}

#page_nav li {
  background-color: #604C3F;
  padding: 10px 30px 10px 20px;
  border-radius: 0 10px 10px 0;
  margin-bottom: 20px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#page_nav li a {
  color: #fff;
  display: block;
}

#page_nav li i {
  font-size: 4rem;
  display: block;
  margin: 0 auto;
  text-align: center;
}

#page_nav li .list__txt {
  display: block;
  font-size: 12px;
  margin: 0 auto;
  text-align: center;
}

#page_nav li:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: #503e2d;
}

#page_nav li:hover:first-child {
  background-color: #1d9bf0;
}

#page_nav li:hover:nth-child(2) {
  background-color: #1877f2;
}

@media all and (max-width: 1680px) {
  #page_nav {
    top: auto;
    bottom: 70px;
    -webkit-transform: translateY(-50%) skewX(-7.4deg);
            transform: translateY(-50%) skewX(-7.4deg);
  }
  #page_nav ul {
    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;
  }
  #page_nav li {
    width: 200px;
    margin: 0 20px 0 0;
    border-radius: 0 0px 0px 0;
    padding: 20px 30px;
  }
}

@media all and (max-width: 1367px) {
  #page_nav {
    bottom: 20px;
  }
}

@media all and (max-width: 1200px) {
  #page_nav {
    width: calc(100% - 30px);
    max-width: 600px;
    margin: 0 auto;
  }
  #page_nav li {
    padding: 20px 30px 20px 15px;
    border-radius: 4px 4px 0 0;
    text-align: center;
  }
  #page_nav li a {
    display: block;
  }
  #page_nav li i {
    font-size: 3rem;
  }
  #page_nav li .list__txt {
    font-size: 12px;
  }
}

@media all and (max-height: 730px) {
  #page_nav {
    bottom: -30px;
  }
}

@media all and (max-width: 896px) {
  #page_nav {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    width: calc(100% - 100px);
  }
  #page_nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
    width: 100%;
  }
  #page_nav li {
    width: 49%;
    padding: 10px 30px;
    border-radius: 10px 10px 0 0;
    margin: 0 2% 0px 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  #page_nav li:nth-child(2) {
    margin: 0 0 0px;
  }
  #page_nav li a {
    display: block;
  }
  #page_nav li i {
    display: inline-block;
    font-size: 15px;
    padding-right: 5px;
  }
  #page_nav li .list__txt {
    display: inline-block;
    font-size: 12px;
  }
  #page_nav li:hover {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

@media all and (max-width: 639px) {
  #page_nav li {
    width: 120px;
    padding: 5px 0px;
    border-radius: 5px 5px 0 0;
    margin: 0 2% 0px 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
}

/* PC page btn
----------------------------------*/
#pc_btn {
  position: fixed;
  z-index: 20;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#pc_btn ul li {
  margin-bottom: 5px;
}

#pc_btn ul li a {
  display: block;
  padding: 20px 40px 20px 30px;
  background-color: #34c5c5;
  color: #fff;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  border-radius: 10px 0 0 10px;
}

#pc_btn ul li a i {
  color: #fff;
  display: block;
  margin: 0 auto;
  text-align: center;
}

#pc_btn ul li a span {
  display: block;
  text-align: center;
}

#pc_btn ul li a:hover {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  background-color: #189f9f;
}

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

/* SP page btn
----------------------------------*/
#sp_btn {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 20;
  width: 100%;
}

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

#sp_btn ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 330px;
  margin: 0 auto;
}

#sp_btn ul li {
  border-right: 2px solid #fff;
}

#sp_btn ul li:nth-child(4) {
  border-right: none;
}

#sp_btn ul li a {
  display: block;
  padding: 7px 30px;
  text-align: center;
  background: #189f9f;
  color: #503e2d;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.2;
}

#sp_btn ul li a span {
  display: block;
  font-size: 13px;
  font-family: "Yomogi", cursive;
  font-weight: 300;
  color: #fff;
}

#sp_btn ul li a i {
  color: #fff;
}

#sp_btn ul li a:hover {
  background-color: #ddd;
}

#sp_btn ul li a:hover span {
  color: #189f9f;
}

#sp_btn ul li a:hover i {
  color: #189f9f;
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 110;
  display: none;
}

#page-top a {
  display: block;
  background: #cbe6df;
  -webkit-box-shadow: #cbe6df;
          box-shadow: #cbe6df;
  color: #fff;
  width: 60px;
  height: 60px;
  line-height: 58px;
  font-size: 1.2rem;
  text-align: center;
}

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

@-webkit-keyframes circle-anime {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  25% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  75% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes circle-anime {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  25% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  75% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

.linK__banner {
  display: none;
}

@media all and (max-width: 639px) {
  .linK__banner {
    display: block;
    max-width: 90%;
    margin: 0 auto;
  }
  .linK__banner .banner__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .linK__banner .banner__list li {
    width: 46%;
    margin: 0 2% 10px;
    border-radius: 10px;
    padding: 10px 10px 20px;
  }
  .linK__banner .banner__list li:first-child {
    border: 2px solid #503e2d;
  }
  .linK__banner .banner__list li:first-child a {
    color: #503e2d;
  }
  .linK__banner .banner__list li:first-child a i {
    color: #503e2d;
  }
  .linK__banner .banner__list li:nth-child(2) {
    border: 2px solid #cbe6df;
  }
  .linK__banner .banner__list li:nth-child(2) a {
    color: #cbe6df;
  }
  .linK__banner .banner__list li:nth-child(2) a i {
    color: #cbe6df;
  }
  .linK__banner .banner__list li:nth-child(3) {
    border: 2px solid #8fcc96;
  }
  .linK__banner .banner__list li:nth-child(3) a {
    color: #8fcc96;
  }
  .linK__banner .banner__list li:nth-child(3) a i {
    color: #8fcc96;
  }
  .linK__banner .banner__list li:nth-child(4) {
    border: 2px solid #8fcc96;
  }
  .linK__banner .banner__list li:nth-child(4) a {
    color: #8fcc96;
  }
  .linK__banner .banner__list li:nth-child(4) a i {
    color: #8fcc96;
  }
  .linK__banner .banner__list li:nth-child(5) {
    border: 2px solid #604C3F;
  }
  .linK__banner .banner__list li:nth-child(5) a {
    color: #604C3F;
  }
  .linK__banner .banner__list li:nth-child(5) a i {
    color: #604C3F;
  }
  .linK__banner .banner__list li:nth-child(6) {
    border: 2px solid #82bbdf;
  }
  .linK__banner .banner__list li:nth-child(6) a {
    color: #82bbdf;
  }
  .linK__banner .banner__list li:nth-child(6) a i {
    color: #82bbdf;
  }
  .linK__banner .banner__list a {
    display: block;
    text-align: center;
    position: relative;
    color: #503e2d;
  }
  .linK__banner .banner__list a span {
    font-family: "Sawarabi Gothic", serif, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    display: block;
  }
  .linK__banner .banner__list a i {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -10px;
    color: #fff;
    text-align: center;
    -webkit-animation: circle-anime2 4s ease-out 1.5s infinite;
            animation: circle-anime2 4s ease-out 1.5s infinite;
  }
}

@-webkit-keyframes circle-anime2 {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  25% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  75% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes circle-anime2 {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  25% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  75% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/* footer
----------------------------------*/
.footer__map iframe {
  width: 100%;
  height: 400px;
}

footer {
  padding: 100px 0 50px;
  position: relative;
  background-color: rgba(223, 247, 167, 0.4);
  margin-top: -8px;
  z-index: 1;
}

footer:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 114px;
  top: -20px;
  left: 0;
  background: url(../img/footer-topline.png) no-repeat;
  background-size: cover;
}

footer:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 52px;
  bottom: 0;
  left: 0;
  background: url(../img/footer-line.png) no-repeat;
  background-size: cover;
}

footer .footer__line--left {
  position: absolute;
  left: 0;
  bottom: 0;
}

footer .footer__line--right {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media all and (max-width: 896px) {
  footer {
    padding: 100px 0 300px;
  }
}

@media all and (max-width: 639px) {
  footer {
    padding: 80px 0 150px;
  }
  footer:before {
    background-position: 24% 0;
    opacity: 0.4;
    height: 84px;
    top: 0;
  }
  footer .footer__line--left {
    width: 220px;
  }
  footer .footer__line--right {
    width: 220px;
  }
}

#l-footer {
  font-size: 1.4rem;
  position: relative;
  width: 60%;
  margin: 0 auto;
}

#l-footer .flogo {
  width: 250px;
  margin: 0 auto;
}

#l-footer .mainContents__subtitle .ja {
  font-size: 2rem;
  height: 40px;
  padding: 2px 30px;
}

#l-footer .footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #259047;
  padding: 50px;
  margin: 70px auto 100px;
}

#l-footer .footer__main .main__box {
  width: 250px;
  color: #fff;
}

#l-footer .footer__main .main__box .box-txt {
  margin-top: 20px;
}

#l-footer .footer__main .main__box .ftel a {
  color: #fff;
}

#l-footer .footer__main .main__box .ftel a:hover {
  color: #ebc85f;
}

#l-footer .footer__main .footer_navi {
  width: calc(100% - 280px);
  margin: 0 0 0 30px;
}

@media all and (max-width: 1680px) {
  #l-footer {
    width: 80%;
  }
}

@media all and (max-width: 1200px) {
  #l-footer {
    width: 90%;
  }
}

@media all and (max-width: 896px) {
  #l-footer .footer__main {
    display: block;
    padding: 30px;
    margin: 70px auto 100px;
  }
  #l-footer .footer__main .main__box {
    width: 250px;
    color: #fff;
    margin: 0 auto 20px;
    text-align: center;
  }
  #l-footer .footer__main .main__box .box-txt {
    margin-top: 20px;
  }
  #l-footer .footer__main .footer_navi {
    width: 100%;
    margin: 0 auto;
    text-align: left;
  }
}

@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
  }
  #l-footer .footer__main {
    margin: 30px auto 50px;
  }
  #l-footer .mainContents__subtitle .ja {
    font-size: 1.2rem;
    height: 30px;
    padding: 2px 15px;
  }
  #l-footer .footer_navi {
    width: 100%;
    max-width: auto;
    margin: 40px auto 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #l-footer .ftel {
    font-size: 14px;
  }
  #l-footer .footer__photo {
    height: 200px;
  }
  #l-footer .footer__photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.footer__list {
  margin: 100px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #8fcc96;
  position: relative;
}

.footer__list li {
  padding: 40px;
  width: 48%;
  margin: 0 4% auto 9;
  position: relative;
}

.footer__list li:nth-child(2) {
  margin: 0 0;
}

.footer__list li iframe {
  width: 340px;
  height: 300px !important;
  margin: 0 auto;
}

.footer__list li .fb_iframe_widget span {
  height: 300px !important;
}

.footer__list li .list__map {
  text-align: center;
}

.footer__list li .list__map iframe {
  width: 100%;
}

.footer__list li .list__main {
  text-align: center;
}

.footer__list li .mainContents__subtitle {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: 0 auto 0px;
  text-align: center;
}

.footer__list li .footer-illust01 {
  width: 180px;
  position: absolute;
  left: -80px;
  bottom: -30px;
}

.footer__list li .footer-illust02 {
  position: absolute;
  right: -80px;
  bottom: -30px;
  width: 150px;
}

.footer__list li .footer-illust03 {
  width: 180px;
  position: absolute;
  left: -80px;
  bottom: -30px;
}

.footer__list li .footer-illust04 {
  position: absolute;
  right: -70px;
  bottom: -30px;
  width: 150px;
}

@media all and (max-width: 896px) {
  .footer__list li {
    width: 90%;
    margin: 0 auto 50px;
    padding: 30px 20px;
  }
  .footer__list li:nth-child(2) {
    margin: 0 auto 0px;
  }
}

@media all and (max-width: 896px) and (max-width: 639px) {
  .footer__list li .list__main {
    overflow-x: scroll;
  }
  .footer__list li .footer-illust01 {
    width: 100px;
    left: -40px;
    bottom: -30px;
  }
  .footer__list li .footer-illust02 {
    right: -40px;
    bottom: -10px;
    width: 90px;
  }
  .footer__list li .footer-illust04 {
    right: -40px;
    bottom: -30px;
    width: 100px;
  }
}

.footer__photo {
  margin: 0 auto;
  text-align: center;
}

.footer__detailList {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -50px auto 0;
  max-width: 1000px;
}

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

.footer__detailList li {
  width: 48%;
  margin: 0 4% auto 0;
  background-color: #fff;
  padding: 40px;
  position: relative;
}

.footer__detailList li:before {
  position: absolute;
  content: "";
  width: 10%;
  height: 100%;
  left: -10px;
  top: 0;
  background: url(../img/title-frame3.png) repeat-y;
  background-size: 10px 46px;
}

.footer__detailList li:after {
  position: absolute;
  content: "";
  width: 10%;
  height: 100%;
  right: -10px;
  top: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  background: url(../img/title-frame3.png) repeat-y;
  background-size: 10px 46px;
}

.footer__detailList li .mainContents__subtitle {
  margin: 0 auto 20px;
}

.footer__detailList li .list__txt {
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
}

.footer__detailList li .list__flex {
  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;
}

.footer__detailList li .list__flex .list__icon {
  width: 130px;
}

.footer__detailList li .list__flex .list__txt {
  width: calc(100% - 140px);
  margin: 0 0 0 auto;
}

.footer__detailList li:nth-child(2) {
  margin: 0;
}

@media all and (max-width: 896px) {
  .footer__detailList li {
    width: 90%;
    margin: 0 auto 20px;
    padding: 30px;
  }
  .footer__detailList li:nth-child(2) {
    margin: 0 auto;
  }
}

@media all and (max-width: 639px) {
  .footer__detailList li {
    padding: 20px;
  }
  .footer__detailList li .list__flex {
    display: block;
  }
  .footer__detailList li .list__flex .list__icon {
    width: 90px;
    margin: 0 auto 20px;
    text-align: center;
  }
  .footer__detailList li .list__flex .list__txt {
    width: 100%;
    margin: 0 auto;
  }
}

.footer__btn {
  margin: 15px auto 0;
  text-align: center;
}

.footer__btn a {
  display: block;
  text-align: center;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 40px;
  background-color: #1f8d42;
  color: #fff;
  border: 1px solid #8fcc96;
  border-radius: 50px;
}

.footer__btn a:hover {
  background-color: #fff;
  color: #1f8d42;
}

@media all and (max-width: 639px) {
  .footer__btn a {
    font-size: 14px;
    padding: 10px 30px;
  }
}

/* footer_navi
----------------------------------*/
.footer_navi {
  max-width: 600px;
}

.footer_navi ul {
  margin: 0px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer_navi ul li {
  margin: 0 3% 0 0;
}

.footer_navi ul li:last-child {
  margin: 0;
}

.footer_navi ul li a {
  font-size: 1.2rem;
  position: relative;
  padding: 0;
  display: block;
  margin-bottom: 20px;
  padding-bottom: 5px;
  color: #fff;
  border-bottom: 1px solid #919191;
}

.footer_navi ul li a:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  width: 10px;
  height: 1px;
  background-color: #fff;
}

.footer_navi ul li a .nav__eng {
  display: none;
}

.footer_navi ul li a .nav__txt {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  color: #fff;
}

.footer_navi ul li a:hover {
  color: #fff;
}

.footer_navi ul li a:hover:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 100%;
}

.footer_navi ul li .sub-menu {
  margin-top: 10px;
  display: none;
}

.footer_navi ul li .sub-menu li {
  margin: 0;
  width: 100%;
  padding-left: 30px;
}

.footer_navi ul li .sub-menu a {
  padding: 0px;
}

.footer_navi ul li .sub-menu a:before {
  position: absolute;
  content: "";
  left: -14px;
  top: 7px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #fff;
  background-color: transparent;
}

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

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

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

@media all and (max-width: 639px) {
  .footer_navi ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footer_navi ul li {
    width: 45%;
    margin: 0 10% 10px 0;
  }
  .footer_navi ul li:nth-child(2n) {
    margin: 0 0 10px;
  }
  .footer_navi ul li a {
    margin-bottom: 0px;
  }
  .footer_navi ul li a .nav__txt {
    font-size: 12px;
  }
}

/* copyright
----------------------------------*/
.copyright {
  padding: 6px 30px;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  margin: 0 auto 50px;
  color: #fff;
  background-color: #503e2d;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border-radius: 50px;
}

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

/* btn
----------------------------------*/
@-webkit-keyframes btn-bg {
  0% {
    background-position: top 0 left 0;
  }
  to {
    background-position: top 0 left 300px;
  }
}
@keyframes btn-bg {
  0% {
    background-position: top 0 left 0;
  }
  to {
    background-position: top 0 left 300px;
  }
}

.btn {
  margin: 40px auto 0;
  text-align: center;
}

.btn a {
  margin: 0 auto;
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 1;
  font-size: 2rem;
  font-family: "Yomogi", cursive;
  font-weight: 300;
  font-weight: bold;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #fff;
  border-radius: 100px;
  padding: 5px 30px;
  -webkit-box-shadow: 0 0 10px rgba(21, 21, 21, 0.06);
          box-shadow: 0 0 10px rgba(21, 21, 21, 0.06);
}

.btn a .btn__txt {
  width: calc(100% - 70px);
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  color: #333;
  position: relative;
  padding: 0 20px 0px 40px;
  margin-right: 20px;
}

.btn a:hover {
  color: #333;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

.btn a:hover .circle:before {
  -webkit-animation: rotate-circle-left 0.5s linear 0.5s forwards;
          animation: rotate-circle-left 0.5s linear 0.5s forwards;
}

.btn a:hover .circle:after {
  -webkit-animation: rotate-circle-right 1s linear forwards;
          animation: rotate-circle-right 1s linear forwards;
}

.btn a:hover .circle.type--brown:before {
  -webkit-animation: rotate-circle-left2 0.5s linear 0.5s forwards;
          animation: rotate-circle-left2 0.5s linear 0.5s forwards;
}

.btn a:hover .circle.type--blue:before {
  -webkit-animation: rotate-circle-left3 0.5s linear 0.5s forwards;
          animation: rotate-circle-left3 0.5s linear 0.5s forwards;
}

@media all and (max-width: 896px) {
  .btn a {
    font-size: 1.5rem;
  }
}

@media all and (max-width: 639px) {
  .btn {
    margin: 30px auto 0;
  }
  .btn a {
    font-size: 12px;
    padding: 5px 25px 5px 30px;
  }
  .btn a .btn__txt {
    padding: 0 0px 0px 10px;
  }
}

.circle {
  position: relative;
  width: 45px;
  height: 45px;
  background: #503e2d;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.circle:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -50%;
  width: 45px;
  height: 45px;
  background: #ddd;
  -webkit-transform-origin: right 50%;
          transform-origin: right 50%;
  z-index: 4;
}

.circle:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 50%;
  width: 45px;
  height: 45px;
  background: #ddd;
  -webkit-transform-origin: left 50%;
          transform-origin: left 50%;
  z-index: 3;
}

.circle .circle-inner {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  z-index: 4;
}

.circle .circle-inner:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: absolute;
  content: "";
  width: 9px;
  height: 16px;
  background: url(../img/arrow.png) no-repeat;
  background-size: cover;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-40deg);
          transform: translate(-50%, -50%) rotate(-40deg);
}

@media all and (max-width: 896px) {
  .circle {
    width: 30px;
    height: 30px;
  }
  .circle:before {
    width: 30px;
    height: 30px;
  }
  .circle:after {
    width: 30px;
    height: 30px;
  }
  .circle .circle-inner {
    top: 2px;
    left: 2px;
    width: 26px;
    height: 26px;
  }
  .circle .circle-inner:before {
    width: 6px;
    height: 12px;
  }
}

.circle.type--brown {
  background: #664f3e;
}

.circle.type--blue {
  background: #cbe6df;
}

@-webkit-keyframes rotate-circle-right {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    background: #ddd;
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    background: #ddd;
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    background: #ddd;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    background: #ddd;
  }
}

@keyframes rotate-circle-right {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    background: #ddd;
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    background: #ddd;
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    background: #ddd;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    background: #ddd;
  }
}

@-webkit-keyframes rotate-circle-left {
  0% {
    z-index: 4;
    left: 50%;
    background: #503e2d;
  }
  100% {
    background: #503e2d;
    z-index: 4;
    left: 50%;
  }
}

@keyframes rotate-circle-left {
  0% {
    z-index: 4;
    left: 50%;
    background: #503e2d;
  }
  100% {
    background: #503e2d;
    z-index: 4;
    left: 50%;
  }
}

@-webkit-keyframes rotate-circle-left2 {
  0% {
    z-index: 4;
    left: 50%;
    background: #664f3e;
  }
  100% {
    background: #664f3e;
    z-index: 4;
    left: 50%;
  }
}

@keyframes rotate-circle-left2 {
  0% {
    z-index: 4;
    left: 50%;
    background: #664f3e;
  }
  100% {
    background: #664f3e;
    z-index: 4;
    left: 50%;
  }
}

@-webkit-keyframes rotate-circle-left3 {
  0% {
    z-index: 4;
    left: 50%;
    background: #cbe6df;
  }
  100% {
    background: #cbe6df;
    z-index: 4;
    left: 50%;
  }
}

@keyframes rotate-circle-left3 {
  0% {
    z-index: 4;
    left: 50%;
    background: #cbe6df;
  }
  100% {
    background: #cbe6df;
    z-index: 4;
    left: 50%;
  }
}

/* page-title
----------------------------------*/
@media all and (max-width: 1200px) {
  .topbox #l-header .inner #logo {
    margin: 0 auto;
    left: 0px;
  }
}

.page-titleBox {
  padding: 200px 0px 0px;
  position: relative;
}

.page-titleBox:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 90%;
  top: 0;
  left: 0;
  background-color: #bfa888;
}

.page-titleBox .mainContents__subtitle .eng:before, .page-titleBox .mainContents__subtitle .eng:after {
  display: none;
}

.page-title {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0px auto 0;
  border-radius: 0 0;
}

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

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

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

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

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

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

.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0.2;
}

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

.page-title .inner .page-lead {
  color: #fefefe;
  text-align: center;
  position: relative;
  margin: 0 auto;
  -webkit-animation: page-leadanime 1s ease-out 1.5s forwards;
          animation: page-leadanime 1s ease-out 1.5s forwards;
  opacity: 0;
}

.page-title .inner .page-lead .eng {
  display: block;
  font-family: "Yomogi", cursive;
  font-weight: 300;
  font-size: 2rem;
}

.page-title .inner .page-lead .ja {
  color: #fff;
  font-size: 1.5rem;
}

@media all and (max-width: 639px) {
  .page-title .inner .page-lead {
    font-size: 1.3rem;
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
  }
  .page-title .inner .page-lead .eng {
    font-size: 1.5rem;
  }
}

@media all and (max-width: 1680px) {
  .page-title {
    margin: 0px auto 0px;
  }
}

@media all and (max-width: 1200px) {
  .page-title {
    margin: 0px auto 0px;
  }
}

@media all and (max-width: 896px) {
  .page-title {
    margin: 0px auto 0px;
  }
  .page-title .inner {
    padding: 120px 0;
  }
}

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

@keyframes page-leadanime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

.blogbox {
  max-width: 1200px;
  margin: -20px auto 0;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 50px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blogbox .blogbox__title {
  font-family: "Zen Kaku Gothic Antique", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  padding-left: 20px;
  position: relative;
  margin-bottom: 50px;
}

.blogbox .blogbox__title:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 80%;
  top: 10%;
  left: 0;
  background-color: #333;
}

.blogbox .blogbox__main {
  width: 75%;
  margin-right: 5%;
}

.blogbox .blogbox__main__txt {
  background-color: #fff;
  padding: 25px 20px;
}

.blogbox .blogbox__side {
  position: -webkit-sticky;
  position: sticky;
  right: 0;
  top: 0;
  width: 20%;
}

@media all and (max-width: 896px) {
  .blogbox {
    padding: 30px 15px;
  }
  .blogbox .blogbox__main {
    width: 100%;
    margin-right: auto;
    margin: 0 auto;
  }
  .blogbox .blogbox__main__txt {
    background-color: #fff;
    padding: 25px 20px;
  }
  .blogbox .blogbox__side {
    width: 100%;
  }
}

@media all and (max-width: 639px) {
  .blogbox .blogbox__title {
    font-size: 1.4rem;
    padding-left: 14px;
    margin-bottom: 30px;
  }
}

@media all and (max-width: 639px) {
  .pageBlog {
    padding-top: 50px;
  }
}

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

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

.blog-wrap > li {
  width: 31%;
  margin: 0 1% 20px;
  position: relative;
  -webkit-box-shadow: 0 0 10px rgba(21, 21, 21, 0.06);
          box-shadow: 0 0 10px rgba(21, 21, 21, 0.06);
  overflow: hidden;
  background-color: #fff;
}

.blog-wrap > li a {
  position: relative;
  z-index: 1;
}

.blog-wrap > li a:before {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  background-color: #503e2d;
  -webkit-transform: skew(-48deg) translateX(43px);
          transform: skew(-48deg) translateX(43px);
  bottom: 0;
  right: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.blog-wrap > li a:after {
  position: absolute;
  content: "";
  bottom: 10px;
  right: 24px;
  color: #503e2d;
  font-size: 12px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.blog-wrap > li a:hover ~ .blog-img img {
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.blog-wrap > li a:hover:before {
  width: 24px;
  height: 80px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.blog-wrap > li a:hover:after {
  right: 9px;
  color: #fff;
}

@media all and (max-width: 1200px) {
  .blog-wrap {
    margin: 20px auto 0;
  }
  .blog-wrap li {
    width: 48%;
    margin: 0 1% 20px;
  }
}

@media all and (max-width: 639px) {
  .blog-wrap li .blog-date {
    font-size: 12px;
  }
  .blog-wrap li .blog-img {
    height: 90px;
  }
  .blog-wrap li .blog-detail {
    padding: 20px 15px 20px;
  }
}

.blog-img {
  width: 100%;
  margin: 0 auto 0 0;
  height: 150px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.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 {
  width: 100%;
  margin: -10px auto 0;
  padding: 40px 25px 30px;
  font-size: 1.4rem;
  background-color: white;
  position: relative;
}

.blog-cat {
  display: none;
}

.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 {
  text-align: center;
  font-size: 2rem;
  font-family: "Yomogi", cursive;
  font-weight: 300;
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 3;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #da9d60;
  color: #fff;
  line-height: 1;
  padding: 4px 20px;
}

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

.blog-txt {
  line-height: 1.5;
  color: #333;
  font-size: 1.4rem;
  padding-top: 10px;
  font-weight: bold;
}

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

.pages {
  text-align: center;
  margin-top: 30px;
}

.pages .page_next,
.pages .page_prev {
  display: inline-block;
  margin: 0 20px;
}

.pages .page_next a,
.pages .page_prev a {
  color: #503e2d;
  padding: 4px 5px;
  background: #fff;
  font-size: 12px;
}

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

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

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

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

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

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

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

@media all and (max-width: 639px) {
  .blog-month ul li:nth-child(2n) {
    margin-left: 20px;
  }
}

.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}

.blog-month ul li a {
  color: #fff;
  font-size: 12px;
}

.blog-month ul li a:hover {
  color: #503e2d;
}

#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#a07,
#a08,
#a09,
#a10,
#a11,
#a12 {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  padding: 20px 30px;
  z-index: 101;
  margin: 0px auto 0px;
  font-size: 1.2rem;
  text-align: center;
}

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

.breadcrumb li a {
  color: #503e2d;
}

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

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

@media all and (max-width: 639px) {
  .breadcrumb {
    font-size: 10px;
    left: 20px;
    padding: 8px 20px;
  }
}

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

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

.form dl dt span {
  color: #604C3F;
  background: #CBEFE4;
  padding: 4px 8px;
  margin-right: 5px;
  font-size: 12px;
  position: relative;
  top: -2px;
  border-radius: 50px;
}

.form dl dt span.nini {
  background: #ebc85f;
  color: #604C3F;
}

.form dl dd {
  padding-left: 280px;
  padding-bottom: 10px;
  padding-top: 13px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
}

.form dl dd.type1 p {
  display: inline;
}

.form dl dd.type1 .w20 {
  width: 20%;
}

@media all and (max-width: 896px) {
  .form dl dd.type1 .w20 {
    width: 30%;
  }
}

.form dl dd.type1 .w30 {
  width: 30%;
}

@media all and (max-width: 639px) {
  .form dl dd.type1.type1-name .w30 {
    width: 48%;
  }
}

.form dl dd.type1 .w60 {
  width: 60%;
}

.form dl dd:last-child {
  border-bottom: none;
}

.form .textarea,
.form textarea {
  border: 0;
  padding: 12px 15px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  background: #f3f3f3;
}

.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
  background: #f9fcff;
  -webkit-box-shadow: 0 8px 8px rgba(165, 165, 165, 0.4);
          box-shadow: 0 8px 8px rgba(165, 165, 165, 0.4);
}

.form .textarea02:last-child {
  margin-right: 0;
}

.form .textarea03 {
  width: 20%;
  margin-right: 1%;
}

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

.form .textarea04 {
  width: 70%;
  margin-right: 0;
}

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

.form .textarea05 {
  margin-top: 5px;
  max-height: 30px;
  font-size: 1.2rem;
  background: #f3f3f3;
  border-radius: 0;
  -webkit-appearance: none;
  border: 0;
  padding: 8px 15px;
  width: 100%;
}

.form .textarea05 input[placeholder] {
  font-size: 1.2rem;
}

.form .mintxt {
  font-size: 12px;
  margin-top: 5px;
}

.form .mintxt.t-m10 {
  margin-top: 10px;
}

.form .mintxt.b-m10 {
  font-size: 1.4rem;
  margin-top: 0px;
  margin-bottom: 5px;
}

@media all and (max-width: 639px) {
  .form .mintxt {
    font-size: 10px;
  }
  .form .mintxt.b-m10 {
    font-size: 12px;
    margin-top: 0px;
    margin-bottom: 5px;
  }
}

.form .select_arrow {
  position: relative;
}

.form .select_arrow::before {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 10.5px solid #503e2d;
  content: "";
  position: absolute;
  right: 9px;
  top: 42px;
  width: 0;
}

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

.form .secect-num {
  border: 0;
  padding: 10px 35px 10px 15px;
  background: #f5f5f5;
  position: relative;
}

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

.form .checkbox-wrap {
  position: relative;
}

.form .checkbox-wrap label {
  font-size: 14px;
  vertical-align: middle;
  height: 23px;
  margin-right: 15px;
  position: relative;
  display: block;
}

.form .checkbox-wrap input[type="checkbox"] {
  margin-right: 5px;
  vertical-align: middle;
  height: 20px;
  display: inline-block;
}

.form .checkbox-wrap input[type="checkbox"]:before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  left: 2px;
  top: 2px;
  background-color: #fff;
}

.form .checkbox-wrap input[type="checkbox"]:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid #23a37d;
  background: #fff;
  left: 0;
  top: 0;
  position: absolute;
  -webkit-transition: all 0.12s, border-color 0.08s;
  transition: all 0.12s, border-color 0.08s;
  z-index: 1;
}

.form .checkbox-wrap input[type="checkbox"]:checked:after {
  width: 9px;
  height: 14px;
  top: 0px;
  left: 0px;
  margin-left: 5px;
  margin-right: 4px;
  border-radius: 0;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

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

.form .form__flex .form__flex__box {
  width: 48%;
  margin: 0 1%;
}

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

@media all and (max-width: 639px) {
  .form label.radio_text {
    font-size: 10px;
  }
}

.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: #503e2d;
  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;
  font-size: 1.4rem;
}

@media all and (max-width: 639px) {
  .form label.checkbox_text {
    font-size: 10px;
  }
}

.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 #503e2d;
  border-bottom: 3px solid #503e2d;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}

.form input[type="text"],
.form textarea {
  font-size: 14px;
}

@media all and (max-width: 639px) {
  .form input[type="text"],
  .form textarea {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    margin-left: -5px;
  }
}

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: none;
  background-color: transparent;
  margin: 40px auto 0;
  text-align: center;
}

button .btn__inner {
  margin: 0 auto;
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 1;
  font-size: 1.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #503e2d;
  border-radius: 100px;
  padding: 10px 30px;
  -webkit-box-shadow: 0 0 10px rgba(21, 21, 21, 0.06);
          box-shadow: 0 0 10px rgba(21, 21, 21, 0.06);
}

button .btn__inner .btn__txt {
  width: calc(100% - 130px);
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  color: #fff;
  position: relative;
  padding: 0 20px 0px 40px;
  margin-right: 20px;
}

button .btn__inner:hover {
  color: #333;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

button .btn__inner:hover .circle:before {
  -webkit-animation: rotate-circle-left 0.5s linear 0.5s forwards;
          animation: rotate-circle-left 0.5s linear 0.5s forwards;
}

button .btn__inner:hover .circle:after {
  -webkit-animation: rotate-circle-right 1s linear forwards;
          animation: rotate-circle-right 1s linear forwards;
}

button .btn__inner:hover .circle.type--brown:before {
  -webkit-animation: rotate-circle-left2 0.5s linear 0.5s forwards;
          animation: rotate-circle-left2 0.5s linear 0.5s forwards;
}

button .btn__inner:hover .circle.type--blue:before {
  -webkit-animation: rotate-circle-left3 0.5s linear 0.5s forwards;
          animation: rotate-circle-left3 0.5s linear 0.5s forwards;
}

@media all and (max-width: 896px) {
  button .btn__inner .btn__txt {
    font-size: 1.5rem;
  }
}

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

#ui-datepicker-div {
  z-index: 3 !important;
}

.fm-txt {
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 5px;
}

.thanks {
  padding: 40px;
  background-color: rgba(80, 62, 45, 0.1);
  max-width: 700px;
  margin: 0 auto;
}

@media all and (max-width: 639px) {
  .thanks {
    max-width: 100%;
    padding: 30px 20px;
  }
  .thanks p.t-m50 {
    margin-top: 0;
  }
  .thanks p.b-m50 {
    margin-bottom: 20px;
  }
  .thanks p.tcenter.sp-left {
    text-align: left;
  }
}

.policy {
  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
  max-width: 1200px;
  margin: 20px auto 0;
}

.mtitle_small {
  position: relative;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #604C3F;
  font-weight: 600;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

.mtitle_small:before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #503e2d;
  position: absolute;
  left: 0;
  bottom: -1px;
}

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

.mtitle_small2 {
  position: relative;
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #604C3F;
  font-weight: 600;
  padding: 10px 10px 10px 20px;
}

.mtitle_small2:before {
  content: "";
  background-color: #fff;
  width: 3px;
  height: 40%;
  position: absolute;
  top: 30%;
  left: 0;
}

.mtitle_small2:after {
  content: "";
  background-color: #838383;
  width: 3px;
  height: 40%;
  position: absolute;
  top: 30%;
  left: 2px;
}

/* gallery(photobox)
----------------------------------*/
.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery li {
  width: 24%;
  margin: 0 calc(1% + (1% / 3)) 25px 0;
}

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

.gallery li a {
  background: rgba(241, 235, 221, 0.2);
  display: block;
  text-align: center;
  padding: 0px;
  height: 200px;
}

.gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}

.gallery li p {
  font-size: 14px;
  margin: 3px 0 10px;
  font-family: "Zen Kaku Gothic Antique", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-weight: bold;
  padding-left: 20px;
  position: relative;
}

.gallery li p:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 4px;
  left: 2px;
  top: 12px;
  background-color: #503e2d;
  opacity: 0.5;
}

@media all and (max-width: 896px) {
  .gallery li {
    width: 48%;
    margin: 0 1% 20px;
  }
  .gallery li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery li a {
    height: 120px;
  }
  .gallery li p {
    font-size: 12px;
  }
}

/* common content
----------------------------------*/
.mainContents {
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.mainContents:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-all.jpg) repeat;
  background-size: 1000px 600px;
  z-index: -1;
}

.mainContents .mainContents__inner {
  padding: 100px 0px 100px;
  width: 60%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mainContents .mainContents__txt {
  font-size: 1.6rem;
  font-family: "Hina Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
}

.mainContents .mainContents__bgtxt {
  background-color: #fafafa;
  padding: 20px 30px;
  margin: 40px auto 0;
  font-family: "Hina Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
}

@media all and (max-width: 1680px) {
  .mainContents .mainContents__inner {
    width: 80%;
  }
}

@media all and (max-width: 896px) {
  .mainContents .mainContents__inner {
    width: 90%;
  }
  .mainContents .mainContents__txt {
    font-size: 1.4rem;
  }
}

@media all and (max-width: 639px) {
  .mainContents .mainContents__inner {
    padding: 50px 0px;
  }
}

.mainContents__title {
  margin-bottom: 40px;
}

.mainContents__title .eng {
  font-family: "Yomogi", cursive;
  font-weight: 300;
  color: #969696;
  font-size: 2rem;
  text-align: center;
  line-height: 1;
  position: relative;
}

.mainContents__title .ja {
  font-size: 2.4rem;
  line-height: 1.4;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 30px 15px;
  color: #503e2d;
  font-family: "Zen Kaku Gothic Antique", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-weight: bold;
  line-height: 1.4;
  font-weight: bold;
  background-image: linear-gradient(to right, #725748, #725748 7px, transparent 4px);
  background-size: 10px 4px;
  background-position: left bottom 0px;
  background-repeat: repeat-x;
}

.mainContents__title .ja.type--blue {
  background-image: linear-gradient(to right, #69a6c9, #69a6c9 7px, transparent 4px);
}

.mainContents__title.title--center {
  text-align: center;
}

@media all and (max-width: 1200px) {
  .mainContents__title .eng {
    font-size: 1.8rem;
  }
  .mainContents__title .ja {
    font-size: 2.2rem;
  }
}

@media all and (max-width: 896px) {
  .mainContents__title .eng {
    font-size: 1.6rem;
  }
  .mainContents__title .ja {
    font-size: 2rem;
  }
}

@media all and (max-width: 639px) {
  .mainContents__title {
    margin-bottom: 20px;
  }
  .mainContents__title .eng {
    font-size: 1.4rem;
  }
  .mainContents__title .ja {
    font-size: 1.4rem;
  }
  .mainContents__title.title--min {
    margin-bottom: 30px;
  }
  .mainContents__title.title--min .ja {
    font-size: 14px;
    padding: 0 20px 10px;
  }
}

.mainContents__subtitle {
  font-size: 3rem;
  color: #604C3F;
  letter-spacing: 2px;
  margin: 0 auto;
  font-family: "Zen Kaku Gothic Antique", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.mainContents__subtitle .eng {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 auto 10px;
  font-family: "Yomogi", cursive;
  font-weight: 300;
  font-weight: bold;
  position: relative;
}

.mainContents__subtitle .eng:before {
  position: absolute;
  content: "";
  width: 100px;
  height: 70px;
  top: -40px;
  left: -60px;
  background: url(../img/title-arch.png) no-repeat;
  background-size: cover;
}

.mainContents__subtitle .eng:after {
  position: absolute;
  content: "";
  width: 100px;
  height: 70px;
  top: -40px;
  right: -60px;
  background: url(../img/title-arch.png) no-repeat;
  background-size: cover;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.mainContents__subtitle .ja {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 55px;
  background-color: #fff;
  display: block;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  line-height: 1.7;
}

.mainContents__subtitle .ja.type1 {
  color: #fff;
  background-color: #619034;
}

.mainContents__subtitle .ja.type1:before {
  background: url(../img/title-frame.png) repeat-y;
  background-size: 10px 46px;
}

.mainContents__subtitle .ja.type1:after {
  background: url(../img/title-frame.png) repeat-y;
  background-size: 10px 46px;
}

.mainContents__subtitle .ja.type2 {
  color: #fff;
  background-color: #73c0c3;
}

.mainContents__subtitle .ja.type2:before {
  background: url(../img/title-frame2.png) repeat-y;
  background-size: 10px 46px;
}

.mainContents__subtitle .ja.type2:after {
  background: url(../img/title-frame2.png) repeat-y;
  background-size: 10px 46px;
}

.mainContents__subtitle .ja.type3 {
  background-color: #ffffff;
}

.mainContents__subtitle .ja.type3:before {
  background: url(../img/title-frame3.png) repeat-y;
  background-size: 10px 46px;
}

.mainContents__subtitle .ja.type3:after {
  background: url(../img/title-frame3.png) repeat-y;
  background-size: 10px 46px;
}

.mainContents__subtitle .ja.type4 {
  color: #fff;
  background-color: #d9a759;
}

.mainContents__subtitle .ja.type4:before {
  background: url(../img/title-frame4.png) repeat-y;
  background-size: 10px 46px;
}

.mainContents__subtitle .ja.type4:after {
  background: url(../img/title-frame4.png) repeat-y;
  background-size: 10px 46px;
}

.mainContents__subtitle .ja.type5 {
  color: #fff;
  background-color: #c8ad40;
}

.mainContents__subtitle .ja.type5:before {
  background: url(../img/title-frame5.png) repeat-y;
  background-size: 10px 46px;
}

.mainContents__subtitle .ja.type5:after {
  background: url(../img/title-frame5.png) repeat-y;
  background-size: 10px 46px;
}

.mainContents__subtitle .ja.type6 {
  color: #333;
  background-color: #eae9dc;
}

.mainContents__subtitle .ja.type6:before {
  background: url(../img/title-frame6.png) repeat-y;
  background-size: 10px 46px;
}

.mainContents__subtitle .ja.type6:after {
  background: url(../img/title-frame6.png) repeat-y;
  background-size: 10px 46px;
}

.mainContents__subtitle .ja:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 100%;
  top: 0;
  left: -10px;
  background: url(../img/title-frame.png) repeat-y;
  background-size: 10px 46px;
}

.mainContents__subtitle .ja:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 100%;
  top: 0;
  right: -10px;
  background: url(../img/title-frame.png) repeat-y;
  background-size: 10px 46px;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}

@media all and (max-width: 1200px) {
  .mainContents__subtitle {
    font-size: 2rem;
  }
  .mainContents__subtitle:before {
    width: 86px;
    height: 488px;
  }
  .mainContents__subtitle:after {
    width: 138px;
    height: 710px;
    bottom: -20px;
  }
  .mainContents__subtitle .greeting__frame:before {
    width: 408px;
    height: 342px;
  }
  .mainContents__subtitle .ja {
    height: 38px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

@media all and (max-width: 639px) {
  .mainContents__subtitle {
    font-size: 1.4rem;
  }
  .mainContents__subtitle .ja {
    height: 32px;
    padding: 0 10px;
    line-height: 1.8;
  }
}

@-webkit-keyframes bound2 {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 1;
  }
  38% {
    -webkit-transform: translateY(0px) scaleY(1);
            transform: translateY(0px) scaleY(1);
  }
  50% {
    -webkit-transform: translateY(0px) scaleY(0.5);
            transform: translateY(0px) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(0px) scaleY(1);
            transform: translateY(0px) scaleY(1);
  }
  100% {
    -webkit-transform: translateY(0px) scaleY(1);
            transform: translateY(0px) scaleY(1);
    opacity: 1;
  }
}

@keyframes bound2 {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 1;
  }
  38% {
    -webkit-transform: translateY(0px) scaleY(1);
            transform: translateY(0px) scaleY(1);
  }
  50% {
    -webkit-transform: translateY(0px) scaleY(0.5);
            transform: translateY(0px) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(0px) scaleY(1);
            transform: translateY(0px) scaleY(1);
  }
  100% {
    -webkit-transform: translateY(0px) scaleY(1);
            transform: translateY(0px) scaleY(1);
    opacity: 1;
  }
}

.mainContents--page {
  margin-top: 50px;
}

.mainContents--page.mainContents:before {
  display: none;
}

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

.mainContents--bgpattern {
  position: relative;
  z-index: 1;
}

.mainContents--bgpattern:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-pattern.png) repeat;
  background-size: 442px 346px;
  z-index: -1;
}

.mainContents--bgpattern.bg-white {
  background-color: #fff;
}

.mainContents--bgkuma {
  position: relative;
  z-index: 1;
  background-color: #fff;
}

.mainContents--bgkuma:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/kuma-bg.png) repeat;
  background-size: 120px 60px;
  z-index: -1;
  opacity: 0.2;
}

.mainContents--bgkusa {
  position: relative;
  z-index: 1;
}

.mainContents--bgkusa:before {
  position: absolute;
  content: "";
  width: 394px;
  height: 100%;
  top: 10%;
  left: 0;
  background: url(../img/bg-kusa.png) repeat-y;
  background-size: 394px 1334px;
  z-index: -1;
  opacity: 0.4;
}

.mainContents--bgkusa:after {
  position: absolute;
  content: "";
  width: 394px;
  height: 100%;
  top: 2%;
  right: 0;
  background: url(../img/bg-kusa.png) repeat-y;
  background-size: 394px 1334px;
  z-index: -1;
  opacity: 0.4;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.mainContents--bgkumo {
  position: relative;
  z-index: 1;
}

.mainContents--bgkumo:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-kumo.png) repeat-y;
  background-size: 100% 605px;
  z-index: -1;
  opacity: 0.6;
}

.mainContents--bggaray {
  background-color: #f8f8f8;
}

.mainContents--basecolor {
  background-color: rgba(80, 62, 45, 0.2);
}

.mainContents--subcolor {
  background-color: rgba(203, 230, 223, 0.2);
}

.mainContents--subcolor2 {
  background-color: rgba(102, 79, 62, 0.2);
}

.mainContents--subcolor3 {
  background-color: #efeadf;
}

/* top content
----------------------------------*/
.greeting {
  position: relative;
  z-index: 1;
  font-family: "Zen Kaku Gothic Antique", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}

.greeting:before {
  position: absolute;
  content: "";
  width: 118px;
  height: 668px;
  top: 50px;
  left: 0;
  background: url(../img/kusa-big01.png) no-repeat;
  background-size: cover;
}

.greeting:after {
  position: absolute;
  content: "";
  width: 168px;
  height: 799px;
  bottom: -50px;
  right: 0;
  background: url(../img/kusa-big02.png) no-repeat;
  background-size: cover;
}

.greeting .greeting__frame {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.greeting .greeting__frame:before {
  position: absolute;
  content: "";
  width: 758px;
  height: 592px;
  top: -10%;
  right: 0;
  background: url(../img/frame01.png) no-repeat;
  background-size: cover;
  z-index: 1;
}

.greeting .greeting__frame:after {
  position: absolute;
  content: "";
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 66px;
  background: url(../img/kusa-line.png) no-repeat;
  background-size: cover;
  z-index: 1;
}

.greeting .greeting__kusa {
  position: absolute;
  bottom: 0;
  left: 0;
}

.greeting .mainContents__subtitle {
  margin: 0 auto 50px 50px;
}

.greeting .mainContents__subtitle p {
  margin: 0 auto 15px 0;
}

@media all and (max-width: 1200px) {
  .greeting:before {
    width: 86px;
    height: 488px;
  }
  .greeting:after {
    width: 138px;
    height: 710px;
    bottom: -20px;
  }
  .greeting .greeting__frame:before {
    width: 408px;
    height: 342px;
  }
  .greeting .mainContents__subtitle {
    font-size: 2rem;
  }
  .greeting .mainContents__subtitle p {
    height: 38px;
    margin: 0 auto 10px 0;
    padding: 0 20px;
  }
}

@media all and (max-width: 639px) {
  .greeting:before {
    width: 46px;
    height: 268px;
  }
  .greeting:after {
    width: 58px;
    height: 310px;
    bottom: 10px;
  }
  .greeting .greeting__frame:before {
    width: 158px;
    height: 102px;
    top: 0;
    right: -40px;
  }
  .greeting .greeting__kusa {
    width: 80px;
  }
  .greeting .mainContents__subtitle {
    font-size: 1.4rem;
    margin: 0 auto 30px 40px;
  }
  .greeting .mainContents__subtitle p {
    height: 32px;
    margin: 0 auto 10px 0;
    padding: 0 10px;
  }
}

.greeting__mainBox {
  position: relative;
  max-width: 900px;
  margin: 50px auto;
  z-index: 1;
}

.greeting__mainBox:before {
  position: absolute;
  content: "";
  width: 120%;
  height: 95%;
  right: -60%;
  top: 100px;
  background-color: #fff;
  opacity: 0.5;
  z-index: -1;
}

.greeting__mainBox .mainBox__photoarea {
  position: relative;
  margin: 0px auto;
}

.greeting__mainBox .mainBox__illust {
  position: absolute;
  top: -80px;
  left: -108px;
  width: 200px;
}

.greeting__mainBox .mainBox__illust2 {
  position: absolute;
  bottom: -90px;
  right: -100px;
  width: 220px;
}

.greeting__mainBox .mainBox__illust3 {
  position: absolute;
  bottom: -200px;
  right: -230px;
  width: 90px;
}

.greeting__mainBox .mainBox__subtitle {
  position: absolute;
  top: 50px;
  right: -35px;
  background-color: #fff;
  color: #604C3F;
  padding: 30px 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  font-size: 3rem;
  font-family: "Zen Kaku Gothic Antique", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-weight: bold;
}

@media all and (max-width: 1200px) {
  .greeting__mainBox .mainBox__title {
    font-size: 2rem;
  }
  .greeting__mainBox .mainBox__title p {
    height: 38px;
    margin: 0 auto 10px 0;
    padding: 0 20px;
  }
  .greeting__mainBox .mainBox__photoarea {
    width: 70%;
  }
  .greeting__mainBox .mainBox__illust {
    top: -20px;
    left: -108px;
    width: 150px;
  }
  .greeting__mainBox .mainBox__illust2 {
    right: -80px;
    width: 140px;
  }
  .greeting__mainBox .mainBox__illust3 {
    bottom: -150px;
    right: -230px;
    width: 80px;
  }
  .greeting__mainBox .mainBox__subtitle {
    top: 50px;
    right: -22px;
    padding: 20px 6px;
    font-size: 2rem;
  }
}

@media all and (max-width: 896px) {
  .greeting__mainBox .mainBox__illust {
    bottom: -160px;
    right: -150px;
    width: 60px;
  }
}

@media all and (max-width: 639px) {
  .greeting__mainBox .mainBox__title {
    font-size: 1.4rem;
    margin: 0 auto 30px 40px;
  }
  .greeting__mainBox .mainBox__title p {
    height: 32px;
    margin: 0 auto 10px 0;
    padding: 0 10px;
  }
  .greeting__mainBox .mainBox__photoarea {
    width: 80%;
  }
  .greeting__mainBox .mainBox__subtitle {
    top: -10px;
    right: -22px;
    padding: 20px 6px;
    font-size: 1.4rem;
  }
  .greeting__mainBox .mainBox__illust {
    bottom: -30px;
    left: -30px;
    width: 70px;
    top: auto;
  }
  .greeting__mainBox .mainBox__illust2 {
    right: -40px;
    width: 80px;
    bottom: -60px;
  }
  .greeting__mainBox .mainBox__illust3 {
    bottom: -100px;
    right: 50px;
    width: 40px;
  }
}

.greeting__box {
  max-width: 820px;
  margin: 120px auto 100px;
  font-weight: bold;
  line-height: 2;
  text-align: center;
  color: #503e2d;
  font-size: 2rem;
}

@media all and (max-width: 1200px) {
  .greeting__box {
    font-size: 1.6rem;
  }
}

@media all and (max-width: 896px) {
  .greeting__box {
    margin: 120px auto 70px;
  }
}

@media all and (max-width: 639px) {
  .greeting__box {
    font-size: 1.2rem;
    text-align: left;
    margin: 120px auto 160px;
  }
}

.greeting__detailBox {
  margin: 0 0 0 auto;
  font-weight: bold;
  line-height: 2;
  color: #503e2d;
  position: relative;
}

.greeting__detailBox:before {
  position: absolute;
  content: "";
  width: 110%;
  height: 150%;
  left: -40%;
  top: 38%;
  background-color: #ffff;
  z-index: -1;
}

.greeting__detailBox .detailBox__inner {
  max-width: 600px;
  margin: 0 0 0 auto;
}

.greeting__detailBox .detailBox__illust {
  position: absolute;
  left: -40%;
  top: -60%;
  z-index: -1;
}

.greeting__detailBox .detailBox__risu {
  position: absolute;
  left: 20%;
  top: 18%;
  width: 200px;
}

@media all and (max-width: 1200px) {
  .greeting__detailBox {
    font-size: 1.6rem;
  }
  .greeting__detailBox .detailBox__inner {
    width: 56%;
    margin: 0 0 0 auto;
  }
  .greeting__detailBox .detailBox__illust {
    left: -30%;
    width: 620px;
    top: -60%;
  }
  .greeting__detailBox .detailBox__risu {
    left: 10%;
    top: 17%;
    width: 170px;
  }
}

@media all and (max-width: 896px) {
  .greeting__detailBox:before {
    width: 64%;
    height: 110%;
    left: -10%;
    top: 38%;
  }
  .greeting__detailBox .detailBox__illust {
    left: -30%;
    width: 500px;
    top: -50%;
  }
}

@media all and (max-width: 639px) {
  .greeting__detailBox {
    font-size: 1.2rem;
  }
  .greeting__detailBox .detailBox__inner {
    width: 100%;
    margin: 0 auto;
  }
  .greeting__detailBox .detailBox__illust {
    left: -8%;
    width: 80%;
    top: -46%;
  }
  .greeting__detailBox .detailBox__risu {
    left: auto;
    right: 6%;
    top: -24%;
    width: 70px;
  }
}

.greeting__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 100px auto;
}

.greeting__list li {
  width: 18%;
  margin: 0 2% auto 0;
  position: relative;
}

.greeting__list li:nth-child(2) .list__photo {
  border: 2px solid #da9d60;
}

.greeting__list li:nth-child(2) .list__txt {
  background-color: #da9d60;
}

.greeting__list li:nth-child(3) .list__photo {
  border: 2px solid #ebc85f;
}

.greeting__list li:nth-child(3) .list__txt {
  background-color: #ebc85f;
}

.greeting__list li:nth-child(4) .list__photo {
  border: 2px solid #8fcc96;
}

.greeting__list li:nth-child(4) .list__txt {
  background-color: #8fcc96;
}

.greeting__list li:nth-child(5) {
  margin: 0;
}

.greeting__list li:nth-child(5) .list__photo {
  border: 2px solid #82bbdf;
}

.greeting__list li:nth-child(5) .list__txt {
  background-color: #82bbdf;
}

.greeting__list .list__photo {
  position: relative;
  text-align: center;
  padding: 10px;
  border: 2px solid #e48585;
}

.greeting__list .list__txt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  text-align: center;
  background-color: #e48585;
  padding: 4px 20px;
  margin: -25px auto 0;
  position: relative;
  z-index: 2;
  font-weight: bold;
  color: #fff;
}

@media all and (max-width: 1200px) {
  .greeting__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 600px;
  }
  .greeting__list li {
    width: 31%;
    margin: 0 2% 30px 0;
  }
  .greeting__list li:nth-child(5) {
    margin: 0 2% 30px 0;
  }
  .greeting__list li:nth-child(3n) {
    margin: 0 0 30px 0;
  }
  .greeting__list .list__txt {
    font-size: 1.4rem;
  }
}

@media all and (max-width: 896px) {
  .greeting__list {
    margin: 50px auto 0;
  }
}

@media all and (max-width: 639px) {
  .greeting__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 90%;
  }
  .greeting__list li {
    width: 49%;
    margin: 0 2% 15px 0;
  }
  .greeting__list li:nth-child(5) {
    margin: 0 2% 15px 0;
  }
  .greeting__list li:nth-child(3n) {
    margin: 0 2% 15px 0;
  }
  .greeting__list li:nth-child(2n) {
    margin: 0 0 0;
  }
  .greeting__list .list__photo {
    position: relative;
    text-align: center;
    padding: 10px;
    border: 2px solid #e48585;
  }
  .greeting__list .list__txt {
    background-color: #e48585;
    padding: 2px 10px;
    margin: -25px auto 0;
    font-size: 12px;
  }
}

.topBlog {
  position: relative;
  margin: 0px auto;
  background-color: #efeadf;
  padding: 50px 0 0;
}

.topBlog .mainContents__inner {
  width: 60%;
}

.topBlog #blog--swiper {
  margin-top: 50px;
}

@media all and (max-width: 1680px) {
  .topBlog .mainContents__inner {
    width: 80%;
  }
}

@media all and (max-width: 896px) {
  .topBlog .mainContents__inner {
    width: 90%;
  }
}

@media all and (max-width: 639px) {
  .topBlog #blog--swiper {
    margin-top: 20px;
  }
}

.topBlog__list li {
  overflow: hidden;
}

.topBlog__list li a {
  position: relative;
  z-index: 1;
}

.topBlog__list li a:before {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  background-color: #503e2d;
  -webkit-transform: skew(-48deg) translateX(43px);
          transform: skew(-48deg) translateX(43px);
  bottom: 0;
  right: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.topBlog__list li a:after {
  position: absolute;
  content: "";
  bottom: 10px;
  right: 24px;
  color: #503e2d;
  font-size: 12px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.topBlog__list li a:hover ~ .blog-img img {
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.topBlog__list li a:hover:before {
  width: 24px;
  height: 80px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.topBlog__list li a:hover:after {
  right: 9px;
  color: #fff;
}

@media all and (max-width: 896px) {
  .topBlog__list .blog-img {
    height: 150px;
  }
}

@media all and (max-width: 639px) {
  .topBlog__list .blog-date {
    font-size: 12px;
    border-left: none;
    right: 4px;
  }
  .topBlog__list .blog-img {
    width: 100%;
    height: 80px;
  }
  .topBlog__list .blog-detail {
    width: 100%;
    padding: 20px 15px 20px;
  }
}

.point {
  position: relative;
  margin: 0 auto;
  padding: 50px 0 0;
  background-color: rgba(184, 206, 220, 0.4);
}

.point .mainContents__subtitle {
  z-index: 2;
  position: relative;
}

.point .point__kuma {
  position: absolute;
  top: -160px;
  left: 0;
  z-index: 1;
  width: 280px;
}

@media all and (max-width: 639px) {
  .point {
    padding: 50px 0;
  }
  .point .point__kuma {
    top: -90px;
    left: 0;
    z-index: 1;
    width: 120px;
  }
}

.point__list {
  margin: -20px auto 0;
  position: relative;
  z-index: 1;
}

.point__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto 40px;
  padding: 50px;
  background-color: #eae9dc;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.point__list li:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 100%;
  top: 0;
  left: -10px;
  background: url(../img/title-frame6.png) repeat-y;
  background-size: 10px 46px;
}

.point__list li:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 100%;
  top: 0;
  right: -10px;
  background: url(../img/title-frame6.png) repeat-y;
  background-size: 10px 46px;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}

.point__list li:nth-child(2n) .list__txtarea {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 0 4% 0 0;
}

.point__list li:nth-child(2n) .list__photo {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  padding: 0 20px 0 0;
}

.point__list li:nth-child(2n) .list__photo__num {
  left: auto;
  right: -20px;
}

.point__list li:nth-child(2) .list__num {
  color: #da9d60;
}

.point__list li:nth-child(2) .list__title {
  background-image: linear-gradient(to right, #da9d60, #da9d60 7px, transparent 4px);
}

.point__list li:nth-child(3) .list__num {
  color: #8fcc96;
}

.point__list li:nth-child(3) .list__title {
  background-image: linear-gradient(to right, #8fcc96, #8fcc96 7px, transparent 4px);
}

.point__list li:nth-child(4) .list__num {
  color: #82bbdf;
}

.point__list li:nth-child(4) .list__title {
  background-image: linear-gradient(to right, #82bbdf, #82bbdf 7px, transparent 4px);
}

.point__list li:nth-child(5) {
  margin: 0 auto 0px;
}

.point__list li:nth-child(5) .list__num {
  color: #8c79e2;
}

.point__list li:nth-child(5) .list__title {
  background-image: linear-gradient(to right, #8c79e2, #8c79e2 7px, transparent 4px);
}

.point__list .list__photo {
  width: 48%;
  position: relative;
  padding: 0 0 0 20px;
}

.point__list .list__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.point__list .list__photo__num {
  position: absolute;
  left: -20px;
  top: 30px;
}

.point__list .list__txtarea {
  width: 48%;
  margin: 0 0 0 4%;
}

.point__list .list__num {
  position: relative;
  font-family: "Yomogi", cursive;
  font-weight: 300;
  font-size: 2rem;
  color: #e48585;
  font-weight: bold;
  margin-bottom: 10px;
}

.point__list .list__title {
  font-size: 2.6rem;
  line-height: 1.4;
  font-weight: bold;
  padding-bottom: 30px;
  background-image: linear-gradient(to right, #e48585, #e48585 7px, transparent 4px);
  background-size: 10px 4px;
  background-position: left bottom 0px;
  background-repeat: repeat-x;
}

.point__list .list__txt {
  margin-top: 40px;
}

@media all and (max-width: 1200px) {
  .point__list li {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .point__list .list__photo > img {
    height: 260px;
  }
  .point__list .list__photo__num {
    top: 15px;
  }
  .point__list .list__txt {
    margin-top: 20px;
  }
  .point__list .list__title {
    font-size: 2.2rem;
    padding-bottom: 20px;
  }
}

@media all and (max-width: 896px) {
  .point__list {
    margin: 40px auto 0;
  }
  .point__list li {
    padding: 30px 20px;
  }
}

@media all and (max-width: 639px) {
  .point__list {
    display: block;
    width: 90%;
    margin-top: 20px;
  }
  .point__list li {
    display: block;
    padding: 30px 15px;
    margin: 0 auto 10px;
  }
  .point__list li:nth-child(2n) .list__txtarea {
    margin: 0 auto;
  }
  .point__list li:nth-child(2n) .list__photo {
    padding: 0;
  }
  .point__list li:nth-child(2n) .list__photo__num {
    left: 0;
    right: 0;
  }
  .point__list .list__photo {
    width: 80%;
    margin: 10px auto 10px;
    padding: 0;
  }
  .point__list .list__photo > img {
    height: 120px;
  }
  .point__list .list__photo__num {
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -20px;
    width: 50px;
  }
  .point__list .list__txtarea {
    width: 100%;
    margin: 0 auto;
  }
  .point__list .list__txt {
    font-size: 12px;
    margin-top: 15px;
  }
  .point__list .list__num {
    font-size: 1.4rem;
    margin-bottom: 0;
    text-align: center;
  }
  .point__list .list__title {
    font-size: 1.5rem;
    padding-bottom: 15px;
    text-align: center;
  }
}

.order {
  padding: 100px 0 50px;
  background-color: #fffce7;
}

.order .mainContents__inner {
  margin: 0px auto 50px;
  position: relative;
  background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 5px, rgba(255, 255, 255, 0.6) 5px, rgba(255, 255, 255, 0.6) 10px);
  padding: 50px;
  border: 2px dotted #8fcc96;
}

.order .order__box {
  position: relative;
  background-color: #06c052;
  padding: 50px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.order .box__txtarea {
  color: #fff;
  font-weight: bold;
}

.order .box__txtarea .txtarea__sub {
  font-size: 1.4rem;
}

.order .box__txtarea .txtarea__eng {
  text-shadow: 4px 4px #f0b30e, 0px 0px 0 #fff, 0px 0px 0 #fff, -1px 0px 0 #fff, 2px 2px 0 #fff;
  font-size: 4.5rem;
  color: #fff;
  font-family: "Yomogi", cursive;
  font-weight: 300;
  font-weight: bold;
}

.order .box__link {
  position: absolute;
  right: 25%;
  top: 30%;
  z-index: 1;
  width: 200px;
  height: 200px;
}

.order .box__link .box__inner {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.order .box__link:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: absolute;
  content: "";
  width: 200px;
  height: 200px;
  top: 0%;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #ebc85f;
  border-radius: 50%;
  z-index: -1;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.order .box__link:after {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: absolute;
  content: "";
  width: 200px;
  height: 200px;
  top: 0%;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 50%;
  z-index: -1;
}

.order .box__link .link__txt {
  text-align: center;
  font-family: "Yomogi", cursive;
  font-weight: 300;
  font-size: 2rem;
  font-weight: bold;
  margin: 0px auto 0;
}

.order .box__link a {
  display: block;
  margin: 5px auto 0;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}

.order .box__link:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.order .box__link:hover:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.order .box__link:hover:after {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

.order .box__link:hover a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.order .order__phone {
  width: 220px;
  margin: -140px 0 0 auto;
  position: absolute;
  right: 5%;
  z-index: 1;
}

.order .txtarea__sub {
  margin-top: 20px;
}

.order .subBox {
  position: relative;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 20px;
  margin: 30px auto 0;
}

.order .subBox .subBox__title {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #ffffff;
  padding: 4px 30px;
  border-radius: 50px;
  color: #333;
}

.order .subBox .subBox__txt {
  margin-top: 15px;
  font-size: 12px;
  color: #333;
}

@media all and (max-width: 1367px) {
  .order .order__box {
    position: relative;
    padding: 50px 50px;
    display: block;
    text-align: center;
  }
  .order .box__detail {
    position: relative;
    max-width: 600px;
    margin: 40px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .order .box__link {
    width: 200px;
    position: relative;
    right: 0;
    top: 0;
  }
  .order .order__phone {
    position: relative;
    right: 0;
    width: 220px;
    margin: 0 0 0 50px;
  }
}

@media all and (max-width: 896px) {
  .order .order__phone {
    width: 40%;
    margin: 50px 10% 0 auto;
  }
  .order .box__txtarea .txtarea__eng {
    line-height: 1.2;
    margin-bottom: 20px;
  }
}

@media all and (max-width: 639px) {
  .order {
    padding: 50px 0;
  }
  .order .mainContents__inner {
    padding: 10px;
  }
  .order .order__box {
    padding: 25px 15px;
    text-align: left;
  }
  .order .box__txtarea {
    color: #fff;
    font-weight: bold;
  }
  .order .box__txtarea .txtarea__main {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .order .box__txtarea .txtarea__sub {
    font-size: 1rem;
  }
  .order .box__txtarea .txtarea__eng {
    text-shadow: 3px 3px #f0b30e, 4px 4px 0 #fff, 4px 2px 0 #fff, 2px 4px 0 #fff, 2px 2px 0 #fff;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
  }
  .order .box__link {
    width: 150px;
    height: 150px;
  }
  .order .box__link:before {
    width: 150px;
    height: 150px;
  }
  .order .box__link:after {
    width: 150px;
    height: 150px;
  }
  .order .box__link a {
    font-size: 14px;
  }
  .order .box__link .link__txt {
    font-size: 12px;
  }
  .order .subBox .subBox__title {
    text-align: center;
    font-size: 14px;
  }
  .order .subBox .subBox__txt {
    margin-top: 45px;
    font-size: 12px;
  }
  .order .order__phone {
    width: calc(100% - 150px);
    margin: 0 0 0 -5px;
    max-width: 200px;
  }
}

.flow__box {
  width: 60%;
  margin: 0 auto;
}

.flow__box .mainContents__subtitle {
  margin-top: 100px;
}

@media all and (max-width: 1680px) {
  .flow__box {
    width: 80%;
  }
}

@media all and (max-width: 896px) {
  .flow__box {
    width: 90%;
  }
}

.flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 50px auto 0;
  position: relative;
}

.flow__list.type--blue:before {
  background-color: #ceeaf5;
}

.flow__list.type--blue.list--border .list__txtarea {
  border: 1px solid #82bbdf;
}

.flow__list.type--blue .list__num {
  background-color: #67bfe2;
}

.flow__list.type--blue .list__title {
  color: #67bfe2;
}

.flow__list:before {
  position: absolute;
  content: "";
  width: 0%;
  left: 10%;
  top: 30px;
  height: 14px;
  background-color: #eaea8f;
}

.flow__list.list--border .list__txtarea {
  border: 1px solid #8fcc96;
}

.flow__list li {
  width: 23%;
  margin: 0 2% 0 0;
  position: relative;
}

.flow__list .list__num {
  text-align: center;
  font-family: "Yomogi", cursive;
  font-weight: 300;
  color: #fff;
  font-weight: bold;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  position: relative;
  background-color: #06c052;
  border-radius: 50%;
}

.flow__list .list__num span {
  position: absolute;
  font-size: 3rem;
  width: 100%;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.flow__list .list__icon {
  position: relative;
  margin: 0 auto;
  text-align: center;
  width: 100px;
}

.flow__list .list__txtarea {
  background-color: #fff;
  padding: 20px;
  margin: 30px auto 0;
}

.flow__list .list__title {
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  font-size: 2rem;
  color: #0c7329;
}

@media all and (max-width: 639px) {
  .flow__list {
    display: block;
  }
  .flow__list:before {
    width: 12px;
    height: 0;
    left: 38px;
    top: 40px;
  }
  .flow__list li {
    width: 100%;
    margin: 0 auto 20px;
    position: relative;
    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;
  }
  .flow__list .list__num {
    width: 60px;
    height: 60px;
  }
  .flow__list .list__num span {
    font-size: 1.8rem;
  }
  .flow__list .list__txtarea {
    width: calc(100% - 100px);
    margin: 0 0 0 auto;
  }
  .flow__list .list__icon {
    width: 50px;
  }
  .flow__list .list__title {
    font-size: 1.4rem;
  }
  .flow__list .list__txt {
    font-size: 12px;
  }
  .flow__list.flow-anime .list__num {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .flow__list.flow-anime.flow-anime-on:before {
    -webkit-animation: flowanime-bg2 0.6s ease-out 0.6s forwards;
            animation: flowanime-bg2 0.6s ease-out 0.6s forwards;
  }
  .flow__list.flow-anime.flow-anime-on li:first-child .list__num {
    -webkit-animation: flowanimeon 0.2s ease-out 0s forwards;
            animation: flowanimeon 0.2s ease-out 0s forwards;
  }
  .flow__list.flow-anime.flow-anime-on li:nth-child(2) .list__num {
    -webkit-animation: flowanimeon 0.2s ease-out 0.1s forwards;
            animation: flowanimeon 0.2s ease-out 0.1s forwards;
  }
  .flow__list.flow-anime.flow-anime-on li:nth-child(3) .list__num {
    -webkit-animation: flowanimeon 0.2s ease-out 0.2s forwards;
            animation: flowanimeon 0.2s ease-out 0.2s forwards;
  }
  .flow__list.flow-anime.flow-anime-on li:nth-child(4) .list__num {
    -webkit-animation: flowanimeon 0.2s ease-out 0.3s forwards;
            animation: flowanimeon 0.2s ease-out 0.3s forwards;
  }
}

.flow__list.flow-anime .list__num {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.flow__list.flow-anime.flow-anime-on:before {
  -webkit-animation: flowanime-bg 1s ease-out 1s forwards;
          animation: flowanime-bg 1s ease-out 1s forwards;
}

.flow__list.flow-anime.flow-anime-on li:first-child .list__num {
  -webkit-animation: flowanimeon 0.4s ease-out 0.2s forwards;
          animation: flowanimeon 0.4s ease-out 0.2s forwards;
}

.flow__list.flow-anime.flow-anime-on li:nth-child(2) .list__num {
  -webkit-animation: flowanimeon 0.4s ease-out 0.4s forwards;
          animation: flowanimeon 0.4s ease-out 0.4s forwards;
}

.flow__list.flow-anime.flow-anime-on li:nth-child(3) .list__num {
  -webkit-animation: flowanimeon 0.4s ease-out 0.6s forwards;
          animation: flowanimeon 0.4s ease-out 0.6s forwards;
}

.flow__list.flow-anime.flow-anime-on li:nth-child(4) .list__num {
  -webkit-animation: flowanimeon 0.4s ease-out 0.8s forwards;
          animation: flowanimeon 0.4s ease-out 0.8s forwards;
}

@-webkit-keyframes flowanimeon {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes flowanimeon {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@-webkit-keyframes flowanime-bg {
  0% {
    width: 0;
  }
  100% {
    width: 78%;
  }
}

@keyframes flowanime-bg {
  0% {
    width: 0;
  }
  100% {
    width: 78%;
  }
}

@-webkit-keyframes flowanime-bg2 {
  0% {
    height: 0;
  }
  100% {
    height: 80%;
  }
}

@keyframes flowanime-bg2 {
  0% {
    height: 0;
  }
  100% {
    height: 80%;
  }
}

.photobook {
  position: relative;
  z-index: 1;
  padding: 50px 0;
}

.photobook:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/photo-bg.jpg) no-repeat;
  background-size: cover;
  z-index: -1;
}

.photobook .mainContents__inner {
  width: 50%;
  margin: 0 5% 0 auto;
  padding: 30px 0 0;
}

.photobook .photobook__txtarea {
  color: #fff;
  margin: 50px auto 0;
  text-align: center;
  -webkit-filter: drop-shadow(0 0 10px rgba(51, 51, 51, 0.5));
          filter: drop-shadow(0 0 10px rgba(51, 51, 51, 0.5));
}

.photobook .btn__subtxt {
  color: #fff;
  font-weight: bold;
  -webkit-filter: drop-shadow(0 0 10px rgba(51, 51, 51, 0.5));
          filter: drop-shadow(0 0 10px rgba(51, 51, 51, 0.5));
  text-align: center;
  margin-top: 10px;
}

@media all and (max-width: 1680px) {
  .photobook .mainContents__inner {
    width: 560px;
    margin: 0 50px 0 auto;
  }
}

@media all and (max-width: 1420px) {
  .photobook {
    padding: 100px 0;
  }
}

@media all and (max-width: 1200px) {
  .photobook .mainContents__inner {
    width: 560px;
    margin: 370px auto 0;
  }
}

@media all and (max-width: 896px) {
  .photobook .mainContents__inner {
    margin: 30% auto 0;
  }
}

@media all and (max-width: 639px) {
  .photobook {
    padding: 100px 0 50px;
  }
  .photobook .mainContents__inner {
    margin: 30% auto 0;
    width: 90%;
  }
  .photobook .photobook__txtarea {
    margin-top: 30px;
  }
}

.photoarea {
  position: absolute;
  top: 8%;
  left: 2%;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.photoarea .photoarea__line {
  position: absolute;
  top: -9%;
  left: -5%;
}

.photoarea .photoarea__line2 {
  display: none;
}

@media all and (max-width: 1420px) {
  .photoarea {
    width: calc(100% - 600px);
    margin: 0 auto 0 0;
  }
  .photoarea .photoarea__line2 {
    display: block;
    position: absolute;
    top: 31%;
    left: -15%;
  }
}

@media all and (max-width: 1367px) {
  .photoarea .photoarea__line {
    top: -5%;
  }
  .photoarea .photoarea__line2 {
    top: 33%;
  }
}

@media all and (max-width: 1200px) {
  .photoarea {
    width: 100%;
    margin: 0 auto 20px;
    top: 3%;
  }
  .photoarea .photoarea__line2 {
    display: none;
  }
}

.photoarea__list {
  position: absolute;
  top: 0px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.photoarea__list li {
  width: 18%;
  margin: 20% 2% 0 0;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.photoarea__list li:nth-child(2) {
  margin: 17.5% 0 0 0;
}

.photoarea__list li:nth-child(3) {
  margin: 14% 0 0 0;
}

.photoarea__list li:nth-child(4) {
  margin: 8% 0 0 0;
}

.photoarea__list li:nth-child(5) {
  margin: 0 0 0 0;
}

@media all and (max-width: 1420px) {
  .photoarea__list li {
    width: 31%;
    margin: 20% 2% 20px 0;
  }
  .photoarea__list li:nth-child(2) {
    margin: 15.5% 0 0 0;
  }
  .photoarea__list li:nth-child(3) {
    margin: 6% 0 0 0;
  }
  .photoarea__list li:nth-child(4) {
    margin: -3% 0 0 21%;
  }
  .photoarea__list li:nth-child(4) img {
    -webkit-transform: rotate(24deg);
            transform: rotate(24deg);
  }
  .photoarea__list li:nth-child(5) {
    margin: 4% 0 0 0;
  }
  .photoarea__list li:nth-child(5) img {
    -webkit-transform: rotate(24deg);
            transform: rotate(24deg);
  }
}

@media all and (max-width: 1200px) {
  .photoarea__list li {
    width: 18%;
    margin: 20% 2% 0 0;
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  .photoarea__list li:nth-child(2) {
    margin: 17.5% 0 0 0;
  }
  .photoarea__list li:nth-child(3) {
    margin: 14% 0 0 0;
  }
  .photoarea__list li:nth-child(4) {
    margin: 8% 0 0 0;
  }
  .photoarea__list li:nth-child(5) {
    margin: 0 0 0 0;
  }
}

.photoarea__list.photobook-anime.photobook-anime-on li {
  -webkit-animation: photoanimeon 0.6s ease-out 0.2s forwards;
          animation: photoanimeon 0.6s ease-out 0.2s forwards;
}

.photoarea__list.photobook-anime.photobook-anime-on li:nth-child(2) {
  -webkit-animation: photoanimeon 0.6s ease-out 0.4s forwards;
          animation: photoanimeon 0.6s ease-out 0.4s forwards;
}

.photoarea__list.photobook-anime.photobook-anime-on li:nth-child(3) {
  -webkit-animation: photoanimeon 0.6s ease-out 0.6s forwards;
          animation: photoanimeon 0.6s ease-out 0.6s forwards;
}

.photoarea__list.photobook-anime.photobook-anime-on li:nth-child(4) {
  -webkit-animation: photoanimeon 0.6s ease-out 0.8s forwards;
          animation: photoanimeon 0.6s ease-out 0.8s forwards;
}

.photoarea__list.photobook-anime.photobook-anime-on li:nth-child(5) {
  -webkit-animation: photoanimeon 0.6s ease-out 1s forwards;
          animation: photoanimeon 0.6s ease-out 1s forwards;
}

@-webkit-keyframes photoanimeon {
  0% {
    opacity: 1;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes photoanimeon {
  0% {
    opacity: 1;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.contents {
  position: relative;
  padding: 50px 0;
}

@media all and (max-width: 639px) {
  .contents {
    padding-bottom: 0;
  }
  .contents .mainContents__inner {
    padding-bottom: 0;
  }
}

.contents__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 100px auto 0;
}

.contents__list li {
  width: 23%;
  margin: 0 2% auto 0;
  position: relative;
  background-color: #65513d;
  padding: 20px 20px 20px;
}

.contents__list li:before {
  position: absolute;
  content: "";
  width: 100px;
  height: 80px;
  top: -50px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url(../img/contents--kuma.png) no-repeat;
  background-size: cover;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.contents__list li a {
  display: block;
  width: 100%;
  height: 100%;
}

.contents__list li .list__eng {
  font-family: "Yomogi", cursive;
  font-weight: 300;
  text-align: center;
  color: #fff;
}

.contents__list li .list__txt {
  text-align: center;
  color: #fff;
  font-size: 2rem;
}

.contents__list li .list__photo {
  margin: 20px auto;
  overflow: hidden;
  background-color: #333;
}

.contents__list li .list__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contents__list li .list__pad {
  position: relative;
}

.contents__list li .list__pad .pad__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;
  margin: 0 auto;
}

.contents__list li .list__pad .pad__box span {
  width: 31%;
  margin: 0 2% 0 0;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.4;
}

.contents__list li .list__pad .pad__box span:nth-child(2) {
  margin: -5px 2% 0 0;
}

.contents__list li .list__pad .pad__box span:nth-child(3) {
  margin: 0;
}

.contents__list li .list__pad .pad__main {
  display: block;
  width: 20px;
  height: 15px;
  border-radius: 50% 50% 40% 40%;
  background-color: #fff;
  margin: 0 auto;
  text-align: center;
  opacity: 0.4;
}

.contents__list li:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.contents__list li:hover:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  top: -56px;
}

.contents__list li:hover .list__pad .pad__box span:first-child {
  -webkit-transition: 0.2s linear 0.1s;
  transition: 0.2s linear 0.1s;
  opacity: 1;
}

.contents__list li:hover .list__pad .pad__box span:nth-child(2) {
  -webkit-transition: 0.2s linear 0.3s;
  transition: 0.2s linear 0.3s;
  opacity: 1;
}

.contents__list li:hover .list__pad .pad__box span:nth-child(3) {
  -webkit-transition: 0.2s linear 0.5s;
  transition: 0.2s linear 0.5s;
  opacity: 1;
}

.contents__list li:hover .list__pad .pad__main {
  opacity: 1;
  -webkit-transition: 0.2s linear 0s;
  transition: 0.2s linear 0s;
}

.contents__list li:hover .list__photo img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.6;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.contents__list li:hover:first-child .list__pad .pad__box span {
  background-color: #ff7373;
}

.contents__list li:hover:first-child .list__pad .pad__main {
  background-color: #ff7373;
}

.contents__list li:hover:nth-child(2) .list__pad .pad__box span {
  background-color: #ffd971;
}

.contents__list li:hover:nth-child(2) .list__pad .pad__main {
  background-color: #ffd971;
}

.contents__list li:hover:nth-child(3) .list__pad .pad__box span {
  background-color: #6cff82;
}

.contents__list li:hover:nth-child(3) .list__pad .pad__main {
  background-color: #6cff82;
}

.contents__list li:hover:nth-child(4) .list__pad .pad__box span {
  background-color: #88ffd9;
}

.contents__list li:hover:nth-child(4) .list__pad .pad__main {
  background-color: #88ffd9;
}

@media all and (max-width: 896px) {
  .contents__list {
    margin: 80px auto 0;
  }
  .contents__list li {
    width: 48%;
    margin: 0 4% 80px 0;
  }
  .contents__list li .list__eng {
    position: relative;
    z-index: 1;
  }
  .contents__list li:nth-child(2n) {
    margin: 0 0 80px 0;
  }
}

@media all and (max-width: 639px) {
  .contents__list li {
    width: 48%;
    margin: 0 4% 65px 0;
    padding: 10px 15px 15px;
  }
  .contents__list li:nth-child(2n) {
    margin: 0 0 65px 0;
  }
  .contents__list li .list__eng {
    font-size: 12px;
  }
  .contents__list li .list__txt {
    font-size: 14px;
  }
  .contents__list li .list__photo {
    margin: 15px auto;
  }
  .contents__list li .list__photo img {
    height: 120px;
  }
}

.contact {
  position: relative;
  background-color: #c5e7e3;
  overflow: hidden;
}

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

.contact__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 600px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px auto 0;
}

.contact__list li {
  position: relative;
  background-color: #fff;
  padding: 10px 20px;
  font-family: "Yomogi", cursive;
  font-weight: 300;
  font-weight: bold;
  font-size: 2rem;
  margin: 0 3%;
  width: 44%;
  text-align: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.contact__list li:before {
  position: absolute;
  content: "";
  width: 10%;
  height: 100%;
  left: -10px;
  top: 0;
  background: url(../img/title-frame2.png) repeat-y;
  background-size: 10px 46px;
}

.contact__list li:after {
  position: absolute;
  content: "";
  width: 10%;
  height: 100%;
  right: -10px;
  top: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  background: url(../img/title-frame2.png) repeat-y;
  background-size: 10px 46px;
}

.contact__list li a {
  display: block;
  width: 100%;
  height: 100%;
}

.contact__list li:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: #73c0c3;
}

.contact__list li:hover a {
  color: #fff;
}

@media all and (max-width: 639px) {
  .contact__list {
    margin: 30px auto 0;
  }
  .contact__list li {
    padding: 6px 0px;
    font-size: 14px;
    margin: 0 6% 0 0;
    width: 47%;
  }
  .contact__list li:nth-child(2) {
    margin: 0;
  }
}

/* page content
----------------------------------*/
.pageCommon {
  padding: 50px 0;
}

.pageCommon.b-p100 {
  padding-bottom: 100px;
}

.pageCommon .mainContents__inner {
  background-color: #fff;
  padding: 50px;
}

.pageCommon .pageCommon__detailtxt {
  font-size: 12px;
  margin-top: 5px;
}

@media all and (max-width: 639px) {
  .pageCommon {
    padding: 30px 0 50px;
  }
  .pageCommon .mainContents__inner {
    padding: 20px 15px;
  }
}

.pageCommon__box {
  margin: 50px auto;
}

.pageCommon__box .pageCommon__box__title {
  position: relative;
  margin: 0 auto 20px 20px;
  font-size: 1.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #ebe0d6;
  color: #333;
  padding: 2px 24px;
  border-radius: 50px;
  font-weight: bold;
}

.pageCommon__box .pageCommon__box__title.t-m40 {
  margin-top: 40px;
}

.pageCommon__box .pageCommon__box__title:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 4px;
  top: 45%;
  left: -20px;
  background-color: #503e2d;
  opacity: 0.5;
}

.pageCommon__box .pageCommon__box__title.title--green {
  background-color: #d3e4ca;
}

.pageCommon__box .pageCommon__box__title.title--green:before {
  background-color: #789b64;
}

.pageCommon__box .pageCommon__box__title.title--blue {
  background-color: #cae3e4;
}

.pageCommon__box .pageCommon__box__title.title--blue:before {
  background-color: #65cccf;
}

@media all and (max-width: 639px) {
  .pageCommon__box {
    margin: 30px auto 0px;
  }
  .pageCommon__box.t-m50 {
    margin-top: 50px;
  }
  .pageCommon__box .pageCommon__box__title {
    margin: 0 auto 15px;
    font-size: 1.4rem;
  }
}

.pageCommon__bgbox {
  padding: 30px;
  background-color: rgba(233, 222, 202, 0.6);
  position: relative;
}

.pageCommon__bgbox.bgbox--red {
  background-color: rgba(240, 219, 218, 0.6);
}

.pageCommon__bgbox.bgbox--green {
  background-color: rgba(234, 240, 218, 0.6);
}

.pageCommon__bgbox.bgbox--orange {
  background-color: rgba(248, 239, 226, 0.6);
}

.pageCommon__bgbox:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  width: 10px;
  height: 10px;
  border-top: 10px solid #fff;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}

.pageCommon__bgbox .box__title {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  padding: 0 10px;
  margin: 0 auto;
}

.pageCommon__bgbox .box__txt {
  text-align: center;
  margin: 5px auto 10px;
}

@media all and (max-width: 639px) {
  .pageCommon__bgbox {
    margin-top: 40px;
    padding: 20px 15px 15px;
  }
  .pageCommon__bgbox p {
    font-size: 12px;
  }
  .pageCommon__bgbox .box__title {
    font-size: 14px;
  }
}

.pageCommon__pricelist {
  background-color: #fff;
}

.pageCommon__pricelist li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
  padding: 10px 40px;
}

.pageCommon__pricelist li:first-child {
  border-top: 1px solid #ddd;
}

.pageCommon__pricelist .list__title {
  width: calc(100% - 250px);
  margin: 0 auto 0 0;
}

.pageCommon__pricelist .list__txt {
  width: 250px;
  margin: 0 0 0 auto;
  color: #e48585;
  font-weight: bold;
  font-size: 2rem;
}

.pageCommon__pricelist .list__txt span {
  font-size: 12px;
  padding-left: 2px;
  color: #333;
  font-weight: normal;
}

@media all and (max-width: 1200px) {
  .pageCommon__pricelist li {
    padding: 10px 40px;
  }
}

@media all and (max-width: 896px) {
  .pageCommon__pricelist .list__title {
    width: calc(100% - 180px);
    margin: 0 auto 0 0;
  }
  .pageCommon__pricelist .list__txt {
    width: 180px;
  }
}

@media all and (max-width: 639px) {
  .pageCommon__pricelist li {
    padding: 10px 20px;
  }
  .pageCommon__pricelist .list__title {
    width: 100%;
    font-size: 13px;
    padding-bottom: 4px;
    border-bottom: 2px dotted #ddd;
  }
  .pageCommon__pricelist .list__txt {
    width: 100%;
    font-size: 12px;
    text-align: right;
  }
}

.pageCommon__txtlist {
  background-color: #fff;
}

.pageCommon__txtlist.list--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: none;
  border: 1px solid #ddd;
}

.pageCommon__txtlist.list--flex li {
  border-top: none;
  border-bottom: none;
  padding: 10px 20px;
}

.pageCommon__txtlist.list--flex li:first-child {
  border-top: none;
}

.pageCommon__txtlist li {
  border-bottom: 1px solid #ddd;
  padding: 10px 40px;
}

.pageCommon__txtlist li:first-child {
  border-top: 1px solid #ddd;
}

.pageCommon__txtlist .list__icon {
  padding: 0 0 0 10px;
  position: relative;
}

.pageCommon__txtlist .list__icon:before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  left: 0;
  top: 48%;
  background-color: #503e2d;
}

.pageCommon__txtlist .list__txt {
  position: relative;
  padding: 0 0 0 20px;
  display: inline-block;
  font-weight: bold;
  text-align: right;
}

@media all and (max-width: 1200px) {
  .pageCommon__txtlist li {
    padding: 10px 20px;
  }
}

@media all and (max-width: 639px) {
  .pageCommon__txtlist li {
    padding: 10px 20px;
    font-size: 12px;
  }
  .pageCommon__txtlist.list--flex {
    padding: 15px 10px;
  }
  .pageCommon__txtlist.list--flex li {
    padding: 5px 10px;
  }
}

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

.pageCommon__flex .flex__photo {
  width: 300px;
}

.pageCommon__flex .flex__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pageCommon__flex .flex__txtarea {
  width: calc(100% - 320px);
  margin: 0 0 0 auto;
}

.pageCommon__flex .flex__txtarea__title {
  font-size: 1.6rem;
  font-weight: bold;
  background-color: #8fb385;
  padding: 6px 20px;
  text-align: center;
  color: #fff;
}

@media all and (max-width: 1200px) {
  .pageCommon__flex {
    display: block;
  }
  .pageCommon__flex .flex__photo {
    width: 220px;
    margin: 0 auto 20px;
    text-align: center;
  }
  .pageCommon__flex .flex__txtarea {
    width: 100%;
  }
}

.pageCommon__tbl {
  width: 100%;
  margin: 0 auto;
}

.pageCommon__tbl tr.tbl__title {
  border-bottom: 10px solid #fff;
}

.pageCommon__tbl tr.tbl__title th,
.pageCommon__tbl tr.tbl__title td {
  border: none;
  background-color: transparent;
}

.pageCommon__tbl tr.tbl__title th.tbl__title__main {
  background-color: #f3f0eb;
  border: 6px solid #fff;
  padding: 8px 20px;
  border-radius: 20px 20px 0 0;
}

.pageCommon__tbl th,
.pageCommon__tbl td {
  padding: 4px 10px;
  border: 1px solid #ddd;
  vertical-align: middle;
}

.pageCommon__tbl th {
  text-align: center;
  background-color: #f3f0eb;
}

.pageCommon__tbl th span {
  display: block;
  text-align: center;
  font-size: 12px;
}

.pageCommon__tbl th.txt--tate {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  padding: 0 10px;
  background-color: #fbeee5;
}

.pageCommon__tbl th.txt--tate.type2 {
  background-color: #e5dac0;
}

.pageCommon__tbl th.txt--tate.type3 {
  background-color: #fad3d4;
}

.pageCommon__tbl th.txt--tate.type4 {
  background-color: #f7f3b7;
}

.pageCommon__tbl th.txt--tate.type5 {
  background-color: #c2d9f8;
}

.pageCommon__tbl td {
  padding: 20px;
}

@media all and (max-width: 639px) {
  .pageCommon__tbl th.txt--tate {
    min-width: 45px !important;
    width: 46px !important;
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    font-size: 12px;
    padding: 0 10px;
  }
}

.about {
  position: relative;
}

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

.about__list li {
  width: 23%;
  margin: 0 2% 30px 0;
  position: relative;
}

.about__list .list__photo {
  height: 160px;
  border-bottom: 1px solid #503e2d;
  padding: 10px 10px 0;
}

.about__list .list__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__list .list__txt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #ffffff;
  color: #9b7f64;
  text-align: center;
  margin: -22px auto 0;
  position: relative;
  z-index: 1;
  padding: 4px 30px 0;
  border-radius: 5px 5px 0 0;
  font-weight: bold;
}

.about__list.type--green .list__photo {
  border-bottom: 1px solid #789b64;
}

.about__list.type--green .list__txt {
  color: #789b64;
}

@media all and (max-width: 1200px) {
  .about__list li {
    width: 31%;
    margin: 0 1% 30px;
    position: relative;
  }
}

@media all and (max-width: 639px) {
  .about__list li {
    width: 46%;
    margin: 0 2% 10px;
    position: relative;
    padding: 5px 5px 0;
  }
  .about__list .list__photo {
    height: 100px;
  }
  .about__list .list__txt {
    font-size: 12px;
    margin: -22px auto 0;
    position: relative;
    z-index: 1;
    padding: 2px 10px 0;
    border-radius: 5px 5px 0 0;
    font-weight: bold;
  }
}

.about__box {
  position: relative;
  background-color: #f3f0eb;
  padding: 40px;
  margin: 40px auto 0;
}

.about__box.box--green {
  background-color: #e2f4e9;
}

.about__box.box--blue {
  background-color: transparent;
  z-index: 1;
  margin: 140px auto 0;
}

.about__box.box--blue:after {
  position: absolute;
  content: "";
  width: 94%;
  height: 100%;
  top: -28%;
  left: 3%;
  background: url(../img/bg-art-illust.png) no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}

.about__box.box--blue:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-art.png) no-repeat;
  background-size: cover;
  z-index: -1;
}

.about__box.box--blue .box__inner {
  margin-bottom: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about__box.box--blue .txtarea__title {
  padding-left: 0;
  color: #333;
}

.about__box.box--blue .txtarea__title:before {
  display: none;
}

.about__box.box--blue .box__txtarea {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 40px;
}

.about__box.box--blue .txtarea__txt {
  text-align: center;
}

.about__box .box__inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  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;
}

.about__box .box__photo {
  width: 280px;
}

.about__box .box__txtarea {
  width: calc(100% - 320px);
  margin: 0 0 0 auto;
}

.about__box .txtarea__title {
  font-weight: bold;
  font-size: 1.8rem;
  position: relative;
  padding: 0 0 0 40px;
  color: #65513d;
}

.about__box .txtarea__title:before {
  position: absolute;
  left: 0;
  content: "";
  top: 5px;
  width: 30px;
  height: 24px;
  background: url(../img/icon--kuma.png) no-repeat;
  background-size: cover;
}

.about__box .txtarea__txt {
  margin-bottom: 20px;
}

@media all and (max-width: 1367px) {
  .about__box.box--blue {
    margin: 100px auto 0;
  }
  .about__box.box--blue:after {
    top: -100px;
    width: 106%;
    height: 100%;
    left: -3%;
  }
}

@media all and (max-width: 1200px) {
  .about__box .box__inner {
    display: block;
  }
  .about__box .box__photo {
    width: 280px;
    margin: 0 auto 20px;
  }
  .about__box .box__txtarea {
    width: 100%;
    margin: 0 auto;
  }
  .about__box.box--blue {
    background-color: transparent;
    z-index: 1;
    margin: 100px auto 0;
  }
  .about__box.box--blue:after {
    top: -35%;
  }
  .about__box.box--blue .txtarea__title {
    text-align: center;
    margin: 0 auto;
  }
  .about__box.box--blue .box__txtarea {
    margin-left: auto;
    margin: 0 auto;
  }
  .about__box.box--blue .txtarea__txt {
    text-align: center;
  }
}

@media all and (max-width: 896px) {
  .about__box.box--blue {
    margin: 60px auto 0;
  }
  .about__box.box--blue:after {
    top: -38%;
  }
  .about__box.box--blue .txtarea__txt {
    text-align: left;
  }
}

@media all and (max-width: 639px) {
  .about__box {
    padding: 20px 15px;
  }
  .about__box .box__photo {
    width: 60%;
  }
  .about__box .txtarea__title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .about__box .txtarea__title:before {
    top: 3px;
    left: 5px;
    width: 22px;
    height: 18px;
  }
  .about__box .txtarea__txt {
    font-size: 12px;
  }
  .about__box.box--blue:after {
    top: -43%;
  }
}

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

.about__flexBox .flexBox__left {
  width: 48%;
}

.about__flexBox .flexBox__right {
  width: 48%;
  margin: 0 0 0 4%;
}

@media all and (max-width: 1200px) {
  .about__flexBox {
    display: block;
  }
  .about__flexBox .flexBox__left {
    width: 100%;
    margin: 0 auto;
  }
  .about__flexBox .flexBox__right {
    width: 100%;
    margin: 40px auto 0;
  }
}

.deta {
  background: url(../img/deta-bg.jpg) no-repeat;
  background-size: cover;
}

.deta.type2 {
  background: url(../img/photo-bg.jpg) no-repeat;
}

.deta .mainContents__inner {
  background-color: transparent;
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.deta .mainContents__title {
  text-align: center;
  margin: 0 auto 40px;
}

.deta .mainContents__title .ja {
  background-image: none;
}

.deta .deta__main {
  min-width: 340px;
  width: 45%;
  border-right: 2px solid #fff;
}

.deta .deta__main .main__txt {
  text-align: center;
  color: #fff;
  font-weight: bold;
}

.deta .deta__box {
  text-align: center;
  font-weight: bold;
  color: #fff;
  width: 55%;
  margin: 0 0 0 auto;
}

.deta .deta__box__sub {
  margin-top: 20px;
  font-size: 2rem;
}

.deta .box__fukidashi {
  text-align: center;
  margin: 0px auto 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 30px;
  color: #333;
  background-color: #fff;
  border-radius: 50px;
  position: relative;
}

.deta .box__fukidashi:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: 0 auto;
  border-top: 10px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

@media all and (max-width: 1200px) {
  .deta .deta__main {
    min-width: 100%;
    width: 100%;
    border-right: none;
  }
  .deta .deta__box {
    width: 100%;
    margin: 20px auto 0;
  }
}

@media all and (max-width: 639px) {
  .deta {
    padding: 30px 0;
  }
  .deta .mainContents__title {
    margin: 0 auto 0px;
  }
  .deta .mainContents__title .ja {
    display: block;
    width: 70%;
    margin: 0 auto;
  }
  .deta .box__fukidashi {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-width: 200px;
  }
  .deta.type2 {
    background-position: bottom;
  }
  .deta.type2 .deta__main {
    width: 70%;
    height: 140px;
  }
  .deta.type2 .deta__main img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.deta__list {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.deta__list li {
  position: relative;
  padding-left: 40px;
  font-size: 2rem;
}

.deta__list li:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 5px;
  top: 20px;
  left: 5px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.deta__list li:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 5px;
  top: 20px;
  left: 11px;
  background-color: #fff;
  -webkit-transform: rotate(-41deg);
  transform: rotate(-41deg);
}

@media all and (max-width: 639px) {
  .deta__list li {
    font-size: 12px;
    padding-left: 30px;
  }
  .deta__list li:before {
    width: 7px;
    height: 3px;
    top: 10px;
    left: 5px;
  }
  .deta__list li:after {
    width: 13px;
    height: 3px;
    top: 10px;
    left: 9px;
  }
}

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

.art__list li {
  width: 31%;
  margin: 0 2% 10px 0;
  background-color: #fff;
  position: relative;
  padding: 20px 0;
}

.art__list .list__title {
  background-color: #d0f2f3;
  padding: 4px 20px;
  font-weight: bold;
  text-align: center;
  margin: 10px auto;
}

.art__list .list__txt {
  text-align: left;
}

.art__list .list__txt span {
  color: #9ae1e4;
}

@media all and (max-width: 639px) {
  .art__list li {
    width: 48%;
    padding: 10px 0;
  }
}

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

.art__detailList li {
  width: 31%;
  margin: 0 3% 0 0;
  background-color: #f2f2f2;
  padding: 20px 10px;
  position: relative;
}

.art__detailList li:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 40%;
  right: -20px;
  border-left: 10px solid #82bbdf;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.art__detailList li:nth-child(3) {
  margin: 0;
}

.art__detailList li:nth-child(3):before {
  display: none;
}

.art__detailList .list__photo {
  text-align: center;
  margin: 0 auto;
}

.art__detailList .list__txt {
  margin-top: 10px;
  text-align: center;
}

@media all and (max-width: 1200px) {
  .art__detailList li:before {
    right: -10px;
  }
}

@media all and (max-width: 639px) {
  .art__detailList li {
    width: 90%;
    margin: 0 auto 20px;
  }
  .art__detailList li:before {
    width: 10px;
    height: 10px;
    top: auto;
    bottom: -10px;
    right: 0;
    left: 0;
    margin: 0 auto;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 10px solid #82bbdf;
    border-bottom: none;
  }
  .art__detailList li:nth-child(3) {
    margin: 0 auto 20px;
  }
  .art__detailList .list__photo {
    width: 60%;
  }
}

.shop {
  position: relative;
}

.shop.shop--main:before {
  position: absolute;
  content: "";
  width: 98px;
  height: 558px;
  top: 0px;
  left: 0;
  background: url(../img/kusa-big01.png) no-repeat;
  background-size: cover;
}

.shop.shop--main:after {
  position: absolute;
  content: "";
  width: 138px;
  height: 758px;
  bottom: 40px;
  right: 0;
  background: url(../img/kusa-big02.png) no-repeat;
  background-size: cover;
}

.shop .mainContents__subtitle {
  position: relative;
  z-index: 1;
}

.shop .shop__pricephoto {
  margin: 40px auto 0;
  text-align: center;
  width: 90%;
}

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

@media all and (max-width: 1200px) {
  .shop.shop--main:before {
    width: 66px;
    height: 380px;
  }
  .shop.shop--main:after {
    width: 98px;
    height: 510px;
    bottom: 30px;
  }
}

@media all and (max-width: 639px) {
  .shop.shop--main:before {
    width: 46px;
    height: 268px;
  }
  .shop.shop--main:after {
    width: 58px;
    height: 310px;
    bottom: 10px;
  }
}

.shop__box {
  background-color: #fff;
  position: relative;
  padding: 50px;
  margin: -20px auto 0;
}

.shop__box:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 100%;
  top: 0;
  left: -10px;
  background: url(../img/title-frame3.png) repeat-y;
  background-size: 10px 46px;
}

.shop__box:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 100%;
  top: 0;
  right: -10px;
  background: url(../img/title-frame3.png) repeat-y;
  background-size: 10px 46px;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}

.shop__box .box__title {
  text-align: center;
  margin: 0 auto;
  font-family: "Zen Kaku Gothic Antique", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-weight: bold;
  font-size: 2rem;
  color: #503e2d;
}

.shop__box .box__illust {
  position: absolute;
  left: 10px;
  top: -50px;
  z-index: 2;
  width: 160px;
}

.shop__box .box__illust2 {
  position: absolute;
  right: -40px;
  bottom: -30px;
  z-index: 2;
  width: 160px;
}

@media all and (max-width: 896px) {
  .shop__box .box__illust {
    width: 110px;
  }
  .shop__box .box__illust2 {
    right: -30px;
    width: 100px;
  }
}

@media all and (max-width: 639px) {
  .shop__box .box__title {
    font-size: 14px;
  }
  .shop__box .box__illust {
    width: 70px;
    top: -20px;
    left: 0px;
  }
  .shop__box .box__illust2 {
    right: 0px;
    width: 80px;
  }
}

.shop__flex {
  margin: 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 900px;
}

.shop__flex .flex__photo {
  width: 30%;
}

.shop__flex .flex__txtarea {
  width: 68%;
  margin: 0 0 0 2%;
  font-family: "Zen Kaku Gothic Antique", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-weight: bold;
  font-size: 1.6rem;
  color: #503e2d;
  line-height: 2;
}

@media all and (max-width: 639px) {
  .shop__flex .flex__photo {
    width: 70%;
    margin: 0 auto 20px;
  }
  .shop__flex .flex__txtarea {
    width: 100%;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.6;
    padding: 0 20px;
  }
}

.shop__txtBox {
  margin: 0 auto;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #503e2d;
}

.shop__txtBox .box__illust {
  margin: 0 auto 30px;
  max-width: 200px;
  width: 40%;
}

@media all and (max-width: 639px) {
  .shop__txtBox {
    font-size: 14px;
  }
  .shop__txtBox .sp-t20 {
    margin-top: 20px;
  }
}

.shop__map {
  width: 100%;
  margin-top: 20px;
}

.shop__map iframe {
  width: 100%;
  height: 300px;
  margin: 0 auto;
}

@media all and (max-width: 639px) {
  .shop__map iframe {
    height: 200px;
  }
}

.shop__list {
  margin: 0px auto;
  position: relative;
  z-index: 1;
  width: 100%;
}

.shop__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 10px;
  position: relative;
  margin: 0 0 10px auto;
}

.shop__list li a {
  color: #82bbdf;
  font-weight: bold;
}

.shop__list li a:hover {
  opacity: 0.6;
}

.shop__list .list__title {
  width: 220px;
  position: relative;
  z-index: 1;
  background-color: #fbf6f0;
  padding: 6px 10px 6px 30px;
  border-radius: 50px 0 0 50px;
}

.shop__list .list__txt {
  width: calc(100% - 240px);
  margin: 0 0 0 auto;
  padding: 6px 10px;
}

@media all and (max-width: 1200px) {
  .shop__list .list__title {
    font-size: 1.4rem;
    width: 150px;
  }
  .shop__list .list__txt {
    width: calc(100% - 170px);
    margin: 0 0 0 auto;
  }
}

@media all and (max-width: 639px) {
  .shop__list {
    margin: 40px auto 0;
  }
  .shop__list .list__title {
    font-size: 12px;
    padding: 4px 10px 4px 15px;
    width: 90px;
  }
  .shop__list .list__txt {
    width: calc(100% - 100px);
    padding: 4px 10px 4px 10px;
    font-size: 12px;
  }
}

.shop__pricelist {
  background-color: #fff;
  max-width: 900px;
  margin: 40px auto 0;
}

.shop__pricelist li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: bold;
  margin-bottom: 10px;
}

.shop__pricelist .list__title {
  width: 230px;
  font-size: 1.6rem;
  margin-right: 20px;
  text-align: center;
  background-color: #604C3F;
  color: #fff;
  padding: 10px 0;
}

.shop__pricelist .list__title.type2 {
  background-color: #ada49d;
}

.shop__pricelist .list__detail {
  width: calc(100% - 250px);
  margin: 0 0 0 auto;
  border: 2px solid #604C3F;
}

.shop__pricelist .detail__flex {
  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;
  border-bottom: 2px solid #604C3F;
  padding: 2px 20px;
}

.shop__pricelist .detail__flex.noborder {
  border-bottom: none;
}

.shop__pricelist .list__txt {
  width: 200px;
  margin: 0 auto 0 0;
}

.shop__pricelist .list__price {
  width: calc(100% - 220px);
  margin: 0 0 0 auto;
  color: #e48585;
  font-weight: bold;
  font-size: 2rem;
}

.shop__pricelist .list__price span {
  font-size: 12px;
  padding-left: 2px;
  color: #333;
  font-weight: normal;
}

@media all and (max-width: 1200px) {
  .shop__pricelist li {
    padding: 10px 30px;
  }
  .shop__pricelist .list__title {
    width: 160px;
    font-size: 1.4rem;
  }
  .shop__pricelist .list__detail {
    width: calc(100% - 180px);
  }
  .shop__pricelist .list__txt {
    width: 160px;
  }
  .shop__pricelist .list__price {
    width: calc(100% - 180px);
  }
}

@media all and (max-width: 896px) {
  .shop__pricelist .list__txt {
    width: 120px;
  }
  .shop__pricelist .list__price {
    width: calc(100% - 140px);
  }
}

@media all and (max-width: 639px) {
  .shop__pricelist {
    margin-top: 40px;
  }
  .shop__pricelist li {
    padding: 10px 20px;
  }
  .shop__pricelist .list__title {
    width: 100%;
    font-size: 13px;
    margin-right: 0;
    padding-bottom: 4px;
    border-bottom: 2px dotted #ddd;
    text-align: center;
  }
  .shop__pricelist .detail__flex {
    padding: 2px 15px;
  }
  .shop__pricelist .list__detail {
    width: 100%;
    margin: 0 auto;
  }
  .shop__pricelist .list__txt {
    width: 90px;
    font-size: 12px;
    text-align: left;
  }
  .shop__pricelist .list__price {
    width: calc(100% - 110px);
    margin: 0 0 0 auto;
    text-align: right;
    font-size: 1.5rem;
  }
}

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

.print__list li {
  width: 31%;
  margin: 0 3% 30px 0;
  position: relative;
}

.print__list li:nth-child(3n) {
  margin: 0 0 30px;
}

.print__list .list__txtarea {
  position: relative;
  z-index: 1;
  width: 90%;
  padding: 25px 20px 20px;
  background-color: #fff;
  border: 2px solid #82bbdf;
  margin: -40px auto 0;
  min-height: 108px;
}

.print__list .list__photo {
  margin: 0 auto;
  text-align: center;
}

.print__list .list__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 20px;
  border-radius: 50px;
  background-color: #82bbdf;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
}

.print__list .list__txt span {
  color: #82bbdf;
  opacity: 0.5;
}

@media all and (max-width: 1200px) {
  .print__list .list__txtarea {
    padding: 20px;
  }
  .print__list .list__title {
    font-size: 16px;
    padding: 0 10px;
    border-radius: 5px;
    position: relative;
    top: -40px;
  }
  .print__list .list__txt {
    margin: -20px auto 0;
  }
}

@media all and (max-width: 639px) {
  .print__list li {
    width: 46%;
    margin: 0 8% 20px 0;
  }
  .print__list li:nth-child(3n) {
    margin: 0 8% 20px 0;
  }
  .print__list li:nth-child(2n) {
    margin: 0 0 20px;
  }
  .print__list li .list__txtarea {
    padding: 20px 10px;
  }
  .print__list li .list__title {
    font-size: 13px;
    padding: 0 20px;
    border-radius: 5px;
    position: relative;
    top: -40px;
  }
  .print__list li .list__txt {
    margin: -30px auto 0;
    font-size: 12px;
  }
}

.mailform {
  position: relative;
  margin: 0 auto;
}

.mailform .mainContents__inner {
  max-width: 1000px;
  padding: 50px 0;
}

.mailform .mailform__title {
  text-align: center;
}

.mailform .mailform__title .eng {
  color: #333;
}

.mailform .mailform__title .ja {
  color: #333;
}

.mail__box {
  margin: 40px auto;
}

.mail__box .box__title {
  position: relative;
  margin: 0 auto 50px;
  text-align: center;
}

.mail__box .box__title:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 20px;
  border-top: 20px solid #503e2d;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -30px;
}

.mail__box .box__detail {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.7);
}

.mail__detailarea {
  background-color: #fafae8;
}

.mail__detailarea .mainContents__title {
  text-align: center;
  margin: 0 auto 50px;
}

.mail__mainarea {
  background-color: #ffffff;
}

.mail__mainarea .mainContents__title {
  text-align: center;
  margin: 0 auto 50px;
}

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

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

.slick-slide img {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.slick-prev:before {
  position: absolute;
  content: "";
  color: #000;
  border-right: 20px solid #503e2d;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  width: 20px;
  height: 10px;
  left: -20px;
  top: 44%;
  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 {
  position: absolute;
  content: "";
  color: #000;
  border-left: 20px solid #503e2d;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  width: 20px;
  height: 10px;
  right: -20px;
  top: 44%;
  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;
}

.slick-track {
  height: 300px;
}

.slide_list {
  position: relative;
  display: none;
  margin: 60px auto 20px;
}

.slide_list li {
  margin-right: 1%;
  border-radius: 0px;
  overflow: hidden;
  width: 200px;
  height: 180px;
}

.slide_list li img {
  width: 200px;
  height: 180px;
  -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;
  -o-object-fit: cover;
     object-fit: cover;
}

.slide_list li:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

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

.slide_list2 {
  position: relative;
  display: none;
  margin: 0px auto 60px;
}

.slide_list2 li {
  margin-right: 1%;
  border-radius: 0px;
  overflow: hidden;
  width: 200px;
  height: 180px;
}

.slide_list2 li img {
  width: 200px;
  height: 180px;
  -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;
  -o-object-fit: cover;
     object-fit: cover;
}

.slide_list2 li:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

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

.slideArea {
  position: relative;
}

.slide__btn {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  max-width: 390px;
  width: 60%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slide__btn:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: scale(0.95) translateY(-50%);
          transform: scale(0.95) translateY(-50%);
  mix-blend-mode: multiply;
}

.calenderArea {
  overflow: hidden;
  position: relative;
  background-color: #EFEADF;
}

.calenderArea .mainContents__inner {
  padding: 50px 0;
}

.calenderArea.mainContents--bgpattern:before {
  mix-blend-mode: color-dodge;
}

.calenderArea .arrow {
  margin: 0 auto;
  text-align: center;
}

.calenderArea .arrow-before,
.calenderArea .arrow-after {
  background-color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 20px;
  color: #604C3F;
  margin: 0 10px;
  border-radius: 50px;
}

.calenderArea .arrow-before:hover,
.calenderArea .arrow-after:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: #604C3F;
  color: #fff;
}

.calenderArea .calendar_head {
  padding: 8px 20px;
  font-size: 2rem;
  font-family: "Zen Kaku Gothic Antique", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  border-radius: 20px 20px 0 0;
  text-align: center;
  color: #604C3F;
}

.calenderArea .calender__detail {
  background-color: #fff;
  padding: 50px;
  position: relative;
  margin: 50px auto 0px;
}

.calenderArea .calender__detail:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 100%;
  top: 0;
  left: -10px;
  background: url(../img/title-frame3.png) repeat-y;
  background-size: 10px 46px;
}

.calenderArea .calender__detail:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 100%;
  top: 0;
  right: -10px;
  background: url(../img/title-frame3.png) repeat-y;
  background-size: 10px 46px;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}

.calenderArea .box__illust {
  position: absolute;
  left: 10px;
  top: -50px;
  z-index: 2;
  width: 160px;
}

.calenderArea .box__illust2 {
  position: absolute;
  right: -40px;
  bottom: -30px;
  z-index: 2;
  width: 160px;
}

@media all and (max-width: 896px) {
  .calenderArea .box__illust2 {
    width: 130px;
  }
}

@media all and (max-width: 896px) {
  .calenderArea .box__illust {
    width: 110px;
  }
  .calenderArea .box__illust2 {
    right: -30px;
    width: 100px;
  }
}

@media all and (max-width: 639px) {
  .calenderArea .calender__detail {
    padding: 20px 15px;
    margin: 20px auto 0;
  }
  .calenderArea .box__illust {
    width: 70px;
    top: -20px;
    left: 0px;
  }
  .calenderArea .box__illust2 {
    right: -30px;
    width: 80px;
  }
}

.calendar-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 40px auto 0;
}

.calendar-box > .calendar {
  width: 46%;
  margin: 0 2%;
}

.calendar-box table {
  width: 100%;
  background-color: #fff;
  padding: 20px;
  overflow: hidden;
}

.calendar-box table td {
  padding: 10px;
  height: 60px;
  border-bottom: 2px solid #f8f7f2;
  border-right: 2px solid #f8f7f2;
  width: 14%;
  line-height: 1.2;
  vertical-align: top;
  font-size: 10px;
}

.calendar-box table td .days {
  margin-top: 2px;
  font-size: 12px;
  margin: 0 auto;
  line-height: 1;
  color: #97832b;
  font-weight: bold;
  text-align: center;
  width: 30px;
  font-size: 12px;
}

.calendar-box table td.sat {
  border-right: none;
}

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

.calendar-box table th {
  text-align: center;
  vertical-align: middle;
  padding: 5px 2px;
  line-height: 1.5;
  width: 14%;
  border: 2px solid #f8f7f2;
  border-top: none;
}

.calendar-box table th.sun, .calendar-box table th.mon, .calendar-box table th.tue, .calendar-box table th.wed, .calendar-box table th.thu, .calendar-box table th.fri, .calendar-box table th.sat {
  background-color: #CBE6DF;
}

@media all and (max-width: 896px) {
  .calendar-box > .calendar {
    width: 96%;
    margin: 0 auto 20px;
  }
  .calendar-box table td {
    font-size: 10px;
  }
  .calendar-box table td .days {
    width: 10px;
  }
}

/*----------------------------------
bg anime
----------------------------------*/
/*印象編　4-9、4-10　背景色が伸びて出現（左から・右から）　*/
.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;
  }
}

/*印象編　4-9 背景色が伸びて出現（左から）*/
.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%;
  top: 0;
  background-color: #503e2d;
  /*伸びる背景色の設定*/
}

@-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);
  }
  51% {
    -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);
  }
  51% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

/*印象編　4-9 背景色が伸びて出現（右から）*/
.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: #111;
  /*伸びる背景色の設定*/
}

@-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);
  }
  51% {
    -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);
  }
  51% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgUDextendTrigger,
.bgDUextendTrigger,
.bgRLextendTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

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

.sponly {
  display: none;
}

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