/* Scss Document */
@-webkit-keyframes showImg {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes showImg {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes hideImg {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes hideImg {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes showTranslate {
  0% {
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes showTranslate {
  0% {
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes hideTranslate {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
  }
}
@keyframes hideTranslate {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
  }
}
#key-box {
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 0;
}
#key-box #key {
  height: 160vw;
  position: relative;
}
#key-box #key * {
  height: 160vw;
}
#key-box #key .slide {
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
  opacity: 0;
}
#key-box #key .slide:nth-child(1) {
  z-index: 1;
}
#key-box #key .slide-img {
  -webkit-transform: scale(1.25);
  transform: scale(1.25);
}
#key-box #key .slide.active {
  -webkit-animation-name: showImg;
  animation-name: showImg;
  z-index: 2;
  opacity: 1;
}
#key-box #key .slide.active .slide-inner {
  -webkit-animation: showTranslate 5s linear forwards;
  animation: showTranslate 5s linear forwards;
}
#key-box #key .slide.prev {
  -webkit-animation-name: hideImg;
  animation-name: hideImg;
  z-index: 2;
  opacity: 1;
}
#key-box #key .slide.prev .slide-inner {
  -webkit-animation: hideTranslate 5s linear forwards;
  animation: hideTranslate 5s linear forwards;
}
@media only screen and (min-width: 768px) {
  #key-box #key {
    height: 900px;
  }
  #key-box #key * {
    height: 900px;
  }
}

#rss {
  position: relative;
  z-index: 1;
  line-height: 1.5;
  font-size: 12px;
  letter-spacing: 0.1em;
  align-items: center;
  box-sizing: border-box;
  padding: 6vw 5%;
}
#rss h2 {
  font-weight: 600;
  font-size: 15px;
  position: relative;
  box-sizing: border-box;
  padding-right: 6vw;
}
#rss h2:before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  border-right: 1px solid rgba(0, 0, 0, 0.3);
}
#rss #feed {
  margin-left: 6vw;
}
#rss .more-link {
  margin-left: 6vw;
  border: 1px solid rgba(0, 0, 0, 0.7);
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 60px;
  box-sizing: border-box;
}
#rss .more-link:hover {
  opacity: 0.8;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  #rss {
    justify-content: center;
    border: 1px solid var(--clogreen);
    margin: 6vw 6% 0px;
  }
  #rss:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-image: url(../img/shared/bg_white.jpg);
    background-position: center top;
    background-repeat: repeat;
    z-index: -1;
    opacity: 0.83;
  }
}
@media screen and (min-width: 768px) {
  #rss {
    position: absolute;
    right: 0px;
    bottom: 0px;
    color: var(--clowhite);
    font-size: 15px;
    background: rgba(0, 0, 0, 0.3);
    width: 615px;
    padding: 16.5px 51px;
  }
  #rss h2 {
    font-size: 18px;
    writing-mode: horizontal-tb;
    padding-right: 22px;
  }
  #rss h2:before {
    border-right: 1px solid rgba(255, 255, 255, 0.7);
    transform: skewX(-37deg);
  }
  #rss #feed {
    margin-left: 17px;
  }
  #rss dl .tit {
    margin-left: 20px;
  }
  #rss .more-link {
    margin-left: 57px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    width: 76px;
    height: 25px;
  }
}

#sec1 {
  position: relative;
}
#sec1:before {
  content: "";
  position: absolute;
  top: 85vw;
  left: 0px;
  bottom: 0px;
  background-image: url(../img/index/sec1_deco.png);
  background-position: left top;
  background-repeat: repeat;
  background-size: 200% auto;
  width: 20%;
  z-index: -1;
}
#sec1 .wrap {
  background-image: url(../img/index/sec1_light.png);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding-top: 18vw;
  padding-bottom: 12vw;
}
#sec1 h2 {
  font-weight: 500;
  line-height: 1.6;
  margin: 0px -5%;
}
#sec1 h2 small {
  line-height: 2.1;
}
#sec1 .inner {
  margin-top: 12vw;
}
#sec1 .txt {
  margin: 5vw 0px 0px 22%;
}
@media screen and (min-width: 768px) {
  #sec1:before {
    top: 0px;
    background-size: auto;
    width: calc(50% - 531px);
  }
  #sec1 .wrap {
    width: auto;
    max-width: 1240px;
    padding: 130px 20px 120px;
    background-size: auto;
    box-sizing: border-box;
  }
  #sec1 .inner {
    margin-top: 84px;
  }
  #sec1 .sec1-img {
    margin: 0px 0px 0px -80px;
  }
  #sec1 .txt {
    width: 562px;
    margin: 63px 0px 0px 0px;
  }
}

