@charset "UTF-8";
/* Scss Document */
/*=============================================
 * body
 *=============================================*/
body {
  color: #000;
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  background: #fff;
  min-width: inherit;
  min-height: inherit;
  max-height: 100%;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 28px;
}
/*=============================================
 * fonts - DON'T EDIT
 *=============================================*/
.fnt-mincho {
  font-family: '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'メイリオ', Meiryo, 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
}
.fnt-meiryo {
  font-family: 'メイリオ', Meiryo, 'ヒラギノ角ゴシックPro', 'ＭＳ ゴシック', 'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
.fnt-gothic {
  font-family: '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
.fnt-serif {
  font-family: 'Noto Serif JP', serif;
}
@font-face {
  font-family: 'Shippori Mincho', serif;
  src: url(../font/ShipporiMincho-Regular.ttf);
}
@font-face {
  font-family: 'Shippori Mincho', serif;
  src: url(../font/ShipporiMincho-SemiBold.ttf);
  font-weight: 600;
}
/*=============================================
 ******************* main **********************
 *=============================================*/
main {
  clear: both;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.wrap {
  padding: 0 calc((38 / 750) * 100%);
}
img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
html {
  min-width: auto;
}
.txt {
  text-align: justify;
}
:root {
  --main: #000;
  --sub: #fff;
}
.telhref {
  text-decoration: none !important;
}
/*=============================================
===============================================
===============================================
*************** mobie first header ************
===============================================
===============================================
*=============================================*/
h1 {
  color: #ccc;
  position: absolute;
  left: 16px;
  top: 0px;
  line-height: 1.5;
  z-index: 2;
  font-weight: 300;
  /*text-shadow: 2px 2px 4px #000;
  opacity: 0;*/
  font-size: 11px;
  max-width: 70%;
}

#head-top {
  padding: 0 0 60px;
}

.header-box {
  position: relative;
  z-index: 101;
}

header .logo {
  position: absolute;
  top: 32vw;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 15%;
  z-index: 2;
}

/*=============================================
******************* hamberger  ****************
*=============================================*/
.hamberger-btn {
  position: fixed;
  top: 17px;
  right: 10px;
  width: 50px;
  height: 50px;
  z-index: 201;
  transition: all 0.4s ease;
  overflow: hidden;
}

.hamberger-btn span {
  width: 35px;
  height: 2px;
  position: absolute;
  top: 39%;
  transform: translate3D(-50%, -50%, 0);
  left: 50%;
  background: #000;
}
.hamberger-btn span::after {
  width: 35px;
  height: 2px;
  position: absolute;
  left: 0;
  background: #000;
  content: '';
}
.hamberger-btn span::after {
  top: 14px;
}
.menu-open .hamberger-btn span {
  transform: rotate(360deg);
}
.menu-open .hamberger-btn span {
  transform: rotate(141deg) translateX(20px);
  top: 13px;
  left: 46%;
}
.menu-open .hamberger-btn span::after {
  transform: rotate(-105deg) translateX(0px);
  top: 0;
}
.menu-open .hamberger-btn span::before {
  opacity: 0;
}

/*=============================================
******************* nav-header  ***************
*=============================================*/
.nav-header {
  width: 100%;
  height: 100vh;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
}
.nav-header .nav {
  display: block;
  padding: 11vw 5% 0;
  height: auto;
}
.nav-header .logo-nav {
  width: 49%;
  margin-left: 7%;
  padding-top: 7vw;
}
.nav-header a {
  text-decoration: none !important;
}
.nav-header .active {
  border-bottom: 1px solid #000;
}
.nav-header li {
  font-size: 24px;
  padding-left: 4%;
  padding: 8vw 0 7vw 4%;
  border-bottom: 1px solid;
}
.nav-header li.bn {
  border: none;
}
.nav-header li button {
  border: none;
  outline: none;
  background: none;
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
  opacity: 1 !important;
  color: #000;
}
.nav-header li .content {
  display: none;
}
.nav-header li.subnav {
  position: relative;
}
.nav-header li.subnav.active .subnav-content {
  display: block;
}
.nav-header li.subnav:before {
  content: '';
  position: absolute;
  top: 11vw;
  right: 22px;
  width: 16px;
  height: 16px;
  transform: rotate(135deg) translate(-50%, 50%);
  border-top: 1px solid;
  border-right: 1px solid;
  transition: all 0.3s ease;
}
.nav-header li.subnav.active:before {
  transform: rotate(-45deg);
}
.nav-header li .subnav-content {
  display: none;
  flex-direction: column;
  font-size: 18px;
  line-height: 32px;
  margin-top: 2vw;
  padding-left: 10%;
}
.nav-header li .subnav-content nav {
  flex-direction: column;
  display: flex;
}
.nav-header li.tel {
  text-align: center;
  padding-left: 0;
  font-size: 10vw;
  line-height: 1;
  padding-bottom: 2vw;
}
.nav-header li.button {
  padding: 0;
}
.nav-header li.button a {
  padding: 5vw 0;
  display: block;
  border: 1px solid;
  text-align: center;
}
.menu-open .nav-header {
  left: 0%;
  visibility: visible;
  overflow: auto;
  z-index: 99;
  opacity: 1;
}
.js-scroll {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  padding-bottom: 50px;
}

/*=============================================
******************* footer  *******************
*=============================================*/
footer {
  padding: 20vw 0 10vw;
}
footer .logo {
  width: 13.6%;
  margin: 0 auto;
}
footer .tel-ft {
  margin: 10vw 0 5vw;
  text-align: center;
  letter-spacing: 5px;
  font-size: 9vw;
}
footer .button a {
  display: block;
  height: 70px;
  line-height: 68px;
  font-size: 22px;
  text-align: center;
  border: 1px solid;
  letter-spacing: 3px;
  text-decoration: none !important;
}
footer .button a:hover {
  opacity: 0.8;
}
footer .right {
  display: flex;
  flex-direction: column-reverse;
  margin-top: 5vw;
}
footer .right .info {
  font-size: 14px;
}
footer .right .info dl {
  display: flex;
}
footer .right .info dl dt {
  width: 24%;
}
footer .right .info dl dd {
  width: 76%;
}
footer .right .nav-footer {
  margin: 9vw 0 0 5%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 4vw;
  height: 60vw;
}
footer .right .nav-footer li:last-child {
  position: relative;
  margin-left: 5vw;
}
footer .right .nav-footer li:last-child:before {
  content: '';
  position: absolute;
  top: 9vw;
  bottom: 0;
  left: 2%;
  width: 1px;
  background: #000;
}
footer .right .nav-footer li:last-child a {
  padding-left: 3vw;
}
footer #pagetop {
  margin-top: 16vw;
}
footer address {
  margin-top: 7vw;
  font-size: 10px;
  line-height: 16px;
}
#pagetop {
  width: 60px;
  z-index: 98;
  position: static;
  margin: 0 auto;
  visibility: visible;
  opacity: 1 !important;
}
/*=============================================
******************* btn-cus  ******************
*=============================================*/

