<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/******* common *******/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  font-weight: normal;
  font-family: "Noto Sans JP", serif;
}

/* Firefox */
* {
  scrollbar-width: none;
}

/* IE and Edge */
* {
  -ms-overflow-style: none;
}

/* Chrome, Safari, Opera */
::-webkit-scrollbar {
  display: none;
}

@font-face {
  font-family: "DIN Condensed";
  src: url("../font/DIN\ Condensed\ Bold.ttf");
}
ul,
ol {
  list-style: none;
}
a,
a:visited {
  color: inherit;
  text-decoration: none;
}
img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}
iframe {
  border: none;
}
.sp,
.pad {
  display: none;
}
.disable {
  pointer-events: none;
  opacity: 0.4;
}
.uniform2025 {
  background-color: #003a8f;
}
.inner {
  width: 1200px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}
.main_title {
  font-family: Neue;
  font-weight: 400;
  font-size: 80px;
  line-height: 72px;
  color: #fff;
  margin-bottom: 40px;
}

.btn_more {
  font-family: Neue;
  font-size: 22px;
  font-weight: 400;
  color: #b8995d;
  position: relative;
  width: fit-content;
}

.btn_more::after {
  content: "";
  display: block;
  background-color: currentColor;
  bottom: 0;
  height: 1.3px;
  left: 0;
  right: auto;
  width: 0;
  position: absolute;
  color: #f1f1f1;
}

.btn_more:hover::after {
  animation: underline 0.5s cubic-bezier(1, 0.61, 0.355, 0.215) forwards;
}

@keyframes underline {
  0% {
    width: 0;
    left: 0;
    right: auto;
  }
  45% {
    width: 100%;
    left: 0;
    right: auto;
  }
  55% {
    width: 100%;
    left: auto;
    right: 0;
  }
  100% {
    width: 0;
    left: auto;
    right: 0;
  }
}

.btn_more .gold_arrow_right {
  width: 22px;
  position: absolute;
  bottom: 17%;
  right: -25px;
  transition: right 0.5s ease;
}
.btn_more:hover .gold_arrow_right {
  right: -30px;
}

/*** 繧ｹ繝槭� 320px ~ 767px***/
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .inner {
    margin: 0 auto;
  }
}

.pc-only {
  display: flex !important;
}
.sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: flex !important;
  }
}

/* !news_header
---------------------------------------------------------- */
.news_header {
  background-color: #003a8f;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
}
.news_header .new {
  color: #ffe10d;
  font-family: "DIN Condensed";
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
}
.news_header_content {
  overflow: hidden;
}
.news_header .news_header_detail {
  display: flex;
  gap: 24px;
  width: fit-content;
  margin: 0 auto;
  padding-top: 8px;
}
.news_header .news_header_detail:hover .new_text {
  text-decoration: underline;
  color: #fff;
}
.news_header .new_text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}