.sec-bg-black {
  background: var(--cloblack2);
  color: var(--clowhite);
}

#sec2 {
  padding-top: 18vw;
  background-image: url(../img/shared/bg_ft.png);
  background-position: center top;
  background-repeat: repeat-x;
  background-size: 200% auto;
}
#sec2 .wrap {
  z-index: 1;
}
#sec2 h2 {
  position: relative;
  width: fit-content;
  margin: 0px auto;
  line-height: 1.14;
  letter-spacing: 0.1em;
  padding: 0px 3vw;
  box-sizing: border-box;
  white-space: nowrap;
}
#sec2 h2:before, #sec2 h2:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 23vw;
  background-image: url(../img/shared/line_ttl.jpg);
  background-position: left top;
  background-repeat: repeat-y;
}
#sec2 h2:before {
  left: 0px;
  bottom: 0px;
}
#sec2 h2:after {
  top: 0px;
  right: 0px;
}
#sec2 [class^=sec2-img] {
  position: relative;
}
#sec2 h4 {
  position: absolute;
  z-index: 1;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
#sec2 h4 small {
  letter-spacing: 0.1em;
}
#sec2 .inner1 {
  margin-top: 12vw;
}
#sec2 .inner1 .col-right {
  margin-top: 6vw;
}
#sec2 .sec2-img1 {
  margin: 0px 4% 0px -5%;
}
#sec2 .sec2-img1 h4 {
  right: 2vw;
  bottom: 2vw;
}
#sec2 .sec2-img2 {
  margin: 10vw -6.5% 0px 33%;
}
#sec2 .sec2-img2 h4 {
  right: 2vw;
  bottom: 2vw;
}
#sec2 .sec2-img3 {
  margin: 6vw 8% 0px -6.5%;
  z-index: 1;
}
#sec2 .sec2-img3 h4 {
  left: 3vw;
  bottom: 3vw;
}
#sec2 .inner3 .col-left {
  margin-top: 8vw;
}
#sec2 .inner3 .txt {
  margin-top: 4vw;
}
#sec2 .sec2-img4 {
  margin: -6vw -6.5% 0px 0px;
}
#sec2 h3 {
  margin: 0px auto;
  width: fit-content;
  padding: 2vw 0px;
  box-sizing: border-box;
  line-height: 1.8;
  letter-spacing: 0.1em;
  background: url(../img/shared/line_ttl2.jpg), url(../img/shared/line_ttl2.jpg);
  background-position: left top, left bottom;
  background-repeat: repeat-x;
}
@media screen and (min-width: 768px) {
  #sec2 {
    padding-top: 130px;
    background-size: auto;
  }
  #sec2 .wrap {
    width: auto;
    max-width: 1240px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
  #sec2 h2 {
    padding: 0px 13px;
  }
  #sec2 h2:before, #sec2 h2:after {
    height: 160px;
  }
  #sec2 .inner1 {
    margin-top: 84px;
    align-items: flex-start;
  }
  #sec2 .inner1 .col-right {
    width: 452px;
    margin-top: 91px;
    flex-direction: column-reverse;
  }
  #sec2 .sec2-img1 {
    margin: 0px 0px 0px -89px;
  }
  #sec2 .sec2-img1 h4 {
    right: 27px;
    bottom: 17px;
  }
  #sec2 .sec2-img2 {
    margin: 118px 0px 0px 0px;
  }
  #sec2 .sec2-img2 h4 {
    right: 7px;
    bottom: 4px;
  }
  #sec2 .inner2 {
    flex-direction: row-reverse;
    align-items: flex-start;
  }
  #sec2 .inner2 .txt {
    width: 451px;
    margin: 150px 0px 0px 0px;
  }
  #sec2 .sec2-img3 {
    margin: -7px 0px 0px 1px;
  }
  #sec2 .sec2-img3 h4 {
    left: 18px;
    bottom: 10px;
  }
  #sec2 .inner3 {
    flex-direction: row-reverse;
    align-items: flex-start;
  }
  #sec2 .inner3 .col-left {
    width: 432px;
    margin-top: 99px;
  }
  #sec2 .inner3 h3 {
    margin: 0px;
    padding: 12px 0px;
  }
  #sec2 .inner3 .txt {
    margin-top: 48px;
  }
  #sec2 .sec2-img4 {
    margin: -60px -150px 0px 0px;
  }
}

