@charset "UTF-8";
*, *::before,
*::after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: 100%;
  text-decoration: none;
  vertical-align: baseline;
  background: transparent;
}

span {
  color: inherit;
  font-weight: inherit;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #333;
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

img[src$=".svg"] {
  width: 100%;
}

input, select, textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input, select {
  vertical-align: middle;
}

/*
 * Setting
 */
body {
  font-size: 14px;
  font-family: YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

#baseMenu {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 68px;
  z-index: 90000;
}
#baseMenu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#baseMenu ul li {
  width: 26px;
}
@media screen and (min-width: 1200px) {
  #baseMenu {
    top: 50px;
    right: 50px;
    width: 75px;
  }
  #baseMenu ul li {
    width: 30px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: opacity 0.5s ease;
}
.header.hideClass {
  opacity: 0;
  pointer-events: none;
}
.header__buttons {
  width: 186px;
  padding-bottom: 35px;
  border: 3px solid #000;
  background: #fff;
}
.header__logo {
  width: 100%;
  height: 186px;
  background: #000;
}
.header__logo a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.header__logo a img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 139px;
  height: auto;
}
.header__burger {
  position: relative;
  width: 100px;
  height: 20px;
  margin: 40px auto 43px;
  cursor: pointer;
}
.header__burger:hover .header__line--bottom {
  width: 100%;
}
.header__burger.active .header__line--top {
  top: 9px;
  transform: rotate(15deg);
}
.header__burger.active .header__line--middle {
  opacity: 0;
}
.header__burger.active .header__line--bottom {
  bottom: 9px;
  transform: rotate(-15deg);
  width: 100%;
}
.header__line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
  transition: 0.3s;
}
.header__line--top, .header__line--middle {
  width: 100%;
}
.header__line--top {
  top: 0;
}
.header__line--middle {
  top: 50%;
  transform: translateY(-50%);
}
.header__line--bottom {
  width: 50%;
  bottom: 0;
}
.header__sns--sp {
  display: none;
}
.header__sns > div {
  text-align: center;
}
.header__sns--twitter {
  margin-bottom: 23px;
}
.header__sns--twitter a img {
  width: 22.5px;
}
.header__sns--instagram {
  margin-bottom: 23px;
}
.header__sns--instagram a img {
  width: 22.3px;
}
.header__sns--facebook a img {
  width: 22.3px;
}
.header__news {
  margin-top: 25px;
  text-align: center;
}
.header__news a {
  display: inline-block;
  padding: 12px 31px;
  background: #000000;
}
.header__news a span {
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 1199px) {
  .header__buttons {
    width: 103px;
    padding-bottom: 0;
  }
  .header__logo {
    height: 103px;
  }
  .header__logo a img {
    width: 77px;
  }
  .header__burger {
    width: 56px;
    height: 10px;
    margin: 28px auto;
  }
  .header__burger.active .header__line--top {
    top: 4px;
  }
  .header__burger.active .header__line--bottom {
    bottom: 4px;
  }
  .header__sns--pc {
    display: none;
  }
  .header__sns--sp {
    display: block;
    position: absolute;
    top: 205px;
    left: 40px;
  }
  .header__news {
    margin-top: 0;
  }
  .header__news a {
    width: 100%;
    padding: 15px 0 14px;
  }
}

.nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9000;
  overflow: auto;
  width: 100%;
  min-height: 100%;
  padding: 105px 25px 5vh;
  background: #fff;
}
.nav__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nav__list--pc {
  display: none;
}
.nav__list--sp {
  margin-bottom: 70px;
  padding-left: 110px;
}
.nav__list--sp .nav__item {
  margin-bottom: 27px;
}
.nav__list--sp .nav__item:last-of-type {
  margin-bottom: 0;
}
.nav__list--sp .nav__item img {
  width: auto;
  height: 20px;
}
.nav__contact ul {
  margin-bottom: 55px;
}
.nav__contact ul li:first-of-type {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dashed #c3c3c3;
}
.nav__contactLogo {
  margin-bottom: 10px;
}
.nav__contactLogo img {
  width: auto;
  height: 30px;
}
.nav__contact--strong {
  font-weight: bold;
}
.nav__contact p {
  line-height: 1.8;
  letter-spacing: 0.1em;
}
.nav__contactTel {
  margin-top: 10px;
}
.nav__contactTel img {
  width: auto;
  height: 63px;
}
.nav__law {
  font-size: 12px;
}
.nav__law ul {
  display: flex;
  justify-content: center;
}
.nav__law ul li:first-of-type {
  margin: 0 1.5em 0 0;
}
.nav__credit {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid #000;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .nav {
    padding-top: 250px;
  }
  .nav nav {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nav__inner {
    height: 100%;
  }
  .nav__list--sp {
    display: none;
  }
  .nav__list--pc {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 460px;
  }
  .nav__item {
    width: 37px;
  }
  .nav__item img:last-of-type {
    display: none;
  }
  .nav__item a {
    display: inline-block;
    width: 100%;
    padding: 5px;
  }
  .nav__contact ul {
    display: flex;
    justify-content: center;
  }
  .nav__contact ul li:first-of-type {
    margin-bottom: 0;
    padding-right: 20px;
    padding-bottom: 0;
    border-bottom: none;
    border-right: 1px dashed #c3c3c3;
  }
  .nav__contact ul li:last-of-type {
    padding-left: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .nav {
    padding: 9.8vh 11% 5.4vh;
  }
  .nav__list {
    max-width: 482px;
  }
  .nav__item a {
    position: relative;
    transition: 0.3s;
  }
  .nav__item a img {
    width: 27px;
    transition: 0.3s;
  }
  .nav__item a img:last-of-type {
    display: block;
    position: absolute;
    top: 5px;
    left: 5px;
    opacity: 0;
  }
  .nav__item a:hover {
    background: #000;
  }
  .nav__item a:hover img:first-of-type {
    opacity: 0;
  }
  .nav__item a:hover img:last-of-type {
    opacity: 1;
  }
  .nav__contact ul {
    margin-bottom: 80px;
  }
  .nav__contact ul li {
    white-space: nowrap;
  }
  .nav__contact ul li:first-of-type {
    padding-right: 86px;
  }
  .nav__contact ul li:last-of-type {
    padding-left: 85px;
  }
  .nav__contactLogo {
    margin-bottom: 35px;
  }
  .nav__contactLogo img {
    height: 47px;
  }
  .nav__contactTel {
    margin-top: 18px;
  }
  .nav__contactTel img {
    height: 73px;
  }
  .nav__law {
    font-size: 13px;
  }
  .nav__credit {
    margin-top: 20px;
    padding-top: 20px;
  }
}

.footer__next {
  padding: 30px 20px;
  text-align: center;
}
.footer__next > img {
  display: block;
  margin-bottom: 10px;
}
.footer__next a span, .footer__next a img {
  vertical-align: middle;
}
.footer__next a span {
  margin-right: 10px;
  font-weight: bold;
  font-size: 18px;
}
.footer__next a img {
  width: 25px;
}
.footer__main {
  position: relative;
  padding: 15px 20px 40px;
  background-image: url(../images/footer_background.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.footer__layer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.footer__contents {
  position: relative;
}
.footer__info {
  margin-bottom: 15px;
  color: #fff;
}
.footer__info li {
  margin-bottom: 5px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.footer__info li:first-of-type {
  height: 24px;
  margin-bottom: 15px;
}
.footer__info li:first-of-type img {
  width: auto;
  height: 100%;
}
.footer__content {
  position: relative;
  padding: 45px 0;
}
.footer__content--nagai .footer__logo {
  width: 205px;
}
.footer__content--88 .footer__logo {
  width: 146px;
}
.footer__logo {
  margin-bottom: 15px;
}
.footer__tel img {
  width: auto;
  height: 59px;
}
.footer__border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #d0d0ba, #d0d0ba 3px, transparent 3px, transparent 6px);
  background-size: 6px 1px;
  background-position: left top;
  background-repeat: repeat-x;
}
.footer__contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 60px;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.13);
}
.footer__contact a span {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.075em;
  text-indent: 0.075em;
}
.footer__contact a img {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 25px;
}
.footer__credit {
  padding: 20px 0;
  text-align: center;
}
.footer__credit img {
  width: 160px;
}
.footer__credit small {
  display: block;
  margin-top: 1em;
  font-family: serif;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .footer__next {
    padding: 50px 0;
  }
  .footer__next > img {
    max-width: 600px;
    margin: 0 auto 20px;
  }
  .footer__next a span {
    margin-right: 20px;
    font-size: 30px;
  }
  .footer__next a img {
    width: 35px;
  }
  .footer__main {
    padding: 60px 20px;
  }
  .footer__contents {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }
  .footer__content {
    width: 50%;
    max-width: 404px;
    padding: 0;
  }
  .footer__content--88 {
    padding-left: 20px;
  }
  .footer__border {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    width: 1px;
    height: 100%;
    background-image: linear-gradient(to bottom, #d0d0ba, #d0d0ba 3px, transparent 3px, transparent 6px);
    background-size: 1px 6px;
    background-position: left top;
    background-repeat: repeat-y;
  }
  .footer__contact a {
    height: 100px;
    max-width: 550px;
    margin: auto;
  }
  .footer__contact a span {
    font-size: 20px;
  }
  .footer__contact a img {
    right: 50px;
    width: 35px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__next {
    padding: 80px 0;
  }
  .footer__next > img {
    max-width: 1166px;
    margin-bottom: 10px;
  }
  .footer__next a span {
    margin-right: 25px;
    font-size: 40px;
  }
  .footer__next a img {
    width: 60px;
  }
  .footer__main {
    padding: 168px 0 164px;
  }
  .footer__contents {
    margin-bottom: 60px;
  }
  .footer__content--nagai .footer__logo {
    width: 313px;
    margin-bottom: 60px;
  }
  .footer__content--88 {
    padding-left: 88px;
  }
  .footer__content--88 .footer__logo {
    width: 250px;
    margin-bottom: 39px;
  }
  .footer__info {
    white-space: nowrap;
  }
  .footer__contact a {
    height: 141px;
    max-width: 808px;
  }
  .footer__contact a span {
    font-size: 23px;
  }
  .footer__contact a img {
    width: 40px;
  }
  .footer__tel img {
    height: 73px;
  }
  .footer__credit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    padding: 0 7.14%;
  }
  .footer__credit img {
    width: 226px;
  }
  .footer__credit small {
    font-size: 13px;
  }
}/*# sourceMappingURL=main.css.map */