@charset "UTF-8";
/* CSS Document */
/* 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, 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;
}

/*** Media Query ***/
/****************************************************************
 *** Overwrite
 ****************************************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  letter-spacing: 0.15em;
}

html {
  font-feature-settings: "palt";
  font-size: 3.023255814vw;
  color: #F5F5F5;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
@media screen and (min-width: 961px) {
  html {
    font-size: min(0.8333333333vw, 16px);
  }
}

body {
  font: 600 1rem "Poppins", "Noto Sans JP", serif;
  overflow-x: hidden;
}
@media screen and (min-width: 961px) {
  body {
    font-size: max(14px, 1rem);
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.4s;
}
a:hover {
  opacity: 0.6;
}

img {
  display: block;
  width: 100%;
}

button {
  background: initial;
  border: initial;
  transition: 0.4s;
  cursor: pointer;
}
button:hover {
  opacity: 0.6;
}

/****************************************************************
 *** Common
 ****************************************************************/
@media screen and (max-width: 960px) {
  .pc-only {
    display: none !important;
  }
}
@media screen and (min-width: 961px) {
  .sp-only {
    display: none !important;
  }
}
.c-fs--small {
  font-size: 0.8em;
}

.c-fw--bold {
  font-weight: 700;
}

.c-flex {
  display: flex;
  gap: 3.0769230769rem;
}
@media screen and (max-width: 960px) {
  .c-flex {
    flex-direction: column;
  }
}
@media screen and (min-width: 961px) {
  .c-flex {
    gap: 7.1428571429%;
  }
}

.c-lead {
  font-size: 2.1538461538rem;
  line-height: 2.2;
}
@media screen and (min-width: 961px) {
  .c-lead {
    font-size: 3.75rem;
  }
}

.c-subtitle {
  margin-bottom: 1em;
  font-size: 2.3076923077rem;
  line-height: 1.5;
}
@media screen and (min-width: 961px) {
  .c-subtitle {
    font-size: 2.5rem;
    line-height: 2.175;
  }
}

.c-text {
  font-weight: 400;
  line-height: 2.3076923077;
}
@media screen and (min-width: 961px) {
  .c-text {
    line-height: 2.5;
  }
}
.c-text--right {
  text-align: right;
}
.c-text p {
  letter-spacing: inherit;
}
.c-text p + p {
  margin-top: 2em;
}

.c-link {
  display: flex;
  justify-content: right;
  align-items: center;
  margin-top: 2.5em;
  gap: 1em;
  position: relative;
  font-weight: 700;
  color: #CAA841;
}
.c-link:hover {
  transform: translateX(4px);
}
.c-link::before, .c-link::after {
  content: "";
  display: inline-block;
}
.c-link::before {
  order: 1;
  width: 4.0769230769em;
  aspect-ratio: 1;
  background: #CAA841;
  border-radius: 50%;
}
@media screen and (min-width: 961px) {
  .c-link::before {
    width: 3em;
    border-width: 2px;
  }
}
.c-link::after {
  position: absolute;
  top: 50%;
  right: 1.4em;
  bottom: unset;
  left: unset;
  z-index: 1;
  transform: translateY(-50%) rotate(90deg);
  width: 1em;
  aspect-ratio: 16/9;
  background: url(../img/ico_arrow.svg) no-repeat center;
  background-size: contain;
  transition: 0.4s;
}
@media screen and (min-width: 961px) {
  .c-link:not(.js-btn-toggle)::after {
    right: 1.1em;
    width: 0.8em;
  }
}
.c-link.js-btn-toggle:hover {
  transform: initial;
}
.c-link.js-btn-toggle::after {
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 960px) {
  .c-link.js-btn-toggle::after {
    right: 2em;
  }
}
@media screen and (min-width: 961px) {
  .c-link.js-btn-toggle::after {
    right: 1.45em;
  }
}
.c-link.js-btn-toggle.active::after {
  transform: translateY(-50%) rotate(0deg);
}

.c-img figcaption {
  display: block;
  margin-top: 0.5em;
  font-size: 0.7692307692rem;
  font-weight: 400;
  letter-spacing: 0;
}
@media screen and (min-width: 961px) {
  .c-img figcaption {
    font-size: max(14px, 0.75rem);
  }
}