@media screen and (max-width: 767px) {
  .news_header {
    height: 52px;
  }
  .news_header .new {
    font-size: 16px;
    line-height: 24px;
    padding-left: 20px;
  }
  .news_header .new_text {
    font-size: 12px;
    line-height: 20px;
    width: 78%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .news_header .news_header_detail {
    gap: 12px;
  }
}

/* !kv
---------------------------------------------------------- */
.kv {
  width: 100%;
}
.bar {
  position: relative;
  width: 100%;
  height: 5px;
  background: #fff;
  overflow: hidden;
}
.bar span {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background: #ffe10d;
  transform-origin: left center;
  transition-timing-function: linear;
}
.kv_slider {
  background-color: #003a8f;
}

/* !header
---------------------------------------------------------- */
.headerIn {
  opacity: 0;
  transition: opacity 0.8s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  padding: 8px 12px;
  background-color: #003a8f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  height: 75px;
}
.headerIn.show {
  opacity: 1;
  pointer-events: auto;
}
.header_logo {
  width: 62px;
}
.headerIn .nav_list {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-top: -4px;
}
.headerIn .nav_list .item a {
  color: #fff;
  text-align: center;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.headerIn .nav_list .item a p {
  font-family: "DIN Condensed";
  font-size: 22px;
  line-height: 100%;
  position: relative;
  z-index: 1;
  padding: 6px 4px 0;
}

.headerIn .nav_list .item a p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  display: block;
  width: 100%;
  height: 100%;
  background: #ffe10d;
  margin: auto;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  z-index: -1;
}
.headerIn .nav_list .item a:hover p {
  color: #003a8f;
}
.headerIn .nav_list .item a:hover p::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.headerIn .nav_list .item a span {
  font-family: "Noto Sans JP";
  font-size: 12px;
  line-height: 100%;
}
.headerIn .nav_list .item a:hover span {
  color: #ffe10d;
}
.headerIn .uniform_btn {
  color: #003a8f;
  text-align: center;
  font-feature-settings: "halt" on;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  background-color: #ffe10d;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 176px;
  height: 56px;
  position: relative;
}

/* 繝帙ヰ繝ｼ譎ゅ�繧｢繝九Γ繝ｼ繧ｷ繝ｧ繝ｳ */
.headerIn .uniform_btn:hover .border-top,
.headerIn .uniform_btn:hover .border-bottom {
  width: 100%;
}

.headerIn .uniform_btn:hover .border-right,
.headerIn .uniform_btn:hover .border-left {
  height: 100%;
}

.headerIn .uniform_btn:hover {
  background-color: #003a8f;
  color: #fff;
}

.headerIn .item_box {
  display: flex;
  align-items: center;
  gap: 36px;
}

.border-top {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ffe10d;
  transition: width 0.25s ease;
  transform: translateX(-50%);
}
.border-bottom {
  position: absolute;
  bottom: 0;
  right: 50%;
  width: 0;
  height: 2px;
  background-color: #ffe10d;
  transition: width 0.25s ease;
  transform: translateX(50%);
}
.border-right {
  position: absolute;
  top: 0; /* 荳顔ｫｯ縺九ｉ髢句ｧ� */
  right: 0;
  width: 2px;
  height: 0;
  background-color: #ffe10d;
  transition: height 0.25s ease 0.25s;
}
.border-left {
  position: absolute;
  bottom: 0; /* 荳狗ｫｯ縺九ｉ髢句ｧ� */
  left: 0;
  width: 2px;
  height: 0;
  background-color: #ffe10d;
  transition: height 0.25s ease 0.25s;
}

@media screen and (max-width: 767px) {
  .headerIn .header_logo {
    width: 65px;
    left: 20px;
    top: 25px;
    z-index: 999;
  }
  .headerIn .item_box {
    display: none;
  }
  .headerIn .header_logo {
    width: 48px;
  }
  .headerIn {
    padding: 6px 16px;
  }
  .headerIn .nav_list .item a {
    gap: 0;
  }
}

/* !navigation
---------------------------------------------------------- */
#navigation {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border-right: 2.5px solid #ffe10d;
  border-left: 2.5px solid #ffe10d;
}
#navigation .line_box {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#navigation .line_box .line_r {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #003a8f;
  width: 7.5px;
  height: 100%;
}
#navigation .line_box .line_l {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #003a8f;
  width: 7.5px;
  height: 100%;
}
#navigation.open {
  opacity: 1;
  z-index: 100;
  pointer-events: auto;
}
#navigation .menu_close_btn {
  position: absolute;
  width: 64px;
  top: 60px;
  right: 64px;
  z-index: 100;
  transition: opacity 0.4s;
}

#navigation .navigation_container {
  display: flex;
  width: 916px;
  max-width: calc(100% - 100px);
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translate(-50%, -50%);
  gap: 64px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  #navigation .navigation_container {
    display: grid;
    margin: 0 auto;
    gap: 25px;
    top: 50%;
  }
  #navigation .nav_list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    justify-content: center;
  }
  #navigation .menu_close_btn {
    width: 31px;
    top: 26px;
    right: 18px;
  }

  .headerIn .nav_list .item a p {
    color: #003a8f;
    text-align: center;
    font-family: "DIN Condensed";
    font-size: 36px;
    font-weight: 400;
    line-height: 100%;
  }
  .headerIn .nav_list .item a span {
    color: #003a8f;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
  }
}

/* !movie
---------------------------------------------------------- */
#movie {
  padding: 110px 0;
  background-color: #003a8f;
}

#movie .inner {
  position: relative;
  display: block;
  width: fit-content;
}

#movie .movie_box {
  aspect-ratio: 16 / 9;
  width: 1200px;
  max-width: 100%;
  position: relative;
  display: block;
}

#movie .movie_box .thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 譫�邱壹�繧ｳ繝ｳ繝�リ */
.border-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* 荳翫�譫�邱� */
#movie .border-top {
  height: 3px;
}
#movie .border-bottom {
  height: 3px;
}
#movie .border-right {
  width: 3px;
}
#movie .border-left {
  width: 3px;
}

#movie .inner:hover .border-top,
#movie .inner:hover .border-bottom {
  width: 100%;
}
#movie .inner:hover .border-right,
#movie .inner:hover .border-left {
  height: 100%;
}
#movie .movie_play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#movie .inner .movie_play {
  border-radius: 999px;
  width: 168px;
  height: 168px;
  background-color: #ffe10d;
  transition: 0.4s ease;
}
#movie .inner .movie_play img {
  margin-left: 6px;
  width: 34px;
  height: 41px;
}
#movie .inner:hover .movie_play {
  width: 188px;
  height: 188px;
}

