@charset "UTF-8";
/*
 * Sass    : Dart sass
 * 命名規則 : RSCSSベース
 *   [接頭辞]
 *   .-****  : Variant
 *   ._****  : Helpers
 *   .c-**** : 汎用コンポーネント
 *   .l-**** : レイアウト
 *   .f-**** : フォーム系コンポーネント
 */
@import url("https://use.fontawesome.com/releases/v5.15.1/css/all.css");
/**************************************************/
/* helpers */
/**************************************************/
._disp-ib {
  display: inline-block !important;
}

@media (max-width: 1063px) {
  ._view-cw-high {
    display: none !important;
  }
}
@media (min-width: 1064px) {
  ._view-cw-low {
    display: none !important;
  }
}
@media (max-width: 1279px) {
  ._view-xl-high {
    display: none !important;
  }
}
@media (min-width: 1280px) {
  ._view-xl-low {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  ._view-lg-high {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  ._view-lg-low {
    display: none !important;
  }
}
@media (max-width: 767px) {
  ._view-md-high {
    display: none !important;
  }
}
@media (min-width: 768px) {
  ._view-md-low {
    display: none !important;
  }
}
@media (max-width: 479px) {
  ._view-sm-high {
    display: none !important;
  }
}
@media (min-width: 480px) {
  ._view-sm-low {
    display: none !important;
  }
}
._clearfix {
  zoom: 1;
}
._clearfix:after {
  content: "";
  display: block;
  clear: both;
  overflow: auto;
}

._center {
  text-align: center !important;
}

._left {
  text-align: left !important;
}

._right {
  text-align: right !important;
}

._float-l {
  float: left !important;
}

._float-r {
  float: right !important;
}

._clear {
  clear: both !important;
}

._hidden {
  display: none !important;
}

._disp-ib {
  display: inline-block !important;
}

._margin0 {
  margin: 0 !important;
}

._padding0 {
  padding: 0 !important;
}

._border0 {
  border: none !important;
}

._fixed {
  position: fixed !important;
}

._absolute {
  position: absolute !important;
}

._static {
  position: static !important;
}

._xsmall {
  font-size: 75% !important;
}

._small {
  font-size: 88% !important;
}

._large {
  font-size: 113% !important;
}

._xlarge {
  font-size: 133% !important;
}

._nowrap {
  white-space: nowrap !important;
}

._nobg {
  background: none !important;
}

._full {
  width: 100% !important;
}

/**************************************************/
/* base */
/**************************************************/
:root {
  font-size: min(16px, 1.5625vw);
}
@media (max-width: 767px) {
  :root {
    font-size: 4.2666666667vw;
  }
}

html {
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  min-width: 320px;
  padding: 0;
  font-size: 1rem;
  line-height: 1.5;
}
body.-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

input,
textarea {
  font-size: 16px;
}

input,
textarea,
select,
button {
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
}

button,
input[type=button],
input[type=submit] {
  transition: opacity 0.15s ease-out;
}
button:hover,
input[type=button]:hover,
input[type=submit]:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #0068ac;
  text-decoration: underline;
  transition: opacity 0.15s ease-out;
}
a:hover {
  opacity: 0.7;
}
a:hover {
  text-decoration: none;
}

em {
  font-style: normal;
}

a.-telink,
a.js-telink {
  cursor: default;
  opacity: 1 !important;
}

body._ios a:hover {
  opacity: 1;
}

/**************************************************/
/* pages */
/**************************************************/
/**************************************************/
/* Header */
/**************************************************/
.l-header {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background: #fff;
  box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.1);
  z-index: 100;
}
.l-header > .inner {
  box-sizing: border-box;
  position: relative;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
}
.l-header > .inner > .logo {
  margin: 0;
  color: #000;
  line-height: 0;
}
.l-header > .inner > .logo a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 767px) {
  .l-header {
    height: 3.5rem;
  }
  .l-header > .inner {
    padding: 0.9375rem 1.25rem;
  }
  .l-header > .inner > .logo a {
    width: 7.5rem;
    padding: 0;
  }
}

.l-header-hamburger {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0;
  cursor: pointer;
}
.l-header-hamburger > .bar {
  top: 50%;
  left: 50%;
  margin-top: -0.0625rem;
  margin-left: -0.75rem;
}
.l-header-hamburger > .bar, .l-header-hamburger > .bar::before, .l-header-hamburger > .bar::after {
  display: block;
  position: absolute;
  width: 1.5rem;
  height: 0.125rem;
  border-radius: 0.125rem;
  background: #000;
  content: "";
  transition: all 0.2s ease-out;
}
.l-header-hamburger > .bar::before {
  top: -0.5rem;
}
.l-header-hamburger > .bar::after {
  top: 0.5rem;
}
.l-header-hamburger.-open {
  background: #000;
}
.l-header-hamburger.-open > .bar {
  background-color: transparent;
}
.l-header-hamburger.-open > .bar::before {
  top: 0;
  background-color: #fff;
  transform: rotate(135deg);
}
.l-header-hamburger.-open > .bar::after {
  top: 0;
  background-color: #fff;
  transform: rotate(-135deg);
}
@media (max-width: 767px) {
  .l-header-hamburger {
    display: block;
  }
}

