@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
:root {
  --f-mincyo : "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
}

body {
  color: #232323;
  background: #ffffff;
  font-family: "Noto Sans JP", "YakuHanJP", Lato, "游ゴシック 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;
  z-index: 1;
}

body:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-all.jpg) repeat;
  background-size: 1600px 1200px;
}

.line {
  position: fixed;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
}

.line p {
  width: 10%;
  border-left: 1px solid black;
  border-right: 1px solid black;
  height: 100vh;
}

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

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

#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: "Zen Old 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: 100%;
  height: 100%;
  background-color: #753a6b;
  top: 0;
  left: 0;
  -webkit-animation: load-fade 0.6s ease-out 2s forwards;
          animation: load-fade 0.6s ease-out 2s forwards;
}

@media all and (max-width: 639px) {
  .loader-bg1 {
    -webkit-animation: load-tate 1s ease-out 1.8s forwards;
            animation: load-tate 1s ease-out 1.8s forwards;
  }
}

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

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

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

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

#splash_logo {
  position: absolute;
  top: 34%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

@media all and (max-width: 639px) {
  #splash_logo {
    top: 40%;
  }
}

@-webkit-keyframes anime-paper {
  0% {
    opacity: 0;
  }
  60% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
  70% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  80% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  90% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes anime-paper {
  0% {
    opacity: 0;
  }
  60% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
  70% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  80% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  90% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.svgall {
  width: 200px;
  height: auto;
  margin: 0 auto;
  position: relative;
}

@media all and (max-width: 639px) {
  .svgall {
    width: 140px;
  }
}

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

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

#splash_logo {
  -webkit-animation: anime-aut 0.5s linear 1.8s forwards;
          animation: anime-aut 0.5s linear 1.8s forwards;
}

@media all and (max-width: 639px) {
  #splash_logo {
    -webkit-animation: anime-aut 0.5s linear 1s forwards;
            animation: anime-aut 0.5s linear 1s forwards;
  }
}

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

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

.cls-1 {
  fill: none;
  stroke: black;
  stroke-width: 2;
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  -webkit-animation: animeline 4s ease-in 1s forwards, animeline2 2s ease-in 4s forwards;
          animation: animeline 4s ease-in 1s forwards, animeline2 2s ease-in 4s forwards;
}

.cls-1.cls-main-1 {
  -webkit-animation: animeline 4s ease-in 1s forwards, animeline2 2s ease-in 4s forwards;
          animation: animeline 4s ease-in 1s forwards, animeline2 2s ease-in 4s forwards;
}

.cls-1.cls-main-2 {
  -webkit-animation: animeline 4s ease-in 1s forwards, animeline2 2s ease-in 4s forwards;
          animation: animeline 4s ease-in 1s forwards, animeline2 2s ease-in 4s forwards;
}

.cls-1.cls-main-3 {
  -webkit-animation: animeline 4s ease-in 1s forwards, animeline2 2s ease-in 4s forwards;
          animation: animeline 4s ease-in 1s forwards, animeline2 2s ease-in 4s forwards;
}

@-webkit-keyframes animeline {
  50% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0);
  }
  70% {
    fill: white;
  }
  80% {
    stroke-width: 0;
  }
  100% {
    stroke-width: 0;
    stroke-dashoffset: 0;
    fill: #fff;
  }
}

@keyframes animeline {
  50% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0);
  }
  70% {
    fill: white;
  }
  80% {
    stroke-width: 0;
  }
  100% {
    stroke-width: 0;
    stroke-dashoffset: 0;
    fill: #fff;
  }
}

@-webkit-keyframes animeline2 {
  80% {
    stroke-width: 0;
    -webkit-filter: drop-shadow(0px 0px #333);
            filter: drop-shadow(0px 0px #333);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    stroke-width: 0;
    -webkit-filter: drop-shadow(20px 20px #333);
            filter: drop-shadow(20px 20px #333);
    stroke-dashoffset: 0;
    fill: #fff;
  }
}

@keyframes animeline2 {
  80% {
    stroke-width: 0;
    -webkit-filter: drop-shadow(0px 0px #333);
            filter: drop-shadow(0px 0px #333);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    stroke-width: 0;
    -webkit-filter: drop-shadow(20px 20px #333);
            filter: drop-shadow(20px 20px #333);
    stroke-dashoffset: 0;
    fill: #fff;
  }
}

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

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

@media all and (max-width: 1367px) {
  #l-header {
    margin: 0 auto;
  }
}

@media all and (max-width: 639px) {
  #l-header {
    z-index: 300;
    -webkit-animation: none;
            animation: none;
  }
}

#l-header.is-fixed {
  position: fixed;
  padding: 0;
  top: 0px;
  background-color: #753a6b;
  z-index: 101;
}

#l-header.is-fixed .inner {
  padding: 10px 0;
}

#l-header.is-fixed .inner #logo {
  width: 240px;
}

#l-header.is-fixed .inner #logo .logo1 {
  display: none;
  margin: 0 auto;
  text-align: center;
}

#l-header.is-fixed .inner #logo .logo2 {
  display: block;
  margin: 0 auto;
  text-align: center;
}

#l-header.is-fixed #header_nav ul li a:hover .eng, #l-header.is-fixed #header_nav ul li a.active .eng {
  color: #604C3F;
}

#l-header.is-fixed .header_sns li.sns__tel i {
  color: #753a6b;
}

#l-header.is-fixed .header_sns li.sns__tel:after {
  background-color: #fff;
}

#l-header.is-fixed .header_sns li.sns__tel:before {
  background-color: white;
}

#l-header .inner {
  max-width: 100%;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  padding: 30px 0px;
  position: relative;
  z-index: 100;
}

#l-header .inner #logo {
  width: 152px;
  position: relative;
  z-index: 300;
  -webkit-animation: load-bg 1s ease-out 1.6s forwards;
          animation: load-bg 1s ease-out 1.6s forwards;
  opacity: 1;
}

#l-header .inner #logo .logo1 {
  display: block;
  margin: 0 auto;
  text-align: center;
}

#l-header .inner #logo .logo2 {
  display: none;
  margin: 0 auto;
  text-align: center;
}

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

#l-header .inner #logo:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: -1;
  -webkit-animation: load-bg 1s ease-out 1.6s forwards;
          animation: load-bg 1s ease-out 1.6s forwards;
}

@media all and (max-width: 1367px) {
  #l-header .inner {
    display: block;
  }
  #l-header .inner #logo {
    margin: 0 auto 20px;
    text-align: center;
  }
}

@media all and (max-width: 896px) {
  #l-header .inner {
    min-width: initial;
  }
}

@media all and (max-width: 639px) {
  #l-header .inner {
    padding: 0;
  }
  #l-header .inner #logo {
    width: 210px;
  }
}

.header_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

#header_nav {
  position: relative;
  text-align: center;
  z-index: 100;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 2px solid #fff;
}

#header_nav 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;
  background-color: #fff;
}

#header_nav ul li {
  position: relative;
}

#header_nav ul li a {
  display: block;
  position: relative;
  line-height: 1.5;
  font-size: 1.8rem;
  padding: 10px 20px;
  color: #333;
}

#header_nav ul li a span {
  display: block;
  font-size: 1.3rem;
  font-family: "Philosopher", sans-serif;
  font-weight: 300;
  color: #333;
  position: relative;
  letter-spacing: 0.1rem;
}

#header_nav ul li a:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#header_nav ul li a:after {
  position: absolute;
  content: "";
  -webkit-transition: 0.2s width ease-in;
  transition: 0.2s width ease-in;
}

@media all and (max-width: 1100px) {
  #header_nav ul li a:after {
    right: 0;
    text-align: center;
    margin: 0 auto;
  }
}

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

#header_nav ul li a:hover .eng, #header_nav ul li a.active .eng {
  color: #753a6b;
  -webkit-animation: circle-anime2 4s ease-out 1.5s infinite;
          animation: circle-anime2 4s ease-out 1.5s infinite;
}

#header_nav ul li .sub-menu {
  display: none;
  border-top: 0;
  display: none;
  margin: 0;
  position: absolute;
  width: 260px;
  top: 60px;
  left: 12px;
  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: #753a6b;
  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:before {
  display: none;
}

#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:hover {
  background-color: #979797;
}

#header_nav ul li:hover .sub-menu, #header_nav ul li.active .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  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(195, 109, 88, 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(174, 190, 206, 0.4);
}

#header_nav ul li:hover .header_link.type3:before, #header_nav ul li.active .header_link.type3:before {
  background-color: rgba(235, 97, 42, 0.4);
}

#header_nav ul li:hover .header_link.type4:before, #header_nav ul li.active .header_link.type4:before {
  background-color: rgba(216, 206, 63, 0.4);
}

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

@media all and (max-width: 1480px) {
  #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 {
    margin: 0px auto 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #header_nav ul li a {
    font-size: 1.4rem;
    padding: 10px;
  }
}

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

@-webkit-keyframes circle-anime {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.8;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes circle-anime {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.8;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 0;
  }
}

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

/* header sns
----------------------------------*/
.header_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 30;
}

.header_sns li {
  padding: 0 10px;
  font-size: 3rem;
  position: relative;
  z-index: 30;
}

.header_sns li i {
  color: #fff;
  position: relative;
  z-index: 30;
}

.header_sns li:after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0%;
  background-color: #753a6b;
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
}

.header_sns li:before {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0%;
  background-color: #753a6b;
  opacity: 0.8;
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: circle-anime 2s ease-out infinite;
          animation: circle-anime 2s ease-out infinite;
  opacity: 0;
}

.header_sns li.sns__tel {
  font-size: 2rem;
  position: relative;
  z-index: 1;
  margin-left: 20px;
}

.header_sns li.sns__tel:after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0%;
  display: block;
  background-color: #753a6b;
  border-radius: 50%;
  z-index: -1;
  opacity: 1;
}

.header_sns li.sns__tel:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0%;
  background-color: #753a6b;
  opacity: 0.8;
  border-radius: 50%;
  z-index: -1;
  display: block;
  -webkit-animation: circle-anime 2s ease-out infinite;
          animation: circle-anime 2s ease-out infinite;
  opacity: 1;
}