.hide {
  display: none;
}
.fancybox-bg {
  background: rgba(0, 25, 62, 0.9) !important;
}
.fancyboxBox {
  max-width: 100vw;
  max-height: 100vh;
}
.fancyboxBox .fancyboxDisplay {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  height: 100vh;
  padding: 50px 0;
  width: 100vw !important;
  justify-content: center;
  overflow-y: hidden;
}
.fancyboxBox .content iframe {
  aspect-ratio: 16 / 9;
}
.fancybox-content {
  padding: 0 !important;
}
.fancybox-button svg {
  display: none;
}
.fancybox-slide--html {
  padding: 0 !important;
}
.fancyboxBox .content {
  width: 750px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}
.fancyboxBox .close {
  width: fit-content;
  margin-top: 24px auto 0;
}
.fancyboxBox .close a {
  border: 1px solid #fff;
  width: 144px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: ease 0.3s;
}
.fancyboxBox .close a:hover {
  opacity: 0.7;
}
.fancyboxBox .close span {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  display: block;
}
.fancyboxBox .close img {
  width: 10px;
  height: 10px;
}
.fancybox-content {
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  #movie {
    padding: 42px 0 8px;
  }
  #movie .inner {
    border: 2px solid #ffe10d;
  }
  #movie .movie_box {
    aspect-ratio: 342 / 241;
  }
  #movie .inner .movie_play {
    width: 76px;
    height: 76px;
  }
  #movie .inner:hover .movie_play {
    width: 76px;
    height: 76px;
  }
  #movie .inner .movie_play img {
    margin-left: 3px;
    width: 18px;
    height: 15px;
  }
}

/* !special uniform
---------------------------------------------------------- */
/* .uniform-sections-container {
  position: relative;
  height: 200vh;
  overflow: hidden;
  background-color: #fff;
} */
.special_uniform {
  display: flex;
  height: 100dvh;
  overflow: hidden;
  background-color: #003a8f;
  position: sticky;
  top: 0;
}
.left_img_box {
  width: 47%;
  height: 100%;
}
.left_img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pattern {
  width: 6%;
  height: 100%;
}
.right_box {
  height: 100%;
  width: 47%;
  background-color: #fff;
  padding: 0 72px;
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: relative;
}
.right_box .side_text,
#special_uniform_bottom .right_box .side_text {
  transform: rotate(90deg);
  color: #003a8f;
  font-family: "DIN Condensed";
  font-size: 26px;
  font-weight: 400;
  line-height: 150%;
  position: absolute;
  top: 50%;
  right: -25px;
}
.right_box .text_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78.7%;
}
.special_uniform .top_content img {
  width: 48px;
  margin-bottom: 24px;
}
.special_uniform .top_content h2 {
  color: #003a8f;
  font-family: "Noto Sans JP";
  font-size: 4.44vw;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 32px;
}
.special_uniform .top_content p {
  color: #003a8f;
  font-family: "Noto Sans JP";
  font-size: 1.39vw;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.8px;
}

#special_uniform_bottom {
  display: flex;
  position: relative;
  height: 100dvh;
}
#special_uniform_bottom .right_box {
  padding-top: 10%;
}
#special_uniform_bottom p {
  color: #003a8f;
  font-family: "Noto Sans JP";
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.8px;
  margin-bottom: 64px;
}
#special_uniform_bottom .right_box {
  background: linear-gradient(to right, #fff 92%, transparent 92%);
}

#special_uniform_bottom a {
  color: #003a8f;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 392px;
  max-width: 100%;
  height: 72px;
  flex-shrink: 0;
  background: #ffe10d;
  transition: 0.4s ease;
  position: relative;
}
#special_uniform_bottom a:hover {
  background-color: #003a8f;
  color: #fff;
}
/* 繝帙ヰ繝ｼ譎ゅ�繧｢繝九Γ繝ｼ繧ｷ繝ｧ繝ｳ */
#special_uniform_bottom a:hover .border-top,
#special_uniform_bottom a:hover .border-bottom {
  width: 100%;
}

#special_uniform_bottom a:hover .border-right,
#special_uniform_bottom a:hover .border-left {
  height: 100%;
}

#special_uniform_bottom a .arrow-container {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  right: -8%;
}
#special_uniform_bottom a .arrow.arrow-default,
#special_uniform_bottom a .arrow.arrow-hover {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(80%);
  transition: transform 0.4s, opacity 0.3s;
}
#special_uniform_bottom a .arrow.arrow-default {
  opacity: 1;
  transform: translate(-50%, -50%);
}
#special_uniform_bottom a .arrow.arrow-hover {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(80%);
}
#special_uniform_bottom a:hover .arrow.arrow-default {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(-80%);
}
#special_uniform_bottom a:hover .arrow.arrow-hover {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