.l-globalnav {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  line-height: 1;
  height: 100%;
}
@media (max-width: 767px) {
  .l-globalnav {
    display: none;
  }
}

.l-globalnav-list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  height: 100%;
  margin: 0 auto;
}
.l-globalnav-list > li {
  position: relative;
  min-width: 6.25rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.l-globalnav-list > li > .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 100%;
  padding: 1em;
  color: inherit;
  text-decoration: none;
}
.l-globalnav-list > li > .btn:hover, .l-globalnav-list > li > .btn.-current {
  background: #000;
  color: #fff;
  opacity: 1;
}
.l-globalnav-list li.-reverse > .btn {
  background-color: #000;
  color: #fff;
}

.l-spnav {
  display: none;
  position: fixed;
  top: 56px;
  right: 0;
  width: 100%;
  height: calc(100% - 56px);
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}
.l-spnav > .container {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.l-spnav > .container::-webkit-scrollbar {
  display: none;
}
.l-spnav > .container {
  -webkit-overflow-scrolling: touch;
  max-height: 100%;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .l-spnav {
    display: none !important;
  }
}

.l-spnav-list {
  margin: 0 auto;
  padding-left: 0;
  list-style: none;
  background: #000;
  color: #fff;
}
.l-spnav-list > li {
  display: block;
}
.l-spnav-list > li:not(:last-child) {
  border-bottom: 1px solid #CCC;
}
.l-spnav-list > li > .btn {
  display: block;
  padding: 1.25rem 0.9375rem;
  color: inherit;
}

/**************************************************/
/* Footer */
/**************************************************/
.l-footer {
  position: relative;
  z-index: 5;
}
.l-footer > .copyright {
  margin: 0;
  padding: 1rem 1.25rem;
  background: var(--footer-background-color, #000);
  color: var(--footer-color, #fff);
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
}

/**************************************************/
/* contents */
/**************************************************/
body > .inbox {
  padding-top: 80px;
}
@media (max-width: 1023px) {
  body > .inbox {
    padding-top: 56px;
  }
}

.l-page-container {
  position: relative;
}

.l-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
.l-section.-fill {
  background-color: #EEE;
}

.l-page-contents {
  max-width: 632px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 0 1.25rem;
}

.l-breadcrumb {
  position: relative;
  background: #EEE;
}

.l-breadcrumb-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  max-width: 632px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  margin: 0 auto;
  padding: 0.625rem;
}
.l-breadcrumb-list > li {
  display: block;
  position: relative;
  padding: 0.5em;
  font-size: 0.75rem;
  line-height: 1;
}
.l-breadcrumb-list > li:not(:first-child) {
  margin-left: 1.5em;
  padding-left: 1.5em;
}
.l-breadcrumb-list > li:not(:first-child)::after {
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: -0.15em;
  margin-top: -0.5em;
  font-size: 1.3333333333em;
}
.l-breadcrumb-list > li a {
  display: block;
}
@media (max-width: 767px) {
  .l-breadcrumb-list {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
  }
  .l-breadcrumb-list > li {
    font-size: 0.625rem;
  }
  .l-breadcrumb-list > li:not(:first-child) {
    margin-left: 1em;
    padding-left: 1em;
  }
}

/**************************************************/
/* components */
/**************************************************/
/**************************************************/
/* components - basic */
/**************************************************/
.l-layout {
  display: flex;
}

.l-page-container {
  background: #AF915F url(../../images/bg-noise.webp) repeat-y center/100% auto;
  flex: 1;
  overflow-x: hidden;
}

.c-list-a {
  margin: 0.625rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
  list-style: none;
  padding-left: 2em;
  text-indent: -1em;
}
.c-list-a li::before {
  position: absolute;
  content: "●";
}
.c-list-a li + li {
  margin-top: 0.25rem;
}

.c-list-b {
  margin: 0.625rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
  list-style: none;
  padding-left: 2em;
  text-indent: -1em;
}
.c-list-b li::before {
  position: absolute;
  content: "・";
}
.c-list-b li + li {
  margin-top: 0.125rem;
}

/**************************************************/
/* components - form */
/**************************************************/
:root {
  --form-border-color: #ccc;
  --form-required-color: #E80000;
  --form-alert-color: #F00;
  --form-alert-bg-color: #FFF0F0;
  --form-btn-bg-color: #000;
  --form-btn-edit-color: #6F6F6F;
}

form label {
  cursor: pointer;
}
form textarea {
  line-height: 1.25;
  resize: vertical;
}

*:-moz-placeholder {
  color: #aaa;
}

*:placeholder-shown {
  color: #aaa;
}
*::-webkit-input-placeholder {
  color: #aaa;
}
*:-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
*::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
*:-ms-input-placeholder {
  color: #aaa;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}

:focus::-moz-placeholder {
  color: transparent;
}

.f-error-text {
  display: inline-block;
  position: relative;
  margin: 0.625rem 0 0;
  padding: 0.5em 1em;
  border-radius: 0.1875rem;
  background: var(--form-alert-bg-color);
  color: var(--form-alert-color);
  font-weight: 700;
}

.f-error-message {
  display: block;
  margin-bottom: 2.5rem;
  padding: 1em;
  background: var(--form-alert-bg-color);
  color: var(--form-alert-color);
  font-weight: 700;
}
.f-error-message > .error {
  display: block;
  margin: 0;
  background-color: transparent;
}

.f-field {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  padding: 0.625em 0.75em;
  border: 1px solid var(--form-border-color);
  border-radius: 0;
  line-height: 1.25em;
}

textarea.f-field {
  display: block;
  line-height: 1.25;
}

.f-checkbox {
  display: inline-block;
  cursor: pointer;
}
.f-checkbox > .intext {
  display: block;
  position: relative;
  padding: 0.125rem 0.125rem 0.125rem 1.75rem;
  font-size: 1rem;
  line-height: 1.5;
}
.f-checkbox > .intext::after {
  display: block;
  box-sizing: border-box;
  position: absolute;
  top: 0.25rem;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid var(--form-border-color);
  border-radius: 0;
  background: #fff no-repeat center/1.125rem 1.125rem;
  content: "";
}
.f-checkbox > input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.f-checkbox > input[type=checkbox]:checked ~ .intext::after {
  background-image: url(../img/icon-checkbox-checked.svg);
}

.f-radio {
  display: inline-block;
  cursor: pointer;
}
.f-radio > .intext {
  display: block;
  position: relative;
  padding: 0.125rem 0.125rem 0.125rem 1.75rem;
  font-size: 1rem;
  line-height: 1.5;
}
.f-radio > .intext::after {
  display: block;
  box-sizing: border-box;
  position: absolute;
  top: 0.25rem;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid var(--form-border-color);
  border-radius: 50%;
  background: #fff no-repeat center/1.125rem 1.125rem;
  content: "";
}
.f-radio > input[type=radio] {
  position: absolute;
  opacity: 0;
}
.f-radio > input[type=radio]:checked ~ .intext::after {
  background-image: url(../img/icon-checkbox-checked.svg);
}

.f-selectbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.f-selectbox::-ms-expand {
  display: none;
}
.f-selectbox {
  position: relative;
  padding: 0.625em 2.625em 0.625em 0.75em;
  border: 1px solid var(--form-border-color);
  border-radius: 0.25em;
  background: url(../img/icon-select.svg) no-repeat right 0.625em top 50%, linear-gradient(to bottom, #eee 0%, #ddd 100%) no-repeat right -1px top 50%, #fff;
  background-size: 0.75em 0.75em, 2em 100%;
  line-height: 1.25em;
}
.f-selectbox.-full {
  width: 100%;
}
.f-selectbox.-short {
  width: 100%;
  max-width: 8.75rem;
}
.f-selectbox.-middle {
  width: 100%;
  max-width: 15.625rem;
}
.f-selectbox.-long {
  width: 100%;
  max-width: 25rem;
}

.f-btn {
  border: none;
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  border-radius: 2px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 1em;
  background: var(--form-btn-bg-color);
  color: #fff;
  font-weight: 700;
}
.f-btn > .txt {
  display: inline-block;
  position: relative;
}

.f-input-form {
  margin: 1rem 0 0;
}
.f-input-form.-short {
  max-width: 8.75rem;
}
.f-input-form.-middle {
  max-width: 15rem;
}
.f-input-form.-long {
  max-width: 25rem;
}

.f-input-columns {
  list-style: none;
  margin: 1rem 0 0;
  padding-left: 0;
  line-height: 1.5;
}
.f-input-columns > li + li {
  padding-top: 0.5rem;
}

.f-input-rows {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 -0.5rem -1rem;
  line-height: 1.5;
}
.f-input-rows > li {
  display: block;
  box-sizing: border-box;
  margin: 0 0 0.5rem 1rem;
}
.f-input-units {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  align-items: center;
  margin: 1rem 0 -0.5rem -1rem;
  line-height: 1.5;
}
.f-input-units > .unit {
  display: block;
  box-sizing: border-box;
  margin: 0 0 0.5rem 1rem;
}
.f-input-units.-name {
  flex-wrap: nowrap;
  margin-left: -1rem;
}
.f-input-units.-name > .unit {
  width: calc(50% - 1rem);
  margin-left: 1rem;
}
.f-input-units.-zip {
  flex-wrap: nowrap;
  align-items: center;
  margin-left: -0.5rem;
}
.f-input-units.-zip > .unit {
  margin-left: 0.5rem;
}
.f-input-units.-zip > .unit:nth-child(2) {
  width: 6.25rem;
}
.f-input-units.-zip > .unit:nth-child(4) {
  width: 8.75rem;
}
.f-submit {
  max-width: 15rem;
  margin: 2.5rem auto 0;
}

.f-table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  margin: 0;
}
.f-table th, .f-table td {
  padding: 1.25rem 1em;
  border-bottom: 1px solid var(--form-alert-bg-color);
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  line-height: 2;
}
.f-table th > *:first-child, .f-table td > *:first-child {
  margin-top: 0 !important;
}
.f-table th {
  vertical-align: top;
  white-space: nowrap;
}
.f-table .required {
  display: block;
  position: relative;
  padding-right: 4.375rem;
}
.f-table .required::after {
  display: inline-block;
  content: "必須";
  position: absolute;
  top: 0.375rem;
  right: 0;
  padding: 0.25rem 1.5em;
  background: var(--form-required-color);
  font-size: 0.75em;
  color: #fff;
  line-height: 1;
  letter-spacing: 0;
  vertical-align: inherit;
}
.f-table.-confirm th {
  font-weight: 700;
}
@media (max-width: 1023px) {
  .f-table {
    display: block;
  }
  .f-table tbody, .f-table tr, .f-table th, .f-table td {
    display: block;
  }
  .f-table th, .f-table td {
    padding: 0;
    border-bottom: none;
    line-height: 1.75;
  }
  .f-table tr + tr {
    margin-top: 2rem;
  }
  .f-table th {
    width: auto;
  }
  .f-table td {
    margin-top: 0.5rem;
  }
  .f-table .required {
    padding-right: 0;
  }
  .f-table .required::after {
    position: relative;
    top: auto;
    margin-left: 1em;
    padding: 0.1875rem 1em;
  }
}

/**************************************************/
/* pages */
/**************************************************/
/**************************************************/
/* Home */
/**************************************************/
@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }
}

.main-section {
  background: #0B2E5D url(../../images/bg-image.webp) repeat-y top -1.875rem center/100% auto;
  border-radius: 0 0 50% 50%/0 0 40px 40px;
  padding: 0 0 3.75rem;
}

.notes {
  margin: 0.625rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
  list-style: none;
  padding-left: 1em;
  text-indent: -1em;
}

.nav {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  transition: transform 0.4s ease, opacity 0.4s ease;
  background-color: #0B2E5D;
}
.nav.is-ready, .nav.active {
  opacity: 1;
  visibility: visible;
}
.nav.active {
  transform: translateX(0);
}
.nav__box {
  margin: 0 auto;
  position: relative;
  background: url(../../images/bg-menu.webp) no-repeat top center/100% auto;
  height: 100%;
  text-align: center;
  padding: 3.75rem 0;
}
.nav__title {
  max-width: 10.625rem;
  width: 100%;
  margin: 0 auto;
}
.nav__lists {
  display: flex;
  justify-content: center;
  padding: 0;
  gap: 1.25rem;
  list-style: none;
  margin: 3.125rem auto 0;
}
.nav__lists li a img {
  width: 1.875rem;
}
.nav__list.-first a img {
  width: 3.75rem;
}
.nav__entry-button {
  display: block;
  max-width: 20rem;
  width: 100%;
  margin: 1.875rem auto 0;
}

.nav-active .l-page-container,
.nav-active .footer {
  filter: brightness(50%);
  background-color: rgba(22, 92, 186, 0.6);
  pointer-events: none;
  transition: filter 0.4s;
}

.header__btn,
.nav__close {
  display: block;
  position: absolute;
  content: "";
  cursor: pointer;
  background: none;
  border: 0;
}

.header__btn {
  top: 0;
  right: 0;
}
.header__btn img {
  width: 3.4375rem;
  height: auto;
}

.nav__close {
  top: 0.625rem;
  right: 1rem;
}
.nav__close img {
  width: 1.5rem;
  height: auto;
}

/**************************************************/
/* header */
/**************************************************/
.header {
  display: none;
}
@media (max-width: 767px) {
  .header {
    position: fixed;
    width: 100%;
    height: 3.125rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    box-sizing: border-box;
    z-index: 10;
  }
}

/**************************************************/
/* aside */
/**************************************************/
.aside {
  max-width: 25rem;
  width: 100%;
  position: sticky;
  left: 0;
  top: 0;
  height: 100vh;
  display: block;
  z-index: 1000;
  flex-shrink: 0;
  background-color: #0B2E5D;
  margin: 0 auto;
}
.aside__wrapper {
  background: url(../../images/bg-menu.webp) no-repeat top center/contain;
  height: 100%;
}
.aside__title {
  max-width: 10.625rem;
  width: 100%;
  padding-top: 3.75rem;
  margin: 0 auto;
}
.aside__list {
  display: flex;
  gap: 1rem;
  list-style: none;
  justify-content: center;
  margin-top: 3.125rem;
  padding: 0;
}
.aside__list li {
  width: 2.5rem;
}
.aside__list li:first-of-type {
  width: 4.375rem;
}
.aside__entry-button {
  display: block;
  max-width: 20rem;
  width: 100%;
  margin: 1.875rem auto 0;
}
@media (max-width: 767px) {
  .aside {
    display: none;
  }
}

/**************************************************/
/* top */
/**************************************************/
.hero-content {
  padding-top: 7.5rem;
}
.hero-content__image {
  max-width: 28.125rem;
  width: 100%;
  margin-inline: auto;
}
.hero-content__text {
  max-width: 15.375rem;
  width: 100%;
  margin-top: 4.375rem;
  margin-inline: auto;
}
.hero-content__text img {
  text-align: center;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .hero-content {
    padding-top: 5.625rem;
  }
  .hero-content__image {
    max-width: 13.75rem;
  }
  .hero-content__text {
    max-width: 7.5rem;
    margin-top: 2.875rem;
  }
}

.lead {
  margin-inline: auto;
  width: 100%;
}
.lead img {
  width: 100%;
  height: auto;
  display: block;
}
.lead01 {
  margin-top: 4.375rem;
  max-width: 35.875rem;
}
.lead02 {
  max-width: 26.125rem;
  margin-top: 3.75rem;
}
.lead03 {
  max-width: 29.5rem;
  margin-top: 3.125rem;
}
@media (max-width: 767px) {
  .lead {
    margin-top: 5.625rem;
    max-width: 20rem;
    text-align: center;
  }
  .lead01 {
    margin-top: 3.125rem;
  }
  .lead02, .lead03 {
    margin-top: 1.875rem;
  }
}

.concept {
  max-width: 39.375rem;
  width: 100%;
  margin-top: 4.375rem;
  margin-inline: auto;
  position: relative;
}
@media (max-width: 767px) {
  .concept {
    max-width: 20rem;
    margin-top: 2.8125rem;
  }
}

.schedule-title {
  margin-top: 5.625rem;
  max-width: 16.75rem;
  width: 100%;
}
@media (max-width: 767px) {
  .schedule-title {
    margin-top: 3.75rem;
    max-width: 11.875rem;
  }
}

.schedule-detail {
  margin-top: 1.5rem;
}
.schedule-detail__item {
  background: #AF915F url(../../images/bg-noise.webp);
  display: flex;
  border-radius: 0.5rem;
  padding: 0.3125rem;
  position: relative;
}
.schedule-detail__item + .schedule-detail__item {
  margin-top: 0.75rem;
}
.schedule-detail__item::before {
  position: absolute;
  content: "";
  background: url(../../images/arrow-down-red.svg) no-repeat center/contain;
  width: 2.125rem;
  height: 0.75rem;
  bottom: -0.75rem;
  left: 4.625rem;
}
.schedule-detail__item:last-of-type::before {
  background: none;
}
.schedule-detail__maintitle {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 11.375rem;
  width: 100%;
}
.schedule-detail__maintitle img {
  max-height: 1.5rem;
  height: 100%;
}
.schedule-detail__explanation {
  width: 100%;
}
.schedule-detail__title {
  margin: 0 auto;
  background: linear-gradient(rgba(175, 145, 95, 0.2), rgba(175, 145, 95, 0.2)), #fff;
  border-radius: 0 0.25rem 0 0;
  padding: 0.75rem 1rem;
  font-weight: bold;
  color: #0B2E5D;
  font-size: 1.3125rem;
  line-height: 1.6;
}
.schedule-detail__title span {
  color: #AF915F;
}
.schedule-detail__content {
  margin: 0.3125rem auto 0;
  background: #fff;
  border-radius: 0 0 0.25rem 0;
  padding: 0.75rem 1rem 0.375rem 1rem;
  font-weight: bold;
  color: #0B2E5D;
  font-size: 1.3125rem;
  line-height: 1.6;
}
.schedule-detail__content span {
  color: #AF915F;
}
.schedule-detail__content .goolemap {
  margin-left: 4rem;
  font-size: 0.875rem;
  vertical-align: 0.375rem;
}
.schedule-detail__content .goolemap a {
  color: #AF915F;
}
@media (max-width: 767px) {
  .schedule-detail {
    margin-top: 1.25rem;
  }
  .schedule-detail__item {
    flex-direction: column;
    border-radius: 0.25rem;
  }
  .schedule-detail__item::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .schedule-detail__maintitle {
    max-width: none;
    padding: 0.625rem 1rem;
    box-sizing: border-box;
  }
  .schedule-detail__maintitle img {
    max-height: 1.5rem;
    width: 100%;
  }
  .schedule-detail__title {
    padding: 0.625rem 1rem;
    font-size: 1rem;
  }
  .schedule-detail__content {
    padding: 0.625rem 1rem 0.375rem 1rem;
    font-size: 1rem;
  }
  .schedule-detail__content .goolemap {
    margin-left: 3rem;
  }
}

.entry-title {
  margin: 5.625rem 0 0;
  max-width: 19.5rem;
  width: 100%;
}
@media (max-width: 767px) {
  .entry-title {
    margin-top: 4.375rem;
    max-width: 13.75rem;
  }
}

.entry-box-main,
.entry-box {
  border-radius: 0.5rem;
  background-color: #fff;
  color: #0B2E5D;
}
.entry-box-main .entry-closed,
.entry-box .entry-closed {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #c81432;
  margin-bottom: 0.875rem;
  text-align: right;
  font-weight: bold;
}
.entry-box-main h3,
.entry-box h3 {
  background-color: #E8E8E8;
  padding: 0.25rem 1rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}
.entry-box-main h3:not(:first-of-type),
.entry-box h3:not(:first-of-type) {
  margin: 1.25rem 0 0;
}
.entry-box-main h4,
.entry-box h4 {
  padding: 0;
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
}
.entry-box-main p,
.entry-box p {
  margin: 0.625rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
}

.entry-box-main {
  padding: 0.875rem 1.875rem 1.875rem;
  margin-top: 0.875rem;
}
@media (max-width: 767px) {
  .entry-box-main {
    padding: 0.5rem 1rem 1rem;
  }
}

.entry-box-btn {
  margin-top: 1.5rem;
  border-radius: 0.5rem;
  background-color: #fff;
  width: 100%;
  text-align: left;
  padding: 1.375rem 1.875rem;
  cursor: pointer;
  position: relative;
}
.entry-box-btn::after {
  position: absolute;
  content: "";
  background: url(../../images/arrow-down.svg) no-repeat center/contain;
  width: 0.875rem;
  height: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  right: 1.875rem;
}
.entry-box-btn p {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  color: #0B2E5D;
}
@media (max-width: 767px) {
  .entry-box-btn {
    margin-top: 0.75rem;
    padding: 0.875rem 1rem;
  }
  .entry-box-btn::after {
    right: 1rem;
  }
}

.entry-box {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.4s;
}

.entry-box.is-open {
  max-height: 100%;
  opacity: 1;
  padding: 1.875rem;
}
@media (max-width: 767px) {
  .entry-box.is-open {
    padding: 1rem;
  }
}

.champion-archive {
  margin-top: 7.5rem;
  padding: 3.125rem 0;
  position: relative;
  z-index: 0;
}
.champion-archive__title {
  position: absolute;
  top: -4.625rem;
  left: -1.875rem;
}
.champion-archive__title img {
  max-width: 20.5rem;
  width: 100%;
}
.champion-archive__inner {
  display: flex;
  gap: 1.875rem;
  align-items: start;
}
.champion-archive__box {
  flex-shrink: 0;
}
.champion-archive__img {
  margin: 0;
}
.champion-archive__img img {
  max-width: 12.1875rem;
  width: 100%;
}
.champion-archive__name {
  margin: 1.25rem 0 0;
  text-align: center;
}
.champion-archive__name img {
  max-width: 8.4375rem;
  width: 100%;
}
.champion-archive__qa, .champion-archive__text {
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 500;
}
.champion-archive__qa {
  display: inline-block;
  background-color: #AF915F;
  color: #0B2E5D;
  margin: 0;
  padding: 0 0.625rem;
}
.champion-archive__qa:not(:first-of-type) {
  margin-top: 0.875rem;
}
.champion-archive__text {
  background-color: #0B2E5D;
  color: #fff;
  margin: 0;
  padding: 0.25rem 0.625rem;
}
.champion-archive::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  background: url(../../images/bg-champion2025.webp) no-repeat center top/contain;
  z-index: -1;
}
@media (max-width: 767px) {
  .champion-archive {
    margin-top: 6.25rem;
    padding: 3.125rem 0;
  }
  .champion-archive__title {
    top: -3.375rem;
  }
  .champion-archive__title img {
    max-width: 14.625rem;
  }
  .champion-archive__inner {
    flex-direction: column;
    gap: 1rem;
  }
  .champion-archive__box {
    display: flex;
    align-items: center;
    gap: 0.875rem;
  }
  .champion-archive__img img {
    max-width: 10.5rem;
  }
  .champion-archive__name {
    margin: 0;
  }
  .champion-archive__name img {
    max-width: 8.125rem;
  }
  .champion-archive__qa, .champion-archive__text {
    font-size: 0.875rem;
  }
  .champion-archive__qa {
    padding: 0 0.625rem;
  }
  .champion-archive::before {
    background: url(../../images/bg-champion2025-sp.webp) no-repeat center center/contain;
  }
}

