@charset "UTF-8";
/* ==================================================
	basic settings
================================================== */
/* ==================================================
	basic layout
================================================== */
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
a:link {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a.list:hover {
  opacity: 0.8;
}
a.link_a {
  text-decoration: underline;
}

body.overflow {
  overflow: hidden;
}

img,
iframe {
  width: 100%;
}

#wrapper {
  overflow-x: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  color: #000000;
  -webkit-text-size-adjust: 100%;
  font-size: 3.577vw;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  #wrapper {
    font-size: 1.6rem;
  }
}
/* ========== end △ */

.container {
  width: 100%;
  max-width: 1240px;
  box-sizing: border-box;
  padding: 0vw 3.8325vw 0vw 3.8325vw;
}
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  .container {
    padding: 0 20px 0 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ========== end △ */
.container.mode_m {
  max-width: 1440px;
}
.container.no_padding {
  padding: 0vw 0vw 0vw 0vw;
}
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  .container.no_padding {
    padding: 0;
  }
}
/* ========== end △ */

.en {
  font-family: "Josefin Sans", serif;
}

.cont_wrap {
  width: 100%;
  box-sizing: border-box;
}

/* ==================================================
	keyframes
================================================== */
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
@keyframes txt_rotate {
  0% {
    transform: rotatey(0);
  }
  80% {
    transform: rotatey(0);
  }
  100% {
    transform: rotatey(360deg);
  }
}
@keyframes purun {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  3% {
    transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  6% {
    transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  10% {
    transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  14% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  20% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
@keyframes purupuru {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  10% {
    transform: scale(1, 1.12) translate(-7.5%, -6%) skew(9deg, 0deg);
  }
  25% {
    transform: scale(1, 0.88) translate(7.5%, 6%) skew(-9deg, 0deg);
  }
  32% {
    transform: scale(1, 1.06) translate(4%, -4%) skew(-6deg, 0deg);
  }
  40% {
    transform: scale(1, 0.94) translate(-4%, 4%) skew(6deg, 0deg);
  }
  50% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
@keyframes scroll_arrow {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    transform: translateY(20px);
  }
  90% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
@keyframes slide_info {
  0% {
    opacity: 0;
    transform: translateX(-6vw) scale(1);
  }
  10% {
    opacity: 1;
    transform: translateX(-6vw) scale(1);
  }
  80% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  90% {
    opacity: 0;
    transform: translateX(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(0) scale(1);
  }
}
/* ==================================================
	header
================================================== */
#header {
  width: 100%;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  color: #fff;
}
#header .inner {
  display: flex;
  align-items: center;
  padding: 2.555vw 3.8325vw 2.555vw 3.8325vw;
  position: relative;
}
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  #header .inner {
    max-width: 1440px;
    padding: 80px 20px 30px;
  }
}
/* ========== end △ */
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  #header .inner {
    box-sizing: border-box;
    margin: 0 auto;
  }
  #header .hum_wrap {
    display: none;
  }
}
/* ========== end △ */

.logo {
  display: block;
  align-items: center;
  z-index: 12;
}
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  .logo {
    transition: all 0.3s ease;
  }
  .logo:hover {
    opacity: 0.6;
  }
}
/* ========== end △ */
.logo h1 {
  display: flex;
  align-items: center;
}
.logo img {
  width: auto;
  height: 10.22vw;
}
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  .logo img {
    height: 60px;
  }
}
/* ========== end △ */