.c-movie {
  aspect-ratio: 16/9;
}
.c-movie iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.c-btn {
  display: block;
  margin: auto;
  padding: 0.9em 3.65em;
  background: linear-gradient(to bottom, #CAA841, #A77934);
  border-radius: 3em;
  font-size: 1.5384615385rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #F5F5F5;
}
@media screen and (min-width: 961px) {
  .c-btn {
    font-size: 2rem;
  }
}
.c-btn.js-btn-toggle {
  position: relative;
  margin-top: 2.5em;
  font-size: 1.5em;
}
.c-btn.js-btn-toggle::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1.4em;
  bottom: unset;
  left: unset;
  z-index: 1;
  transform: translateY(-50%) rotate(180deg);
  width: 1em;
  aspect-ratio: 16/9;
  background: url(../img/ico_arrow.svg) no-repeat center;
  background-size: contain;
  transition: 0.4s;
}

/*** animation **/
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut, .fv::after {
  animation: fadeOut 1.5s ease-in-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUp {
  opacity: 0;
  animation: fadeUp 1s ease-in-out;
  animation-delay: 0.8s;
}
.fadeUp.animationend {
  opacity: 1;
}

.js-btn-toggle + * {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
.js-btn-toggle.active + * {
  max-height: auto;
}

/****************************************************************
 *** Base Layout
 ****************************************************************/
.site__header {
  position: fixed;
  top: 0;
  right: unset;
  bottom: unset;
  left: unset;
  z-index: 9999;
  width: 100%;
  padding: 0.7692307692rem;
  transition: 0.4s;
}
.site__header.is-hidden {
  transform: translateY(-100%);
}
.site__header.site__header.has-bg {
  background-color: #000;
}
@media screen and (min-width: 961px) {
  .site__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.875rem 2.5rem;
  }
}
.site__ttl {
  width: 11.5384615385rem;
}
@media screen and (min-width: 961px) {
  .site__ttl {
    width: 18.75rem;
  }
}
.site__container {
  background: #04223E;
}
.site__footer {
  text-align: center;
  font-weight: 500;
}
.site__footer * {
  letter-spacing: 0.05em;
}

/*** header ***/
.nav-toggle {
  position: absolute;
  top: 50%;
  right: 0.7692307692rem;
  bottom: unset;
  left: unset;
  transform: translateY(-50%);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 1.9230769231rem;
  height: 0.9230769231rem;
  padding: 0;
  background: transparent;
}
@media screen and (min-width: 961px) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle__bar {
  width: 100%;
  height: 0.0769230769rem;
  background: #F5F5F5;
  transition: inherit;
}
.nav-toggle__bar:nth-child(3) {
  width: 50%;
}
.nav-toggle.active .nav-toggle__bar {
  background: #CAA841;
}
.nav-toggle.active .nav-toggle__bar:nth-child(1) {
  transform: translateY(0.4230769231rem) rotate(40deg);
}
.nav-toggle.active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active .nav-toggle__bar:nth-child(3) {
  transform: translateY(-0.4230769231rem) rotate(-40deg);
  width: 100%;
}

@media screen and (max-width: 960px) {
  .site-nav {
    position: fixed;
    top: 0;
    right: -23.3846153846rem;
    bottom: unset;
    left: unset;
    z-index: 10000;
    width: 23.3846153846rem;
    height: 100vh;
    padding: 8.2307692308rem 2.5384615385rem;
    background: #F5F5F5;
    transition: 0.4s;
  }
  .site-nav.active {
    right: 0;
  }
}
.site-nav__list {
  display: flex;
  gap: 2.5em;
  font-size: 1.2307692308rem;
}
@media screen and (max-width: 960px) {
  .site-nav__list {
    flex-direction: column;
  }
}
@media screen and (min-width: 961px) {
  .site-nav__list {
    justify-content: space-between;
    align-items: center;
    gap: 2em;
    font-size: max(14px, 1.125rem);
  }
}
.site-nav__link {
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 960px) {
  .site-nav__link {
    color: #000;
  }
}
.site-nav__link:hover {
  color: #CAA841;
}
.site-nav .c-btn {
  width: 11.5em;
  padding-left: 0;
  padding-right: 0;
  background: transparent;
  border: 1px solid #F5F5F5;
  text-align: center;
  font-size: inherit;
}

/*** footer ***/
.footer__top {
  padding: 1.5384615385rem 0;
}
@media screen and (min-width: 961px) {
  .footer__top {
    padding: 2.5rem 0;
  }
}
.footer__bottom {
  padding: 1.4615384615rem 0 1.3846153846rem;
  border-top: 1px solid #F5F5F5;
}
@media screen and (min-width: 961px) {
  .footer__bottom {
    padding: 3.5rem 0 3.5rem;
  }
}

.copyright {
  font-size: 0.9230769231rem;
}
@media screen and (min-width: 961px) {
  .copyright {
    font-size: 1rem;
  }
}

#btnToTop {
  position: fixed;
  top: unset;
  right: 0;
  bottom: 0;
  left: unset;
  width: 4.2307692308rem;
  aspect-ratio: 1;
  background: #CAA841;
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}
@media screen and (min-width: 961px) {
  #btnToTop {
    width: 8.5rem;
  }
  #btnToTop path {
    stroke-width: 1;
  }
}
#btnToTop.fadeIn {
  opacity: 1;
  pointer-events: all;
}
#btnToTop.fadeIn:hover {
  opacity: 0.6;
}
#btnToTop svg {
  width: 40%;
}