#sec3 {
  padding: 26vw 0px;
  position: relative;
}
#sec3 h2 {
  width: fit-content;
  white-space: nowrap;
  margin: 0px auto;
  line-height: 2.14;
  letter-spacing: 0.1em;
  position: relative;
  box-sizing: border-box;
  padding: 8vw 12%;
}
#sec3 h2:before, #sec3 h2:after {
  content: "";
  position: absolute;
  width: 6vw;
  height: 6vw;
}
#sec3 h2:before {
  top: 0px;
  right: 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
#sec3 h2:after {
  left: 0px;
  bottom: 0px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
#sec3 .sec3-img {
  margin: 26vw -4% 0px;
  padding: 2vw;
  box-sizing: border-box;
  background-image: url(../img/index/line_img.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  z-index: 0;
  height: 100vw;
}
#sec3 .txt {
  margin-top: 5vw;
}
@media screen and (max-width: 767px) {
  #sec3:before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-image: url(../img/shared/bg_ft.png);
    background-position: center top;
    background-repeat: repeat-x;
    background-size: 200% auto;
    transform: scale(-1);
    height: 70vw;
  }
}
@media screen and (min-width: 768px) {
  #sec3 {
    padding: 164px 0px 112px;
    text-align: center;
  }
  #sec3:before {
    content: "";
    position: absolute;
    top: -30px;
    right: 0px;
    background-image: url(../img/index/sec3_deco.png);
    background-position: center top;
    background-repeat: repeat;
    background-size: auto;
    width: calc(50% - 351px);
    height: 914px;
  }
  #sec3 .wrap {
    width: auto;
    max-width: 1220px;
  }
  #sec3 h2 {
    padding: 48px 74px;
  }
  #sec3 h2:before, #sec3 h2:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
  }
  #sec3 .sec3-img {
    margin: 148px 0px 0px;
    padding: 10px;
    height: 670px;
  }
  #sec3 .sec3-img::after {
    content: "";
    position: absolute;
    left: -100%;
    right: calc(50% + 453px);
    bottom: -99px;
    background-image: url(../img/index/sec3_deco.png);
    background-position: center top;
    background-repeat: repeat;
    z-index: -1;
    height: 300px;
  }
  #sec3 .txt {
    margin-top: 47px;
  }
}

.sec-bg-deco {
  position: relative;
}
.sec-bg-deco .bgsec-parallax {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .sec-bg-deco .bgsec-parallax {
    right: 15%;
    height: 26vw;
  }
}
@media screen and (min-width: 768px) {
  .sec-bg-deco .bgsec-parallax {
    width: calc(50% - 600px);
    bottom: 0px;
  }
}

#sec4 {
  padding: 12vw 0px 0px;
}
#sec4 h2 {
  border-bottom: 1px solid;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