/* ==================================================
	gnav
================================================== */
/* ▽ SP layout ========== */
@media print, screen and (max-width: 780px) {
  .nav_gnav .nav_box {
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: all 0.5s;
    position: absolute;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    right: -100%;
    top: 0;
    box-sizing: border-box;
    overflow: auto;
    padding: 15.33vw 3.8325vw 15.33vw 3.8325vw;
  }
  .nav_gnav .nav_box.active {
    opacity: 1;
    right: 0;
  }
  .nav_gnav .nav_box .nav_inner {
    overflow: hidden;
    padding: 15.33vw 7.665vw 15.33vw 7.665vw;
    margin: 0 auto;
  }
  .nav_gnav .nav_box .h_nav ul li a {
    display: block;
    text-align: center;
    font-size: 4.599vw;
  }
  .nav_gnav li {
    text-align: center;
  }
  .nav_gnav li + li {
    margin-top: 4.088vw;
  }
  .nav_gnav li a:not(.btn_contact) {
    display: inline-block;
    padding: 2.044vw 0vw 2.044vw 0vw;
  }
  .nav_gnav li .btn_contact {
    margin-left: auto;
    margin-right: auto;
  }
}
/* ========== end △ */
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  .nav_gnav {
    margin-left: auto;
  }
  .nav_gnav .nav_inner {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: -10px;
  }
  .nav_gnav .nav_inner .h_nav > ul {
    display: flex;
    gap: 20px 0;
    position: relative;
  }
  .nav_gnav .nav_inner .h_nav > ul > li {
    display: flex;
    align-items: center;
    padding: 0 16px;
    position: relative;
  }
  .nav_gnav .nav_inner .h_nav > ul > li > a:not(.btn_contact) {
    font-size: 2.4rem;
    padding: 8px 10px;
  }
  /* ▽ PC layout ========== */
  /* ========== end △ */
}
@media only screen and (min-width: 781px) and (min-width: 781px) {
  .nav_gnav .nav_inner .h_nav > ul > li > a:not(.btn_contact) {
    transition: all 0.3s ease;
  }
  .nav_gnav .nav_inner .h_nav > ul > li > a:not(.btn_contact):hover {
    opacity: 0.6;
  }
}
/* ========== end △ */
/* ▽ TAB layout ========== */
@media only screen and (min-width: 781px) and (max-width: 1240px) {
  .nav_gnav .nav_inner .sns_nav {
    display: none;
  }
}
/* ========== end △ */

