@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #232323;
  background: #e6f3ef;
  font-family: "Sawarabi Gothic", sans-serif, "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;
}

body:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-01.png) no-repeat;
  background-attachment: fixed;
  background-size: cover;
  mix-blend-mode: unset;
  opacity: 0.6;
  -webkit-animation: mainbg-anime 10s ease-out 0s infinite;
          animation: mainbg-anime 10s ease-out 0s infinite;
}

@-webkit-keyframes mainbg-anime {
  0% {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  50% {
    -webkit-filter: blur(15px);
            filter: blur(15px);
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes mainbg-anime {
  0% {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  50% {
    -webkit-filter: blur(15px);
            filter: blur(15px);
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

.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 s p {
  width: 10%;
  border-left: 1px solid black;
  border-right: 1px solid black;
  height: 100vh;
}

a {
  color: #1f7e9a;
  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: "Hina Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-weight: 500 !important;
}

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

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

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

.animation {
  opacity: 0;
}

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

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

/*=============== ローでイング =================*/
.loader {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  pointer-events: none;
}

.loader.off {
  display: block;
}

.loader-bg1 {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #1B6D85;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-animation: load-fade 0.8s ease-out 1.6s forwards;
          animation: load-fade 0.8s ease-out 1.6s forwards;
}

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

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

@keyframes load-fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    height: 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: 48%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  -webkit-animation: anime-aut 0.8s linear 1s forwards;
          animation: anime-aut 0.8s linear 1s forwards;
  z-index: 2;
}

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

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

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

@-webkit-keyframes load-anime {
  0% {
    opacity: 1;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  100% {
    opacity: 1;
    top: 50px;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}

@keyframes load-anime {
  0% {
    opacity: 1;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  100% {
    opacity: 1;
    top: 50px;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}

@-webkit-keyframes anime-sudachi {
  0% {
    opacity: 0;
  }
  20% {
    -webkit-transform: translate(330px, -70px);
            transform: translate(330px, -70px);
  }
  40% {
    -webkit-transform: translate(270px, 50px);
            transform: translate(270px, 50px);
  }
  60% {
    -webkit-transform: translate(180px, 10px);
            transform: translate(180px, 10px);
  }
  80% {
    -webkit-transform: translate(90px, 50px);
            transform: translate(90px, 50px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

@keyframes anime-sudachi {
  0% {
    opacity: 0;
  }
  20% {
    -webkit-transform: translate(330px, -70px);
            transform: translate(330px, -70px);
  }
  40% {
    -webkit-transform: translate(270px, 50px);
            transform: translate(270px, 50px);
  }
  60% {
    -webkit-transform: translate(180px, 10px);
            transform: translate(180px, 10px);
  }
  80% {
    -webkit-transform: translate(90px, 50px);
            transform: translate(90px, 50px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

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

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

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

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

.st1 {
  fill: none;
  stroke: #ffffff;
  stroke-width: 0;
  stroke-dasharray: 50;
  -webkit-animation: symble-anime 1.4s linear 0.2s forwards;
          animation: symble-anime 1.4s linear 0.2s forwards;
}

@-webkit-keyframes symble-anime {
  0% {
    stroke-width: 0;
  }
  100% {
    stroke-width: 150;
  }
}

@keyframes symble-anime {
  0% {
    stroke-width: 0;
  }
  100% {
    stroke-width: 150;
  }
}

.cls-1 {
  fill: none;
  stroke: #ffffff;
  stroke-width: 0;
}

#kondosyoten .cls-2 {
  opacity: 0;
  -webkit-animation: logo-t-anime 0.6s linear 0.8s forwards;
          animation: logo-t-anime 0.6s linear 0.8s forwards;
}

@media all and (max-width: 639px) {
  #kondosyoten .cls-2 {
    -webkit-animation: logo-t-anime2 0.6s linear 0.2s forwards;
            animation: logo-t-anime2 0.6s linear 0.2s forwards;
  }
}

#symblemark .cls-2 {
  opacity: 0;
  -webkit-animation: logo-t-anime 0.6s linear 0.8s forwards;
          animation: logo-t-anime 0.6s linear 0.8s forwards;
}

@media all and (max-width: 639px) {
  #symblemark .cls-2 {
    -webkit-animation: logo-t-anime2 0.6s linear 0.2s forwards;
            animation: logo-t-anime2 0.6s linear 0.2s forwards;
  }
}

#symble .cls-2 {
  opacity: 0;
  -webkit-animation: logo-t-anime 0.6s linear 0.8s forwards;
          animation: logo-t-anime 0.6s linear 0.8s forwards;
}

@media all and (max-width: 639px) {
  #symble .cls-2 {
    -webkit-animation: logo-t-anime2 0.6s linear 0.2s forwards;
            animation: logo-t-anime2 0.6s linear 0.2s forwards;
  }
}

#tokushima_japan .cls-1 {
  opacity: 0;
  -webkit-animation: logo-t-anime 0.6s linear 0.8s forwards;
          animation: logo-t-anime 0.6s linear 0.8s forwards;
}

@media all and (max-width: 639px) {
  #tokushima_japan .cls-1 {
    -webkit-animation: logo-t-anime2 0.6s linear 0.2s forwards;
            animation: logo-t-anime2 0.6s linear 0.2s forwards;
  }
}

#line .cls-2 {
  fill: none;
  stroke: #ffffff;
  stroke-width: 0;
  stroke-dasharray: 0;
  -webkit-animation: symble-anime 1.4s linear 0.2s forwards;
          animation: symble-anime 1.4s linear 0.2s forwards;
}

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

@-webkit-keyframes logo-t-anime2 {
  0% {
    opacity: 0;
    stroke-width: 100;
  }
  100% {
    opacity: 1;
    stroke-width: 100;
  }
}

@keyframes logo-t-anime2 {
  0% {
    opacity: 0;
    stroke-width: 100;
  }
  100% {
    opacity: 1;
    stroke-width: 100;
  }
}

/* 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: 30px;
  left: 0;
  right: 0;
  margin: 0 0 0 auto;
  padding: 0;
  opacity: 0;
  -webkit-animation: load-bg 1s ease-out 0.8s forwards;
          animation: load-bg 1s ease-out 0.8s forwards;
}

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

#l-header.is-fixed {
  right: auto;
  position: fixed;
  padding: 0;
  background-color: transparent;
  z-index: 101;
}

#l-header.is-fixed:before {
  display: none;
}

#l-header.is-fixed .head-right {
  display: none;
}

#l-header.is-fixed .head-right_tel a {
  color: #1B6D85;
  position: relative;
}

#l-header.is-fixed .head-right_tel a:hover img {
  opacity: 0.6;
}

#l-header.is-fixed .inner #logo {
  position: absolute;
  top: 25px;
  left: 50px;
  margin: 0 auto;
  z-index: 101;
}

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

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

@media all and (max-width: 1367px) {
  #l-header.is-fixed .inner #logo {
    left: 0;
    right: 0;
  }
}

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

@media all and (max-width: 639px) {
  #l-header.is-fixed .inner #logo {
    width: 180px;
  }
}

#l-header.is-hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

#l-header .inner {
  width: 94%;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

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

#l-header .inner #logo {
  width: 280px;
  z-index: 2;
}

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

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

@media all and (max-width: 639px) {
  #l-header .inner #logo {
    width: 100%;
    max-width: 90px;
  }
}

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

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

#header_nav {
  position: relative;
  margin: 0 0 0 20%;
  z-index: 100;
  padding: 10px 0 10px;
  max-width: 1200px;
}

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

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

#header_nav ul li:last-child {
  margin-right: 0;
}

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

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

#header_nav ul li a .nav_eng {
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 300;
  font-size: 1.3rem;
}

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

#header_nav ul li a:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 0;
  height: 1px;
  background-color: #1B6D85;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

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

#header_nav ul li a:hover:before, #header_nav ul li a.active:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#header_nav ul li:hover .sub-menu, #header_nav ul li.active .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  visibility: visible;
}

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

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

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

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

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

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

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

#header_nav ul li:hover .header_link, #header_nav ul li.active .header_link {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  position: relative;
}

#header_nav ul li:hover .header_link:before, #header_nav ul li.active .header_link:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  left: 0;
  right: 0;
  top: -6px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: rgba(195, 163, 73, 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(39, 143, 207, 0.4);
}

#header_nav ul li:hover .header_link.type3:before, #header_nav ul li.active .header_link.type3:before {
  background-color: rgba(247, 137, 27, 0.4);
}

#header_nav ul li:hover .header_link.type4:before, #header_nav ul li.active .header_link.type4:before {
  background-color: rgba(238, 184, 24, 0.4);
}

@media all and (max-width: 1480px) {
  #header_nav {
    margin: 0px 0 0 12%;
  }
  #header_nav ul li a {
    font-size: 1.4rem;
  }
  #header_nav ul li a span {
    font-size: 1.2rem;
  }
}

@media all and (max-width: 1367px) {
  #header_nav {
    margin: 0px 0 0 10%;
  }
  #header_nav ul li a {
    font-size: 1.4rem;
  }
}

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

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

#header_nav.DownMove {
  display: none;
  position: fixed;
  top: 0;
  margin: 0 auto;
  width: 100%;
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
}

#header_nav.DownMove ul {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin: 0 auto;
}

#header_nav.DownMove ul li {
  position: relative;
}

#header_nav.DownMove ul li a {
  padding: 22px 20px;
  background-color: transparent;
  color: #333;
}

#header_nav.DownMove ul li a:after {
  display: none;
}

#header_nav.DownMove ul li:hover, #header_nav.DownMove ul li.active {
  color: #c3a349;
}

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

#header_nav.DownMove ul li:hover a:after, #header_nav.DownMove ul li.active a:after {
  display: none;
}

#header_nav.DownMove ul li:hover a span, #header_nav.DownMove ul li.active a span {
  color: #fff;
}

#header_nav.DownMove ul li:hover .sub-menu a, #header_nav.DownMove ul li.active .sub-menu a {
  background-color: transparent;
  color: #fff;
}

@media all and (max-width: 1367px) {
  #header_nav.DownMove ul {
    margin: 60px auto 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #header_nav.DownMove ul li a {
    font-size: 1.3rem;
  }
}

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

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

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

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

/* nav
----------------------------------*/
#nav-toggle {
  display: block;
  position: fixed;
  top: 36px;
  right: 20px;
  width: 65px;
  height: 65px;
  cursor: pointer;
  z-index: 1;
  border: 1px solid #333;
  padding: 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}

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

#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: "Nanum Gothic", 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: 10px;
}

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

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

#nav-toggle:hover span:nth-child(1) {
  width: 1px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 70%;
}

#nav-toggle:hover span:nth-child(2) {
  width: 1px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 85%;
}

#nav-toggle:hover span:nth-child(3) {
  width: 1px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 100%;
}

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

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

.open #nav-toggle span {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

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

.open #nav-toggle span:nth-child(2) {
  display: none;
}

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

.open #nav-toggle:hover span {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.open #nav-toggle:hover span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  top: 20px;
  width: 100%;
}

.open #nav-toggle:hover span:nth-child(2) {
  display: none;
}

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

#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: #1B6D85;
  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: "Nanum Gothic", sans-serif;
  font-weight: 300;
  color: #111;
}

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

#sp-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  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:before {
  position: absolute;
  content: "";
  width: 110%;
  height: 0%;
  top: -100%;
  right: -3%;
  background-color: #e6f3ef;
  border-radius: 50%;
  z-index: -1;
  opacity: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#sp-nav .inner {
  width: 100%;
  margin: 0 auto;
  height: 100%;
  padding: 100px 50px;
  position: relative;
  z-index: 1;
  opacity: 0;
}

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

@media all and (max-width: 639px) {
  #sp-nav .inner {
    padding: 40px 20px;
  }
}

#sp-nav .txtarea__sublogo {
  text-align: center;
  margin: -160px auto 60px;
}

#sp-nav .txtarea {
  position: absolute;
  width: 80%;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  padding: 100px 0;
}

#sp-nav .txtarea:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 32px;
  top: 55px;
  left: 0;
  background: url(../img/nav-line.png) repeat-x;
  background-size: 86px 32px;
}

#sp-nav .txtarea:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 32px;
  bottom: 55px;
  left: 0;
  background: url(../img/nav-line.png) repeat-x;
  background-size: 86px 32px;
}

@media all and (max-width: 896px) {
  #sp-nav .txtarea {
    width: 100%;
    padding: 100px 50px;
  }
}

@media all and (max-width: 639px) {
  #sp-nav .txtarea {
    padding: 50px 25px;
  }
}

#sp-nav .txtarea__logo {
  text-align: center;
  margin: 0 auto;
  width: 80%;
  max-width: 260px;
}

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

#sp-nav ul {
  list-style: none;
  margin: 2% auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1200px;
}

#sp-nav ul li {
  margin: 0 auto 15px 0;
}

#sp-nav ul li a {
  text-align: left;
  display: block;
  padding: 4px 20px;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

#sp-nav ul li a .nav__txt {
  position: relative;
  text-align: left;
  z-index: 1;
  color: #333;
  font-size: 1.4rem;
}

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

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

#sp-nav ul li a:hover:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 100%;
}

#sp-nav ul li a:hover .nav__txt {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #1B6D85;
}

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

#sp-nav ul.sub-menu {
  margin: 10px auto 15px;
  padding-left: 20px;
  position: relative;
}

#sp-nav ul.sub-menu:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 89px;
  background-color: #fff;
  top: 0;
  left: 5px;
}

#sp-nav ul.sub-menu li {
  border-top: none;
  font-size: 1.4rem;
  position: relative;
}

#sp-nav ul.sub-menu li:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: -14px;
}