#sec4 .sec4-catch {
  margin: 6vw -4.5% 0px;
}
#sec4 .txt {
  margin-top: 4vw;
}
#sec4 .sec4-btn {
  margin-top: 4vw;
}
#sec4 .btn-popup {
  text-align: left;
  line-height: 1.588;
}
@media screen and (max-width: 767px) {
  #sec4 h2 {
    text-align: center;
  }
  #sec4 .btn-popup {
    padding-left: 30px;
    padding-right: 30px;
  }
  #sec4 .btn-popup:after {
    right: 20px;
  }
}
@media screen and (min-width: 768px) {
  #sec4 {
    padding: 106px 0px 0px;
  }
  #sec4 .wrap:before {
    content: "";
    position: absolute;
    right: -636px;
    bottom: -160px;
    background-image: url(../img/index/sec4_line_deco.png);
    width: 744px;
    height: 352px;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: -1;
  }
  #sec4 h2 {
    margin-right: -100px;
  }
  #sec4 .inner {
    flex-direction: row-reverse;
    align-items: flex-start;
  }
  #sec4 .txt {
    width: 470px;
    margin-top: 26px;
  }
  #sec4 .sec4-catch {
    margin: 32px -166px 0px 0px;
  }
  #sec4 .sec4-btn {
    margin-top: -67px;
    width: 450px;
  }
  #sec4 .btn-popup {
    padding: 22.5px 60px;
  }
  #sec4 .btn-popup:after {
    right: 39px;
  }
}
@media screen and (max-width: 1230px)  and (min-width: 768px) {
  #sec4 .sec4-catch{
    margin-right: -140px;
  }
}
#sec5 {
  margin-top: 10vw;
}
#sec5 h2 {
  line-height: 1.3;
  letter-spacing: 0.1em;
  margin-top: 12vw;
}
#sec5 [class^=inner] {
  align-items: flex-start;
}
#sec5 .box {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  border: 1px solid var(--clogreen);
  padding: 6vw 6%;
  margin: 7vw 12% 0px;
}
#sec5 .box:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-image: url(../img/shared/bg_white.jpg);
  background-position: center top;
  background-repeat: repeat;
  z-index: -1;
  opacity: 0.83;
}
#sec5 h3 {
  letter-spacing: 0.1em;
  line-height: 1.48;
  border-bottom: 1px solid rgba(34, 34, 34, 0.3);
  padding-bottom: 3vw;
}
#sec5 .price-all {
  margin-top: 3vw;
}
#sec5 .list {
  line-height: 2.05;
  margin-top: 3vw;
}
#sec5 .inner1 {
  margin-top: 6vw;
}
#sec5 .inner2 {
  margin-top: 16vw;
}
@media screen and (max-width: 767px) {
  #sec5 {
    position: relative;
    padding-top: 26vw;
  }
}
@media screen and (min-width: 768px) {
  #sec5 {
    margin-top: 78px;
    padding-bottom: 120px;
  }
  #sec5 .wrap {
    width: auto;
    max-width: 1360px;
  }
  #sec5 h2 {
    margin-top: 0px;
  }
  #sec5 .box {
    width: 439px;
    padding: 38px 49px 48px;
  }
  #sec5 h3 {
    padding-bottom: 18px;
  }
  #sec5 .price-all {
    margin-top: 20px;
  }
  #sec5 .list {
    margin-top: 16px;
  }
  #sec5 .inner1 {
    margin-top: 57px;
  }
  #sec5 .inner1 .box {
    margin: 50px 0px 0px -79px;
  }
  #sec5 .inner1 .sec5-img {
    margin: 0px 0px 0px 2px;
    height: 700px;
  }
  #sec5 .inner2 {
    margin-top: 101px;
    flex-direction: row-reverse;
  }
  #sec5 .inner2 .box {
    margin: 64px -51px 0px 124px;
    padding-top: 57px;
    padding-bottom: 64px;
  }
  #sec5 .inner2 .sec5-img {
    height: 595px;
  }
}

#sec6 {
  margin-top: 19vw;
  padding: 10vw 0px;
  background-image: url(../img/shared/bg_white.jpg);
  background-position: center top;
  background-repeat: repeat;
}
#sec6 h2 {
  line-height: 1.48;
  margin: 0px auto;
}
#sec6 h2::after {
  margin-top: 3vw;
}
#sec6 .sec6-img {
  margin-top: 7vw;
}
#sec6 .col-txt {
  margin-top: 8vw;
}
#sec6 .price-all {
  margin-top: 2vw;
}
#sec6 .sec6-catch {
  margin: 3vw -6.5% 0px;
}
#sec6 .txt {
  margin-top: 3vw;
}
@media screen and (max-width: 767px) {
  #sec6 {
    border-top: 1px solid var(--clogreen);
  }
}
@media screen and (min-width: 768px) {
  #sec6 {
    margin-top: 0px;
    padding: 99px 0px 60px;
  }
  #sec6 .wrap {
    width: auto;
    max-width: 1200px;
  }
  #sec6 h2 {
    width: 420px;
    margin: 0px 0px 0px auto;
  }
  #sec6 h2:after {
    width: 80px;
    margin-top: 21px;
  }
  #sec6 .col-txt {
    width: 420px;
    margin: 31px 0px 0px auto;
  }
  #sec6 .price-all {
    margin-top: 3px;
  }
  #sec6 .sec6-img {
    position: absolute;
    top: -31px;
    left: -82px;
    width: 780px;
    margin-top: 0px;
  }
  #sec6 .sec6-catch {
    text-align: right;
    margin: 59px -66px 0px 0px;
  }
  #sec6 .txt {
    margin-top: 27px;
    text-align: center;
  }
}

@media screen and (max-width: 1230px)  and (min-width: 768px) {
  #sec6 .sec6-catch{
    margin-right: -40px;
  }
}