.page__ttl {
  margin-bottom: 0.625em;
  font-size: 3.0769230769rem;
  letter-spacing: 0.05em;
  color: #CAA841;
  width: -moz-fit-content;
  width: fit-content;
  background: radial-gradient(circle at 50% 50%, #A77934 0%, #E0C44A 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.page__ttl-main {
  letter-spacing: inherit;
}
@media screen and (min-width: 961px) {
  .page__ttl {
    font-size: 4.375rem;
  }
}

.sec {
  position: relative;
  padding: 4.6153846154rem 0;
}
@media screen and (min-width: 961px) {
  .sec {
    padding: 5.625rem 0;
  }
}
.sec__inner {
  width: min(100%, 1920px);
  margin: auto;
  padding-left: 9.3023255814vw;
  padding-right: 9.3023255814vw;
}
@media screen and (min-width: 961px) {
  .sec__inner {
    padding-left: min(13.5416666667vw, 260px);
    padding-right: min(13.5416666667vw, 260px);
  }
}
.sec__head {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-bottom: 3.3333333333em;
  font-size: 0.9230769231rem;
}
@media screen and (min-width: 961px) {
  .sec__head {
    margin-bottom: 5em;
    font-size: 1.5rem;
  }
}
.sec__head::before {
  content: "";
  display: inline-block;
  width: 3.4166666667em;
  height: 0.0769230769rem;
  background: #CAA841;
}
@media screen and (min-width: 961px) {
  .sec__head::before {
    width: 4.875em;
    height: 1px;
  }
}
.sec__head--center {
  justify-content: center;
}
.sec__head--center::before {
  display: none;
}
.sec__subhead {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 1em;
  position: relative;
  letter-spacing: 0.05em;
  color: #CAA841;
}
@media screen and (min-width: 961px) {
  .sec__subhead {
    gap: 1.4583333333em;
    font-size: calc(1em + 3px);
  }
}
.sec__subhead::before, .sec__subhead::after {
  content: "";
  display: inline-block;
  aspect-ratio: 1;
}
.sec__subhead::before {
  width: 2.1666666667em;
  border: 0.0769230769rem solid #CAA841;
  border-radius: 50%;
}
@media screen and (min-width: 961px) {
  .sec__subhead::before {
    width: 1.875em;
    border-width: 1px;
  }
}
.sec__subhead::after {
  position: absolute;
  top: unset;
  right: unset;
  bottom: unset;
  left: 0.85em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.5em;
  background: #CAA841;
  border-radius: 50%;
}
@media screen and (min-width: 961px) {
  .sec__subhead::after {
    left: 0.75em;
    width: 0.4166666667em;
  }
}
.sec__ttl {
  margin-bottom: 0.625em;
  font-size: 3.0769230769rem;
  letter-spacing: 0.05em;
  color: #CAA841;
  margin-bottom: 0;
  text-align: center;
}
.sec__ttl-main {
  letter-spacing: inherit;
}
@media screen and (min-width: 961px) {
  .sec__ttl {
    font-size: 4.375rem;
  }
}
.sec__ttl-main {
  width: -moz-fit-content;
  width: fit-content;
  background: radial-gradient(circle at 50% 50%, #A77934 0%, #E0C44A 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 0;
}
@media screen and (min-width: 961px) {
  .sec__ttl-main {
    font-size: 2em;
  }
}
.sec__ttl-sub {
  display: block;
  font-size: 0.325em;
  color: #F5F5F5;
}
@media screen and (min-width: 961px) {
  .sec__ttl-sub {
    font-size: 0.3428571429em;
  }
}

.subsec + .subsec {
  margin-top: 6.9230769231rem;
}
@media screen and (min-width: 961px) {
  .subsec + .subsec {
    margin-top: 15rem;
  }
}
.subsec__ttl {
  margin-bottom: 0.625em;
  font-size: 3.0769230769rem;
  letter-spacing: 0.05em;
  color: #CAA841;
  width: -moz-fit-content;
  width: fit-content;
  background: radial-gradient(circle at 50% 50%, #A77934 0%, #E0C44A 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.subsec__ttl-main {
  letter-spacing: inherit;
}
@media screen and (min-width: 961px) {
  .subsec__ttl {
    font-size: 4.375rem;
  }
}
.subsec__ttl-main {
  font-weight: 700;
}
.subsec__ttl-sub {
  display: block;
  font-size: 0.325em;
}
@media screen and (min-width: 961px) {
  .subsec__ttl-sub {
    font-size: 0.3428571429em;
  }
}

/****************************************************************
 *** Content
 ****************************************************************/
/*** .home ***/
/* .fv */
.fv {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  aspect-ratio: 430/377;
  background: url(../img/bg_fv.jpg) no-repeat center bottom;
  background-size: cover;
}
@media screen and (min-width: 961px) {
  .fv {
    aspect-ratio: 1920/1080;
    background-image: url(../img/bg_fv-pc.jpg);
  }
}
.fv::after {
  position: absolute;
  top: 0;
  right: unset;
  bottom: unset;
  left: unset;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #0d1820;
}
.fv.animationend::after {
  display: none;
}
.fv__img {
  width: 77.6744186047%;
  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.66));
}
@media screen and (min-width: 961px) {
  .fv__img {
    width: min(55.5208333333%, 1066px);
  }
}

/* .about */
@media screen and (max-width: 960px) {
  .about {
    padding-bottom: 6.1538461538rem;
  }
}
@media screen and (min-width: 961px) {
  .about {
    padding-top: 9.375rem;
  }
  .about .sec__inner {
    padding-right: min(6rem, 209px);
  }
  .about .sec__head {
    margin-bottom: -1.5em;
  }
  .about .c-flex {
    align-items: center;
    gap: min(10.75rem, 172px);
  }
}
@media screen and (min-width: 961px) and (min-width: 961px) and (max-width: 1388px) {
  .about .c-flex {
    gap: max(30px, 4%);
  }
}
@media screen and (min-width: 961px) {
  .about .c-lead {
    width: 9.6em;
    padding-top: 1em;
    word-break: keep-all;
  }
}
.about .c-text {
  font-weight: 600;
}
@media screen and (max-width: 960px) {
  .about .c-text {
    font-size: 1.2307692308rem;
    line-height: 2.6153846154;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 961px) {
  .about .c-text {
    width: max(36em, 47.1428571429%);
    font-size: max(16px, 1rem);
    line-height: 2.7777777778;
  }
}
.about::after {
  content: "";
  display: block;
  position: relative;
  width: calc(100% - 9.3023255814vw);
  aspect-ratio: 780/772;
  background: url(../img/img_about.png) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 960px) {
  .about::after {
    top: 4.6153846154rem;
  }
}
@media screen and (min-width: 961px) {
  .about::after {
    width: calc(100% - min(13.5416666667vw, 260px));
    aspect-ratio: 3394/764;
    margin-top: 5.625rem;
    margin-left: auto;
    background-image: url(../img/img_about-pc.png);
  }
}

/* .news */
.news {
  line-height: 1.8333333333;
}
@media screen and (max-width: 960px) {
  .news {
    font-size: 0.9230769231em;
  }
}
@media screen and (min-width: 961px) {
  .news {
    line-height: 2.25;
  }
}
.news__date {
  display: block;
  margin-bottom: 1em;
  font-weight: 200;
}
@media screen and (min-width: 961px) {
  .news__date {
    font-size: max(11px, 1rem);
  }
}
.news__media {
  margin-left: 1em;
}
.news__list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.0769230769rem;
}
@media screen and (max-width: 960px) {
  .news__list {
    flex-direction: column;
  }
}
@media screen and (min-width: 961px) {
  .news__list {
    gap: 4.375rem 2.125rem;
  }
}
@media screen and (min-width: 961px) {
  .news__list-item {
    width: calc((100% - 4.25rem) / 3);
  }
}
.news__list__wrapper {
  display: flex;
  flex-direction: column-reverse;
}
.news__list__wrapper .active + .news__list {
  padding-top: 3.0769230769rem;
}
@media screen and (min-width: 961px) {
  .news__list__wrapper .active + .news__list {
    padding-top: 4.375rem;
  }
}
.news__thumbnail {
  overflow: hidden;
  aspect-ratio: 420/259;
}
.news__thumbnail-container {
  margin-bottom: 1.5384615385rem;
  padding: 0.6153846154rem 0.7692307692rem;
  border: 0.1538461538rem solid #F5F5F5;
}
@media screen and (min-width: 961px) {
  .news__thumbnail-container {
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    border-width: 2px;
  }
}
.news__thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
  transition: 0.4s;
}
.news__link:hover .news__thumbnail img {
  transform: scale(1.1);
}
.news .pickup {
  margin-bottom: 6rem;
  text-align: center;
}
@media screen and (min-width: 961px) {
  .news .pickup {
    margin-bottom: 10rem;
  }
}
.news .pickup__movie {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  aspect-ratio: 4/3;
  background: #000;
}
@media screen and (min-width: 961px) {
  .news .pickup__movie {
    width: 60%;
  }
}
.news .pickup__movie .c-movie {
  width: 100%;
}
.news .pickup__title {
  margin-top: 1.5em;
  font-size: 1.03rem;
}
@media screen and (max-width: 960px) {
  .news .pickup__title {
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 961px) {
  .news .pickup__title {
    margin-top: 2em;
    font-size: 1.5rem;
  }
}

/* .press-release */
.press-release {
  line-height: 1.8333333333;
}
@media screen and (max-width: 960px) {
  .press-release {
    font-size: 0.9230769231em;
  }
}
@media screen and (min-width: 961px) {
  .press-release {
    line-height: 2.25;
  }
}
.press-release__date {
  display: block;
  margin-bottom: 1em;
  font-weight: 200;
}
@media screen and (min-width: 961px) {
  .press-release__date {
    font-size: max(11px, 1rem);
  }
}
.press-release__media {
  margin-left: 1em;
}
.press-release__list-item + .press-release__list-item {
  border-top: 0.0769230769rem solid #F5F5F5;
}
@media screen and (max-width: 960px) {
  .press-release__list-item + .press-release__list-item .press-release__link {
    padding-top: 1.5384615385rem;
  }
}
@media screen and (min-width: 961px) {
  .press-release__list-item + .press-release__list-item .press-release__link {
    margin-top: 2.5rem;
  }
}
.press-release__link {
  position: relative;
  display: block;
  padding-bottom: 1.5384615385rem;
}
@media screen and (min-width: 961px) {
  .press-release__link {
    padding-right: 2em;
    padding-bottom: 2.5rem;
  }
}
.press-release__link::after {
  position: absolute;
  top: 50%;
  right: 0;
  bottom: unset;
  left: unset;
  transform: translateY(-50%) rotate(90deg);
  content: "";
  display: block;
  width: 1rem;
  aspect-ratio: 16/9;
  background: url(../img/ico_arrow.svg) no-repeat center;
  background-size: contain;
  transition: 0.4s;
}
@media screen and (max-width: 960px) {
  .press-release__link::after {
    display: none;
  }
}
.press-release__link:hover::after {
  transform: translateX(4px) translateY(-50%) rotate(90deg);
}

/* .mission */
.mission .sec__head {
  justify-content: space-between;
  gap: 2.0769230769rem;
}
@media screen and (min-width: 961px) {
  .mission .sec__head {
    gap: min(5.8854166667%, 113px);
  }
}
.mission .sec__head::before {
  width: 50%;
}
.mission .sec__head::after {
  content: "";
  display: inline-block;
  width: 50%;
  height: 0.0769230769rem;
  background: #CAA841;
}
@media screen and (min-width: 961px) {
  .mission .sec__head::after {
    height: 1px;
  }
}
@media screen and (min-width: 961px) {
  .mission .sec__ttl {
    gap: min(5.8854166667%, 113px);
    transform: translateY(0.125em);
  }
}
.mission .sec__ttl-main {
  position: relative;
  font-size: 1.45em;
}
@media screen and (min-width: 961px) {
  .mission .sec__ttl-main {
    font-size: 2.4571428571em;
  }
}
.mission .sec__ttl-main::after {
  position: absolute;
  top: -0.85em;
  right: unset;
  bottom: unset;
  left: 0;
  content: attr(data-text);
  color: #CAA841;
  transform: scaleY(-1);
  transform-origin: bottom;
  opacity: 0.1;
}
.mission .sec__ttl-sub {
  margin-top: -1em;
}
.mission__list-item {
  padding-bottom: 3.8461538462rem;
  border-bottom: 0.0769230769rem solid #F5F5F5;
}
@media screen and (min-width: 961px) {
  .mission__list-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 7.5rem;
    border-width: 1px;
  }
  .mission__list-item .c-text {
    width: 54.2857142857%;
  }
}
.mission__list-item .c-subtitle::before {
  display: block;
  font-size: 2.3333333333em;
  letter-spacing: 0;
  color: #CAA841;
}
@media screen and (min-width: 961px) {
  .mission__list-item .c-subtitle {
    font-size: 3.125rem;
    line-height: 1.7;
  }
  .mission__list-item .c-subtitle::before {
    margin-bottom: 0.25em;
    font-size: 2.8em;
    line-height: 1;
  }
}
.mission__list-item:nth-child(1) .c-subtitle::before {
  content: "01";
}
.mission__list-item:nth-child(2) .c-subtitle::before {
  content: "02";
}
.mission__list-item:nth-child(3) .c-subtitle::before {
  content: "03";
}
.mission__list-item:nth-child(4) .c-subtitle::before {
  content: "04";
}
.mission__list-item:nth-child(5) .c-subtitle::before {
  content: "05";
}
.mission__list-item + .mission__list-item {
  padding-top: 3.8461538462rem;
}
@media screen and (min-width: 961px) {
  .mission__list-item + .mission__list-item {
    padding-top: 8.125rem;
  }
}