.header_sns li:hover i {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.header_sns li:hover.sns__facebook i {
  color: #1977F3;
}
.header_sns li:hover.sns__instagram i {
  color: #f319bd;
}

.header_sns li:hover.sns__twitter i {
  color: #C36D58;
}

.header_sns li:hover.sns__tel i {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.header_sns li:hover.sns__tel:before {
  -webkit-animation: none;
          animation: none;
}

@media all and (max-width: 639px) {
  .header_sns li {
    padding: 0 10px;
    font-size: 1.8rem;
  }
  .header_sns li.sns__tel {
    font-size: 1.3rem;
    margin-left: 8px;
  }
  .header_sns li.sns__tel a i {
    color: #753a6b;
  }
  .header_sns li.sns__tel:after {
    background-color: #fff;
    width: 30px;
    height: 30px;
  }
  .header_sns li.sns__tel:before {
    background-color: white;
    width: 30px;
    height: 30px;
  }
}

/* nav
----------------------------------*/
#nav-toggle {
  display: none;
  position: fixed;
  top: 50px;
  right: 10px;
  width: 54px;
  height: 54px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 1;
}

#nav-toggle:before {
  position: absolute;
  content: "";
  left: -19px;
  top: -22px;
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 50px;
  z-index: -1;
  border: 4px solid #753a6b;
}

#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: "Philosopher", sans-serif;
  font-weight: 300;
}

#nav-toggle span {
  width: 100%;
  height: 1px;
  left: 0;
  display: block;
  background: #333;
  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(3) {
  top: 20px;
}

@media all and (max-width: 896px) {
  #nav-toggle {
    top: 30px;
    right: 20px;
  }
  #nav-toggle:before {
    left: -4px;
    top: -9px;
  }
}

@media all and (max-width: 639px) {
  #nav-toggle {
    top: 20px;
    right: 20px;
  }
}

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

#sp_btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 20;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#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;
  padding-bottom: 15px;
  margin: 0 auto;
}

#sp_btn ul li {
  padding: 0 5px;
}

#sp_btn ul li a {
  display: block;
  padding: 7px 30px;
  text-align: center;
  background: #fefefe;
  color: #753a6b;
  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: "Philosopher", sans-serif;
  font-weight: 300;
  color: #111;
}

#sp_btn ul li a.sp_btn_icon {
  background: transparent;
  width: 40px;
  padding: 7px 0;
}

#sp-nav {
  background: #753a6b;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#sp-nav .inner {
  width: 100%;
  margin: 0 auto;
  height: 100%;
}

#sp-nav .inner .head-nav-logo {
  text-align: center;
  width: 340px;
  margin: 0px auto 30px;
}

#sp-nav .inner .head-nav-detail {
  border-top: 1px solid #ddd;
  max-width: 400px;
  margin: 0 auto;
  padding: 30px 20px 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;
}

#sp-nav .inner .head-nav-detail a {
  margin: 0 2%;
  -webkit-transform: 0.4s;
          transform: 0.4s;
}

#sp-nav .inner .head-nav-detail a:hover {
  opacity: 0.4;
  -webkit-transform: 0.4s;
          transform: 0.4s;
}

#sp-nav .inner .head-nav-detail .txt a {
  display: inline-block;
}

#sp-nav .inner .photo {
  height: 90%;
  border-radius: 0 0 50px 0;
  overflow: hidden;
}

#sp-nav .inner .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#sp-nav .inner .txtarea {
  padding: 50px 50px 0;
}

#sp-nav .inner .txtarea-inner {
  background-color: #fff;
  border-radius: 50px 50px 0 0;
  padding: 50px 40px;
  height: 100%;
}

@media all and (max-width: 896px) {
  #sp-nav .inner {
    display: block;
  }
  #sp-nav .inner .photo {
    width: 84%;
    height: 100%;
    max-height: 200px;
    overflow: hidden;
  }
  #sp-nav .inner .txtarea {
    padding: 50px 50px 0;
    width: 100%;
    margin: 0 auto;
  }
  #sp-nav .inner .head-nav-logo {
    width: 160px;
  }
  #sp-nav .inner .head-nav-detail {
    border-top: 1px solid #ddd;
    max-width: 400px;
    margin: 0 auto;
    padding: 30px 0px 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;
  }
  #sp-nav .inner .head-nav-detail a {
    margin: 0 2%;
    -webkit-transform: 0.4s;
            transform: 0.4s;
  }
  #sp-nav .inner .head-nav-detail a:hover {
    opacity: 0.4;
    -webkit-transform: 0.4s;
            transform: 0.4s;
  }
  #sp-nav .inner .head-nav-detail .txt a {
    display: inline-block;
  }
}

@media all and (max-width: 639px) {
  #sp-nav .inner {
    height: 100vh;
  }
  #sp-nav .inner .head-nav-logo {
    text-align: center;
    width: 160px;
    margin-bottom: 0px;
  }
  #sp-nav .inner .photo {
    max-height: 100%;
    height: 30%;
    margin: 0 auto 0 0;
    border-radius: 0 0 20px 0;
    position: absolute;
    top: 0;
    left: 0;
  }
  #sp-nav .inner .txtarea {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 50px 30px 0;
    border-radius: 20px 20px 0 0;
  }
  #sp-nav .inner .txtarea-inner {
    padding: 70px 15px 50px;
    border-radius: 20px 20px 0 0;
  }
  #sp-nav .inner .head-nav-detail {
    border-top: 1px solid #ddd;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0px;
    width: 80%;
  }
  #sp-nav .inner .head-nav-detail a {
    margin: 0 5px;
    padding: 0;
    width: 30px;
  }
}

#sp-nav a {
  display: block;
  color: #232323;
  text-decoration: none;
  padding: 10px 0;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
  font-weight: 600;
}

#sp-nav a span {
  display: block;
  color: #753a6b;
  font-family: "Philosopher", sans-serif;
  font-weight: 300;
}

#sp-nav a:hover {
  color: #C36D58;
}

#sp-nav a:active {
  color: #753a6b;
}

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

#sp-nav ul {
  list-style: none;
  max-width: 300px;
  margin: 0 auto 40px;
}

#sp-nav ul li {
  width: 100%;
  margin: 0 auto 10px 0;
  opacity: 0;
  -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;
  text-align: left;
}

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

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

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

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

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

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

@media all and (max-width: 896px) {
  #sp-nav ul {
    overflow-y: auto;
    max-width: 100%;
    max-height: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 10px;
  }
  #sp-nav ul li {
    width: 48%;
    margin: 0 1% 10px;
  }
}

@media all and (max-width: 639px) {
  #sp-nav ul {
    display: block;
    max-width: 200px;
    text-align: left;
    margin: 12% auto 0;
  }
  #sp-nav ul li {
    width: 100%;
    margin: 0 auto 5%;
  }
  #sp-nav ul li a {
    font-size: 12px;
    padding: 0;
  }
  #sp-nav ul li a span {
    font-size: 10px;
  }
  #sp-nav ul li a:hover {
    color: #C36D58;
  }
  #sp-nav ul li a:active {
    color: #753a6b;
  }
}

/* open */
.open {
  overflow: hidden;
}

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

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

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

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

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

@media all and (max-width: 639px) {
  #page-top {
    bottom: 10px;
    right: 10px;
  }
  #page-top a {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

/* swiper
----------------------------------*/
@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}
@keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}

.swiper-container {
  width: 30%;
  margin: 0 1%;
}

.swiper-container.type1 {
  margin: 30px 1% 0;
}

.swiper-container.type1 .slide-img {
  overflow: hidden;
  width: 100%;
  height: 500px;
}

.swiper-container.type1 .slide-img:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-color: #753a6b;
  width: 100%;
  height: 100%;
  -webkit-animation: bg-anime 0.8s ease-in 1s forwards;
          animation: bg-anime 0.8s ease-in 1s forwards;
  z-index: 10;
}

.swiper-container.type2 .slide-img {
  overflow: hidden;
  width: 100%;
  height: 600px;
}

.swiper-container.type2 .slide-img:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-color: #753a6b;
  width: 100%;
  height: 100%;
  -webkit-animation: bg-anime 0.8s ease-in 1s forwards;
          animation: bg-anime 0.8s ease-in 1s forwards;
  z-index: 10;
}

.swiper-container.type3 {
  margin: 30px 1% 0;
}

.swiper-container.type3 .slide-img {
  overflow: hidden;
  width: 100%;
  height: 500px;
}

.swiper-container.type3 .slide-img:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-color: #753a6b;
  width: 100%;
  height: 100%;
  -webkit-animation: bg-anime 0.8s ease-in 1s forwards;
          animation: bg-anime 0.8s ease-in 1s forwards;
  z-index: 10;
}

@media all and (max-width: 639px) {
  .swiper-container.type1 {
    margin: 30px 1% 0;
  }
  .swiper-container.type1 .slide-img {
    overflow: hidden;
    width: 100%;
    height: 150px;
  }
  .swiper-container.type2 .slide-img {
    overflow: hidden;
    width: 100%;
    height: 200px;
  }
  .swiper-container.type3 {
    margin: 30px 1% 0;
  }
  .swiper-container.type3 .slide-img {
    overflow: hidden;
    width: 100%;
    height: 150px;
  }
}

.slide-img {
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

#slideshow {
  width: 100%;
  margin: 200px auto 0;
  padding: 0 0 100px 0;
  position: relative;
  z-index: 1;
}

#slideshow:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 477px;
  background: url(../img/header-top.png) no-repeat;
  background-size: cover;
  background-position: center;
  top: -36%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}

#slideshow:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 53px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  background: url(../img/main-line.png) no-repeat;
  background-size: cover;
  background-position: center;
}

@media all and (max-width: 1367px) {
  #slideshow {
    margin: 270px auto 0;
  }
  #slideshow:before {
    top: -40%;
  }
}

@media all and (max-width: 639px) {
  #slideshow {
    margin: 200px auto 0;
  }
  #slideshow:before {
    top: -70%;
  }
}

#slide-wrap {
  position: relative;
  margin: 0px auto 0px;
  z-index: 2;
}

#slide-wrap .slide-box {
  opacity: 1;
  width: 90%;
  position: relative;
  right: 0;
  bottom: 0%;
  left: 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media all and (max-width: 639px) {
  #slide-wrap {
    padding-bottom: 20px;
  }
}

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

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

