@charset "UTF-8";
/* =================================================== *

  --- ABOUT CSS ---

framework [musubii] https: //musubii.qranoko.jp/getting-started/introduction
mobile~575px
fablet 576px~767px
tablet 768px~991px
desktop 992px~1199px
wide 1200px~

 * =================================================== */
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  overflow-x: hidden;
  animation: fadeIn 1s ease 0s 1 normal;
  color: #2d2d2d;
  background: url("../img/bg.jpg");
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 575px) {
  body {
    font-size: 1.4rem;
  }
}
@media (max-width: 375px) {
  body {
    width: 375px;
  }
}
/* inner */
.section > .inner {
  width: min(92%, 1200px);
}

/* inner-wide */
.inner-wide {
  width: min(100%, 1200px);
  margin: 0 auto;
}

/* 行間 */
p {
  line-height: 2;
}

/* 明朝体 */
.min {
  font-family: "Noto Serif JP", serif;
}

/* 英字 */
.mon {
  font-family: "Montserrat", sans-serif;
}

/* img */
.pic img {
  width: 100%;
  height: auto;
}

/* hover img */
a img {
  transition: 0.3s;
}
a:hover img {
  opacity: 0.8;
}

/* main */
main {
  padding-bottom: 70px;
}

@media (max-width: 767px) {
  main {
    padding-bottom: 50px;
  }
}
/* pc sp 表示 */
.pc-only {
  display: block !important;
}

.sp-only {
  display: none !important;
}

@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
}
/* pc 電話無効 */
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.txt-center {
  text-align: center;
}

.mrt-1em {
  margin-top: 1em;
}

/*  Header
=================================================== */
body.lock {
  overflow: hidden;
}

header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s;
}
header.fixed {
  background: rgba(255, 255, 255, 0.8);
}
header::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
header nav {
  z-index: 3;
}
header ul {
  display: flex;
}
header ul li + li {
  margin-left: 40px;
}
header ul li a {
  font-size: 1.8rem;
  position: relative;
  display: block;
  letter-spacing: 0.1em;
  color: #fff;
}
header ul li a::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transform: scaleX(0);
  transform-origin: bottom right;
  background-color: #fff;
}
header ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
header ul.fixed li a {
  color: #2d2d2d;
}
header ul.fixed li a::after {
  background-color: #bfbfbf;
}

.header-user-pc a {
  position: absolute;
  z-index: 999;
  top: 0;
  right: 0;
  display: block;
  padding: 10px;
  transition: 0.3s;
  text-align: center;
  color: #fff;
  background: #707070;
}
.header-user-pc a:hover {
  background: #84988e;
}
.header-user-pc img {
  display: block;
  width: 30px;
  margin: 0 auto 5px auto;
}
.header-user-sp {
  display: none;
}
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(92%, 1200px);
  height: 85px;
  margin: 0 auto;
  transition: 0.3s;
}
.header__inner.fixed {
  height: 50px;
}
.header-logo {
  z-index: 3;
  max-width: 250px;
  margin-right: 50px;
}
.header-logo a {
  transition: 0.3s;
}
.header-logo a:hover {
  opacity: 0.8;
}

.trgger {
  display: none;
}

@media (max-width: 1020px) {
  header ul li + li {
    margin-left: 20px;
  }
  header ul li a {
    font-size: 1.5rem;
  }
  .header-logo {
    max-width: 180px;
  }
}
@media (max-width: 767px) {
  header {
    background: rgba(0, 0, 0, 0.3) !important;
  }
  header nav {
    position: fixed;
    z-index: 900;
    top: -120%;
    left: 0;
    overflow: auto;
    width: 100%;
    height: 100%;
    padding: 100px 10px 20px 10px;
    transition: all 0.3s ease 0s;
    background: rgba(0, 0, 0, 0.8);
  }
  header nav.active {
    top: 0;
  }
  header ul {
    display: block;
  }
  header ul li + li {
    margin-top: 20px;
    margin-left: 0;
  }
  header ul li a {
    position: static;
    text-align: center;
    color: #fff !important;
  }
  header ul li a::after {
    position: static;
  }
  .header-user-pc {
    display: none;
  }
  .header-user-sp {
    position: relative;
    z-index: 10;
    display: block;
    margin-left: auto;
  }
  .header-user-sp a {
    display: block;
  }
  .header-user-sp img {
    width: 25px;
  }
  .header__inner {
    justify-content: space-between;
    height: 50px;
  }
  .header-logo {
    max-width: 180px;
  }
  .header-logo img {
    filter: brightness(0) invert(1);
  }
  .trigger {
    position: relative;
    z-index: 999;
    display: block;
    width: 50px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s;
  }
  .trigger span {
    position: absolute;
    right: 0;
    display: block;
    box-sizing: border-box;
    width: 50%;
    height: 2px;
    transition: 0.3s;
    background: #fff;
  }
  .trigger span:nth-of-type(1) {
    top: 10px;
  }
  .trigger span:nth-of-type(2) {
    top: 20px;
  }
  .trigger span:nth-of-type(3) {
    top: 30px;
  }
  .trigger.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  .trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .trigger.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
  }
}
/*  Footer
=================================================== */
footer {
  color: #fff;
  background: #2d2d2d;
}