.btn-cus {
  position: relative;
  width: 412px;
  max-width: 100%;
}
.btn-cus a:hover,
.btn-cus span:hover {
  opacity: 0.8;
}

.btn-cus a,
.btn-cus span {
  display: block;
  font-size: 20px;
  line-height: 64px;
  height: 67px;
  text-align: center;
  text-decoration: none;
}

.ttl-common {
  font-size: 6vw;
  text-align: center;
  line-height: 38px;
}

/* iPhone X */
@media only screen and (min-device-width: 375px) and (min-device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
  .js-scroll {
    padding-bottom: 130px;
  }
}
/* iPhone XR */
@media only screen and (min-device-width: 414px) and (min-device-height: 896px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
  .js-scroll {
    padding-bottom: 130px;
  }
}

@media screen and (min-width: 768px) {
  footer:after {
    display: none;
  }
}

.pc {
  display: none;
}
/*=============================================
===============================================
===============================================
*************** css for iphone 5 ************
===============================================
===============================================
*=============================================*/
/*=============================================
===============================================
===============================================
***************** css for ie 11 ***************
===============================================
===============================================
*=============================================*/
/*=============================================
===============================================
===============================================
***************** CSS FOR PC ***************
===============================================
===============================================
*=============================================*/

@media only screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  .txt-vertical-pc {
    cursor: vertical-text;
    writing-mode: vertical-rl;
    -o-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -moz-writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: upright;
    word-wrap: break-word;
  }
  .txt-vertical-pc .txt-latin {
    direction: rtl;
    writing-mode: vertical-rl;
    -o-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -moz-writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: sideways-right;
    -o-text-orientation: sideways-right;
    -ms-text-orientation: upright;
    -ms-text-orientation: sideways-right;
    -moz-text-orientation: sideways-right;
    -webkit-text-orientation: sideways-right;
  }
  .txt {
    text-align: left;
  }
  .wrap {
    padding: 0;
  }
  .wrapper {
    display: flex;
    align-items: start;
  }
  .wrapper > div {
    width: 50%;
  }
  .wrapper > div:first-child {
    position: sticky;
    top: 100px;
  }
  .wrapper .right {
    overflow: hidden;
  }
  .ttl-common {
    line-height: 52px;
    position: relative;
    z-index: 2;
    letter-spacing: 3px;
    font-size: 30px;
  }
  body {
    font-size: 16px;
    line-height: 32px;
    letter-spacing: -0.02em;
  }
  /*=============================================
 ******************** header ******************
 *=============================================*/
  header {
    position: relative;
    width: 100%;
    z-index: 100;
  }
  header .logo {
    display: none;
  }
  header .logo a {
    text-decoration: none;
  }
  h1 {
    font-size: 10px;
    padding: 8px;
    text-align: left;
  }
  html img {
    max-width: 100%;
    width: auto;
    height: auto;
  }
  #head-key .logo {
    width: auto;
  }
  .js-scroll {
    display: flex;
    justify-content: flex-start;
    overflow: visible;
  }
  /*=============================================
 ******************* nav-fixed ****************
 *=============================================*/
  .nav-header {
    top: 0;
    right: 0;
    position: fixed;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease;
    height: 100px;
    left: auto;
  }
  .nav-header .logo-nav {
    width: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    margin-left: 40px;
    height: 100px;
  }
  .nav-header .logo-nav img {
    width: 100%;
    height: auto;
  }
  .nav-header .nav {
    display: flex;
    justify-content: space-between;
    height: 100px;
    width: 780px;
    margin: 0 auto;
    margin-left: 150px;
    padding-top: 0;
    padding: 0;
  }
  .nav-header a,
  .nav-header li button {
    border-bottom: 1px solid transparent;
  }
  .nav-header button {
    height: 32px;
    box-sizing: border-box;
  }
  .nav-header li {
    padding: 0;
    font-size: 18px;
    border: none;
    display: flex;
    align-items: center;
  }
  .nav-header li:hover a,
  .nav-header li:hover button {
    border-color: #000;
  }
  .nav-header li .content {
    display: block;
    position: absolute;
    left: 0;
    top: 100px;
    margin: 0;
    padding: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding-top: 60px;
    opacity: 0;
    visibility: hidden;
    padding-bottom: 80px;
    transition: all 0.3s ease;
  }
  .nav-header li .content a {
    width: 513px;
    display: block;
    margin: 0 auto;
  }
  .nav-header li .content .ttl {
    font-size: 30px;
    text-align: center;
    margin-bottom: 25px;
  }
  .nav-header li .content .photo {
    text-align: center;
  }
  .nav-header li .content .row {
    display: flex;
    gap: 40px;
    justify-content: center;
  }
  .nav-header li .content .row nav {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 12px;
    height: 160px;
    gap: 20px;
    width: 420px;
    align-items: start;
  }
  .nav-header li .content .row nav a {
    border: none;
    position: relative;
    display: unset;
    width: auto;
    margin: 0;
  }
  .nav-header li .content .row nav a:before {
    content: '';
    position: absolute;
    top: 53%;
    right: -22px;
    width: 9px;
    height: 7px;
    transform: translateY(-50%);
    background: url(../img/shared/arrow.png) no-repeat center top;
    background-size: contain;
    filter: invert(1);
    transition: all 0.1s linear;
  }
  .nav-header li .content .row nav a:hover:before {
    right: -27px;
  }
  .nav-header li,
  .nav-header li.subnav {
    position: static;
  }
  .nav-header li:hover .content {
    opacity: 1;
    visibility: visible;
  }

  .nav-header li:before {
    display: none;
  }
  .nav-header li.tel,
  .nav-header li.button {
    display: none;
  }
  .button-fix {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .button-fix a {
    width: 90px;
    height: 160px;
    color: #fff;
    text-decoration: none !important;
    background: rgba(0, 0, 0, 0.8);
    display: block;
    font-size: 20px;
    line-height: 90px;
    box-sizing: border-box;
    padding-top: 50px;
  }
  .button-fix a:hover {
    opacity: 0.8;
  }
  /*=============================================
 ******************* keyvisual ****************
 *=============================================*/
  #head-key {
    display: block;
    justify-content: space-between;
    width: 100%;
    margin-bottom: -2px;
  }

  #head-key .keyvisual {
    width: 100%;
    height: 100%;
  }

  #head-key .keyvisual li {
    height: 800px;
  }

  /*=============================================
 ******************* footer *******************
 *=============================================*/
  footer {
    padding: 100px 0 34px;
  }
  footer .wrap {
    width: 1000px;
    margin: 0 auto;
    position: static;
  }
  footer .flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
  }
  footer .left {
    width: 170px;
    margin-left: 61px;
  }
  footer .left .logo {
    width: 46px;
    padding-left: 15px;
  }
  footer .left .tel-ft {
    font-size: 24px;
    margin: 41px -10px 14px;
    letter-spacing: 1px;
  }
  footer .left .button a {
    font-size: 16px;
    height: 35px;
    line-height: 33px;
    letter-spacing: 2px;
  }
  footer .right {
    flex-direction: column;
    margin-top: -5px;
  }
  footer .right .nav-footer {
    margin: 0 76px 0 0;
    gap: 10px;
    height: 235px;
  }
  footer .right .nav-footer li:last-child {
    margin-left: 107px;
  }
  footer .right .nav-footer li:last-child:before {
    top: 38px;
  }
  footer .right .nav-footer li:last-child .ttl {
    margin-bottom: -5px;
  }
  footer .right .nav-footer li:last-child p {
    margin-bottom: -9px;
  }
  footer .right .nav-footer li:last-child p a {
    font-size: 14px;
    line-height: 23px;
    padding-left: 13px;
  }
  footer .right .info {
    margin-top: 4px;
  }
  footer .right .info dl {
    line-height: 24px;
  }
  footer .right .info dl dt {
    width: auto;
  }
  footer .right .info dl dd {
    width: auto;
    margin-left: 14px;
  }
  footer address {
    position: absolute;
    bottom: 23px;
    left: 10px;
    letter-spacing: 1px;
  }
  footer address span {
    display: inline-block;
  }
  footer address span a:hover {
    text-decoration: none;
    cursor: pointer;
  }
  footer address span:nth-child(1) {
    margin-top: 22px;
    direction: ltr !important;
  }
  footer address span .txt-latin {
    display: inline-block;
    transform: translateX(-2px);
  }
  footer address span:not(.txt-latin) {
    position: relative;
  }
  footer address span:not(.txt-latin):before {
    content: '';
    position: absolute;
    top: 22px;
    left: 3px;
    width: 1px;
    bottom: 0;
    background: #000;
    opacity: 0;
  }
  footer address span:not(.txt-latin):hover:before {
    opacity: 1;
  }
  footer #pagetop {
    margin-top: 163px;
  }
  /*=============================================
***************** copyright ******************
*=============================================*/
  #pagetop {
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #pagetop:hover {
    opacity: 0.9;
  }
  #socialbuttons {
    max-width: 350px;
  }
  address {
    padding: 25px 0 10px;
  }
  address span {
    display: block;
  }
}