#sec7 {
  position: relative;
}
#sec7 h2 {
  margin: 0px auto;
  line-height: 1.42;
  letter-spacing: 0.1em;
}
#sec7 h2:after {
  margin-top: 3vw;
}
#sec7 .inner1 .col-txt {
  padding: 7vw 6% 0px;
  box-sizing: border-box;
}
#sec7 .inner1 .col-txt dt {
  width: fit-content;
  margin: 0px auto;
  border-bottom: 1px solid rgba(34, 34, 34, 0.3);
  line-height: 1.89;
  letter-spacing: 0.1em;
  padding-bottom: 1vw;
}
#sec7 .inner1 .col-txt dd {
  margin-top: 3vw;
}
#sec7 .inner1 .sec7-slider {
  margin-top: 10vw;
  background: #000;
}
#sec7 .bottom, #sec7 .slide {
  display: flex !important;
  flex-wrap: wrap;
}
#sec7 .slide {
  transform: translate3d(0, 0, 0);
  transition: all 0.1s ease;
}
#sec7 .slide p {
  display: block;
  transform: translate3d(0, 0, 0);
  transform-style: preserve-3d;
  transition: all 0.1s ease;
}
#sec7 .slide img {
  transform: translate3d(0, 0, 0);
  width: 100% !important;
  transform-style: preserve-3d;
  transition: all 0.1s ease;
}
#sec7 .verti {
  flex-direction: column;
}
#sec7 .inner2 {
  margin: 8vw 6% 0px;
}
#sec7 .inner2 .box {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  border: 1px solid var(--clogreen);
  padding: 6vw 6%;
}
#sec7 .inner2 .box:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-image: url(../img/shared/bg_white.jpg);
  background-position: center top;
  background-repeat: repeat;
  z-index: -1;
  opacity: 0.83;
}
#sec7 .inner2 h3 {
  letter-spacing: 0.1em;
  line-height: 1.48;
  border-bottom: 1px solid rgba(34, 34, 34, 0.3);
  padding-bottom: 3vw;
}
#sec7 .inner2 .price-all {
  margin-top: 4vw;
}
#sec7 .inner2 .note {
  line-height: 1.8;
}
#sec7 .sec7-btn {
  margin-top: 10vw;
}
@media screen and (max-width: 767px) {
  #sec7 {
    border-top: 1px solid var(--clogreen);
    padding: 16vw 0px 0px;
  }
  #sec7 .inner1 .sec7-slider .slick-track {
    display: flex;
  }
  #sec7 .inner2 .box + .box {
    margin-top: 3vw;
  }
}
@media screen and (min-width: 768px) {
  #sec7 {
    margin-top: 119px;
  }
  #sec7:before {
    content: "";
    position: absolute;
    bottom: -19px;
    right: calc(50% + 380px);
    background-image: url(../img/index/sec4_line_deco.png);
    width: 744px;
    height: 352px;
    background-position: center top;
    background-repeat: no-repeat;
    transform: scaleX(-1);
  }
  #sec7 h2:after {
    margin-top: 21px;
  }
  #sec7 .inner1 {
    margin-top: 78px;
    flex-direction: row-reverse;
  }
  #sec7 .inner1 .col-txt {
    width: 507px;
    padding: 121px 80px 0px;
  }
  #sec7 .inner1 .col-txt dt {
    padding: 0px 28px 23px;
  }
  #sec7 .inner1 .col-txt dd {
    margin: 26px 35px 0px;
  }
  #sec7 .inner1 .sec7-slider {
    width: calc(100% - 507px);
    margin-top: 0px;
  }
  #sec7 .inner2 {
    margin: 59px -11px 0px;
  }
  #sec7 .inner2 .box {
    width: 502px;
    padding: 57px 50px 52px;
  }
  #sec7 .inner2 h3 {
    padding-bottom: 24px;
  }
  #sec7 .inner2 .price-all {
    margin-top: 20px;
  }
  #sec7 .sec7-btn {
    margin: 71px auto 0px;
    width: 450px;
  }
}

#sec8 {
  background: var(--cloblack2);
  color: var(--clowhite);
  position: relative;
  margin-top: 16vw;
  padding-top: 16vw;
  padding-bottom: 16vw;
}
#sec8:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-image: url(../img/index/sec8_bg.png);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 150% auto;
}
#sec8 .inner {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
#sec8 h2 {
  width: fit-content;
  margin: 0px auto;
  letter-spacing: 0.1em;
  white-space: nowrap;
  line-height: 1.38;
}
#sec8 h2 small {
  line-height: 1.75;
}
#sec8 .sec8-img {
  margin-top: 6vw;
}
#sec8 .col-txt {
  position: relative;
  z-index: 1;
  margin: 6vw 6% 0px;
}
#sec8 .sec8-btn {
  margin-top: 6vw;
}
#sec8 .sec8-btn a {
  color: var(--cloblack);
}
@media screen and (min-width: 768px) {
  #sec8 {
    margin-top: 120px;
    padding: 120px 0px 162px;
  }
  #sec8:before {
    background-position: center bottom;
    background-size: cover;
    height: 880px;
  }
  #sec8 .inner {
    max-width: 1380px;
    margin: 0px auto;
  }
  #sec8 .sec8-img {
    position: absolute;
    top: 0px;
    left: 0px;
    margin: 0px;
  }
  #sec8 .sec8-ttl {
    width: 455px;
    margin: 0px 0px 0px auto;
    padding-top: 50px;
  }
  #sec8 .col-txt {
    width: 430px;
    margin: 0px 0px 0px auto;
  }
  #sec8 .txt {
    margin-top: 38px;
    width: 403px;
  }
  #sec8 .sec8-btn {
    margin-top: 30px;
    width: 400px;
  }
}