/* .report */
.report {
  padding: 3.8461538462rem 1.5384615385rem 2.3076923077rem;
  border: 0.1538461538rem solid #F5F5F5;
}
@media screen and (min-width: 961px) {
  .report {
    padding: 7.5rem 6.2142857143% 7.5rem 5.0714285714%;
  }
}
.report__date {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 1em;
  padding: 0.1333333333em 0.5333333333em;
  background: #CAA841;
  font-size: 1.1538461538rem;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (min-width: 961px) {
  .report__date {
    margin: 0 0 1.5em;
    font-size: 1.375rem;
  }
}
.report .c-flex {
  gap: 2.0769230769rem;
}
@media screen and (min-width: 961px) {
  .report .c-flex {
    gap: 7.8904991948%;
  }
  .report .c-flex > div:first-child {
    width: 43.2367149758%;
  }
  .report .c-flex > div:last-child {
    width: 48.8727858293%;
  }
}
.report .c-subtitle {
  color: #CAA841;
}
@media screen and (max-width: 960px) {
  .report .c-subtitle {
    margin-bottom: 0.8em;
    text-align: center;
  }
}
.report .c-img + .c-img {
  margin-top: 1.8461538462rem;
}
@media screen and (min-width: 961px) {
  .report .c-img + .c-img {
    margin-top: 2.5rem;
  }
}

/* .sponsor */
.sponsor {
  padding: 2.3076923077rem 3.4615384615rem 3.8461538462rem;
  background: #fff;
}
@media screen and (min-width: 961px) {
  .sponsor {
    padding: 5.625rem 9.2857142857% 10.625rem;
  }
}
.sponsor .subsec__ttl {
  margin: 0 auto 1em;
  text-align: center;
}
@media screen and (min-width: 961px) {
  .sponsor .subsec__ttl {
    margin-bottom: 2em;
  }
}
.sponsor .subsec__ttl-sub {
  margin-top: 1em;
}
@media screen and (min-width: 961px) {
  .sponsor .subsec__ttl-sub {
    margin-top: 0.8em;
  }
}
.sponsor__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.3076923077rem 2.3076923077rem;
}
@media screen and (min-width: 961px) {
  .sponsor__list {
    gap: 7.625rem 5%;
  }
}
.sponsor__list-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: calc(50% - 1.1538461538rem);
}
@media screen and (min-width: 961px) {
  .sponsor__list-item {
    width: 30%;
  }
}
.sponsor__logo figcaption {
  position: absolute;
  top: unset;
  right: unset;
  bottom: -3.4em;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 0.3846153846rem;
  color: #000;
}
@media screen and (min-width: 961px) {
  .sponsor__logo figcaption {
    bottom: -3em;
    font-size: max(14px, 1rem);
  }
}

