/* Reset
----------------------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* =============================================================

    Base

* ============================================================= */
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

@font-face {
  font-family: 'fontIcon';
  src: url("fonts/icomoon.eot?qopz7c");
  src: url("fonts/icomoon.eot?qopz7c#iefix") format("embedded-opentype"), url("fonts/icomoon.ttf?qopz7c") format("truetype"), url("fonts/icomoon.woff?qopz7c") format("woff"), url("fonts/icomoon.svg?qopz7c#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  color: #000;
  font-family: "Yu Gothic", YuGothic, -apple-system, BlinkMacSystemFont, Verdana, Meiryo, sans-serif;
  font-size: 1.6rem;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  -webkit-font-kerning: auto;
  font-kerning: auto;
  font-display: swap;
  font-weight: 500;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.03em;
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 414px) {
  body {
    font-size: 1.2rem;
  }
}

a {
  color: #313131;
  text-decoration: underline;
}

a:hover, a:active, a:focus, a:visited, a:link {
  color: #313131;
}

a:hover {
  text-decoration: none;
}

a.js-tel {
  text-decoration: none !important;
}

a.js-tel._active {
  text-decoration: underline !important;
}

#googleAnalyticsImageObj {
  position: absolute;
  bottom: 0;
  left: 0;
}

.wrapper {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  position: relative;
  display: grid;
  grid-template-rows: 80px 1fr 334px;
  grid-template-columns: 100%;
}

@media screen and (max-width: 1024px) {
  .wrapper {
    grid-template-rows: 60px 1fr 334px;
  }
}

@media screen and (max-width: 768px) {
  .wrapper {
    grid-template-rows: 60px 1fr 310px;
  }
}

@media screen and (max-width: 414px) {
  .wrapper {
    grid-template-rows: 60px 1fr 296px;
  }
}