#sec9 {
  padding: 0px 6%;
  background: var(--cloblack2);
  box-sizing: border-box;
  position: relative;
}
#sec9 .sec9-js {
  position: relative;
  box-sizing: border-box;
  background-image: url(../img/index/sec9_img.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

#sec9 .ov-bg{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.1;
}

#sec9 .sec9-js h2 {
  position: absolute;
  left: 0px;
  right: 0px;
  z-index: 1;
  width: fit-content;
  margin: 0px auto;
  color: var(--clowhite);
  line-height: 1.14;
  letter-spacing: 0.1em;
  padding: 0px 3vw;
  box-sizing: border-box;
  white-space: nowrap;
}
#sec9 .sec9-js h2:before, #sec9 .sec9-js h2:after {
  content: "";
  position: absolute;
  background: var(--clowhite);
  width: 1px;
  height: 23vw;
}
#sec9 .sec9-js h2:before {
  left: 0px;
  bottom: 0px;
}
#sec9 .sec9-js h2:after {
  top: 0px;
  right: 0px;
}
#sec9 .sec9-text {
  color: var(--clowhite);
}
#sec9 .sec9-text .wrap{
  transform: translateY(-50vh);
}
#sec9 .sec9-text .sec9-btn {
  margin-top: 4vw;
}
#sec9 .sec9-text .sec9-btn a {
  color: var(--cloblack);
}
@media screen and (max-width: 767px) {
  #sec9 .sec9-js h2{
    top: 20vw;
    padding: 0px 3vw;
  }
  #sec9 .sec9-js h2.fz47{
    font-size: 6.6vw;
  }
  #sec9 .sec9-js h2 .fz37{
    font-size: 5.18vw;
  }
  #sec9 .sec9-js h2 .fz57{
    font-size: 7.93vw;
  }
}
@media screen and (min-width: 768px) {
  #sec9{
    padding: 0px 100px;
  }
  #sec9 .sec9-js h2 {
    top: 193px;
    padding: 0px 13px;
  }
  #sec9 .sec9-js h2:before, #sec9 .sec9-js h2:after {
    height: 160px;
  }
  #sec9 .sec9-text{
    opacity: 0;
  }
  #sec9 .sec9-text .sec9-btn {
    margin: 42px auto 0px;
    width: 450px;
  }
}
#sec10{
  position: relative;
  background-image: url(../img/shared/bgbody.jpg);
  background-position: center top;
  background-repeat: repeat;
  margin-top: -104.5vw;
  z-index: 1;
}
#sec10 .col-txt {
  padding: 18vw 6% 0px;
}
#sec10 .sec10-logo {
  margin: 12vw 40% 0px;
}
#sec10 h2 {
  margin: 0px auto;
}
#sec10 .sec10-tit {
  margin-top: 6vw;
  line-height: 1.88;
}
#sec10 .tel-global {
  margin: 5vw auto 0px;
}
#sec10 .sec10-btn {
  margin: 4vw 12% 0px;
}
#sec10 .box-cancel {
  border: 1px solid var(--clogreen);
  box-sizing: border-box;
  background-image: url(../img/shared/bg_white.jpg);
  background-position: center top;
  background-repeat: repeat;
  padding: 6vw 4%;
  margin: 5vw -3% 0px;
  line-height: 1.83;
}
#sec10 .box-cancel dd {
  margin-top: 2vw;
}
#sec10 .vcard {
  margin-top: 4vw;
}
#sec10 .vcard dl {
  border-bottom: 1px solid rgba(34, 34, 34, 0.3);
  line-height: 1.66;
  padding: 4vw 0px;
}
#sec10 .map-link {
  text-decoration: underline;
}
#sec10 .map-link:hover {
  text-decoration: none;
}
#sec10 .sec10-btn-group {
  margin-top: 7vw;
}
#sec10 .sec10-btn-group li + li {
  margin-top: 4vw;
}
#sec10 .sec10-img {
  margin-top: 10vw;
}
@media screen and (min-width: 768px) {
  #sec10 {
    margin-top: -267px;
    flex-direction: row-reverse;
  }
  #sec10 .col-txt {
    width: 50vw;
    box-sizing: border-box;
    padding: 84px 0px 0px;
  }
  #sec10 .inner-box {
    width: 556px;
    margin: 0px auto;
  }
  #sec10 .sec10-logo {
    text-align: center;
    margin: 78px 0px 0px;
  }
  #sec10 .sec10-tit {
    margin-top: 30px;
  }
  #sec10 .tel-global {
    margin-top: 43px;
  }
  #sec10 .sec10-btn {
    width: 275px;
    margin: 20px auto 0px;
  }
  #sec10 .sec10-btn a {
    padding: 21.75px 0px;
  }
  #sec10 .box-cancel {
    max-width: 440px;
    margin: 38px auto 0px;
    line-height: 1.88;
    padding: 28px 40px 31px;
  }
  #sec10 .box-cancel dd {
    margin-top: 10px;
  }
  #sec10 .vcard {
    margin-top: 46px;
  }
  #sec10 .vcard dl {
    display: flex;
    line-height: 1.88;
    padding: 15.5px 0px;
  }
  #sec10 .vcard dl dt {
    width: 125px;
  }
  #sec10 .vcard dl dd {
    width: 431px;
  }
  #sec10 .sec10-btn-group {
    margin: 53px 53px 0px;
  }
  #sec10 .sec10-btn-group li + li {
    margin-top: 21px;
  }
  #sec10 .sec10-img {
    width: 50vw;
    margin: 0px 0px 0px -2px;
    overflow: hidden;
  }
  #sec10 .sec10-img .stick{
    height: 900px;
    margin: 0px;
  }
}