#sp-nav ul.sub-menu li a {
  padding: 5px 0;
  color: #fff;
}

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

#sp-nav ul.sub-menu li a:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.4;
  text-align: left;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

#sp-nav ul.sub-menu li:last-child {
  border-bottom: none;
}

@media all and (max-width: 639px) {
  #sp-nav {
    padding: 40px 20px;
  }
  #sp-nav .txtarea__sublogo {
    text-align: center;
    margin: -80px auto 60px;
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  #sp-nav .txtarea__logo {
    max-width: 160px;
  }
  #sp-nav ul {
    margin: 30px auto 0;
  }
  #sp-nav ul li {
    width: 48%;
    margin: 0 4% 20px 0;
  }
  #sp-nav ul li:nth-child(2n) {
    margin: 0 0 20px;
  }
  #sp-nav ul li a .nav__txt {
    font-size: 1.3rem;
  }
  #sp-nav .txtarea {
    padding: 50px 0;
  }
  #sp-nav .txtarea:after {
    bottom: 0;
  }
}

/* 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;
}

.open #sp-nav:before {
  -webkit-animation: nav-anime 1.4s ease 0s forwards;
          animation: nav-anime 1.4s ease 0s forwards;
}

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

@-webkit-keyframes nav-anime {
  0% {
    height: 0;
  }
  100% {
    height: 300%;
  }
}

@keyframes nav-anime {
  0% {
    height: 0;
  }
  100% {
    height: 300%;
  }
}

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

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

/* 予約ボタン
----------------------------------*/
.reserve--btn {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 110;
  -webkit-animation: anime-reserve 2s ease-in 0s infinite;
          animation: anime-reserve 2s ease-in 0s infinite;
}

.reserve--btn img {
  width: 280px;
}

.reserve--btn a {
  display: block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.reserve--btn:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-animation: none;
          animation: none;
  -webkit-transform: scale(0.9) translateY(10px);
          transform: scale(0.9) translateY(10px);
}

@media all and (max-width: 1480px) {
  .reserve--btn {
    bottom: 40px;
  }
  .reserve--btn img {
    width: 230px;
  }
}

@media all and (max-width: 1367px) {
  .reserve--btn {
    bottom: 40px;
  }
  .reserve--btn img {
    width: 220px;
  }
}

@media all and (max-width: 896px) {
  .reserve--btn {
    bottom: 40px;
    right: 10px;
  }
  .reserve--btn img {
    width: 200px;
  }
}

@media all and (max-width: 639px) {
  .reserve--btn {
    bottom: 70px;
    right: 5px;
  }
  .reserve--btn img {
    width: 160px;
  }
}

@-webkit-keyframes anime-reserve {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  40% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  60% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes anime-reserve {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  40% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  60% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

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

#page-top a {
  display: block;
  background: #c3a349;
  -webkit-box-shadow: #c3a349;
          box-shadow: #c3a349;
  border-radius: 6px;
  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;
    display: block;
  }
  #page-top a {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

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

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

.linK__banner {
  display: none;
}

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

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

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

/* 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);
  }
}

.slide-img {
  overflow: hidden;
  width: 100%;
  height: 120vh;
  margin-left: auto;
  margin-right: auto;
  min-height: 900px;
}

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

.slide-img.slide-img-delica img {
  object-position: -90px -40px;
}

@media all and (max-width: 1100px) {
  .slide-img {
    height: 90vh;
    min-height: 700px;
  }
  .slide-img.slide-img-delica img {
    height: 100%;
    object-position: 50px 0;
  }
}

@media all and (max-width: 639px) {
  .slide-img {
    height: 70vh;
    max-height: 500px;
    min-height: 500px;
    background-color: #fff;
  }
  .slide-img img {
    width: 120%;
  }
  .slide-img.slide-img-delica img {
    height: 110%;
    object-position: -200px 0;
  }
}

@media all and (max-width: 450px) {
  .slide-img.slide-img-delica img {
    height: 85%;
    object-position: -200px 40px;
  }
}

.svg-mask {
  position: fixed;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.svg-mask #clip {
  -webkit-transform: scale(0) translateX(500px) translateY(-140px);
          transform: scale(0) translateX(500px) translateY(-140px);
  -webkit-animation: clip_anime 1.6s ease-in 0.6s forwards;
          animation: clip_anime 1.6s ease-in 0.6s forwards;
}

@media all and (max-width: 1100px) {
  .svg-mask #clip {
    -webkit-animation: clip_anime_pro 1.6s ease-in 0.6s forwards;
            animation: clip_anime_pro 1.6s ease-in 0.6s forwards;
  }
}

@media all and (max-width: 639px) {
  .svg-mask #clip {
    -webkit-animation: clip_anime_phone 1.6s ease-in 0.6s forwards;
            animation: clip_anime_phone 1.6s ease-in 0.6s forwards;
  }
}

@media all and (max-width: 450px) {
  .svg-mask #clip {
    -webkit-animation: clip_anime_phone-mid 1.6s ease-in 0.6s forwards;
            animation: clip_anime_phone-mid 1.6s ease-in 0.6s forwards;
  }
}

.svg-mask #clip4 {
  -webkit-transform: scale(1) translateX(2%) translateY(20px);
          transform: scale(1) translateX(2%) translateY(20px);
}

@media all and (max-width: 639px) {
  .svg-mask #clip4 {
    -webkit-animation: clip_anime_phone 1.6s ease-in 0.6s forwards;
            animation: clip_anime_phone 1.6s ease-in 0.6s forwards;
  }
}

@media all and (max-width: 450px) {
  .svg-mask #clip4 {
    -webkit-animation: clip_anime_phone-mid 1.6s ease-in 0.6s forwards;
            animation: clip_anime_phone-mid 1.6s ease-in 0.6s forwards;
  }
}

@-webkit-keyframes clip_anime {
  0% {
    -webkit-transform: scale(0) translateX(500px) translateY(-140px);
            transform: scale(0) translateX(500px) translateY(-140px);
  }
  100% {
    -webkit-transform: scale(3.2) translateX(40px) translateY(-140px);
            transform: scale(3.2) translateX(40px) translateY(-140px);
  }
}

@keyframes clip_anime {
  0% {
    -webkit-transform: scale(0) translateX(500px) translateY(-140px);
            transform: scale(0) translateX(500px) translateY(-140px);
  }
  100% {
    -webkit-transform: scale(3.2) translateX(40px) translateY(-140px);
            transform: scale(3.2) translateX(40px) translateY(-140px);
  }
}

@-webkit-keyframes clip_anime_pro {
  0% {
    -webkit-transform: scale(0) translateX(500px) translateY(-140px);
            transform: scale(0) translateX(500px) translateY(-140px);
  }
  100% {
    -webkit-transform: scale(2.4) translateX(16%) translateY(-140px);
            transform: scale(2.4) translateX(16%) translateY(-140px);
  }
}

@keyframes clip_anime_pro {
  0% {
    -webkit-transform: scale(0) translateX(500px) translateY(-140px);
            transform: scale(0) translateX(500px) translateY(-140px);
  }
  100% {
    -webkit-transform: scale(2.4) translateX(16%) translateY(-140px);
            transform: scale(2.4) translateX(16%) translateY(-140px);
  }
}

@-webkit-keyframes clip_anime_phone {
  0% {
    -webkit-transform: scale(0) translateX(500px) translateY(-140px);
            transform: scale(0) translateX(500px) translateY(-140px);
  }
  100% {
    -webkit-transform: scale(1.3) translateX(14%) translateY(-100px);
            transform: scale(1.3) translateX(14%) translateY(-100px);
  }
}

@keyframes clip_anime_phone {
  0% {
    -webkit-transform: scale(0) translateX(500px) translateY(-140px);
            transform: scale(0) translateX(500px) translateY(-140px);
  }
  100% {
    -webkit-transform: scale(1.3) translateX(14%) translateY(-100px);
            transform: scale(1.3) translateX(14%) translateY(-100px);
  }
}

@-webkit-keyframes clip_anime_phone-mid {
  0% {
    -webkit-transform: scale(0) translateX(500px) translateY(-140px);
            transform: scale(0) translateX(500px) translateY(-140px);
  }
  100% {
    -webkit-transform: scale(1) translateX(2%) translateY(20px);
            transform: scale(1) translateX(2%) translateY(20px);
  }
}

@keyframes clip_anime_phone-mid {
  0% {
    -webkit-transform: scale(0) translateX(500px) translateY(-140px);
            transform: scale(0) translateX(500px) translateY(-140px);
  }
  100% {
    -webkit-transform: scale(1) translateX(2%) translateY(20px);
            transform: scale(1) translateX(2%) translateY(20px);
  }
}

#slide-wrap {
  position: relative;
  width: 100%;
}

#slide-wrap:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  background-color: #e6f3ef;
  z-index: 2;
  -webkit-animation: slide-bg_anime 0.6s ease-in 0.6s forwards;
          animation: slide-bg_anime 0.6s ease-in 0.6s forwards;
}

#slide-wrap #slideshow {
  position: relative;
  width: 100%;
  -webkit-clip-path: url(#clip);
          clip-path: url(#clip);
}

#slide-wrap .slide-box {
  opacity: 1;
  width: 100%;
  position: relative;
  margin: 0px 0 0 auto;
  overflow: hidden;
}

@media all and (max-width: 639px) {
  #slide-wrap .slide-box {
    width: 90%;
  }
  #slide-wrap #slideshow {
    -webkit-clip-path: none;
            clip-path: none;
    mask-image: url(../img/slide-mask_sp.png);
    mask-repeat: no-repeat;
    mask-position: right;
    mask-size: 90%;
    -webkit-mask-image: url(../img/slide-mask_sp.png);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: right;
    -webkit-mask-size: 90%;
  }
}

#slide-wrap2 {
  position: relative;
  width: 100%;
}

#slide-wrap2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  background-color: #e6f3ef;
  z-index: 2;
  -webkit-animation: slide-bg_anime 0.6s ease-in 0.6s forwards;
          animation: slide-bg_anime 0.6s ease-in 0.6s forwards;
}

#slide-wrap2 #slideshow2 {
  position: relative;
  width: 100%;
  -webkit-clip-path: url(#clip3);
          clip-path: url(#clip3);
}

#slide-wrap2 .slide-box {
  opacity: 1;
  width: 100%;
  position: relative;
  margin: 0px 0 0 auto;
  overflow: hidden;
}

@media all and (max-width: 639px) {
  #slide-wrap2 .slide-box {
    width: 90%;
  }
  #slide-wrap2 #slideshow2:before {
    height: 108%;
  }
}

@-webkit-keyframes slide-bg_anime {
  0% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}

@keyframes slide-bg_anime {
  0% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}

.slide-main {
  position: absolute;
  content: "";
  right: 0;
  top: -40px;
  z-index: 2;
  width: 500px;
}

@media all and (max-width: 1480px) {
  .slide-main {
    top: 25%;
  }
}

@media all and (max-width: 896px) {
  .slide-main {
    top: 25%;
  }
  .slide-main .qina_car {
    top: 100%;
  }
}

@media all and (max-width: 639px) {
  .slide-main {
    top: 25%;
  }
}

/* swiper2
----------------------------------*/
.swiper-container2 {
  position: relative;
}

.swiper-container2 .slide-img {
  height: 500px;
}

.swiper-container2 .swiper__txt {
  position: absolute;
  bottom: -80px;
  left: 40px;
}

.swiper-container2 .swiper__txt:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 0;
  left: -20px;
  top: 0;
  background-color: #747474;
}

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

.swiper-container2 .txt__sub {
  font-size: 1.4rem;
}

.swiper-container2 .swiper-button-next,
.swiper-container2 .swiper-button-prev {
  top: 48%;
}

.swiper-container2 .swiper-button-next {
  background-image: url(../img/arrow.png);
  background-size: 50px 50px;
  width: 50px;
  height: 50px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  right: -20px;
}

.swiper-container2 .swiper-button-prev {
  background-image: url(../img/arrow.png);
  background-size: 50px 50px;
  width: 50px;
  height: 50px;
  left: -20px;
}

.swiper-container2 .swiper-slide {
  margin-right: 0;
  position: relative;
}

.swiper-container2 .swiper-slide.swiper-slide-prev .swiper__txt {
  display: none;
}

.swiper-container2 .swiper-slide.swiper-slide-active .swiper__txt {
  display: block;
}

.swiper-container2 .swiper-slide.swiper-slide-active .swiper__txt:before {
  -webkit-animation: slide-anime 0.6s ease-in 0.2s forwards;
          animation: slide-anime 0.6s ease-in 0.2s forwards;
}

.swiper-container2 .swiper-slide.swiper-slide-next .swiper__txt {
  display: none;
}

@media all and (max-width: 1367px) {
  .swiper-container2 .slide-img {
    height: 420px;
  }
}

@media all and (max-width: 1100px) {
  .swiper-container2 .slide-img {
    height: 40vh;
    max-height: 420px;
  }
}

@media all and (max-width: 896px) {
  .swiper-container2 .slide-img {
    height: 33vh;
    max-height: 420px;
  }
}

@media all and (max-width: 639px) {
  .swiper-container2 .swiper-button-next,
  .swiper-container2 .swiper-button-prev {
    top: 38%;
  }
  .swiper-container2 .swiper-button-next {
    background-size: cover;
    width: 25px;
    height: 25px;
    right: -10px;
  }
  .swiper-container2 .swiper-button-prev {
    background-size: cover;
    width: 25px;
    height: 25px;
    left: -10px;
  }
  .swiper-container2 .slide-img {
    height: 20vh;
    max-height: 370px;
    min-height: 130px;
  }
  .swiper-container2 .swiper__txt {
    position: initial;
    top: 50%;
    height: 60%;
    margin: 20px auto 0;
  }
  .swiper-container2 .swiper__txt:before {
    left: -5px;
    max-height: 50px;
  }
  .swiper-container2 .txt__main {
    font-size: 14px;
  }
  .swiper-container2 .txt__sub {
    font-size: 12px;
  }
}

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

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