@-webkit-keyframes catch-anime {
  0% {
    opacity: 1;
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes catch-anime {
  0% {
    opacity: 1;
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

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

@keyframes catch-anime2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.catch {
  z-index: 1;
  position: absolute;
  margin: 0px auto 0 0;
  bottom: 38%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

.catch.on {
  opacity: 1;
  -webkit-transition: 2s;
  transition: 2s;
}

@media all and (max-width: 1680px) {
  .catch {
    bottom: 22%;
  }
}

.catch-txt {
  width: 940px;
  margin: 0 auto;
  text-align: center;
}

@media all and (max-width: 1100px) {
  .catch-txt {
    width: 80%;
  }
}

@media all and (max-width: 639px) {
  .catch-txt {
    width: 70%;
  }
}

.catch-txtarea {
  z-index: 1;
  position: absolute;
  margin: 0px auto 0 0;
  bottom: 10%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

/* footer
----------------------------------*/
footer {
  padding: 100px 0 0;
  position: relative;
  background-color: #753a6b;
  z-index: 2;
  background: url(../img/bg-purple2.jpg) repeat-x;
}

footer:before {
  position: absolute;
  content: "";
  width: 398px;
  height: 398px;
  background: url(../img/mandara02.png) no-repeat;
  background-size: cover;
  bottom: -100px;
  left: -100px;
  z-index: -1;
}

footer:after {
  position: absolute;
  content: "";
  width: 398px;
  height: 398px;
  background: url(../img/mandara02.png) no-repeat;
  background-size: cover;
  top: -100px;
  right: -100px;
  z-index: -1;
}

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

#l-footer {
  font-size: 1.4rem;
  position: relative;
  width: calc(100% - 40px);
  padding: 0px 10px 10px;
  margin: 0 auto;
}

#l-footer .inner {
  margin: 0 auto;
  position: relative;
  z-index: 3;
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#l-footer .footer__leftBox {
  width: 48%;
}

#l-footer .footer__rightBox {
  width: 48%;
  margin: 30px auto 0 4%;
}

#l-footer .footer__rightBox .btn {
  margin: 20px auto 0;
}

#l-footer .footer__rightBox .btn a {
  background-color: #fff;
  color: #C36D58;
}

#l-footer .footer__rightBox .btn a:after {
  background-color: #fff;
}

#l-footer .footer__rightBox .btn a:before {
  background-color: white;
}

#l-footer .flogobox {
  width: 100%;
  margin: 0 auto 10px;
}

#l-footer .fbox {
  width: 100%;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

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

@media all and (max-width: 896px) {
  #l-footer .inner {
    display: block;
  }
  #l-footer .footer__leftBox {
    width: 100%;
  }
  #l-footer .footer__rightBox {
    width: 100%;
    margin: 20px auto 0;
  }
  #l-footer .flogobox {
    width: 100%;
    margin-bottom: 20px;
  }
  #l-footer .fbox {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
  }
}

@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
  }
  #l-footer .inner {
    padding: 30px 0px;
    font-size: 1.1rem;
  }
}

.footer_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer_sns li {
  width: 40px;
  font-size: 3rem;
  color: #fff;
}

.footer_sns li a {
  color: #fff;
}

.footer_sns li a i {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.footer_sns li:hover a i {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

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

.footer__navBox {
  position: relative;
  border: 2px solid #fff;
  padding: 30px;
  border-radius: 20px;
}

.footer__navBox .footer__naviTitle {
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  font-size: 2rem;
  font-family: "Philosopher", sans-serif;
  font-weight: 300;
  color: #fff;
}

.footer__navBox .footer__naviTitle span {
  background-color: #8ab76f;
  padding: 0 20px;
}

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

/* footer_navi
----------------------------------*/
.footer_navi {
  margin: 0px auto;
}

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

.footer_navi ul li {
  width: 31%;
  margin: 0 1%;
}

@media all and (max-width: 1100px) {
  .footer_navi ul li {
    padding: 0px;
  }
}

.footer_navi ul li a {
  color: #ffffff;
  font-size: 1.3rem;
  position: relative;
  padding: 0 30px;
  display: block;
  margin: 10px auto;
  font-weight: 600;
}

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

.footer_navi ul li a .eng {
  display: block;
  font-family: "Philosopher", sans-serif;
  font-weight: 300;
}

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

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

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

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

.flogo {
  margin: 0 auto 20px;
  min-height: 0;
  text-align: center;
  max-width: 260px;
}

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

.copyright {
  padding: 30px 0 20px;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  color: white;
}

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

/* loading mask
----------------------------------*/
.mask-img {
  mask-image: url("../img/topMessage-logo.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: auto;
  /* Chrome, Safari用 */
  -webkit-mask-image: url("../img/topMessage-logo.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: auto;
}

/* contents
----------------------------------*/
#main {
  float: left;
  width: 76%;
}

@media all and (max-width: 896px) {
  #main {
    float: none;
    width: 100%;
  }
}

#side {
  float: right;
  position: -webkit-sticky;
  position: sticky;
  right: 0;
  top: 0;
  width: 21%;
  padding-right: 10px;
}

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

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

.btn.btn--white a {
  background-color: #fff;
  color: #C36D58;
}

.btn.btn--white a:after {
  background-color: #fff;
}

.btn.btn--white a:before {
  background-color: white;
}

.btn a {
  margin: 0 auto;
  display: block;
  width: 90%;
  position: relative;
  background-color: #C36D58;
  color: #fff;
  font-size: 1.5rem;
  padding: 15px 0px;
  z-index: 1;
  letter-spacing: 5px;
  font-family: "Philosopher", sans-serif;
  font-weight: 300;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50px;
}

.btn a:after {
  position: absolute;
  content: "";
  width: 90%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0%;
  background-color: #C36D58;
  z-index: -1;
  border-radius: 50px;
}

.btn a:before {
  position: absolute;
  content: "";
  width: 86%;
  height: 90%;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 5%;
  background-color: #c36d58;
  opacity: 0.8;
  z-index: -1;
  -webkit-animation: circle-anime 2s ease-out infinite;
          animation: circle-anime 2s ease-out infinite;
  border-radius: 50px;
}

.btn a:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  letter-spacing: 10px;
}

.btn a:hover:before {
  -webkit-animation: none;
          animation: none;
}

.btn a:hover:after {
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.3;
}

@media all and (max-width: 896px) {
  .btn a {
    width: 94%;
    padding: 8px 20px;
    font-size: 1.4rem;
  }
  .btn a:after {
    width: 94%;
  }
  .btn a:before {
    width: 90%;
  }
}

@media all and (max-width: 639px) {
  .btn a {
    width: 94%;
    padding: 8px 20px;
    font-size: 1.2rem;
  }
}

/* page-title
----------------------------------*/
.topbox #header_nav ul li a.active .eng, .topbox #header_nav ul li a:hover .eng {
  color: #604C3F;
}

.topbox .header_sns li.sns__tel a i {
  color: #753a6b;
}

.topbox .header_sns li.sns__tel:after {
  background-color: #fff;
}

.topbox .header_sns li.sns__tel:before {
  background-color: white;
}

.page-titleBox {
  padding: 200px 160px 30px;
  position: relative;
  z-index: 1;
}

.page-titleBox:before {
  position: absolute;
  content: "";
  width: 1200px;
  height: 300px;
  right: 0;
  top: 0;
  background: url(../img/sakura-bg.png) no-repeat;
  background-size: cover;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
  z-index: -1;
}

@media all and (max-width: 1367px) {
  .page-titleBox {
    padding: 150px 20px 0px;
  }
}

@media all and (max-width: 896px) {
  .page-titleBox {
    padding: 200px 20px 0px;
  }
}

@media all and (max-width: 639px) {
  .page-titleBox {
    padding: 130px 20px 0px;
  }
}

.page-title {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0px auto 50px;
  width: 80%;
}

.page-title.type1 {
  background: url(../img/page-title01.jpg) no-repeat center 100%/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:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #202020;
  opacity: 0.4;
}

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

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

.page-title .inner .page-lead .eng {
  display: block;
  font-family: "Philosopher", sans-serif;
  font-weight: 300;
  font-size: 3rem;
}

.page-title .inner .page-lead .ja {
  color: #fff;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
}

@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: 50px auto 0px;
  }
}

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

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

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

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

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
  background-color: #fff;
}

.tbl th,
.tbl td {
  padding: 10px 15px;
  border: 1px solid #ddd;
}

.tbl th {
  color: #fff;
  background: #753a6b;
  width: 25%;
}

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

.tbl td {
  vertical-align: middle;
}

.tbl td.num {
  width: 10%;
  max-width: 200px;
}

@media all and (max-width: 639px) {
  .tbl th {
    width: 25%;
    text-align: left;
    font-size: 1.2rem;
  }
  .tbl th,
  .tbl td {
    padding: 5px 10px;
    font-size: 1.2rem;
  }
  .tbl td.num {
    width: 20%;
    max-width: 200px;
    min-width: 40px;
  }
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 18%;
  height: 0;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.ggmap.type-top {
  padding-bottom: 18%;
}

@media all and (max-width: 639px) {
  .ggmap.type-top {
    margin-bottom: 4px;
  }
}

@media all and (max-width: 1100px) {
  .ggmap {
    padding-bottom: 28%;
  }
}

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

/* Gallery-list
----------------------------------*/
.gallerarea {
  max-width: 1500px;
  margin: 0 auto 30px;
  padding: 40px;
  background-color: #fff;
}

@media all and (max-width: 639px) {
  .gallerarea {
    padding: 40px 20px;
  }
}

.gallery-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery-list li {
  width: 22%;
  margin: 0 1% 20px;
  border: 1px solid #363636;
  padding: 10px;
  background-color: #fff;
}

.gallery-list li img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-list li .txt {
  margin-top: 10px;
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
}

@media all and (max-width: 639px) {
  .gallery-list li {
    width: 98%;
    margin-bottom: 10px;
  }
  .gallery-list li img {
    width: 100%;
    height: 120px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .gallery-list li .txt {
    font-size: 1.5rem;
  }
}

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

.blogbox {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  padding: 50px;
}

.blogbox .blogbox__title {
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-weight: bold;
  color: #753a6b;
  font-size: 2rem;
}

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

.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: 23%;
  margin: 0 1% 20px;
  position: relative;
  padding: 15px 15px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid #ddd;
}

@media all and (max-width: 1100px) {
  .blog-wrap > li {
    width: 31%;
  }
}

@media all and (max-width: 896px) {
  .blog-wrap > li {
    width: 48%;
  }
}

.blog-wrap > li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

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

@media all and (max-width: 639px) {
  .blog-wrap li {
    width: 100%;
    margin: 0 auto 20px;
    display: block;
  }
  .blog-wrap li .blog-img {
    width: 100%;
  }
  .blog-wrap li .blog-detail {
    width: 100%;
    padding: 10px;
  }
  .blog-wrap li .blog-txt {
    padding: 10px 0;
  }
}

.blog-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.blog-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}

