@charset "UTF-8";
/**
 * index.scss
 * このファイルではスタイリングしない
 * 他のSassファイルを呼び出してコンパイルさせるファイル
 */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

input, select {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
}
a:hover {
  opacity: 0.7;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
:after,
:before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

a,
button {
  outline: 0;
}

button {
  padding: 0;
  border: 0;
  background: 0 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

li,
ol,
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

dl,
p {
  margin: 0;
}

dl {
  padding: 0;
}

dd {
  margin: 0;
}

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

em {
  font-style: normal;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.header {
  z-index: 10;
  width: 100%;
  background-color: #fff;
}
.header .header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 767px) {
  .header .header_inner {
    padding: 10px 12px;
  }
}
.header .header_inner .header_logo-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header .header_inner .header_logo-container .header_logo {
  margin-right: 15px;
  width: 100px;
}
.header .header_inner .header_logo-container .header_logo-text {
  font-size: 15px;
}
@media (max-width: 767px) {
  .header .header_inner .header_logo-container {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header .header_inner .header_logo-container .header_logo-text {
    font-size: 10px;
    margin-bottom: 5px;
  }
}
.header .header_inner .header_link-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 33px;
}
.header .header_inner .header_link-container .header_text-link {
  font-size: 13px;
}

.header_button:hover,
.support > a:hover,
.secret-btn:hover,
.entry_submit:hover {
  opacity: 0.75;
}

.header_button {
  background-color: #ffe400;
  color: #333;
  padding: 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  gap: 5px;
}
@media (max-width: 767px) {
  .header_button {
    padding: 15px;
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .header_button {
    font-size: 10px;
    padding: 10px;
  }
}
.header_button img {
  height: inherit;
  width: 8%;
}
.header_button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 7px;
}

@media (max-width: 767px) {
  .header_logo-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

body {
  margin: auto;
  color: #333;
  line-height: 1.5;
  overflow-wrap: break-word;
  overscroll-behavior-y: none;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (max-width: 767px) {
  body {
    min-width: 0px;
  }
}

.main-content {
  overflow-x: hidden;
}

.content-inner {
  margin: auto;
  max-width: 1000px;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .content-inner {
    padding: 0;
    width: 100%;
  }
}

footer {
  background-color: #fff;
}

.footer_inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer_inner {
    padding: 30px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer_inner .footer_flex-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer_inner .footer_flex-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer_inner .footer_flex-container .footer_link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
@media (max-width: 767px) {
  .footer_inner .footer_flex-container .footer_link-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer_inner .footer_flex-container .footer_link-list li a {
  font-size: 12px;
  text-decoration: underline;
}
.footer_inner .footer_flex-container .footer_link-list li a:last-child {
  width: 46%;
}
.footer_inner .footer_flex-container .footer_copyright {
  font-size: 10px;
}
.footer_inner .footer_privacy {
  margin-left: auto;
  width: 70px;
}
@media (max-width: 767px) {
  .footer_inner .footer_privacy {
    -webkit-transform: translateY(-33%);
            transform: translateY(-33%);
    position: absolute;
    right: 5%;
  }
}

.header {
  background: #FFF;
  position: relative;
}
@media (max-width: 767px) {
  .header {
    position: sticky;
    top: 0;
  }
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-inner {
    max-width: 76.5625vw;
  }
}
@media (max-width: 767px) {
  .header-inner {
    padding: 2.0512820513vw 3.8461538462vw;
  }
}

.header-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-col {
    padding: 0.625vw 4.6875vw;
  }
}
@media (max-width: 767px) {
  .header-col {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .header-col:nth-child(1) {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.header-col:nth-child(1) span {
  font-size: 12px;
  color: #07080c;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-col:nth-child(1) span {
    font-size: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .header-col:nth-child(1) span {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 2.5641025641vw;
  }
}

.header-logo {
  width: 90px;
  height: auto;
  margin-right: 12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-logo {
    width: 7.03125vw;
    margin-right: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .header-logo {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 23.0769230769vw;
    margin-right: 0;
  }
}

.header-link {
  color: #000;
  font-size: 12px;
  font-weight: 500;
  text-decoration-line: underline;
  margin-right: 26px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-link {
    font-size: 0.9375vw;
    margin-right: 2.03125vw;
  }
}
@media (max-width: 767px) {
  .header-link {
    display: none;
  }
}

.header-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  background: #1E1F25;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.48px;
  line-height: 1;
  border-radius: 4px;
  width: 200px;
  height: 38px;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-btn {
    font-size: 1.25vw;
    width: 15.625vw;
    height: 2.96875vw;
  }
}
@media (max-width: 767px) {
  .header-btn {
    font-size: 3.5897435897vw;
    width: 39.2307692308vw;
    height: 10vw;
  }
}
.header-btn--darkbrawn {
  background-color: #503A27;
}

.is-pc {
  display: block !important;
}
@media (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

.is-sp {
  display: none !important;
}
@media (max-width: 767px) {
  .is-sp {
    display: block !important;
  }
}

.blue-bg {
  background-color: #0156A0;
}

.green-bg {
  background-color: #484848;
}

.blue {
  color: #0156A0;
}

.green {
  color: #484848;
}

.w4 {
  font-weight: 400;
}

.w5 {
  font-weight: 500;
}

.w6 {
  font-weight: 600;
}

.w7 {
  font-weight: 700;
}

.w8 {
  font-weight: 800;
}

/*
 * サイト共通部品 @Component
 * ボタン周り
 * 接頭辞「c-」を使用した方が分かりやすいが、
 * これまでの管理上、接頭辞なしで運用中
 */
.footer {
  padding-bottom: 32px;
  background-color: #fff;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer {
    padding-bottom: 2.5vw;
  }
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 9.3333333333vw;
  }
}

.footer-inner {
  max-width: 1080px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-inner {
    max-width: 84.375vw;
  }
}
@media (max-width: 767px) {
  .footer-inner {
    display: block;
    position: relative;
    width: 100%;
    padding: 8.5333333333vw 0;
  }
}

.footer-col:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 32px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-col:nth-child(1) {
    margin-top: 2.5vw;
  }
}
@media (max-width: 767px) {
  .footer-col:nth-child(1) {
    margin-top: 0;
    display: block;
  }
}

@media (max-width: 767px) {
  .footer-col:nth-child(2) {
    position: absolute;
    top: 4.2666666667vw;
    right: 6.4vw;
  }
}

.footer-logo {
  width: 128px;
  height: auto;
  display: inline-block;
  margin-right: 48px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-logo {
    width: 10vw;
    margin-right: 3.75vw;
  }
}
@media (max-width: 767px) {
  .footer-logo {
    width: 26.9333333333vw;
    display: block;
    margin: 0 auto 0 6.4vw;
  }
}

.footer-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-nav-list {
    gap: 1.875vw;
  }
}
@media (max-width: 767px) {
  .footer-nav-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4.2666666667vw 8vw;
    margin-top: 8vw;
  }
}

.footer-nav-item a {
  color: #07080C;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-nav-item a {
    font-size: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .footer-nav-item a {
    font-size: 3.2vw;
  }
}

.footer-icon-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-icon-list a img {
  width: 80px;
  height: auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-icon-list a img {
    width: 6.25vw;
  }
}
@media (max-width: 767px) {
  .footer-icon-list a img {
    width: 16vw;
  }
}

.footer-copyright {
  width: 100%;
  color: #666;
  font-size: 10px;
  font-weight: 500;
  display: inline-block;
  text-align: center;
  margin: 16px auto 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-copyright {
    font-size: 0.78125vw;
    margin: 1.25vw auto 0;
  }
}
@media (max-width: 767px) {
  .footer-copyright {
    display: block;
    text-align: center;
    font-size: 3.2vw;
    color: #666;
    padding: 1.0666666667vw;
    background-color: unset;
    margin-top: 0;
  }
}

.footer-privacymark {
  width: 72px;
  height: 72px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-privacymark {
    width: 5.625vw;
    height: 5.625vw;
  }
}
@media (max-width: 767px) {
  .footer-privacymark {
    width: 16vw;
    height: 16vw;
  }
}

body {
  overflow-wrap: unset !important;
  overscroll-behavior-y: unset !important;
}

:root {
  --color-gold: #B28D29;
  --color-gray: #31302F;
  --color-white: #fff;
  --width-base: 980px;
}
@media (max-width: 767px) {
  :root {
    --width-base: 100%;
  }
}

.is-pc {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

.is-strong {
  text-decoration-color: #D4C79F;
  text-decoration-line: underline;
  text-decoration-thickness: 12px;
  text-underline-offset: -4px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.is-vertical {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  margin-bottom: 4px;
  margin-right: 4px;
}

.is-font-large {
  font-size: 80px;
}
@media (max-width: 767px) {
  .is-font-large {
    font-size: 54px;
  }
}

.header-btn {
  background-color: #503A27;
  font-family: "Yu Mincho StdN B", sans-serif;
  padding: 0 14px 0 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 1280px) {
  .header-btn::after {
    background-image: url(/content_assets/59nu1/img/arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    content: "";
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 767px) {
  .header-btn {
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-contact {
  background-color: var(--color-white);
  border-radius: 6px;
  padding: 40px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-contact {
    width: calc(100vw - var(--padding-main-content) * 2);
    padding: 14px 4% 18px;
    gap: 12px;
  }
}
.p-contact .p-contact-heading {
  color: var(--color-gold);
  font-size: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .p-contact .p-contact-heading {
    font-size: 19px;
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-contact .p-contact-heading-label {
  font-size: 16px;
  padding: 4px 6px;
  background-color: var(--color-gold);
  color: var(--color-white);
  font-weight: normal;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-contact .p-contact-heading-label {
    font-size: 12px;
  }
}
.p-contact .p-contact-heading-title {
  line-height: 1;
}
@media (max-width: 767px) {
  .p-contact .p-contact-heading-title {
    margin-top: 10px;
  }
}
.p-contact .p-contact-text {
  font-size: 20px;
  color: var(--color-gray);
}
@media (max-width: 767px) {
  .p-contact .p-contact-text {
    font-size: 14px;
  }
}
.p-contact .p-contact-btn {
  --width-btn: 420px;
  margin-top: 10px;
  width: 100%;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, var(--width-btn));
}
@media (max-width: 767px) {
  .p-contact .p-contact-btn {
    --width-btn: 1fr;
    margin-top: 4px;
    gap: 5px;
  }
}
.p-contact .p-contact-btn-item {
  display: grid;
  border-radius: 6px;
  place-items: center;
  -webkit-box-shadow: rgba(149, 105, 70, 0.6) 0px 4px 12px;
          box-shadow: rgba(149, 105, 70, 0.6) 0px 4px 12px;
}
@media (max-width: 767px) {
  .p-contact .p-contact-btn-item {
    -webkit-box-shadow: 0px 2px 6px 0px rgba(149, 105, 70, 0.6);
            box-shadow: 0px 2px 6px 0px rgba(149, 105, 70, 0.6);
  }
}

main {
  overflow: unset !important;
  --padding-main-content: calc((100vw - var(--width-base)) / 2);
  --color-light-gray: #898989;
  font-family: "Yu Mincho StdN B", sans-serif;
}
@media (max-width: 767px) {
  main {
    --padding-main-content: 5%;
  }
}

.fade {
  -webkit-transition: none;
  transition: none;
  /* 他のトランジションが影響しないように設定 */
  will-change: transform, opacity;
  /* アニメーションのパフォーマンスを向上 */
}

.point-title {
  font-weight: normal;
  line-height: 1;
  width: 100%;
  border-bottom: 3px solid #C1C1C1;
  padding-bottom: 6px;
  text-align: center;
}
@media (max-width: 767px) {
  .point-title {
    padding-bottom: 3px;
    border-bottom: 1.5px solid #C1C1C1;
  }
}
.point-title__sub {
  position: relative;
  font-size: 20px;
  color: #A0A0A0;
}
@media (max-width: 767px) {
  .point-title__sub {
    font-size: 14px;
  }
}
.point-title__sub::after, .point-title__sub::before {
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 43%;
  height: 10.5px;
  border-top: 3px solid #C1C1C1;
  border-bottom: 1.5px solid #C1C1C1;
  position: absolute;
}
@media (max-width: 767px) {
  .point-title__sub::after, .point-title__sub::before {
    width: 35%;
    border-top: 1.5px solid #C1C1C1;
    border-bottom: 0.75px solid #C1C1C1;
    height: 5.25px;
  }
}
.point-title__sub::after {
  right: 0;
}
.point-title__main {
  border-bottom: 1.5px solid #C1C1C1;
  padding: 26px 0 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 32px;
  color: var(--color-gray);
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .point-title__main {
    border-bottom: 0.75px solid #C1C1C1;
    display: block;
    line-height: 1.5;
    font-size: 20px;
    padding: 12px 0 16px 0;
  }
}

.main-content {
  background: #F0F0F0;
}

.fv {
  position: relative;
}
.fv .fv-inner {
  background-image: url(/content_assets/59nu1/img/mv.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 584px;
  position: relative;
  padding: 58px var(--padding-main-content);
  height: 584px;
}
@media (max-width: 767px) {
  .fv .fv-inner {
    --height: calc(100vw * (336 / 375));
    height: var(--height);
    background-image: url(/content_assets/59nu1/img/mv_sp.webp);
    padding: 0 var(--padding-main-content);
    background-size: auto var(--height);
  }
}
.fv .fv-content {
  padding-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}
@media (max-width: 767px) {
  .fv .fv-content {
    padding-left: 0;
    gap: 16px;
  }
}
.fv .fv-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 447px;
}
.fv .fv-text {
  font-size: 22px;
}
@media (max-width: 767px) {
  .fv .fv-text {
    font-size: 16px;
  }
}
.fv .fv-contact {
  position: absolute;
  bottom: 40px;
  left: var(--padding-main-content);
}
@media (max-width: 767px) {
  .fv .fv-contact {
    bottom: 5%;
    left: 5%;
  }
}
.fv .fv-band {
  width: 100%;
  height: 80px;
  background: -webkit-gradient(linear, left top, right top, from(#636161), to(#272727));
  background: linear-gradient(90deg, #636161 0%, #272727 100%);
}
@media (max-width: 767px) {
  .fv .fv-band {
    height: 30.1333333333vw;
  }
}

.record {
  background: -webkit-gradient(linear, left top, right top, from(#F3F3F3), to(#C7C7C7));
  background: linear-gradient(90deg, #F3F3F3 0%, #C7C7C7 100%);
  padding: 45px var(--padding-main-content) 40px;
}
.record .record-article {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 767px) {
  .record .record-article {
    margin-top: 20px;
    gap: 10px;
    grid-template-columns: 1fr;
  }
}
.record .record-item {
  border-radius: 6px;
  background-color: var(--color-white);
  padding: 40px 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: normal;
  line-height: 1;
  position: relative;
  gap: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0px 6px 21px 0px rgba(52, 49, 44, 0.17);
          box-shadow: 0px 6px 21px 0px rgba(52, 49, 44, 0.17);
}
@media (max-width: 767px) {
  .record .record-item {
    width: 100%;
    padding: 20px 8%;
  }
}
.record .record-item__design {
  background: -webkit-gradient(linear, right top, left top, color-stop(16.09%, rgba(185, 148, 59, 0.9)), color-stop(53.47%, rgba(229, 198, 86, 0.9)), color-stop(90.84%, rgba(163, 129, 45, 0.9)));
  background: linear-gradient(270deg, rgba(185, 148, 59, 0.9) 16.09%, rgba(229, 198, 86, 0.9) 53.47%, rgba(163, 129, 45, 0.9) 90.84%);
  width: 120px;
  height: 30px;
  top: 18px;
  left: -30px;
  position: absolute;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}
@media (max-width: 767px) {
  .record .record-item__design {
    height: 20px;
    top: 10px;
  }
}
.record .record-item__title {
  font-size: 32px;
  width: 100%;
  color: var(--color-light-gray);
  padding-bottom: 16px;
  border-bottom: 1px solid #E1DCCD;
  text-align: center;
}
@media (max-width: 767px) {
  .record .record-item__title {
    font-size: 24px;
  }
}
.record .record-item__image {
  padding: 0 76px;
}
.record .record-item__text {
  line-height: 0.8;
  font-size: 36px;
  color: var(--color-gold);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.record .record-item__text .is-vertical {
  font-size: 18px;
}
@media (max-width: 767px) {
  .record .record-item__text {
    font-size: 24px;
  }
  .record .record-item__text small {
    font-size: 12px;
  }
}
.record .record-complement {
  text-align: right;
  margin-top: 10px;
  color: #909090;
  font-size: 10px;
}

.introduction {
  padding: 60px var(--padding-main-content) 90px;
  background: -webkit-gradient(linear, right top, left top, from(#F3F3F3), to(#C7C7C7));
  background: linear-gradient(270deg, #F3F3F3 0%, #C7C7C7 100%);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 767px) {
  .introduction {
    padding: 45px var(--padding-main-content) 40px;
  }
}
.introduction .introduction-item {
  margin-top: 40px;
  font-weight: normal;
  line-height: 1;
  background-color: var(--color-white);
  padding: 40px 90px;
  border-radius: 6px;
  width: 540px;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0px 6px 21px 0px rgba(52, 49, 44, 0.17);
          box-shadow: 0px 6px 21px 0px rgba(52, 49, 44, 0.17);
}
@media (max-width: 767px) {
  .introduction .introduction-item {
    margin-top: 20px;
    width: 100%;
    padding: 20px 8%;
  }
}
.introduction .introduction-item__design {
  background: -webkit-gradient(linear, right top, left top, color-stop(16.09%, rgba(185, 148, 59, 0.9)), color-stop(53.47%, rgba(229, 198, 86, 0.9)), color-stop(90.84%, rgba(163, 129, 45, 0.9)));
  background: linear-gradient(270deg, rgba(185, 148, 59, 0.9) 16.09%, rgba(229, 198, 86, 0.9) 53.47%, rgba(163, 129, 45, 0.9) 90.84%);
  width: 120px;
  height: 30px;
  top: 18px;
  left: -30px;
  position: absolute;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}
@media (max-width: 767px) {
  .introduction .introduction-item__design {
    height: 20px;
    top: 10px;
  }
}
.introduction .introduction-item__title {
  font-size: 32px;
  width: 100%;
  color: var(--color-light-gray);
  padding-bottom: 16px;
  border-bottom: 1px solid #E1DCCD;
  text-align: center;
}
@media (max-width: 767px) {
  .introduction .introduction-item__title {
    font-size: 24px;
  }
}
.introduction .introduction-item__image {
  padding: 4px 96px 0 57px;
}
.introduction .introduction-item__text {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  font-size: 36px;
  color: var(--color-gold);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  font-weight: bold;
}
.introduction .introduction-item__text-small {
  font-size: 26px;
}
.introduction .introduction-complement {
  text-align: right;
  margin-top: 10px;
  color: #909090;
  font-size: 10px;
}

.banner {
  background-image: url(/content_assets/59nu1/img/bg_gold.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 348px;
  position: relative;
  height: 348px;
}
@media (max-width: 767px) {
  .banner {
    background: none;
    height: 100%;
  }
}
.banner-visual {
  height: 406px;
  bottom: 0;
  -webkit-transform: translateX(-148%);
          transform: translateX(-148%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 50%;
}

.contact {
  padding: 80px var(--padding-main-content) 120px;
  background: -webkit-gradient(linear, left top, right top, from(#F3F3F3), to(#C7C7C7));
  background: linear-gradient(90deg, #F3F3F3 0%, #C7C7C7 100%);
}
@media (max-width: 767px) {
  .contact {
    padding: 40px var(--padding-main-content) 50px;
  }
}
@media (max-width: 767px) {
  .contact .p-contact {
    padding: 26px 5%;
    gap: 16px;
  }
  .contact .p-contact .p-contact-heading-label {
    font-size: 14px;
  }
  .contact .p-contact .p-contact-heading-title {
    font-size: 24px;
  }
  .contact .p-contact .p-contact-btn {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.example {
  padding: 80px 0;
  background: -webkit-gradient(linear, left top, right top, from(#636161), to(#353535));
  background: linear-gradient(90deg, #636161 0%, #353535 100%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example {
    padding: 6.25vw 0;
  }
}
@media (max-width: 767px) {
  .example {
    padding: 10.2564102564vw 0;
  }
}

.example-heading {
  color: var(--color-white);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-heading {
    font-size: 3.125vw;
  }
}
@media (max-width: 767px) {
  .example-heading {
    font-size: 6.1538461538vw;
  }
}

.example-slider {
  font-family: "Noto Sans JP";
  margin-top: 30px;
  margin-bottom: 0px !important;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider {
    margin-top: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .example-slider {
    margin-top: 5.1282051282vw;
    margin-bottom: 0 !important;
  }
}

.example-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.example-slider .slick-slide {
  height: auto !important;
}

.example-slider-col {
  width: 346px;
  margin: 0 12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col {
    width: 27.03125vw;
    margin: 0 0.9375vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col {
    width: 75.641025641vw;
    margin: 0 2.5641025641vw;
  }
}

.example-slider-col__income {
  border-radius: 3px;
  background: #3B3836;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 14px 20px 20px;
  height: 60px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__income {
    margin: 1.09375vw 1.5625vw 1.5625vw;
    height: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__income {
    margin: 2.8205128205vw 4.358974359vw 4.358974359vw;
    height: 13.0769230769vw;
  }
}

.example-slider-col__income-title {
  border-radius: 3px 0 0 3px;
  background: var(--color-gold);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}

.example-slider-col__income-title span {
  font-family: "Yu Gothic StdN E", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  padding: 0 7px;
  color: var(--color-white);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__income-title span {
    font-size: 1.25vw;
    padding: 0 0.546875vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__income-title span {
    font-size: 3.3333333333vw;
    padding: 0 1.2820512821vw;
  }
}

.example-slider-col__income-band {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.example-slider-col__income-omission {
  color: var(--color-white);
  font-family: "din-2014", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 30%;
  display: inline-block;
  margin-left: 3px;
  margin-right: 3px;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__income-omission {
    font-size: 2.03125vw;
    margin-left: 0.234375vw;
    margin-right: 0.234375vw;
    -webkit-transform: translateY(-0.390625vw);
            transform: translateY(-0.390625vw);
  }
}
@media (max-width: 767px) {
  .example-slider-col__income-omission {
    font-size: 5.641025641vw;
    margin-left: 0.7692307692vw;
    margin-right: 0.7692307692vw;
    -webkit-transform: translateY(-1.2820512821vw);
            transform: translateY(-1.2820512821vw);
  }
}

.example-slider-col__income-number {
  color: var(--color-white);
  font-family: "din-2014", sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__income-number {
    font-size: 3.4375vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__income-number {
    font-size: 9.6153846154vw;
  }
}

.example-slider-col__income-number small {
  font-size: 25px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__income-number small {
    font-size: 1.953125vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__income-number small {
    font-size: 5.3333333333vw;
  }
}

.example-slider-col__income-unit {
  font-family: "Yu Gothic StdN E", sans-serif;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__income-unit {
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__income-unit {
    font-size: 3.8461538462vw;
  }
}

.example-slider-col__company-name {
  color: var(--color-white);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.22px;
  width: 100%;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, right top, from(#A38225), to(#D0B141));
  background: linear-gradient(90deg, #A38225 0%, #D0B141 100%);
  border-radius: 4px 4px 0 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__company-name {
    height: 4.375vw;
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__company-name {
    height: 12.3076923077vw;
    font-size: 4.358974359vw;
  }
}

.example-slider-col__company-name small {
  font-size: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__company-name small {
    font-size: 1.25vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__company-name small {
    font-size: 4.1025641026vw;
  }
}

.example-slider-col__img-area {
  width: 100%;
}

.example-slider-col__img {
  width: 100%;
  height: auto;
}

.example-slider-col__bandle {
  background-color: #E2D19C;
  padding-bottom: 1px;
  border-radius: 0 0 4px 4px;
}

.example-slider-col__detail {
  padding: 20px 20px 0 20px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__detail {
    padding: 1.5625vw 1.5625vw 0 1.5625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__detail {
    padding: 4.358974359vw 4.358974359vw 0 4.358974359vw;
  }
}

.example-slider-col__detail-title {
  color: #1E1F25;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 16px;
  border-bottom: 1px solid #C6B285;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__detail-title {
    font-size: 1.71875vw;
    padding-bottom: 1.25vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__detail-title {
    font-size: 4.6153846154vw;
    padding-bottom: 3.3333333333vw;
  }
}
.example-slider-col__detail-title small {
  font-size: 16px;
}
@media (max-width: 767px) {
  .example-slider-col__detail-title small {
    font-size: 13px;
  }
}

.example-slider-col__detail-inner {
  padding-top: 14px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__detail-inner {
    padding-top: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__detail-inner {
    padding-top: 2.9487179487vw;
  }
}

.example-slider-col__detail-list-item {
  color: #1E1F25;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__detail-list-item {
    font-size: 1.171875vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__detail-list-item {
    font-size: 3.3333333333vw;
  }
}

.example-slider-col__detail-list-item::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("/content_assets/59nu1/img/check_icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
  vertical-align: -2px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__detail-list-item::before {
    width: 1.25vw;
    height: 1.25vw;
    margin-right: 0.390625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__detail-list-item::before {
    width: 3.3333333333vw;
    height: 3.3333333333vw;
    margin-right: 1.0256410256vw;
  }
}

.example-slider-col__detail-list-item + .example-slider-col__detail-list-item {
  margin-top: 6px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__detail-list-item + .example-slider-col__detail-list-item {
    margin-top: 0.46875vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__detail-list-item + .example-slider-col__detail-list-item {
    margin-top: 1.2820512821vw;
  }
}

.example-slider__notice {
  font-family: "Noto Sans JP";
  text-align: center;
  color: #717479;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  margin-top: 10px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider__notice {
    font-size: 0.78125vw;
    margin-top: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .example-slider__notice {
    font-size: 2.5641025641vw;
    margin-top: 2.5641025641vw;
  }
}

.example-slider-custom-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

.example-slider-custom-dots {
  position: relative;
  height: 4px;
  max-width: 240px;
  background-color: #252525;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  cursor: pointer;
  overflow: hidden;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-dots {
    max-width: 18.75vw;
    height: 0.3125vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-dots {
    max-width: 41.0256410256vw;
    height: 1.0256410256vw;
  }
}

.example-slider-custom-dots .example-slider-custom-dot-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--color-white);
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
  /* Reduce transition time */
}

.example-slider-custom-arrow {
  width: 44px;
  height: 44px;
  background-image: url("/content_assets/54dp2/img/example-slider-custom-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  position: relative;
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-arrow {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-arrow {
    width: 10.2564102564vw;
    height: 10.2564102564vw;
  }
}

.example-slider-custom-arrow:hover {
  opacity: 0.7;
}

.example-slider-custom-prev {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-right: 15px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-prev {
    margin-right: 1.171875vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-prev {
    margin-right: 3.8461538462vw;
  }
}

.example-slider-custom-next {
  margin-left: 15px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-next {
    margin-left: 1.171875vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-next {
    margin-left: 3.8461538462vw;
  }
}

.example-slider-custom-dots-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.example-slider-custom-dots-container .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: static;
}
@media (max-width: 767px) {
  .example-slider-custom-dots-container .slick-dots {
    -webkit-transform: translateY(-0.5128205128vw);
            transform: translateY(-0.5128205128vw);
  }
}

.example-slider-custom-dots-container .slick-dots li {
  width: 12px;
  height: 14px;
  margin: 0 5px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-dots-container .slick-dots li {
    width: 0.9375vw;
    height: 1.09375vw;
    margin: 0 0.390625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-dots-container .slick-dots li {
    width: 2.5641025641vw;
    height: 3.0769230769vw;
    margin: 0 1.2820512821vw;
  }
}

.example-slider-custom-dots-container .slick-dots li button {
  width: 12px;
  height: 14px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-dots-container .slick-dots li button {
    width: 0.9375vw;
    height: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-dots-container .slick-dots li button {
    width: 2.5641025641vw;
    height: 3.0769230769vw;
  }
}

.example-slider-custom-dots-container .slick-dots li button:before {
  width: 12px;
  height: 14px;
  font-size: 12px;
  color: #1E1F25;
  opacity: 0.3;
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-dots-container .slick-dots li button:before {
    width: 0.9375vw;
    height: 1.09375vw;
    font-size: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-dots-container .slick-dots li button:before {
    width: 2.5641025641vw;
    height: 3.0769230769vw;
    font-size: 2.5641025641vw;
  }
}

.example-slider-custom-dots-container .slick-dots li.slick-active button:before {
  color: #D9D9D9;
}/*# sourceMappingURL=index.css.map */