@media screen and (min-width: 1580px) {
  #special_uniform_bottom p {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .special_uniform {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100dvh;
    padding-top: 0;
    padding-top: 56px;
    position: sticky;
    top: 0;
  }
  .pattern_img {
    width: 32px;
    height: auto;
  }
  .special_uniform_content {
    position: relative;
    z-index: 2;
    background: #fff;
    min-height: 100dvh;
    overflow: hidden;
  }

  .bottom_card .text_box {
    /* min-height: 100vh; */
    padding: 72px 16px 16px;
    margin-bottom: 80px;
  }
  .top_card .text_box {
    padding: 16px;
    margin-bottom: 80px;
  }
  .top_card .text_box {
    margin-top: 24px;
  }
  .top_card,
  .bottom_card {
    display: flex;
    background-color: #fff;
  }
  .bottom_card {
    position: relative;
    z-index: 10;
  }
  .top_card .uniform_img,
  .bottom_card .uniform_img {
    margin-bottom: 24px;
  }
  .top_card h2 {
    color: #003a8f;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 23px;
    font-weight: 700;
    line-height: 150%;
  }
  .top_card p,
  .bottom_card p {
    margin-top: 12px;
    color: #003a8f;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-weight: 700;
    line-height: 180%;
    letter-spacing: 0.56px;
  }
  .bottom_card a {
    width: 311px;
    height: 54px;
    flex-shrink: 0;
    margin: 24px auto 0;
    background-color: #ffe10d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003a8f;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-weight: 700;
    line-height: 120%;
    position: relative;
  }
  .bottom_card a img {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5%;
  }
  .right_box .text_box {
    position: unset;
    width: 100%;
  }
}

/* !ad gallery
---------------------------------------------------------- */
#gallery {
  background-color: #003a8f;
  padding: 90px 0 73px 70px;
  position: relative;
  /* height: 100dvh; */
}
.gallery_content.swiper {
  padding: 80px 0;
  background-color: #fff;
  width: 100%;
  overflow: hidden;
}
.gallery_content h1 {
  color: #003a8f;
  text-align: center;
  font-family: "DIN Condensed";
  font-size: 90px;
  font-weight: 400;
  line-height: 100%;
  width: fit-content;
}
.gallery_content .top_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: calc(100% - 100px);
  margin: 0 auto 120px;
  width: 100%;
}
.swiper-button-prev.gallery_prev,
.swiper-button-next.gallery_next {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 999px;
  border: 2px solid #003a8f;
  width: 56px;
  height: 56px;
  transition: 0.3s ease;
  flex-shrink: 0;
}

.swiper-button-prev.gallery_prev:hover,
.swiper-button-next.gallery_next:hover {
  background-color: #ffd629;
  border: 2px solid #ffd629;
  opacity: 1;
}

/* 蟾ｦ遏｢蜊ｰ縺ｮ繧ｹ繧ｿ繧､繝ｫ */
.swiper-button-prev.gallery_prev .arrow-container {
  position: relative;
  width: 24px;
  height: 24px;
}

.swiper-button-prev.gallery_prev .arrow.arrow-default,
.swiper-button-prev.gallery_prev .arrow.arrow-hover {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.4s, opacity 0.3s;
}

.swiper-button-prev.gallery_prev .arrow.arrow-default {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.swiper-button-prev.gallery_prev .arrow.arrow-hover {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(80%);
}

.swiper-button-prev.gallery_prev:hover .arrow.arrow-default {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(-80%);
}

.swiper-button-prev.gallery_prev:hover .arrow.arrow-hover {
  opacity: 1;
  transform: translate(-50%, -50%) translateX(0);
}

/* 蜿ｳ遏｢蜊ｰ縺ｮ繧ｹ繧ｿ繧､繝ｫ */
.swiper-button-next.gallery_next .arrow-container {
  position: relative;
  width: 24px;
  height: 24px;
}

.swiper-button-next.gallery_next .arrow.arrow-default,
.swiper-button-next.gallery_next .arrow.arrow-hover {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(80%);
  transition: transform 0.4s, opacity 0.3s;
}

.swiper-button-next.gallery_next .arrow.arrow-default {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.swiper-button-next.gallery_next .arrow.arrow-hover {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(-80%);
}

.swiper-button-next.gallery_next:hover .arrow.arrow-default {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(80%);
}

.swiper-button-next.gallery_next:hover .arrow.arrow-hover {
  opacity: 1;
  transform: translate(-50%, -50%) translateX(0);
}

.gallery_content .swiper_attached {
  margin-top: 0;
  width: fit-content;
  height: 56px;
  gap: 16px;
}
.swiper-button-next,
.swiper-button-prev,
.swiper-pagination {
  position: unset !important;
}
.swiper-pagination.gallery_pagination {
  color: #003a8f;
  text-align: center;
  font-family: "DIN Condensed";
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
  padding-bottom: 14px;
}

.gallery_content .swiper-wrapper {
  padding-bottom: 120px;
}
.gallery_content .swiper-slide {
  transition: 0.3s ease;
  position: relative;
  z-index: 1;
  transform: scale(1);
  filter: drop-shadow(0px 10px 24px rgba(0, 0, 0, 0.2));
}
.gallery_content .swiper-slide.opacity_box {
  width: auto;
  height: 100%;
}
.gallery_content .swiper-slide.swiper-slide-active {
  transform: scale(1.7) !important;
  z-index: 3;
  opacity: 1;
}
.gallery_content .swiper-slide.swiper-slide-next::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  z-index: 2;
}
.gallery_content .swiper-slide.swiper-slide-prev::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  z-index: 2;
}
.gallery_content .swiper-slide.swiper-slide-active {
  transform: scale(1.7) !important;
  z-index: 3;
  opacity: 1;
}
.gallery_content .swiper-slide.swiper-slide-prev,
.gallery_content .swiper-slide.swiper-slide-next {
  z-index: 2;
  transform: scale(1.2);
}

