@charset "utf-8";
:root {
  --content-width: 1023px;
  --gutter: 20px;
  --nav-height: 56px;
  --pc-nav-height: 120px;
  --gothic-font: "Noto Sans JP", sans-serif;
  --sans-font: "Poppins", "Noto Sans JP", sans-serif;
  --default-font: var(--gothic-font);
  --primary-color: #01e369;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

dl,
dd {
  margin: 0;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: inherit;
  transition: 0.2s opacity;
}

a:hover {
  opacity: 0.7;
}

html {
  font-family: var(--default-font);
  font-size: 20px;
  touch-action: manipulation;
}

body {
  margin: 0;
  color: black;
  line-height: 1.75;
  letter-spacing: -0.03em;
}

body.safe {
  padding-top: var(--nav-height);
}

.for-pc {
  display: block;
}
.for-sp {
  display: none;
}
.pc-br {
  display: inline;
}
.sp-br {
  display: none;
}
@media (max-width: 1023px) {
  html {
    font-size: 15px;
  }
  .pc-br {
    display: none;
  }
  .sp-br {
    display: inline;
  }
  .for-pc {
    display: none;
  }
  .for-sp {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  body.safe {
    padding-top: var(--pc-nav-height);
  }
}

.visually-hidden {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.inner {
  max-width: var(--content-width);
  width: calc(100% - var(--gutter) * 2);
  margin-left: auto;
  margin-right: auto;
}

.global-header {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  height: var(--nav-height);
  width: 100%;
  transition: 0.6s background;
  z-index: 11;
}

.global-header .inner {
  display: flex;
  align-items: center;
}

.global-header .logo {
  width: 28.6vw;
}

.global-header .logo img {
  width: 100%;
  height: auto;
}

.global-header .contact {
  margin-left: auto;
  margin-right: 6.1vw;
}

.global-header .menu-btn {
  position: relative;
  width: 36px;
  height: 13.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  cursor: pointer;
}

.global-header .contact-menu {
  margin: 0 0 0 auto;
}

.global-header .menu-btn::before,
.global-header .menu-btn::after {
  transition: 0.6s all;
}

.global-header .menu-btn::before,
.global-header .menu-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #3a3838;
  transform-origin: 25% 25%;
}

@media screen and (min-width: 1023px) {
  .global-header {
    height: var(--pc-nav-height);
  }
  .global-header .logo {
    width: auto;
  }
  .global-header .contact {
    width: 50px;
    height: 50px;
    margin-right: 3vw;
  }

  .global-header .contact a img {
    width: 50px;
    height: 50px;
  }

  .global-header .menu-btn {
    margin: 0;
  }

  .global-header .contact-menu {
    margin: 0 0 0 auto;
  }

  .global-header .inner {
    max-width: none;
    margin: 0 45px;
  }
}

.global-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #c3c3c3;
  transition: opacity 0.6s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.global-nav .item {
  color: white;
  font-family: var(--sans-font);
  font-weight: 600;
  font-size: 66px;
  margin-bottom: 65px;
  line-height: 1;
}

.global-nav .item::before {
  content: "- ";
}

.global-nav .item:last-child {
  margin: 0;
}

.-open .global-header {
  background-color: #c3c3c3;
}

.-open .global-header .menu-btn::before {
  transform: rotate(45deg);
}

.-open .global-header .menu-btn::after {
  transform: rotate(-45deg);
}

.-open .global-nav {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1023px) {
  .global-nav .item {
    font-size: 22px;
    margin-bottom: 50px;
  }
}

.global-footer {
  background: black;
  color: white;
  padding: 0 60px;
}

.global-footer .footer-main {
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.global-footer .logo {
  display: block;
  width: auto;
}

.global-footer nav {
  flex: 1;
  font-family: var(--sans-font);
  font-weight: 500;
}

.global-footer nav .link {
  margin-left: 50px;
}

.global-footer nav .link::before {
  content: "-";
  margin-right: 0.5em;
}

.global-footer .footer-bottom {
  padding: 30px 0;
  border-top: 1px solid #888;
}

.global-footer .copyright {
  display: block;
  text-align: center;
  font-size: 16px;
  font-family: var(--sans-font);
  color: #888;
  line-height: 1;
}

@media (max-width: 1023px) {
  .global-footer {
    padding: 0 20px;
  }

  .global-footer .logo {
    height: 8px;
  }

  .global-footer nav .link {
    margin-left: 30px;
    font-size: 10px;
  }

  .global-footer .footer-main {
    padding: 40px 0;
  }

  .global-footer .footer-bottom {
    padding: 12px 0;
  }

  .global-footer .copyright {
    font-size: 10px;
  }
}

.cookie-popup {
  position: fixed;
  background-color: rgba(51, 51, 51, 0.9);
  bottom: 0;
  right: 3.1vw;
  max-width: 320px;
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 32px;
  /* padding-bottom: calc(32px + 9.3vw); */

  transform: translate(0, 100%);
  transition: transform 0.6s;
  visibility: hidden;
}

.cookie-popup.-open {
  transform: translate(0, 0);
  visibility: visible;
}

.cookie-popup .txt {
  color: white;
  font-size: 16px;
  font-family: var(--sans-font);
  font-weight: 600;
}

.cookie-popup .txt a {
  text-decoration: underline;
}

.cookie-popup .btn {
  color: white;
  width: 160px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
  border-radius: 40px;
  font-family: var(--sans-font);
  font-weight: bold;
  margin: 20px auto 0;
}

@media (max-width: 1023px) {
  .cookie-popup {
    left: 0;
    right: 0;
    margin: auto;
  }
}