.entry-button {
  margin: 4.375rem auto 0;
  display: block;
  max-width: 36.875rem;
}
@media (max-width: 767px) {
  .entry-button {
    margin: 2.5rem auto 0;
  }
}

.deadline {
  margin: 3.125rem auto 0;
  text-align: center;
  max-width: 22rem;
  width: 100%;
}
@media (max-width: 767px) {
  .deadline {
    margin: 1.25rem auto 0;
    max-width: 18.125rem;
  }
}

.movie {
  margin: 6.25rem auto 0;
}
.movie__title {
  max-width: 18.375rem;
  width: 100%;
}
.movie__text {
  margin: 2.875rem 0 0;
  max-width: 27.875rem;
  width: 100%;
}
.movie__view {
  margin: 6.25rem 0 0;
}
.movie__view p {
  margin: 0;
  max-width: 11.875rem;
  width: 100%;
}
.movie__view iframe {
  width: 100%;
  aspect-ratio: 16/9;
  box-sizing: border-box;
  margin: 1.25rem 0 0;
  border: 1px solid #fff;
}
@media (max-width: 767px) {
  .movie {
    margin: 4.375rem auto 0;
  }
  .movie__title {
    max-width: 13.125rem;
  }
  .movie__text {
    margin: 1.75rem 0 0;
  }
  .movie__view {
    margin: 3.75rem 0 0;
  }
  .movie__view p {
    max-width: 10.625rem;
  }
}

