@charset "utf-8";

/* A Modern CSS Reset */
*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role="list"],ol[role="list"]{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}

.wf-loading {
  opacity: 0;
}
.wf-active,
.wf-inactive {
  opacity: 1;
}

body {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
/*  font-feature-settings: "palt";*/
  line-height: 1.5;
  letter-spacing: 0.025em;
}
input, button, textarea {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-feature-settings: "palt";
  line-height: 2;
  letter-spacing: 0.025em;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
textarea {
  display: block;
  resize: vertical;
}
input::placeholder {
  color: #cccccc;
}

.main {
  position: relative;
  z-index: 1;
}
.wrapper {
  max-width: 480px;
  padding: 0 5.333333vw;
  margin: 0 auto;
}

@media (min-width: 375px)
{
  .wrapper {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (min-width: 768px)
{
  body {
    line-height: 2;
  }
  .wrapper {
    max-width: 1200px;
    padding-right: 3.125vw;
    padding-left: 3.125vw;
  }
  .main .wrapper {
    width: 84.375vw;
    max-width: 1080px;
  }
}

@media (min-width: 1280px)
{
  .wrapper {
    padding-right: 40px;
    padding-left: 40px;
  }
}





.header {
  background-color: #eae4d1;
}
.header-inner {
  display: flex;
  align-items: center;
  height: 70px; height: 18.666666vw;
  max-height: 70px;
  position: relative;
}
.header-logo {
  margin: 0;
  padding: 0;
  height: 56px; height: 14.933333vw;
  max-height: 56px;
}
.header-logo a {
  display: block;
  height: 100%;
}
.header-logo a img {
  height: 100%;
  width: auto;
}

.header-nav {
  width: 60%;
  min-width: 160px;
  max-width: 320px;
  padding: 8px;
	background: linear-gradient(135deg, transparent 8px, #000000 0) top left,
	linear-gradient(-135deg, transparent 8px, #000000 0) top right,
	linear-gradient(-45deg, transparent 8px, #000000 0) bottom right,
	linear-gradient(45deg, transparent 8px, #000000 0) bottom left;
	background-size: 50.5% 50.5%;
	background-repeat: no-repeat;
  position: fixed;
  top: 90px; top: 24vw;
  right: 20px; right: 5.333333vw;
}
.header-nav-list {
  list-style: none;
  margin: 0;
  padding: 2px 18px;
	background: linear-gradient(135deg, transparent 6px, #ffffff 0) top left,
	linear-gradient(-135deg, transparent 6px, #ffffff 0) top right,
	linear-gradient(-45deg, transparent 6px, #ffffff 0) bottom right,
	linear-gradient(45deg, transparent 6px, #ffffff 0) bottom left;
	background-size: 50.5% 50.5%;
	background-repeat: no-repeat;
}
.header-nav-list li {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.header-nav-list li+li {
  border-top: solid 2px rgba(0,0,0,1);
}
.header-nav-list li a {
  display: block;
  color: inherit;
  text-decoration: none;
  text-align: right;
  position: relative;
  padding: 10px 1px;
}

.nav-toggle {
  display: block;
  width: 9.6vw;
  max-width: 36px;
  height: 9.6vw;
  max-height: 36px;
  position: absolute;
  right: 5.333333vw;
}
.nav-toggle::before,
.nav-toggle::after,
.nav-toggle > span {
  content: "";
  display: block;
  width: 100%;
  height: 1.333vw;
  max-height: 5px;
  border-radius: 3px;
  background-color: #000;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transition: .2s;
  transition: .2s;
}
.nav-toggle::before {
  top: -5.333333vw;
}
.nav-toggle::after {
  bottom: -5.333333vw;
}

@media (min-width: 375px)
{
  .header-nav {
    top: 90px;
    right: 20px;
  }
  .nav-toggle {
    right: 20px;
  }
  .nav-toggle::before {
    top: -20px;
  }
  .nav-toggle::after {
    bottom: -20px;
  }
}

@media (max-width: 767px)
{
  .header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
  }
  .header-inner {
    max-width: 100%;
  }
  .header-nav {
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px);
    -webkit-transition: .2s;
    transition: .2s;
  }
  .nav-open .header-nav {
    opacity: 1;
    pointer-events: all;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .nav-open .nav-toggle::before {
    top: 0;
    transform: rotate(135deg);
  }
  .nav-open .nav-toggle::after {
    bottom: 0;
    transform: rotate(-135deg);
  }
  .nav-open .nav-toggle > span {
    opacity: 0;
  }
}

@media (min-width: 768px)
{
/*
  .header-inner {
    justify-content: space-between;
    height: auto;
    max-height: 100px;
    gap: 3.125vw;
    padding-top: 13px;
    padding-bottom: 13px;
  }
  .header-logo {
    height: auto;
    max-height: none;
    max-width: 254px;
    flex-basis: 254px;
  }
  .header-logo a img {
    height: auto;
    width: 100%;
  }

  .header-nav {
    flex-grow: 2;
    flex-basis: 468px;
    max-width: 468px;
    padding: 0;
    background: transparent;
    position: relative;
    top: auto;
    right: auto;
  }
  .header-nav-list {
    padding: 0;
    background: transparent;
    display: flex;
    justify-content: flex-end;
    border-right: solid 4px #000;
  }
  .header-nav-list li {
    width: 25%;
    flex-grow: 2;
    max-width: 116px;
    font-size: 14px;
    letter-spacing: inherit;
    font-weight: 400;
    border-left: solid 4px #000;
  }
  .header-nav-list li+li {
    border-top: none;
  }
  .header-nav-list li a {
    text-align: center;
    overflow: hidden;
    padding: 0 12px; padding: 0 0.9375vw;
  }
*/
  .header-inner {
    justify-content: space-between;
    height: auto;
    max-height: 100px;
    gap: 3.125vw;
    padding-top: 13px; padding-top: 1.015625vw;
    padding-bottom: 13px; padding-bottom: 1.015625vw;
  }
  .header-logo {
    height: auto;
    max-height: none;
    /*
    min-width: 192px;
    max-width: 254px;
    flex-basis: 19.84375vw;
    width: 19.84375vw;
    */
    min-width: 192px;
    max-width: 320px;
    flex-basis: 25vw;
    width: 25vw;
  }
  .header-logo a img {
    height: auto;
    width: 100%;
  }

  .header-nav {
    max-width: 468px;
    padding: 0;
    background: transparent;
    position: relative;
    top: auto;
    right: auto;
  }
  .header-nav-list {
    padding: 0;
    background: transparent;
    display: flex;
    justify-content: flex-end;
    border-right: solid 0.3125vw #000;
  }
  .header-nav-list li {
    width: 25%;
    max-width: 116px;
    font-size: 14px; font-size: 1.09375vw;
    letter-spacing: inherit;
    font-weight: 400;
    border-left: solid 0.3125vw #000;
  }
  .header-nav-list li+li {
    border-top: none;
  }
  .header-nav-list li a {
    text-align: center;
    overflow: hidden;
    padding: 0 12px; padding: 0 0.9375vw;
  }

  .nav-toggle {
    display: none;
  }
}

@media (min-width: 768px) AND (any-hover: hover)
{
  .header-nav-list li a::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px;
    border-top-width: 0;
    border-color: transparent transparent #000 transparent;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    opacity: 0;
    -webkit-transition: .2s;
    transition: .2s;
  }
  .header-nav-list li a:hover::before {
    opacity: 1;
  }
}

@media (min-width: 1280px)
{
  .header-inner {
    gap: 40px;
    padding-top: 13px;
    padding-bottom: 13px;
  }
  .header-logo {
    width: 320px;
  }
  .header-nav {
    width: 468px;
  }
  .header-nav-list {
    border-right-width: 4px;
  }
  .header-nav-list li {
    width: 116px;
    font-size: 14px;
    border-left-width: 4px;
  }
  .header-nav-list li a {
    padding-right: 12px;
    padding-left: 12px;
  }
}





.main {
  position: relative;
}
.lower .main {
  padding-top: 70px; padding-top: 18.666666vw;
}
.section-title {
  text-align: center;
  padding: 24px 0; padding-top: 6.4vw; padding-bottom: 6.4vw;
}
.section-title .ja,
.section-title .en {
  display: block;
}
.section-title .ja {
  font-family: "a-otf-ud-shin-go-pr6n", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 36px; font-size: 9.6vw;
  line-height: 1;
}
.section-title .en {
  font-family: "myriad-pro-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px; font-size: 4.266vw;
  letter-spacing: 0.15em;
  line-height: 1;
}

@media (min-width: 480px)
{
  .lower .main {
    padding-top: 90px;
  }
  .section-title {
    padding-top: 31px;
    padding-bottom: 31px;
  }
  .section-title .ja {
    font-size: 46px;
  }
  .section-title .en {
    font-size: 20px;
  }
}

@media (min-width: 768px)
{
  .lower .main {
    padding-top: 29.0625vw;
  }
  .lower .main::before {
    content: "";
    display: block;
    width: 100%;
    height: 23.4375vw;
    max-height: 300px;
    background-color: #000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .section-title {
    text-align: left;
    padding-top: 2.34375vw;
    padding-bottom: 2.34375vw;
  }
  .section-title .ja {
    font-size: 5.625vw;
  }
  .section-title .en {
    font-size: 2.5vw;
  }
}

@media (min-width: 768px) and (min-resolution: 96dpi)
{
  .lower .main::before {
    background-image: url(../img/common/bg-lower-header.jpg);
  }
}

@media (min-width: 768px) and (min-resolution: 192dpi)
{
  .lower .main::before {
    background-image: url(../img/common/bg-lower-header-2x.jpg);
  }
}

@media (min-width: 1280px)
{
  .lower .main {
    padding-top: 372px;
  }
  .lower .main::before {
    height: 300px;
  }

  .section-title {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .section-title .ja {
    font-size: 72px;
  }
  .section-title .en {
    font-size: 32px;
  }
}





.footer {
  background-color: #eae4d1;
  margin-top: 60px; margin-top: 16vw;
  position: relative;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 125px; padding-top: 33.333333vw;
}

#back-to-top {
  position: absolute;
  top: 32px; top: 8.533333vw;
  right: 20px; right: 5.333333vw;
  width: 32px; width: 8.533333vw;
  height: 52px; height: 13.866666vw;
}
#back-to-top-btn {
  position: relative;
  display: block;
  width: 32px; width: 8.533333vw;
  height: 32px; height: 8.533333vw;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}
#back-to-top-btn span {
  display: none;
}
#back-to-top-btn::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 13.5px 18px 13.5px; border-right-width: 3.6vw; border-bottom-width: 4.8vw; border-left-width: 3.6vw;
  border-color: transparent transparent #000 transparent;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
#back-to-top-btn.fixed {
  position: fixed;
  bottom: 5.533333vw;
  right: 5.333333vw;
}
#back-to-top-btn.active {
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
}

.footer-logo {
  width: 35.733333vw;
  max-width: 134px;
  margin: 0 auto;
}
.footer-logo-img {
  width: 100%;
  height: auto;
}
 
.footer-corp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px; gap: 8.533333vw;
  padding-top: 36px; padding-top: 9.6vw;
}
.footer-corp-row {
  height: 4.8vw;
  max-height: 18px;
}
.footer-corp-row:nth-child(1) {
  order: 2;
}
.footer-corp-row:nth-child(2) {
  order: 1;
}
.footer-corp-row:nth-child(3) {
  order: 3;
}
.footer-corp-row img {
  height: 100%;
  width: auto;
}

.footer-info {
  padding-top: 125px; padding-top: 33.333333vw;
  padding-bottom: 5px;
  font-size: 12px; font-size: 3.2vw;
  line-height: 1.5;
  text-align: center;
}

.copyright-container {
  background-color: #fff;
}
.copyright {
  display: block;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

@media (min-width: 375px)
{
  .footer-inner {
    padding-top: 125px;
  }
  .footer-corp {
    gap: 32px;
    padding-top: 36px;
  }
  .footer-info {
    padding-top: 125px;
    font-size: 12px;
  }
  .copyright {
    padding-top: 0.75em;
    padding-bottom: 0.75em;
  }
}

@media (min-width: 480px)
{
  .footer {
    margin-top: 77px;
  }

  #back-to-top {
    top: 41px;
    right: 25px;
    width: 41px;
    height: 66px;
  }
  #back-to-top-btn {
    width: 41px;
    height: 41px;
  }
  #back-to-top-btn::before {
    border-right-width: 17px;
    border-bottom-width: 23px;
    border-left-width: 17px;
  }
  #back-to-top-btn.fixed {
    bottom: 25px;
    right: 25px;
  }
}

@media (min-width: 768px)
{
  .footer {
    margin-top: 7.825vw;
  }
  .footer-inner {
    padding-top: 6.5625vw;
  }

  #back-to-top {
    top: 1.875vw;
    right: 2.734375vw;
    width: 2.5vw;
    height: 5.234375vw;
  }
  #back-to-top-btn {
    width: 2.5vw;
    height: 2.5vw;
  }
  #back-to-top-btn::before {
    border-right-width: 1.0546875vw;
    border-bottom-width: 1.40625vw;
    border-left-width: 1.0546875vw;
  }
  #back-to-top-btn.fixed {
    bottom: 2.734375vw;
    right: 2.734375vw;
  }

  .footer-logo {
    width: 10.46875vw;
    max-width: 134px;
  }
  .footer-corp {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.875vw 5vw;
    padding-top: 4.375vw;
  }
  .footer-corp-row {
    height: 1.875vw;
    max-height: 24px;
  }
  .footer-corp-row:nth-child(1) {
    order: 1;
  }
  .footer-corp-row:nth-child(2) {
    order: 2;
    margin-left: 1.5625vw;
  }
  .footer-info {
    padding-top: 2.1875vw;
    padding-bottom: 1.953125vw;
    font-size: 1.09375vw;
    line-height: inherit;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1em;
  }
  .copyright {
    padding-top: 0.25em;
    padding-bottom: 0.25em;
    font-size: 0.9375vw;
    line-height: inherit;
  }
}