.footer__inner {
  display: flex;
  align-items: center;
  width: min(92%, 1200px);
  margin: 0 auto;
  padding: 40px 0;
}
.footer-logo {
  flex-basis: 12%;
  margin-right: 5%;
}
.footer-info {
  flex-basis: 30%;
}
.footer-info h1 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}
.footer-address {
  margin-bottom: 5px;
}
.footer-tel {
  display: flex;
}
.footer-tel > div:first-child {
  margin-right: 20px;
}
.footer-nav {
  flex: 1;
  margin-left: auto;
}
.footer-menu ul {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}
.footer-menu ul li + li {
  margin-left: 30px;
}
.footer-menu ul li a {
  position: relative;
  display: block;
}
.footer-menu ul li a::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transform: scaleX(0);
  transform-origin: bottom right;
  background-color: #fff;
}
.footer-menu ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.footer-submenu ul {
  display: flex;
  justify-content: flex-end;
}
.footer-submenu ul li {
  flex-basis: 25%;
}
.footer-submenu ul li + li {
  margin-left: 30px;
}
.footer-submenu ul li a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  transition: 0.3s;
  text-align: center;
  color: #2d2d2d;
  background: #fff;
}
.footer-submenu ul li a:hover {
  transform: scale(1.1);
}
.footer-submenu ul li a img {
  margin-right: 10px;
}
.footer-copy {
  margin: 0 20px;
  padding-bottom: 40px;
  text-align: center;
}

@media (max-width: 1200px) {
  .footer__inner {
    align-items: flex-start;
  }
  .footer-info {
    flex-basis: 40%;
    margin-right: 5%;
  }
  .footer-menu ul {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .footer-menu ul li {
    flex-basis: 48%;
    margin-bottom: 5px;
  }
  .footer-menu ul li + li {
    margin-left: 0;
  }
  .footer-submenu ul {
    justify-content: space-between;
  }
  .footer-submenu ul li {
    flex-basis: 60%;
  }
  .footer-submenu ul li + li {
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  .footer-info {
    margin-right: 2%;
  }
  .footer-tel {
    display: block;
  }
}
@media (max-width: 767px) {
  .footer__inner {
    flex-wrap: wrap;
    padding: 30px 0;
  }
  .footer-logo {
    flex-basis: 20%;
    margin-bottom: 20px;
  }
  .footer-info {
    flex-basis: 60%;
    margin-bottom: 20px;
  }
  .footer-tel {
    display: flex;
  }
  .footer-nav {
    flex-basis: 100%;
    margin-left: 0;
  }
  .footer-menu ul li a {
    position: static;
  }
  .footer-menu ul li a::after {
    position: static;
  }
  .footer-submenu ul {
    justify-content: center;
  }
  .footer-submenu ul li {
    flex-basis: 100%;
  }
  .footer-submenu ul li + li {
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .footer-logo {
    flex-basis: 30%;
  }
  .footer-tel {
    display: block;
  }
}
/*  Go to top
=================================================== */
#page_top {
  position: fixed;
  z-index: 10;
  right: 20px;
  bottom: 20px;
}
#page_top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 35px;
  margin-left: auto;
  transition: 0.3s;
  opacity: 0.8;
  color: #fff;
  border-radius: 5px;
  background: #84988e;
}
#page_top a span {
  transform: rotate(-90deg);
  color: #fff;
}
#page_top a:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  #page_top {
    right: 10px;
    bottom: 10px;
  }
}