.gallery-top {
  margin: 3.125rem 0 0;
}
.gallery-top p {
  margin: 0;
  max-width: 6.875rem;
  width: 100%;
}
.gallery-top picture {
  margin: 1.25rem 0 0;
  display: block;
}
.gallery-top-button img {
  max-width: 13.75rem;
  width: 100%;
  margin: 2.5rem auto 0;
  display: block;
}
@media (max-width: 767px) {
  .gallery-top {
    margin: 2.5rem 0 0;
  }
  .gallery-top p {
    max-width: 6.25rem;
  }
  .gallery-top-button img {
    max-width: 11.25rem;
    margin: 1.875rem auto 0;
    text-align: center;
  }
}

/**************************************************/
/* curved */
/**************************************************/
.curved {
  background: #AF915F url(../../images/bg-noise.webp) repeat-y center/100% auto;
}
.curved__content {
  max-width: 35.5rem;
  width: 100%;
  margin: 0 auto;
}
.curved__sns {
  display: flex;
  list-style: none;
  justify-content: space-between;
  padding: 2.875rem 0;
  margin: 0;
  align-items: end;
}
.curved__news {
  max-width: 16.625rem;
  width: 100%;
}
.curved__insta {
  width: 2.875rem;
  height: 2.875rem;
}
@media (max-width: 767px) {
  .curved__content {
    max-width: none;
  }
  .curved__sns {
    padding: 1.875rem;
  }
  .curved__news {
    max-width: 11.25rem;
    width: 100%;
  }
  .curved__insta {
    width: 2rem;
    height: 2rem;
  }
}