@media screen and (max-width: 768px) {
  #gallery {
    padding: 48px 0 48px 16px;
  }
  .gallery_content.swiper {
    padding: 42px 0 32px;
  }
  .gallery_content h1 {
    font-size: 50px;
    line-height: 150%;
  }
  .gallery_content .top_content {
    margin-bottom: 72px;
    max-width: calc(100% - 32px);
  }
  .flex_box {
    display: flex;
    width: 100%;
    align-items: end;
    justify-content: end;
    gap: 8px;
    padding-right: 16px;
  }
  .gallery .swiper_attached.sp {
    display: flex;
    width: 100%;
    align-items: end;
    justify-content: end;
    gap: 8px;
    padding-right: 16px;
  }
  .swiper-pagination.gallery_pagination {
    color: #003a8f;
    font-size: 24px;
    font-weight: 400;
    line-height: 150%;
  }
  .gallery_content .swiper-wrapper {
    padding-bottom: 72px;
  }
  .swiper-button-prev.gallery_prev,
  .swiper-button-next.gallery_next {
    width: 45px;
    height: 45px;
  }
  .swiper-button-prev.gallery_prev .arrow-container {
    width: 19px;
    height: 19px;
  }
  .swiper-button-next.gallery_next .arrow.arrow-default,
  .swiper-button-next.gallery_next .arrow.arrow-hover {
    width: 19px;
    height: 19px;
  }
  .gallery_content .swiper-slide.swiper-slide-active {
    transform: scale(1.4) !important;
  }
  .gallery_content .swiper-slide.swiper-slide-prev,
  .gallery_content .swiper-slide.swiper-slide-next {
    z-index: 2;
    transform: scale(1);
  }

  .gallery_pagination_sp {
    color: #003a8f !important;
    text-align: center;
    font-family: "DIN Condensed";
    font-size: 24px;
    font-weight: 400;
    line-height: 150%;
    width: fit-content !important;
    padding: 0 8px;
    gap: 4px;
  }

  .gallery_content .swiper-slide.swiper-slide-next::after {
    background: linear-gradient(
      270deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.5) 100%
    );
  }
  .gallery_content .swiper-slide.swiper-slide-prev::after {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.5) 100%
    );
  }
  .swiper-slide.opacity_box {
    display: none !important;
  }
}

/* !slogan
---------------------------------------------------------- */
#slogan {
  padding: 120px 0;
  position: relative;
}
#slogan .bg_img {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
#slogan .bg_img img {
  width: 100vw;
  height: 100dvh;
  object-fit: cover;
}
#slogan .inner {
  width: 800px;
  max-width: calc(100% - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 64px;
}
#slogan h1 {
  color: #fff;
  text-align: center;
  font-family: "DIN Condensed";
  font-size: 90px;
  font-weight: 700;
  line-height: 150%;
  /* margin-bottom: 32px; */
}
#slogan .inner .slogan_txt {
  width: 420px;
  max-width: 100%;
  margin: 0 auto;
  gap: 48px;
}

@media screen and (max-width: 767px) {
  #slogan {
    padding: 64px 0;
  }
  #slogan h1 {
    font-size: 50px;
    line-height: 150%;
  }
  #slogan .inner {
    gap: 48px;
  }
  #slogan .inner .slogan_txt {
    width: 260px;
  }
}