@media (min-width: 1280px)
{
  .footer {
    margin-top: 100px;
  }
  .footer-inner {
    padding-top: 84px;
  }

  #back-to-top {
    top: 24px;
    right: 35px;
    width: 32px;
    height: 67px;
  }
  #back-to-top-btn {
    width: 32px;
    height: 32px;
  }
  #back-to-top-btn::before {
    border-right-width: 13.5px;
    border-bottom-width: 18px;
    border-left-width: 13.5px;
  }
  #back-to-top-btn.fixed {
    bottom: 35px;
    right: 35px;
  }

  .footer-logo {
    width: 134px;
  }
  .footer-corp {
    gap: 24px 64px;
    padding-top: 56px;
  }
  .footer-corp-row {
    height: 24px;
  }
  .footer-corp-row:nth-child(2) {
    margin-left: 20px;
  }
  .footer-info {
    padding-top: 28px;
    padding-bottom: 25px;
    font-size: 14px;
  }
  .copyright {
    font-size: 12px;
  }
}



.footer-supporter-info {
  width: 96%;
  max-width: 396px;
  margin-bottom: 30px; margin-bottom: min(8vw, 38px);
}
.footer-supporter-info-img {
  width: 100%;
  height: auto;
}

@media (min-width: 768px)
{
  .footer-supporter-info {
    width: 30vw;
    margin-bottom: min(3.90625vw, 50px);
  }
}