/**************************************************/
/* footer */
/**************************************************/
.footer {
  padding: 3.125rem 5.625rem 1.875rem;
  background-color: #262626;
}
.footer__box {
  max-width: 87.5rem;
  width: 100%;
  margin: 0 auto;
}
.footer-logo__lists {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: start;
  margin: 0;
  padding: 0;
  gap: 12.5rem;
}
.footer-logo__lists p {
  margin: 0;
  display: flex;
  justify-content: center;
}
.footer-logo__lists li {
  text-align: center;
}
.footer-logo__association p img {
  max-width: 1.875rem;
  width: 100%;
}
.footer-logo__association a {
  margin-top: 1.375rem;
  display: block;
}
.footer-logo__association a img {
  max-width: 10.5rem;
  width: 100%;
}
.footer-logo__marugame p img {
  max-width: 1.875rem;
  width: 100%;
}
.footer-logo__marugame a {
  margin-top: 1.375rem;
  display: block;
}
.footer-logo__marugame a img {
  max-width: 7.8125rem;
  width: 100%;
}
.footer-contact {
  margin-top: 4.375rem;
  padding: 2.5rem 0 0;
  border-top: 2px dotted #707070;
  display: flex;
  gap: 2.5rem;
  justify-content: center;
}
.footer-contact__title {
  max-width: 7.5rem;
  width: 100%;
  margin: 0;
}
.footer-contact__box p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #fff;
  margin: 0;
}
.footer-contact__note {
  font-size: 0.875rem;
  list-style: none;
  color: #939393;
  padding: 0 0 0 1em;
  text-indent: -1em;
}
.footer-contact__note li + li {
  margin-top: 0.25rem;
}
.footer-contact__sns {
  display: flex;
  gap: 1.25rem;
  margin: 1.875rem 0 0;
}
.footer-contact__email, .footer-contact__insta {
  padding: 1rem;
  background-color: #414141;
  color: #B4B4B4;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  max-width: 15rem;
  width: 100%;
  gap: 0.625rem;
}
.footer-contact__email img, .footer-contact__insta img {
  width: 1.25rem;
  display: block;
  padding-top: 0.25rem;
}
@media (max-width: 767px) {
  .footer {
    padding: 2.5rem 1rem 1.875rem;
  }
  .footer__box {
    max-width: none;
  }
  .footer-logo__lists {
    flex-direction: column;
    align-items: center;
    gap: 2.625rem;
  }
  .footer-logo__association p img, .footer-logo__marugame p img {
    max-width: 1.875rem;
  }
  .footer-logo__association a, .footer-logo__marugame a {
    margin-top: 1.125rem;
  }
  .footer-contact {
    margin-top: 2.5rem;
    gap: 1.875rem;
    flex-direction: column;
  }
  .footer-contact__note li + li {
    margin-top: 0.25rem;
  }
  .footer-contact__sns {
    display: flex;
    gap: 0.625rem;
  }
  .footer-contact__email, .footer-contact__insta {
    padding: 0.875rem 0.375rem;
    font-size: 0.875rem;
    gap: 0.375rem;
  }
  .footer-contact__email img, .footer-contact__insta img {
    width: 1.125rem;
  }
}