.blog-img:hover img {
  opacity: 1 !important;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.blog-detail {
  width: 100%;
  margin: 0 auto;
  padding: 10px;
}

.blog-cat {
  background-color: #C36D58;
  color: #fff;
  font-size: 13px;
  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 {
  width: 100px;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #595959;
  font-size: 12px;
  position: relative;
}

.blog-date:before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  top: 0;
  left: -5px;
  background-color: #ddd;
}

.blog-date2 {
  color: #42213c;
  font-size: 0.9em;
  margin-bottom: 5px;
  margin-right: 5px;
}

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

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

.blog-txt {
  line-height: 1.5;
  color: #333;
  font-size: 1.7rem;
  padding-top: 10px;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  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: #753a6b;
  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: #f4f4f4;
}

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

.prv dt {
  color: #753a6b;
  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: #A57B77;
}

@media all and (max-width: 639px) {
  .blog-month ul li {
    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: #753a6b;
}

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

/* breadcrumb
----------------------------------*/
.breadcrumb {
  padding: 10px 0px;
  z-index: 101;
  margin: 0px auto 70px;
  font-size: 1.2rem;
  position: relative;
  width: 80%;
}

.breadcrumb li {
  display: inline;
  color: #753a6b;
}

.breadcrumb li a {
  color: #d8ce3f;
}

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

@media all and (max-width: 639px) {
  .breadcrumb {
    font-size: 10px;
    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: #fff;
  background: #753a6b;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  position: relative;
  top: -2px;
}

.form dl dt span.nini {
  background: #d8ce3f;
  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: #ffffff;
}

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

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

.form .select_arrow {
  position: relative;
}

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

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

.form button {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  border: 1px solid #363636;
  font-weight: 600;
  padding: 12px 5px;
  margin: 20px auto 0;
  width: 250px;
  background: #363636;
}

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

.form button:before {
  font-weight: normal;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 10px;
}

.form .select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 192px;
  min-width: 12em;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #333;
}

.form .select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  width: -webkit-calc(100% + 5em);
  margin: 0;
  padding: 11px 35px 11px 11px;
  padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}

.form .entypo-down-open-mini:before {
  font-family: "FontAwesome";
  content: "\f0ab";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: 0.75rem;
  margin-top: -8px;
  margin-top: -0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #753a6b;
}

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

.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}

.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #753a6b;
  z-index: 1;
}

.form label.radio_text input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  -webkit-box-shadow: 20px -1px #fff;
          box-shadow: 20px -1px #fff;
}

.form label.radio_text input[type="radio"]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form label.radio_text input[type="radio"]:focus {
  opacity: 0.2;
  -webkit-box-shadow: 20px -1px #eeebda;
          box-shadow: 20px -1px #eeebda;
}

.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
}

.form label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
  padding: 1px;
}

.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #753a6b;
  border-bottom: 3px solid #753a6b;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}

@media all and (max-width: 639px) {
  .form label.checkbox_text:after {
    margin-top: -18px;
  }
}

.form label.checkbox_text input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  -webkit-box-shadow: 41px 0px #fff;
          box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}

.form label.checkbox_text input[type="checkbox"]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form label.checkbox_text input[type="checkbox"]:checked:focus {
  -webkit-box-shadow: 40px 0px #666;
          box-shadow: 40px 0px #666;
  opacity: 0.1;
}

.form label.checkbox_text input[type="checkbox"]:focus {
  -webkit-box-shadow: 41px 0px #eee;
          box-shadow: 41px 0px #eee;
}

.form input[type="text"],
.form textarea {
  font-size: 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;
  }
}

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

.thanks {
  padding: 40px;
  border: 1px solid #753a6b;
  background-color: #fff;
  max-width: 700px;
  margin: 0 auto;
}

.thanks .btn04 {
  position: relative;
  z-index: 1;
}

@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: #753a6b;
  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_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -2%;
  margin-bottom: -4%;
}

@media all and (max-width: 639px) {
  .gallery_ul {
    margin-left: auto;
    margin-right: auto;
  }
}

.gallery_ul > li {
  width: 31.33%;
  margin-left: 2%;
  margin-bottom: 4%;
  font-weight: 600;
}

.gallery_ul > li .photobox-wrap {
  width: 100%;
  height: 220px;
  text-align: center;
  overflow: hidden;
  background: #aaa;
  margin-bottom: 10px;
}

.gallery_ul > li .photobox-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit:contain;";
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

@media all and (max-width: 896px) {
  .gallery_ul > li {
    width: 48%;
  }
}

@media all and (max-width: 639px) {
  .gallery_ul > li {
    width: 85%;
    margin: 0 auto 30px;
  }
  .gallery_ul > li .photobox-wrap {
    height: 180px;
  }
}

.comment {
  font-size: 1.4rem;
  letter-spacing: 0;
  padding: 0 5px;
  color: #604C3F;
}

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

/*アンカーリンク*/
.anchor-link {
  margin: 100px auto 0;
}

.anchor-link .anchorbox {
  margin: 0 20px;
  width: 380px;
}

@media all and (max-width: 639px) {
  .anchor-link .anchorbox {
    width: 100%;
    margin: 0 auto;
  }
}

.anchor-link .anchorbox a {
  display: block;
}

.anchor-link .anchorbox a:hover {
  opacity: 0.7;
  -webkit-filter: brightness(0.85) drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.6));
          filter: brightness(0.85) drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.6));
}

/*photoギャラリー*/
.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery li {
  width: 24%;
  margin: 0 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;";
  border-radius: 5px;
  /*IE対策*/
}

.gallery li p {
  font-size: 14px;
  margin: 3px 0 10px;
}

@media all and (max-width: 896px) {
  .gallery li {
    width: 48%;
    margin: 0 1% 0px;
  }
  .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;
}

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

.mainContents .mainContents__inner:before {
  position: absolute;
  content: "";
  width: 711px;
  height: 711px;
  top: -140px;
  left: -100px;
  background: url(../img/mandara.png) no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.6;
}

.mainContents .mainContents__inner:after {
  position: absolute;
  content: "";
  width: 520px;
  height: 540px;
  bottom: -200px;
  right: -100px;
  background: url(../img/mandara.png) no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.6;
}

.mainContents .mainContents__inner .topGreet__inner {
  position: relative;
  margin: 0 auto;
}

.mainContents .mainContents__inner .topGreet__subphoto {
  position: absolute;
  left: -50px;
  bottom: 50px;
  z-index: 2;
}

.mainContents .mainContents__inner .topGreet__mainArea {
  width: 60%;
  margin: 0 10% 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.mainContents .mainContents__inner .topGreet__subArea {
  width: 60%;
  margin: 50px 10% 0 auto;
  position: relative;
  padding: 100px;
  line-height: 2.6;
  z-index: 1;
}

.mainContents .mainContents__inner .topGreet__subArea:before {
  position: absolute;
  content: "";
  z-index: -1;
  height: 100%;
  left: -230px;
  top: 0;
  background: url(../img/bg-orange.jpg) no-repeat;
  background-size: contain;
  opacity: 0.6;
}

.mainContents .mainContents__title {
  margin-bottom: 40px;
}

.mainContents .mainContents__title .eng {
  display: block;
  font-family: "Philosopher", sans-serif;
  font-weight: 300;
  font-size: 4rem;
  font-weight: 200;
  color: #753a6b;
  line-height: 1;
}

.mainContents .mainContents__title .ja {
  font-weight: bold;
  font-size: 2rem;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
}

.mainContents .mainContents__title.title--center {
  text-align: center;
  margin: 0 auto;
}

.mainContents .mainContents__title.title--icon {
  position: relative;
  padding-bottom: 50px;
  margin-bottom: 20px;
}

.mainContents .mainContents__title.title--icon .eng {
  position: relative;
  padding-bottom: 50px;
}

.mainContents .mainContents__title.title--icon .eng:before {
  position: absolute;
  content: "";
  width: 33px;
  height: 34px;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 6px;
  background: url(../img/title-icon.png) no-repeat;
  background-size: cover;
}

.mainContents .mainContents__txt {
  font-size: 1.6rem;
  font-weight: bold;
}

.mainContents .mainContents__txt.txt--main {
  line-height: 2.6;
}

.mainContents .mainContents__maintxt {
  font-size: 2rem;
  font-weight: bold;
}

.mainContents .mainContents__maintxt.txt--main {
  line-height: 2.6;
}

.mainContents .mainContents__picktxt span {
  background-color: #C36D58;
  padding: 4px 15px;
  color: #fff;
  display: inline-block;
}

@media all and (max-width: 896px) {
  .mainContents .mainContents__title {
    font-size: 1.6rem;
  }
  .mainContents .mainContents__title .eng {
    font-size: 1.8rem;
  }
  .mainContents .mainContents__title .ja {
    font-size: 1.6rem;
  }
  .mainContents .mainContents__txt {
    font-size: 1.4rem;
    font-weight: bold;
  }
  .mainContents .mainContents__txt.txt--main {
    line-height: 2;
  }
}

@media all and (max-width: 639px) {
  .mainContents .mainContents__inner {
    padding: 50px 15px;
  }
  .mainContents .mainContents__title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  .mainContents .mainContents__title .eng {
    font-size: 1.6rem;
  }
  .mainContents .mainContents__title .ja {
    font-size: 1.4rem;
  }
  .mainContents .mainContents__title.title--icon {
    position: relative;
    padding-bottom: 0px;
    margin-bottom: 20px;
  }
  .mainContents .mainContents__title.title--icon .eng {
    position: relative;
    padding-bottom: 50px;
  }
  .mainContents .mainContents__txt {
    font-size: 1.2rem;
    font-weight: bold;
  }
  .mainContents .mainContents__txt.txt--main {
    line-height: 1.8;
  }
  .mainContents .mainContents__maintxt {
    font-size: 1.4rem;
    font-weight: bold;
  }
  .mainContents .mainContents__maintxt.txt--main {
    line-height: 2.6;
  }
}

.mainContents--top .topContact {
  position: relative;
  margin: 50px auto 0;
}

.mainContents__noren {
  position: relative;
}

.mainContents__noren:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 180%;
  top: -90%;
  left: 0;
  right: 0;
  background: url(../img/bg-noren.png) no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* top content
----------------------------------*/
.topGreet {
  position: relative;
  margin: 0 auto;
  padding: 100px 0;
  z-index: 1;
}

.topGreet:before {
  position: absolute;
  content: "";
  width: 711px;
  height: 711px;
  top: -140px;
  left: -100px;
  background: url(../img/mandara.png) no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.6;
}

.topGreet:after {
  position: absolute;
  content: "";
  width: 520px;
  height: 540px;
  bottom: -200px;
  right: -100px;
  background: url(../img/mandara.png) no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.6;
}

.topGreet .topGreet__inner {
  position: relative;
  margin: 0 auto;
}

.topGreet .topGreet__subphoto {
  position: absolute;
  left: -50px;
  bottom: 50px;
  z-index: 2;
}

.topGreet .topGreet__mainArea {
  width: 60%;
  margin: 0 10% 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.topGreet .topGreet__subArea {
  width: 60%;
  margin: 50px 10% 0 auto;
  position: relative;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-weight: bold;
  color: #333;
  padding: 100px;
  line-height: 2.6;
  z-index: 1;
}

.topGreet .topGreet__subArea:before {
  position: absolute;
  content: "";
  z-index: -1;
  height: 100%;
  left: -230px;
  top: 0;
  background: url(../img/bg-orange.jpg) no-repeat;
  background-size: contain;
  opacity: 0.6;
}

.topGreet .topGreet__title {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  width: 15%;
}

.topGreet .topGreet__txtarea {
  width: 70%;
  margin: 0 0 0 auto;
  position: relative;
  z-index: 1;
}

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

.topUse {
  background-color: #fff;
  position: relative;
  margin-top: 50px;
}

.topUse:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 68px;
  background: url(../img/line-deko.png) repeat-x;
  background-size: 1477px 68px;
  background-position: center;
  top: -38px;
  z-index: 1;
}

.topUse .topUse__inner {
  position: relative;
  width: 80%;
  margin: 0 auto;
  padding: 150px 0;
}

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

.topUse__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 80px auto 0;
  padding-bottom: 50px;
}