/* catch
----------------------------------*/
.catch {
  position: absolute;
  margin: 0 0 0 auto;
  right: 5%;
  bottom: 40%;
}

.catch.type2 {
  color: #fff;
  mix-blend-mode: inherit;
  z-index: 2;
}

.catch .catch__txt {
  font-weight: bold;
  text-align: right;
  font-family: "Hina Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  -webkit-filter: drop-shadow(0 0 10px rgba(51, 51, 51, 0.2));
          filter: drop-shadow(0 0 10px rgba(51, 51, 51, 0.2));
}

.catch .catch__txt p {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.catch .catch__txt .type1 {
  -webkit-animation: catch-anime2 0.6s ease-in 3.2s forwards;
          animation: catch-anime2 0.6s ease-in 3.2s forwards;
  font-size: 8rem;
}

.catch .catch__txt .type2 {
  -webkit-animation: catch-anime2 0.6s ease-in 3.6s forwards;
          animation: catch-anime2 0.6s ease-in 3.6s forwards;
  font-size: 3rem;
  padding: 0 20px 0 0;
}

.catch_delica {
  position: absolute;
  margin: 0 0 0 auto;
  right: 5%;
  bottom: 30%;
  z-index: 5;
  width: 240px;
}

.catch_delica img {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: catch-anime2 0.6s ease-in 4s forwards;
          animation: catch-anime2 0.6s ease-in 4s forwards;
          padding: 0 20px 0 0;
        
}
@media all and (max-width: 1480px) {
  .catch {
    bottom: 50%;
    right: auto;
    left: 5%;
  }
  .catch .catch__txt {
    text-align: left;
  }
  .catch .catch__txt .type1 {
    font-size: 6rem;
  }
  .catch .catch__txt .type2 {
    font-size: 3rem;
  }
  .catch_delica {
    bottom: 40%;
    right: auto;
    left: 5%;
  }
}

@media all and (max-width: 1100px) {
  .catch {
    bottom: 20%;
    right: auto;
    left: 5%;
  }
  .catch .catch__txt {
    text-align: left;
  }
  .catch .catch__txt .type1 {
    font-size: 6rem;
  }
  .catch .catch__txt .type2 {
    font-size: 3rem;
  }
  .catch_delica {
    bottom: 10%;
    right: auto;
    left: 5%;
  }
  .catch_delica img {
    width: 180px;
  }
}

@media all and (max-width: 896px) {
  .catch {
    bottom: 20%;
    right: auto;
    left: 5%;
  }
  .catch .catch__txt {
    text-align: left;
  }
  .catch .catch__txt .type1 {
    font-size: 4rem;
  }
  .catch .catch__txt .type2 {
    font-size: 2.2rem;
  }
  .catch_delica {
    width: 160px;
    bottom: 12%;
    right: auto;
    left: 5%;
  }
  .catch_delica img {
    width: 180px;
  }
}

@media all and (max-width: 639px) {
  .catch .catch__txt {
    margin-top: 30px;
    font-size: 1.2rem;
  }
  .catch .catch__txt .type1 {
    font-size: 2rem;
    -webkit-animation: catch-anime2 0.6s ease-in 1.4s forwards;
            animation: catch-anime2 0.6s ease-in 1.4s forwards;
  }
  .catch .catch__txt .type2 {
    font-size: 1.4rem;
    -webkit-animation: catch-anime2 0.6s ease-in 1.8s forwards;
            animation: catch-anime2 0.6s ease-in 1.8s forwards;
  }
  .catch_delica {
    width: 100px;
    bottom: 11%;
    right: auto;
    left: 5%;
  }
  .catch_delica img {
    -webkit-animation: catch-anime2 0.6s ease-in 2s forwards;
            animation: catch-anime2 0.6s ease-in 2s forwards;
  }
}

.cls-1 {
  stroke: #000;
  stroke-width: 1px;
  fill: transparent;
  stroke-dasharray: 1425px;
  stroke-dashoffset: 1425px;
  -webkit-animation: catch-anime 1.5s ease-in 1s forwards;
          animation: catch-anime 1.5s ease-in 1s forwards;
}

@-webkit-keyframes catch-anime {
  0% {
    stroke-dashoffset: 1425px;
  }
  30% {
    fill: transparent;
  }
  60% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #111;
    stroke: #111;
  }
}

@keyframes catch-anime {
  0% {
    stroke-dashoffset: 1425px;
  }
  30% {
    fill: transparent;
  }
  60% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #111;
    stroke: #111;
  }
}

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

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

/* footer 
----------------------------------*/
.footer__map {
  margin-top: 0px;
  padding: 20px;
  border: 2px solid #fff;
  border-radius: 20px;
}

.footer__map iframe {
  width: 100%;
  height: 400px;
  border-radius: 20px;
}

@media all and (max-width: 639px) {
  .footer__map iframe {
    width: 100%;
    height: 200px;
  }
}

footer {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

footer:before {
  position: absolute;
  content: "";
  width: 960px;
  height: 200px;
  bottom: 0;
  right: 0;
  background: url(../img/footer-botto.png) no-repeat;
  background-size: cover;
}

footer #slide-wrap:before {
  display: none;
}

footer #slide-wrap #slideshow {
  -webkit-clip-path: url(#clip3);
          clip-path: url(#clip3);
}

footer .slide-img {
  width: 100%;
  height: 140vh;
  margin: 0 auto 0 0;
}

footer .svg-mask {
  width: 100%;
  height: 100%;
}

footer .svg-mask #clip3 {
  -webkit-animation: none;
          animation: none;
  -webkit-transform: scale(3);
          transform: scale(3);
}

@media all and (max-width: 1680px) {
  footer .svg-mask #clip3 {
    -webkit-transform: scale(2.6);
            transform: scale(2.6);
  }
}

@media all and (max-width: 1480px) {
  footer .svg-mask #clip3 {
    -webkit-transform: scale(2.4);
            transform: scale(2.4);
  }
}

@media all and (max-width: 1367px) {
  footer .svg-mask #clip3 {
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

@media all and (max-width: 1100px) {
  footer .svg-mask #clip3 {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
  }
}

@media all and (max-width: 896px) {
  footer:before {
    width: 480px;
    height: 100px;
  }
  footer .svg-mask #clip3 {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media all and (max-width: 639px) {
  footer:before {
    width: 390px;
    height: 90px;
  }
  footer .svg-mask #clip3 {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}

#l-footer {
  padding: 200px 0 200px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#l-footer #slide-wrap2 {
  position: absolute;
  top: 0;
  left: -17%;
}

#l-footer .footer__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 50px 5% 0 auto;
  padding: 50px 0px;
  border-radius: 40px 40px 0 0;
  position: relative;
  width: 40%;
}

#l-footer .box-txt {
  margin-top: 10px;
  font-weight: bold;
}

@media all and (max-width: 1680px) {
  #l-footer .footer__inner {
    margin: 50px 0 0 auto;
  }
}

@media all and (max-width: 1480px) {
  #l-footer {
    display: block;
  }
  #l-footer #slide-wrap2 {
    position: absolute;
    top: 0;
    left: -20%;
  }
  #l-footer .flogobox {
    width: 100%;
    margin: 0 auto 10px;
  }
  #l-footer .footer_navi {
    width: 100%;
  }
}

@media all and (max-width: 1100px) {
  #l-footer #slide-wrap2 {
    left: -30%;
    top: 50px;
  }
  #l-footer .footer__inner {
    margin: 50px 50px 0 auto;
  }
}

@media all and (max-width: 896px) {
  #l-footer {
    padding: 200px 0 100px;
  }
  #l-footer #slide-wrap2 {
    left: -30%;
  }
  #l-footer .footer__inner {
    margin: 50px 50px 0 auto;
  }
}

@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
    padding: 240px 0 100px;
  }
  #l-footer .footer__inner {
    width: 100%;
    margin: -50px 0 0 auto;
    padding: 0;
  }
  #l-footer .footer__inner .flogo {
    text-align: right;
    margin: 0 10% 0 auto;
  }
  #l-footer #slide-wrap2 {
    left: -30%;
    top: 50px;
  }
  #l-footer .inner {
    padding: 30px 0px;
    font-size: 1.1rem;
  }
}

.footer-nav {
  max-width: 900px;
  text-align: center;
  margin: 0px auto 0;
}