.copyright {
  color: #B4B4B4;
  font-size: 0.875rem;
  margin: 5rem 0 0;
  text-align: center;
}
@media (max-width: 767px) {
  .copyright {
    margin: 2.5rem 0 0;
  }
}

/**************************************************/
/* gallery */
/**************************************************/
.gallery {
  padding: 5rem 0;
}
.gallery__title {
  margin: 0;
}
.gallery__title img {
  max-width: 13.5rem;
  width: 100%;
}
.gallery__box {
  margin: 0;
}
.gallery__head {
  background: #AF915F url(../../images/bg-noise.webp) repeat-y center/100% auto;
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 1rem;
  text-align: center;
  margin: 1.25rem 0 0;
}
.gallery__head img {
  max-height: 1.6875rem;
  width: 100%;
  height: 100%;
}
.gallery__head:not(.-first) {
  margin: 5.625rem 0 0;
}
.gallery__lists {
  display: grid;
  margin-top: 0.625rem;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.625rem;
}
@media (max-width: 767px) {
  .gallery__title img {
    max-width: 9.5rem;
  }
  .gallery__head {
    padding: 0.75rem;
    margin: 1.25rem 0 0;
  }
  .gallery__head img {
    max-height: 1.125rem;
    display: block;
  }
  .gallery__head:not(.-first) {
    margin: 5rem 0 0;
  }
  .gallery__lists {
    grid-template-columns: repeat(2, 1fr);
  }
}