/* !goods
---------------------------------------------------------- */
#goods {
  padding: 80px 0 56px;
  position: relative;
  background-color: #003a8f;
}
#goods .top_content {
  width: 1200px;
  max-width: calc(100% - 32px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
#goods .swiper-wrapper {
  width: 1200px !important;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}
#goods .top_content h1 {
  color: #fff;
  text-align: center;
  font-family: "DIN Condensed";
  font-size: 90px;
  font-weight: 700;
  line-height: 120%;
}
.swiper-button-prev.goods_prev,
.swiper-button-next.goods_next {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 999px;
  border: 2px solid #fff;
  width: 56px;
  height: 56px;
  transition: 0.3s ease;
  flex-shrink: 0;
}

.swiper-button-prev.goods_prev:hover,
.swiper-button-next.goods_next:hover {
  background-color: #ffd629;
  border: 2px solid #ffd629;
  opacity: 1;
}

/* 蟾ｦ遏｢蜊ｰ縺ｮ繧ｹ繧ｿ繧､繝ｫ */
.swiper-button-prev.goods_prev .arrow-container {
  position: relative;
  width: 24px;
  height: 24px;
}

.swiper-button-prev.goods_prev .arrow.arrow-default,
.swiper-button-prev.goods_prev .arrow.arrow-hover {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(-80%);
  transition: transform 0.4s, opacity 0.3s;
}

.swiper-button-prev.goods_prev .arrow.arrow-default {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.swiper-button-prev.goods_prev .arrow.arrow-hover {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(80%);
}

.swiper-button-prev.goods_prev:hover .arrow.arrow-default {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(-80%);
}

.swiper-button-prev.goods_prev:hover .arrow.arrow-hover {
  opacity: 1;
  transform: translate(-50%, -50%) translateX(0);
}

/* 蜿ｳ遏｢蜊ｰ縺ｮ繧ｹ繧ｿ繧､繝ｫ */
.swiper-button-next.goods_next .arrow-container {
  position: relative;
  width: 24px;
  height: 24px;
}

.swiper-button-next.goods_next .arrow.arrow-default,
.swiper-button-next.goods_next .arrow.arrow-hover {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(80%);
  transition: transform 0.4s, opacity 0.3s;
}

.swiper-button-next.goods_next .arrow.arrow-default {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.swiper-button-next.goods_next .arrow.arrow-hover {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(-80%);
}

.swiper-button-next.goods_next:hover .arrow.arrow-default {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(80%);
}

.swiper-button-next.goods_next:hover .arrow.arrow-hover {
  opacity: 1;
  transform: translate(-50%, -50%) translateX(0);
}

.goods_container .swiper_attached {
  margin-top: 0;
  width: fit-content;
  height: 56px;
  gap: 16px;
}
.swiper-pagination.goods_pagination {
  color: #fff;
  text-align: center;
  font-family: "DIN Condensed";
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
  padding-bottom: 14px;
  width: fit-content;
}

@media (min-width: 768px) {
  .goods_container .swiper-slide {
    width: calc((100% - 16px) / 3);
    /* width: 308px;
    max-width: 100%; */
  }
}

#goods .swiper-slide a {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
#goods .swiper-slide .item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 8px;
  position: relative;
  z-index: 2;
}
#goods .swiper-slide .name {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}
#goods .swiper-slide .price {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

#goods .swiper-slide .image-wrapper {
  position: relative;
  width: 100%;
  background-color: #fff;
}

#goods .swiper-slide .image-wrapper img {
  width: 100%;
  display: block;
}

#goods .swiper-slide a:hover .image-wrapper img {
  opacity: 0.7;
}

#goods .swiper-slide .image-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 58, 143, 0.85);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #ffe10d;
  font-family: Futura;
  font-size: 20px;
  font-weight: 500;
}

#goods .swiper-slide .image-wrapper .overlay p {
  display: flex;
  align-items: center;
  gap: 8px;
}

#goods .swiper-slide .image-wrapper .overlay img {
  width: 24px;
  height: 24px;
  opacity: 1;
}

#goods .swiper-slide a:hover .image-wrapper .overlay {
  opacity: 1;
}

#goods .swiper-slide .image-wrapper .overlay p {
  opacity: 0; /* 霑ｽ蜉� */
  transform: translateY(10px); /* 霑ｽ蜉� */
  transition: all 0.3s ease 0.1s; /* 霑ｽ蜉� */
}

#goods .swiper-slide a:hover .image-wrapper .overlay p {
  opacity: 1; /* 霑ｽ蜉� */
  transform: translateY(0); /* 霑ｽ蜉� */
}

/* 譫�邱壹�繧ｳ繝ｳ繝�リ */
#goods .swiper-slide .image-wrapper .border-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

#goods .swiper-slide a:hover .image-wrapper .overlay {
  opacity: 1;
}