/* .representative */
@media screen and (min-width: 961px) {
  .representative {
    padding: 10.625rem 0;
  }
  .representative .c-flex {
    gap: 10.7142857143%;
  }
  .representative__text {
    width: 50%;
  }
  .representative-name {
    font-size: 1.5rem;
  }
}
.representative__img {
  width: 63.4285714286%;
}
@media screen and (min-width: 961px) {
  .representative__img {
    width: 39.2857142857%;
  }
}
.representative .c-subtitle {
  margin-bottom: 0.8em;
}
@media screen and (min-width: 961px) {
  .representative .c-subtitle {
    margin: -0.5em 0 1.8em;
  }
}

/* .contact */
.contact {
  text-align: center;
}
.contact__text01 {
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 960px) {
  .contact__text01 {
    line-height: 1.7692307692;
  }
}
.contact__text02 {
  font-weight: 500;
  line-height: 1.8461538462;
}
.contact__text02 a {
  text-decoration: underline;
}
.contact .sec__head {
  margin-bottom: 3.5em;
}
.contact .c-btn {
  margin-top: 3.0769230769rem;
  margin-bottom: 3.0769230769rem;
}
@media screen and (min-width: 961px) {
  .contact .c-btn {
    margin-top: 5.25rem;
    margin-bottom: 3.5625rem;
  }
}

/*** .sub ***/
.sub .page {
  padding: 6.9230769231rem 0;
}
@media screen and (min-width: 961px) {
  .sub .page {
    padding: 15.625rem 0;
  }
}
.sub .page__inner {
  width: min(100%, 1920px);
  margin: auto;
  padding-left: 9.3023255814vw;
  padding-right: 9.3023255814vw;
}
@media screen and (min-width: 961px) {
  .sub .page__inner {
    padding-left: min(13.5416666667vw, 260px);
    padding-right: min(13.5416666667vw, 260px);
  }
}
.sub * + .c-subtitle {
  margin-top: 2em;
}
.sub .c-text + .c-text {
  margin-top: 4em;
}

/* .privacy-policy */
dt {
  margin-bottom: 0.75em;
  font-size: 1.2em;
  font-weight: 700;
}
dd + dt {
  margin-top: 2em;
}

dd li {
  position: relative;
  padding-left: 1em;
}
dd li + li {
  margin-top: 0.5em;
}
dd li::before {
  content: "・";
  position: absolute;
  left: 0;
  display: block;
  width: 1em;
  aspect-ratio: 1;
}
dd li li::before {
  content: "-";
}/*# sourceMappingURL=style.css.map */