@media (min-width: 999px) and (max-width: 1250px) {
  .nav-header .nav {
    margin-left: auto;
    width: 680px;
  }
}

@media screen and (min-width: 1500px) {
  .nav-header .nav {
    margin-left: auto;
    padding-right: 250px;
  }
}
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 35px;
  height: 35px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: #fff;
  border: none;
  outline: none;
  background: #b10505;
  font-family: 'fontello';
  z-index: 98;
  border-radius: 50%;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  /* background: #b10505; */
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-size: 30px;
  line-height: 0.5;
  opacity: 1;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev {
  left: 0;
  background: url('../img/shared/prev.png') no-repeat;
  background-size: 100%;
  width: 40px;
  height: 40px;
}
[dir='rtl'] .slick-prev {
  right: 0px;
  left: auto;
}
.slick-prev:before {
  content: '';
}
[dir='rtl'] .slick-prev:before {
  content: '▶';
  color: #fff;
}
.slick-next {
  right: 0;
  background: url('../img/shared/next.png') no-repeat;
  background-size: 100%;
  width: 40px;
  height: 40px;
}
[dir='rtl'] .slick-next {
  right: auto;
  left: 0px;
}
.slick-next:before {
  content: '';
  color: #fff;
}
[dir='rtl'] .slick-next:before {
  content: '←';
}
/* Dots */
.slick-dots {
  position: absolute;
  bottom: 5%;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 10px 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  background: #fff;
  border-radius: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  background: #b10505;
}
.dot_right .slick-dots {
  text-align: right;
}
.dot_left .slick-dots {
  text-align: left;
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUp {
  0% {
    -webkit-transform: translate3d(0, 20px, 0);
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInUp {
  0% {
    -webkit-transform: translate3d(0, 20px, 0);
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}

.blurIn {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }

  to {
    filter: none;
    transform: scale(1);
    opacity: 1;
  }
}

.txt_thanks {
  text-align: center;
  color: #000;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .btn-over img,
  .over-img img,
  img.over,
  img:not(.btn):not(.non-over),
  button img,
  .btn {
    opacity: 1;
    transform: none !important;
    -moz-transform: none !important;
    -webkit-transform: none !important;
    transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
  }
  .btn {
    transition: none !important ;
    -moz-transition: none !important ;
    -webkit-transition: none !important ;
  }
  .over-img img:hover, img.over:hover, /* a:not([href=""]):hover img:not(.btn):not(.non-over), */
a:hover img:not(.btn):not(.non-over), button:hover img {
    cursor: pointer;
    opacity: 0.8;
    transform: none !important;
    -moz-transform: none !important;
    -webkit-transform: none !important;
  }
  a:before {
    text-decoration: underline;
    display: inline-block;
  }

  a:before,
  a:hover:before {
    text-decoration: none;
  }
}