/* 譫�邱壹�蝓ｺ譛ｬ繧ｹ繧ｿ繧､繝ｫ */
#goods .swiper-slide .image-wrapper .border-top,
#goods .swiper-slide .image-wrapper .border-bottom {
  position: absolute;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: #ffe10d;
  transition: width 0.25s ease;
}

#goods .swiper-slide .image-wrapper .border-right,
#goods .swiper-slide .image-wrapper .border-left {
  position: absolute;
  width: 3px;
  height: 0;
  background-color: #ffe10d;
  transition: height 0.25s ease 0.25s;
}

/* 蜷�棧邱壹�菴咲ｽｮ */
#goods .swiper-slide .image-wrapper .border-top {
  top: 0;
  transform: translateX(-50%);
}
#goods .swiper-slide .image-wrapper .border-bottom {
  bottom: 0;
  transform: translateX(-50%);
}
#goods .swiper-slide .image-wrapper .border-right {
  top: 0;
  right: 0;
}
#goods .swiper-slide .image-wrapper .border-left {
  bottom: 0;
  left: 0;
}

/* 繝帙ヰ繝ｼ譎ゅ�繧｢繝九Γ繝ｼ繧ｷ繝ｧ繝ｳ */
#goods .swiper-slide a:hover .image-wrapper .border-top,
#goods .swiper-slide a:hover .image-wrapper .border-bottom {
  width: 100%;
}

#goods .swiper-slide a:hover .image-wrapper .border-right,
#goods .swiper-slide a:hover .image-wrapper .border-left {
  height: 100%;
}

.slogan_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 396px;
  max-width: calc(100% - 64px);
  height: 72px;
  flex-shrink: 0;
  background: #ffe10d;
  transition: 0.4s ease;
  margin: 56px auto 0;
  position: relative;
}
.slogan_btn span {
  color: #003a8f;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
}

.slogan_btn:hover {
  background-color: #003a8f;
}
.slogan_btn:hover span {
  color: #fff !important;
}

/* 繝帙ヰ繝ｼ譎ゅ�繧｢繝九Γ繝ｼ繧ｷ繝ｧ繝ｳ */
.slogan_btn:hover .border-top,
.slogan_btn:hover .border-bottom {
  width: 100%;
}

.slogan_btn:hover .border-right,
.slogan_btn:hover .border-left {
  height: 100%;
}

.slogan_btn .arrow-container {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  right: -15%;
}
.slogan_btn .arrow.arrow-default,
.slogan_btn .arrow.arrow-hover {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(80%);
  transition: transform 0.4s, opacity 0.3s;
}
.slogan_btn .arrow.arrow-default {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.slogan_btn .arrow.arrow-hover {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(80%);
}
.slogan_btn:hover .arrow.arrow-default {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(-80%);
}
.slogan_btn:hover .arrow.arrow-hover {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

@media screen and (max-width: 768px) {
  #goods {
    padding: 72px 0 0;
  }
  #goods .swiper-wrapper {
    padding-right: 56px;
  }
  #goods .swiper-slide {
    width: 260px;
  }
  .goods_container .swiper_attached.sp {
    display: flex;
    justify-content: end;
    width: 100%;
    gap: 8px;
    padding-right: 16px;
    padding-top: 64px;
  }
  #goods .top_content h1 {
    font-size: 50px;
  }

  #goods .swiper-slide:first-child {
    margin-left: 3%;
  }
  #goods .swiper-slide:nth-last-child(2) {
    margin-right: 3%;
  }
  .swiper-button-prev.goods_prev,
  .swiper-button-next.goods_next {
    width: 45px;
    height: 45px;
  }
  .swiper-button-next.goods_next .arrow.arrow-default,
  .swiper-button-next.goods_next .arrow.arrow-hover {
    width: 19px;
    height: 19px;
  }
  .goods_pagination_sp {
    color: #fff;
    text-align: center;
    font-family: "DIN Condensed";
    font-size: 24px;
    font-weight: 400;
    line-height: 150%;
    width: fit-content !important;
    padding: 0 8px 16px;
  }
  #goods .swiper-slide .name {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  #goods .swiper-slide .name img {
    width: 24px;
    height: 24px;
  }
  #goods .swiper-slide a {
    padding-left: 8px;
  }
  .slogan_btn {
    margin-top: 40px;
  }
  .slogan_btn .arrow-container {
    right: -10%;
  }
}

/* !news
---------------------------------------------------------- */
#news {
  padding: 32px 0 48px;
  position: relative;
  background-color: #003a8f;
}
#news .inner {
  background-color: #fff;
  padding: 64px;
}
#news .inner .top_content {
  display: flex;
  justify-content: space-between;
}
#news .inner h1 {
  color: #003a8f;
  font-family: "DIN Condensed";
  font-size: 90px;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
}
#news .inner a {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
#news .inner a p {
  color: #003a8f;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}