#gmap {
  margin: 10vw 0px 16vw;
}
#gmap .ggmap {
  height: 480px;
}
#gmap .btn-map {
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  #gmap {
    margin: 82px 0px 120px;
  }
  #gmap .wrap {
    width: auto;
    max-width: 1200px;
  }
  #gmap .ggmap {
    height: 500px;
  }
  #gmap .btn-map {
    margin: 37px auto 0px;
    width: 399px;
  }
}

.popup-global {
  background-image: url(../img/shared/bg_white.jpg);
  background-position: center top;
  background-repeat: repeat;
  padding: 8vw 0px;
}
.popup-global .remodal-close {
  margin-right: 6%;
  line-height: 1;
}
.popup-global .remodal-close img {
  display: block;
}
.popup-global .btn-green {
  width: 39px;
}
.popup-global h2 {
  margin-top: 3vw;
  line-height: 1.48;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.popup-global .style2 {
  font-size: 6.66vw;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.popup-global .inner {
  text-align: left;
}
.popup-global .inner dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  line-height: 1.88;
  border-bottom: 1px solid rgba(34, 34, 34, 0.3);
  padding: 3vw 0px;
}
.popup-global .inner dl * {
  letter-spacing: 0.15em;
}
.popup-global .list-menu .row + .row {
  margin-top: 8vw;
}
.popup-global .list-menu h3 {
  text-align: center;
  font-size: 5.33vw;
  line-height: 1;
  letter-spacing: 0.15em;
  border-bottom: 1px solid;
  padding-bottom: 3vw;
}
.popup-global .list-menu h4 {
  line-height: 1.3889;
}
.popup-global .list-menu dl {
  line-height: 1.3889;
}
.popup-global .list-menu dl dd {
  margin-left: auto;
  text-align: right;
}
.popup-global .list-menu .row-child {
  line-height: 1.88;
  border-bottom: 1px solid rgba(34, 34, 34, 0.3);
  padding: 3vw 0px;
}
.popup-global .list-menu .row-child dl {
  padding: 0px;
  border-bottom: 0px;
}
.popup-global .list-menu .row-child .d-end {
  align-items: flex-end;
}
.popup-global .popup-tel {
  border-top: 1px solid rgba(34, 34, 34, 0.8);
  border-bottom: 1px solid rgba(34, 34, 34, 0.8);
  margin-top: 10vw;
  padding: 6vw 0px;
  position: relative;
}
.popup-global .popup-tel:before, .popup-global .popup-tel:after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  border-left: 1px solid rgba(34, 34, 34, 0.8);
  border-right: 1px solid rgba(34, 34, 34, 0.8);
  height: 23px;
}
.popup-global .popup-tel:before {
  top: 0px;
}
.popup-global .popup-tel:after {
  bottom: 0px;
}
.popup-global .popup-tel h3 {
  line-height: 1.37;
}
.popup-global .popup-tel dl {
  margin-top: 3vw;
}
.popup-global .popup-tel dl dt {
  letter-spacing: 0.05em;
  line-height: 1;
}
.popup-global .popup-tel dl dd {
  font-size: 3.6vw;
  line-height: 1.35;
  margin-top: 2vw;
}
@media screen and (max-width: 767px) {
  .popup-global .list-menu {
    margin-top: 8vw;
  }
  .popup-global .list-menu .col + .col {
    margin-top: 8vw;
  }
}
@media screen and (min-width: 768px) {
  .popup-global {
    padding: 52px 0px 69px;
  }
  .popup-global .remodal-close {
    margin-right: 53px;
  }
  .popup-global .btn-green {
    width: 49px;
  }
  .popup-global h2 {
    margin-top: 0px;
  }
  .popup-global .style2 {
    font-size: 40px;
  }
  .popup-global .inner dl {
    padding: 15.5px 0px;
  }
  .popup-global .list-menu {
    margin: 45px 38px 0px;
    column-gap: 31px;
  }
  .popup-global .list-menu .col {
    width: 450px;
  }
  .popup-global .list-menu .row + .row {
    margin-top: 45px;
  }
  .popup-global .list-menu .row-child {
    padding: 15.5px 0px;
  }
  .popup-global .list-menu dl dd {
    font-size: 18px;
  }
  .popup-global .list-menu h3 {
    font-size: 30px;
    padding-bottom: 18px;
  }
  .popup-global .popup-tel {
    margin: 70px 206.5px 0px;
    padding: 43px 0px 60px;
  }
  .popup-global .popup-tel h3 {
    font-size: 27px;
  }
  .popup-global .popup-tel h3 small {
    font-size: 18px;
  }
  .popup-global .popup-tel dl {
    margin-top: 21px;
  }
  .popup-global .popup-tel dl dt {
    font-size: 47px;
  }
  .popup-global .popup-tel dl dt small {
    font-size: 20px;
  }
  .popup-global .popup-tel dl dd {
    font-size: 17px;
    margin-top: 12px;
  }
}