.footer-nav a:hover {
  opacity: 0.6;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media all and (max-width: 639px) {
  .footer-nav {
    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;
  }
  .footer-nav a {
    width: 48%;
    margin: 0 1% 10px;
  }
}

.footer__photo {
  height: 600px;
}

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

.footer_navi ul {
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 400px;
  justify-content: center;
}

.footer_navi ul li {
  margin: 0 1%;
  margin-bottom: 10px;
}

.footer_navi ul li a {
  font-size: 1.3rem;
  position: relative;
  display: block;
  font-weight: 600;
  color: #333;
  padding: 5px 20px;
  border-radius: 50px;
  overflow: hidden;
}

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

.footer_navi ul li a .nav_eng {
  display: inline-block;
  padding-right: 20px;
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 300;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

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

.footer_navi ul li a:hover .nav_eng {
  color: #1B6D85;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

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

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

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

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

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

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

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

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

.copyright {
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
  margin: 50px auto 0;
}

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

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

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

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

.btn a {
  margin: 0 auto;
  position: relative;
  display: block;
  width: 90%;
  max-width: 240px;
  color: #fff;
  padding: 8px 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 1;
  font-weight: bold;
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
  background-color: #1B6D85;
  border-radius: 60px;
  -webkit-transition: background-position 0.8s;
  transition: background-position 0.8s;
  -webkit-filter: drop-shadow(0 0 2px white);
          filter: drop-shadow(0 0 2px white);
}

.btn a:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  right: 0px;
  top: 49%;
  background-color: #ddd;
}

.btn a:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #ddd;
  right: 20px;
  top: 39%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.btn a:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: #3d98be;
  background: linear-gradient(86deg, #3d98be 0%, #0f4b5d 100%);
}

.btn a:hover:before {
  right: 0px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-right: 0px solid transparent;
}

.btn a:hover:after {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  right: 10px;
  background-color: #fff;
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media all and (max-width: 1367px) {
  .btn a {
    width: 96%;
  }
}

@media all and (max-width: 639px) {
  .btn a {
    width: 180px;
    font-size: 12px;
    line-height: 1;
    padding: 10px 10px;
  }
  .btn a:before {
    top: 47%;
  }
  .btn a:after {
    top: 34%;
  }
}

/* comingsoon
----------------------------------*/
.comingsoon {
  text-align: center;
  margin: 100px auto 0;
}

/* page-title
----------------------------------*/
.page-titleBox {
  position: relative;
  width: 100%;
  margin: 180px auto 0;
}

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

@media all and (max-width: 639px) {
  .page-titleBox {
    margin: 160px auto 0;
  }
}

.page-title {
  position: relative;
  z-index: 1;
  margin: 0px 10% 20px auto;
  border-radius: 30px 30px;
  width: 50%;
}

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

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

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

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

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

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

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

.page-title .inner .page-lead {
  font-size: 2.5rem;
  margin: 0 auto;
  -webkit-animation: page-leadanime 1s ease-out 0.8s forwards;
          animation: page-leadanime 1s ease-out 0.8s forwards;
  opacity: 0;
  position: absolute;
  left: -10%;
  bottom: 20%;
}

.page-title .inner .page-lead .eng {
  display: block;
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1B6D85;
}

.page-title .inner .page-lead .ja {
  background-color: #fff;
  padding: 6px 30px;
  border-radius: 50px;
  font-weight: normal;
}

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

@media all and (max-width: 1100px) {
  .page-title .inner {
    padding: 180px 0 150px;
  }
}

@media all and (max-width: 896px) {
  .page-title {
    width: 60%;
  }
  .page-title .inner {
    padding: 200px 0 100px;
  }
  .page-title .inner .page-lead {
    left: -15%;
  }
  .page-title .inner .page-lead .eng {
    font-size: 2rem;
  }
  .page-title .inner .page-lead .ja {
    font-size: 1.5rem;
  }
}

@media all and (max-width: 639px) {
  .page-title {
    width: 80%;
    margin: 0 5% 0 auto;
  }
  .page-title .inner {
    padding: 120px 0 80px;
  }
  .page-title .inner .page-lead {
    left: -10%;
  }
  .page-title .inner .page-lead .eng {
    font-size: 1.6rem;
  }
  .page-title .inner .page-lead .ja {
    font-size: 1.4rem;
    padding: 4px 15px;
    display: inline-block;
  }
}

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

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

/* 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%;
}

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

.blogbox {
  max-width: 1200px;
  margin: 60px auto 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.blogbox .blogbox__title {
  color: #1B6D85;
  font-size: 2rem;
  border-bottom: 1px solid #1B6D85;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.blogbox .blogbox__main {
  width: 74%;
  background-color: #fff;
}

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

@media all and (max-width: 639px) {
  .blogbox {
    padding: 20px 15px;
    display: block;
  }
  .blogbox .blogbox__title {
    font-size: 1.4rem;
  }
  .blogbox .blogbox__main {
    width: 100%;
    padding: 20px;
    margin-bottom: 50px;
  }
  .blogbox .blogbox__side {
    width: 100%;
  }
}

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

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

.blog-wrap > li {
  width: 31%;
  margin: 0 1% 20px;
  position: relative;
  padding: 15px 15px;
  background-color: white;
  border: 1px solid #ddd;
  overflow: hidden;
  border-radius: 10px;
}

@media all and (max-width: 1100px) {
  .blog-wrap > li {
    width: 100%;
    margin: 0 auto 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .blog-wrap > li .blog-img {
    width: 38%;
  }
  .blog-wrap > li .blog-detail {
    width: 60%;
    margin-left: 2%;
  }
}

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

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

.blog-wrap > li > a:after {
  position: absolute;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  bottom: 5px;
  right: 14px;
  color: #1B6D85;
  font-size: 12px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

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

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

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

@media all and (max-width: 639px) {
  .blog-wrap li {
    width: 100%;
    margin: 0 auto 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .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: 150px;
  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 10px 15px;
  font-size: 1.4rem;
}

.blog-cat {
  background-color: #c3a349;
  padding: 0px 4px;
  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;
  border-radius: 50px;
  border: 1px solid #929292;
  padding: 2px 0px;
}

.blog-date2 {
  color: #0e3945;
  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.4rem;
  padding-top: 10px;
}

@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: #1B6D85;
  padding: 4px 5px;
  background: #fff;
  font-size: 12px;
}

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

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

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

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

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

.prv dt {
  color: #1B6D85;
  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: #1B6D85;
  border: 1px solid #1B6D85;
}

@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:hover {
  background: #fff;
  color: #1B6D85;
}

.blog-month ul li:hover a {
  color: #1B6D85;
}

#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;
  margin: 0px auto 0px;
  font-size: 1.2rem;
  width: 60%;
  position: relative;
  z-index: 1;
}

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

.breadcrumb li a {
  color: #eeb818;
}

.breadcrumb li a:hover {
  color: #1B6D85;
}

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

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

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

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

/* form
----------------------------------*/
.form .form-contents {
  padding: 0;
}

.form .form-contents form dl {
  margin-bottom: 0;
}

.form input {
  vertical-align: baseline;
}

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

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

.form dl dt span,
.form .form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
  color: #fff;
  background: #1B6D85;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  position: relative;
  top: -2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.form .select_arrow {
  position: relative;
}

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

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

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

.form button,
.form .form-pattern-1 .submit-btn {
  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 #1B6D85;
  font-weight: 600;
  padding: 12px 5px;
  margin: 20px auto 0;
  width: 250px;
  background: #1B6D85;
  border-radius: 50px;
}

.form button:hover,
.form .form-pattern-1 .submit-btn:hover {
  background: #fff;
  color: #1B6D85;
}

.form .form-pattern-1 .submit-btn::before {
  transition: all .2s ease-in-out 0s;
}

.form .form-pattern-1 .submit-btn:hover::before {
  background: #1B6D85;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thanks {
  padding: 40px;
  border: 1px solid #1B6D85;
  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: #1B6D85;
  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;
}

/* common content
----------------------------------*/
.mainContents {
  margin: 0 auto;
  position: relative;
}

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

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

.mainContents .mainContents__title .eng {
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  line-height: 1;
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.mainContents .mainContents__title .ja {
  font-size: 3rem;
  font-weight: normal;
  line-height: 1.4;
  padding-left: 80px;
  position: relative;
}

.mainContents .mainContents__title .ja:before {
  position: absolute;
  content: "";
  width: 62px;
  height: 28px;
  background: url(../img/title-icon.png) no-repeat;
  background-size: cover;
  left: 0;
  top: 22%;
}

.mainContents .mainContents__title.title--center {
  text-align: center;
  color: #fff;
}

.mainContents .mainContents__title.title--center .eng {
  color: #c3a349;
}

.mainContents .mainContents__title.title--center .ja:before {
  background: url(../img/title-icon_white.png) no-repeat;
  background-size: cover;
}

.mainContents .mainContents__title.title--right {
  text-align: right;
}

.mainContents .mainContents__title.title--page .eng {
  display: inline-block;
  padding-right: 40px;
  margin-bottom: 0;
}

.mainContents .mainContents__title.title--page .ja {
  padding-left: 70px;
}

.mainContents.mainContents__page {
  position: relative;
  background-color: #fff;
}

.mainContents.mainContents__page:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 318px;
  top: -318px;
  left: 0;
  background: url(../img/bg-wave2.png) no-repeat;
  background-size: cover;
}

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

@media all and (max-width: 1100px) {
  .mainContents .mainContents__inner {
    width: 90%;
  }
  .mainContents .mainContents__title {
    font-size: 1.6rem;
  }
  .mainContents .mainContents__title .eng {
    font-size: 2.2rem;
  }
  .mainContents .mainContents__title .ja {
    font-size: 1.4rem;
  }
}

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

@media all and (max-width: 639px) {
  .mainContents .mainContents__inner {
    padding: 50px 15px;
  }
  .mainContents .mainContents__inner.inner--sp0 {
    padding: 0;
  }
  .mainContents .mainContents__title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  .mainContents .mainContents__title .eng {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .mainContents .mainContents__title .ja {
    font-size: 1.4rem;
    padding-left: 60px;
  }
  .mainContents .mainContents__title .ja:before {
    width: 50px;
    height: 22px;
  }
  .mainContents .mainContents__title.title--center .eng {
    font-size: 2rem;
  }
  .mainContents .mainContents__title.title--center .ja {
    font-size: 1.4rem;
  }
  .mainContents .mainContents__title.title--page {
    display: block;
  }
  .mainContents .mainContents__title.title--page .eng {
    padding-right: 0px;
    display: block;
    margin-bottom: 10px;
  }
  .mainContents .mainContents__title.title--page .ja {
    font-size: 1.4rem;
    padding-left: 60px;
  }
  .mainContents .mainContents__title.title--page .ja:before {
    top: 22%;
  }
}

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

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

.mainContents--bg01 {
  background-color: #f8fcef;
}

.mainContents--bg02 {
  background-color: #f8fcef;
}

.mainContents--bg02.pageContents {
  margin-top: 10px;
}

/* top content
----------------------------------*/
.yashiBox {
  position: relative;
  width: 600px;
}

.yashiBox .yashi-tree {
  margin: 0 auto 0 50px;
}

.yashiBox:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 23px;
  left: 0;
  bottom: -15px;
  background: url(../img/yashi-wave.png) repeat-x;
  background-size: 346px 23px;
  -webkit-animation: wave-bg 20s linear infinite;
          animation: wave-bg 20s linear infinite;
}

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

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

.carBox {
  position: relative;
  width: 600px;
}

.carBox .car {
  position: absolute;
  top: -70px;
  right: -10px;
  -webkit-transform: scale(0.2) scale(-1, 1);
          transform: scale(0.2) scale(-1, 1);
}

.carBox .car.anime-on_start {
  -webkit-animation: car-bg 4s linear forwards;
          animation: car-bg 4s linear forwards;
}

@-webkit-keyframes car-bg {
  10% {
    top: -20px;
    right: -60px;
  }
  15% {
    -webkit-transform: scale(0.2) scale(-1, 1) rotate(-64deg);
            transform: scale(0.2) scale(-1, 1) rotate(-64deg);
  }
  20% {
    top: 20px;
    -webkit-transform: scale(0.2) scale(-1, 1) rotate(-64deg);
            transform: scale(0.2) scale(-1, 1) rotate(-64deg);
  }
  21% {
    top: 20px;
    -webkit-transform: scale(0.2) scale(1, 1) rotate(-64deg);
            transform: scale(0.2) scale(1, 1) rotate(-64deg);
  }
  25% {
    top: 30px;
    right: -60px;
    -webkit-transform: scale(0.2) scale(1, 1) rotate(-34deg);
            transform: scale(0.2) scale(1, 1) rotate(-34deg);
  }
  30% {
    top: 60px;
    right: -40px;
    -webkit-transform: scale(0.2) scale(1, 1) rotate(-34deg);
            transform: scale(0.2) scale(1, 1) rotate(-34deg);
  }
  35% {
    top: 60px;
    right: -40px;
    -webkit-transform: scale(0.2) scale(1, 1) rotate(-17deg);
            transform: scale(0.2) scale(1, 1) rotate(-17deg);
  }
  40% {
    top: 70px;
    right: -40px;
    -webkit-transform: scale(0.2) scale(1, 1) rotate(-10deg);
            transform: scale(0.2) scale(1, 1) rotate(-10deg);
  }
  80% {
    top: 140px;
    right: 160px;
    -webkit-transform: scale(0.6) scale(1, 1) rotate(0deg);
            transform: scale(0.6) scale(1, 1) rotate(0deg);
  }
  100% {
    top: 190px;
    right: 340px;
    -webkit-transform: scale(1) scale(1, 1) rotate(0deg);
            transform: scale(1) scale(1, 1) rotate(0deg);
  }
}

@keyframes car-bg {
  10% {
    top: -20px;
    right: -60px;
  }
  15% {
    -webkit-transform: scale(0.2) scale(-1, 1) rotate(-64deg);
            transform: scale(0.2) scale(-1, 1) rotate(-64deg);
  }
  20% {
    top: 20px;
    -webkit-transform: scale(0.2) scale(-1, 1) rotate(-64deg);
            transform: scale(0.2) scale(-1, 1) rotate(-64deg);
  }
  21% {
    top: 20px;
    -webkit-transform: scale(0.2) scale(1, 1) rotate(-64deg);
            transform: scale(0.2) scale(1, 1) rotate(-64deg);
  }
  25% {
    top: 30px;
    right: -60px;
    -webkit-transform: scale(0.2) scale(1, 1) rotate(-34deg);
            transform: scale(0.2) scale(1, 1) rotate(-34deg);
  }
  30% {
    top: 60px;
    right: -40px;
    -webkit-transform: scale(0.2) scale(1, 1) rotate(-34deg);
            transform: scale(0.2) scale(1, 1) rotate(-34deg);
  }
  35% {
    top: 60px;
    right: -40px;
    -webkit-transform: scale(0.2) scale(1, 1) rotate(-17deg);
            transform: scale(0.2) scale(1, 1) rotate(-17deg);
  }
  40% {
    top: 70px;
    right: -40px;
    -webkit-transform: scale(0.2) scale(1, 1) rotate(-10deg);
            transform: scale(0.2) scale(1, 1) rotate(-10deg);
  }
  80% {
    top: 140px;
    right: 160px;
    -webkit-transform: scale(0.6) scale(1, 1) rotate(0deg);
            transform: scale(0.6) scale(1, 1) rotate(0deg);
  }
  100% {
    top: 190px;
    right: 340px;
    -webkit-transform: scale(1) scale(1, 1) rotate(0deg);
            transform: scale(1) scale(1, 1) rotate(0deg);
  }
}

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

.news .news__inner {
  width: 60%;
  margin: 0 auto;
}

.news .yashiBox {
  position: absolute;
  top: 0px;
  left: 0;
}

@media all and (max-width: 1480px) {
  .news .news__inner {
    width: 60%;
    margin: 0 5% 0 auto;
  }
  .news .yashiBox {
    top: -30px;
  }
}

@media all and (max-width: 1367px) {
  .news {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .news .news__photo {
    width: 30%;
    height: 680px;
  }
  .news .news__photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .news .news__inner {
    width: 65%;
  }
  .news .news__photo2 {
    margin: 50px auto 0;
  }
  .news .news__photo2 img {
    overflow: hidden;
    border-radius: 30px;
  }
}

@media all and (max-width: 1100px) {
  .news {
    margin: 0px auto 0;
    padding-bottom: 100px;
  }
  .news .yashiBox {
    top: auto;
    bottom: 0;
  }
  .news .yashiBox .yashi-tree {
    margin: 0 auto 0 20px;
  }
  .news .news__inner {
    width: 70%;
    margin: 0 20px 0 auto;
  }
}

@media all and (max-width: 896px) {
  .news {
    padding-bottom: 150px;
  }
}

@media all and (max-width: 639px) {
  .news {
    margin: -50px auto 0;
    padding-bottom: 50px;
  }
  .news .yashiBox {
    top: auto;
    bottom: 0;
  }
  .news .yashiBox .yashi-tree {
    margin: 0 auto 0 20px;
    width: 120px;
  }
  .news .news__inner {
    width: 60%;
    padding: 50px 15px 0 0;
  }
  .news .news__title {
    padding: 4px 10px;
  }
}

.news-wrap {
  background-color: #fff;
  border-radius: 50px;
  padding: 10px 50px;
}

.news-wrap li {
  padding: 15px 0px;
  margin-bottom: 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.news-wrap li:first-child {
  margin-bottom: 0;
}

.news-wrap .data {
  width: 15%;
}

.news-wrap .txt {
  width: 85%;
  padding-left: 20px;
}

@media all and (max-width: 1367px) {
  .news-wrap .data {
    width: 20%;
  }
  .news-wrap .txt {
    width: 80%;
    padding-left: 20px;
  }
}

@media all and (max-width: 639px) {
  .news-wrap {
    border-radius: 10px;
    padding: 20px 15px;
  }
  .news-wrap li {
    padding: 0px 0px;
    display: block;
    font-size: 12px;
  }
  .news-wrap .data {
    width: 100%;
    padding-bottom: 5px;
  }
  .news-wrap .txt {
    width: 100%;
    padding-left: 0px;
  }
}

.greeting {
  position: relative;
  margin: 200px auto 150px;
  z-index: 2;
}

.greeting .carBox {
  position: absolute;
  width: 600px;
  right: 0;
  bottom: -150px;
}

.greeting .greeting__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 80%;
  padding: 50px 0;
}

.greeting .greeting__photoarea {
  width: 35%;
  margin: 0 auto 0;
}

.greeting .greeting__photoarea img {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 50px;
}

.greeting .greeting__txtarea {
  width: 55%;
  padding: 30px 0 100px 0;
}

.greeting .mainContents__title {
  position: relative;
}

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

.greeting .btn a {
  margin: 0;
  text-align: center;
}

@media all and (max-width: 1480px) {
  .greeting .greeting__inner {
    width: 90%;
  }
  .greeting .greeting__photoarea {
    width: 40%;
    margin: 0;
  }
  .greeting .greeting__txtarea {
    width: 55%;
    padding-bottom: 150px;
  }
  .greeting .mainContents__title {
    position: relative;
  }
  .greeting .btn {
    margin: 40px auto 0 0;
    text-align: left;
  }
  .greeting .btn a {
    text-align: center;
  }
}

@media all and (max-width: 1100px) {
  .greeting {
    margin: 100px auto 150px;
  }
  .greeting .greeting__inner {
    padding: 50px 0 0;
  }
}

@media all and (max-width: 639px) {
  .greeting {
    margin: 20px auto 160px;
  }
  .greeting .greeting__inner {
    width: 90%;
    padding: 30px 0;
  }
  .greeting .greeting__photoarea {
    width: 100%;
    margin: 20px -50px 30px auto;
    height: 150px;
  }
  .greeting .greeting__photoarea img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px 0 0 20px;
  }
  .greeting .greeting__txtarea {
    width: 100%;
    padding-bottom: 0;
    padding-top: 0;
  }
  .greeting .mainContents__title {
    position: relative;
  }
  .greeting .carBox {
    position: absolute;
    width: 600px;
    right: -50%;
    bottom: -200px;
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  .greeting .btn {
    margin: 40px auto 0;
    text-align: center;
  }
  .greeting .btn a {
    text-align: center;
  }
}

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

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

@-webkit-keyframes maruanimeon_sp {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  25% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  75% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes maruanimeon_sp {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  25% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  75% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

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

.feature:before {
  position: absolute;
  content: "";
  width: 435px;
  height: 974px;
  right: 0;
  top: 50px;
  background: url(../img/feature-deko02.png) no-repeat;
  background-size: cover;
}

.feature:after {
  position: absolute;
  content: "";
  width: 584px;
  height: 1090px;
  left: 0;
  bottom: 26%;
  background: url(../img/feature-deko01.png) no-repeat;
  background-size: cover;
}

.feature .maru01 {
  position: absolute;
  content: "";
  width: 61px;
  height: 61px;
  top: 31%;
  right: 4%;
  background: url(../img/maru01.png) no-repeat;
  background-size: cover;
  -webkit-animation: maruanimeon 3s ease-out 0s infinite;
          animation: maruanimeon 3s ease-out 0s infinite;
}

.feature .maru02 {
  position: absolute;
  content: "";
  width: 40px;
  height: 39px;
  top: 28%;
  right: 8%;
  background: url(../img/maru02.png) no-repeat;
  background-size: cover;
  -webkit-animation: maruanimeon 3s ease-out 0.5s infinite;
          animation: maruanimeon 3s ease-out 0.5s infinite;
}

.feature .maru03 {
  position: absolute;
  content: "";
  width: 57px;
  height: 58px;
  bottom: 54%;
  left: 12%;
  background: url(../img/maru03.png) no-repeat;
  background-size: cover;
  -webkit-animation: maruanimeon 3s ease-out 0s infinite;
          animation: maruanimeon 3s ease-out 0s infinite;
}

.feature .maru04 {
  position: absolute;
  content: "";
  width: 37px;
  height: 39px;
  bottom: 56%;
  left: 9%;
  background: url(../img/maru04.png) no-repeat;
  background-size: cover;
  -webkit-animation: maruanimeon 3s ease-out 0.5s infinite;
          animation: maruanimeon 3s ease-out 0.5s infinite;
}

.feature .maru05 {
  position: absolute;
  content: "";
  width: 54px;
  height: 51px;
  bottom: 42%;
  left: 26%;
  background: url(../img/maru05.png) no-repeat;
  background-size: cover;
  -webkit-animation: maruanimeon 3s ease-out 1.5s infinite;
          animation: maruanimeon 3s ease-out 1.5s infinite;
}

.feature .feature__inner {
  width: 70%;
}

@media all and (max-width: 1480px) {
  .feature:before {
    width: 325px;
    height: 704px;
  }
  .feature:after {
    width: 454px;
    height: 853px;
    left: 0;
  }
  .feature .maru01 {
    width: 30px;
    height: 30px;
    top: 24%;
    right: 3%;
  }
  .feature .maru02 {
    width: 20px;
    height: 20px;
    top: 23%;
    right: 6%;
  }
  .feature .maru03 {
    width: 34px;
    height: 35px;
    left: 9%;
  }
  .feature .maru04 {
    width: 24px;
    height: 25px;
    left: 6%;
  }
  .feature .maru05 {
    width: 34px;
    height: 32px;
    left: 26%;
  }
}

@media all and (max-width: 1367px) {
  .feature:after {
    width: 394px;
    height: 733px;
    left: -60px;
  }
  .feature .maru01 {
    top: 34%;
  }
  .feature .maru02 {
    top: 33%;
  }
  .feature .maru05 {
    left: 28%;
  }
}

@media all and (max-width: 1100px) {
  .feature:before {
    width: 265px;
    height: 574px;
  }
  .feature:after {
    width: 324px;
    height: 603px;
    left: 0;
  }
  .feature .maru01 {
    top: 29%;
  }
  .feature .maru02 {
    top: 27%;
  }
  .feature .maru03 {
    bottom: 46%;
  }
  .feature .maru04 {
    bottom: 50%;
  }
  .feature .maru05 {
    bottom: 40%;
    left: 22%;
  }
}

@media all and (max-width: 896px) {
  .feature:before {
    width: 195px;
    height: 424px;
    top: -20px;
  }
  .feature:after {
    width: 250px;
    height: 463px;
    left: 0;
    bottom: -20px;
  }
  .feature .maru01 {
    width: 20px;
    height: 20px;
    top: 19%;
  }
  .feature .maru02 {
    width: 15px;
    height: 15px;
    top: 17%;
  }
  .feature .maru03 {
    width: 20px;
    height: 20px;
    bottom: 25%;
    left: 6%;
  }
  .feature .maru04 {
    width: 14px;
    height: 14px;
    bottom: 26%;
    left: 4%;
  }
  .feature .maru05 {
    width: 18px;
    height: 17px;
    bottom: 14%;
    left: 24%;
  }
}

@media all and (max-width: 639px) {
  .feature .feature__inner {
    width: 90%;
  }
  .feature:before {
    width: 115px;
    height: 254px;
    top: -20px;
    right: -20px;
  }
  .feature:after {
    width: 123px;
    height: 226px;
    left: 0;
    bottom: -20px;
  }
  .feature .maru01 {
    width: 10px;
    height: 10px;
    -webkit-animation: maruanimeon_sp 3s ease-out 0s infinite;
            animation: maruanimeon_sp 3s ease-out 0s infinite;
  }
  .feature .maru02 {
    width: 7px;
    height: 7px;
    -webkit-animation: maruanimeon_sp 3s ease-out 0s infinite;
            animation: maruanimeon_sp 3s ease-out 0s infinite;
  }
  .feature .maru03 {
    width: 10px;
    height: 10px;
    bottom: 21%;
    -webkit-animation: maruanimeon_sp 3s ease-out 0s infinite;
            animation: maruanimeon_sp 3s ease-out 0s infinite;
  }
  .feature .maru04 {
    width: 7px;
    height: 7px;
    bottom: 23%;
    -webkit-animation: maruanimeon_sp 3s ease-out 0s infinite;
            animation: maruanimeon_sp 3s ease-out 0s infinite;
  }
  .feature .maru05 {
    width: 10px;
    height: 9px;
    bottom: 13%;
    left: 24%;
    -webkit-animation: maruanimeon_sp 3s ease-out 0s infinite;
            animation: maruanimeon_sp 3s ease-out 0s infinite;
  }
}

.feature__list {
  margin: 100px auto 0;
}

.feature__list li {
  position: relative;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 50px;
  max-width: 900px;
}

.feature__list .list__txtarea {
  width: 42%;
  margin: 0 6% 0 0;
}

.feature__list .list__txtarea:before {
  position: absolute;
  content: "";
  width: 345px;
  height: 345px;
  background: url(../img/sankaku.png) no-repeat;
  opacity: 0.2;
}

.feature__list .txtarea__inner {
  text-align: center;
}

.feature__list .list__title {
  font-size: 3rem;
}

.feature__list .list__num {
  text-align: center;
  max-width: 190px;
  margin: 0 auto;
  mix-blend-mode: overlay;
  -webkit-filter: drop-shadow(4px 4px 0px #fff);
          filter: drop-shadow(4px 4px 0px #fff);
}

.feature__list .list__photo {
  width: 52%;
}

.feature__list .list__photo .svg-mask {
  width: 100%;
  height: 100%;
}

.feature__list .list__photo .svg-mask #clip2 {
  -webkit-animation: none;
          animation: none;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.feature__list .list__photo .photo {
  -webkit-clip-path: url(#clip2);
          clip-path: url(#clip2);
}

.feature__list li:nth-child(2) {
  margin: 0 auto 50px;
}

.feature__list li:nth-child(2) .list__txtarea:before {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}

.feature__list li:nth-child(3) {
  margin: 0 0 50px auto;
}

.feature__list li:nth-child(3) .list__txtarea:before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.feature__list li:nth-child(4) {
  margin: 0 auto 50px;
}

.feature__list li:nth-child(4) .list__txtarea:before {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}

@media all and (max-width: 1480px) {
  .feature__list li {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .feature__list .list__txtarea:before {
    width: 275px;
    height: 275px;
    background: url(../img/sankaku.png) no-repeat;
    background-size: cover;
  }
  .feature__list .list__num {
    max-width: 140px;
    width: 80%;
  }
  .feature__list .list__title {
    font-size: 2rem;
  }
}

@media all and (max-width: 1367px) {
  .feature__list {
    margin: 0 auto;
  }
  .feature__list li {
    max-width: 620px;
    margin-bottom: 0px;
  }
  .feature__list li:nth-child(2) {
    margin: 0 auto 0;
  }
  .feature__list li:nth-child(3) {
    margin: 0 0 auto auto;
  }
  .feature__list li:nth-child(4) {
    margin: 0 auto 0;
  }
  .feature__list .list__photo .svg-mask #clip2 {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  .feature__list .list__txtarea:before {
    width: 195px;
    height: 195px;
    background: url(../img/sankaku.png) no-repeat;
    background-size: cover;
  }
  .feature__list .list__num {
    max-width: 90px;
  }
}

@media all and (max-width: 896px) {
  .feature__list li:nth-child(2) {
    margin: 0 auto 0;
  }
  .feature__list li:nth-child(3) {
    margin: 0 auto 0;
  }
  .feature__list li:nth-child(4) {
    margin: 0 auto 0;
  }
  .feature__list .list__txtarea {
    width: 50%;
  }
  .feature__list .list__txtarea:before {
    width: 135px;
    height: 135px;
    left: -10px;
  }
  .feature__list .list__photo .svg-mask #clip2 {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
  }
  .feature__list .list__num {
    max-width: 60px;
  }
  .feature__list .list__photo {
    width: 44%;
  }
}

@media all and (max-width: 639px) {
  .feature__list {
    margin: 50px -10% 0 auto;
    width: 100%;
  }
  .feature__list li {
    margin-bottom: 20px;
  }
  .feature__list li:nth-child(2) {
    margin-bottom: 30px;
  }
  .feature__list li:nth-child(2) .list__txtarea:before {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .feature__list li:nth-child(3) {
    margin-bottom: 30px;
  }
  .feature__list li:nth-child(4) {
    margin-bottom: 30px;
  }
  .feature__list li:nth-child(4) .list__txtarea:before {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .feature__list .list__txtarea {
    width: 60%;
    margin: 0;
  }
  .feature__list .list__txtarea:before {
    width: 105px;
    height: 105px;
    left: -10px;
    bottom: 0;
  }
  .feature__list .list__title {
    font-size: 14px;
  }
  .feature__list .list__txt {
    font-size: 12px;
    text-align: left;
  }
  .feature__list .list__photo {
    width: 34%;
  }
  .feature__list .list__photo .svg-mask #clip2 {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  .feature__list .list__num {
    max-width: 30px;
  }
}

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

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

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

.rental__list li {
  width: 46%;
  margin: 0 1%;
  padding: 40px;
  border: 2px solid #fff;
  border-radius: 40px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.rental__list li:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  border: 2px solid #c3a349;
  border-radius: 40px;
  -webkit-transform: rotate(-1deg);
          transform: rotate(-1deg);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.rental__list li:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  border: 2px solid #246e89;
  border-radius: 40px;
  -webkit-transform: rotate(1deg);
          transform: rotate(1deg);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.rental__list li:nth-child(2) {
  margin-left: 4%;
}

.rental__list li:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: white;
}

.rental__list li:hover:before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.rental__list li:hover:after {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.rental__list .list__icon {
  text-align: center;
}

.rental__list .list__txtarea {
  text-align: center;
}

.rental__list .list__title {
  font-size: 3rem;
  line-height: 1.4;
}

.rental__list .list__subtxt {
  color: #1B6D85;
}

@media all and (max-width: 1480px) {
  .rental__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .rental__list li {
    width: 46%;
    padding: 40px 15px;
  }
  .rental__list li:nth-child(2) {
    margin-left: 2%;
  }
  .rental__list .list__title {
    font-size: 2rem;
  }
}

@media all and (max-width: 1100px) {
  .rental__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .rental__list li {
    width: 46%;
    padding: 40px 15px;
  }
  .rental__list li:nth-child(2) {
    margin-left: 2%;
  }
  .rental__list .list__icon {
    text-align: center;
  }
  .rental__list .list__title {
    font-size: 2rem;
  }
}

@media all and (max-width: 896px) {
  .rental__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0;
  }
  .rental__list li {
    width: 48%;
    padding: 40px 15px;
    border-radius: 20px;
  }
  .rental__list li:nth-child(2) {
    margin-left: 1%;
  }
  .rental__list .list__icon {
    width: 80%;
    max-width: 120px;
    margin: 0 auto;
  }
  .rental__list .list__title {
    font-size: 2rem;
  }
}

@media all and (max-width: 639px) {
  .rental__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0;
    display: block;
  }
  .rental__list li {
    width: 80%;
    padding: 20px 10px;
    border-radius: 20px;
    margin: 0 auto 20px;
  }
  .rental__list li:nth-child(2) {
    margin-left: auto;
  }
  .rental__list li:before, .rental__list li:after {
    border-radius: 20px;
  }
  .rental__list .list__icon {
    width: 80%;
    max-width: 120px;
    margin: 0 auto;
  }
  .rental__list .list__title {
    font-size: 14px;
  }
  .rental__list .list__subtxt {
    font-size: 12px;
  }
  .rental__list .btn {
    margin: 20px auto 0;
  }
}

.contact {
  position: relative;
  margin: 250px auto 0;
  background-color: #1b6d85;
}

.contact:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 262px;
  left: 0;
  right: 0;
  top: -260px;
  background: url(../img/bg-wave.png) no-repeat;
  background-size: cover;
}

.contact:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 262px;
  left: 0;
  right: 0;
  bottom: -260px;
  background: url(../img/bg-wave.png) no-repeat;
  background-size: cover;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
  z-index: 2;
}

.contact .contact__inner {
  position: relative;
  width: 60%;
  padding: 50px 0 100px;
}

.contact .contact__detail {
  margin: 0 auto 20px;
  text-align: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 600px;
  justify-content: center;
}

.contact .contact__detail--sub {
  margin: 0 auto 40px;
  text-align: center;
  color: #fff;
}

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

.contact .contact__tel {
  width: 48%;
  font-size: 2rem;
  line-height: 1;
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 300;
  border: 1px solid #fff;
  padding: 16px 40px;
  max-width: 400px;
  margin: 0 1% 20px;
  display: inline-block;
  text-align: center;
  color: #fff;
  border-radius: 80px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/* .contact .contact__tel:first-child {
  width: 98%;
} */

.contact .contact__tel .list__txt {
  text-align: center;
}

.contact .contact__tel:hover {
  color: #c3a349;
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.contact .contact__shi-sa {
  margin: 0 auto 0px;
  text-align: center;
  position: relative;
  max-width: 435px;
}

.contact .contact__shi-sa .shi-sa_cloud {
  position: absolute;
  left: 6%;
  top: 20%;
  -webkit-animation: shisa_animeon 4s ease-out 0s infinite;
          animation: shisa_animeon 4s ease-out 0s infinite;
}

.contact .contact__shi-sa .shi-sa_cloud2 {
  position: absolute;
  right: 20%;
  top: 0%;
  -webkit-animation: shisa_animeon2 4s ease-out 0.6s infinite;
          animation: shisa_animeon2 4s ease-out 0.6s infinite;
}

.contact .contact__shi-sa .shi-sa_cloud3 {
  position: absolute;
  right: 5%;
  top: 30%;
  -webkit-animation: shisa_animeon 4s ease-out 0.8s infinite;
          animation: shisa_animeon 4s ease-out 0.8s infinite;
}

@media all and (max-width: 896px) {
  .contact .contact__inner {
    width: 80%;
    padding: 0 0 20x;
  }
  .contact .contact__detail {
    position: initial;
    margin: 40px auto 0;
  }
  .contact .contact__tel {
    font-size: 1.4rem;
    line-height: 1;
    font-family: "Nanum Gothic", sans-serif;
    font-weight: 300;
    margin-bottom: 20px;
  }
  .contact .contact__shi-sa {
    margin: 40px auto -12px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@media all and (max-width: 639px) {
  .contact {
    margin: 60px auto 0;
  }
  .contact:before {
    height: 102px;
    top: -102px;
  }
  .contact:after {
    height: 102px;
    bottom: -102px;
  }
  .contact .contact__inner {
    position: relative;
    width: 90%;
    padding: 0 0 20px;
  }
  .contact .contact__detail {
    margin: 0 auto;
  }
  .contact .contact__tel {
    text-align: center;
    width: 80%;
    max-width: 240px;
    margin: 0 auto 15px;
    padding: 12px 30px;
  }
}

@-webkit-keyframes shisa_animeon {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  25% {
    -webkit-transform: translateX(5px) translateY(-5px);
            transform: translateX(5px) translateY(-5px);
  }
  50% {
    -webkit-transform: translateX(0px) translateY(0px);
            transform: translateX(0px) translateY(0px);
  }
  75% {
    -webkit-transform: translateX(5px) translateY(-5px);
            transform: translateX(5px) translateY(-5px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes shisa_animeon {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  25% {
    -webkit-transform: translateX(5px) translateY(-5px);
            transform: translateX(5px) translateY(-5px);
  }
  50% {
    -webkit-transform: translateX(0px) translateY(0px);
            transform: translateX(0px) translateY(0px);
  }
  75% {
    -webkit-transform: translateX(5px) translateY(-5px);
            transform: translateX(5px) translateY(-5px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@-webkit-keyframes shisa_animeon2 {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  25% {
    -webkit-transform: translateX(2px) translateY(-5px);
            transform: translateX(2px) translateY(-5px);
  }
  50% {
    -webkit-transform: translateX(0px) translateY(0px);
            transform: translateX(0px) translateY(0px);
  }
  75% {
    -webkit-transform: translateX(2px) translateY(-5px);
            transform: translateX(2px) translateY(-5px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes shisa_animeon2 {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  25% {
    -webkit-transform: translateX(2px) translateY(-5px);
            transform: translateX(2px) translateY(-5px);
  }
  50% {
    -webkit-transform: translateX(0px) translateY(0px);
            transform: translateX(0px) translateY(0px);
  }
  75% {
    -webkit-transform: translateX(2px) translateY(-5px);
            transform: translateX(2px) translateY(-5px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

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

.contact__list li {
  width: 48%;
  padding: 0px 30px;
  background-clip: padding-box;
  margin: 0 1%;
}

.contact__list .list__txt {
  text-align: center;
  font-weight: bold;
  color: #333;
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 300;
  font-size: 3rem;
  position: relative;
  margin-bottom: 20px;
}

.contact__list .list__txt:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  left: 0;
  right: 0;
  bottom: -12px;
  margin: 0 auto;
  border-top: 15px solid #333;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.contact__list .list__icon {
  border-radius: 50%;
  width: 140px;
  height: 140px;
  position: relative;
  z-index: 1;
  margin: 0 auto 0 -8px;
  text-align: center;
  border-radius: 50%;
  border: 4px solid #333;
}

.contact__list .list__icon:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}

.contact__list .list__icon img {
  padding: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}

.contact__list a:hover {
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.contact__list a:hover .list__icon {
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.contact__list a:hover .list__icon:before {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: scale(0);
          transform: scale(0);
}

@media all and (max-width: 896px) {
  .contact__list .list__icon {
    margin: 0 auto;
    max-width: 430px;
  }
}

@media all and (max-width: 639px) {
  .contact__list {
    max-width: 220px;
  }
  .contact__list li {
    padding: 0 0px;
  }
  .contact__list .list__txt span {
    font-size: 1.6rem;
  }
  .contact__list .list__icon {
    border-radius: 50%;
    width: 80px;
    height: 80px;
  }
  .contact__list .list__icon img {
    padding: 15px;
  }
}

/* page content
----------------------------------*/
.pageContents {
  position: relative;
  margin: 0 auto;
}

.pageContents .pageContents__inner {
  padding: 100px 0;
  width: 60%;
  margin: 0 auto;
  position: relative;
}

.pageContents .pageContents__inner.inner--p50 {
  padding-top: 50px;
}

.pageContents .pageContents__inner.inner--garden {
  max-width: 880px;
}

.pageContents .pageContents__subtxt {
  font-size: 2rem;
}

.pageContents .pageContents__map {
  width: 100%;
}

.pageContents .pageContents__map iframe {
  width: 100%;
  height: 400px;
  border-radius: 20px;
}

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

@media all and (max-width: 1100px) {
  .pageContents .pageContents__inner {
    width: 90%;
  }
}

@media all and (max-width: 896px) {
  .pageContents .pageContents__inner {
    width: 90%;
    padding-bottom: 0;
  }
}

@media all and (max-width: 639px) {
  .pageContents.pageContents--pageBottom {
    margin-bottom: 150px;
  }
  .pageContents .pageContents__subtxt {
    font-size: 1.4rem;
  }
}

.pageContents__box {
  margin: 50px auto 0;
}

.pageContents__box .box__title {
  background-color: #1B6D85;
  color: #fff;
  padding: 6px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.pageContents__subbox {
  margin: 50px auto 0;
  background-color: #f3f3f3;
  padding: 40px;
}

.pageContents__subbox .box__title {
  color: #333;
  padding: 6px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid #333;
}

.pageContents__subbox .box__subtxt span {
  color: #1B6D85;
}

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

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

.flow__list li {
  width: 31%;
  margin: 0 2% 0 0;
  padding: 20px;
  position: relative;
  border: 1px solid #1B6D85;
  border-radius: 20px;
}

.flow__list li:last-child {
  margin: 0;
}

.flow__list li:last-child:before {
  display: none;
}

.flow__list li:before {
  position: absolute;
  content: "";
  width: 16px;
  height: 20px;
  top: 46%;
  right: -16px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #1b6d85;
}

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

.flow__list .list__photo img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  border-radius: 20px;
}

.flow__list .list__icon {
  position: relative;
  z-index: 1;
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: -50px auto 0;
  padding: 18px 10px;
}

.flow__list .list__title {
  text-align: center;
  margin-bottom: 10px;
}

.flow__list .list__title span {
  font-size: 2rem;
  color: #1B6D85;
}

.flow__list .btn {
  margin-top: 10px;
}

@media all and (max-width: 896px) {
  .flow__list .list__title span {
    font-size: 1.6rem;
  }
  .flow__list .list__photo img {
    height: 130px;
  }
  .flow__list .list__icon {
    width: 60px;
    height: 60px;
    margin: -30px auto 0;
    padding: 12px 10px;
  }
}

@media all and (max-width: 639px) {
  .flow__list {
    margin: 30px auto 0;
  }
  .flow__list li {
    width: 90%;
    margin: 0 auto 25px;
    padding: 15px;
  }
  .flow__list li:last-child {
    margin: 0 auto 0;
  }
  .flow__list li:before {
    top: auto;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -20px;
    border-bottom: none;
    border-top: 16px solid #1B6D85;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
  }
  .flow__list .list__title {
    margin-bottom: 5px;
  }
  .flow__list .list__title span {
    font-size: 1.4rem;
  }
  .flow__list .list__txt {
    font-size: 12px;
  }
}

.dispatch__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.dispatch__list li {
  width: 48%;
  margin: 0 4% 0 0;
}

.dispatch__list li:nth-child(2n) {
  margin: 0;
}
.dispatch__list li:nth-child(3) {
  margin-top: 5%;
}

.dispatch__list .list__photo img {
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

.dispatch__list .list__title {
  margin: -40px auto 20px;
  text-align: center;
}

.dispatch__list .list__title span {
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  padding: 12px 50px 12px;
  font-size: 2rem;
}

.dispatch__list .list__txtarea {
  text-align: center;
}

.dispatch__list .list__txtarea span {
  padding: 0 20px 5px;
  border-bottom: 1px solid #1B6D85;
}

.dispatch__list .list__txtarea p.hotel_p {
  font-size: 14px;
  margin-top: 5px;
}

@media all and (max-width: 639px) {
  .dispatch__list li {
    width: 90%;
    margin: 0 auto 30px;
  }
  .dispatch__list li:nth-child(2n) {
    margin: 0 auto;
  }
  .dispatch__list .list__photo img {
    border-radius: 10px;
  }
  .dispatch__list .list__title {
    margin: -20px auto 10px;
    text-align: center;
  }
  .dispatch__list .list__title span {
    border-radius: 10px 10px 0 0;
    padding: 6px 30px 6px;
    font-size: 14px;
  }
}

.company .company__photo {
  text-align: center;
  margin-top: 60px;
}

.company .company__map {
  margin: 40px auto 0;
  max-width: 880px;
}

.company .company__map iframe {
  width: 100%;
  height: 300px;
}

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

.company__txtBox {
  margin: 60px auto 120px;
}

.company__txtBox.type--mb0 {
  margin-bottom: 0;
}

.company__txtBox .txtBox__title {
  position: relative;
  font-family: "Hina Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-size: 2.8rem;
  padding-bottom: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.company__txtBox .txtBox__name {
  text-align: right;
}

.company__txtBox .name__value {
  padding-right: 20px;
}

.company__txtBox .name__main {
  font-size: 2rem;
  font-weight: bold;
}

.company__txtBox .txtBox__detail {
  margin-top: 20px;
}

@media all and (max-width: 639px) {
  .company__txtBox {
    margin: 40px auto 60px;
  }
  .company__txtBox .txtBox__title {
    font-size: 1.6rem;
    padding-bottom: 15px;
    margin-bottom: 10px;
  }
  .company__txtBox .name__value {
    padding-right: 15px;
    font-size: 12px;
  }
  .company__txtBox .name__main {
    font-size: 1.3rem;
    font-weight: bold;
  }
  .company__txtBox .txtBox__detail {
    margin-top: 20px;
  }
}

.company__grayBox {
  background-color: #fafafa;
  padding: 40px;
  margin: 40px auto 0;
}

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

.history__list {
  position: relative;
  margin: 0 auto;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.history__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

.history__list li:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 102%;
  left: 18.5%;
  top: -1%;
  background-color: #ddd;
}

.history__list li:after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  left: 18%;
  top: 22px;
  background-color: #333;
  border-radius: 3px;
}

.history__list .list__title {
  width: 20%;
  padding: 15px 20px;
}

.history__list .list__title span {
  font-size: 2rem;
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 300;
  font-weight: bold;
}

.history__list .list__txt {
  width: 80%;
  padding: 15px 20px;
}

@media all and (max-width: 1100px) {
  .history__list li:before {
    left: 19%;
  }
  .history__list .list__title {
    font-size: 14px;
    line-height: 1.4;
  }
  .history__list .list__title span {
    font-size: 1.6rem;
  }
}

@media all and (max-width: 639px) {
  .history__list li:before {
    left: 24.4%;
  }
  .history__list li:after {
    left: 23.4%;
    top: 20px;
    width: 10px;
    height: 10px;
  }
  .history__list .list__title {
    width: 25%;
    padding: 15px 10px;
    font-size: 12px;
    line-height: 1.4;
  }
  .history__list .list__title span {
    font-size: 14px;
  }
  .history__list .list__txt {
    width: 75%;
    padding: 15px 10px 15px 20px;
    font-size: 12px;
  }
}

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

.merit__list li {
  width: 31%;
  margin: 0 1%;
  padding: 50px 20px;
  border: 1px solid #ddd;
  border-radius: 12px;
  text-align: center;
}

.merit__list .list__txt {
  position: relative;
  margin-top: 20px;
}

.merit__list .list__txt span {
  font-size: 2.6rem;
  line-height: 1;
  font-weight: bold;
  opacity: 0.4;
  padding-right: 5px;
}

@media all and (max-width: 639px) {
  .merit__list {
    display: block;
  }
  .merit__list li {
    width: 100%;
    margin: 20px auto 0;
    padding: 20px 15px;
  }
  .merit__list .list__txt {
    margin-top: 10px;
  }
}

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

.reserve__list li {
  width: 23%;
  margin: 0 1%;
  padding: 0px 0px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.reserve__list li:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #06c755;
  top: 20px;
  right: -52%;
  z-index: -1;
}

.reserve__list li:last-child:before {
  display: none;
}

.reserve__list .list__num {
  text-align: center;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  border: 1px solid #06c755;
  background-color: #fff;
}

.reserve__list .list__num span {
  color: #06c755;
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  font-weight: bold;
  line-height: 2;
  background-color: #fff;
}

.reserve__list .list__icon {
  margin-top: 20px;
}

.reserve__list .list__title {
  margin-top: 15px;
  text-align: center;
  font-family: "Hina Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-weight: bold;
}

.reserve__list .list__txt {
  position: relative;
  margin-top: 5px;
  text-align: left;
}

@media all and (max-width: 639px) {
  .reserve__list {
    display: block;
  }
  .reserve__list li {
    width: 100%;
    margin: 20px auto 0;
    padding: 20px 15px;
  }
  .reserve__list li:before {
    width: 1px;
    height: 100%;
    right: auto;
    left: 32px;
    top: auto;
    bottom: -25%;
  }
  .reserve__list .list__icon {
    margin-top: -40px;
    margin-left: 50px;
  }
  .reserve__list .list__txt {
    margin-top: 10px;
    margin-left: 50px;
  }
  .reserve__list .list__title {
    margin-left: 50px;
  }
  .reserve__list .list__num {
    margin: 0 auto 0 0;
    width: 36px;
    height: 36px;
  }
  .reserve__list .list__num span {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

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

.case__list li {
  width: 31%;
  margin: 0 1% 40px;
  border-radius: 12px;
  text-align: center;
  padding: 0 20px;
}

.case__list .list__txt {
  position: relative;
  margin-top: 20px;
}

.case__list .list__txt span {
  font-size: 2.6rem;
  line-height: 1;
  font-weight: bold;
  color: #1B6D85;
  display: block;
  position: relative;
  padding-bottom: 20px;
}

.case__list .list__txt span:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  left: 0;
  right: 0;
  bottom: 7px;
  margin: 0 auto;
  background-color: #ddd;
}

@media all and (max-width: 639px) {
  .case__list li {
    width: 48%;
    margin: 0px 1% 30px;
    padding: 0px 10px;
  }
  .case__list .list__txt {
    margin-top: 10px;
    font-size: 12px;
    text-align: left;
  }
  .case__list .list__txt span {
    text-align: center;
    font-size: 1.5rem;
  }
}

.shopDetail {
  position: relative;
}

.shopDetail .shopDetail__inner {
  position: relative;
  padding: 0;
  margin: 100px auto;
  width: 60%;
}

.shopDetail .shopDetail__inner.inner--w80 {
  margin: 100px auto;
  width: 80%;
}

.shopDetail .shopDetail__inner.inner--w80--right {
  margin: 100px 5% auto auto;
  width: 80%;
}

.shopDetail .shopDetail__inner.inner--w80--left {
  margin: 100px auto auto 5%;
  width: 80%;
}

.shopDetail .shopDetail__inner.inner--detail {
  margin: -200px auto 0;
}

.shopDetail .shopDetail__titleArea {
  background-color: #fff;
  display: inline-block;
  padding: 30px 60px 30px 10px;
  position: absolute;
  left: 0;
  top: 40px;
}

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

.shopDetail .shopDetail__photo {
  text-align: right;
}

.shopDetail .shopDetail__photo img {
  width: 100%;
  max-width: 1000px;
  height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
}

.shopDetail .shopDetail__telBox {
  margin: 80px auto;
  padding: 40px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.shopDetail .shopDetail__telBox:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #ddd;
}

.shopDetail .telBox__item {
  font-size: 2rem;
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 300;
  text-align: center;
  padding: 0 50px;
  width: 50%;
  max-width: 550px;
}

.shopDetail .telBox__item a {
  color: #333;
}

.shopDetail .telBox__item span {
  color: #333;
}

.shopDetail .shopDetail__photoarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.shopDetail .shopDetail__photo2 img {
  width: 100%;
  max-width: 700px;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

.shopDetail .shopDetail__photo3 {
  margin: 200px 0 0 100px;
}

.shopDetail .shopDetail__photo3 img {
  width: 100%;
  max-width: 600px;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}

.shopDetail .txtarea__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.shopDetail .txtarea__box .box__title {
  width: 120px;
}

.shopDetail .shopDetail__linkarea {
  max-width: 900px;
  margin: 0 auto;
  background-color: #f8fcef;
  padding: 50px;
  text-align: center;
}

.shopDetail .shopDetail__linkarea .shopDetail__title {
  text-align: center;
  font-size: 2rem;
}

.shopDetail .shopDetail__btn {
  max-width: 300px;
  margin: 20px auto 0;
}

.shopDetail .shopDetail__btn a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: block;
  background-color: #06c755;
  color: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  border: 1px solid #06c755;
}

.shopDetail .shopDetail__btn a:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #06c755;
  background-color: #fff;
}

@media all and (max-width: 1100px) {
  .shopDetail .shopDetail__inner {
    width: 80%;
  }
  .shopDetail .shopDetail__photo2 img {
    height: 300px;
  }
  .shopDetail .shopDetail__photo3 {
    margin: 150px 0 0 50px;
  }
  .shopDetail .shopDetail__photo3 img {
    height: 400px;
  }
}

@media all and (max-width: 896px) {
  .shopDetail .shopDetail__inner {
    width: 90%;
  }
  .shopDetail .shopDetail__inner.inner--w80 {
    margin: 100px auto;
    width: 90%;
  }
  .shopDetail .shopDetail__inner.inner--w80--right {
    margin: 100px auto;
    width: 90%;
  }
  .shopDetail .shopDetail__inner.inner--w80--left {
    margin: 100px auto;
    width: 90%;
  }
  .shopDetail .shopDetail__inner.inner--detail {
    margin: -90px auto 0;
  }
  .shopDetail .shopDetail__titleArea .shopDetail__title {
    font-size: 2rem;
  }
  .shopDetail .shopDetail__photo img {
    height: 400px;
  }
  .shopDetail .shopDetail__photo2 img {
    height: 200px;
  }
  .shopDetail .shopDetail__photo3 {
    margin: 50px 0 0 50px;
  }
  .shopDetail .shopDetail__photo3 img {
    height: 300px;
  }
  .shopDetail .shopDetail__telBox {
    padding: 0;
  }
  .shopDetail .shopDetail__txtarea {
    display: inline-block;
    background-color: #fff;
    padding: 20px 50px 20px 0;
  }
}

@media all and (max-width: 639px) {
  .shopDetail .shopDetail__inner {
    width: 90%;
    margin: 40px auto 100px;
  }
  .shopDetail .shopDetail__inner.inner--w80 {
    margin: 40px auto;
  }
  .shopDetail .shopDetail__inner.inner--w80--right {
    margin: 100px auto 40px;
  }
  .shopDetail .shopDetail__inner.inner--w80--left {
    margin: 40px auto;
  }
  .shopDetail .shopDetail__inner.inner--tel {
    margin: 40px auto;
  }
  .shopDetail .shopDetail__titleArea {
    padding: 20px 40px 20px 0;
    top: -40px;
  }
  .shopDetail .shopDetail__titleArea .shopDetail__title {
    font-size: 1.5rem;
  }
  .shopDetail .shopDetail__photo img {
    height: 240px;
  }
  .shopDetail .shopDetail__photo2 img {
    height: 120px;
  }
  .shopDetail .shopDetail__photo3 {
    margin: 50px 0 0 30px;
  }
  .shopDetail .shopDetail__photo3 img {
    height: 180px;
  }
  .shopDetail .shopDetail__telBox {
    padding: 0;
    margin: 0px auto;
  }
  .shopDetail .shopDetail__telBox:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .shopDetail .shopDetail__telBox .telBox__item {
    width: 100%;
    padding: 10px 0;
    display: block;
    font-size: 1.4rem;
  }
  .shopDetail .shopDetail__txtarea {
    display: inline-block;
    background-color: #fff;
    padding: 20px 50px 20px 0;
  }
  .shopDetail .shopDetail__linkarea {
    padding: 30px 20px;
  }
  .shopDetail .shopDetail__linkarea .shopDetail__title {
    font-size: 1.4rem;
  }
  .shopDetail .shopDetail__linkarea .linkarea__icon {
    padding: 0 50px;
  }
  .shopDetail .shopDetail__linkarea .shopDetail__btn a {
    margin: 0 auto;
    max-width: 250px;
  }
}

.shop__map {
  width: 100%;
}

.shop__map iframe {
  width: 100%;
  height: 500px;
}

.shop__map .i4ewOd-pzNkMb-haAclf {
  display: none !important;
}

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

.shop__list li {
  width: 31%;
  margin: 0 1% 40px;
}

.shop__list .list__photo {
  height: 200px;
}

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

.shop__list .list__title {
  font-family: "Hina Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-size: 2rem;
  margin: 20px auto 10px;
  color: #333;
  line-height: 1;
}

.shop__list .list__txt {
  color: #333;
  background-color: #f2f2f2;
  padding: 2px 10px;
  font-size: 1.4rem;
}

@media all and (max-width: 896px) {
  .shop__list li {
    width: 31%;
  }
}

@media all and (max-width: 639px) {
  .shop__list li {
    width: 47%;
    margin: 0 6% 30px 0;
  }
  .shop__list li:nth-child(2n) {
    margin: 0 auto 30px;
  }
  .shop__list .list__photo {
    height: 90px;
  }
  .shop__list .list__title {
    font-size: 14px;
    margin: 10px auto 10px;
    line-height: 1.4;
  }
  .shop__list .list__txt {
    color: #333;
    background-color: #f2f2f2;
    padding: 2px 10px;
    font-size: 12px;
  }
}

.mailform {
  position: relative;
  margin: 0 auto;
  padding: 100px 0;
  background-color: #fff;
}

.mailform.mailform--bgbrown {
  background-color: #e6f3ef;
}

.mailform .mailform__inner {
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
}

.mailform .mailform__title {
  text-align: center;
}

.mailform .mailform__title .eng {
  color: #333;
}

.mailform .mailform__title .ja {
  color: #333;
}

/* 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 #1B6D85;
  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 #1B6D85;
  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;
  width: 400px;
  height: 400px;
}

.slide_list li a {
  display: block;
}

.slide_list li img {
  width: 400px;
  height: auto;
  -webkit-transition: -webkit-filter 0.2s ease-in;
  transition: -webkit-filter 0.2s ease-in;
  transition: filter 0.2s ease-in;
  transition: filter 0.2s ease-in, -webkit-filter 0.2s ease-in;
  -o-object-fit: cover;
     object-fit: cover;
}

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

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

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

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

.photo-anime.photo-anime-on.type1 {
  -webkit-animation: photoanimeon 0.4s ease-out 0s forwards;
          animation: photoanimeon 0.4s ease-out 0s forwards;
}

.photo-anime.photo-anime-on.type2 {
  -webkit-animation: photoanimeon 0.4s ease-out 0.3s forwards;
          animation: photoanimeon 0.4s ease-out 0.3s forwards;
}

.photo-anime.photo-anime-on.type3 {
  -webkit-animation: photoanimeon 0.4s ease-out 0.6s forwards;
          animation: photoanimeon 0.4s ease-out 0.6s forwards;
}

.photo-anime.photo-anime-on.type4 {
  -webkit-animation: photoanimeon 0.4s ease-out 0.9s forwards;
          animation: photoanimeon 0.4s ease-out 0.9s forwards;
}

.photo-anime-blur {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.photo-anime-blur.photo-anime-on {
  -webkit-animation: photoanimeon2 0.8s ease-out 0.2s forwards;
          animation: photoanimeon2 0.8s ease-out 0.2s forwards;
}

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

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

@-webkit-keyframes photoanimeon2 {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  70% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes photoanimeon2 {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  70% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.txt-anime {
  opacity: 0;
}

.txt-anime.txt-anime-on {
  -webkit-animation: txtanimeon 0.5s ease-out 0.2s forwards;
          animation: txtanimeon 0.5s ease-out 0.2s forwards;
}

.txt-anime.txt-anime-on.type2 {
  -webkit-animation: txtanimeon 0.5s ease-out 0.3s forwards;
          animation: txtanimeon 0.5s ease-out 0.3s forwards;
}

.txt-anime.txt-anime-on.type3 {
  -webkit-animation: txtanimeon 0.5s ease-out 0.4s forwards;
          animation: txtanimeon 0.5s ease-out 0.4s forwards;
}

.txt-anime.txt-anime-on.type4 {
  -webkit-animation: txtanimeon 0.5s ease-out 0.5s forwards;
          animation: txtanimeon 0.5s ease-out 0.5s forwards;
}

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

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

/*印象編　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: #1B6D85;
  /*伸びる背景色の設定*/
}

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

/*----------------------------------
scrolldown
----------------------------------*/
#scrolldown {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #333;
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 300;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  font-size: 1.4rem;
  z-index: 100;
  height: 210px;
}

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

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

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

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

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

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

/*----------------------------------
Q and A
----------------------------------*/
.qa-list dl {
  position: relative;
  margin: 30px 0 0;
  cursor: pointer;
  border: 1px solid #f4e8ff;
  border-radius: 20px;
}

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

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

.qa-list dl dt {
  position: relative;
  padding: 20px 30px 20px 60px;
  background-color: #ffffff;
  font-size: 1.8rem;
}

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

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

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

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

@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 40px 16px 42px;
    font-size: 14px;
  }
  .qa-list dl dt:before {
    font-size: 14px;
    top: 20px;
    left: 15px;
  }
  .qa-list dl dd {
    margin: 0;
    padding: 16px 20px 16px 40px;
    font-size: 14px;
  }
  .qa-list dl dd:before {
    font-size: 14px;
    left: 15px;
    margin-top: 5px;
  }
}

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

.tbl th,
.tbl td {
  padding: 8px 20px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.tbl th {
  width: 20%;
  text-align: left;
  font-weight: normal;
  border-right: 1px solid #ddd;
}

.tbl th span {
  background-color: #f3f3f3;
  padding: 2px 5px;
  font-size: 12px;
  color: #000;
  display: inline-block;
}

.tbl th.subtitle {
  width: 50px;
  padding: 8px 15px;
  background-color: #f3f3f3;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.tbl td {
  vertical-align: middle;
  width: 80%;
}

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

@media all and (max-width: 639px) {
  .tbl th {
    width: 32%;
    text-align: left;
    font-size: 1.2rem;
  }
  .tbl th.subtitle {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
  }
  .tbl th,
  .tbl td {
    padding: 5px 10px;
    font-size: 1.2rem;
  }
}

.tbl.company-tbl th {
  width: 24%;
}
@media all and (max-width: 639px) {
  .tbl.company-tbl th {
    width: 32%;
  }
}

/*----------------------------------
タブリスト
----------------------------------*/
.tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1200px;
  margin: 250px auto 0;
  position: relative;
  z-index: 1;
}

.tab li {
  width: 18%;
  margin: 0 0.5%;
}

.tab li:hover a {
  background-color: #1B6D85;
  border: 1px solid #1B6D85;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.tab li:hover a .list__title {
  color: #fff;
}

.tab li:hover a .list__inner {
  mix-blend-mode: hard-light;
}

.tab li.active:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 350px;
  top: -210px;
  left: 0%;
  background: url(../img/navbg-01.jpg) no-repeat;
  background-size: cover;
  z-index: -1;
  border-radius: 10px;
}

.tab li.active:nth-child(2):before {
  background: url(../img/navbg-02.jpg) no-repeat;
  background-size: cover;
}

.tab li.active:nth-child(3):before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/21153/navbg-03.jpg) no-repeat;
  background-size: cover;
}

.tab li.active:nth-child(4):before {
  background: url(../img/navbg-06.jpg) no-repeat;
  background-size: cover;
}

.tab li.active:nth-child(5):before {
  background: url(../img/navbg-05.jpg) no-repeat;
  background-size: cover;
}

.tab li.active a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: scale(1);
          transform: scale(1);
  background-color: #e6f3ef;
  border: 1px solid #1B6D85;
}

.tab li.active a .list__title {
  color: #000;
}

.tab li.active a .list__inner {
  mix-blend-mode: inherit;
}

.tab li.active a:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -20px;
  border-top: 20px solid #1B6D85;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

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

.tab .list__title {
  text-align: center;
  color: #1B6D85;
}

.tab a {
  background-color: #fff;
  border: 1px solid #fff;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 1;
  position: relative;
  display: block;
  padding: 20px;
  z-index: 1;
  border-radius: 10px;
}

@media all and (max-width: 896px) {
  .tab {
    display: block;
    margin: 60px auto 0;
  }
  .tab li {
    width: 40%;
    margin: 0 1% 10px auto;
  }
  .tab li.active:before {
    top: -50px;
    background-position: right;
  }
  .tab li a {
    padding: 10px 15px;
  }
  .tab li a:after {
    display: none;
  }
  .tab li .list__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .tab li .list__inner .list__icon {
    width: 40%;
  }
  .tab li .list__inner .list__icon img {
    width: 70px;
    height: 30px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .tab li .list__inner .list__title {
    width: 60%;
    padding: 0 0 0 20px;
  }
}

@media all and (max-width: 639px) {
  .tab {
    display: block;
    margin: 60px auto 0;
  }
  .tab li {
    width: 80%;
    margin: 0 2% 5px auto;
  }
  .tab li.active:before {
    top: -50px;
    height: 320px;
  }
  .tab li a {
    padding: 10px 10px;
  }
  .tab li a:after {
    display: none;
  }
  .tab li .list__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .tab li .list__inner .list__icon {
    width: 40%;
  }
  .tab li .list__inner .list__icon img {
    width: 70px;
    height: 30px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .tab li .list__inner .list__title {
    width: 60%;
    padding: 0 0 0 0px;
    text-align: left;
  }
}

.area {
  display: none;
  opacity: 0;
  background: #fff;
  margin: 50px auto 0;
}

.area.is-active {
  display: block;
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.area .area__title {
  background-color: #1B6D85;
  color: #fff;
  padding: 6px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

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

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

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

.sponly {
  display: none;
}

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


.open2,open3 {
	cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
  margin: 40px auto 0;
  position: relative;
  display: block;
  width: 90%;
  max-width: 285px;
  color: #fff;
  padding: 8px 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 1;
  font-weight: bold;
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
  background-color: #1B6D85;
  border-radius: 60px;
  -webkit-transition: background-position 0.8s;
  transition: background-position 0.8s;
  -webkit-filter: drop-shadow(0 0 2px white);
  filter: drop-shadow(0 0 2px white);
  text-align: center;

}

.open2:after{
  position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #ddd;
    right: 20px;
    top: 39%;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.open2:before{
  -webkit-transition: 0.4s;
    transition: 0.4s;
    position: absolute;
    content: "";
    width: 30px;
    height: 1px;
    right: 0px;
    top: 49%;
    background-color: #ddd;
}

.open2:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: #3d98be;
  background: linear-gradient(86deg, #3d98be 0%, #0f4b5d 100%);
}
.open2:hover:before {
  right: 0px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-right: 0px solid transparent;
}

.open2:hover:after {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  right: 10px;
  background-color: #fff;
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media all and (max-width: 1367px) {
  .open2 {
    width: 96%;
  }
}

@media all and (max-width: 639px) {
  .open2 {
    width: 220px;
    font-size: 12px;
    line-height: 1;
    padding: 10px 10px;
  }
  .open2:before {
    top: 47%;
  }
  .open2:after {
    top: 34%;
  }
}

#pop-up {
	display: none; /* label でコントロールするので input は非表示に */
}
#pop-up2 {
	display: none; /* label でコントロールするので input は非表示に */
}
.overlay {
	display: none; /* input にチェックが入るまでは非表示に */
}
#pop-up:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}
#pop-up2:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}
.window {
	width: 80vw;
  padding: 0 6%;
	max-width: 1160px;
	height: 400px;
	background-color: #ffffff;
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media all and (max-width: 639px){
  .window{
    width: 90vw;
    height: 500px;
  }
  .text .box__title{
    margin-right: 5px;
    margin-left: 5px;
  }
  .box__subtxt p{
    padding: 10px;
    font-size: 13px;
  }
}


.text {
	font-size: 18px;
	margin: 0;
}
.close {
	cursor:pointer;
	position: absolute;
	top: -10px;
	right: 20px;
	font-size: 35px;
  color: #1B6D85;
}

.text .box__title {
  color: #333;
  padding: 6px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid #1B6D85;
  display: block;
}

.box__subtxt span {
  color: #1B6D85;
}

@media screen and (min-width: 768px){
  .br-sp {display: none; }
}

.free-dial a {
  font-size: 1.6em;
}
@media screen and (max-width: 768px){
  .free-dial a {
    font-size: 1.4em;
  }
}

.free-dial a i {
  font-size: .8em;
}
@media screen and (max-width: 768px){
  .free-dial a i {
    font-size: .7em;
  }
}

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

.delica-bunner {
  max-width: 800px;
  margin: 120px auto 0;
}

.delica-bunner img {
  border: 2px solid #fff;
  border-radius: 40px;
  padding: 10px;
}

@media all and (max-width: 1367px) {
  .delica-bunner {
    width: 100%;
    margin: 120px auto 0;
  }
}

@media screen and (max-width: 768px){
  .delica-bunner {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .delica-bunner img {
    border-radius: 20px;
    padding: 4px;
  }
}
.floating_banner {
    display: block;
    position: fixed;
    bottom: 35%;
    right: 0;
    z-index: 99999;
}
.floating_banner > li {
    margin-bottom: 1rem;
}
.floating_banner > li > a {
    display: block;
    width: 100%;
    line-height: 1;
    text-align: center;
    letter-spacing: 0;
    background-color: rgba(248, 249, 250, 0.8);
    border: solid thin white;
    border-radius: 20px 0 0 20px;
    padding: 1rem 0.3rem 1rem 0.7rem;
}
.floating_banner > li > a {
    display: block;
    width: 100%;
    line-height: 1;
    text-align: center;
    letter-spacing: 0;
    background-color: rgba(248, 249, 250, 0.8);
    border: solid thin white;
    border-radius: 20px 0 0 20px;
    padding: 1rem 0.3rem 1rem 0.7rem;
}
.floating_banner > li > a p {
    margin-top: 5px;
    font-size: 1.2rem;
    color: #111;
}
.floating_banner li a img {
    width: auto;
    height: 40px;
    margin: 0 5px;
}
/* バナーコンテナ */
.banner-container {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  background-color: transparent;
  overflow: hidden;
}

/* 各バナーアイテム */
.banner-item {
  position: relative;
  z-index: 1;
  flex: 1 1 calc(33.333% - 20px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  padding: 20px;
  height: 200px;
  box-sizing: border-box;
  color: #fff;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.banner-text{
  font-size: 1.6rem;
    font-weight: 700;
}

/* 泡のアニメーション */
.banner-item::before,
.banner-item .bubble {
  content: "";
  position: absolute;
  bottom: -20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3); /* 泡の色 */
  opacity: 0.3;
  pointer-events: none;
  animation: bubble-rise 5s infinite ease-in-out;
  z-index: 0;
}

.banner-item .bubble:nth-child(1) {
  left: 15%;
  animation-duration: 6s;
  animation-delay: 1s;
}

.banner-item .bubble:nth-child(2) {
  right: 20%;
  animation-duration: 4s;
  animation-delay: 2s;
}

.banner-item .bubble:nth-child(3) {
  left: 30%;
  animation-duration: 7s;
  animation-delay: 3s;
}

.banner-item .bubble:nth-child(4) {
  right: 10%;
  animation-duration: 6s;
  animation-delay: 0.5s;
}

.banner-item .bubble:nth-child(5) {
  left: 60%;
  animation-duration: 5s;
  animation-delay: 2.5s;
}

.banner-item .bubble:nth-child(6) {
  right: 40%;
  animation-duration: 8s;
  animation-delay: 4s;
}

/* 泡が浮かび上がるアニメーション */
@keyframes bubble-rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-200px) scale(0.8);
    opacity: 0;
  }
}

/* ホバーアニメーション */
.banner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* バナー1 */
.banner-1 {
  background-color: #1AA595;
}
.banner-1 span {
  font-size: 3.5rem;
  color: #FED73C;
  letter-spacing: 0.2em;
}

/* バナー2 */
.banner-2 {
  background-color: #FEAC56;
}
.banner-2 span {
  font-size: 3.5rem;
  color: #e22242;
  letter-spacing: 0.2em;
}

/* バナー3 */
.banner-3 {
  background-color: #E93B58;
}
.banner-3 span {
  font-size: 3rem;
  color: #E3F2EF;
  letter-spacing: 0.2em;
  line-height: 0.8;
}

@media (max-width: 850px) {
  .banner-container {
    flex-wrap: wrap;
  }
  .banner-item {
    flex: 1 1 100%;
    height: auto;
    text-align: center;
  }
  .banner-text{
  font-size: 1.4rem;
}
  .banner-1 span,
  .banner-2 span,
  .banner-3 span {
    font-size: 2.5rem;
  }
}
