@charset "UTF-8";
/* --- モダンリセット CSS --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  background-color: #fff;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* --- モダンリセット CSS ここまで--- */
/*共通*/
section {
  width: 100%;
  background-size: cover;
}

.inner {
  margin-right: auto;
  margin-left: auto;
}

.totop {
  display: block;
  position: fixed;
  background: #4d4d4d;
  opacity: 0.8;
}
.totop:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border-right: #fff 3px solid;
  border-bottom: #fff 3px solid;
  transform: rotate(225deg);
}

@media screen and (min-width: 431px) {
  .inner {
    max-width: 1100px;
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .normal {
    font-size: 16px;
    line-height: 1.75;
  }
}
a:hover {
  opacity: 0.8;
}

.word {
  display: inline-block;
}

.tya {
  display: block;
  margin: auto;
  background: #603813;
  color: #fff;
  text-align: center;
}

/*背景*/
header {
  background: #00373f;
  color: #fff;
  align-items: center;
}

header .soudan {
  display: inline-block;
  background: #f94b4b;
  text-align: center;
}

@media screen and (min-width: 431px) {
  .totop {
    right: 50px;
    bottom: 50px;
    width: 80px;
    height: 80px;
    border-radius: 40px;
  }
  .totop:after {
    bottom: -5px;
    width: 25px;
    height: 25px;
    border-right: #fff 6px solid;
    border-bottom: #fff 6px solid;
  }
  html {
    min-width: 900px;
    font-size: 10px;
  }
  header {
    display: flex;
    max-width: 1336px;
    height: 70px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 55px;
    padding-left: 55px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    align-items: center;
    justify-content: space-between;
  }
  header > div {
    line-height: 25px;
  }
  header ul {
    display: flex;
    list-style: none;
    font-size: 14px;
    font-weight: normal;
    align-items: center;
  }
  header li {
    margin-left: 20px;
  }
  header .soudan {
    display: inline-block;
    width: 85px;
    height: 30px;
    border-radius: 15px;
    line-height: 30px;
  }
  .tya {
    height: 60px;
    border-radius: 30px;
    font-size: 20px;
    line-height: 60px;
  }
}
@media screen and (max-width: 430px) {
  .totop {
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 25px;
  }
  .totop:after {
    bottom: -4px;
    width: 15px;
    height: 15px;
    border-right: #fff 3px solid;
    border-bottom: #fff 3px solid;
  }
  .hamburger {
    position: absolute;
    z-index: 100;
    top: 5px;
    right: 7px;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  .mv {
    background: #00b5d1 url(img/mvSp.png);
    background-repeat: no-repeat;
    background-position: 95% 66px;
    background-size: 165px;
  }
  .hamburger__line {
    position: absolute;
    left: 11px;
    width: 26px;
    height: 2px;
    background-color: #fff;
    transition: all 0.4s;
  }
  .hamburger__line:nth-of-type(1) {
    top: 14px;
  }
  .hamburger__line:nth-of-type(2) {
    top: 23px;
  }
  .hamburger__line:nth-of-type(3) {
    top: 32px;
  }
  /* メニューオープン時 */
  .hamburger.active .hamburger__line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
  }
  .hamburger.active .hamburger__line:nth-of-type(2) {
    opacity: 0;
  }
  .hamburger.active .hamburger__line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
  }
  #nav-menu .blue {
    height: 460px;
    margin-top: 12px;
    padding-top: 26px;
    padding-right: 34px;
    padding-left: 34px;
    background: #00b5d1;
  }
  #nav-menu .logo {
    padding-top: 30px;
    padding-bottom: 30px;
    background: #fff;
  }
  #nav-menu .logo img {
    max-width: 26.5em;
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
  #nav-menu li {
    line-height: 40px;
  }
  #nav-menu a {
    border-radius: 22px;
    font-size: 16px;
  }
  #nav-menu a:after {
    content: ">";
    margin-left: 10px;
  }
  #nav-menu .soudan {
    margin-top: 6px;
  }
  .nav {
    position: relative;
    z-index: 90;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 2px 0 4px rgba(255, 255, 255, 0.1);
    transition: transform 0.4s;
    transform: translateX(-100%);
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav__list {
    list-style: none;
    margin: 0;
    padding-bottom: 136px;
    background: url(img/footerImgSp.png) center bottom;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .nav__item {
    padding: 0 20px;
  }
  .nav__link {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    color: #333;
    text-decoration: none;
  }
  header {
    position: relative;
    height: 55px;
    padding-top: 11px;
  }
  header .word {
    display: block;
  }
  header > div {
    padding-left: 20px;
    font-size: 13px;
    font-weight: bold;
    line-height: 16px;
  }
  .tya {
    height: 44px;
    border-radius: 22px;
    font-size: 16px;
    line-height: 44px;
  }
}
.footer {
  margin-right: auto;
  margin-left: auto;
  font-size: 14px;
  text-align: center;
  line-height: 18px;
}
.footer .logo {
  display: inline-block;
  width: 460px;
  margin-top: 40px;
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;
  vertical-align: middle;
}
.footer img {
  max-width: 616px;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 431px) {
  footer .inner {
    display: flex;
    height: 60px;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 60px;
  }
  .copy {
    display: block;
    width: 404px;
    margin-left: auto;
  }
}
footer a {
  display: block;
}
footer a + a {
  margin-left: 1em;
}

.copy {
  display: block;
}

@media screen and (min-width: 431px) {
  footer .inner {
    display: flex;
    height: 60px;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 60px;
  }
  .copy {
    width: 404px;
    margin-left: auto;
  }
}
@media screen and (max-width: 430px) {
  .inner {
    margin-right: auto;
    margin-left: auto;
    padding-top: 3rem;
    padding-right: 1.25rem;
    padding-bottom: 2.9rem;
    padding-left: 1.25rem;
  }
  .footer .logo {
    width: 30.7rem;
    margin-top: 3.6rem;
    margin-bottom: 1rem;
  }
  footer {
    text-align: center;
  }
  footer .copy {
    margin-top: 12px;
    font-size: 9px;
    text-align: center;
  }
  footer a {
    display: inline;
  }
  footer a + a {
    margin-left: 1em;
  }
}
footer {
  background: #000;
  color: #fff;
  font-size: 14px;
}

@media screen and (max-width: 430px) {
  html {
    font-size: 2.7397260274vw;
  }
  .pc-only {
    display: none;
  }
}
@media screen and (min-width: 431px) {
  .sp-only {
    display: none !important;
  }
  html {
    font-size: 0.7246376812vw;
    font-size: clamp(6.25px, 0.7246376812vw, 10px);
  }
}
/*# sourceMappingURL=common.css.map */