#popup-reservations .txt {
  margin-top: 3vw;
}
#popup-reservations .gallery {
  margin-top: 9vw;
}
#popup-reservations .popup-price {
  margin-top: 6vw;
}
#popup-reservations .popup-price * {
  letter-spacing: 0.1em;
}
#popup-reservations .popup-price dt {
  line-height: 1.33;
  border-bottom: 1px solid rgba(34, 34, 34, 0.3);
  padding-bottom: 4vw;
}
#popup-reservations .popup-price dd {
  margin-top: 4vw;
  line-height: 1.23;
}
@media screen and (max-width: 767px) {
  #popup-reservations .txt {
    text-align: left;
  }
  #popup-reservations .gallery .col + .col {
    margin-top: 8vw;
  }
}
@media screen and (min-width: 768px) {
  #popup-reservations .txt {
    margin-top: 25px;
  }
  #popup-reservations .gallery {
    margin: 70px -25px 0px;
    column-gap: 30px;
  }
  #popup-reservations .gallery .col {
    width: 330px;
  }
  #popup-reservations .popup-price {
    margin-top: 23px;
  }
  #popup-reservations .popup-price dt {
    padding-bottom: 27px;
  }
  #popup-reservations .popup-price dd {
    margin-top: 20px;
  }
  #popup-reservations .popup-tel {
    margin-top: 80px;
  }
}

@media screen and (min-width: 768px) {
  #popup-drink {
    padding: 43px 0px 120px;
  }
}

#popup-car .popup-map {
  margin: 3vw 0px 0px;
  overflow: hidden;
}
#popup-car .txt {
  margin-top: 5vw;
}
@media screen and (max-width: 767px) {
  #popup-car .txt {
    text-align: left;
  }
  #popup-car .popup-map .popup-map-img{
    margin: 0px -35%;
  } 
}
@media screen and (min-width: 768px) {
  #popup-car .popup-map {
    margin-top: 9px;
  }
  #popup-car .txt {
    margin-top: 35px;
  }
}

#popup-recruit .inner {
  margin-top: 4vw;
}
#popup-recruit .inner dl dt {
  width: 80px;
}
#popup-recruit .inner dl dd {
  width: calc(100% - 80px);
}
@media screen and (min-width: 768px) {
  #popup-recruit {
    padding-bottom: 90px;
  }
  #popup-recruit .inner {
    margin: 25px 148px 0px;
  }
  #popup-recruit .inner dl dt {
    width: 136px;
  }
  #popup-recruit .inner dl dd {
    width: 567px;
  }
}

.ga_s{
  margin-top: 100px;
}