.topUse__list li {
  width: 23%;
  margin: 0 1% 0px;
  position: relative;
}

.topUse__list li:nth-child(2) {
  margin-top: 300px;
}

.topUse__list li:nth-child(2) .list__txtarea {
  position: absolute;
  right: auto;
  left: -240px;
  top: 140px;
}

.topUse__list li:nth-child(3) {
  margin-top: 100px;
}

.topUse__list li:nth-child(4) {
  margin-top: 400px;
}

.topUse__list li:nth-child(4) .list__txtarea {
  position: absolute;
  right: auto;
  left: -240px;
  top: 140px;
}

.topUse__list .list__photo {
  opacity: 0;
}

.topUse__list .list__txtarea {
  position: absolute;
  right: -240px;
  top: 40px;
  width: 60%;
}

.topUse__list .list__txtarea:before {
  position: absolute;
  content: "";
  width: 200px;
  height: 1px;
  bottom: -40px;
  left: 0;
  background-color: #C36D58;
}

.topUse__list .list__txtarea .list__subtxt {
  font-family: "Philosopher", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  color: #C36D58;
  display: block;
}

.topUse__list .list__txtarea .list__title {
  font-size: 2.6rem;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
}

.topPoint {
  position: relative;
  margin: -8% auto 0;
  width: 100%;
  padding: 100px 0;
  z-index: 1;
}

.topPoint.bg-on.bg-anime-on:before {
  -webkit-animation: bganimeon 1s ease-out 0.2s forwards;
          animation: bganimeon 1s ease-out 0.2s forwards;
}

.topPoint.bg-on.bg-anime-on:after {
  -webkit-animation: bganimeon 1s ease-out 0.4s forwards;
          animation: bganimeon 1s ease-out 0.4s forwards;
}

.topPoint:before {
  position: absolute;
  content: "";
  width: 0%;
  height: 150%;
  top: 2%;
  left: 0;
  background-color: #753a6b;
  -webkit-transform: skewY(5deg);
          transform: skewY(5deg);
  z-index: -1;
}

.topPoint:after {
  position: absolute;
  content: "";
  width: 0%;
  height: 150%;
  top: 42%;
  right: 0;
  background: url(../img/bg-all.jpg) repeat;
  background-size: 1600px 1200px;
  -webkit-transform: skewY(-5deg);
          transform: skewY(-5deg);
  z-index: -1;
}

.topPoint .topPoint__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  max-height: 320px;
  left: 0;
  right: 0;
  bottom: -10%;
  margin: 0 auto;
}

.topPoint .topPoint__bg:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 320px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url(../img/sakura-bg.png) no-repeat;
  background-size: cover;
}

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

.topPoint .topPoint__title {
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.topPoint__detail {
  position: relative;
  margin: 50px auto 0;
}

.topPoint__detail .detail__txtarea {
  padding: 50px 100px;
  position: absolute;
  z-index: 1;
  top: 14%;
  right: 0;
}

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

.topPoint__detail .detail__txtarea__maintxt {
  color: #fff;
  margin: 10px auto;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-size: 2rem;
  position: relative;
  padding: 0 0 0 30px;
}

.topPoint__detail .detail__txtarea__maintxt:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #fff;
  top: 49%;
  left: 0;
}

.topPoint__detail .txtarea__mandara {
  position: absolute;
}

.topPoint__detail .txtarea__mandara:before {
  position: absolute;
  content: "";
  background: url(../img/mandara02.png) no-repeat;
  background-size: cover;
}

.topPoint__detail .txtarea__mandara.mandara--type1 {
  top: -40px;
  left: -40px;
}

.topPoint__detail .txtarea__mandara.mandara--type1:before {
  width: 108px;
  height: 108px;
}

.topPoint__detail .txtarea__mandara.mandara--type2 {
  top: 100px;
  left: -90px;
}

.topPoint__detail .txtarea__mandara.mandara--type2:before {
  width: 60px;
  height: 60px;
}

.topPoint__detail .txtarea__mandara.mandara--type3 {
  bottom: 50px;
  right: 100px;
}

.topPoint__detail .txtarea__mandara.mandara--type3:before {
  width: 208px;
  height: 208px;
}

.topPoint__detail .txtarea__mandara.mandara--type4 {
  bottom: 40%;
  left: -10%;
}

.topPoint__detail .txtarea__mandara.mandara--type4:before {
  width: 398px;
  height: 398px;
}

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

.topSchool.bg-on.bg-anime-on:before {
  -webkit-animation: bganimeon 1s ease-out 0.2s forwards;
          animation: bganimeon 1s ease-out 0.2s forwards;
}

.topSchool.bg-on.bg-anime-on:after {
  -webkit-animation: bganimeon 1s ease-out 0.4s forwards;
          animation: bganimeon 1s ease-out 0.4s forwards;
}

.topSchool:before {
  position: absolute;
  content: "";
  width: 0%;
  height: 150%;
  top: 2%;
  right: 0;
  background-color: #C36D58;
  -webkit-transform: skewY(-5deg);
          transform: skewY(-5deg);
  z-index: -1;
}

.topSchool:after {
  position: absolute;
  content: "";
  width: 0%;
  height: 150%;
  top: 42%;
  left: 0;
  background: url(../img/bg-01.jpg) repeat;
  background-size: 1920px 1271px;
  -webkit-transform: skewY(5deg);
          transform: skewY(5deg);
  z-index: -1;
}

