@charset "UTF-8";
/*============================================================

    01 BASIC

============================================================*/
*,
*::before,
*::after {
  box-sizing: inherit;
}

* {
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
  font-feature-settings: normal;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  font-size: 62.5%;
}
@media screen and (max-width: 768px) {
  html {
    -webkit-tap-highlight-color: rgba(0, 156, 255, 0.4);
  }
}

body {
  min-width: var(--minW);
  font-family: var(--sans-serif);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--c-text);
  background-color: var(--bg);
}
@media screen and (max-width: 812px) {
  body {
    min-width: 0;
  }
}
@media screen and (max-width: 812px) {
  body {
    font-size: 1.4rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
}

ol, ul {
  list-style: none;
}

a {
  color: inherit;
  outline: none;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border-style: none;
  line-height: 0;
  vertical-align: top;
}

svg {
  width: 100%;
  height: auto;
  vertical-align: top;
}

img[src$=".svg"] {
  width: 100%;
}

/*
video {
  width: 100%;
  height: auto;
  vertical-align: top;
}
*/

input[type=text],
input[type=email],
input[type=tel],
input[type=submit],
textarea {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  outline: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

main {
  display: block;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup span {
  position: relative;
  font-size: 61%;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  overflow: visible; /* ie11 */
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
  vertical-align: top;
}

address {
  font-style: normal;
}

small {
  font-size: inherit;
}

:root {
  --space: 30px;
  --header: 70px;
  --spaceHead: 0px;
  --minW: 1160px;
  --rate: 0.75;
  --rate-s: 0.5;
  --rate-m: 0.66;
  --rate-l: 0.75;
  --c-text: #221813;
  --c-1st: #a5a2a1;
  --sans-serif: Helvetica, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}
@media screen and (max-width: 812px) {
  :root {
    --space: 15px;
    --header: 62px;
  }
}

/*============================================================

    02 COMMON

============================================================*/
.header {
  position: fixed;
  width: 100%;
  min-width: var(--minW);
  margin: 0 auto;
  height: var(--header);
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
}
@media screen and (max-width: 812px) {
  .header {
    min-width: 0;
    height: 62px;
  }
}
.header__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - var(--space) * 2);
  height: 100%;
  margin: 0 auto;
}
.header__logo {
  margin-left: auto;
  width: 70px;
  pointer-events: auto;
}
@media screen and (max-width: 1500px) {
  .header__logo {
    width: 70px;
  }
}
@media screen and (max-width: 812px) {
  .header__logo {
    width: 50px;
  }
}
.header__arrow {
  position: absolute;
  width: 56px;
  left: var(--space);
  top: 150px;
}
@media screen and (max-width: 1500px) {
  .header__arrow {
    width: 40px;
    left: calc(var(--space) / 2);
    top: calc(100% + 20px);
  }
}
@media screen and (max-width: 812px) {
  .header__arrow {
    width: 30px;
  }
}
@media screen and (max-width: 812px) and (max-height: 812px) {
  .header__arrow {
    width: 20px;
  }
}
.header__menu {
  position: absolute;
  display: grid;
  place-items: center;
  top: 0;
  left: 0;
  width: 30%;
  height: calc(var(--dvh, 1vh) * 100);
  max-width: 960px;
  background-color: rgba(255, 255, 255, 0.95);
  transform: translateX(-100%);
  pointer-events: auto;
  overflow: hidden;
  transition: all 900ms cubic-bezier(0.26, 1, 0.48, 1);
}
@media screen and (max-width: 812px) {
  .header__menu {
    width: 100%;
    max-width: 340px;
  }
}
.header__menu p {
  margin-bottom: 2em;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.005em;
}
@media screen and (max-width: 1500px) {
  .header__menu p {
    font-size: 3rem;
  }
}
@media screen and (max-width: 812px) {
  .header__menu p {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .header__menu p {
    font-size: 2rem;
  }
}
.nav-show .header__menu {
  transform: translateX(0);
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

/*--------------------------------
	メニュー
--------------------------------*/
.header .menu {
  padding: 175px 0;
}
@media screen and (max-width: 1500px) {
  .header .menu {
    padding: 100px 0;
  }
}
@media screen and (max-width: 812px) {
  .header .menu {
    padding: 56px 0;
  }
}
.header .menu .menu__1st a {
  display: block;
  margin-bottom: 1.8em;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  color: var(--c-text);
  word-break: keep-all;
}
@media (hover: hover) {
  .header .menu .menu__1st a {
    transition: all 300ms ease;
  }
  .header .menu .menu__1st a:hover {
    color: #a5a2a1;
  }
}
@media screen and (max-width: 1500px) {
  .header .menu .menu__1st a {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 812px) {
  .header .menu .menu__1st a {
    font-size: 1.6rem;
  }
}
.header .menu .menu__1st a span {
  display: block;
  margin-top: 0.5em;
  font-size: 1.6rem;
  line-height: 1;
}
@media screen and (max-width: 1500px) {
  .header .menu .menu__1st a span {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 812px) {
  .header .menu .menu__1st a span {
    font-size: 1rem;
  }
}

/* ==========================================================================

	Humberger Menu

========================================================================== */
.humberger-menu {
  position: relative;
  width: 86px;
  height: var(--header);
  pointer-events: auto;
  cursor: pointer;
}
@media screen and (max-width: 812px) {
  .humberger-menu {
    width: 32px;
  }
}
.humberger-menu > span:nth-child(1), .humberger-menu > span:nth-child(2), .humberger-menu > span:nth-child(3) {
  position: absolute;
  left: calc(50% - 43px);
  top: calc(50% - 15px);
  width: 86px;
  height: 30px;
  transition: transform 0.18s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media screen and (max-width: 1500px) {
  .humberger-menu > span:nth-child(1), .humberger-menu > span:nth-child(2), .humberger-menu > span:nth-child(3) {
    left: calc(50% - 32px);
    top: calc(50% - 11px);
    width: 64px;
    height: 22px;
  }
}
@media screen and (max-width: 812px) {
  .humberger-menu > span:nth-child(1), .humberger-menu > span:nth-child(2), .humberger-menu > span:nth-child(3) {
    left: calc(50% - 17px);
    top: calc(50% - 6px);
    width: 34px;
    height: 12px;
  }
}
.nav-show .humberger-menu > span:nth-child(1) {
  transform-origin: 50% 50%;
  transform: rotate(-20deg);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
}
.nav-show .humberger-menu > span:nth-child(2) {
  display: none;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
}
.nav-show .humberger-menu > span:nth-child(3) {
  transform-origin: 50% 50%;
  transform: rotate(20deg);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
}
.humberger-menu > span span {
  position: absolute;
  display: block;
  width: 66px;
  height: 1px;
  background-color: #000;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1500px) {
  .humberger-menu > span span {
    width: 64px;
  }
}
@media screen and (max-width: 812px) {
  .humberger-menu > span span {
    width: 34px;
  }
}
.humberger-menu > span:nth-child(1) span {
  top: 50%;
  transform: translate(-50%, -50%) translateY(-11px);
  transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}
@media screen and (max-width: 1500px) {
  .humberger-menu > span:nth-child(1) span {
    transform: translateX(-50%) translateY(-50%) translateY(-11px);
  }
}
@media screen and (max-width: 812px) {
  .humberger-menu > span:nth-child(1) span {
    transform: translateX(-50%) translateY(-50%) translateY(-6px);
  }
}
.humberger-menu > span:nth-child(2) span {
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1596s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}
.humberger-menu > span:nth-child(3) span {
  top: 50%;
  transform: translate(-50%, -50%) translateY(11px);
  transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}
@media screen and (max-width: 1500px) {
  .humberger-menu > span:nth-child(3) span {
    transform: translate(-50%, -50%) translateY(11px);
  }
}
@media screen and (max-width: 812px) {
  .humberger-menu > span:nth-child(3) span {
    transform: translate(-50%, -50%) translateY(6px);
  }
}
.nav-show .humberger-menu > span:nth-child(1) span, .nav-show .humberger-menu > span:nth-child(3) span {
  width: 76px;
  transform: translate(-50%, -50%);
  transition: all 0.18s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media screen and (max-width: 1500px) {
  .nav-show .humberger-menu > span:nth-child(1) span, .nav-show .humberger-menu > span:nth-child(3) span {
    width: 56px;
  }
}
@media screen and (max-width: 812px) {
  .nav-show .humberger-menu > span:nth-child(1) span, .nav-show .humberger-menu > span:nth-child(3) span {
    width: 30px;
  }
}

.footer {
  background: var(--c-1st);
  font-family: Helvetica, Arial, "Noto Sans JP", sans-serif;
}
.footer__body {
  position: relative;
  width: calc(100% - var(--space) * 2);
  margin: 0 auto;
  padding: 100px 0 70px;
  max-width: 1500px;
  color: #FFF;
}
@media screen and (max-width: 812px) {
  .footer__body {
    padding: 50px 0 35px;
  }
}
@media screen and (max-width: 480px) {
  .footer__body {
    padding: 30px 0 21px;
  }
}
.footer a {
  position: absolute;
  display: block;
  width: 70px;
  height: 70px;
  bottom: calc(100% + 20px);
  right: 0;
  background-color: #9d9d9d;
  border-radius: 10px 10px 0 0;
  background: #9d9d9d url(../images/icon-arrow.svg) 50% 50%/42.85714% no-repeat;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
@media screen and (max-width: 1500px) {
  .footer a {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 812px) {
  .footer a {
    width: 40px;
    height: 40px;
  }
}
#toTop {
	position: fixed;
	z-index: 1000;
	right: 30px;
	bottom: 30px;
	background: url(../../format/images/icon-arrow.svg) 50% 50%/42.85714% no-repeat;
	background-color: rgba(0,0,0,0.6);
}
#toTop:hover {
	background-color: rgba(0,0,0,1);
}
@media screen and (max-width: 812px) {
	#toTop {
		right: 10px;
		bottom: 10px;
	}
}
.footer__body > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.3em;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.005em;
}
@media screen and (max-width: 1500px) {
  .footer__body > div {
    font-size: 4rem;
  }
}
@media screen and (max-width: 812px) {
  .footer__body > div {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 480px) {
  .footer__body > div {
    font-size: 2rem;
  }
}
.footer__body > div figure {
  width: 300px;
  margin-bottom: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 1500px) {
  .footer__body > div figure {
    width: 204px;
  }
}
@media screen and (max-width: 480px) {
  .footer__body > div figure {
    width: 122px;
  }
}
.footer__body small {
  font-size: 1.6rem;
  font-weight: normal;
}
@media screen and (max-width: 1500px) {
  .footer__body small {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 812px) {
  .footer__body small {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 480px) {
  .footer__body small {
    font-size: 1rem;
  }
}

main {
  position: relative;
  padding-top: var(--header);
  background-color: #fff;
}