@charset "UTF-8";
/*--------------------------------------------------------------
	reset
---------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --vw: 1vw;
}
@media only screen and (max-width: 1024px) {
  :root {
    --vw: 1vw;
  }
}

/*
------------------------
用途：個別にhover要素付けたい時用
------------------------
例）
div {
    width:100px;
    height:100px;
    @include hover;
}
*/
/*
------------------------
用途：良く使うflexを1行に短縮
------------------------
例）
div {
    @include flex(b,w);
}
↑これは↓これを一行で書いた例
div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
input,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: baseline;
  font-size: 14px;
}

.tag sub {
  font-size: 10px;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol,
li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

button {
  color: #333;
}

img {
  vertical-align: bottom;
  border: none;
  width: 100%;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
  font-size: 14px;
}

.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  width: 100%;
  height: 100%;
}
.image-modal.active {
  display: block;
}
.image-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.image-modal__content {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(90%, 1100px);
  max-height: 90%;
  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;
  pointer-events: none;
}
.image-modal__image {
  max-width: 100%;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: initial;
}
.image-modal__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 1.875rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}
@media (max-width: 1290px) {
  .image-modal__close {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }
}
.image-modal__close:hover {
  opacity: 0.7;
}

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

html {
  background-color: #252525;
  font-size: 16px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", "ＭＳ ゴシック", "MS Gothic", "Noto Sans CJK JP", TakaoPGothic, sans-serif;
}
@media (max-width: 1290px) {
  html {
    font-size: 1.2403100775vw;
  }
}
@media (min-width: 1291px) and (max-width: 1920px) {
  html {
    font-size: 0.8333333333vw;
  }
}

body {
  font-family: "Hiragino UD Sans W3 JIS2004", "Noto Sans", sans-serif;
  position: relative;
  word-break: break-word;
  width: 100%;
  -moz-text-size-adjust: none;
   -ms-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 16px;
  color: #000;
}

.container {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  overflow: hidden;
  position: relative;
}
.container:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  border-left: 3.125rem solid #C0A733;
  border-right: 3.125rem solid #C0A733;
}
@media (max-width: 1290px) {
  .container:after {
    border-left: 2.125rem solid #C0A733;
    border-right: 2.125rem solid #C0A733;
  }
}

.pc {
  display: block;
}
@media only screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .sp {
    display: block;
  }
}

.header {
  background-color: #E60012;
  height: 6.25rem;
  width: 100%;
  position: fixed;
  z-index: 100;
}
@media (max-width: 1290px) {
  .header {
    height: 8.625rem;
  }
}
.header .header__logo {
  padding: 0 4.25rem;
}
@media (max-width: 1290px) {
  .header .header__logo {
    padding: 0.25rem 0.875rem;
  }
}
.header .header__logo--link {
  display: block;
  width: 10.75rem;
  line-height: 0;
}
@media (hover: hover) and (min-width: 768px) {
  .header .header__logo--link {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header .header__logo--link:hover {
    opacity: 0.7;
  }
}
@media (max-width: 1290px) {
  .header .header__logo--link {
    width: 14.25rem;
  }
}

.mainSection {
  position: relative;
  padding-top: 6.25rem;
}
@media (max-width: 1290px) {
  .mainSection {
    padding-top: 8.625rem;
  }
}

.footer {
  position: relative;
}
.footer__socials {
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5rem;
  padding: 1.5625rem 0 1.5625rem;
}
@media (max-width: 1290px) {
  .footer__socials {
    gap: 3.375rem;
    padding: 2.125rem 0 5.125rem;
  }
}
.footer__socials .social__link {
  width: 3.125rem;
  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;
}
@media (hover: hover) and (min-width: 768px) {
  .footer__socials .social__link {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .footer__socials .social__link:hover {
    opacity: 0.7;
  }
}
.footer__socials .social__link--x img {
  width: 92%;
}
@media (max-width: 1290px) {
  .footer__socials .social__link {
    width: 4.25rem;
  }
}

.bg-parallax {
  position: fixed;
  top: 6.25rem;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 1290px) {
  .bg-parallax {
    top: 8.625rem;
  }
}
@media screen and (max-width: 767px) {
  .bg-parallax {
    top: 8.625rem;
    bottom: auto;
    height: 100vh;
    height: 100lvh;
  }
}
.bg-parallax img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.keyvisual {
  position: relative;
  height: 53.75rem;
}
@media (max-width: 1290px) {
  .keyvisual {
    height: 50.3125rem;
  }
}
.keyvisual__title {
  width: 35.25rem;
  position: absolute;
  top: 4.375rem;
  left: 8.625rem;
  z-index: 1;
}
@media (max-width: 1290px) {
  .keyvisual__title {
    width: 29.75rem;
    top: 2.625rem;
    left: 5.125rem;
  }
}

.message {
  max-width: 120rem;
  margin: 0 auto;
}
.message__head {
  padding: 3.125rem 0 3rem;
  text-align: center;
  color: #fff;
}
@media (max-width: 1290px) {
  .message__head {
    padding: 2.125rem 0 2.625rem;
  }
}
.message__title {
  font-size: 5.25rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 1290px) {
  .message__title {
    font-size: 5.875rem;
  }
}
.message__text {
  margin-top: 0.9375rem;
  font-size: 2.25rem;
  line-height: 1.5;
  font-weight: bold;
}
@media (max-width: 1290px) {
  .message__text {
    margin-top: 1.125rem;
    font-size: 2.6875rem;
    line-height: 1.488372093;
  }
}
.message__box {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(12%, #c50018), to(#642520));
  background: linear-gradient(to bottom, #c50018 12%, #642520 100%);
  border: 0.625rem solid #C0A733;
  border-radius: 2.0625rem;
  padding: 0.875rem 1.25rem 0.625rem;
  margin: 2.1875rem auto 0;
  width: 83.125rem;
  text-align: center;
}
@media (max-width: 1290px) {
  .message__box {
    padding: 1.375rem 1.25rem 0.875rem;
    margin-top: 3.625rem;
    width: 68.75rem;
  }
}
.message__box--text {
  font-size: 1.75rem;
  line-height: 1.5714285714;
  letter-spacing: 0;
  font-weight: bold;
}
@media (max-width: 1290px) {
  .message__box--text {
    font-size: 2.375rem;
    line-height: 1.4210526316;
    white-space: nowrap;
  }
}
.message__box--items {
  margin-top: 0.875rem;
  max-width: 65rem;
  margin-inline: auto;
}
@media (max-width: 1290px) {
  .message__box--items {
    margin-top: 1.25rem;
    max-width: 36.5625rem;
  }
}
@media (min-width: 1291px) {
  .message__box--items .item {
    width: 27.125rem;
    margin-right: 10.75rem;
  }
}
@media (max-width: 1290px) {
  .message__box--items .item {
    margin-right: 1.25rem;
  }
}
.message__box--items .item__img {
  position: relative;
}
.message__box--items .item__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 0.1875rem solid #fff;
}
.message__box--items .item__text {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.6875rem;
}
.message__box--items .item__text span {
  display: block;
  margin-top: 0.5rem;
  font-size: 2.125rem;
}
@media (max-width: 1290px) {
  .message__box--items .item__text {
    margin-top: 1.25rem;
    font-size: 1.6875rem;
  }
  .message__box--items .item__text span {
    margin-top: 0.9375rem;
    font-size: 2.8125rem;
  }
}
.message__box--items .item__btn {
  margin-top: 0.75rem;
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 1290px) {
  .message__box--items .item__btn {
    margin-top: 1.25rem;
  }
}
.message__box--items .item__btn--btn {
  width: 19.4375rem;
  outline: revert;
  display: block;
  cursor: pointer;
}
@media (hover: hover) and (min-width: 768px) {
  .message__box--items .item__btn--btn {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .message__box--items .item__btn--btn:hover {
    opacity: 0.7;
  }
}
@media (max-width: 1290px) {
  .message__box--items .item__btn--btn {
    width: 17.625rem;
  }
}
.message__box--items .splide__arrow {
  border-radius: 0;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  background: none;
  width: auto;
  height: auto;
  top: calc(50% - 5rem);
}
@media (max-width: 1290px) {
  .message__box--items .splide__arrow {
    top: calc(50% - 6.25rem);
  }
}
.message__box--items .splide__arrow:before {
  content: "";
  background: #fff;
  width: 2.1875rem;
  height: 3.125rem;
  display: block;
}
.message__box--items .splide__arrow svg {
  display: none;
}
.message__box--items .splide__arrow:disabled {
  opacity: 0.6;
}
.message__box--items .splide__arrow--prev {
  left: -3.125rem;
}
.message__box--items .splide__arrow--prev:before {
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}
.message__box--items .splide__arrow--next {
  right: -3.125rem;
}
.message__box--items .splide__arrow--next:before {
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.message .update__date {
  text-align: right;
  font-size: 0.875rem;
  color: #fff;
}
@media (min-width: 1291px) {
  .message .update__date {
    padding: 2.1875rem 0 0;
    max-width: 82.625rem;
    margin-inline: auto;
  }
}
@media (max-width: 1290px) {
  .message .update__date {
    font-size: 1.875rem;
    padding: 2rem 4.375rem 0;
  }
}
.message__list {
  padding: 0 1rem 3.375rem 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 1291px) {
  .message__list {
    max-width: 82.625rem;
    margin-inline: auto;
    padding-inline: 0;
    gap: 0 1.75rem;
  }
}
@media (max-width: 1290px) {
  .message__list {
    padding: 0.9375rem 3.75rem 2.375rem;
  }
}
.message__list .card {
  background: url("../img/mess_card_bg4.png") no-repeat center top;
  background-size: 100%;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding: 2.1875rem 1.25rem 4.375rem 1.625rem;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #fff;
  aspect-ratio: 604/444;
}
@media (min-width: 1291px) {
  .message__list .card {
    width: 26.375rem;
  }
  .message__list .card:nth-child(n+4) {
    margin-top: 3.0625rem;
  }
}
@media (max-width: 1290px) {
  .message__list .card {
    width: 100%;
    padding: 5.625rem 2.5rem 11.875rem 6.25rem;
    font-size: 3rem;
  }
  .message__list .card:not(:last-child) {
    margin-bottom: 5rem;
  }
}
.message__list .card:after {
  content: "";
  position: absolute;
  bottom: 4.375rem;
  right: 1.0625rem;
  width: 3.25rem;
  aspect-ratio: 52/34;
  background: url("../img/message_label.png") no-repeat center center;
  background-size: 100%;
  pointer-events: none;
}
@media (max-width: 1290px) {
  .message__list .card:after {
    width: 15rem;
    bottom: 10.625rem;
    right: 4.375rem;
  }
}
.message__list .card__text {
  font-size: inherit;
  letter-spacing: 0;
}
@media (min-width: 1291px) {
  .message__list .card__group {
    font-size: 1.125rem;
  }
}
@media (max-width: 1290px) {
  .message__list .card__group {
    font-size: 2.25rem;
  }
}
.message__list .card__name {
  font-size: inherit;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0;
}
.message__list .card__date {
  font-size: inherit;
  line-height: 1;
  margin-top: 0.125rem;
}
.message__more {
  padding: 1.875rem 0 6.25rem;
  text-align: center;
}
@media (max-width: 1290px) {
  .message__more {
    padding: 1.25rem 0 6.25rem;
  }
}
.message__more--btn {
  background-color: #c60019;
  border: 0.4375rem solid #c0a733;
  border-radius: 3.4375rem;
  display: inline-block;
  vertical-align: top;
  width: 24.375rem;
  height: 5.375rem;
  font-size: 1.875rem;
  font-weight: bold;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  outline: revert;
  color: #fff;
}
@media (hover: hover) and (min-width: 768px) {
  .message__more--btn {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .message__more--btn:hover {
    opacity: 0.7;
  }
}
@media (max-width: 1290px) {
  .message__more--btn {
    width: 28.125rem;
    height: 6.25rem;
    font-size: 2.75rem;
  }
}

.minamino {
  background-color: #fff;
  padding: 4.375rem 0 2.875rem;
  position: relative;
  text-align: center;
}
@media (max-width: 1290px) {
  .minamino {
    padding: 4.0625rem 0 2.375rem;
  }
}
.minamino__title {
  font-size: 5rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: #c60019;
}
@media (max-width: 1290px) {
  .minamino__title {
    font-size: 4.625rem;
  }
}
.minamino__btn {
  margin-top: 2.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
@media (max-width: 1290px) {
  .minamino__btn {
    margin-top: 2.625rem;
    -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: 1.5625rem;
  }
}
.minamino__btn--link {
  width: 25.8125rem;
  display: block;
}
@media (hover: hover) and (min-width: 768px) {
  .minamino__btn--link {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .minamino__btn--link:hover {
    opacity: 0.7;
  }
}
@media (max-width: 1290px) {
  .minamino__btn--link {
    width: 50rem;
  }
}
.minamino__text {
  margin-top: 3.125rem;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #000;
}
@media (max-width: 1290px) {
  .minamino__text {
    margin-top: 1.125rem;
    font-size: 1.875rem;
  }
  .minamino__text .sp {
    display: block;
  }
}