.topSchool .topSchool__inner {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 100px 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.topSchool .topSchool__title {
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.topSchool__detail {
  position: relative;
  margin: 50px auto 0;
  width: 40%;
}

.topSchool__mainarea {
  width: 50%;
  margin-top: 200px;
}

.topSchool__mainarea .detail__txtarea {
  padding: 70px 100px 50px;
  position: relative;
  z-index: 1;
  margin-top: 60px;
}

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

.topSchool__mainarea .detail__txtarea__maintxt {
  color: #fff;
  margin: 10px auto;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-size: 2rem;
  position: relative;
  padding: 0 0 0 30px;
}

.topSchool__mainarea .detail__txtarea__maintxt:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #fff;
  top: 49%;
  left: 0;
}

.topSchool__mainarea .detail__txtarea__subtxt {
  position: absolute;
  top: 25px;
  left: 25px;
  opacity: 0.5;
}

.topSchool__mainarea .txtarea__mandara {
  position: absolute;
}

.topSchool__mainarea .txtarea__mandara:before {
  position: absolute;
  content: "";
  background: url(../img/mandara02.png) no-repeat;
  background-size: cover;
}

.topSchool__mainarea .txtarea__mandara.mandara--type1 {
  top: -40px;
  left: -40px;
}

.topSchool__mainarea .txtarea__mandara.mandara--type1:before {
  width: 108px;
  height: 108px;
}

.topSchool__mainarea .txtarea__mandara.mandara--type2 {
  top: 100px;
  left: -90px;
}

.topSchool__mainarea .txtarea__mandara.mandara--type2:before {
  width: 60px;
  height: 60px;
}

.topSchool__mainarea .txtarea__mandara.mandara--type3 {
  bottom: 50px;
  right: 100px;
}

.topSchool__mainarea .txtarea__mandara.mandara--type3:before {
  width: 208px;
  height: 208px;
}

.topSchool__mainarea .txtarea__mandara.mandara--type4 {
  bottom: 40%;
  left: -10%;
}

.topSchool__mainarea .txtarea__mandara.mandara--type4:before {
  width: 398px;
  height: 398px;
}

.topImportant {
  position: relative;
  margin: 0 auto;
  z-index: 1;
  padding: 100px 0;
  background-color: #333;
}

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

.topImportant .topImportant__inner {
  padding: 0px 0;
  position: relative;
  width: 60%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1;
}

.topImportant .topImportant__inner p {
  margin-right: 20px;
}

.topImportant .topImportant__title {
  position: relative;
  width: 15%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.topImportant .topImportant__txtarea {
  orphans: 1;
  width: 85%;
  color: #fff;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-size: 1.8rem;
  margin: 0 auto 0 0;
}

.topImportant .txtarea__inner {
  margin: 0 auto 0 20px;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
}

.topContent {
  position: relative;
  margin: 0 auto;
  padding: 100px 0;
  z-index: 1;
}

.topContent:before {
  position: absolute;
  content: "";
  width: 711px;
  height: 711px;
  top: -140px;
  left: -100px;
  background: url(../img/mandara.png) no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.6;
}

.topContent:after {
  position: absolute;
  content: "";
  width: 520px;
  height: 540px;
  bottom: -200px;
  right: -100px;
  background: url(../img/mandara.png) no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.6;
}

.topContent .topContent__inner {
  position: relative;
  margin: 0 auto;
  width: 90%;
}

.topContent .topContent__title {
  position: relative;
  margin: 50px 40px 0 auto;
  text-align: right;
}

.topContent__list {
  position: relative;
  margin: 0px 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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

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

.topContent__list:hover li:hover .list__photo img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 1;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.topContent__list:hover li:hover .list__txt span {
  color: #fff;
}

.topContent__list:hover li:hover .list__txt span:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  height: 100%;
}

.topContent__list li {
  width: 23%;
  margin: 0 1%;
  background-color: #333;
  position: relative;
}

.topContent__list li:nth-child(2) {
  margin-top: 100px;
}

.topContent__list li:nth-child(3) {
  margin-top: 200px;
}

.topContent__list li:nth-child(4) {
  margin-top: 300px;
}

.topContent__list li .list__photo {
  overflow: hidden;
}

.topContent__list li .list__photo img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.topContent__list li .list__txt {
  position: absolute;
  top: 0;
  left: 30px;
}

.topContent__list li .list__txt span {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  background-color: #fff;
  padding: 40px 10px;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-size: 2rem;
  color: #333;
  position: relative;
  z-index: 1;
}

.topContent__list li .list__txt span:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background-color: #753a6b;
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.topGmap {
  position: relative;
  z-index: 1;
}

.topGmap iframe {
  width: 100%;
  height: 400px;
  margin: 0 auto;
}

/* page content
----------------------------------*/
.company {
  position: relative;
  margin: 0 auto;
  z-index: 1;
  width: 100%;
  padding: 100px 0;
  background-color: #000;
}

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

.company .company__title {
  margin: 0px auto 50px 10%;
  width: 50%;
}

.company .company__title .eng {
  color: #fff;
}

.company .company__title .ja {
  color: #fff;
}

.company__list {
  margin: 40px auto 0 10%;
  position: relative;
  z-index: 1;
  width: 40%;
}

.company__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 10px;
  border-radius: 8px;
  position: relative;
  margin: 0 0 10px auto;
}

.company__list .list__title {
  width: 20%;
  max-width: 140px;
  background-color: #753a6b;
  padding: 8px 20px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  color: #fff;
  position: absolute;
  top: -20px;
}

.company__list .list__title:before {
  position: absolute;
  content: "";
  border-left: 40px solid #753a6b;
  border-top: 40px solid transparent;
  border-bottom: 0 solid transparent;
  z-index: -1;
  right: -10px;
  bottom: 0;
}

.company__list .list__txt {
  padding: 8px 20px 8px 50px;
  width: 84%;
  margin: 0 0 0 auto;
  background-color: #fff;
}

@media all and (max-width: 1100px) {
  .company__list {
    width: 80%;
  }
  .company__list .list__title {
    font-size: 1.4rem;
    width: 24%;
    max-width: 150px;
  }
  .company__list .list__txt {
    width: 80%;
  }
}

@media all and (max-width: 639px) {
  .company__list {
    width: 90%;
  }
  .company__list .list__title {
    min-width: 80px;
  }
  .company__list .list__txt {
    width: 80%;
    padding: 4px 10px 4px 40px;
    font-size: 1rem;
  }
}

.pageCommon .pageCommon__inner {
  position: relative;
  width: 80%;
  margin: -50px auto 0;
  padding: 0px 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.pageCommon .pageCommon__inner.inner--block {
  display: block;
}

.pageCommon .pageCommon__title {
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.pageCommon .pageCommon__detail {
  position: relative;
  margin: 50px auto 0;
  width: 50%;
}

.pageCommon__mainarea {
  width: 50%;
  margin-top: 200px;
}

.pageCommon__mainarea .detail__txtarea {
  padding: 70px 100px 50px;
  position: relative;
  z-index: 1;
  margin-top: 60px;
}

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

.pageCommon__mainarea .detail__txtarea__maintxt {
  color: #fff;
  margin: 10px auto;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-size: 2rem;
  position: relative;
  padding: 0 0 0 30px;
}

.pageCommon__mainarea .detail__txtarea__maintxt:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #fff;
  top: 49%;
  left: 0;
}

.pageCommon__mainarea .detail__txtarea__subtxt {
  position: absolute;
  top: 25px;
  left: 25px;
  opacity: 0.5;
}

.pageCommon__mainarea .txtarea__mandara {
  position: absolute;
}

.pageCommon__mainarea .txtarea__mandara:before {
  position: absolute;
  content: "";
  background: url(../img/mandara02.png) no-repeat;
  background-size: cover;
}

.pageCommon__mainarea .txtarea__mandara.mandara--type1 {
  top: -40px;
  left: -40px;
}

.pageCommon__mainarea .txtarea__mandara.mandara--type1:before {
  width: 108px;
  height: 108px;
}

.pageCommon__mainarea .txtarea__mandara.mandara--type2 {
  top: 100px;
  left: -90px;
}

.pageCommon__mainarea .txtarea__mandara.mandara--type2:before {
  width: 60px;
  height: 60px;
}

.pageCommon__mainarea .txtarea__mandara.mandara--type3 {
  bottom: 50px;
  right: 100px;
}

.pageCommon__mainarea .txtarea__mandara.mandara--type3:before {
  width: 208px;
  height: 208px;
}

.pageCommon__mainarea .txtarea__mandara.mandara--type4 {
  bottom: 40%;
  left: -10%;
}

.pageCommon__mainarea .txtarea__mandara.mandara--type4:before {
  width: 398px;
  height: 398px;
}

.pageCommon__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80%;
  margin: 50px auto 0;
}

.pageCommon__list li {
  width: 48%;
  margin: 0 2% 0 0;
  padding: 100px 100px 70px;
  position: relative;
  background-color: #fff;
}

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

.pageCommon__list .list__num {
  position: absolute;
  top: 50px;
  left: 60px;
  z-index: 2;
}

.pageCommon__list .list__photo {
  position: relative;
}

.pageCommon__list .list__title {
  position: absolute;
  bottom: 30px;
  right: 0;
}

.pageCommon__list .list__title span {
  background-color: #fff;
  padding: 15px 30px;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-size: 2rem;
  font-weight: bold;
  color: #604C3F;
  display: inline-block;
}

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

.pageCommon__title {
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.pageCommon__repair {
  position: relative;
  margin: 50px auto 0;
  width: 80%;
}

.pageCommon__repair .detail__txtarea {
  padding: 50px 100px;
  position: absolute;
  z-index: 1;
  top: 14%;
  right: 0;
}

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

.pageCommon__repair .detail__txtarea__maintxt {
  color: #fff;
  margin: 10px auto;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-size: 2rem;
  position: relative;
  padding: 0 0 0 30px;
}

.pageCommon__repair .detail__txtarea__maintxt:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #fff;
  top: 49%;
  left: 0;
}

.pageCommon__repair .txtarea__mandara {
  position: absolute;
}

.pageCommon__repair .txtarea__mandara:before {
  position: absolute;
  content: "";
  background: url(../img/mandara02.png) no-repeat;
  background-size: cover;
}

.pageCommon__repair .txtarea__mandara.mandara--type1 {
  top: -40px;
  left: -40px;
}

.pageCommon__repair .txtarea__mandara.mandara--type1:before {
  width: 108px;
  height: 108px;
}

.pageCommon__repair .txtarea__mandara.mandara--type2 {
  top: 100px;
  left: -90px;
}

.pageCommon__repair .txtarea__mandara.mandara--type2:before {
  width: 60px;
  height: 60px;
}

.pageCommon__repair .txtarea__mandara.mandara--type3 {
  bottom: 50px;
  right: 100px;
}

.pageCommon__repair .txtarea__mandara.mandara--type3:before {
  width: 208px;
  height: 208px;
}

.pageCommon__repair .txtarea__mandara.mandara--type4 {
  bottom: 40%;
  left: -10%;
}

.pageCommon__repair .txtarea__mandara.mandara--type4:before {
  width: 398px;
  height: 398px;
}

.pageCommon__news {
  margin: 60px 0 auto;
  background-color: #fff;
  padding: 100px;
}

.pageCommon__news .news__day {
  color: #575757;
  font-family: "Philosopher", sans-serif;
  font-weight: 300;
  font-size: 2rem;
}

.pageCommon__news .news__title {
  font-size: 3rem;
  font-weight: bold;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
}

.pageCommon__news .news__txtarea {
  margin-top: 20px;
}

.flow {
  padding: 100px 0;
}

.flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin: 80px auto 0;
}

.flow__list li {
  width: 29%;
  margin: 0 6% 0 0;
  padding: 50px;
  background: url(../img/bg-orange.jpg) no-repeat;
  position: relative;
}

.flow__list li:before {
  position: absolute;
  content: "";
  top: 40%;
  right: -30px;
  border-left: 30px solid #C36D58;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
}

.flow__list li:nth-child(3) {
  margin: 0;
}

.flow__list li:nth-child(3):before {
  display: none;
}

.flow__list .list__txt {
  margin-top: 20px;
  color: #fff;
  text-align: center;
}

.flow__list .list__photo {
  margin: 0 auto;
  text-align: center;
  padding: 50px;
  background-color: #fff;
}

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

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

.manufacturer__list li {
  width: 100%;
  padding: 40px;
  background-color: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
}

.manufacturer__list .list__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.manufacturer__list .detail__photoarea {
  width: 48%;
}

.manufacturer__list .detail__txtarea {
  width: 48%;
  margin: 0 0 0 4%;
}

.manufacturer__list .detail__logo {
  margin-bottom: 30px;
  padding-bottom: 30px;
  position: relative;
}