#news .inner a .arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.4s all;
  border-radius: 999px;
  border: 2px solid #003a8f;
  width: 56px;
  height: 56px;
  transition: 0.3s ease;
}
#news .inner a:hover .arrow-circle {
  background-color: #ffd629;
  border: 2px solid #ffd629;
}
#news .inner a .arrow-circle .arrow-container {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
}
#news .inner a .arrow.arrow-default,
#news .inner a .arrow.arrow-hover {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(80%);
  transition: transform 0.4s, opacity 0.3s;
}
#news .inner a .arrow.arrow-default {
  opacity: 1;
  transform: translate(-50%, -50%);
}
#news .inner a .arrow.arrow-hover {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(80%);
}
#news .inner a:hover .arrow.arrow-default {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(-80%);
}
#news .inner a:hover .arrow.arrow-hover {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}
#news .news_list {
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: start;
}
#news .news_list li {
  width: 100%;
}
#news .news_list .item a {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 16px;
  gap: 0;
  max-width: 100%;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #003a8f;
}
#news .news_list .item:first-child {
  border-top: 1px solid #003a8f;
}
#news .news_list .item a .date {
  color: #003a8f;
  font-family: Futura;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}
#news .news_list .item a .text {
  color: #003a8f;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.64px;
}
#news .news_list .item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 225, 13, 0.6);
  margin: auto;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  z-index: -1;
}
#news .news_list .item a:hover {
  color: #003a8f;
}
#news .news_list .item a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

@media screen and (max-width: 768px) {
  #news {
    padding: 48px 0 48px;
  }
  #news .inner {
    padding: 36px 16px 48px;
  }
  #news .inner h1 {
    font-size: 50px;
  }
  #news .inner a p {
    font-size: 14px;
  }
  #news .inner a .arrow-circle {
    border: 1px solid #003a8f;
    width: 24px;
    height: 24px;
  }
  #news .inner a .arrow-circle .arrow-container {
    width: 10px;
    height: 10px;
  }
  #news .inner a {
    gap: 8px;
  }
  #news .news_list {
    padding-top: 20px;
  }
  #news .news_list .item a {
    padding: 12px 0;
  }
  #news .news_list .item a .date {
    font-size: 16px;
  }
  #news .news_list .item a .text {
    font-size: 14px;
  }
}

/* !footer
---------------------------------------------------------- */
footer {
  background-color: #003a8f;
}
footer .inner {
  padding: 40px 0 48px;
  display: flex;
  justify-content: space-between;
}
footer .footer_content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
footer .sns_list {
  display: flex;
  justify-content: start;
  gap: 18px;
}
footer .sns_list .item {
  color: #fff;
  font-family: "DIN Condensed";
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  transition: 0.3s ease;
}
footer .sns_list .item:hover {
  color: #ffd629;
}
footer .copyright {
  color: #6689bc;
  font-family: "DIN Condensed";
  font-size: 12px;
  font-weight: 700;
  line-height: 150%;
}

.scrollToTop {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.4s all;
  border-radius: 999px;
  border: 2px solid #fff;
  width: 56px;
  height: 56px;
  transition: 0.3s ease;
}
.scrollToTop:hover {
  background-color: #ffd629;
  border: 2px solid #ffd629;
}
.scrollToTop .arrow-container {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
}
.scrollToTop .arrow.arrow-default,
.scrollToTop .arrow.arrow-hover {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(80%);
  transition: transform 0.4s, opacity 0.3s;
}
.scrollToTop .arrow.arrow-default {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.scrollToTop .arrow.arrow-hover {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(80%);
}
.scrollToTop:hover .arrow.arrow-default {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(-80%);
}
.scrollToTop:hover .arrow.arrow-hover {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

@media screen and (max-width: 767px) {
  .scrollToTop {
    width: 40px;
    height: 40px;
  }
  .scrollToTop .arrow-container {
    width: 18px;
    height: 18px;
  }
  footer .inner {
    padding: 24px 0 90px;
  }
  footer .sns_list {
    gap: 12px;
  }
  footer .sns_list .item {
    font-size: 18px;
  }
  footer .footer_content {
    gap: 12px;
  }
}

@media (hover: none) {
  .scrollToTop .arrow.arrow-default,
  .scrollToTop .arrow.arrow-hover {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .scrollToTop .arrow.arrow-default {
    opacity: 1;
  }
  .scrollToTop .arrow.arrow-hover {
    opacity: 0;
  }
  #news .news_list .item a::before {
    display: none;
  }
}

.scrollify {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .scrollify {
    height: auto;
  }
}
</pre></body></html>