/* ▽ SP layout ========== */
@media print, screen and (max-width: 780px) {
  .hum_wrap {
    position: relative;
    z-index: 11;
    width: 10.22vw;
    height: 7.665vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
  }
  .hum_trigger {
    z-index: 12;
    position: relative;
    width: 100%;
    height: 100%;
    color: #fff;
    display: inline-block;
    font-size: 2.555vw;
    transition: all 0.5s;
    box-sizing: border-box;
    letter-spacing: 0.1em;
  }
  .hum_trigger span {
    background: #ffffff;
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 80%;
    left: 10%;
    height: 2px;
    border-radius: 5px;
  }
  .hum_trigger span:nth-of-type(1) {
    top: 2.044vw;
  }
  .hum_trigger span:nth-of-type(2) {
    top: calc(50% - 1px);
  }
  .hum_trigger span:nth-of-type(3) {
    bottom: 2.044vw;
  }
  .hum_trigger.active span:nth-of-type(1) {
    transform: translateY(2vw) rotate(-45deg);
    top: 1.40525vw;
  }
  /* ▽ PC layout ========== */
  /* ========== end △ */
}
@media only screen and (max-width: 780px) and (min-width: 781px) {
  .hum_trigger.active span:nth-of-type(1) {
    transform: translateY(7px) rotate(-45deg);
  }
}
@media print, screen and (max-width: 780px) {
  .hum_trigger.active span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    animation: active-hum 0.8s forwards;
  }
  @-webkit-keyframes active-hum {
    100% {
      height: 0;
    }
  }
  @keyframes active-hum {
    100% {
      height: 0;
    }
  }
  .hum_trigger.active span:nth-of-type(3) {
    bottom: 1.40525vw;
    transform: translateY(-2.6vw) rotate(45deg);
  }
  /* ▽ PC layout ========== */
  /* ========== end △ */
}
@media only screen and (max-width: 780px) and (min-width: 781px) {
  .hum_trigger.active span:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
  }
}
/* ========== end △ */
/* ==================================================
	footer
================================================== */
#footer {
  color: #fff;
  margin-top: 30.66vw;
}
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  #footer {
    margin-top: 160px;
  }
}
/* ========== end △ */
#footer #f_contact {
  background: url(../images/top/f_contact_bg.jpg) right top/auto 101% no-repeat;
  display: block;
  text-align: center;
  padding: 20.44vw 0vw 20.44vw 0vw;
}
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  #footer #f_contact {
    background: url(../images/top/f_contact_bg.jpg) center top/auto 101% no-repeat;
    padding: 155px 0 155px;
  }
}
/* ========== end △ */
#footer #f_contact .ttl {
  font-size: 7.665vw;
  font-weight: bold;
  font-weight: 500;
}
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  #footer #f_contact .ttl {
    font-size: 5rem;
    margin-bottom: 16px;
  }
}
/* ========== end △ */
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  #footer #f_contact .ttl a {
    transition: all 0.3s ease;
  }
  #footer #f_contact .ttl a:hover {
    opacity: 0.6;
  }
}
/* ========== end △ */
#footer #f_contact .tel_box {
  display: inline-block;
  font-size: 4.599vw;
  font-weight: bold;
  margin-top: 4.088vw;
}
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  #footer #f_contact .tel_box {
    font-size: 2.4rem;
    margin-top: 32px;
  }
}
/* ========== end △ */
#footer #f_contact .tel_box .tel {
  font-size: 6.643vw;
  font-family: "Josefin Sans", serif;
  font-weight: 500;
  background: url(../images/common_img/ico_tel.svg) left center/auto 100% no-repeat;
  display: inline-block;
  line-height: 1;
  padding: 0vw 0vw 0vw 8.176vw;
  margin-top: 2.044vw;
}
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  #footer #f_contact .tel_box .tel {
    font-size: 4rem;
    padding: 0 0 0 42px;
    margin-top: 16px;
  }
}
/* ========== end △ */
#footer .f_bottom {
  background: #2F335A;
  padding: 10.22vw 0vw 10.22vw 0vw;
}
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  #footer .f_bottom {
    display: flex;
    justify-content: space-between;
    padding: 90px 0 170px;
  }
}
/* ========== end △ */
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  #footer .f_bottom .container {
    display: flex;
  }
}
/* ========== end △ */
#footer .f_bottom .head {
  text-align: center;
}
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  #footer .f_bottom .head {
    text-align: left;
    margin-right: 170px;
  }
}
/* ========== end △ */
/* ▽ TAB layout ========== */
@media only screen and (min-width: 781px) and (max-width: 1240px) {
  #footer .f_bottom .head {
    margin-right: 40px;
  }
}
/* ========== end △ */
#footer .f_bottom .head .f_logo img {
  width: auto;
  height: 20.44vw;
}
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  #footer .f_bottom .head .f_logo img {
    transition: all 0.3s ease;
  }
  #footer .f_bottom .head .f_logo img:hover {
    opacity: 0.6;
  }
}
/* ========== end △ */
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  #footer .f_bottom .head .f_logo img {
    height: 120px;
  }
}
/* ========== end △ */
#footer .f_bottom .head .data {
  margin-top: 5.11vw;
}
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  #footer .f_bottom .head .data {
    margin-top: 40px;
  }
}
/* ========== end △ */
#footer .f_bottom .mid {
  display: flex;
  justify-content: center;
  gap: 6.132vw;
  margin-top: 10.22vw;
}
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  #footer .f_bottom .mid {
    gap: 36px;
    margin-top: 0;
  }
}
/* ========== end △ */
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  #footer .f_bottom .mid .nav_dl {
    font-size: 1.6rem;
  }
}
/* ========== end △ */
#footer .f_bottom .mid .nav_dl > dt {
  font-weight: bold;
  font-size: 4.599vw;
  margin-bottom: 1.022vw;
}
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  #footer .f_bottom .mid .nav_dl > dt {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
}
/* ========== end △ */
#footer .f_bottom .bottom {
  text-align: center;
  margin-top: 10.22vw;
}
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  #footer .f_bottom .bottom {
    text-align: right;
    margin-top: 0;
    margin-left: auto;
  }
}
/* ========== end △ */
#footer .f_bottom .bottom .btn_contact {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 3.066vw;
}
/* ▽ PC layout ========== */
@media only screen and (min-width: 781px) {
  #footer .f_bottom .bottom .btn_contact {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/* ========== end △ *//*# sourceMappingURL=base.css.map */