.manufacturer__list .detail__logo:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 7px;
  background: url(../img/line-deko2.png) repeat-x;
  background-size: 9px 7px;
  bottom: 0;
  left: 0;
}

.manufacturer__list .detail__logo img {
  width: auto;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.manufacturer__list .btn a {
  width: 90%;
  font-size: 1.4rem;
}

.manufacturer__list .btn a:before {
  width: 90%;
}

.manufacturer__list .btn a:after {
  width: 90%;
}

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

@media all and (max-width: 896px) {
  .manufacturer__list {
    width: 90%;
  }
  .manufacturer__list li {
    padding: 30px 20px;
  }
  .manufacturer__list .list__detail {
    display: block;
  }
  .manufacturer__list .detail__photoarea {
    width: 100%;
  }
  .manufacturer__list .detail__txtarea {
    width: 100%;
    margin: 20px auto 0;
  }
  .manufacturer__list .detail__logo {
    margin-bottom: 15px;
    padding-bottom: 15px;
    text-align: center;
  }
  .manufacturer__list .detail__logo img {
    width: auto;
    height: 30px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .manufacturer__list .btn {
    margin: 25px auto 0;
  }
  .manufacturer__list .btn a {
    width: 90%;
    font-size: 1.2rem;
  }
  .manufacturer__list .btn a:before {
    width: 90%;
  }
  .manufacturer__list .btn a:after {
    width: 90%;
  }
}

.product {
  margin: 0 auto;
  padding: 100px 0 200px;
  position: relative;
  background-color: #fff;
  z-index: 1;
}

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

.product .product__inner {
  width: 60%;
  margin: 0 auto;
}

@media all and (max-width: 1680px) {
  .product .product__inner {
    width: 80%;
    margin: 0 auto;
  }
}

@media all and (max-width: 896px) {
  .product .product__inner {
    width: 90%;
    margin: 0 auto;
  }
}

.product__list li {
  margin-bottom: 30px;
}

.product__list .list__title {
  position: relative;
}

.product__list .list__title span {
  background-color: #C36D58;
  padding: 10px 30px;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.product__list .list__title span:before {
  position: absolute;
  content: "";
  border-top: 30px solid #C36D58;
  border-left: 0 solid transparent;
  border-right: 30px solid transparent;
  bottom: -14px;
  left: 20px;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
  z-index: -1;
}

.product__list .list__txtarea {
  margin-top: -10px;
  padding: 40px;
  border-radius: 20px;
  background-color: #fff;
  border: 2px solid #C36D58;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product__list .txtarea__photo {
  width: 28%;
  border-radius: 50px;
  overflow: hidden;
}

.product__list .txtarea__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product__list .txtarea__txt {
  width: 70%;
  margin: 0 0 0 auto;
}

.product__list .list--orange .list__title {
  position: relative;
}

.product__list .list--orange .list__title span {
  background-color: #753a6b;
}

.product__list .list--orange .list__title span:before {
  border-top: 30px solid #753a6b;
}

.product__list .list--orange .list__txtarea {
  border: 2px solid #753a6b;
}

.product__list .list--green .list__title {
  position: relative;
}

.product__list .list--green .list__title span {
  background-color: #A57B77;
}

.product__list .list--green .list__title span:before {
  border-top: 30px solid #A57B77;
}

.product__list .list--green .list__txtarea {
  border: 2px solid #A57B77;
}

.product__list .list--yellow .list__title {
  position: relative;
}

.product__list .list--yellow .list__title span {
  background-color: #d8ce3f;
}

.product__list .list--yellow .list__title span:before {
  border-top: 30px solid #d8ce3f;
}

.product__list .list--yellow .list__txtarea {
  border: 2px solid #d8ce3f;
}

@media all and (max-width: 639px) {
  .product__list .list__txtarea {
    padding: 40px 20px 30px;
    display: block;
  }
  .product__list .txtarea__photo {
    width: 100%;
    border-radius: 20px;
  }
  .product__list .txtarea__photo img {
    width: 100%;
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product__list .txtarea__txt {
    width: 100%;
    margin: 20px auto 0;
    font-size: 1rem;
  }
}

.repair {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 70%;
}

@media all and (max-width: 1680px) {
  .repair {
    width: 80%;
    margin: 0 auto;
  }
}

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

.repair__list li {
  width: 70%;
  margin: 0 auto 20px 0;
}

.repair__list li:nth-child(2n) {
  margin: 0 0 20px auto;
}

.repair__list li:nth-child(2n) .list__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.repair__list li:nth-child(2n) .list__detail .list__photo {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.repair__list li:nth-child(2n) .list__detail .detail__txt {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 0 auto 0 0;
}

@media all and (max-width: 896px) {
  .repair__list li {
    width: 90%;
    margin: 0 auto;
  }
}

.repair__list .list__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.repair__list .list__detail .list__photo {
  width: 140px;
}

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

.repair__list .list__detail .detail__txt {
  background-color: #fff;
  padding: 20px 40px;
  width: 75%;
  margin: 0 0 0 auto;
  border-radius: 20px;
}

@media all and (max-width: 896px) {
  .repair__list .list__detail .list__photo {
    width: 100px;
  }
  .repair__list .list__detail .detail__txt {
    background-color: #fff;
    padding: 20px 20px;
    width: 75%;
    margin: 0 0 0 auto;
    border-radius: 20px;
  }
}

.repair__detail {
  margin: 60px auto 40px;
  background-color: #fff;
  border-radius: 40px;
  padding: 40px;
}

.repair__detail .detail__title {
  position: relative;
  text-align: center;
}

.repair__detail .detail__title span {
  position: relative;
  color: #604C3F;
  font-weight: bold;
  font-size: 1.6rem;
  padding: 0 40px;
}

.repair__detail .detail__title span:before {
  position: absolute;
  content: "";
  border-top: 30px solid #604C3F;
  border-left: 0 solid transparent;
  border-right: 10px solid transparent;
  left: 0;
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.repair__detail .detail__title span:after {
  position: absolute;
  content: "";
  border-top: 30px solid #604C3F;
  border-left: 0 solid transparent;
  border-right: 10px solid transparent;
  right: 0;
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.repair__detail .detail__txt {
  margin-top: 20px;
  text-align: center;
}

@media all and (max-width: 896px) {
  .repair__detail .detail__title {
    position: relative;
    text-align: center;
  }
  .repair__detail .detail__title span {
    position: relative;
    color: #604C3F;
    font-weight: bold;
    font-size: 1.3rem;
    padding: 0 20px;
    display: inline-block;
  }
  .repair__detail .detail__title span:before {
    position: absolute;
    content: "";
    border-top: 20px solid #604C3F;
    border-left: 0 solid transparent;
    border-right: 10px solid transparent;
    left: 0;
    top: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .repair__detail .detail__title span:after {
    position: absolute;
    content: "";
    border-top: 30px solid #604C3F;
    border-left: 0 solid transparent;
    border-right: 10px solid transparent;
    right: 0;
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

/* content
----------------------------------*/
.photo-anime {
  opacity: 0;
}

.photo-anime.photo-anime-on {
  -webkit-animation: photoanimeon 1s ease-out 0.2s forwards;
          animation: photoanimeon 1s ease-out 0.2s forwards;
}

.beforebg-anime {
  opacity: 0;
}

.beforebg-anime:before {
  width: 0;
}

.beforebg-anime.beforebg-anime-on:before {
  width: 100%;
  -webkit-transition: 1s;
  transition: 1s;
}

.leftbg-anime.leftbg-anime-on {
  -webkit-animation: leftbganimeon 1s ease-out 0.2s forwards;
          animation: leftbganimeon 1s ease-out 0.2s forwards;
}

@-webkit-keyframes photoanimeon {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}

@keyframes photoanimeon {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}

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

@keyframes leftbganimeon {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

@-webkit-keyframes bganimeon {
  0% {
    width: 0%;
    top: 20px;
  }
  100% {
    width: 100%;
    top: 80px;
  }
}

@keyframes bganimeon {
  0% {
    width: 0%;
    top: 20px;
  }
  100% {
    width: 100%;
    top: 80px;
  }
}

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

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

.flex.w-100 {
  width: 100%;
}

.flex.j-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex.a-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex.a-first {
  -ms-flex-wrap: inherit;
      flex-wrap: inherit;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex.a-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media all and (max-width: 1100px) {
  .flex.flex-pro {
    display: block;
  }
}

.flex.flex-pro .flex-30 {
  width: 30%;
}

@media all and (max-width: 1100px) {
  .flex.flex-pro .flex-30 {
    width: 100%;
    margin: 0 auto;
  }
}

.flex.flex-pro .flex-60 {
  width: 60%;
}

@media all and (max-width: 1100px) {
  .flex.flex-pro .flex-60 {
    width: 100%;
    margin: 0 auto;
  }
}

@media all and (max-width: 896px) {
  .flex.flex-tablet {
    display: block;
  }
}

@media all and (max-width: 896px) {
  .flex.flex-tablet .flex-40 {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

@media all and (max-width: 896px) {
  .flex.flex-tablet .flex-48 {
    width: 100%;
    margin: 0 auto;
  }
  .flex.flex-tablet .flex-48.l-m2 {
    margin-left: auto;
  }
  .flex.flex-tablet .flex-48.l-m4 {
    margin-left: auto;
  }
}

.flex.flex-tablet .flex-50 {
  width: 50%;
}

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

@media all and (max-width: 896px) {
  .flex.flex-tablet .flex-56 {
    width: 90%;
    margin: 20px auto 0;
    margin-left: auto;
  }
}

@media all and (max-width: 896px) {
  .flex.flex-tablet .flex-58 {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.flex.flex-tablet .flex-60 {
  width: 60%;
}

@media all and (max-width: 896px) {
  .flex.flex-tablet .flex-60 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex.flex-tablet .flex-70 {
  width: 70%;
}

@media all and (max-width: 896px) {
  .flex.flex-tablet .flex-70 {
    width: 100%;
  }
}

.flex .flex-10 {
  width: 10%;
}

@media all and (max-width: 639px) {
  .flex .flex-10 {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex .flex-15 {
  width: 15%;
}

@media all and (max-width: 639px) {
  .flex .flex-15 {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex .flex-18 {
  width: 18%;
  margin-left: 2%;
}

@media all and (max-width: 639px) {
  .flex .flex-18 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex .flex-20 {
  width: 20%;
}

@media all and (max-width: 639px) {
  .flex .flex-20 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex .flex-25 {
  width: 25%;
}

@media all and (max-width: 639px) {
  .flex .flex-25 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex .flex-30 {
  width: 30%;
}

@media all and (max-width: 639px) {
  .flex .flex-30 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex .flex-36 {
  width: 36%;
}

@media all and (max-width: 639px) {
  .flex .flex-36 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex .flex-38 {
  width: 38%;
}

@media all and (max-width: 639px) {
  .flex .flex-38 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex .flex-40 {
  width: 40%;
}

@media all and (max-width: 639px) {
  .flex .flex-40 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex .flex-48 {
  width: 48%;
}

@media all and (max-width: 639px) {
  .flex .flex-48 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex .flex-48.l-m2 {
  margin-left: 2%;
}

@media all and (max-width: 639px) {
  .flex .flex-48.l-m2 {
    width: 100%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .flex .flex-48.l-m2.sp-m60 {
    margin-top: 60px;
  }
}

.flex .flex-48.l-m4 {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .flex .flex-48.l-m4 {
    width: 100%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex .flex-50 {
  width: 50%;
}

@media all and (max-width: 896px) {
  .flex .flex-50 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex .flex-56 {
  width: 56%;
}

.flex .flex-56.l-m4 {
  margin-left: 4%;
}

@media all and (max-width: 896px) {
  .flex .flex-56.l-m4 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media all and (max-width: 639px) {
  .flex .flex-56.l-m4 {
    width: 90%;
    margin-left: auto;
  }
}

.flex .flex-58 {
  width: 58%;
}

.flex .flex-58.l-m2 {
  margin-left: 2%;
}

@media all and (max-width: 639px) {
  .flex .flex-58 {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  .flex .flex-58.l-m2 {
    margin-left: auto;
  }
}

.flex .flex-60 {
  width: 60%;
}

.flex .flex-60.l-m2 {
  margin-left: 2%;
}

@media all and (max-width: 639px) {
  .flex .flex-60.l-m2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex .flex-60.l-m10 {
  margin-left: 10%;
}

@media all and (max-width: 639px) {
  .flex .flex-60.l-m10 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media all and (max-width: 639px) {
  .flex .flex-60 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex .flex-68 {
  width: 68%;
}

@media all and (max-width: 639px) {
  .flex .flex-68 {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

.flex .flex-68.l-m2 {
  margin-left: 2%;
}

@media all and (max-width: 639px) {
  .flex .flex-68.l-m2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex .flex-70 {
  width: 70%;
}

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

.flex .flex-78 {
  width: 78%;
  margin-left: 2%;
}

@media all and (max-width: 639px) {
  .flex .flex-78 {
    margin-left: auto;
    width: 100%;
  }
}

.flex .flex-88 {
  width: 88%;
}

.flex .flex-88.l-m2 {
  margin-left: 2%;
}

@media all and (max-width: 639px) {
  .flex .flex-88 {
    margin-left: auto;
    width: 100%;
  }
}

.flex .flex-80 {
  width: 80%;
  margin-left: 3%;
}

@media all and (max-width: 639px) {
  .flex .flex-80 {
    margin-left: auto;
    width: 100%;
  }
}

/* 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 #753a6b;
  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 #753a6b;
  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: 0px auto 60px;
}

.slide_list li {
  margin-right: 1%;
  border-radius: 0px;
  overflow: hidden;
}

.slide_list li:nth-child(2n) {
  margin-top: 40px;
}

.slide_list li img {
  width: auto;
  height: 300px;
  -webkit-transition: -webkit-filter 0.2s ease-in;
  transition: -webkit-filter 0.2s ease-in;
  transition: filter 0.2s ease-in;
  transition: filter 0.2s ease-in, -webkit-filter 0.2s ease-in;
}

.slide_list li:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

@media all and (max-width: 639px) {
  .slide_list li img {
    height: 240px;
  }
}

/* Q and A
----------------------------------*/
.qa-list dl {
  position: relative;
  margin: 30px auto 0;
  cursor: pointer;
  max-width: 1000px;
}

.qa-list dl:first-child {
  margin-top: 0;
}

.qa-list dl:after {
  position: absolute;
  top: 30px;
  right: 26px;
  display: block;
  width: 7px;
  height: 7px;
  margin: auto;
  content: "";
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

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

.qa-list dl dt {
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 60px;
  font-weight: bold;
  background: #3b69e7;
  background: linear-gradient(150deg, #3b69e7 0%, #74d5ff 100%);
  color: #fff;
}

.qa-list dl dt:before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 20px;
  display: block;
  content: "Q.";
  color: #fff;
}

.qa-list dl dd {
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 60px;
  background-color: #fff;
}

.qa-list dl dd:before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  left: 20px;
  display: block;
  content: "A.";
  font-weight: bold;
  color: #c32121;
}

.qa-list dl dd p {
  margin: 30px 0 0;
}

.qa-list dl dd p:first-child {
  margin-top: 0;
}

@media all and (max-width: 896px) {
  .qa-list dl {
    margin: 10px 0 0;
  }
  .qa-list dl:after {
    top: 20px;
    right: 20px;
    width: 7px;
    height: 7px;
  }
  .qa-list dl dt {
    padding: 16px 26px 16px 40px;
    font-size: 12px;
  }
  .qa-list dl dt:before {
    font-size: 14px;
    top: 20px;
    left: 15px;
  }
  .qa-list dl dd {
    margin: 0;
    padding: 16px 16px 16px 40px;
    font-size: 10px;
  }
  .qa-list dl dd:before {
    font-size: 14px;
    left: 15px;
    margin-top: 5px;
  }
  .qa-list dl dd p {
    margin: 30px 0 0;
  }
  .qa-list dl dd p:first-child {
    margin-top: 0;
  }
}

/*----------------------------------
tab
----------------------------------*/
.tab {
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.tab li {
  width: 23%;
  margin: 0 2% 0 0;
  text-align: center;
  background-color: #753a6b;
}

.tab li:nth-child(4) {
  margin: 0;
}

.tab li a {
  display: block;
  width: 100%;
  padding: 10px 0;
}

.tab li a span {
  color: #fff;
  padding: 0 0 0 5px;
}

.tab li a i {
  color: #fff;
}

.tab li:hover {
  background-color: #fff;
}

.tab li:hover a span {
  color: #753a6b;
}

.tab li:hover a i {
  color: #753a6b;
}
.area {
  margin-top: 100px;
  display: none;
  /*はじめは非表示*/
  opacity: 0;
  /*透過0*/
  background: #fff;
  padding: 50px;
}
.area2 {
  margin-top: 100px;
  display: block;
  opacity: 1;
  background: #fff;
  padding: 50px;
}
.area.is-active {
  display: block;
  opacity: 1;
}
.area .area__title {
  margin: 0 auto 50px;
  text-align: center;
}

.area .area__title .eng {
  color: rgba(117, 58, 107, 0.5);
  display: block;
  font-family: "Philosopher", sans-serif;
  font-weight: 300;
}

.area .area__title .ja {
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  color: #753a6b;
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}


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

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

/*----------------------------------
モーダルウィンドウ
----------------------------------*/
@media all and (max-width: 639px) {
  .modaal-content-container {
    padding: 15px !important;
  }
}

.modaal-container .modaal-close {
  right: 0;
  left: 0;
  top: auto;
  bottom: 50px;
  margin: 0 auto;
  text-align: center;
}

.modal-wrapper {
  display: none;
}

.modalbox .txtarea {
  padding-left: 50px;
}

@media all and (max-width: 896px) {
  .modalbox .txtarea {
    padding-left: 0px;
  }
}

.mainImg {
  margin-bottom: 10px;
  height: 400px;
  text-align: center;
  margin: 0 auto 20px;
}

.mainImg img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media all and (max-width: 896px) {
  .mainImg {
    height: 200px;
  }
}

@media all and (max-width: 639px) {
  .mainImg {
    height: 120px;
  }
}

.subImg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.subImg li {
  width: 23%;
  margin: 0 1% 20px;
  height: 100px;
}

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

@media all and (max-width: 896px) {
  .subImg li {
    height: 90px;
    width: 18%;
    margin: 0 1% 20px;
  }
  .subImg li img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media all and (max-width: 639px) {
  .subImg li {
    height: 50px;
    width: 16%;
    margin: 0 1% 20px;
  }
}

.modalarea__title {
  background-color: #753a6b;
  color: #fff;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  text-align: center;
  padding: 5px 10px;
}

.modalarea__detail .modalarea_detail--title {
  font-weight: bold;
  font-size: 2rem;
  color: #753a6b;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  margin-top: 20px;
}

.modalarea__detail .modalarea_detail--price {
  text-align: right;
}

.modalarea__detail .modalarea_detail--price .main {
  font-size: 2rem;
  font-family: "Philosopher", sans-serif;
  font-weight: 300;
}

.modalarea__detail .modalarea_detail--price .min {
  color: #555;
  font-size: 1.4rem;
  padding-left: 5px;
}

.modalarea__detail .modalarea_detail-txt {
  margin-top: 15px;
  font-size: 1.3rem;
}

@media all and (max-width: 639px) {
  .modalarea__detail .modalarea_detail--title {
    font-size: 1.5rem;
  }
  .modalarea__detail .modalarea_detail--price .main {
    font-size: 1.5rem;
  }
  .modalarea__detail .modalarea_detail--price .min {
    font-size: 10px;
  }
  .modalarea__detail .modalarea_detail-txt {
    font-size: 1rem;
  }
}

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

.sponly {
  display: none;
}

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

.f-mincyo {
  font-family: var(--f-mincyo);
}

.btn02 {
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.btn02 li {
  width: 23%;
  margin: 0 2% 0 0;
  text-align: center;
  background-color: #753a6b;
}

.btn02 li:nth-child(4) {
  margin: 0;
}

.btn02 li a {
  display: block;
  width: 100%;
  padding: 10px 0;
}

.btn02 li a span {
  color: #fff;
  padding: 0 0 0 5px;
}

.btn02 li a i {
  color: #fff;
}

.btn02 li:hover {
  background-color: #fff;
}

.btn02 li:hover a span {
  color: #753a6b;
}

.btn02 li:hover a i {
  color: #753a6b;
}

.news-pic img {
    margin: 20px
}