/* page loader
=============================== */
.page-loader {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.page-loader:before {
  background-color: #fff;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.page-loader.is-loaded:before {
  opacity: 0;
  visibility: hidden;
}

/* show IE
=============================== */
.showIE {
  margin: 10px;
  display: block;
  border: 4px double #f00;
  line-height: 1.8;
  padding: 30px 35px;
}

.showIE__text:not(:last-child) {
  margin-bottom: 10px;
}

/* =============================================================

  header

* ============================================================= */
@-webkit-keyframes headerFixed {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes headerFixed {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.header {
  background-color: #fff;
  width: 100%;
  height: 80px;
  grid-row: 1;
  position: relative;
  z-index: 900;
}

@media screen and (max-width: 1024px) {
  .header {
    position: fixed;
    height: 60px;
  }
}

.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-animation-name: headerFixed;
  animation-name: headerFixed;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@media screen and (max-width: 1024px) {
  .header.is-fixed {
    -webkit-animation: none;
    animation: none;
  }
}

.header__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  max-width: 1344px;
  margin: 0 auto;
  padding: 0 2.45em;
}

@media screen and (max-width: 1024px) {
  .header__inner {
    padding: 0 2.125%;
  }
}

.header-logo {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 24%;
  max-width: 282px;
  padding-right: 2.45em;
}

@media screen and (max-width: 1024px) {
  .header-logo {
    width: 80%;
    padding-left: 1em;
  }
}

@media screen and (max-width: 768px) {
  .header-logo {
    padding-right: 0;
  }
}

.header-logo a {
  display: block;
}

.header-logo a img {
  display: block;
  max-width: 100%;
}

.header-nav {
  width: 76%;
}

.header-nav-list {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .header-nav-list {
    display: none;
  }
}

.header-nav-list__item {
  position: relative;
  letter-spacing: 0;
}

.header-nav-list__item > a {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #000;
  font-size: 1.6rem;
  letter-spacing: -0.07em;
  text-decoration: none;
  padding: 0 1.2em;
  position: relative;
}

.header-nav-list__item > a:hover, .header-nav-list__item > a:active, .header-nav-list__item > a:focus, .header-nav-list__item > a:visited, .header-nav-list__item > a:link {
  color: #000;
}

@media screen and (max-width: 1024px) {
  .header-nav-list__item > a {
    font-size: 1.4rem;
  }
}

.header-nav-list__link.-contact {
  background-color: #000;
  border: 1px solid #000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  display: block;
  font-weight: 600;
  text-align: center;
  padding: 0.6em;
  margin-left: 1.2em;
  width: 220px;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.header-nav-list__link.-contact:hover, .header-nav-list__link.-contact:active, .header-nav-list__link.-contact:focus, .header-nav-list__link.-contact:visited, .header-nav-list__link.-contact:link {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .header-nav-list__link.-contact {
    width: 80%;
    margin: 2.4em auto 0;
  }
}

.header-nav-list__link.-contact:before {
  display: inline-block;
  content: "\e900";
  font-family: 'fontIcon';
  vertical-align: bottom;
  margin-right: 0.4em;
}

.header-nav-list__link.-contact:hover {
  background-color: #fff;
  color: #000;
}

.header-nav-list__link.-contact:hover:hover, .header-nav-list__link.-contact:hover:active, .header-nav-list__link.-contact:hover:focus, .header-nav-list__link.-contact:hover:visited, .header-nav-list__link.-contact:hover:link {
  color: #000;
}

.header-trigger {
  background-color: #000;
  cursor: pointer;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 1024px) {
  .header-trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header-trigger__title {
  color: #fff !important;
  font-size: 1rem;
  font-family: "Lato", "Yu Gothic", YuGothic, -apple-system, BlinkMacSystemFont, Verdana, Meiryo, sans-serif;
  font-weight: 600;
}

.header-trigger__title:hover, .header-trigger__title:active, .header-trigger__title:focus, .header-trigger__title:visited, .header-trigger__title:link {
  color: #fff !important;
}

.header-trigger__inner {
  width: 100%;
  height: 24px;
  width: 24px;
  position: relative;
}

.header-trigger__inner span {
  background-color: #fff;
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.header-trigger__inner span:first-child {
  top: 3px;
}

.header-trigger__inner span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}

.header-trigger__inner span:last-child {
  bottom: 3px;
}

._open .header-trigger__inner span:first-child {
  -webkit-transform: rotate(45deg) translate(3px, -3px);
  -ms-transform: rotate(45deg) translate(3px, -3px);
  transform: rotate(45deg) translate(3px, -3px);
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
}

._open .header-trigger__inner span:nth-child(2) {
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
  opacity: 0;
}

._open .header-trigger__inner span:last-child {
  -webkit-transform: rotate(-45deg) translate(3px, 3px);
  -ms-transform: rotate(-45deg) translate(3px, 3px);
  transform: rotate(-45deg) translate(3px, 3px);
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
}

.sp-navigation {
  background-color: #fff5ea;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  display: none;
  top: 60px;
  left: 0;
  width: 100%;
  padding: 2em 0;
  -webkit-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  -o-transition: transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
}

@media screen and (max-width: 1024px) {
  .sp-navigation {
    display: block;
  }
}

.sp-navigation._open {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  -o-transition: transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.sp-navigation .header-nav-list {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  padding: 0 0 3em;
}

.sp-navigation .header-nav-list__item {
  border-bottom: 1px solid #535355;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 90%;
  margin: 0 auto;
}

.sp-navigation .header-nav-list__item:last-of-type {
  border-bottom: 0;
}

.sp-navigation .header-nav-list__item > a {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  font-size: 1.4rem;
  width: 100%;
  height: auto;
  padding: 1.2em 1em;
  position: relative;
}

.sp-navigation .header-nav-list__item > a:before {
  display: none;
}

.sp-navigation .header-nav-list__item > a:after {
  border-top: 2px solid #808080;
  border-right: 2px solid #808080;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 1.4em;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  -o-transition: transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.sp-navigation .header-nav-list__item > a:last-of-type:after {
  display: none;
}

.sp-navigation .header-nav-list__item > a:hover > .header-local {
  display: none;
}

.sp-navigation__button {
  display: block;
  font-size: 1.2rem;
  text-align: center;
  text-decoration: none;
  padding: 1.2em 0;
  width: 90%;
  margin: 0 auto;
}

.sp-navigation__button + .sp-navigation__button {
  margin-top: 1.4em;
}

.sp-navigation__button:first-of-type {
  border: 1px solid #a9a9a9;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #a9a9a9;
}

.sp-navigation__button:first-of-type:hover, .sp-navigation__button:first-of-type:active, .sp-navigation__button:first-of-type:focus, .sp-navigation__button:first-of-type:visited, .sp-navigation__button:first-of-type:link {
  color: #a9a9a9;
}

.sp-navigation__button:nth-of-type(2) {
  border: 1px solid #ee7800;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #ee7800;
}

.sp-navigation__button:nth-of-type(2):hover, .sp-navigation__button:nth-of-type(2):active, .sp-navigation__button:nth-of-type(2):focus, .sp-navigation__button:nth-of-type(2):visited, .sp-navigation__button:nth-of-type(2):link {
  color: #ee7800;
}

/* =============================================================

  footer

* ============================================================= */
.footer {
  background-color: #000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 5.625em;
  grid-row: 3;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 2em;
  }
}

.footer-arrow {
  color: #fff;
  position: absolute;
  font-size: 1.5rem;
  font-family: "Lato", "Yu Gothic", YuGothic, -apple-system, BlinkMacSystemFont, Verdana, Meiryo, sans-serif;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.15em;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  right: 2.4em;
  bottom: 4em;
}

.footer-arrow:hover, .footer-arrow:active, .footer-arrow:focus, .footer-arrow:visited, .footer-arrow:link {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .footer-arrow {
    padding-top: 0.4em;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 414px) {
  .footer-arrow {
    right: 1.2em;
    padding-top: 0;
    font-size: 1.1rem;
  }
}

.footer-arrow:before {
  background-color: #fff;
  content: "";
  display: block;
  width: 2px;
  height: 80px;
  position: absolute;
  top: -100%;
  left: 50%;
  margin-left: -1px;
}

@media screen and (max-width: 414px) {
  .footer-arrow:before {
    padding-top: 0;
    height: 58px;
  }
}

.footer-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .footer-nav-list {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer-nav-list__item {
  border-right: 1px solid #fff;
  padding: 0 1.4em;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .footer-nav-list__item {
    border-right: 0;
    line-height: 3.2;
  }
  .footer-nav-list__item:before {
    content: "-";
    color: #fff;
    display: inline-block;
    padding-right: .6em;
  }
}

.footer-nav-list__item:last-of-type {
  border-right: 0;
}

.footer-nav-list__item a {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .footer-nav-list__item a {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 414px) {
  .footer-nav-list__item a {
    font-size: 1.1rem;
  }
}

.footer-nav-list__item a:hover {
  text-decoration: underline;
}

.footer-button {
  text-decoration: none;
  width: 440px;
  margin: 2em auto 3em;
}

@media screen and (max-width: 768px) {
  .footer-button {
    width: 80%;
  }
}

.footer-info {
  font-size: 1.4rem;
  color: #fff;
  display: block;
  text-align: center;
}

.footer-info span {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .footer-info {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 414px) {
  .footer-info {
    font-size: 1rem;
  }
}

.footer-copyright {
  font-size: 1.4rem;
  color: #fff;
  display: block;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer-copyright {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 414px) {
  .footer-copyright {
    font-size: 1rem;
  }
}

/* =============================================================

  main

* ============================================================= */
/* main
=============================== */
.main {
  width: 100%;
  position: relative;
  padding: 0;
  grid-row: 2;
}

/* page-contents
=============================== */
.page-heading {
  background-color: #ee7800;
  padding: 0 3.2em 0 2.8em;
}

@media screen and (max-width: 414px) {
  .page-heading {
    padding: 0 2.4em;
  }
}

.page-heading__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: 600px;
  width: 100%;
  max-width: 1344px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .page-heading__inner {
    height: 380px;
  }
}

@media screen and (max-width: 414px) {
  .page-heading__inner {
    height: 210px;
  }
}

.page-heading__content {
  padding-top: 5em;
  width: 100%;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 414px) {
  .page-heading__content {
    padding-top: 3em;
  }
}

.page-heading__title {
  color: #fff;
  display: block;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
}

@media screen and (max-width: 768px) {
  .page-heading__title {
    font-size: 3.2rem;
    line-height: 1;
  }
}

@media screen and (max-width: 414px) {
  .page-heading__title {
    font-size: 2.4rem;
  }
}

.page-heading__title:before {
  background-color: #fff;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: .7em;
  left: -100%;
  margin-left: -16px;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .page-heading__title:before {
    top: .5em;
    margin-left: -6px;
  }
}

.page-heading__title span {
  color: #bf0a0a;
  display: block;
  font-size: 6rem;
  font-family: "Lato", "Yu Gothic", YuGothic, -apple-system, BlinkMacSystemFont, Verdana, Meiryo, sans-serif;
}

@media screen and (max-width: 768px) {
  .page-heading__title span {
    font-size: 5rem;
  }
}

@media screen and (max-width: 414px) {
  .page-heading__title span {
    font-size: 3.2rem;
    padding-top: .2em;
  }
}

.page-heading__image {
  background-color: #f6f6f6;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 75%;
  height: 500px;
  position: absolute;
  right: 0;
  bottom: -90px;
  z-index: 2;
}

@media screen and (max-width: 1024px) {
  .page-heading__image {
    right: -3.2em;
    width: 85%;
  }
}

@media screen and (max-width: 768px) {
  .page-heading__image {
    height: 270px;
    right: -3.2em;
    bottom: -36px;
  }
}

@media screen and (max-width: 414px) {
  .page-heading__image {
    width: 95%;
    height: 158px;
    right: -2.4em;
    bottom: -42px;
  }
}

.page-contents {
  position: relative;
}