.top-button {
  margin-top: 5rem;
  display: block;
}
.top-button img {
  display: block;
  margin: 0 auto;
  max-width: 9.5rem;
  width: 100%;
}
@media (max-width: 767px) {
  .top-button {
    margin-top: 2.875rem;
  }
  .top-button img {
    max-width: 7.875rem;
  }
}

/**************************************************/
/* luminous */
/**************************************************/
.lum-lightbox {
  z-index: 10000;
}
.lum-lightbox img {
  max-width: 45.625rem;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.lum-close-button {
  width: 2.625rem;
  height: 1.6875rem;
  top: 1.875rem;
  right: 1.875rem;
  background: url(../../images/btn-close-white.svg) no-repeat center center/contain;
  opacity: 1;
  cursor: pointer;
}
.lum-close-button::before {
  display: none;
}

.lum-previous-button {
  left: min(4%, 5.3125rem);
  background: url(../../images/arrow-icon-white-left.svg) no-repeat center center/contain;
}

.lum-next-button {
  right: min(4%, 5.3125rem);
  background: url(../../images/arrow-icon-white-right.svg) no-repeat center center/contain;
}

.lum-gallery-button {
  width: 3.5rem;
  height: 3.5rem;
}
@media (max-width: 767px) {
  .lum-gallery-button {
    width: 2.125rem;
    height: 2.125rem;
  }
}

.lum-close .lum-close-button::before,
.lum-close-button::after {
  display: none;
}

.lum-previous-button:after,
.lum-next-button:after {
  display: none;
}
/*# sourceMappingURL=site.css.map */