@charset "UTF-8";
/*共通スタイル*/
/* main colors */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  word-break: break-all;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  font-family: YakuHanMP, "Shippori Mincho B1", serif;
  color: #0A2D88;
  font-weight: 500;
  line-height: 1.75;
  font-size: 14px;
}
@media (min-width: 920px) {
  body {
    font-size: clamp(15px, calc(12.24px + 0.3vw), 18px);
  }
}

body.lang_en {
  line-height: 1.35;
}

img,
svg {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  max-width: 100%;
}

button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  text-align: left;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer !important;
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.disc {
  list-style-type: disc;
  padding-left: 1.5em;
  list-style-position: outside;
}

h1,
h2,
h3,
h4,
h5 {
  font-feature-settings: "palt";
}

.site_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.site_body {
  margin-bottom: auto;
}

.container-small {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .container-small {
    max-width: calc(clamp(900px, calc(629.52px + 29.4vw), 1194px) + 80px);
    padding: 0 40px;
  }
}

.container-base {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .container-base {
    max-width: calc(clamp(1000px, calc(541.84px + 49.8vw), 1498px) + 80px);
    padding: 0 40px;
  }
}

.container-max {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .container-max {
    max-width: calc(clamp(1200px, calc(648px + 60vw), 1800px) + 80px);
    padding: 0 40px;
  }
}

@media (min-width: 920px) {
  .br_sp {
    display: none;
  }
}

.br_pc {
  display: none;
}
@media (min-width: 920px) {
  .br_pc {
    display: revert;
  }
}

.is-js .blur_fade {
  opacity: 0;
  filter: blur(48px);
  transition: opacity 2.2s cubic-bezier(0.1, 1, 0.2, 1), filter 2.2s cubic-bezier(0.1, 1, 0.2, 1);
}
.is-js .blur_fade.is-show {
  opacity: 1;
  filter: blur(0);
}
.is-js .blur_fade_group .blur_fade_item {
  opacity: 0;
  filter: blur(48px);
  transition: opacity 2.2s cubic-bezier(0.1, 1, 0.2, 1), filter 2.2s cubic-bezier(0.1, 1, 0.2, 1);
  transition-delay: var(--blur-fade-delay, 0ms);
}
.is-js .blur_fade_group.is-show .blur_fade_item {
  opacity: 1;
  filter: blur(0);
}

.btn {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  max-width: 280px;
  min-height: 56px;
  margin: 0 auto;
  padding: 12px;
  overflow: hidden;
  border: 1px solid #0A2D88;
  background-color: transparent;
  color: #0A2D88;
  font-size: 16px;
  transition: color 1.2s cubic-bezier(0.1, 1, 0.2, 1);
}
.btn::before {
  position: absolute;
  z-index: -1;
  top: -1px;
  right: 0;
  bottom: -1px;
  left: 0;
  display: block;
  background-color: #0A2D88;
  content: "";
  pointer-events: none;
  backface-visibility: hidden;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 1.8s cubic-bezier(0.1, 1, 0.2, 1);
  will-change: transform;
}
@media (min-width: 920px) {
  .btn {
    max-width: clamp(300px, calc(208px + 10vw), 400px);
    min-height: clamp(60px, calc(41.6px + 2vw), 80px);
    padding: clamp(12px, calc(4.64px + 0.8vw), 20px);
    gap: 4px;
    font-size: clamp(16px, calc(12.32px + 0.4vw), 20px);
  }
}
@media (min-width: 920px) {
  .btn:hover {
    color: #fff;
  }
  .btn:hover::before {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
.btn_blue {
  background-color: #0A2D88;
  color: #fff;
}
.btn_blue::before {
  background-color: #fff;
}
@media (min-width: 920px) {
  .btn_blue:hover {
    color: #0A2D88;
  }
}
.btn_white {
  color: #fff;
  border: 1px solid #fff;
}
.btn_white::before {
  background-color: #fff;
}
@media (min-width: 920px) {
  .btn_white:hover {
    color: #0A2D88;
  }
}
.btn_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}
@media (min-width: 920px) {
  .btn_wrap {
    gap: clamp(20px, calc(1.6px + 2vw), 40px);
  }
}
.btn_wrap .btn {
  margin: 0;
}
.btn .icon_external {
  display: inline-block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-color: currentColor;
  mask-image: url("../img/common/icon_external.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../img/common/icon_external.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
@media (min-width: 920px) {
  .btn .icon_external {
    width: clamp(18px, calc(12.48px + 0.6vw), 24px);
    height: clamp(18px, calc(12.48px + 0.6vw), 24px);
    margin-top: 4px;
  }
}

.txt_link {
  position: relative;
  display: inline-block;
  width: fit-content;
  color: inherit;
  font-size: 16px;
  letter-spacing: -0.15em;
  text-decoration: none;
}
@media (min-width: 920px) {
  .txt_link {
    padding-bottom: 4px;
    font-size: clamp(16px, calc(12.32px + 0.4vw), 20px);
  }
}
.txt_link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #0A2D88;
  content: "";
  transform: scaleX(1);
  transform-origin: left center;
  pointer-events: none;
}
.txt_link_external {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.txt_link_external .icon_external {
  display: inline-block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-color: currentColor;
  mask-image: url("../img/common/icon_external.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../img/common/icon_external.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
@media (min-width: 920px) {
  .txt_link_external .icon_external {
    width: clamp(18px, calc(12.48px + 0.6vw), 24px);
    height: clamp(18px, calc(12.48px + 0.6vw), 24px);
    margin-top: 4px;
  }
}

@media (min-width: 920px) and (hover: hover) and (pointer: fine) {
  .txt_link:hover::after,
  a:hover .txt_link::after {
    animation: txt-link-line 1.2s cubic-bezier(0.1, 1, 0.2, 1);
  }
}
@keyframes txt-link-line {
  0% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  49.9% {
    transform: scaleX(0);
    transform-origin: right center;
  }
  50% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
.slide_hover {
  position: relative;
  padding-bottom: 2px;
  text-decoration: none;
  transition: opacity 1.2s cubic-bezier(0.1, 1, 0.2, 1);
}
.slide_hover::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  content: "";
  opacity: 0.5;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 1.2s cubic-bezier(0.1, 1, 0.2, 1);
}
@media (hover: hover) and (pointer: fine) {
  .slide_hover:hover, .slide_hover:focus-visible {
    opacity: 1;
  }
  .slide_hover:hover::after, .slide_hover:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
.slide_hover:hover {
  opacity: 1 !important;
}

.img_reveal {
  overflow: hidden;
}
.is-js .img_reveal > img {
  opacity: 0;
  filter: blur(48px);
  transition: opacity 0.8s linear, filter 1.6s cubic-bezier(0.05, 1, 0.05, 1), transform 3s cubic-bezier(0.05, 1, 0.15, 1);
  will-change: opacity, filter, transform;
  transform: scale(1.15);
}
@media (min-width: 920px) {
  .is-js .img_reveal > img {
    transform: scale(1.125);
  }
}
.is-js .img_reveal.is-inview > img {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.common_tel_link {
  color: inherit;
  text-decoration: none;
}
@media (min-width: 920px) {
  .common_tel_link {
    pointer-events: none;
    cursor: default;
  }
}

.js-fv-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 2.4s ease, transform 2.8s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 920px) {
  .js-fv-image img {
    transform: scale(1.04);
  }
}
.js-fv-image img.is_show {
  opacity: 1;
  transform: scale(1);
}

.lang_en .txt_link {
  letter-spacing: 0;
}
.lang_en ruby rt {
  display: none;
}

.age_modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
@media (min-width: 920px) {
  .age_modal {
    padding: 40px;
  }
}
.age_modal.is_active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.age_modal.is_active .age_modal_content {
  opacity: 1;
  transform: translateY(0);
}
.age_modal_overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 9, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.age_modal_content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  padding: 42px 20px 32px;
  background: #fff;
  border: 1px solid rgba(10, 45, 136, 0.18);
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease 0.05s, transform 0.45s ease 0.05s;
}
@media (min-width: 920px) {
  .age_modal_content {
    max-width: 560px;
    padding: 64px 56px 48px;
  }
}
.age_modal_title {
  margin: 0;
  color: #090909;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media (min-width: 920px) {
  .age_modal_title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.age_modal_text {
  margin: 0;
  color: rgba(9, 9, 9, 0.7);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
}
@media (min-width: 920px) {
  .age_modal_text {
    font-size: 16px;
  }
}
.age_modal_buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 32px;
}
@media (min-width: 920px) {
  .age_modal_buttons {
    gap: 16px;
    margin-top: 40px;
  }
}
.age_modal_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid #0a2d88;
  border-radius: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (min-width: 920px) {
  .age_modal_btn {
    min-height: 60px;
    font-size: 16px;
  }
}
.age_modal_btn_yes {
  background: #0a2d88;
  color: #fff;
}
@media (hover: hover) {
  .age_modal_btn_yes:hover {
    background: #fff;
    color: #0a2d88;
  }
}
.age_modal_btn_no {
  background: #fff;
  color: #0a2d88;
}
@media (hover: hover) {
  .age_modal_btn_no:hover {
    background: #0a2d88;
    color: #fff;
  }
}
.age_modal_note {
  margin: 20px 0 0;
  color: rgba(9, 9, 9, 0.5);
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media (min-width: 920px) {
  .age_modal_note {
    margin-top: 24px;
    font-size: 11px;
  }
}

html.is_age_modal_open,
body.is_age_modal_open {
  overflow: hidden;
}

.map.txt_link {
  padding-bottom: 0;
  line-height: 1.25;
  letter-spacing: 0;
}

.cookie_consent {
  font-family: "Noto Sans JP", sans-serif;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 9990;
  width: 90%;
  max-width: 520px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}
@media (min-width: 920px) {
  .cookie_consent {
    left: 32px;
    bottom: 20px;
    width: 100%;
    max-width: clamp(520px, calc(262.4px + 28vw), 800px);
    transform: translateY(16px);
    width: 100%;
  }
}
.cookie_consent.is_active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
@media (min-width: 920px) {
  .cookie_consent.is_active {
    transform: translateY(0);
  }
}
.cookie_consent_inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: 100%;
  padding: 22px;
  background: #fff;
  border-radius: 8px;
}
@media (min-width: 920px) {
  .cookie_consent_inner {
    grid-template-columns: minmax(0, 1fr) 174px;
    grid-template-areas: "text buttons" "note note";
    column-gap: 16px;
    row-gap: 12px;
    align-items: center;
    padding: 20px;
  }
}
.cookie_consent_text {
  margin: 0;
  color: #0a2d88;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.045em;
}
@media (min-width: 920px) {
  .cookie_consent_text {
    grid-area: text;
    font-size: 15px;
  }
}
.cookie_consent_buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 0;
}
@media (min-width: 920px) {
  .cookie_consent_buttons {
    grid-area: buttons;
  }
}
.cookie_consent_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 30px;
  padding: 10px 12px;
  border: 1px solid #0a2d88;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (min-width: 920px) {
  .cookie_consent_btn {
    min-height: 32px;
    font-size: 15px;
  }
}
.cookie_consent_btn_yes {
  background: #0a2d88;
  color: #fff;
}
@media (hover: hover) {
  .cookie_consent_btn_yes:hover {
    background: #fff;
    color: #0a2d88;
  }
}
.cookie_consent_btn_no {
  background: #fff;
  color: #0a2d88;
}
@media (hover: hover) {
  .cookie_consent_btn_no:hover {
    background: #0a2d88;
    color: #fff;
  }
}
.cookie_consent_note {
  margin: 0;
  color: #0a2d88;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: -0.025em;
}
@media (min-width: 920px) {
  .cookie_consent_note {
    grid-area: note;
  }
}
.cookie_consent_link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s ease;
}

/* ========================================
  Header
======================================== */
.site_header {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100%;
  overflow: visible;
  transition: background-color 1.2s cubic-bezier(0.22, 1, 0.36, 1), color 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  background: rgba(255, 255, 255, 0.8);
}
@media (max-width: 919px) {
  .site_header {
    color: #0A2D88;
  }
}
@media (min-width: 920px) {
  .site_header {
    color: #0A2D88;
  }
}
.site_header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  transition: padding 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 919px) {
  .site_header_inner {
    padding: 20px;
  }
}
@media (min-width: 920px) {
  .site_header_inner {
    padding: clamp(20px, calc(10.8px + 1vw), 30px) clamp(10px, calc(-17.6px + 3vw), 40px);
  }
}
.site_header_logo {
  position: relative;
  flex: 0 0 auto;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), visibility 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 919px) {
  .site_header_logo {
    z-index: 9999;
    width: 132px;
  }
}
@media (min-width: 920px) {
  .site_header_logo {
    width: clamp(80px, calc(8.24px + 7.8vw), 158px);
  }
}
.site_header_logo_link {
  display: block;
  width: 100%;
  color: inherit;
}
.site_header_logo_icon {
  display: block;
  width: 100%;
  aspect-ratio: 132/40;
  background-color: currentColor;
  -webkit-mask: url("../img/common/header_logo.svg") center/contain no-repeat;
  mask: url("../img/common/header_logo.svg") center/contain no-repeat;
}
.site_header_right {
  display: flex;
  align-items: center;
  min-width: 0;
  margin-left: auto;
}
.site_header_nav {
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), visibility 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 919px) {
  .site_header_nav {
    display: none;
  }
}
@media (min-width: 920px) {
  .site_header_nav {
    display: block;
  }
}
.site_header_nav_list {
  display: flex;
  align-items: center;
  gap: clamp(4px, calc(-10.72px + 1.6vw), 20px);
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1199px) {
  .site_header_nav_list {
    display: none;
  }
}
.site_header_nav_item {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}
@media (min-width: 920px) {
  .site_header_nav_item_sake {
    z-index: 2;
  }
  .site_header_nav_item_sake::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 100%;
    left: -60px;
    display: block;
    width: calc(100% + 120px);
    height: 52px;
    pointer-events: none;
  }
  .site_header_nav_item_sake:hover::after, .site_header_nav_item_sake:focus-within::after {
    pointer-events: auto;
  }
}
.site_header_nav_link {
  display: block;
  color: inherit;
  font-size: clamp(11px, calc(6.4px + 0.5vw), 16px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 920px) {
  .site_header_nav_link:hover {
    opacity: 0.8;
  }
}
.site_header_utility {
  align-items: center;
  flex: 0 0 auto;
  gap: clamp(6px, calc(-10.56px + 1.8vw), 24px);
  margin-left: clamp(4px, calc(-14.4px + 2vw), 24px);
  margin-right: clamp(4px, calc(-14.4px + 2vw), 24px);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), visibility 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 919px) {
  .site_header_utility {
    display: none;
  }
}
@media (min-width: 920px) {
  .site_header_utility {
    display: flex;
  }
}
.site_header_shop {
  display: flex;
  align-items: center;
  gap: 4px;
  color: inherit;
  font-size: clamp(12px, calc(8.32px + 0.4vw), 16px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 920px) {
  .site_header_shop:hover {
    opacity: 0.8;
  }
}
.site_header_shop_icon {
  display: block;
  flex: 0 0 auto;
  width: clamp(18px, calc(12.48px + 0.6vw), 24px);
  height: clamp(18px, calc(12.48px + 0.6vw), 24px);
  background-color: currentColor;
  -webkit-mask: url("../img/common/icon_cart.svg") center/contain no-repeat;
  mask: url("../img/common/icon_cart.svg") center/contain no-repeat;
}
@media (max-width: 919px) {
  .site_header.site_header_home:not(.is_scrolled):not(.is_open) {
    background: #fff;
    color: #0a2d88;
  }
}
@media (min-width: 920px) {
  .site_header.site_header_home:not(.is_scrolled):not(.is_open) {
    background: transparent;
    color: #fff;
  }
}
.site_header.is_scrolled, .site_header.site_header_subpage {
  background: rgba(255, 255, 255, 0.8);
  color: #0A2D88;
}
.site_header.is_scrolled .site_header_inner, .site_header.site_header_subpage .site_header_inner {
  padding: 10px 20px;
}
@media (min-width: 920px) {
  .site_header.is_scrolled .site_header_inner, .site_header.site_header_subpage .site_header_inner {
    padding: clamp(14px, calc(12.16px + 0.2vw), 16px) clamp(10px, calc(-17.6px + 3vw), 40px);
  }
}
@media (max-width: 919px) {
  .site_header.is_scrolled .site_header_logo, .site_header.site_header_subpage .site_header_logo {
    width: 100px;
  }
}
.site_header.is_open {
  background: transparent;
  color: #fff;
}
.site_header.is_open .site_header_nav,
.site_header.is_open .site_header_utility {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.sns_links {
  display: flex;
  align-items: center;
}
.sns_links_link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: inherit;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 919px) {
  .sns_links_link {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 920px) {
  .sns_links_link {
    width: clamp(26px, calc(20.48px + 0.6vw), 32px);
    height: clamp(26px, calc(20.48px + 0.6vw), 32px);
  }
}
@media (min-width: 920px) {
  .sns_links_link:hover {
    opacity: 0.5;
  }
}
.sns_links_icon {
  display: block;
  width: 100%;
  height: 100%;
  background-color: currentColor;
}
.sns_links_icon_facebook {
  -webkit-mask: url("../img/common/icon_facebook.svg") center/contain no-repeat;
  mask: url("../img/common/icon_facebook.svg") center/contain no-repeat;
}
.sns_links_icon_x {
  -webkit-mask: url("../img/common/icon_x.svg") center/contain no-repeat;
  mask: url("../img/common/icon_x.svg") center/contain no-repeat;
}
.sns_links_icon_instagram {
  -webkit-mask: url("../img/common/icon_instagram.svg") center/contain no-repeat;
  mask: url("../img/common/icon_instagram.svg") center/contain no-repeat;
}
.sns_links_icon_youtube {
  -webkit-mask: url("../img/common/icon_youtube.svg") center/contain no-repeat;
  mask: url("../img/common/icon_youtube.svg") center/contain no-repeat;
}
.sns_links_icon_note {
  -webkit-mask: url("../img/common/icon_note.svg") center/contain no-repeat;
  mask: url("../img/common/icon_note.svg") center/contain no-repeat;
}
.sns_links_header {
  gap: clamp(2px, calc(-3.52px + 0.6vw), 8px);
  color: inherit;
}
.sns_links_menu {
  color: #fff;
}
@media (max-width: 919px) {
  .sns_links_menu {
    justify-content: flex-start;
    gap: 8px;
  }
}
@media (min-width: 920px) {
  .sns_links_menu {
    justify-content: center;
    gap: 4px;
  }
}

.sake_menu_item {
  display: block;
  min-width: 0;
  color: inherit;
}
@media (max-width: 919px) {
  .sake_menu_item {
    width: fit-content;
  }
}
@media (hover: hover) and (pointer: fine) and (min-width: 920px) {
  .sake_menu_item:hover .sake_menu_img img {
    transform: scale(1.055);
  }
}
@media (hover: hover) and (pointer: fine) {
  .sake_menu_item:hover .sake_menu_name.slide_hover::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
  .sake_menu_item:hover .sake_menu_name.slide_hover .slide_hover_text {
    transform: translateY(-100%);
  }
}
.sake_menu_item:focus-visible .sake_menu_name.slide_hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.sake_menu_item:focus-visible .sake_menu_name.slide_hover .slide_hover_text {
  transform: translateY(-100%);
}
.sake_menu_img {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 919px) {
  .sake_menu_img {
    display: none;
  }
}
@media (min-width: 920px) {
  .sake_menu_img {
    display: block;
  }
}
.sake_menu_img img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.sake_menu_name {
  display: block;
  width: fit-content;
  color: inherit;
}
@media (max-width: 919px) {
  .sake_menu_name {
    margin-top: 0;
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (min-width: 920px) {
  .sake_menu_name {
    margin-top: 8px;
    font-size: clamp(16px, calc(12.32px + 0.4vw), 20px);
    line-height: 1.4;
  }
}

.mega_menu {
  color: #0A2D88;
  position: fixed;
  z-index: 1100;
  top: 78px;
  left: 50%;
  width: calc(100% - 80px);
  max-width: 1522px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), visibility 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 919px) {
  .mega_menu {
    display: none;
  }
}
.mega_menu.is_open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mega_menu_inner {
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr);
  gap: 76px;
  width: 100%;
  padding: clamp(40px, calc(30.8px + 1vw), 50px) clamp(30px, calc(2.4px + 3vw), 60px) clamp(42px, calc(27.28px + 1.6vw), 58px);
}
.mega_menu_title {
  display: block;
  width: fit-content;
  color: inherit;
  font-size: clamp(30px, calc(20.8px + 1vw), 40px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.04em;
}
.mega_menu_title span {
  display: block;
}
.mega_menu_grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: start;
  gap: clamp(10px, calc(4.48px + 0.6vw), 16px) clamp(12px, calc(4.64px + 0.8vw), 20px);
}

.global_nav {
  position: relative;
  z-index: 1201;
  flex: 0 0 auto;
}
@media (max-width: 919px) {
  .global_nav {
    width: 48px;
    height: 36px;
    margin-left: 0;
  }
}
@media (min-width: 920px) {
  .global_nav {
    width: 48px;
    height: 42px;
  }
}
.global_nav_toggle {
  position: absolute;
  z-index: 1203;
  top: 50%;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  appearance: none;
  cursor: pointer;
  transform: translateY(-50%);
}
@media (max-width: 919px) {
  .global_nav_toggle {
    gap: 0;
    width: 48px;
    min-width: 48px;
    height: 36px;
  }
}
@media (min-width: 920px) {
  .global_nav_toggle {
    gap: 18px;
    width: max-content;
    min-width: 48px;
    height: 42px;
  }
}
.global_nav_toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
}
.global_nav_toggle_label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}
.global_nav_toggle_text {
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media (max-width: 919px) {
  .global_nav_toggle_text {
    display: none !important;
  }
}
@media (min-width: 920px) {
  .global_nav_toggle_text {
    display: none;
  }
}
.global_nav_toggle_icon {
  position: relative;
  display: block;
  flex: 0 0 auto;
}
@media (max-width: 919px) {
  .global_nav_toggle_icon {
    width: 48px;
    height: 36px;
  }
}
@media (min-width: 920px) {
  .global_nav_toggle_icon {
    width: 48px;
    height: 36px;
  }
}
.global_nav_toggle_bar {
  position: absolute;
  left: 0;
  display: block;
  width: 48px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: top 0.8s cubic-bezier(0.22, 1, 0.36, 1), bottom 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.global_nav_toggle_bar_top {
  top: 12px;
}
.global_nav_toggle_bar_btm {
  bottom: 12px;
}
@media (min-width: 920px) {
  .global_nav_toggle.is_active .global_nav_toggle_text {
    display: block;
    animation: global_nav_toggle_text_fade 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}
.global_nav_toggle.is_active .global_nav_toggle_bar_top {
  top: 17px;
  transform: rotate(20deg);
}
.global_nav_toggle.is_active .global_nav_toggle_bar_btm {
  bottom: 17px;
  transform: rotate(-20deg);
}
.global_nav_overlay {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: block;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #0a2d88;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), visibility 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.global_nav_overlay.is_open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.global_nav_container {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}
.global_nav_container_inner {
  min-height: 100%;
  margin: 0 auto;
}
@media (max-width: 919px) {
  .global_nav_container_inner {
    width: 100%;
    max-width: none;
    padding: 110px 20px 38px;
  }
}
@media (min-width: 920px) {
  .global_nav_container_inner {
    width: calc(100% - 80px);
    max-width: 1385px;
    padding: clamp(180px, calc(134px + 5vw), 230px) 0 clamp(50px, calc(31.6px + 2vw), 70px);
  }
}
@media (max-width: 919px) {
  .global_nav_mobile_head {
    display: flex;
    align-items: center;
    min-height: 80px;
    padding-right: 68px;
  }
}
@media (min-width: 920px) {
  .global_nav_mobile_head {
    display: none;
  }
}
.global_nav_mobile_logo {
  color: #fff;
}
@media (max-width: 919px) {
  .global_nav_mobile_logo {
    display: block;
    width: 136px;
  }
}
@media (min-width: 920px) {
  .global_nav_mobile_logo {
    display: none;
  }
}
.global_nav_mobile_logo .site_header_logo_icon {
  width: 100%;
}
.global_nav_main {
  align-items: start;
}
@media (max-width: 919px) {
  .global_nav_main {
    display: block;
  }
}
@media (min-width: 920px) {
  .global_nav_main {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
  }
}
.global_nav_top_link {
  display: block;
  width: fit-content;
  color: inherit;
}
@media (max-width: 919px) {
  .global_nav_top_link {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.5;
  }
}
@media (min-width: 920px) {
  .global_nav_top_link {
    margin-bottom: clamp(16px, calc(10.48px + 0.6vw), 22px);
    font-size: clamp(18px, calc(12.48px + 0.6vw), 24px);
    line-height: 1.5;
  }
}
@media (max-width: 919px) {
  .global_nav_sake {
    width: auto;
  }
}
@media (min-width: 920px) {
  .global_nav_sake {
    width: 49.451264%;
  }
}
.global_nav_sake_title {
  display: block;
  width: fit-content;
  color: inherit;
}
@media (max-width: 919px) {
  .global_nav_sake_title {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.5;
  }
}
@media (min-width: 920px) {
  .global_nav_sake_title {
    margin-bottom: clamp(12px, calc(6.48px + 0.6vw), 18px);
    font-size: clamp(18px, calc(12.48px + 0.6vw), 24px);
    line-height: 1.5;
  }
}
.global_nav_sake_grid {
  display: grid;
}
@media (max-width: 919px) {
  .global_nav_sake_grid {
    grid-template-columns: repeat(3, max-content);
    column-gap: 24px;
    row-gap: 6px;
    padding-left: 12px;
  }
}
@media (min-width: 920px) {
  .global_nav_sake_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 16px;
  }
}
.global_nav_menu {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 919px) {
  .global_nav_menu {
    display: block;
    width: auto;
    margin-top: 16px;
  }
}
@media (min-width: 920px) {
  .global_nav_menu {
    width: 41.772563%;
    margin-top: 0;
  }
}
.global_nav_menu_list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 919px) {
  .global_nav_menu_list {
    gap: 0;
  }
}
@media (min-width: 920px) {
  .global_nav_menu_list {
    gap: clamp(12px, calc(4.64px + 0.8vw), 20px);
  }
}
@media (max-width: 919px) {
  .global_nav_menu_list_main {
    gap: 14px;
  }
}
@media (max-width: 919px) {
  .global_nav_menu_list_main .global_nav_menu_item:first-child {
    display: none;
  }
}
@media (max-width: 919px) {
  .global_nav_menu_list_main .global_nav_menu_link {
    font-size: 20px;
    line-height: 1.5;
  }
}
@media (max-width: 919px) {
  .global_nav_menu_list_main .global_nav_menu_link small {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.5;
  }
}
@media (max-width: 919px) {
  .global_nav_menu_list_sub {
    display: grid;
    grid-template-columns: minmax(0, max-content) minmax(0, max-content);
    column-gap: 10px;
    row-gap: 9px;
    margin-top: 30px;
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
  }
}
@media (max-width: 919px) {
  .global_nav_menu_list_sub .global_nav_menu_item {
    margin: 0;
  }
}
@media (max-width: 919px) {
  .global_nav_menu_list_sub .global_nav_menu_item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
}
@media (max-width: 919px) {
  .global_nav_menu_list_sub .global_nav_menu_item:nth-child(2) {
    grid-column: 1;
    grid-row: 4;
  }
}
@media (max-width: 919px) {
  .global_nav_menu_list_sub .global_nav_menu_item:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }
}
@media (max-width: 919px) {
  .global_nav_menu_list_sub .global_nav_menu_item:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
  }
}
@media (max-width: 919px) {
  .global_nav_menu_list_sub .global_nav_menu_item:nth-child(5) {
    grid-column: 2;
    grid-row: 1/span 2;
  }
}
@media (max-width: 919px) {
  .global_nav_menu_list_sub .global_nav_menu_item:nth-child(6) {
    grid-column: 2;
    grid-row: 3;
  }
}
@media (max-width: 919px) {
  .global_nav_menu_list_sub .global_nav_menu_item:nth-child(7) {
    grid-column: 2;
    grid-row: 4;
  }
}
@media (max-width: 919px) {
  .global_nav_menu_list_sub .global_nav_menu_item:nth-child(8) {
    grid-column: 2;
    grid-row: 5;
  }
}
@media (max-width: 919px) {
  .global_nav_menu_list_sub .global_nav_menu_link {
    font-size: 18px;
    line-height: 1.5;
  }
}
@media (max-width: 919px) {
  .global_nav_menu_list_sub .global_nav_menu_link small {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
  }
}
@media (max-width: 919px) {
  .global_nav_menu_list_sub .global_nav_menu_item_download {
    margin-top: 0;
  }
}
.global_nav_menu_list_sub .global_nav_menu_item_download .global_nav_menu_link .slide_hover_text {
  display: flex;
  flex-direction: column;
}
@media (min-width: 920px) {
  .global_nav_menu_list_sub .global_nav_menu_item_download .global_nav_menu_link .slide_hover_text {
    flex-direction: row;
    align-items: center;
  }
}
@media (max-width: 919px) {
  .global_nav_menu_list_sub .global_nav_menu_item_download .global_nav_menu_link small {
    display: block;
  }
}
.global_nav_menu_list_sub .global_nav_menu_item_download .global_nav_menu_link small {
  margin-top: 0;
  margin-right: 8px;
}
@media (max-width: 919px) {
  .global_nav_menu_list_sub .global_nav_menu_item_download .global_nav_menu_link small {
    font-size: 14px;
  }
}
@media (max-width: 919px) {
  .global_nav_menu_list_sub .global_nav_menu_item_download .global_nav_menu_link span {
    font-size: 18px;
    line-height: 1.45;
  }
}
@media (max-width: 919px) {
  .global_nav_menu_list_sub .global_nav_menu_item_small {
    margin-top: 0;
  }
}
@media (max-width: 919px) {
  .global_nav_menu_list_sub .global_nav_menu_item_small .global_nav_menu_link {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media (max-width: 919px) {
  .global_nav_menu_list_sub .global_nav_menu_item_recruit {
    align-self: start;
    margin-top: 8px;
  }
}
@media (min-width: 920px) {
  .global_nav_menu_list_sub .global_nav_menu_item_recruit {
    margin-top: clamp(4px, calc(0.32px + 0.4vw), 8px);
  }
}
.global_nav_menu_item {
  margin: 0;
  padding: 0;
}
@media (min-width: 920px) {
  .global_nav_menu_item_small {
    margin-top: 0;
  }
}
@media (min-width: 920px) {
  .global_nav_menu_item_small .global_nav_menu_link {
    font-size: clamp(16px, calc(12.32px + 0.4vw), 20px);
  }
}
.global_nav_menu_link {
  display: block;
  width: fit-content;
  color: inherit;
  letter-spacing: -0.025em;
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 920px) {
  .global_nav_menu_link:hover {
    opacity: 0.8;
  }
}
@media (max-width: 919px) {
  .global_nav_menu_link {
    font-size: 20px;
    line-height: 1.55;
  }
}
@media (min-width: 920px) {
  .global_nav_menu_link {
    font-size: clamp(16px, calc(8.64px + 0.8vw), 24px);
    line-height: 1.5;
  }
}
@media (max-width: 919px) {
  .global_nav_menu_link small {
    margin-top: 2px;
    font-size: 15px;
    line-height: 1.5;
  }
}
@media (min-width: 920px) {
  .global_nav_menu_link small {
    margin-top: clamp(4px, calc(0.32px + 0.4vw), 8px);
    font-size: clamp(12px, calc(8.32px + 0.4vw), 16px);
    line-height: 1.5;
  }
}
.global_nav_menu_child_item {
  padding-left: 12px;
}
.global_nav_menu_child_link {
  display: inline-block;
  font-size: 16px;
  margin-top: 10px;
}
@media (min-width: 920px) {
  .global_nav_menu_child_link {
    font-size: clamp(14px, calc(10.32px + 0.4vw), 18px);
    opacity: 0.5;
    margin-top: 0;
  }
}
.global_nav_recruit_btn {
  width: fit-content;
  min-height: 40px;
  min-width: 140px;
  margin: 0;
  padding: 8px 18px;
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .global_nav_recruit_btn {
    min-height: clamp(34px, calc(28.48px + 0.6vw), 40px);
    padding: clamp(6px, calc(4.16px + 0.2vw), 8px) clamp(14px, calc(10.32px + 0.4vw), 18px);
    font-size: clamp(12px, calc(10.16px + 0.2vw), 14px);
  }
}
.global_nav_bottom {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 919px) {
  .global_nav_bottom {
    flex-direction: column;
    gap: 26px;
    margin-top: 34px;
    padding-top: 39px;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
  }
}
@media (min-width: 920px) {
  .global_nav_bottom {
    flex-direction: row;
    justify-content: space-between;
    gap: clamp(20px, calc(1.6px + 2vw), 40px);
    margin-top: clamp(30px, calc(6.08px + 2.6vw), 56px);
    padding-top: clamp(20px, calc(3.44px + 1.8vw), 38px);
    border-top: 1px solid rgba(255, 255, 255, 0.35);
  }
}
@media (max-width: 919px) {
  .global_nav_company {
    display: block;
    width: 100%;
  }
}
@media (min-width: 920px) {
  .global_nav_company {
    display: flex;
    align-items: center;
    gap: clamp(20px, calc(10.8px + 1vw), 30px);
  }
}
.global_nav_company_logo {
  flex: 0 0 auto;
  width: 54px;
  color: inherit;
}
@media (max-width: 919px) {
  .global_nav_company_logo {
    display: none;
  }
}
@media (min-width: 920px) {
  .global_nav_company_logo {
    display: block;
  }
}
.global_nav_company_logo img {
  display: block;
  width: 100%;
  height: auto;
}
.global_nav_company_info {
  color: inherit;
  font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
}
@media (max-width: 919px) {
  .global_nav_company_info {
    width: 100%;
    font-size: 22px;
  }
}
.global_nav_company_name {
  margin: 0;
}
@media (max-width: 919px) {
  .global_nav_company_name {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.5;
  }
}
.global_nav_company_address {
  margin: 0;
}
@media (max-width: 919px) {
  .global_nav_company_address {
    font-size: 16px;
  }
}
.global_nav_company_contact {
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 919px) {
  .global_nav_company_contact {
    font-size: 16px;
  }
}

.screen_reader_text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

@keyframes global_nav_toggle_text_fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.site_header_language {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  max-width: 40px;
  margin: 0 16px 0 0 !important;
  padding: 0 !important;
  color: inherit;
  box-sizing: border-box;
}
@media (min-width: 920px) {
  .site_header_language {
    flex-basis: 52px;
    width: 52px;
    min-width: 52px;
    max-width: 52px;
    margin: 0 12px !important;
  }
}
.site_header_language .trp-shortcode-switcher__wrapper,
.site_header_language .trp-shortcode-switcher,
.site_header_language .trp-current-language-item__wrapper {
  position: relative !important;
  display: flex !important;
  flex: 0 0 100% !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  color: inherit !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}
.site_header_language .trp-current-language-item__wrapper::before, .site_header_language .trp-current-language-item__wrapper::after {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  content: none !important;
}
.site_header_language .trp-current-language-item__wrapper:not(.trp-hide-arrow) {
  padding-right: 0 !important;
}
.site_header_language .trp-language-item,
.site_header_language .trp-current-language-item {
  position: relative !important;
  display: flex !important;
  flex: 0 0 100% !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 2px 0 !important;
  color: inherit !important;
  font-family: inherit !important;
  font-size: clamp(12px, calc(8.32px + 0.4vw), 16px) !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  letter-spacing: 0.02em !important;
  text-align: center !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}
.site_header_language a,
.site_header_language button {
  display: flex !important;
  flex: 0 0 100% !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 2px 0 !important;
  color: inherit !important;
  font-family: inherit !important;
  font-size: clamp(12px, calc(8.32px + 0.4vw), 16px) !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  letter-spacing: 0.02em !important;
  text-align: center !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  background: transparent !important;
  border: 0 !important;
  box-sizing: border-box !important;
}
.site_header_language .trp-language-item-name {
  display: block !important;
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: inherit !important;
  text-align: center !important;
  white-space: nowrap !important;
  transition: color 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.site_header_language .trp-switcher-dropdown-list {
  margin: 0 !important;
  padding: 0 !important;
  color: inherit !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.site_header_language svg,
.site_header_language img,
.site_header_language .trp-flag-image {
  display: none !important;
}

.lang_en .site_header_nav_link {
  font-size: clamp(12px, calc(9.24px + 0.3vw), 15px);
}
.lang_en .site_header_shop {
  font-size: clamp(12px, calc(9.24px + 0.3vw), 15px);
}
.lang_en .site_header_nav_list {
  gap: clamp(4px, calc(-3.36px + 0.8vw), 12px);
}
.lang_en .sns_links_link {
  width: 40px;
  height: 40px;
}
@media (min-width: 920px) {
  .lang_en .sns_links_link {
    width: clamp(24px, calc(18.48px + 0.6vw), 30px);
    height: clamp(24px, calc(18.48px + 0.6vw), 30px);
  }
}
@media (min-width: 920px) {
  .lang_en .global_nav_menu {
    gap: 20px;
  }
}
@media (max-width: 919px) {
  .lang_en .global_nav_sake_grid {
    grid-template-columns: repeat(2, max-content);
  }
}
.lang_en .mega_menu_inner {
  display: grid;
  grid-template-columns: 264px minmax(0, 1fr);
  gap: 20px;
}
.lang_en .mega_menu_title {
  font-size: clamp(24px, calc(18.48px + 0.6vw), 30px);
}
@media (max-width: 1399px) {
  .lang_en .site_header_nav_list {
    display: none;
  }
}

.site_footer {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  color: #fff;
  background-color: transparent;
  padding: 120px 0 36px;
  z-index: 1;
}
@media (min-width: 920px) {
  .site_footer {
    padding: 120px 0 70px;
  }
}
.site_footer::before {
  position: absolute;
  top: 1px;
  left: 50%;
  z-index: 0;
  width: 100vw;
  height: 17.9487179487vw;
  background-image: url("../img/common/footer_wave_sp.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}
.site_footer::after {
  position: absolute;
  top: calc(17.9487179487vw - 1px);
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  background-color: #0a2d88;
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}
@media (min-width: 920px) {
  .site_footer::before {
    height: 15.625vw;
    background-image: url("../img/common/footer_wave.svg");
  }
  .site_footer::after {
    top: calc(15.625vw - 1px);
  }
}
.site_footer_inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 920px) {
  .site_footer_inner {
    max-width: 1920px;
    min-height: 0;
    padding: 0 clamp(20px, calc(-16.8px + 4vw), 60px);
  }
}
.site_footer_logo {
  width: 64px;
  height: auto;
  margin: 0 auto 38px;
}
@media (min-width: 920px) {
  .site_footer_logo {
    width: 100px;
    margin: 0 0 clamp(52px, calc(28.08px + 2.6vw), 78px);
  }
}
.site_footer_logo_link {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}
@media (min-width: 920px) {
  .site_footer_logo_link {
    height: 100%;
  }
}
.site_footer_logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (min-width: 920px) {
  .site_footer_logo img {
    height: 100%;
  }
}
.site_footer_body {
  display: block;
}
@media (min-width: 920px) {
  .site_footer_body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.site_footer_nav {
  display: none;
  flex-shrink: 0;
}
@media (min-width: 920px) {
  .site_footer_nav {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: clamp(20px, calc(-16.8px + 4vw), 60px);
  }
}
.site_footer_nav_column {
  min-width: 0;
}
.site_footer_nav_heading {
  margin: 0 0 4px;
  padding: 0;
}
.site_footer_nav_heading_link {
  display: inline-block;
  color: inherit;
  font-size: clamp(16px, calc(12.32px + 0.4vw), 20px);
  line-height: 1.5;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.site_footer_nav_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site_footer_nav_list_large .site_footer_nav_item:not(:last-child) {
  margin-bottom: 11px;
}
.site_footer_nav_list_large .site_footer_nav_item:has(+ .site_footer_nav_item_small) {
  margin-bottom: 0;
}
.site_footer_nav_list_large .site_footer_nav_item:has(+ .site_footer_nav_item_download) {
  margin-bottom: 12px;
}
.site_footer_nav_list_large .site_footer_nav_item:has(+ .site_footer_nav_item_utility) {
  margin-bottom: 3px;
}
.site_footer_nav_list_large .site_footer_nav_item.site_footer_nav_item_download {
  margin-bottom: 22px;
}
.site_footer_nav_list_large .site_footer_nav_link {
  line-height: 1.25;
}
.site_footer_nav_link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 920px) {
  .site_footer_nav_link {
    font-size: clamp(16px, calc(12.32px + 0.4vw), 20px);
  }
}
.site_footer_nav_item {
  margin: 0;
  padding: 0;
}
.site_footer_nav_item_small {
  padding-left: 12px;
}
.site_footer_nav_item_small .site_footer_nav_link {
  font-size: clamp(12px, calc(9.24px + 0.3vw), 15px);
  line-height: 1.55;
  opacity: 0.5;
}
.site_footer_nav_item_group_start {
  margin-top: 11px;
}
.site_footer_nav_item_utility .site_footer_nav_link {
  font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  line-height: 1.5;
}
.site_footer_nav_item_recruit {
  margin-top: clamp(16px, calc(8.64px + 0.8vw), 24px);
}
.site_footer_nav_caption {
  margin-right: 8px;
  font-size: clamp(12px, calc(11.08px + 0.1vw), 13px);
  line-height: 1;
}
.site_footer_nav_item_download .slide_hover_text {
  display: flex;
  align-items: center;
}
.site_footer_recruit_btn {
  width: fit-content;
  min-height: 40px;
  min-width: 140px;
  margin: 0;
  padding: 8px 18px;
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .site_footer_recruit_btn {
    min-height: clamp(34px, calc(28.48px + 0.6vw), 40px);
    padding: clamp(6px, calc(4.16px + 0.2vw), 8px) clamp(14px, calc(10.32px + 0.4vw), 18px);
    font-size: clamp(12px, calc(10.16px + 0.2vw), 14px);
  }
}
.site_footer_info {
  width: 100%;
  min-width: 0;
  flex-shrink: 0;
  padding-top: 0;
  text-align: center;
}
@media (min-width: 920px) {
  .site_footer_info {
    width: clamp(320px, calc(202.24px + 12.8vw), 448px);
    padding-top: 10px;
    text-align: left;
  }
}
.site_footer_company {
  margin-bottom: 24px;
  font-size: 16px;
}
@media (min-width: 920px) {
  .site_footer_company {
    margin-bottom: clamp(20px, calc(14.48px + 0.6vw), 26px);
    font-size: clamp(12px, calc(9.24px + 0.3vw), 15px);
  }
}
.site_footer_company .tel {
  margin-top: 12px;
  display: inline-block;
}
.site_footer_company .fax {
  margin-left: 10px;
}
@media (min-width: 920px) {
  .site_footer_company .fax {
    margin-left: 12px;
  }
}
.site_footer_company .map {
  color: #fff;
  letter-spacing: 0.05em;
}
.site_footer_company .map.txt_link {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  padding: 0 0 3px 0;
}
@media (min-width: 920px) {
  .site_footer_company .map.txt_link {
    font-size: clamp(12px, calc(9.24px + 0.3vw), 15px);
  }
}
.site_footer_company .map.txt_link::after {
  background-color: #fff;
}
.site_footer_company_contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 18px;
}
@media (min-width: 920px) {
  .site_footer_company_contact {
    align-items: normal;
    justify-content: flex-start;
    gap: 0 clamp(12px, calc(4.64px + 0.8vw), 20px);
  }
}
.site_footer_company_contact a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.site_footer_company_separator {
  display: inline-block;
}
.site_footer_sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}
@media (min-width: 920px) {
  .site_footer_sns {
    justify-content: flex-start;
    gap: 4px;
    margin: 0 0 clamp(32px, calc(19.12px + 1.4vw), 46px);
  }
}
.site_footer_sns_item {
  margin: 0;
  padding: 0;
}
.site_footer_sns_link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 920px) {
  .site_footer_sns_link {
    height: clamp(20px, calc(1.6px + 2vw), 40px);
  }
}
@media (min-width: 920px) {
  .site_footer_sns_link:hover {
    opacity: 0.5;
  }
}
.site_footer_sns_link img {
  display: block;
  width: auto;
  height: 32px;
  max-width: none;
  object-fit: contain;
}
@media (min-width: 920px) {
  .site_footer_sns_link img {
    height: clamp(20px, calc(1.6px + 2vw), 40px);
  }
}
.site_footer_attention {
  width: 100%;
  max-width: 290px;
  margin: 0 auto 35px;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
  text-align: center;
}
@media (min-width: 920px) {
  .site_footer_attention {
    width: auto;
    max-width: none;
    margin: 0 0 clamp(16px, calc(12.32px + 0.4vw), 20px);
    text-align: justify;
  }
}
.site_footer_copy {
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}
@media (min-width: 920px) {
  .site_footer_copy {
    line-height: 1.5;
    text-align: left;
  }
}

.lang_en .site_footer_nav_caption {
  display: block;
}
@media (max-width: 1399px) {
  .lang_en .site_footer_body {
    flex-direction: column;
    gap: 80px;
    width: auto;
  }
}
.lang_en .site_footer_attention {
  max-width: none;
}

.products_category_index {
  padding: 20px 0 100px;
}
@media (min-width: 920px) {
  .products_category_index {
    padding: clamp(20px, calc(10.8px + 1vw), 30px) 0 clamp(120px, calc(64.8px + 6vw), 180px);
  }
}
.products_category_index_items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 14px;
}
@media (min-width: 920px) {
  .products_category_index_items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(36px, calc(15.76px + 2.2vw), 58px) clamp(16px, calc(6.8px + 1vw), 26px);
  }
}
.products_category_index_item {
  min-width: 0;
}
.products_category_index_link {
  display: block;
  text-decoration: none;
}
.products_category_index_img {
  overflow: hidden;
  aspect-ratio: 360/230;
  background-color: #e9edf3;
}
.products_category_index_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.products_category_index_body {
  padding-top: 12px;
}
.products_category_index_en {
  margin: 0 0 3px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  line-height: 1.4;
}
@media (min-width: 920px) {
  .products_category_index_en {
    font-size: clamp(10px, calc(7.24px + 0.3vw), 13px);
  }
}
.products_category_index_ttl {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .products_category_index_ttl {
    font-size: clamp(17px, calc(12.4px + 0.5vw), 22px);
  }
}
.products_category_index_txt {
  margin: 7px 0 0;
  font-size: 11px;
  line-height: 1.7;
}
@media (min-width: 920px) {
  .products_category_index_txt {
    font-size: clamp(11px, calc(8.24px + 0.3vw), 14px);
  }
}
.products_category_index_more {
  display: inline-block;
  margin-top: 10px;
  padding-bottom: 2px;
  border-bottom: 1px solid currentcolor;
  font-size: 10px;
}
@media (min-width: 920px) {
  .products_category_index_more {
    font-size: clamp(10px, calc(7.24px + 0.3vw), 13px);
  }
}
@media (hover: hover) {
  .products_category_index_link:hover .products_category_index_img img {
    transform: scale(1.025);
  }
}
.products_category_story {
  margin-bottom: 90px;
}
@media (min-width: 920px) {
  .products_category_story {
    margin-bottom: clamp(80px, calc(6.4px + 8vw), 160px);
  }
}
.products_category_story_inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
@media (min-width: 920px) {
  .products_category_story_inner {
    flex-direction: row;
  }
}
@media (min-width: 920px) {
  .products_category_story_content {
    width: 46.6499162479%;
  }
}
.products_category_story_catch {
  margin: 0 0 10px;
  font-size: 18px;
}
@media (min-width: 920px) {
  .products_category_story_catch {
    margin-bottom: clamp(10px, calc(4.48px + 0.6vw), 16px);
    font-size: clamp(20px, calc(16.32px + 0.4vw), 24px);
  }
}
.products_category_story_txt {
  margin: 0;
  font-size: 13px;
  text-align: justify;
}
@media (min-width: 920px) {
  .products_category_story_txt {
    font-size: clamp(15px, calc(12.24px + 0.3vw), 18px);
  }
}
.products_category_story_img {
  overflow: hidden;
}
@media (min-width: 920px) {
  .products_category_story_img {
    width: 46.6499162479%;
  }
}
.products_category_story_img img {
  display: block;
  width: 100%;
  height: auto;
}
.products_category_taste {
  margin-bottom: 130px;
}
@media (min-width: 920px) {
  .products_category_taste {
    margin-bottom: clamp(160px, calc(84.56px + 8.2vw), 242px);
  }
}
.products_category_taste_img {
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}
@media (min-width: 920px) {
  .products_category_taste_img {
    padding: 0;
  }
}
.products_category_taste_img img {
  display: block;
  width: 100%;
  height: auto;
}
.products_products_items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 12px;
}
.products_products_items > * {
  min-width: 0;
  flex: 0 0 calc((100% - 14px) / 2);
}
@media (min-width: 920px) {
  .products_products_items {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(40px, calc(1.36px + 4.2vw), 82px) clamp(24px, calc(7.44px + 1.8vw), 42px);
    justify-content: center;
  }
  .products_products_items > * {
    flex: 0 0 calc((100% - clamp(24px, calc(7.44px + 1.8vw), 42px) - clamp(24px, calc(7.44px + 1.8vw), 42px)) / 3);
  }
}
.products_daily_products_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 42px 14px;
}
.products_daily_products_items > * {
  min-width: 0;
  flex: 0 0 calc((100% - 14px) / 2);
}
@media (min-width: 920px) {
  .products_daily_products_items {
    gap: clamp(40px, calc(1.36px + 4.2vw), 82px) clamp(24px, calc(7.44px + 1.8vw), 42px);
  }
  .products_daily_products_items > * {
    flex: 0 0 calc((100% - clamp(24px, calc(7.44px + 1.8vw), 42px) - clamp(24px, calc(7.44px + 1.8vw), 42px)) / 3);
  }
}
.products_product_card {
  min-width: 0;
}
@media (min-width: 920px) {
  .products_product_card_link .txt_link {
    font-size: clamp(14px, calc(10.32px + 0.4vw), 18px);
  }
}
@media (min-width: 920px) {
  .products_product_card_link:hover .products_product_card_img img {
    transform: scale(1.025);
  }
}
.products_product_card_img {
  overflow: hidden;
  aspect-ratio: 283/396;
  margin-bottom: 16px;
  background-color: #e9edf3;
}
@media (min-width: 920px) {
  .products_product_card_img {
    margin-bottom: clamp(16px, calc(8.64px + 0.8vw), 24px);
  }
}
.products_product_card_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.products_product_card_body {
  text-align: center;
}
.products_product_card_body .txt_link {
  margin: 0 auto;
  display: block;
}
@media (max-width: 919px) {
  .products_product_card_body .txt_link {
    font-size: 12px;
  }
}
.products_product_card_release {
  width: fit-content;
  margin: 0 auto 10px;
  padding: 11px 12px;
  border: 1px solid currentcolor;
  font-size: 12px;
  line-height: 1.2;
  border-radius: 4px;
}
@media (min-width: 920px) {
  .products_product_card_release {
    margin-bottom: clamp(12px, calc(8.32px + 0.4vw), 16px);
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.products_product_card_ttl {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}
@media (min-width: 920px) {
  .products_product_card_ttl {
    margin-bottom: clamp(12px, calc(10.16px + 0.2vw), 14px);
    font-size: clamp(18px, calc(12.48px + 0.6vw), 24px);
    line-height: 1.5;
  }
}
.products_product_card_txt {
  margin: 0 0 10px;
  font-size: 12px;
  text-align: center;
  letter-spacing: -0.05em;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .products_product_card_txt {
    line-height: 1.75;
    margin-bottom: clamp(8px, calc(4.32px + 0.4vw), 12px);
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.products_product_card_sizes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin-bottom: 14px;
}
@media (min-width: 920px) {
  .products_product_card_sizes {
    margin-bottom: clamp(16px, calc(8.64px + 0.8vw), 24px);
    gap: 8px;
  }
}
.products_product_card_size {
  display: inline-block;
  padding: 6px 5px;
  border-radius: 4px;
  background-color: #f0f3fa;
  font-size: 10px;
  line-height: 1;
}
@media (min-width: 920px) {
  .products_product_card_size {
    font-size: clamp(12px, calc(10.16px + 0.2vw), 14px);
    padding: 10px 8px;
  }
}
.products_shop {
  margin-top: 72px;
  text-align: center;
}
@media (min-width: 920px) {
  .products_shop {
    margin-top: clamp(80px, calc(24.8px + 6vw), 140px);
  }
}
.products_shop .btn {
  max-width: 320px;
}
@media (min-width: 920px) {
  .products_shop .btn {
    font-size: clamp(18px, calc(12.48px + 0.6vw), 24px);
    max-width: clamp(480px, calc(369.6px + 12vw), 600px);
  }
}
.products_shop_link {
  display: inline-flex;
  min-width: min(100%, 320px);
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border: 1px solid #0a2d88;
  color: #0a2d88;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
}
@media (min-width: 920px) {
  .products_shop_link {
    min-width: clamp(340px, calc(257.2px + 9vw), 430px);
    min-height: clamp(60px, calc(48.96px + 1.2vw), 72px);
    font-size: clamp(14px, calc(11.24px + 0.3vw), 17px);
  }
}
.products_shop_mall {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 920px) {
  .products_shop_mall {
    flex-direction: row;
    gap: clamp(40px, calc(21.6px + 2vw), 60px);
    margin-top: clamp(32px, calc(24.64px + 0.8vw), 40px);
  }
}
.products_shop_mall .txt_link {
  letter-spacing: 0;
}
@media (min-width: 920px) {
  .products_shop_mall .txt_link {
    font-size: clamp(18px, calc(12.48px + 0.6vw), 24px);
  }
}
.products_daily_intro {
  margin-bottom: 120px;
}
@media (min-width: 920px) {
  .products_daily_intro {
    margin-bottom: clamp(100px, calc(44.8px + 6vw), 160px);
  }
}
.products_daily_intro_items {
  display: grid;
  gap: 80px;
  padding: 0 10px;
}
@media (min-width: 920px) {
  .products_daily_intro_items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(40px, calc(3.2px + 4vw), 80px);
    padding: 0;
  }
}
@media (min-width: 920px) {
  .products_daily_intro_item {
    display: flex;
    flex-direction: column;
  }
}
.products_daily_intro_name {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 24px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  writing-mode: vertical-rl;
}
@media (min-width: 920px) {
  .products_daily_intro_name {
    width: clamp(240px, calc(166.4px + 8vw), 320px);
    max-width: none;
    margin: 0 auto clamp(28px, calc(15.12px + 1.4vw), 42px);
  }
}
.products_daily_intro_lead {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 920px) {
  .products_daily_intro_lead {
    font-size: clamp(18px, calc(12.48px + 0.6vw), 24px);
    line-height: 2;
  }
}
.products_daily_intro_txt {
  margin: 24px 0 0;
  font-size: 14px;
  text-align: justify;
}
@media (min-width: 920px) {
  .products_daily_intro_txt {
    flex: 1 1 auto;
    margin: clamp(28px, calc(15.12px + 1.4vw), 42px) 0 0;
    font-size: clamp(15px, calc(12.24px + 0.3vw), 18px);
  }
}
.products_daily_intro_img {
  margin-top: 24px;
}
@media (min-width: 920px) {
  .products_daily_intro_img {
    margin-top: clamp(40px, calc(21.6px + 2vw), 60px);
  }
}
.products_daily_intro_img img {
  display: block;
  width: 100%;
  height: auto;
}
.products_series + .products_series {
  margin-top: 120px;
}
@media (min-width: 920px) {
  .products_series + .products_series {
    margin-top: clamp(120px, calc(92.4px + 3vw), 150px);
  }
}
.products_series_ttl {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 70px;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2;
  writing-mode: vertical-rl;
}
@media (min-width: 920px) {
  .products_series_ttl {
    width: clamp(240px, calc(166.4px + 8vw), 320px);
    max-width: none;
    margin-bottom: clamp(56px, calc(33.92px + 2.4vw), 80px);
  }
}
.products_other_intro .subPage_intro_lead {
  max-width: 760px;
}
.products_other_nav {
  margin-bottom: 32px;
}
@media (min-width: 920px) {
  .products_other_nav {
    margin-bottom: clamp(60px, calc(26.88px + 3.6vw), 96px);
  }
}
.products_other_nav_items {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 920px) {
  .products_other_nav_items {
    flex-wrap: wrap;
    gap: clamp(24px, calc(9.28px + 1.6vw), 40px);
  }
}
.products_other_nav_item {
  min-width: 0;
  flex: 1 1 0;
  margin: 0;
  padding: 0;
}
@media (min-width: 920px) {
  .products_other_nav_item {
    flex: 0 0 auto;
  }
}
.products_other_nav_link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  white-space: nowrap;
}
@media (min-width: 920px) {
  .products_other_nav_link {
    gap: 16px;
    font-size: clamp(24px, calc(16.64px + 0.8vw), 32px);
    white-space: normal;
  }
}
.products_other_nav_icon {
  display: block;
  flex: 0 0 auto;
  width: 8px;
  height: 6px;
  background-color: currentcolor;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media (min-width: 920px) {
  .products_other_nav_icon {
    width: 14px;
    height: 10px;
  }
}
.products_detail_products {
  padding-top: 72px;
}
@media (min-width: 920px) {
  .products_detail_products {
    padding-top: 0;
  }
}
.products_detail_group {
  scroll-margin-top: 100px;
}
@media (min-width: 920px) {
  .products_detail_group {
    scroll-margin-top: 150px;
  }
}
.products_detail_group:not(:last-child) {
  margin-bottom: 90px;
}
@media (min-width: 920px) {
  .products_detail_group:not(:last-child) {
    margin-bottom: clamp(110px, calc(73.2px + 4vw), 150px);
  }
}
.products_detail_group_ttl {
  margin: 0 0 26px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .products_detail_group_ttl {
    margin-bottom: clamp(46px, calc(25.76px + 2.2vw), 68px);
    font-size: clamp(32px, calc(17.28px + 1.6vw), 48px);
  }
}
.products_detail_group_items {
  display: grid;
  gap: 60px;
}
@media (min-width: 920px) {
  .products_detail_group_items {
    gap: clamp(50px, calc(22.4px + 3vw), 80px);
  }
}
.products_product_row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 920px) {
  .products_product_row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
  }
}
.products_product_row_img {
  overflow: hidden;
  aspect-ratio: 1/1;
}
@media (min-width: 920px) {
  .products_product_row_img {
    width: 45.2261306533%;
  }
}
.products_product_row_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products_product_row_body {
  min-width: 0;
}
@media (min-width: 920px) {
  .products_product_row_body {
    width: 49.7487437186%;
    padding-top: clamp(0px, calc(-7.36px + 0.8vw), 8px);
  }
}
.products_product_row_body .btn {
  width: 100%;
  max-width: none;
}
.products_product_row_ttl {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .products_product_row_ttl {
    font-size: clamp(24px, calc(9.28px + 1.6vw), 40px);
  }
}
.products_product_row_lead {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 500;
}
@media (min-width: 920px) {
  .products_product_row_lead {
    margin-top: clamp(14px, calc(2.96px + 1.2vw), 26px);
    font-size: clamp(18px, calc(12.48px + 0.6vw), 24px);
  }
}
.products_product_row_txt {
  margin: 8px 0 0;
  font-size: 14px;
  text-align: justify;
}
@media (min-width: 920px) {
  .products_product_row_txt {
    margin-top: clamp(14px, calc(6.64px + 0.8vw), 22px);
    font-size: clamp(15px, calc(12.24px + 0.3vw), 18px);
  }
}
.products_product_row_specs {
  margin: 14px 0 0;
}
@media (min-width: 920px) {
  .products_product_row_specs {
    margin-top: clamp(18px, calc(12.48px + 0.6vw), 24px);
  }
}
.products_product_row_spec {
  border-bottom: 1px solid rgba(10, 45, 136, 0.3019607843);
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
}
@media (min-width: 920px) {
  .products_product_row_spec {
    grid-template-columns: clamp(160px, calc(104.8px + 6vw), 220px) minmax(0, 1fr);
  }
}
.products_product_row_spec:first-child .products_product_row_spec_name,
.products_product_row_spec:first-child .products_product_row_spec_value {
  padding-top: 0;
}
.products_product_row_spec_name, .products_product_row_spec_value {
  margin: 0;
  padding: 12px 0;
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .products_product_row_spec_name, .products_product_row_spec_value {
    padding: clamp(10px, calc(0.8px + 1vw), 20px) 0;
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.products_product_row_spec_name {
  padding-right: 8px;
  font-weight: 500;
}
@media (min-width: 920px) {
  .products_product_row_spec_name {
    padding-right: 14px;
  }
}
.products_product_row_spec_value {
  min-width: 0;
  overflow-wrap: anywhere;
}
.products_product_row_shop {
  margin-top: 16px;
}
@media (min-width: 920px) {
  .products_product_row_shop {
    margin-top: clamp(12px, calc(4.64px + 0.8vw), 20px);
  }
}
.products_product_row_shop_note {
  margin: 16px 0 0;
  font-size: 10px;
}
@media (min-width: 920px) {
  .products_product_row_shop_note {
    margin-top: clamp(16px, calc(10.48px + 0.6vw), 22px);
    font-size: clamp(15px, calc(12.24px + 0.3vw), 18px);
  }
}
.products_product_row_shop .btn {
  width: 100%;
  min-width: 0;
}
@media (min-width: 920px) {
  .products_product_row_shop .btn {
    min-height: 100px;
  }
}
.products_other_categories {
  padding: 120px 0 130px;
}
@media (min-width: 920px) {
  .products_other_categories {
    padding: clamp(240px, calc(129.6px + 12vw), 360px) 0 clamp(140px, calc(66.4px + 8vw), 220px);
  }
}
.products_other_categories_items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 26px;
  column-gap: 12px;
}
@media (min-width: 920px) {
  .products_other_categories_items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: clamp(24px, calc(9.28px + 1.6vw), 40px);
    column-gap: clamp(24px, calc(9.28px + 1.6vw), 40px);
  }
}
.products_other_categories_item {
  min-width: 0;
}
.products_other_categories_link {
  display: block;
  color: #0a2d88;
  text-decoration: none;
}
.products_other_categories_img {
  overflow: hidden;
  aspect-ratio: 268/134;
  margin-bottom: 10px;
  background-color: #e9edf3;
}
@media (min-width: 920px) {
  .products_other_categories_img {
    margin-bottom: clamp(12px, calc(8.32px + 0.4vw), 16px);
  }
}
.products_other_categories_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.products_other_categories_ttl {
  margin-bottom: 7px;
}
@media (min-width: 920px) {
  .products_other_categories_ttl {
    margin-bottom: clamp(6px, calc(2.32px + 0.4vw), 10px);
  }
}
.products_other_categories_ttl_en {
  margin: 0 0 2px;
  font-size: 12px;
  line-height: 1.25;
}
@media (min-width: 920px) {
  .products_other_categories_ttl_en {
    font-size: 12px;
    margin: 0 0 6px;
  }
}
.products_other_categories_ttl_ja {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}
@media (min-width: 920px) {
  .products_other_categories_ttl_ja {
    font-size: clamp(18px, calc(12.48px + 0.6vw), 24px);
  }
}
.products_other_categories_ttl ruby rt {
  font-size: 8px;
}
.products_other_categories_txt {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .products_other_categories_txt {
    line-height: 1.75;
    font-size: clamp(12px, calc(10.16px + 0.2vw), 14px);
  }
}
@media (min-width: 920px) {
  .products_other_categories_link:hover .products_other_categories_img img {
    transform: scale(1.025);
  }
}

.other_section_ttl {
  margin: 0 0 55px;
  color: #0a2d88;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 920px) {
  .other_section_ttl {
    margin-bottom: clamp(65px, calc(37.4px + 3vw), 95px);
  }
}
.other_section_ttl_txt {
  display: inline-block;
  font-size: 30px;
  line-height: 1.35;
}
@media (min-width: 920px) {
  .other_section_ttl_txt {
    font-size: clamp(30px, calc(18.96px + 1.2vw), 42px);
  }
}
.other_section_ttl_txt_columns {
  display: grid;
  grid-template-columns: auto auto;
  align-items: start;
}
.other_section_ttl_line {
  display: block;
  grid-row: 1;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
}
.other_section_ttl_line:first-child {
  grid-column: 2;
}
.other_section_ttl_line_lower {
  grid-column: 1;
  margin-top: clamp(50px, calc(22.4px + 3vw), 80px);
}

.products_single {
  padding-top: 76px;
}
@media (min-width: 920px) {
  .products_single {
    padding-top: 84px;
  }
}
.products_single_main {
  padding: 0 0 32px;
}
@media (min-width: 920px) {
  .products_single_main {
    padding: clamp(60px, calc(45.28px + 1.6vw), 76px) 0 clamp(90px, calc(62.4px + 3vw), 120px);
  }
}
.products_single_main_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}
@media (min-width: 920px) {
  .products_single_main_grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}
.products_single_gallery {
  display: contents;
  min-width: 0;
}
@media (min-width: 920px) {
  .products_single_gallery {
    display: block;
    width: 49.4137353434%;
  }
}
.products_single_gallery_main {
  position: relative;
  order: 1;
  width: 100%;
  overflow: hidden;
  background-color: #e9edf3;
  aspect-ratio: 1/1;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
@media (min-width: 920px) {
  .products_single_gallery_main {
    order: initial;
  }
}
.products_single_gallery_main:active {
  cursor: grabbing;
}
.products_single_gallery_main .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.products_single_gallery_main_slide {
  width: 100%;
  height: 100%;
}
.products_single_gallery_main_img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  backface-visibility: hidden;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.products_single_gallery_nav {
  order: 2;
  margin-top: 16px;
}
@media (min-width: 920px) {
  .products_single_gallery_nav {
    order: initial;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.products_single_gallery_thumbs {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}
.products_single_gallery_thumbs_viewport {
  --products-gallery-thumb-gap: 8px;
  width: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
@media (min-width: 920px) {
  .products_single_gallery_thumbs_viewport {
    --products-gallery-thumb-gap: clamp(7px, calc(4.24px + 0.3vw), 10px);
  }
}
.products_single_gallery_thumbs_viewport:active {
  cursor: grabbing;
}
.products_single_gallery_thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background-color: #e9edf3;
  cursor: pointer;
  opacity: 0.36;
  appearance: none;
  transition: opacity 0.55s cubic-bezier(0.1, 1, 0.2, 1);
}
.products_single_gallery_thumb.swiper-slide-thumb-active {
  opacity: 1;
}
@media (min-width: 920px) {
  .products_single_gallery_thumb:hover {
    opacity: 0.72;
  }
}
.products_single_gallery_thumb.swiper-slide-thumb-active:hover {
  opacity: 1;
}
.products_single_gallery_thumb:focus-visible {
  outline: 2px solid #0a2d88;
  outline-offset: 3px;
  opacity: 1;
}
.products_single_gallery_thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.products_single_gallery_progress {
  position: relative;
  width: 100%;
  height: 4px;
  overflow: hidden;
  background-color: #f2f2f2;
  border-radius: 99px;
  margin-top: 12px;
}
@media (min-width: 920px) {
  .products_single_gallery_progress {
    margin-top: clamp(10px, calc(6.32px + 0.4vw), 14px);
  }
}
.products_single_gallery_progress_bar {
  position: absolute;
  inset: 0;
  display: block;
  background-color: #0A2D88;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.2s cubic-bezier(0.1, 1, 0.2, 1);
  will-change: transform;
}
.products_single_gallery_progress_bar.is-resetting {
  transition: none;
}
.products_single_intro {
  display: contents;
}
@media (min-width: 920px) {
  .products_single_intro {
    display: flex;
    width: 45.6448911223%;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
    gap: clamp(24px, calc(16.64px + 0.8vw), 32px);
  }
}
.products_single_intro_head {
  display: contents;
}
@media (min-width: 920px) {
  .products_single_intro_head {
    display: block;
  }
}
.products_single_category {
  order: 3;
  margin: 38px 0 7px;
  line-height: 1.25;
  font-size: 20px;
}
@media (min-width: 920px) {
  .products_single_category {
    font-size: clamp(16px, calc(12.32px + 0.4vw), 20px);
    margin: 0 0 14px;
  }
}
.products_single_ttl {
  order: 4;
  margin-top: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
}
@media (min-width: 920px) {
  .products_single_ttl {
    font-size: clamp(28px, calc(16.96px + 1.2vw), 40px);
  }
}
.products_single_lead {
  order: 5;
  margin: 30px 0 0;
  font-size: 16px;
}
@media (min-width: 920px) {
  .products_single_lead {
    font-size: clamp(18px, calc(12.48px + 0.6vw), 24px);
    margin: clamp(40px, calc(23.44px + 1.8vw), 58px) 0 0;
  }
}
.products_single_description {
  order: 6;
  margin: 12px 0 0;
}
@media (min-width: 920px) {
  .products_single_description {
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
    margin: clamp(20px, calc(14.48px + 0.6vw), 26px) 0 0;
  }
}
.products_single_detail {
  padding: 0 0 80px;
}
@media (min-width: 920px) {
  .products_single_detail {
    padding-bottom: clamp(110px, calc(73.2px + 4vw), 150px);
  }
}
.products_single_detail_grid {
  display: flex;
  flex-direction: column;
  gap: 38px;
}
@media (min-width: 920px) {
  .products_single_detail_grid {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}
@media (min-width: 920px) {
  .products_single_specs {
    width: 56.9514237856%;
  }
}
.products_single_specs_list {
  margin: 0;
}
.products_single_specs_row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  border-bottom: 1px solid rgba(10, 45, 136, 0.3019607843);
}
@media (min-width: 920px) {
  .products_single_specs_row {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}
.products_single_specs_row:first-child .products_single_specs_name,
.products_single_specs_row:first-child .products_single_specs_value {
  padding-top: 0;
}
.products_single_specs_name, .products_single_specs_value {
  margin: 0;
  padding: 12px 0;
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .products_single_specs_name, .products_single_specs_value {
    padding: 20px 0;
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.products_single_specs_name {
  padding-right: 12px;
}
@media (min-width: 920px) {
  .products_single_specs_name {
    padding-right: 40px;
  }
}
@media (min-width: 920px) {
  .products_single_taste {
    width: 38.0234505863%;
  }
}
.products_single_taste_chart {
  overflow: hidden;
}
.products_single_taste_chart img {
  display: block;
  width: 100%;
  height: auto;
}
.products_single_pairing {
  margin-top: 32px;
}
@media (min-width: 920px) {
  .products_single_pairing {
    margin-top: 50px;
  }
}
.products_single_pairing_ttl {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 500;
}
@media (min-width: 920px) {
  .products_single_pairing_ttl {
    font-size: clamp(20px, calc(16.32px + 0.4vw), 24px);
  }
}
.products_single_pairing_items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.products_single_pairing_item {
  margin: 0;
  padding: 12px 16px;
  background-color: #eceff7;
  border-radius: 8px;
  line-height: 1.5;
  font-size: 16px;
}
@media (min-width: 920px) {
  .products_single_pairing_item {
    padding: clamp(12px, calc(6.48px + 0.6vw), 18px) clamp(10px, calc(4.48px + 0.6vw), 16px);
    font-size: clamp(15px, calc(12.24px + 0.3vw), 18px);
  }
}
.products_single_design {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
}
@media (min-width: 920px) {
  .products_single_design {
    flex-direction: row;
    gap: 24px;
    align-items: center;
    margin-top: clamp(40px, calc(21.6px + 2vw), 60px);
  }
}
.products_single_design_label {
  border: 1px solid #0A2D88;
  min-height: 48px;
  padding: 4px 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
@media (min-width: 920px) {
  .products_single_design_label {
    font-size: clamp(16px, calc(12.32px + 0.4vw), 20px);
    min-width: clamp(160px, calc(141.6px + 2vw), 180px);
    min-height: clamp(60px, calc(48.96px + 1.2vw), 72px);
    padding: clamp(12px, calc(8.32px + 0.4vw), 16px);
  }
}
.products_single_design_txt {
  text-align: justify;
}
@media (min-width: 920px) {
  .products_single_design_txt {
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.products_single_technology {
  padding: 70px 0 65px;
  background-color: #eceff7;
}
@media (min-width: 920px) {
  .products_single_technology {
    padding: clamp(90px, calc(42.16px + 5.2vw), 142px) 0 clamp(110px, calc(64px + 5vw), 160px);
  }
}
.products_single_technology .products_single_section_ttl {
  margin-bottom: 36px;
}
@media (min-width: 920px) {
  .products_single_technology .products_single_section_ttl {
    margin-bottom: clamp(55px, calc(36.6px + 2vw), 75px);
  }
}
.products_single_technology_items {
  display: grid;
  gap: 34px;
}
@media (min-width: 920px) {
  .products_single_technology_items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(26px, calc(11.28px + 1.6vw), 42px);
  }
}
.products_single_technology_img {
  overflow: hidden;
  background-color: #ddd;
  margin: 0 0 12px;
}
@media (min-width: 920px) {
  .products_single_technology_img {
    margin-bottom: clamp(12px, calc(6.48px + 0.6vw), 18px);
  }
}
.products_single_technology_img img {
  display: block;
  width: 100%;
}
.products_single_technology_ttl {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 14px;
}
@media (min-width: 920px) {
  .products_single_technology_ttl {
    font-size: clamp(18px, calc(12.48px + 0.6vw), 24px);
    margin-bottom: clamp(10px, calc(8.16px + 0.2vw), 12px);
  }
}
.products_single_technology_txt {
  text-align: justify;
}
@media (min-width: 920px) {
  .products_single_technology_txt {
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.products_single_section_ttl {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 920px) {
  .products_single_section_ttl {
    font-size: clamp(28px, calc(16.96px + 1.2vw), 40px);
  }
}
.products_single_related {
  padding: 70px 0 100px;
}
@media (min-width: 920px) {
  .products_single_related {
    padding: clamp(130px, calc(84px + 5vw), 180px) 0 clamp(150px, calc(94.8px + 6vw), 210px);
  }
}
.products_single_related .products_single_section_ttl {
  margin-bottom: 48px;
}
@media (min-width: 920px) {
  .products_single_related .products_single_section_ttl {
    margin-bottom: clamp(80px, calc(52.4px + 3vw), 110px);
  }
}
.products_single_related .products_products_items {
  gap: 36px 12px;
}
@media (min-width: 920px) {
  .products_single_related .products_products_items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 60px 20px;
  }
}
.products_single_related .products_product_card_img {
  aspect-ratio: 283/396;
}
@media (min-width: 920px) {
  .products_single_related .products_product_card_img {
    aspect-ratio: 370/518;
  }
}
.products_single_related .products_product_card_ttl,
.products_single_related .products_product_card_txt {
  text-align: left;
}
.products_single_related .products_product_card_body .txt_link {
  margin-inline: unset;
}

.lang_en .products_other_categories_ttl_en {
  display: none;
}

/* .products_shop .btn,
.products_shop .txt_link {
  pointer-events: none;
  opacity: 0.3;
} */
.products_shop .renewal_notice {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto 36px;
  padding: 10px 20px;
  background: #f0f3fa;
}
@media (min-width: 920px) {
  .products_shop .renewal_notice {
    font-size: 18px;
    margin: 0 auto 30px;
  }
}
.products_shop .renewal_notice::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 16px solid #f1f4fb;
  transform: translateX(-50%);
}
.products_shop .renewal_notice_text {
  margin: 0;
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .products_shop .renewal_notice_text {
    font-size: 18px;
  }
}

.johgura_intro {
  margin-bottom: 120px;
}
@media (min-width: 920px) {
  .johgura_intro {
    margin-bottom: clamp(160px, calc(86.4px + 8vw), 240px);
  }
}
.johgura_intro_catch {
  line-height: 2;
  margin-bottom: 18px;
  font-size: 24px;
}
@media (min-width: 920px) {
  .johgura_intro_catch {
    font-size: clamp(32px, calc(24.64px + 0.8vw), 40px);
    margin-bottom: clamp(40px, calc(21.6px + 2vw), 60px);
  }
}
.johgura_intro_txt {
  text-align: justify;
  letter-spacing: 0.04em;
  font-size: 16px;
}
@media (min-width: 920px) {
  .johgura_intro_txt {
    line-height: 2.2;
    font-size: clamp(16px, calc(12.32px + 0.4vw), 20px);
  }
}
.johgura .facility_overview {
  padding: 120px 0 160px;
}
@media (min-width: 920px) {
  .johgura .facility_overview {
    padding: clamp(160px, calc(86.4px + 8vw), 240px) 0 clamp(240px, calc(166.4px + 8vw), 320px);
  }
}
.johgura .facility_overview_body {
  max-width: 1040px;
  margin: 0 auto;
}
.johgura .facility_overview_map {
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .johgura .facility_overview_map {
    margin-bottom: clamp(46px, calc(33.12px + 1.4vw), 60px);
  }
}
.johgura .facility_overview_info {
  width: 100%;
  max-width: 892px;
  margin: 0 auto 40px;
}
@media (min-width: 920px) {
  .johgura .facility_overview_info {
    margin: 0 auto clamp(46px, calc(33.12px + 1.4vw), 60px);
  }
}
.johgura .facility_overview_list {
  margin: 0;
}
@media (max-width: 919px) {
  .johgura .facility_overview_label {
    margin-bottom: 4px;
  }
}
.johgura .facility_overview_item {
  display: grid;
  grid-template-columns: 1fr;
  padding: 12px 0;
  border-bottom: 1px solid currentColor;
}
.johgura .facility_overview_item:first-child {
  padding-top: 0;
}
@media (min-width: 920px) {
  .johgura .facility_overview_item {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: clamp(24px, calc(18.48px + 0.6vw), 30px);
    padding: clamp(12px, calc(8.32px + 0.4vw), 16px) 0;
  }
}
.johgura .facility_overview_content .asterisk {
  position: relative;
  display: block;
  padding-left: 20px;
}
.johgura .facility_overview_content .asterisk::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
  color: #0A2D88;
}
@media (min-width: 920px) {
  .johgura .facility_overview_content .asterisk::before {
    font-size: clamp(15px, calc(12.24px + 0.3vw), 18px);
  }
}

.lang_en .johgura_intro_txt {
  line-height: 1.35;
}

.philosophy.subPage_body {
  padding-bottom: 120px;
}
@media (min-width: 920px) {
  .philosophy.subPage_body {
    padding-bottom: clamp(120px, calc(9.6px + 12vw), 240px);
  }
}
.philosophy_intro {
  margin-bottom: 80px;
}
@media (min-width: 920px) {
  .philosophy_intro {
    margin-bottom: clamp(120px, calc(9.6px + 12vw), 240px);
  }
}
.philosophy_intro_catch {
  margin-bottom: 18px;
}
@media (min-width: 920px) {
  .philosophy_intro_catch {
    margin-bottom: clamp(40px, calc(21.6px + 2vw), 60px);
  }
}
.philosophy_intro_catch_small {
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 16px;
}
@media (min-width: 920px) {
  .philosophy_intro_catch_small {
    font-size: clamp(16px, calc(12.32px + 0.4vw), 20px);
    margin-bottom: clamp(16px, calc(12.32px + 0.4vw), 20px);
  }
}
.philosophy_intro_catch_large {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .philosophy_intro_catch_large {
    font-size: clamp(32px, calc(24.64px + 0.8vw), 40px);
    line-height: 2;
  }
}
.philosophy_intro_txt {
  font-size: 16px;
}
@media (min-width: 920px) {
  .philosophy_intro_txt {
    font-size: clamp(18px, calc(12.48px + 0.6vw), 24px);
    line-height: 2.2;
  }
}

.lang_en .philosophy_intro_txt {
  line-height: 1.35;
}
.lang_en .philosophy_intro_catch_large {
  line-height: 1.35;
}

.identity .subPage_body {
  padding: 80px 0 180px;
}
@media (min-width: 920px) {
  .identity .subPage_body {
    padding: clamp(160px, calc(104.8px + 6vw), 220px) 0 clamp(200px, calc(89.6px + 12vw), 320px);
  }
}
.identity .subPage_body .page_section_ttl {
  margin-bottom: 36px;
}
@media (min-width: 920px) {
  .identity .subPage_body .page_section_ttl {
    margin-bottom: clamp(40px, calc(28.96px + 1.2vw), 52px);
  }
}
.identity_thumb {
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .identity_thumb {
    margin-bottom: clamp(72px, calc(53.6px + 2vw), 92px);
  }
}
.identity_txtArea {
  text-align: center;
}
.identity_txtArea > *:not(:last-child) {
  margin-bottom: 12px;
}
@media (min-width: 920px) {
  .identity_txtArea > *:not(:last-child) {
    margin-bottom: clamp(16px, calc(8.64px + 0.8vw), 24px);
  }
}
.identity_txtArea_link {
  text-align: center;
}
.identity_txtArea_link .txt_link {
  letter-spacing: 0.1em;
}
@media (min-width: 920px) {
  .identity_txtArea_link .txt_link {
    font-size: clamp(5px, calc(-6.96px + 1.3vw), 18px);
  }
}
.identity_section:not(:last-child) {
  margin-bottom: 120px;
}
@media (min-width: 920px) {
  .identity_section:not(:last-child) {
    margin-bottom: clamp(160px, calc(86.4px + 8vw), 240px);
  }
}
.identity_txt {
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
}
@media (min-width: 920px) {
  .identity_txt {
    line-height: 2.2;
  }
}
.identity_values {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.identity_values_item {
  position: relative;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media (min-width: 920px) {
  .identity_values_item {
    line-height: 2.2;
  }
}
.identity_values_item_separator {
  margin-bottom: 6px;
  padding-bottom: 6px;
}
.identity_values_item_separator::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 40px;
  height: 1px;
  background-color: currentColor;
  content: "";
  transform: translateX(-50%);
}
@media (min-width: 920px) {
  .identity_values_item_separator {
    margin-bottom: clamp(8px, calc(4.32px + 0.4vw), 12px);
    padding-bottom: clamp(8px, calc(4.32px + 0.4vw), 12px);
  }
  .identity_values_item_separator::after {
    width: clamp(40px, calc(12.4px + 3vw), 70px);
  }
}

.lang_en .identity_txt {
  line-height: 1.35;
}
.lang_en .identity_values_item {
  line-height: 1.35;
}

.pride .subPage_body {
  padding-bottom: 120px;
}
@media (min-width: 920px) {
  .pride .subPage_body {
    padding-bottom: clamp(160px, calc(86.4px + 8vw), 240px);
  }
}

.craft_intro_row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 920px) {
  .craft_intro_row {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}
.craft_intro .subPage_intro_lead {
  margin-bottom: 80px;
}
@media (min-width: 920px) {
  .craft_intro .subPage_intro_lead {
    margin-bottom: clamp(120px, calc(35.36px + 9.2vw), 212px);
  }
}
@media (min-width: 920px) {
  .craft_intro_txtArea {
    width: 46.6499162479%;
  }
}
.craft_intro_ttl {
  font-size: 18px;
  letter-spacing: -0.075em;
  margin-bottom: 26px;
}
@media (min-width: 920px) {
  .craft_intro_ttl {
    font-size: clamp(18px, calc(12.48px + 0.6vw), 24px);
  }
}
.craft_intro_txt {
  text-align: justify;
}
@media (min-width: 920px) {
  .craft_intro_img {
    width: 46.6499162479%;
  }
}
.craft .commitment {
  background-color: #eceff7;
  overflow: hidden;
}
.craft .commitment .page_section_ttl {
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .craft .commitment .page_section_ttl {
    margin-bottom: clamp(80px, calc(46.88px + 3.6vw), 116px);
  }
}
.craft .commitment_inner {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
@media (min-width: 920px) {
  .craft .commitment_inner {
    padding: clamp(120px, calc(83.2px + 4vw), 160px) 0;
  }
}
.craft .commitment_deco {
  position: absolute;
  z-index: -1;
}
.craft .commitment_deco_01 {
  top: -15px;
  left: -14px;
  width: 33.3333333333vw;
}
@media (min-width: 920px) {
  .craft .commitment_deco_01 {
    width: clamp(220px, calc(91.2px + 14vw), 360px);
    top: -25px;
    left: -5px;
  }
}
.craft .commitment_deco_02 {
  width: 51.2820512821vw;
  bottom: -60px;
  left: -69px;
}
@media (min-width: 920px) {
  .craft .commitment_deco_02 {
    width: clamp(520px, calc(387.52px + 14.4vw), 664px);
    bottom: -39px;
    left: -17px;
  }
}
.craft .commitment_deco_03 {
  width: 61.5384615385vw;
  top: 104px;
  right: -110px;
}
@media (min-width: 920px) {
  .craft .commitment_deco_03 {
    width: clamp(410px, calc(235.2px + 19vw), 600px);
    top: -76px;
    right: -423px;
  }
}
.craft .commitment_deco_04 {
  width: 20.5128205128vw;
  top: 620px;
  right: 21px;
}
@media (min-width: 920px) {
  .craft .commitment_deco_04 {
    width: clamp(100px, calc(8px + 10vw), 200px);
    top: 600px;
    right: 260px;
  }
}
.craft .commitment_deco_05 {
  width: 25.3846153846vw;
  bottom: 227px;
  right: -38px;
}
@media (min-width: 920px) {
  .craft .commitment_deco_05 {
    width: clamp(120px, calc(-24.44px + 15.7vw), 277px);
    bottom: 72px;
    right: -77px;
  }
}
.craft .commitment_deco_06 {
  width: 30.7692307692vw;
  bottom: 3px;
  right: 19px;
}
@media (min-width: 920px) {
  .craft .commitment_deco_06 {
    width: clamp(260px, calc(190.08px + 7.6vw), 336px);
    bottom: -276px;
    right: 84px;
  }
}
.craft .commitment_body {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 920px) {
  .craft .commitment_body {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 920px) {
  .craft .commitment_imgArea {
    width: 50.2512562814%;
  }
}
.craft .commitment_imgArea_logo {
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .craft .commitment_imgArea_logo {
    margin-bottom: clamp(46px, calc(25.76px + 2.2vw), 68px);
  }
}
.craft .commitment_imgArea_img figcaption {
  text-align: center;
  margin-top: 10px;
}
@media (min-width: 920px) {
  .craft .commitment_imgArea_img figcaption {
    margin-top: 12px;
  }
}
@media (min-width: 920px) {
  .craft .commitment_txtArea {
    width: 35.175879397%;
  }
}
.craft .commitment_txtArea_item:not(:last-child) {
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .craft .commitment_txtArea_item:not(:last-child) {
    margin-bottom: clamp(46px, calc(33.12px + 1.4vw), 60px);
  }
}
.craft .commitment_txtArea_item_catch {
  font-weight: 500;
  text-align: center;
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .craft .commitment_txtArea_item_catch {
    text-align: left;
    font-size: clamp(18px, calc(12.48px + 0.6vw), 24px);
    margin-bottom: clamp(18px, calc(12.48px + 0.6vw), 24px);
    line-height: 1.75;
  }
}
.craft .commitment_txtArea_item_txt {
  text-align: justify;
}
.craft .choose {
  padding: 120px 0;
}
@media (min-width: 920px) {
  .craft .choose {
    padding: clamp(160px, calc(86.4px + 8vw), 240px) 0;
  }
}
.craft .choose_body {
  display: flex;
  flex-direction: column;
  gap: 42px;
}
@media (min-width: 920px) {
  .craft .choose_body {
    flex-direction: row;
  }
}
.craft .choose_item {
  flex: 1;
}
.craft .choose_item_img {
  margin-bottom: 16px;
}
@media (min-width: 920px) {
  .craft .choose_item_img {
    margin-bottom: clamp(18px, calc(12.48px + 0.6vw), 24px);
  }
}
.craft .choose_item_name {
  font-size: 18px;
  margin-bottom: 16px;
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .craft .choose_item_name {
    font-size: clamp(18px, calc(12.48px + 0.6vw), 24px);
    margin-bottom: clamp(16px, calc(12.32px + 0.4vw), 20px);
  }
}
.craft .choose_item_txt {
  text-align: center;
  margin-bottom: 16px;
}
@media (min-width: 920px) {
  .craft .choose_item_txt {
    margin-bottom: clamp(18px, calc(12.48px + 0.6vw), 24px);
  }
}
.craft .choose_item_label {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}
@media (min-width: 920px) {
  .craft .choose_item_label {
    margin-bottom: clamp(18px, calc(12.48px + 0.6vw), 24px);
  }
}
.craft .choose_item_label li {
  font-size: 14px;
  line-height: 1;
  background-color: #f0f3fa;
  border-radius: 4px;
  padding: 10px 8px;
}
.craft .choose_item_link {
  text-align: center;
}
.craft .choose_recommend {
  background-color: #eceff7;
  padding: 30px 20px;
}
@media (min-width: 920px) {
  .craft .choose_recommend {
    padding: clamp(68px, calc(27.52px + 4.4vw), 112px) clamp(50px, calc(22.4px + 3vw), 80px);
  }
}
.craft .choose_recommend_ttl {
  font-size: 24px;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 920px) {
  .craft .choose_recommend_ttl {
    font-size: clamp(24px, calc(16.64px + 0.8vw), 32px);
    margin-bottom: clamp(32px, calc(24.64px + 0.8vw), 40px);
  }
}
.craft .choose_recommend_txt {
  text-align: center;
  margin-bottom: 80px;
}
.craft .choose_recommend_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 920px) {
  .craft .choose_recommend_list {
    flex-direction: row;
    gap: 25px;
  }
}
.craft .choose_recommend_item {
  flex: 1;
}
.craft .choose_recommend_item_img {
  margin-bottom: 24px;
}
.craft .choose_recommend_item_catch {
  text-align: center;
  margin-bottom: 24px;
}
@media (min-width: 920px) {
  .craft .choose_recommend_item_catch {
    font-size: clamp(18px, calc(12.48px + 0.6vw), 24px);
    margin-bottom: clamp(18px, calc(12.48px + 0.6vw), 24px);
  }
}
.craft .choose_recommend_item_txt {
  text-align: justify;
}

.requirements {
  padding: 80px 0 160px;
  color: #0A2D88;
  background-color: #fff;
  overflow: hidden;
}
@media (min-width: 920px) {
  .requirements {
    padding: clamp(120px, calc(48.24px + 7.8vw), 198px) 0 clamp(180px, calc(124.8px + 6vw), 240px);
  }
}
.requirements_ttl {
  margin-bottom: 38px;
}
@media (min-width: 920px) {
  .requirements_ttl {
    margin-bottom: clamp(40px, calc(27.12px + 1.4vw), 54px);
  }
}
.requirements_ttl_en {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.25;
}
@media (min-width: 920px) {
  .requirements_ttl_en {
    font-size: clamp(16px, calc(12.32px + 0.4vw), 20px);
    margin-bottom: clamp(12px, calc(6.48px + 0.6vw), 18px);
  }
}
.requirements_ttl_ja {
  margin: 0;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
}
@media (min-width: 920px) {
  .requirements_ttl_ja {
    font-size: clamp(32px, calc(24.64px + 0.8vw), 40px);
  }
}
.requirements_section_ttl {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}
@media (min-width: 920px) {
  .requirements_section_ttl {
    margin-bottom: clamp(30px, calc(18.96px + 1.2vw), 42px);
    font-size: clamp(28px, calc(24.32px + 0.4vw), 32px);
  }
}
.requirements {
  /* 部署一覧
  --------------------------------------- */
}
@media (min-width: 920px) {
  .requirements_department {
    margin-right: calc(50% - 50vw);
  }
}
.requirements_department_list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}
@media (min-width: 920px) {
  .requirements_department_list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.requirements_department_item {
  position: relative;
  display: block;
  min-width: 0;
  aspect-ratio: 311/580;
  overflow: hidden;
  color: #fff;
}
.requirements_department_item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.8s cubic-bezier(0.1, 1, 0.2, 1);
}
.requirements_department_item:hover img {
  transform: scale(1.08);
}
.requirements_department_item_placeholder::after {
  background: rgba(255, 255, 255, 0.04);
}
.requirements_department_name {
  position: absolute;
  top: 16px;
  left: 15px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  max-width: calc(100% - 30px);
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}
@media (min-width: 920px) {
  .requirements_department_name {
    top: clamp(12px, calc(0.96px + 1.2vw), 24px);
    left: clamp(12px, calc(0.96px + 1.2vw), 24px);
    max-width: calc(100% - 48px);
    font-size: clamp(18px, calc(1.44px + 1.8vw), 36px);
  }
}
.requirements_department_name_line {
  position: relative;
  display: block;
  width: fit-content;
  padding-bottom: 4px;
}
.requirements_department_name_line::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.8s cubic-bezier(0.1, 1, 0.2, 1);
  pointer-events: none;
}
.requirements_department_item:hover .requirements_department_name_line::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.requirements_department_placeholder {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  background-color: #ddd;
}
.requirements_department_placeholder::before, .requirements_department_placeholder::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 1px;
  background-color: #c7c7c7;
  content: "";
  transform-origin: center;
}
.requirements_department_placeholder::before {
  transform: translate(-50%, -50%) rotate(61deg);
}
.requirements_department_placeholder::after {
  transform: translate(-50%, -50%) rotate(-61deg);
}
.requirements_department_placeholder_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 24px;
  height: 16px;
  transform: translate(-50%, -50%);
}
.requirements_department_placeholder_icon::before {
  position: absolute;
  top: 1px;
  left: 4px;
  width: 4px;
  height: 4px;
  background-color: #aaa;
  border-radius: 50%;
  content: "";
}
.requirements_department_placeholder_icon::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 24px;
  height: 12px;
  background-color: #aaa;
  clip-path: polygon(0 100%, 29% 45%, 44% 68%, 64% 28%, 100% 100%);
  content: "";
}
.requirements {
  /* 採用の流れ
  --------------------------------------- */
}
.requirements_flow {
  padding-top: 76px;
}
@media (min-width: 920px) {
  .requirements_flow {
    padding-top: clamp(80px, calc(52.4px + 3vw), 110px);
  }
}
.requirements_flow_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 920px) {
  .requirements_flow_list {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}
.requirements_flow_item {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 68px;
  padding: 12px 18px;
  text-align: center;
  background-color: #f0f3fa;
}
@media (min-width: 920px) {
  .requirements_flow_item {
    width: 17%;
    min-height: clamp(76px, calc(53.92px + 2.4vw), 100px);
  }
}
.requirements_flow_item span {
  display: block;
  font-size: 14px;
  line-height: 1.7;
}
@media (min-width: 920px) {
  .requirements_flow_item span {
    font-size: clamp(12px, calc(9.24px + 0.3vw), 15px);
  }
}
.requirements_flow_arrow {
  position: relative;
  display: block;
  flex: 1 1 auto;
  width: 42px;
  height: 14px;
  transform: rotate(90deg);
}
@media (min-width: 920px) {
  .requirements_flow_arrow {
    width: auto;
    min-width: 34px;
    margin: 0 clamp(8px, calc(-1.2px + 1vw), 18px);
    transform: none;
  }
}
.requirements_flow_arrow::before, .requirements_flow_arrow::after {
  position: absolute;
  height: 1px;
  background-color: #0A2D88;
  content: "";
}
.requirements_flow_arrow::before {
  right: 0;
  bottom: 0;
  left: 0;
}
.requirements_flow_arrow::after {
  right: 0;
  bottom: 0;
  width: 14px;
  transform: rotate(40deg);
  transform-origin: right center;
}
.requirements {
  /* 募集要項
  --------------------------------------- */
}
.requirements_recruitment {
  padding-top: 100px;
}
@media (min-width: 920px) {
  .requirements_recruitment {
    padding-top: clamp(80px, calc(50.56px + 3.2vw), 112px);
  }
}
.requirements_recruitment_mid {
  padding-top: 90px;
}
@media (min-width: 920px) {
  .requirements_recruitment_mid {
    padding-top: clamp(100px, calc(72.4px + 3vw), 130px);
  }
}
.requirements_recruitment_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin-bottom: 20px;
}
@media (min-width: 920px) {
  .requirements_recruitment_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, calc(1.6px + 2vw), 40px);
    margin-bottom: clamp(20px, calc(1.6px + 2vw), 40px);
  }
}
.requirements_recruitment .btn {
  margin: 0;
}
.requirements_recruitment_list {
  min-width: 0;
  margin: 0;
}
.requirements_recruitment_row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid rgba(10, 45, 136, 0.3019607843);
}
@media (min-width: 920px) {
  .requirements_recruitment_row {
    grid-template-columns: clamp(80px, calc(70.8px + 1vw), 90px) minmax(0, 1fr);
    gap: clamp(12px, calc(10.16px + 0.2vw), 14px);
    padding: clamp(14px, calc(11.24px + 0.3vw), 17px) 0;
  }
}
.requirements_recruitment_row dt,
.requirements_recruitment_row dd {
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .requirements_recruitment_row dt,
  .requirements_recruitment_row dd {
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.requirements_recruitment_row dd li {
  position: relative;
  padding-left: 24px;
}
.requirements_recruitment_row dd li::before {
  position: absolute;
  top: 9px;
  left: 10px;
  content: "";
  width: 4px;
  height: 4px;
  background-color: #0A2D88;
  border-radius: 50%;
}
.requirements_recruitment_row dd .asterisk {
  display: block;
  position: relative;
  padding-left: 20px;
}
.requirements_recruitment_row dd .asterisk::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
}
@media (min-width: 920px) {
  .requirements_recruitment_row dd .asterisk::before {
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.requirements {
  /* エントリーフォーム
  --------------------------------------- */
}
.requirements_entry {
  padding-top: 100px;
}
@media (min-width: 920px) {
  .requirements_entry {
    padding-top: clamp(120px, calc(83.2px + 4vw), 160px);
  }
}
.requirements_entry_body {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 920px) {
  .requirements_entry_body {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
  }
}
.requirements_entry_note {
  padding: 24px 22px;
  background-color: #f2f2f2;
  border-radius: 8px;
}
@media (min-width: 920px) {
  .requirements_entry_note {
    padding: clamp(18px, calc(16.16px + 0.2vw), 20px);
    width: 31.3232830821%;
  }
}
.requirements_entry_note li {
  position: relative;
  padding-left: 16px;
  font-size: 12px;
  line-height: 1.5;
  text-align: justify;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media (min-width: 920px) {
  .requirements_entry_note li {
    font-size: clamp(13px, calc(12.08px + 0.1vw), 14px);
    padding-left: 24px;
  }
}
.requirements_entry_note li::before {
  position: absolute;
  top: 7px;
  left: 4px;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #0A2D88;
}
@media (min-width: 920px) {
  .requirements_entry_note li::before {
    top: 11px;
    left: 6px;
  }
}
.requirements_entry_note li:not(:last-child) {
  margin-bottom: 8px;
}
.requirements_entry_note_email {
  white-space: nowrap;
}
@media (min-width: 920px) {
  .requirements_entry_form {
    width: 61.9765494137%;
  }
}
.requirements_entry_form .wpcf7 {
  width: 100%;
}
.requirements_entry_form .wpcf7-form {
  width: 100%;
  margin: 0;
}
.requirements_entry_form .wpcf7-form > p {
  margin: 0;
}
.requirements_entry_form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.requirements_entry_form .wpcf7-not-valid {
  border-color: #d60000 !important;
}
.requirements_entry_form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 7px;
  color: #d60000;
  font-size: 12px;
  line-height: 1.6;
}
.requirements_entry_form .wpcf7-response-output {
  margin: 28px 0 0;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.7;
}
.requirements_entry_form .entry_form_rows {
  width: 100%;
}
.requirements_entry_form .entry_form_row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(10, 45, 136, 0.3019607843);
  align-items: flex-start;
}
@media (min-width: 920px) {
  .requirements_entry_form .entry_form_row {
    flex-direction: row;
    justify-content: space-between;
    padding: clamp(20px, calc(16.32px + 0.4vw), 24px) 0;
  }
}
.requirements_entry_form .entry_form_row:first-child {
  padding-top: 0;
}
.requirements_entry_form .entry_form_row:last-child {
  padding-bottom: 0;
  border: none;
}
.requirements_entry_form .entry_form_label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
@media (min-width: 920px) {
  .requirements_entry_form .entry_form_label {
    width: 24.5945945946%;
    min-height: 56px;
  }
}
.requirements_entry_form .entry_form_label_text {
  display: block;
  min-width: 0;
  color: #0A2D88;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .requirements_entry_form .entry_form_label_text {
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.requirements_entry_form .entry_form_status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  flex-wrap: nowrap;
  min-height: 20px;
  padding: 3px 5px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.requirements_entry_form .entry_form_status.is_required {
  color: #fff;
  background-color: #ff0000;
}
.requirements_entry_form .entry_form_status.is_optional {
  background-color: #dcdcdc;
  color: #090909;
}
@media (min-width: 920px) {
  .requirements_entry_form .entry_form_field {
    width: 64.5945945946%;
  }
}
.requirements_entry_form .entry_form_field input[type=text],
.requirements_entry_form .entry_form_field input[type=email],
.requirements_entry_form .entry_form_field input[type=tel],
.requirements_entry_form .entry_form_field select,
.requirements_entry_form .entry_form_field textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 0;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
  border: 1px solid #0a2d88;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media (min-width: 920px) {
  .requirements_entry_form .entry_form_field input[type=text],
  .requirements_entry_form .entry_form_field input[type=email],
  .requirements_entry_form .entry_form_field input[type=tel],
  .requirements_entry_form .entry_form_field select,
  .requirements_entry_form .entry_form_field textarea {
    border-radius: 8px;
  }
}
.requirements_entry_form .entry_form_field input[type=text]::placeholder,
.requirements_entry_form .entry_form_field input[type=email]::placeholder,
.requirements_entry_form .entry_form_field input[type=tel]::placeholder,
.requirements_entry_form .entry_form_field select::placeholder,
.requirements_entry_form .entry_form_field textarea::placeholder {
  color: rgba(9, 9, 9, 0.3019607843);
}
.requirements_entry_form .entry_form_field input[type=text],
.requirements_entry_form .entry_form_field input[type=email],
.requirements_entry_form .entry_form_field input[type=tel],
.requirements_entry_form .entry_form_field select {
  height: 50px;
  padding: 0 18px;
}
@media (min-width: 920px) {
  .requirements_entry_form .entry_form_field input[type=text],
  .requirements_entry_form .entry_form_field input[type=email],
  .requirements_entry_form .entry_form_field input[type=tel],
  .requirements_entry_form .entry_form_field select {
    height: 56px;
  }
}
.requirements_entry_form .entry_form_field select {
  padding-right: 50px;
  appearance: none;
  cursor: pointer;
}
.requirements_entry_form .entry_form_field textarea {
  height: 160px;
  padding: 17px 18px;
  resize: vertical;
}
.requirements_entry_form .entry_form_field .wpcf7-form-control-wrap[data-name=desired-department],
.requirements_entry_form .entry_form_field .wpcf7-form-control-wrap[data-name=prefecture] {
  position: relative;
}
.requirements_entry_form .entry_form_field .wpcf7-form-control-wrap[data-name=desired-department]::after,
.requirements_entry_form .entry_form_field .wpcf7-form-control-wrap[data-name=prefecture]::after {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-right: 1px solid #222;
  border-bottom: 1px solid #222;
  content: "";
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.requirements_entry_form .entry_form_radio {
  display: flex;
  align-items: center;
  min-height: 56px;
}
.requirements_entry_form .entry_form_radio .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
}
.requirements_entry_form .entry_form_radio .wpcf7-list-item {
  margin: 0;
}
.requirements_entry_form .entry_form_radio label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.requirements_entry_form .entry_form_radio input[type=radio] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  background-color: #fff;
  border: 2px solid #0A2D88;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #fff;
  appearance: none;
  cursor: pointer;
}
@media (min-width: 920px) {
  .requirements_entry_form .entry_form_radio input[type=radio] {
    width: 24px;
    height: 24px;
  }
}
.requirements_entry_form .entry_form_radio input[type=radio]:checked {
  background-color: #0A2D88;
}
.requirements_entry_form .entry_form_radio input[type=radio]:focus-visible {
  outline: 2px solid rgba(10, 45, 136, 0.35);
  outline-offset: 3px;
}
.requirements_entry_form .entry_form_radio .wpcf7-list-item-label {
  font-size: 14px;
  line-height: 1.5;
  white-space: nowrap;
}
@media (min-width: 920px) {
  .requirements_entry_form .entry_form_radio .wpcf7-list-item-label {
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.requirements_entry_form .entry_form_zip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  min-height: 56px;
}
.requirements_entry_form .entry_form_zip .wpcf7-form-control-wrap {
  width: auto;
}
.requirements_entry_form .entry_form_zip .wpcf7-form-control-wrap[data-name=postal-code-1] {
  flex: 0 0 78px;
  width: 78px;
}
.requirements_entry_form .entry_form_zip .wpcf7-form-control-wrap[data-name=postal-code-2] {
  flex: 0 0 116px;
  width: 116px;
}
.requirements_entry_form .entry_form_zip input.entry_form_zip_1,
.requirements_entry_form .entry_form_zip input.entry_form_zip_2 {
  width: 100%;
  height: 50px;
  padding: 0 10px;
  text-align: center;
}
.requirements_entry_form .entry_form_zip .entry_form_zip_mark,
.requirements_entry_form .entry_form_zip .entry_form_zip_hyphen {
  flex: 0 0 auto;
  color: #090909;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
}
.requirements_entry_form .entry_form_address {
  display: grid;
  gap: 12px;
}
@media (min-width: 920px) {
  .requirements_entry_form .entry_form_address {
    padding-top: 12px;
  }
}
.requirements_entry_form .entry_form_address_item {
  display: grid;
  gap: 6px;
}
.requirements_entry_form .entry_form_address_item select {
  height: 50px;
}
.requirements_entry_form .entry_form_address_prefecture .wpcf7-form-control-wrap {
  width: 100%;
}
@media (min-width: 920px) {
  .requirements_entry_form .entry_form_address_prefecture .wpcf7-form-control-wrap {
    max-width: 232px;
  }
}
.requirements_entry_form .entry_form_sub_label {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #090909;
}
@media (min-width: 920px) {
  .requirements_entry_form .entry_form_sub_label {
    font-size: 14px;
  }
}
.requirements_entry_form .entry_form_privacy {
  margin: 54px 0 30px;
}
.requirements_entry_form .entry_form_privacy > p {
  display: contents;
  margin: 0;
}
.requirements_entry_form .entry_form_privacy .wpcf7-form-control-wrap {
  width: auto;
  text-align: center;
}
.requirements_entry_form .entry_form_privacy .wpcf7-list-item {
  margin: 0;
}
.requirements_entry_form .entry_form_privacy label {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  cursor: pointer;
}
.requirements_entry_form .entry_form_privacy input[type=checkbox] {
  position: relative;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  background-color: #fff;
  border: 1px solid #0A2D88;
  border-radius: 3px;
  appearance: none;
  cursor: pointer;
}
.requirements_entry_form .entry_form_privacy input[type=checkbox]::after {
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #0A2D88;
  border-bottom: 2px solid #0A2D88;
  content: "";
  opacity: 0;
  transform: rotate(45deg);
}
.requirements_entry_form .entry_form_privacy input[type=checkbox]:checked::after {
  opacity: 1;
}
.requirements_entry_form .entry_form_privacy input[type=checkbox]:focus-visible {
  outline: 2px solid rgba(10, 45, 136, 0.35);
  outline-offset: 3px;
}
.requirements_entry_form .entry_form_privacy .wpcf7-list-item-label {
  color: #0A2D88;
  font-size: 13px;
  line-height: 1.6;
}
@media (min-width: 920px) {
  .requirements_entry_form .entry_form_privacy .wpcf7-list-item-label {
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.requirements_entry_form .entry_form_privacy a {
  color: inherit;
  text-underline-offset: 3px;
  display: inline-block;
  position: relative;
}
.requirements_entry_form .entry_form_privacy a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background-color: #0A2D88;
  content: "";
  transform: scaleX(1);
  transform-origin: left center;
  pointer-events: none;
}
@media (min-width: 920px) {
  .requirements_entry_form .entry_form_privacy a:hover::after {
    animation: txt-link-line 1.2s cubic-bezier(0.1, 1, 0.2, 1);
  }
}
.requirements_entry_form .entry_form_submit_inr {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: 100%;
  max-width: 400px;
  min-height: 70px;
  margin: 0 auto;
  background-color: #0A2D88;
  border: 1px solid #0A2D88;
}
@media (min-width: 920px) {
  .requirements_entry_form .entry_form_submit_inr {
    grid-column: 2;
  }
}
.requirements_entry_form .entry_form_submit_inr::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  background-color: #fff;
  content: "";
  pointer-events: none;
  backface-visibility: hidden;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 1.2s cubic-bezier(0.1, 1, 0.2, 1);
  will-change: transform;
}
@media (min-width: 920px) {
  .requirements_entry_form .entry_form_submit_inr:hover::before {
    transform: scaleX(1);
    transform-origin: left center;
  }
  .requirements_entry_form .entry_form_submit_inr:hover .entry_form_submit_button {
    color: #0A2D88;
  }
}
.requirements_entry_form .entry_form_submit_inr:has(.entry_form_submit_button:disabled) {
  pointer-events: none;
  opacity: 0.6;
}
.requirements_entry_form .entry_form_submit_button {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 60px;
  margin: 0;
  padding: 15px 30px;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: color 0.8s cubic-bezier(0.1, 1, 0.2, 1);
  appearance: none;
}
@media (min-width: 920px) {
  .requirements_entry_form .entry_form_submit_button {
    font-size: 18px;
    min-height: 70px;
  }
}
.requirements_entry_form .entry_form_submit_button:disabled {
  cursor: not-allowed;
}
.requirements_entry_form .entry_form_submit .wpcf7-spinner {
  display: none;
}

.work {
  padding-top: 80px;
}
@media (min-width: 920px) {
  .work {
    padding-top: 84px;
  }
}
.work .subPage_body {
  padding: 40px 0 160px;
}
@media (min-width: 920px) {
  .work .subPage_body {
    padding: clamp(40px, calc(17.92px + 2.4vw), 64px) 0 clamp(200px, calc(89.6px + 12vw), 320px);
  }
}
@media (min-width: 920px) {
  .work .subPage_body .subPage_intro {
    margin-bottom: clamp(100px, calc(13.52px + 9.4vw), 194px);
  }
}
.work_split_content {
  margin-bottom: 100px;
}
@media (min-width: 920px) {
  .work_split_content {
    margin-bottom: clamp(140px, calc(84.8px + 6vw), 200px);
  }
}
.work_split_content .split_content_item {
  scroll-margin-top: 100px;
}
@media (min-width: 920px) {
  .work_split_content .split_content_item {
    scroll-margin-top: 120px;
  }
}

body.is_minamo_menu_open {
  overflow: hidden;
}

.minamo_header {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.minamo_header_toggle {
  position: fixed;
  z-index: 3;
  top: 8px;
  left: 18px;
  display: block;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  color: #090909;
  background: transparent;
  border: 0;
  cursor: pointer;
  pointer-events: auto;
  appearance: none;
}
@media (min-width: 920px) {
  .minamo_header_toggle {
    top: 18px;
    left: 58px;
    width: 40px;
    height: 40px;
  }
}
.minamo_header_toggle_line {
  position: absolute;
  left: 0;
  display: block;
  width: 32px;
  height: 1px;
  background-color: currentColor;
  transform-origin: center;
  transition: top 0.3s ease, transform 0.3s ease;
}
@media (min-width: 920px) {
  .minamo_header_toggle_line {
    width: 40px;
  }
}
.minamo_header_toggle_line:nth-child(1) {
  top: 11px;
}
@media (min-width: 920px) {
  .minamo_header_toggle_line:nth-child(1) {
    top: 16px;
  }
}
.minamo_header_toggle_line:nth-child(2) {
  top: 20px;
}
@media (min-width: 920px) {
  .minamo_header_toggle_line:nth-child(2) {
    top: 28px;
  }
}
.minamo_header_menu {
  position: fixed;
  z-index: 2;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.45s;
}
.minamo_header_menu_backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.68);
  border: 0;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity 0.45s ease;
  will-change: opacity;
}
.minamo_header_menu_panel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  padding: 96px 20px 42px;
  overflow: hidden auto;
  color: #090909;
  background-color: #f2f6ff;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.45, 0, 0.55, 1);
}
@media (min-width: 920px) {
  .minamo_header_menu_panel {
    width: 547px;
    padding: 178px 60px 64px;
  }
}
.minamo_header_menu_inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.minamo_header_menu_deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.minamo_header_menu_deco img {
  display: block;
  width: 100%;
  height: auto;
}
.minamo_header_menu_deco_top {
  top: 0;
  right: 0;
  width: 242px;
}
@media (min-width: 920px) {
  .minamo_header_menu_deco_top {
    width: 273px;
  }
}
.minamo_header_menu_deco_bottom {
  bottom: 0;
  left: 0;
  width: 214px;
}
@media (min-width: 920px) {
  .minamo_header_menu_deco_bottom {
    width: 300px;
    bottom: 80px;
  }
}
.minamo_header_menu_list {
  display: grid;
  gap: 30px;
  margin: 0 0 46px;
  padding: 0;
  list-style: none;
}
@media (min-width: 920px) {
  .minamo_header_menu_list {
    gap: 28px;
    margin-bottom: 50px;
  }
}
.minamo_header_menu_item {
  margin: 0;
  padding: 0;
}
.minamo_header_menu_link {
  display: block;
  width: fit-content;
  color: #090909;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 920px) {
  .minamo_header_menu_link {
    font-size: 24px;
  }
}
.minamo_header_menu_sns {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.minamo_header_menu_sns_item {
  margin: 0;
  padding: 0;
}
.minamo_header_menu_sns_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: opacity 0.3s ease;
}
.minamo_header_menu_sns_link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.minamo_header.is_open .minamo_header_toggle_line {
  top: 22px;
}
.minamo_header.is_open .minamo_header_toggle_line:nth-child(1) {
  transform: rotate(45deg);
}
.minamo_header.is_open .minamo_header_toggle_line:nth-child(2) {
  transform: rotate(-45deg);
}
.minamo_header.is_open .minamo_header_menu {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.minamo_header.is_open .minamo_header_menu_backdrop {
  opacity: 1;
}
.minamo_header.is_open .minamo_header_menu_panel {
  transform: translateX(0);
}

.minamo {
  color: #090909;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
}
@media (max-width: 919px) {
  .minamo .container-small {
    padding: 0 30px;
  }
}
.minamo_section_ttl {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 0 auto 116px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 920px) {
  .minamo_section_ttl {
    margin-bottom: clamp(88px, calc(58.56px + 3.2vw), 120px);
    font-size: clamp(26px, calc(20.48px + 0.6vw), 32px);
  }
}
.minamo_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 67px;
  padding: 14px 30px;
  overflow: hidden;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  background-color: #8ac4e3;
}
.minamo_btn::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-color: #76b7da;
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}
.minamo_btn > span {
  position: relative;
  z-index: 1;
}
@media (min-width: 920px) {
  .minamo_btn {
    min-width: 326px;
    min-height: 69px;
    font-size: 18px;
  }
}
@media (hover: hover) {
  .minamo_btn:hover::before {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
.minamo_pill_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 333px;
  min-height: 60px;
  padding: 12px 20px;
  color: #ffffff;
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  border-radius: 999px;
}
@media (min-width: 920px) {
  .minamo_pill_btn::after {
    position: absolute;
    top: 50%;
    right: 28px;
    width: 16px;
    height: 16px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    content: "";
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  }
}
@media (min-width: 920px) {
  .minamo_pill_btn {
    justify-content: flex-start;
    max-width: 333px;
    min-height: 70px;
    padding: 14px 60px 14px 28px;
    font-size: 18px;
    text-align: left;
  }
}
@media (hover: hover) {
  .minamo_pill_btn:hover::after {
    transform: translate(5px, -50%) rotate(45deg);
  }
}
.minamo_pill_btn_blue {
  background-image: url("../img/minamo/minamo_btn_blue.png");
}
.minamo_pill_btn_orange {
  background-image: url("../img/minamo/minamo_btn_orange.png");
}
.minamo_fv {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
}
.minamo_fv_img {
  position: relative;
  width: 100%;
}
.minamo_fv_img picture {
  display: block;
}
.minamo_fv_img img {
  display: block;
  width: 100%;
}
.minamo_fv_img_bottle {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 51.2820512821vw;
  opacity: 0;
  filter: blur(40px);
  -webkit-filter: blur(40px);
  transform: translateX(-50%);
  animation: minamoFvBlurIn 5.2s cubic-bezier(0.22, 1, 0.36, 1) 2.4s forwards;
}
@media (min-width: 920px) {
  .minamo_fv_img_bottle {
    left: 31.5104166667vw;
    width: 35.4166666667vw;
    transform: none;
  }
}
.minamo_fv_img_left {
  position: absolute;
  top: 0;
  left: 0;
  width: 62.0512820513vw;
  opacity: 0;
  filter: blur(24px);
  -webkit-filter: blur(24px);
  animation: minamoFvBlurIn 2.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}
@media (min-width: 920px) {
  .minamo_fv_img_left {
    width: 26.3020833333vw;
  }
}
.minamo_fv_img_right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54.8717948718vw;
  opacity: 0;
  filter: blur(24px);
  -webkit-filter: blur(24px);
  animation: minamoFvBlurIn 2.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}
@media (min-width: 920px) {
  .minamo_fv_img_right {
    top: 0;
    bottom: auto;
    width: 29.6875vw;
  }
}
.minamo_fv_ttl {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 8.2051282051vw;
  display: flex;
  flex-direction: column;
  opacity: 0;
  filter: blur(24px);
  -webkit-filter: blur(24px);
  writing-mode: vertical-rl;
  transform: translateY(-50%);
  animation: minamoFvBlurIn 2.8s cubic-bezier(0.22, 1, 0.36, 1) 4.2s forwards;
}
.minamo_fv_ttl_ja, .minamo_fv_ttl_en {
  text-align: center;
  font-weight: 500;
}
.minamo_fv_ttl_ja {
  font-size: 5.1282051282vw;
  letter-spacing: 0.25em;
}
.minamo_fv_ttl_en {
  font-size: 3.0769230769vw;
}
@media (min-width: 920px) {
  .minamo_fv_ttl {
    left: 16.8229166667vw;
    gap: clamp(12px, calc(6.48px + 0.6vw), 18px);
  }
  .minamo_fv_ttl_ja {
    font-size: 1.875vw;
  }
  .minamo_fv_ttl_en {
    font-size: 1.0416666667vw;
  }
}
.minamo_fv_copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 9.4871794872vw;
  height: max-content;
  margin: 0;
  opacity: 0;
  filter: blur(14px);
  -webkit-filter: blur(14px);
  font-size: 5.1282051282vw;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.25em;
  text-align: center;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
  animation: minamoFvBlurIn 2.8s cubic-bezier(0.22, 1, 0.36, 1) 4.2s forwards;
}
@media (min-width: 920px) {
  .minamo_fv_copy {
    right: 20.2083333333vw;
    font-size: 1.875vw;
  }
}
.minamo_fv_img_left.is_animation_complete, .minamo_fv_img_right.is_animation_complete, .minamo_fv_img_bottle.is_animation_complete, .minamo_fv_ttl.is_animation_complete, .minamo_fv_copy.is_animation_complete {
  opacity: 1;
  filter: none;
  -webkit-filter: none;
  animation: none;
}
@keyframes minamoFvBlurIn {
  0% {
    opacity: 0;
    filter: blur(20px);
    -webkit-filter: blur(20px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    -webkit-filter: blur(0);
  }
}
.minamo_message {
  position: relative;
  overflow: hidden;
  padding: 80px 0 260px;
}
@media (min-width: 920px) {
  .minamo_message {
    padding: clamp(150px, calc(72.72px + 8.4vw), 234px) 0 clamp(300px, calc(217.2px + 9vw), 390px);
  }
}
.minamo_message_inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .minamo_message_inner {
    flex-direction: row-reverse;
    justify-content: center;
    gap: clamp(40px, calc(23.44px + 1.8vw), 58px);
  }
}
.minamo_message_ttl {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.15em;
}
@media (min-width: 920px) {
  .minamo_message_ttl {
    font-size: clamp(24px, calc(16.64px + 0.8vw), 32px);
    text-align: left;
    line-height: 2;
    writing-mode: vertical-rl;
  }
}
.minamo_message_txt {
  margin: 0;
  font-size: 14px;
  line-height: 2.4;
  text-align: center;
}
@media (min-width: 920px) {
  .minamo_message_txt {
    text-align: left;
    max-height: 610px;
    font-size: clamp(16px, calc(12.32px + 0.4vw), 20px);
    padding-top: clamp(32px, calc(15.44px + 1.8vw), 50px);
    line-height: 2.75;
    writing-mode: vertical-rl;
    letter-spacing: 0.125em;
  }
}
.minamo_message_deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.minamo_message_deco img {
  width: 100%;
}
.minamo_message_deco_left {
  top: 100px;
  left: 0;
  width: 44.6153846154vw;
}
@media (min-width: 920px) {
  .minamo_message_deco_left {
    top: clamp(90px, calc(62.4px + 3vw), 120px);
    width: clamp(380px, calc(258.56px + 13.2vw), 512px);
    transform: none;
  }
}
.minamo_message_deco_right {
  right: 0;
  bottom: 150px;
  width: 43.8461538462vw;
}
@media (min-width: 920px) {
  .minamo_message_deco_right {
    right: 0;
    bottom: clamp(150px, calc(94.8px + 6vw), 210px);
    width: clamp(360px, calc(249.6px + 12vw), 480px);
    transform: none;
  }
}
.minamo_message_scroll {
  position: absolute;
  z-index: 3;
  bottom: 85px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #000000;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  text-decoration: none;
  transform: translateX(-50%);
}
@media (min-width: 920px) {
  .minamo_message_scroll {
    bottom: clamp(80px, calc(59.76px + 2.2vw), 102px);
    gap: clamp(18px, calc(14.32px + 0.4vw), 22px);
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.minamo_message_scroll::before {
  display: block;
  width: 64px;
  height: 64px;
  border: 1px solid #000000;
  border-radius: 50%;
  content: "";
}
@media (min-width: 920px) {
  .minamo_message_scroll::before {
    width: clamp(70px, calc(60.8px + 1vw), 80px);
    height: clamp(70px, calc(60.8px + 1vw), 80px);
  }
}
.minamo_message_scroll::after {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 20px;
  height: 20px;
  background: url("../img/minamo/minamo_arrow.svg") center/contain no-repeat;
  content: "";
  transform: translateX(-50%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
@media (min-width: 920px) {
  .minamo_message_scroll::after {
    top: clamp(32px, calc(28.32px + 0.4vw), 36px);
    width: clamp(32px, calc(26.48px + 0.6vw), 38px);
    height: clamp(12px, calc(8.32px + 0.4vw), 16px);
  }
}
.minamo_message_scroll span {
  white-space: nowrap;
}
@media (hover: hover) {
  .minamo_message_scroll:hover::after {
    transform: translate(-50%, 5px);
  }
}
.minamo_lineup {
  position: relative;
  padding: 110px 0 150px;
  overflow: hidden;
}
@media (min-width: 920px) {
  .minamo_lineup {
    padding: clamp(120px, calc(74px + 5vw), 170px) 0 0;
  }
}
.minamo_lineup .container-small {
  position: relative;
  z-index: 1;
}
.minamo_lineup .minamo_section_ttl_bg {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 240px;
  aspect-ratio: 318/159;
  background: url("../img/minamo/lineup_ttl_bg.svg") center/contain no-repeat;
  content: "";
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media (min-width: 920px) {
  .minamo_lineup .minamo_section_ttl_bg {
    width: clamp(270px, calc(225.84px + 4.8vw), 318px);
  }
}
.minamo_product {
  position: relative;
}
.minamo_product:not(:last-child) {
  margin-bottom: 130px;
}
@media (min-width: 920px) {
  .minamo_product:not(:last-child) {
    margin-bottom: clamp(40px, calc(21.6px + 2vw), 60px);
  }
}
.minamo_product_intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .minamo_product_intro {
    grid-template-columns: minmax(0, 49.4137353434%) minmax(0, 45.6448911223%);
    justify-content: space-between;
    gap: 4.9413735343%;
    margin-bottom: clamp(80px, calc(52.4px + 3vw), 110px);
  }
}
.minamo_product_deco {
  position: absolute;
  pointer-events: none;
}
.minamo_product_deco img {
  display: block;
  width: 100%;
  height: auto;
}
.minamo_product_deco_blue {
  left: 0;
  bottom: 700px;
  width: 43.8461538462vw;
}
@media (min-width: 920px) {
  .minamo_product_deco_blue {
    bottom: 120px;
    width: 480px;
  }
}
.minamo_product_deco_orange {
  top: 970px;
  right: 0;
  width: 38.4615384615vw;
}
@media (min-width: 920px) {
  .minamo_product_deco_orange {
    top: 120px;
    width: 520px;
  }
}
.minamo_product_visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  isolation: isolate;
}
.minamo_product_visual_deco {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.minamo_product_visual_deco_blue {
  width: 320px;
}
@media (min-width: 920px) {
  .minamo_product_visual_deco_blue {
    width: 585px;
  }
}
.minamo_product_visual_deco_orange {
  width: 300px;
}
@media (min-width: 920px) {
  .minamo_product_visual_deco_orange {
    width: 484px;
  }
}
.minamo_product_visual_deco img {
  width: 100%;
}
.minamo_product_bottle {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .minamo_product_bottle {
    width: 100%;
    max-width: 590px;
  }
}
.minamo_product_copy {
  position: relative;
  width: 100%;
  min-width: 0;
}
.minamo_product_kana {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
}
@media (min-width: 920px) {
  .minamo_product_kana {
    font-size: clamp(16px, calc(12.32px + 0.4vw), 20px);
  }
}
.minamo_product_name {
  margin: 0 0 22px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.08em;
}
@media (min-width: 920px) {
  .minamo_product_name {
    margin-bottom: clamp(42px, calc(32.8px + 1vw), 52px);
    font-size: clamp(32px, calc(24.64px + 0.8vw), 40px);
  }
}
.minamo_product_lead {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .minamo_product_lead {
    font-size: clamp(20px, calc(16.32px + 0.4vw), 24px);
  }
}
.minamo_product_txt {
  margin: 0;
  letter-spacing: 0.04em;
  text-align: justify;
}
@media (min-width: 920px) {
  .minamo_product_txt {
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.minamo_product_small {
  width: 28px;
  margin-top: 32px;
}
@media (min-width: 920px) {
  .minamo_product_small {
    width: 38px;
    margin-top: 40px;
  }
}
.minamo_product_detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 42px;
}
@media (min-width: 920px) {
  .minamo_product_detail {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 454px);
    gap: clamp(56px, calc(28.4px + 3vw), 86px);
    margin-bottom: clamp(40px, calc(21.6px + 2vw), 60px);
  }
}
.minamo_product_spec_row {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid #bcbcbc;
}
@media (min-width: 920px) {
  .minamo_product_spec_row {
    grid-template-columns: 192px minmax(0, 1fr);
    gap: clamp(18px, calc(8.8px + 1vw), 28px);
    padding: 20px 0;
  }
}
.minamo_product_spec_row dt,
.minamo_product_spec_row dd {
  line-height: 1.5;
}
@media (min-width: 920px) {
  .minamo_product_spec_row dt,
  .minamo_product_spec_row dd {
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.minamo_product_spec_row dt {
  font-weight: 500;
}
.minamo_product_spec_row:first-child {
  padding-top: 0;
}
.minamo_product_taste {
  min-width: 0;
}
.minamo_product_chart {
  width: 100%;
  margin-bottom: 42px;
}
@media (min-width: 920px) {
  .minamo_product_chart {
    margin-bottom: clamp(32px, calc(6.24px + 2.8vw), 60px);
  }
}
.minamo_product_chart img {
  width: 100%;
}
.minamo_product_profile_ttl {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .minamo_product_profile_ttl {
    font-size: 20px;
  }
}
.minamo_product_profile {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.minamo_product_profile li {
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 12px 16px;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .minamo_product_profile li {
    padding: clamp(12px, calc(6.48px + 0.6vw), 18px) clamp(10px, calc(4.48px + 0.6vw), 16px);
  }
}
.minamo_product_comment {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}
@media (min-width: 920px) {
  .minamo_product_comment {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 24px;
  }
}
.minamo_product_comment_label {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 8px;
  border: 1px solid #090909;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  min-height: 40px;
}
@media (min-width: 920px) {
  .minamo_product_comment_label {
    align-items: center;
    padding: 18px 24px 18px;
    font-size: clamp(18px, calc(16.16px + 0.2vw), 20px);
    min-height: 72px;
    text-align: left;
  }
}
.minamo_product_comment_txt {
  letter-spacing: -0.005em;
}
@media (min-width: 920px) {
  .minamo_product_comment_txt {
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.minamo_product_blue .minamo_product_profile li {
  background-color: #e6f7fd;
}
.minamo_product_orange .minamo_product_profile li {
  background-color: #fdf2e6;
}
.minamo_story {
  position: relative;
  padding: 86px 0 0;
  overflow: hidden;
}
@media (min-width: 920px) {
  .minamo_story {
    padding: clamp(240px, calc(175.6px + 7vw), 310px) 0 0;
  }
}
.minamo_story .minamo_section_ttl_bg {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 240px;
  aspect-ratio: 429/380;
  background: url("../img/minamo/story_ttl_bg.svg") center/contain no-repeat;
  content: "";
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media (min-width: 920px) {
  .minamo_story .minamo_section_ttl_bg {
    width: clamp(360px, calc(296.52px + 6.9vw), 429px);
  }
}
@media (min-width: 920px) {
  .minamo_story .minamo_section_ttl {
    margin-bottom: clamp(120px, calc(59.28px + 6.6vw), 186px);
  }
}
.minamo_story_list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (min-width: 920px) {
  .minamo_story_list {
    gap: clamp(100px, calc(54px + 5vw), 150px);
  }
}
.minamo_story_item {
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: center;
}
@media (min-width: 920px) {
  .minamo_story_item {
    flex-direction: row;
    align-items: center;
    gap: clamp(20px, calc(-246.8px + 29vw), 310px);
    padding-right: clamp(70px, calc(-40.4px + 12vw), 190px);
  }
}
.minamo_story_item_reverse .minamo_story_img {
  margin-right: 0;
  border-radius: 180px 0 0 180px;
}
.minamo_story_item_reverse {
  align-items: flex-end;
}
@media (min-width: 920px) {
  .minamo_story_item_reverse {
    flex-direction: row-reverse;
    align-items: center;
    padding-right: 0;
    padding-left: clamp(70px, calc(-40.4px + 12vw), 190px);
    padding-bottom: clamp(60px, calc(32.4px + 3vw), 90px);
  }
  .minamo_story_item_reverse .minamo_story_img {
    grid-column: 2;
    grid-row: 1;
    border-radius: 240px 0 0 240px;
  }
  .minamo_story_item_reverse .minamo_story_content {
    grid-column: 1;
    grid-row: 1;
  }
}
.minamo_story_img {
  position: relative;
  width: 87.1794871795%;
  margin-right: auto;
  overflow: visible;
  border-radius: 0 180px 180px 0;
}
@media (min-width: 920px) {
  .minamo_story_img {
    width: 42.1875vw;
    margin-right: 0;
    border-radius: 0 240px 240px 0;
  }
}
.minamo_story_img picture {
  display: block;
  overflow: hidden;
  border-radius: inherit;
}
.minamo_story_img picture > img {
  width: 100%;
}
.minamo_story_img_illust {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.minamo_story_img_illust img {
  width: 100%;
}
.minamo_story_img_illust_01 {
  top: -50px;
  left: 0;
  width: 31.5384615385vw;
}
@media (min-width: 920px) {
  .minamo_story_img_illust_01 {
    top: clamp(-220px, calc(-137.2px + -9vw), -310px);
    width: clamp(260px, calc(160.64px + 10.8vw), 368px);
  }
}
.minamo_story_img_illust_02 {
  right: 0;
  bottom: -44px;
  width: 33.5897435897vw;
}
@media (min-width: 920px) {
  .minamo_story_img_illust_02 {
    bottom: clamp(-240px, calc(-164.56px + -8.2vw), -322px);
    width: clamp(270px, calc(172.48px + 10.6vw), 376px);
  }
}
.minamo_story_img_illust_03 {
  top: -78px;
  left: 0;
  width: 30.7692307692vw;
}
@media (min-width: 920px) {
  .minamo_story_img_illust_03 {
    top: clamp(-220px, calc(-137.2px + -9vw), -310px);
    width: clamp(270px, calc(224px + 5vw), 320px);
  }
}
.minamo_story_content {
  width: min(calc(100% - 60px), 470px);
  margin: 0 auto;
}
@media (min-width: 920px) {
  .minamo_story_content {
    width: 100%;
    max-width: 438px;
    margin: 0;
  }
}
.minamo_story_content .minamo_btn {
  max-width: 276px;
  margin: 24px auto 0;
}
@media (min-width: 920px) {
  .minamo_story_content .minamo_btn {
    max-width: 326px;
    margin: 24px 0 0;
  }
}
.minamo_story_ttl {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 920px) {
  .minamo_story_ttl {
    margin-bottom: clamp(28px, calc(16.96px + 1.2vw), 40px);
    font-size: clamp(24px, calc(16.64px + 0.8vw), 32px);
    text-align: left;
  }
}
.minamo_story_txt {
  margin: 0;
  line-height: 1.8;
  text-align: justify;
}
@media (min-width: 920px) {
  .minamo_story_txt {
    line-height: 2;
  }
}
.minamo_innovation {
  position: relative;
  padding: 194px 0 120px;
  overflow: hidden;
  line-height: 1.8;
}
@media (min-width: 920px) {
  .minamo_innovation {
    padding: clamp(200px, calc(91.44px + 11.8vw), 318px) 0 clamp(160px, calc(126.88px + 3.6vw), 196px);
  }
}
.minamo_innovation .minamo_section_ttl_bg {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 240px;
  aspect-ratio: 290/122;
  background: url("../img/minamo/innovation_ttl_bg.svg") center/contain no-repeat;
  content: "";
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media (min-width: 920px) {
  .minamo_innovation .minamo_section_ttl_bg {
    width: clamp(240px, calc(194px + 5vw), 290px);
  }
}
.minamo_innovation_list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 56px;
  margin: 0 0 80px;
  padding: 0;
  list-style: none;
}
@media (min-width: 920px) {
  .minamo_innovation_list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(30px, calc(7.92px + 2.4vw), 54px);
    margin-bottom: clamp(160px, calc(86.4px + 8vw), 240px);
  }
}
.minamo_innovation_img {
  width: 100%;
  overflow: hidden;
  border-radius: 50%;
}
@media (min-width: 920px) {
  .minamo_innovation_img {
    margin-bottom: clamp(16px, calc(12.32px + 0.4vw), 20px);
  }
}
.minamo_innovation_img img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.minamo_innovation_ttl {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}
@media (min-width: 920px) {
  .minamo_innovation_ttl {
    font-size: clamp(18px, calc(12.48px + 0.6vw), 24px);
    margin-bottom: clamp(20px, calc(14.48px + 0.6vw), 26px);
  }
}
.minamo_innovation_txt {
  text-align: justify;
}
@media (min-width: 920px) {
  .minamo_innovation_txt {
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.minamo_innovation_links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: min(100%, 800px);
  margin: 0 auto;
  max-width: 285px;
}
@media (min-width: 920px) {
  .minamo_innovation_links {
    flex-flow: row wrap;
    justify-content: center;
    gap: 80px 40px;
    max-width: none;
  }
}
@media (max-width: 919px) {
  .minamo_innovation_links .minamo_btn {
    margin-top: 24px;
    width: 100%;
  }
}
.minamo_footer {
  color: #090909;
  position: relative;
  z-index: 1;
  padding: 66px 24px 20px;
  overflow: hidden;
  background-color: #f2f2f2;
}
@media (min-width: 920px) {
  .minamo_footer {
    padding: clamp(70px, calc(58.96px + 1.2vw), 82px) clamp(40px, calc(21.6px + 2vw), 60px) clamp(30px, calc(20.8px + 1vw), 40px);
  }
}
.minamo_footer_deco {
  position: absolute;
  z-index: -1;
  height: auto;
  pointer-events: none;
}
.minamo_footer_deco_left {
  top: 70px;
  left: 0;
  width: 146px;
}
@media (min-width: 920px) {
  .minamo_footer_deco_left {
    top: 30px;
    width: clamp(320px, calc(220.64px + 10.8vw), 428px);
    transform: none;
  }
}
.minamo_footer_deco_right {
  top: 93px;
  right: 0;
  width: 140px;
}
@media (min-width: 920px) {
  .minamo_footer_deco_right {
    top: 58px;
    width: clamp(330px, calc(203.96px + 13.7vw), 467px);
    transform: none;
  }
}
.minamo_footer_info {
  margin-bottom: 24px;
  text-align: center;
}
@media (min-width: 920px) {
  .minamo_footer_info {
    margin-bottom: clamp(16px, calc(8.64px + 0.8vw), 24px);
  }
}
.minamo_footer_inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
@media (min-width: 920px) {
  .minamo_footer_inner {
    margin-bottom: clamp(60px, calc(41.6px + 2vw), 80px);
  }
}
.minamo_footer_logo {
  width: 83px;
  margin-bottom: 28px;
}
@media (min-width: 920px) {
  .minamo_footer_logo {
    width: 99px;
    margin-bottom: clamp(46px, calc(33.12px + 1.4vw), 60px);
  }
}
.minamo_footer_logo img {
  display: block;
  width: 100%;
  height: auto;
}
.minamo_footer_company {
  margin: 0 0 2px;
}
@media (min-width: 920px) {
  .minamo_footer_company {
    margin-bottom: 3px;
  }
}
.minamo_footer_company .txt_link {
  padding-bottom: 0;
  line-height: 1.15;
  letter-spacing: 0;
}
@media (min-width: 920px) {
  .minamo_footer_company .txt_link {
    font-size: clamp(15px, calc(12.24px + 0.3vw), 18px);
  }
}
.minamo_footer_company .txt_link::after {
  background-color: #090909;
}
.minamo_footer_address {
  margin: 0 0 2px;
}
@media (min-width: 920px) {
  .minamo_footer_address {
    margin-bottom: 3px;
  }
}
.minamo_footer_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 16px;
  margin: 0;
}
@media (min-width: 920px) {
  .minamo_footer_contact {
    gap: 0 22px;
  }
}
.minamo_footer_sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0;
  list-style: none;
}
@media (min-width: 920px) {
  .minamo_footer_sns {
    gap: 4px;
  }
}
.minamo_footer_sns_link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .minamo_footer_sns_link:hover {
    opacity: 0.6;
  }
}
.minamo_footer_sns_link img {
  display: block;
  width: 40px;
  height: 40px;
}
@media (min-width: 920px) {
  .minamo_footer_sns_link img {
    width: auto;
    height: auto;
  }
}
.minamo_footer_bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-size: 10px;
  text-align: center;
}
@media (min-width: 920px) {
  .minamo_footer_bottom {
    flex-direction: row;
    align-items: initial;
    justify-content: space-between;
    gap: 0;
    font-size: 14px;
    text-align: left;
  }
}
.minamo_footer_attention {
  max-width: 300px;
  margin: 0;
  line-height: 1.5;
  font-size: 12px;
}
@media (min-width: 920px) {
  .minamo_footer_attention {
    max-width: none;
    line-height: normal;
    font-size: 14px;
  }
}
.minamo_footer_copyright {
  flex-shrink: 0;
  margin: 0;
  font-size: 10px;
  white-space: nowrap;
}
@media (min-width: 920px) {
  .minamo_footer_copyright {
    font-size: inherit;
  }
}

.js_blur_reveal {
  opacity: 0;
  filter: blur(20px);
  transition: opacity 2.2s ease, filter 2.2s ease;
}

.js_blur_reveal.is_inview {
  opacity: 1;
  filter: blur(0);
}

.company.subPage_body {
  padding-bottom: 120px;
}
@media (min-width: 920px) {
  .company.subPage_body {
    padding-bottom: clamp(120px, calc(9.6px + 12vw), 240px);
  }
}
.company_intro {
  margin-bottom: 80px;
}
@media (min-width: 920px) {
  .company_intro {
    margin-bottom: clamp(120px, calc(11.44px + 11.8vw), 238px);
  }
}
.company_intro_catch {
  margin-bottom: 32px;
  font-size: 18px;
}
@media (min-width: 920px) {
  .company_intro_catch {
    margin-bottom: clamp(40px, calc(21.6px + 2vw), 60px);
    font-size: clamp(30px, calc(20.8px + 1vw), 40px);
    line-height: 2;
  }
}
.company_intro_txt {
  font-size: 15px;
  letter-spacing: 0.08em;
}
@media (min-width: 920px) {
  .company_intro_txt {
    font-size: clamp(18px, calc(12.48px + 0.6vw), 24px);
    line-height: 2.2;
  }
}
@media (min-width: 920px) {
  .company_body {
    width: 74.7068676717%;
    margin-left: auto;
  }
}
.company_info {
  width: 100%;
  margin: 0;
  margin-bottom: 80px;
}
@media (min-width: 920px) {
  .company_info {
    margin-bottom: 160px;
  }
}
.company_info_row {
  display: grid;
  grid-template-columns: 1fr;
  padding: 14px 0;
  border-bottom: 1px solid rgba(10, 45, 136, 0.3019607843);
}
@media (min-width: 920px) {
  .company_info_row {
    grid-template-columns: 140px minmax(0, 1fr);
    padding: clamp(12px, calc(8.32px + 0.4vw), 16px) 0;
  }
}
.company_info_row:first-child {
  padding-top: 0;
}
.company_info_row .map {
  padding-bottom: 0;
  line-height: 1.25;
  letter-spacing: 0;
}
.company_info_label {
  padding-right: 0;
  line-height: 1.5;
  margin-bottom: 6px;
}
@media (min-width: 920px) {
  .company_info_label {
    line-height: 1.75;
    padding-right: 20px;
    margin-bottom: 0;
  }
}
.company_info_content {
  line-height: 1.5;
}
@media (min-width: 920px) {
  .company_info_content {
    line-height: 1.75;
  }
}
.company_info_content a {
  color: inherit;
  text-decoration: none;
}
.company_info_list_item {
  margin-bottom: 8px;
}
@media (min-width: 920px) {
  .company_info_list_item {
    margin-bottom: 16px;
  }
}
.company_info_list_item:last-child {
  margin-bottom: 0;
}
.company_awards {
  background-color: #eceff7;
  padding: 24px 20px;
}
@media (min-width: 920px) {
  .company_awards {
    padding: clamp(60px, calc(47.12px + 1.4vw), 74px) clamp(40px, calc(21.6px + 2vw), 60px) clamp(64px, calc(49.28px + 1.6vw), 80px);
  }
}
.company_awards_ttl {
  font-weight: 500;
  line-height: 1.25;
  font-size: 20px;
  margin-bottom: 20px;
}
@media (min-width: 920px) {
  .company_awards_ttl {
    font-size: clamp(24px, calc(16.64px + 0.8vw), 32px);
    margin-bottom: clamp(28px, calc(16.96px + 1.2vw), 40px);
  }
}
.company_awards_txt {
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
@media (min-width: 920px) {
  .company_awards_txt {
    margin-bottom: clamp(40px, calc(21.6px + 2vw), 60px);
  }
}
.company_awards_list_item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 4px;
}
@media (min-width: 920px) {
  .company_awards_list_item {
    font-size: clamp(16px, calc(12.32px + 0.4vw), 20px);
    padding-left: clamp(24px, calc(18.48px + 0.6vw), 30px);
    margin-bottom: clamp(6px, calc(4.16px + 0.2vw), 8px);
  }
}
.company_awards_list_item:last-child {
  margin-bottom: 0;
}
.company_awards_list_item::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #0A2D88;
  position: absolute;
  left: 8px;
  top: 11px;
}
@media (min-width: 920px) {
  .company_awards_list_item::before {
    width: clamp(4px, calc(2.16px + 0.2vw), 6px);
    height: clamp(4px, calc(2.16px + 0.2vw), 6px);
    left: clamp(8px, calc(4.32px + 0.4vw), 12px);
    top: clamp(11px, calc(6.4px + 0.5vw), 16px);
  }
}

.news_archive {
  padding: 40px 0 120px;
}
@media (min-width: 920px) {
  .news_archive {
    padding: clamp(80px, calc(56.08px + 2.6vw), 106px) 0 clamp(180px, calc(124.8px + 6vw), 240px);
  }
}
.news_archive .news_nav {
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .news_archive .news_nav {
    margin-bottom: clamp(24px, calc(14.8px + 1vw), 34px);
  }
}
.news_archive .news_nav_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.news_archive .news_nav_item {
  display: flex;
  align-items: center;
}
.news_archive .news_nav_item:not(:last-child)::after {
  display: block;
  width: 1px;
  height: 14px;
  margin: 0 10px;
  background-color: #cccccc;
  content: "";
}
@media (min-width: 920px) {
  .news_archive .news_nav_item:not(:last-child)::after {
    height: clamp(16px, calc(12.32px + 0.4vw), 20px);
    margin: 0 clamp(12px, calc(0.96px + 1.2vw), 24px);
  }
}
.news_archive .news_nav_link {
  position: relative;
  display: inline-block;
  color: #0A2D88;
  font-family: inherit;
  font-size: 13px;
  font-weight: inherit;
  line-height: 1.5;
  letter-spacing: -0.05em;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.8s cubic-bezier(0.1, 1, 0.2, 1);
}
@media (min-width: 920px) {
  .news_archive .news_nav_link {
    font-size: clamp(16px, calc(12.32px + 0.4vw), 20px);
  }
}
.news_archive .news_nav_link.is-active {
  opacity: 1;
  pointer-events: none;
}
@media (min-width: 920px) {
  .news_archive .news_nav_link:hover {
    opacity: 1;
  }
}
.news_archive .news_body {
  width: 100%;
}
.news_archive .news_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.news_archive .news_item {
  border-bottom: 1px solid rgba(10, 45, 136, 0.3019607843);
}
.news_archive .news_link {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0;
  color: #0A2D88;
  text-decoration: none;
}
@media (min-width: 920px) {
  .news_archive .news_link {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: clamp(24px, calc(10.2px + 1.5vw), 39px) clamp(12px, calc(4.64px + 0.8vw), 20px);
  }
}
.news_archive .news_link::before {
  position: absolute;
  z-index: -1;
  top: -1px;
  right: 0;
  bottom: -1px;
  left: 0;
  display: block;
  background-color: rgba(10, 45, 136, 0.025);
  content: "";
  pointer-events: none;
  backface-visibility: hidden;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 1.2s cubic-bezier(0.1, 1, 0.2, 1);
  will-change: transform;
}
@media (min-width: 920px) {
  .news_archive .news_link:hover::before {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
.news_archive .news_info {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 16px;
  width: 100%;
}
@media (min-width: 920px) {
  .news_archive .news_info {
    gap: clamp(6px, calc(2.32px + 0.4vw), 10px);
    width: 24%;
  }
}
.news_archive .news_date {
  display: block;
  flex-shrink: 0;
  font-size: 12px;
  line-height: 1.5;
  white-space: nowrap;
}
@media (min-width: 920px) {
  .news_archive .news_date {
    width: clamp(70px, calc(51.6px + 2vw), 90px);
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.news_archive .news_categories {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 8px;
  min-width: 0;
}
@media (min-width: 920px) {
  .news_archive .news_categories {
    width: clamp(150px, calc(85.6px + 7vw), 220px);
  }
}
.news_archive .news_category {
  font-size: 12px;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .news_archive .news_category {
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.news_archive .news_ttlArea {
  width: 100%;
  min-width: 0;
}
@media (min-width: 920px) {
  .news_archive .news_ttlArea {
    width: 73.3671562083%;
  }
}
.news_archive .news_ttl {
  margin: 0;
  font-size: 14px;
}
@media (min-width: 920px) {
  .news_archive .news_ttl {
    font-size: clamp(15px, calc(10.4px + 0.5vw), 20px);
    line-height: 1.8;
  }
}
.news_archive .news_empty {
  margin: 0;
  padding: 50px 0;
  border-top: 1px solid #0A2D88;
  border-bottom: 1px solid #0A2D88;
  color: #0A2D88;
  font-size: 15px;
  text-align: center;
}
.news_archive .news_pagination {
  margin-top: 60px;
}
@media (min-width: 920px) {
  .news_archive .news_pagination {
    margin-top: clamp(62px, calc(45.44px + 1.8vw), 80px);
  }
}
.news_archive .news_pagination_items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 920px) {
  .news_archive .news_pagination_items {
    gap: clamp(12px, calc(8.32px + 0.4vw), 16px);
  }
}
.news_archive .news_pagination_items .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0 5px 1px;
  color: #0A2D88;
  background-color: transparent;
  border: 1px solid #0A2D88;
  border-radius: 50%;
  font-family: inherit;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  transition: color 0.4s ease, background-color 0.4s ease, opacity 0.4s ease;
}
@media (min-width: 920px) {
  .news_archive .news_pagination_items .page-numbers {
    min-width: clamp(36px, calc(30.48px + 0.6vw), 42px);
    height: clamp(36px, calc(30.48px + 0.6vw), 42px);
    font-size: clamp(16px, calc(14.16px + 0.2vw), 18px);
    padding: 0 5px 2px;
  }
}
.news_archive .news_pagination_items .page-numbers.current {
  color: #ffffff;
  background-color: #0A2D88;
}
.news_archive .news_pagination_items .page-numbers.dots {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  width: fit-content;
}
.news_archive .news_pagination_items .page-numbers.prev, .news_archive .news_pagination_items .page-numbers.next {
  border: none;
}
.news_archive .news_pagination_items .page-numbers.prev.is-disabled, .news_archive .news_pagination_items .page-numbers.next.is-disabled {
  opacity: 0.25;
  pointer-events: none;
}
@media (min-width: 920px) {
  .news_archive .news_pagination_items .page-numbers.prev:hover, .news_archive .news_pagination_items .page-numbers.next:hover {
    opacity: 0.5;
  }
}
@media (min-width: 920px) {
  .news_archive .news_pagination_items .page-numbers.prev {
    margin-right: clamp(32px, calc(9.92px + 2.4vw), 56px);
  }
}
@media (min-width: 920px) {
  .news_archive .news_pagination_items .page-numbers.next {
    margin-left: clamp(32px, calc(9.92px + 2.4vw), 56px);
  }
}
@media (min-width: 920px) {
  .news_archive .news_pagination_items .page-numbers:not(.current, .dots, .prev, .next):hover {
    color: #ffffff;
    background-color: #0A2D88;
  }
}
.news_archive .news_pagination_arrow {
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
@media (min-width: 920px) {
  .news_archive .news_pagination_arrow {
    width: 10px;
    height: 10px;
  }
}
.news_archive .news_pagination_arrow_prev {
  transform: rotate(-135deg);
}
.news_archive .news_pagination_arrow_next {
  transform: rotate(45deg);
}

.news_single {
  padding-top: 100px;
  color: #0A2D88;
}
@media (min-width: 920px) {
  .news_single {
    padding-top: clamp(140px, calc(88.48px + 5.6vw), 196px);
  }
}
.news_single_header {
  margin-bottom: 20px;
}
@media (min-width: 920px) {
  .news_single_header {
    margin-bottom: clamp(48px, calc(25.92px + 2.4vw), 72px);
  }
}
.news_single_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 16px;
  margin-bottom: 12px;
}
@media (min-width: 920px) {
  .news_single_meta {
    gap: 8px clamp(16px, calc(12.32px + 0.4vw), 20px);
    margin-bottom: clamp(6px, calc(2.32px + 0.4vw), 10px);
  }
}
.news_single_date {
  display: block;
  flex-shrink: 0;
  font-size: 12px;
  line-height: 1.5;
  white-space: nowrap;
}
@media (min-width: 920px) {
  .news_single_date {
    font-size: clamp(16px, calc(12.32px + 0.4vw), 20px);
  }
}
.news_single_categories {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
}
.news_single_category {
  display: block;
  font-size: 12px;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .news_single_category {
    font-size: clamp(16px, calc(12.32px + 0.4vw), 20px);
  }
}
.news_single_ttl {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .news_single_ttl {
    font-size: clamp(30px, calc(20.8px + 1vw), 40px);
  }
}
.news_single_layout {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 920px) {
  .news_single_layout {
    flex-direction: row;
    gap: 0;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media (min-width: 920px) {
  .news_single_layout_single {
    grid-template-columns: minmax(0, 1fr);
  }
  .news_single_layout_single .news_single_main {
    width: 100%;
    max-width: 900px;
  }
}
.news_single_main {
  min-width: 0;
}
@media (min-width: 920px) {
  .news_single_main {
    width: 61.9765494137%;
  }
}
.news_single_thumb {
  width: 100%;
  margin-bottom: 40px;
  overflow: hidden;
}
@media (min-width: 920px) {
  .news_single_thumb {
    margin-bottom: clamp(46px, calc(33.12px + 1.4vw), 60px);
  }
}
.news_single_thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.news_single_thumb_img {
  display: block;
  width: 100%;
  height: auto;
}
.news_single_content > *:first-child {
  margin-top: 0;
}
.news_single_content > *:last-child {
  margin-bottom: 0;
}
.news_single_content h2 {
  margin: 40px 0 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.04em;
}
@media (min-width: 920px) {
  .news_single_content h2 {
    margin: clamp(40px, calc(21.6px + 2vw), 60px) 0 clamp(16px, calc(10.48px + 0.6vw), 22px);
    font-size: clamp(18px, calc(12.48px + 0.6vw), 24px);
  }
}
.news_single_content h3 {
  margin: 44px 0 20px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.03em;
}
@media (min-width: 920px) {
  .news_single_content h3 {
    margin: clamp(48px, calc(36.96px + 1.2vw), 60px) 0 clamp(20px, calc(14.48px + 0.6vw), 26px);
    font-size: clamp(19px, calc(14.4px + 0.5vw), 24px);
  }
}
.news_single_content h4,
.news_single_content h5,
.news_single_content h6 {
  margin: 36px 0 16px;
  font-weight: 500;
  line-height: 1.7;
}
.news_single_content p {
  margin: 0 0 12px;
}
@media (min-width: 920px) {
  .news_single_content p {
    /* margin-bottom: clamp(12px, calc(8.32px + 0.4vw), 16px); */
    margin-bottom: 32px;
    font-size: clamp(15px, calc(14.08px + 0.1vw), 16px);
  }
}
.news_single_content ul,
.news_single_content ol {
  margin-bottom: 16px;
}
@media (min-width: 920px) {
  .news_single_content ul,
  .news_single_content ol {
    margin-bottom: clamp(20px, calc(16.32px + 0.4vw), 24px);
  }
}
.news_single_content ul li,
.news_single_content ol li {
  line-height: 1.5;
}
@media (min-width: 920px) {
  .news_single_content ul li,
  .news_single_content ol li {
    font-size: clamp(15px, calc(14.08px + 0.1vw), 16px);
  }
}
.news_single_content ul li {
  padding-left: 16px;
  position: relative;
}
@media (min-width: 920px) {
  .news_single_content ul li {
    padding-left: 24px;
  }
}
.news_single_content ul li::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #0A2D88;
  position: absolute;
  top: 8px;
  left: 6px;
}
@media (min-width: 920px) {
  .news_single_content ul li::before {
    width: 4px;
    height: 4px;
    top: 9px;
    left: 10px;
  }
}
.news_single_content ol {
  list-style: decimal;
  padding-left: 24px;
}
.news_single_content li {
  margin-bottom: 4px;
}
@media (min-width: 920px) {
  .news_single_content li {
    margin-bottom: 6px;
  }
}
.news_single_content li:last-child {
  margin-bottom: 0;
}
.news_single_content a {
  display: inline;
  color: inherit;
  line-height: 1.25;
  text-decoration: none;
  background-image: linear-gradient(#0A2D88, #0A2D88);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 1px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.news_single_content a:hover {
  animation: txt-link-line-multiline 1.2s cubic-bezier(0.1, 1, 0.2, 1);
}
@keyframes txt-link-line-multiline {
  0% {
    background-position: right bottom;
    background-size: 100% 1px;
  }
  49.9% {
    background-position: right bottom;
    background-size: 0 1px;
  }
  50% {
    background-position: left bottom;
    background-size: 0 1px;
  }
  100% {
    background-position: left bottom;
    background-size: 100% 1px;
  }
}
.news_single_content strong {
  font-weight: 700;
}
.news_single_content figure {
  max-width: 100%;
  margin: 44px 0;
}
@media (min-width: 920px) {
  .news_single_content figure {
    margin: clamp(48px, calc(33.28px + 1.6vw), 64px) 0;
  }
}
.news_single_content img {
  max-width: 100%;
  height: auto;
}
.news_single_content figcaption {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.7;
  opacity: 0.7;
}
@media (min-width: 920px) {
  .news_single_content figcaption {
    font-size: 13px;
  }
}
.news_single_content blockquote {
  margin: 36px 0;
  padding: 4px 0 4px 24px;
  border-left: 2px solid #0A2D88;
}
.news_single_content blockquote p:last-child {
  margin-bottom: 0;
}
.news_single_content table {
  width: 100%;
  margin: 36px 0;
  border-collapse: collapse;
  table-layout: fixed;
}
.news_single_content th,
.news_single_content td {
  padding: 12px;
  border: 1px solid rgba(10, 45, 136, 0.3);
  text-align: left;
  vertical-align: top;
}
.news_single_content th {
  background-color: rgba(10, 45, 136, 0.05);
  font-weight: 500;
}
.news_single_content iframe,
.news_single_content video {
  display: block;
  max-width: 100%;
  margin: 44px 0;
}
.news_single_content .wp-block-image {
  margin-top: 12px;
  margin-bottom: 32px;
}
@media (min-width: 920px) {
  .news_single_content .wp-block-image {
    margin-top: clamp(14px, calc(12.16px + 0.2vw), 16px);
    margin-bottom: clamp(48px, calc(33.28px + 1.6vw), 64px);
  }
}
.news_single_content .wp-block-image img {
  display: block;
  width: 100%;
}
.news_single_content .wp-block-separator {
  margin: 52px 0;
  border: 0;
  border-top: 1px solid rgba(10, 45, 136, 0.3);
}
.news_single_content > *:last-child {
  margin-bottom: 0;
}
.news_single_page_links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
}
.news_single_page_links .post-page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  color: #0A2D88;
  border: 1px solid #0A2D88;
  border-radius: 50%;
  text-decoration: none;
}
.news_single_page_links .post-page-numbers.current {
  color: #ffffff;
  background-color: #0A2D88;
}
.news_single_side {
  padding: 30px 24px;
  background-color: #eceff7;
}
@media (min-width: 920px) {
  .news_single_side {
    padding: clamp(30px, calc(20.8px + 1vw), 40px);
    width: 30.9882747069%;
    position: sticky;
    top: 90px;
  }
}
.news_single_side_ttl {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .news_single_side_ttl {
    margin-bottom: clamp(12px, calc(0.96px + 1.2vw), 24px);
    font-size: clamp(18px, calc(12.48px + 0.6vw), 24px);
  }
}
.news_single_side_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.news_single_side_item {
  border-bottom: 1px solid rgba(10, 45, 136, 0.3019607843);
}
.news_single_side_item:first-child .news_single_side_link {
  padding-top: 0;
}
.news_single_side_item:last-child {
  border: none;
}
.news_single_side_item:last-child .news_single_side_link {
  padding-bottom: 0;
}
.news_single_side_link {
  display: block;
  padding: 16px 0;
  color: #0A2D88;
  text-decoration: none;
}
@media (min-width: 920px) {
  .news_single_side_link {
    padding: clamp(20px, calc(15.4px + 0.5vw), 25px) 0;
  }
}
.news_single_side_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 14px;
  margin-bottom: 6px;
}
@media (min-width: 920px) {
  .news_single_side_meta {
    gap: 4px 20px;
  }
}
.news_single_side_date, .news_single_side_category {
  display: block;
  font-size: 12px;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .news_single_side_date, .news_single_side_category {
    font-size: clamp(12px, calc(10.16px + 0.2vw), 14px);
  }
}
.news_single_side_post_ttl {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (min-width: 920px) {
  .news_single_side_post_ttl {
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.news_single_footer {
  margin-top: 60px;
  padding: 60px 0 80px;
  border-top: 1px solid #0A2D88;
}
@media (min-width: 920px) {
  .news_single_footer {
    margin-top: clamp(100px, calc(44.8px + 6vw), 160px);
    padding: clamp(80px, calc(45.04px + 3.8vw), 118px) 0 clamp(160px, calc(104.8px + 6vw), 220px);
  }
}
.news_single_back .btn {
  font-size: 15px;
}
@media (min-width: 920px) {
  .news_single_back .btn {
    max-width: clamp(400px, calc(326.4px + 8vw), 480px);
    min-height: clamp(60px, calc(50.8px + 1vw), 70px);
    font-size: clamp(16px, calc(14.16px + 0.2vw), 18px);
  }
}
.news_single_breadcrumb {
  padding: 0 0 40px;
}
@media (min-width: 920px) {
  .news_single_breadcrumb {
    padding-bottom: clamp(40px, calc(21.6px + 2vw), 60px);
  }
}
.news_single_breadcrumb .breadcrumb {
  justify-content: flex-start;
}

.common_form {
  width: 100%;
}
.common_form_wrap .wpcf7 {
  width: 100%;
}
.common_form_wrap .wpcf7-form {
  width: 100%;
  margin: 0;
}
.common_form_wrap .wpcf7-form > p {
  margin: 0;
}
.common_form_wrap .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.common_form_wrap .wpcf7-not-valid {
  border-color: #d60000 !important;
}
.common_form_wrap .wpcf7-not-valid-tip {
  display: block;
  margin-top: 7px;
  color: #d60000;
  font-size: 12px;
  line-height: 1.6;
}
.common_form_wrap .wpcf7-response-output {
  margin: 28px 0 0 !important;
  padding: 14px 16px !important;
  border-width: 1px !important;
  font-size: 13px;
  line-height: 1.7;
}
.common_form_rows {
  width: 100%;
}
.common_form_row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(10, 45, 136, 0.3019607843);
}
@media (min-width: 920px) {
  .common_form_row {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    padding: clamp(20px, calc(16.32px + 0.4vw), 24px) 0;
  }
}
.common_form_row:first-child {
  padding-top: 0;
}
.common_form_row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.common_form_label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  margin: 0;
}
@media (min-width: 920px) {
  .common_form_label {
    width: 24.5945945946%;
    min-height: 56px;
  }
}
.common_form_label_text {
  display: block;
  min-width: 0;
  color: #0A2D88;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .common_form_label_text {
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.common_form_status {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  flex-wrap: nowrap;
  min-height: 20px;
  padding: 3px 5px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.common_form_status.is_required {
  color: #fff;
  background-color: #ff0000;
}
.common_form_status.is_optional {
  color: #090909;
  background-color: #dcdcdc;
}
.common_form_field {
  width: 100%;
}
@media (min-width: 920px) {
  .common_form_field {
    width: 64.5945945946%;
  }
}
.common_form_field input[type=text],
.common_form_field input[type=email],
.common_form_field input[type=tel],
.common_form_field input[type=url],
.common_form_field input[type=number],
.common_form_field select,
.common_form_field textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: #090909;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  background-color: #fff;
  border: 1px solid #0A2D88;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 920px) {
  .common_form_field input[type=text],
  .common_form_field input[type=email],
  .common_form_field input[type=tel],
  .common_form_field input[type=url],
  .common_form_field input[type=number],
  .common_form_field select,
  .common_form_field textarea {
    border-radius: 8px;
  }
}
.common_form_field input[type=text]::placeholder,
.common_form_field input[type=email]::placeholder,
.common_form_field input[type=tel]::placeholder,
.common_form_field input[type=url]::placeholder,
.common_form_field input[type=number]::placeholder,
.common_form_field select::placeholder,
.common_form_field textarea::placeholder {
  color: rgba(9, 9, 9, 0.3);
}
.common_form_field input[type=text]:focus,
.common_form_field input[type=email]:focus,
.common_form_field input[type=tel]:focus,
.common_form_field input[type=url]:focus,
.common_form_field input[type=number]:focus,
.common_form_field select:focus,
.common_form_field textarea:focus {
  border-color: #0A2D88;
  box-shadow: 0 0 0 3px rgba(10, 45, 136, 0.12);
}
.common_form_field input[type=text],
.common_form_field input[type=email],
.common_form_field input[type=tel],
.common_form_field input[type=url],
.common_form_field input[type=number],
.common_form_field select {
  height: 50px;
  padding: 0 18px;
}
@media (min-width: 920px) {
  .common_form_field input[type=text],
  .common_form_field input[type=email],
  .common_form_field input[type=tel],
  .common_form_field input[type=url],
  .common_form_field input[type=number],
  .common_form_field select {
    height: 56px;
  }
}
.common_form_field select {
  padding-right: 50px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.common_form_field textarea {
  height: 180px;
  padding: 17px 18px;
  resize: vertical;
}
@media (min-width: 920px) {
  .common_form_field textarea {
    height: clamp(180px, calc(143.2px + 4vw), 220px);
  }
}
.common_form_select .wpcf7-form-control-wrap {
  position: relative;
}
.common_form_select .wpcf7-form-control-wrap::after {
  position: absolute;
  top: 25px;
  right: 20px;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-right: 1px solid #090909;
  border-bottom: 1px solid #090909;
  content: "";
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}
@media (min-width: 920px) {
  .common_form_select .wpcf7-form-control-wrap::after {
    top: 28px;
  }
}
.common_form_radio {
  display: flex;
  align-items: center;
  min-height: 56px;
}
.common_form_radio .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
}
.common_form_radio .wpcf7-list-item {
  margin: 0;
}
.common_form_radio label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.common_form_radio input[type=radio] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  background-color: #fff;
  border: 2px solid #0A2D88;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #fff;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
@media (min-width: 920px) {
  .common_form_radio input[type=radio] {
    width: 24px;
    height: 24px;
  }
}
.common_form_radio input[type=radio]:checked {
  background-color: #0A2D88;
}
.common_form_radio input[type=radio]:focus-visible {
  outline: 2px solid rgba(10, 45, 136, 0.35);
  outline-offset: 3px;
}
.common_form_radio .wpcf7-list-item-label {
  font-size: 14px;
  line-height: 1.5;
  white-space: nowrap;
}
@media (min-width: 920px) {
  .common_form_radio .wpcf7-list-item-label {
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.common_form_zip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  min-height: 56px;
}
.common_form_zip .wpcf7-form-control-wrap {
  width: auto;
}
.common_form_zip .wpcf7-form-control-wrap[data-name=postal-code-1] {
  flex: 0 0 78px;
  width: 78px;
}
.common_form_zip .wpcf7-form-control-wrap[data-name=postal-code-2] {
  flex: 0 0 116px;
  width: 116px;
}
.common_form_zip input.common_form_zip_1,
.common_form_zip input.common_form_zip_2 {
  width: 100%;
  height: 50px;
  padding: 0 10px;
}
.common_form_zip_mark, .common_form_zip_hyphen {
  flex: 0 0 auto;
  color: #090909;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.common_form_address {
  display: grid;
  gap: 12px;
}
@media (min-width: 920px) {
  .common_form_address {
    padding-top: 12px;
  }
}
.common_form_address_item {
  display: grid;
  gap: 6px;
}
.common_form_address_item select {
  height: 50px;
}
.common_form_address_prefecture .wpcf7-form-control-wrap {
  width: 100%;
}
@media (min-width: 920px) {
  .common_form_address_prefecture .wpcf7-form-control-wrap {
    max-width: 232px;
  }
}
.common_form_sub_label {
  display: block;
  color: #090909;
  font-size: 14px;
  line-height: 1.5;
}
.common_form_privacy {
  margin: 54px 0 30px;
}
@media (min-width: 920px) {
  .common_form_privacy {
    margin: clamp(54px, calc(44.8px + 1vw), 64px) 0 clamp(30px, calc(24.48px + 0.6vw), 36px);
  }
}
.common_form_privacy > p {
  display: contents;
  margin: 0;
}
.common_form_privacy .wpcf7-form-control-wrap {
  width: auto;
  text-align: center;
}
.common_form_privacy .wpcf7-list-item {
  margin: 0;
}
.common_form_privacy label {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  cursor: pointer;
}
.common_form_privacy input[type=checkbox] {
  position: relative;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  background-color: #fff;
  border: 1px solid #0A2D88;
  border-radius: 3px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.common_form_privacy input[type=checkbox]::after {
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #0A2D88;
  border-bottom: 2px solid #0A2D88;
  content: "";
  opacity: 0;
  transform: rotate(45deg);
}
.common_form_privacy input[type=checkbox]:checked::after {
  opacity: 1;
}
.common_form_privacy input[type=checkbox]:focus-visible {
  outline: 2px solid rgba(10, 45, 136, 0.35);
  outline-offset: 3px;
}
.common_form_privacy .wpcf7-list-item-label {
  color: #0A2D88;
  font-size: 13px;
  line-height: 1.6;
}
@media (min-width: 920px) {
  .common_form_privacy .wpcf7-list-item-label {
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.common_form_privacy a {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
.common_form_privacy a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background-color: #0A2D88;
  content: "";
  pointer-events: none;
  transform: scaleX(1);
  transform-origin: left center;
}
@media (min-width: 920px) {
  .common_form_privacy a:hover::after {
    animation: txt-link-line 1.2s cubic-bezier(0.1, 1, 0.2, 1);
  }
}
.common_form_submit {
  width: 100%;
}
.common_form_submit_inr {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: 100%;
  max-width: 400px;
  min-height: 60px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #0A2D88;
  border: 1px solid #0A2D88;
}
@media (min-width: 920px) {
  .common_form_submit_inr {
    min-height: 70px;
  }
}
.common_form_submit_inr::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  background-color: #fff;
  content: "";
  pointer-events: none;
  backface-visibility: hidden;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 1.2s cubic-bezier(0.1, 1, 0.2, 1);
  will-change: transform;
}
@media (min-width: 920px) {
  .common_form_submit_inr:hover::before {
    transform: scaleX(1);
    transform-origin: left center;
  }
  .common_form_submit_inr:hover .common_form_submit_button {
    color: #0A2D88;
  }
}
.common_form_submit_inr:has(.common_form_submit_button:disabled) {
  pointer-events: none;
  opacity: 0.6;
}
.common_form_submit_inr .wpcf7-spinner {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 16px;
  margin: 0;
  transform: translateY(-50%);
}
.common_form_submit_button {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 60px;
  margin: 0;
  padding: 15px 50px;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.8s cubic-bezier(0.1, 1, 0.2, 1);
}
@media (min-width: 920px) {
  .common_form_submit_button {
    min-height: 70px;
    font-size: 18px;
  }
}
.common_form_submit_button:disabled {
  cursor: not-allowed;
}

.contact_body {
  padding: 20px 0 120px;
}
@media (min-width: 920px) {
  .contact_body {
    padding: clamp(120px, calc(131.04px + -1.2vw), 108px) 0 clamp(180px, calc(124.8px + 6vw), 240px);
  }
}
.contact_inr {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 920px) {
  .contact_inr {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
  }
}
@media (min-width: 920px) {
  .contact_info {
    width: 31.8257956449%;
  }
}
.contact_info_txt {
  margin-bottom: 24px;
  font-size: 14px;
  text-align: justify;
}
@media (min-width: 920px) {
  .contact_info_txt {
    margin-bottom: clamp(18px, calc(12.48px + 0.6vw), 24px);
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.contact_info_note {
  padding: 24px 22px;
  background-color: #eceff7;
  border-radius: 8px;
  margin-bottom: 16px;
}
@media (min-width: 920px) {
  .contact_info_note {
    padding: clamp(16px, calc(12.32px + 0.4vw), 20px);
    margin-bottom: clamp(18px, calc(12.48px + 0.6vw), 24px);
  }
}
.contact_info_note_item {
  position: relative;
  padding-left: 16px;
  line-height: 1.5;
  text-align: justify;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media (min-width: 920px) {
  .contact_info_note_item {
    padding-left: 24px;
    font-size: clamp(13px, calc(12.08px + 0.1vw), 14px);
  }
}
.contact_info_note_item::before {
  position: absolute;
  top: 8px;
  left: 4px;
  width: 4px;
  height: 4px;
  background-color: #0A2D88;
  border-radius: 50%;
  content: "";
}
@media (min-width: 920px) {
  .contact_info_note_item::before {
    top: 8px;
    left: 10px;
  }
}
.contact_info_note_item:not(:last-child) {
  margin-bottom: 8px;
}
.contact_info_tel {
  color: #0A2D88;
}
.contact_info_tel_lead {
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.75;
}
@media (min-width: 920px) {
  .contact_info_tel_lead {
    margin-bottom: 14px;
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.contact_info_tel_number {
  display: flex;
  align-items: baseline;
  gap: 8px;
  width: fit-content;
  color: inherit;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 920px) {
  .contact_info_tel_number {
    gap: 10px;
  }
}
.contact_info_tel_number_label {
  font-size: 16px;
}
@media (min-width: 920px) {
  .contact_info_tel_number_label {
    font-size: clamp(16px, calc(8.64px + 0.8vw), 24px);
  }
}
.contact_info_tel_number_txt {
  font-size: 24px;
}
@media (min-width: 920px) {
  .contact_info_tel_number_txt {
    font-size: clamp(24px, calc(16.64px + 0.8vw), 32px);
  }
}
.contact_info_tel_time {
  font-size: 12px;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .contact_info_tel_time {
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
@media (min-width: 920px) {
  .contact_form {
    width: 61.9765494137%;
  }
}
@media (min-width: 920px) {
  .contact_form textarea {
    height: clamp(120px, calc(83.2px + 4vw), 160px);
  }
}
.contact_back {
  width: 100%;
  margin-top: 20px;
}
.contact_back_link {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  min-height: 60px;
  margin: 0 auto;
  padding: 15px 30px;
  overflow: hidden;
  color: #0A2D88;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #0A2D88;
  transition: color 0.8s cubic-bezier(0.1, 1, 0.2, 1);
}
@media (min-width: 920px) {
  .contact_back_link {
    min-height: 70px;
    font-size: 18px;
  }
}
.contact_back_link::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  background-color: #0A2D88;
  content: "";
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 1.2s cubic-bezier(0.1, 1, 0.2, 1);
}
@media (min-width: 920px) {
  .contact_back_link:hover {
    color: #fff;
  }
  .contact_back_link:hover::before {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
.contact_thanks_body {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 100px 0 80px;
  color: #0A2D88;
}
@media (min-width: 920px) {
  .contact_thanks_body {
    padding: clamp(110px, calc(30.88px + 8.6vw), 196px) 0 clamp(60px, calc(-87.2px + 16vw), 220px);
  }
}
.contact_thanks_header {
  margin-bottom: 26px;
}
@media (min-width: 920px) {
  .contact_thanks_header {
    margin-bottom: clamp(54px, calc(31.92px + 2.4vw), 78px);
  }
}
.contact_thanks_header_en {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.25;
}
@media (min-width: 920px) {
  .contact_thanks_header_en {
    margin-bottom: clamp(14px, calc(12.16px + 0.2vw), 16px);
    font-size: clamp(18px, calc(12.48px + 0.6vw), 24px);
  }
}
.contact_thanks_header_ttl {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}
@media (min-width: 920px) {
  .contact_thanks_header_ttl {
    font-size: clamp(30px, calc(20.8px + 1vw), 40px);
  }
}
.contact_thanks_message {
  margin-bottom: 24px;
}
@media (min-width: 920px) {
  .contact_thanks_message {
    margin-bottom: clamp(20px, calc(14.48px + 0.6vw), 26px);
  }
}
.contact_thanks_note {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 30px 24px;
  background-color: #eceff7;
  border-radius: 8px;
  text-align: left;
}
@media (min-width: 920px) {
  .contact_thanks_note {
    padding: clamp(30px, calc(20.8px + 1vw), 40px) clamp(40px, calc(21.6px + 2vw), 60px);
  }
}
.contact_thanks_note_ttl {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
}
@media (min-width: 920px) {
  .contact_thanks_note_ttl {
    margin-bottom: clamp(20px, calc(16.32px + 0.4vw), 24px);
    font-size: clamp(18px, calc(16.16px + 0.2vw), 20px);
  }
}
.contact_thanks_note_txt {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
}
@media (min-width: 920px) {
  .contact_thanks_note_txt {
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.contact_thanks_back {
  width: 100%;
  max-width: 400px;
  margin: 40px auto 0;
}
@media (min-width: 920px) {
  .contact_thanks_back {
    margin-top: clamp(70px, calc(58.96px + 1.2vw), 82px);
  }
}
.contact_thanks_back_link {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  padding: 15px 30px;
  overflow: hidden;
  color: #0A2D88;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #0A2D88;
  transition: color 0.8s cubic-bezier(0.1, 1, 0.2, 1);
}
@media (min-width: 920px) {
  .contact_thanks_back_link {
    min-height: 70px;
    font-size: 18px;
  }
}
.contact_thanks_back_link::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  background-color: #0A2D88;
  content: "";
  pointer-events: none;
  backface-visibility: hidden;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 1.2s cubic-bezier(0.1, 1, 0.2, 1);
  will-change: transform;
}
@media (min-width: 920px) {
  .contact_thanks_back_link:hover {
    color: #fff;
  }
  .contact_thanks_back_link:hover::before {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
.contact_thanks_breadcrumb {
  padding-bottom: 50px;
}
@media (min-width: 920px) {
  .contact_thanks_breadcrumb {
    padding-bottom: clamp(50px, calc(31.6px + 2vw), 70px);
  }
}
.contact_thanks_breadcrumb .breadcrumb {
  justify-content: flex-start;
}

.faq {
  color: #0A2D88;
}
.faq_body {
  padding: 40px 0 120px;
}
@media (min-width: 920px) {
  .faq_body {
    padding: clamp(80px, calc(43.2px + 4vw), 120px) 0 clamp(200px, calc(163.2px + 4vw), 240px);
  }
}
.faq_layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 920px) {
  .faq_layout {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
  }
}
.faq_nav {
  position: sticky;
  z-index: 20;
  top: 56px;
  box-sizing: border-box;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: auto;
  overflow-y: hidden;
  background-color: #ECEFF7;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.faq_nav::-webkit-scrollbar {
  display: none;
}
@media (min-width: 920px) {
  .faq_nav {
    position: sticky;
    top: 140px;
    width: 24.7068676717%;
    margin-left: 0;
    overflow: visible;
    background-color: transparent;
  }
}
.faq_nav_list {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  min-width: 100%;
  margin: 0;
  padding: 0 20px;
  list-style: none;
}
@media (min-width: 920px) {
  .faq_nav_list {
    flex-direction: column;
    width: 100%;
    min-width: 0;
    padding: 0;
  }
}
.faq_nav_item {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}
@media (min-width: 920px) {
  .faq_nav_item {
    width: 100%;
  }
}
.faq_nav_link {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-height: 40px;
  padding: 10px;
  color: #0A2D88;
  background-color: transparent;
  border-radius: 0;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.05em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.8s cubic-bezier(0.1, 1, 0.2, 1), background-color 0.8s cubic-bezier(0.1, 1, 0.2, 1);
}
@media (min-width: 920px) {
  .faq_nav_link {
    width: 100%;
    min-height: 58px;
    padding: 10px 16px;
    color: #0A2D88;
    background-color: transparent;
    border-radius: 4px;
    font-size: clamp(13px, calc(10.24px + 0.3vw), 16px);
    white-space: normal;
  }
}
@media (min-width: 920px) {
  .faq_nav_link:hover {
    background-color: #eef1f8;
  }
}
.faq_nav_link.is_current {
  color: #fff;
  background-color: #0A2D88;
}
@media (min-width: 920px) {
  .faq_nav_link.is_current:hover {
    color: #fff;
    background-color: #0A2D88;
  }
}
.faq_content {
  min-width: 0;
}
@media (min-width: 920px) {
  .faq_content {
    width: 68.5929648241%;
  }
}
.faq_block {
  scroll-margin-top: 140px;
}
@media (min-width: 920px) {
  .faq_block {
    scroll-margin-top: 100px;
  }
}
.faq_block:not(:last-child) {
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .faq_block:not(:last-child) {
    margin-bottom: clamp(40px, calc(17.92px + 2.4vw), 64px);
  }
}
.faq_block_ttl {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .faq_block_ttl {
    margin-bottom: clamp(20px, calc(8.96px + 1.2vw), 32px);
    font-size: clamp(26px, calc(20.48px + 0.6vw), 32px);
  }
}
.faq_block_txt {
  margin: -8px 0 24px;
  font-size: 14px;
  line-height: 2;
}
@media (min-width: 920px) {
  .faq_block_txt {
    margin-top: clamp(-20px, calc(-12.64px + -0.8vw), -28px);
    margin-bottom: clamp(32px, calc(24.64px + 0.8vw), 40px);
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.faq_accordion {
  border-top: 1px solid rgba(10, 45, 136, 0.3);
}
.faq_accordion_item {
  position: relative;
  isolation: isolate;
}
.faq_accordion_item::after {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 1px;
  background-color: rgba(10, 45, 136, 0.3);
  content: "";
  pointer-events: none;
  transform: translateZ(0);
}
.faq_accordion_item.is_open .faq_accordion_button {
  background-color: #eef1f8;
}
.faq_accordion_item.is_open .faq_accordion_icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}
.faq_accordion_item.is_open .faq_accordion_panel {
  grid-template-rows: 1fr;
}
.faq_accordion_heading {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}
.faq_accordion_button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 66px;
  margin: 0;
  padding: 12px 10px;
  color: #0A2D88;
  font-family: inherit;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: background-color 0.8s cubic-bezier(0.1, 1, 0.2, 1);
}
@media (min-width: 920px) {
  .faq_accordion_button {
    gap: 24px;
    min-height: clamp(68px, calc(56.04px + 1.3vw), 81px);
    padding: clamp(14px, calc(12.16px + 0.2vw), 16px) clamp(18px, calc(12.48px + 0.6vw), 24px);
  }
}
@media (min-width: 920px) {
  .faq_accordion_button:hover {
    background-color: #eef1f8;
  }
}
.faq_accordion_button:focus-visible {
  position: relative;
  z-index: 3;
  outline: 2px solid #0A2D88;
  outline-offset: -2px;
}
.faq_accordion_question {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  min-width: 0;
}
@media (min-width: 920px) {
  .faq_accordion_question {
    gap: clamp(8px, calc(4.32px + 0.4vw), 12px);
  }
}
.faq_accordion_question_txt {
  display: block;
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .faq_accordion_question_txt {
    font-size: clamp(16px, calc(14.16px + 0.2vw), 18px);
    line-height: 1.75;
  }
}
.faq_accordion_mark {
  flex-shrink: 0;
  font-size: 20px;
  line-height: 1;
}
@media (min-width: 920px) {
  .faq_accordion_mark {
    padding-top: 2px;
    font-size: clamp(18px, calc(12.48px + 0.6vw), 24px);
  }
}
.faq_accordion_icon {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  background-color: #0A2D88;
  border-radius: 50%;
}
@media (min-width: 920px) {
  .faq_accordion_icon {
    width: clamp(26px, calc(20.48px + 0.6vw), 32px);
    height: clamp(26px, calc(20.48px + 0.6vw), 32px);
  }
}
.faq_accordion_icon::before, .faq_accordion_icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  background-color: #fff;
  content: "";
  transform: translate(-50%, -50%);
  transition: opacity 0.6s cubic-bezier(0.1, 1, 0.2, 1), transform 0.8s cubic-bezier(0.1, 1, 0.2, 1);
}
.faq_accordion_icon::before {
  width: 10px;
  height: 1px;
}
@media (min-width: 920px) {
  .faq_accordion_icon::before {
    width: clamp(8px, calc(4.32px + 0.4vw), 12px);
  }
}
.faq_accordion_icon::after {
  width: 1px;
  height: 10px;
}
@media (min-width: 920px) {
  .faq_accordion_icon::after {
    height: clamp(8px, calc(4.32px + 0.4vw), 12px);
  }
}
.faq_accordion_panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  background-color: #eef1f8;
  transform: translateZ(0);
  transition: grid-template-rows 1s cubic-bezier(0.1, 1, 0.2, 1);
  will-change: grid-template-rows;
}
.faq_accordion_panel_inr {
  min-height: 0;
  overflow: hidden;
  background-color: #eef1f8;
  transform: translateZ(0);
}
.faq_accordion_answer {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 0 44px 26px 10px;
  background-color: #eef1f8;
}
@media (min-width: 920px) {
  .faq_accordion_answer {
    gap: clamp(8px, calc(4.32px + 0.4vw), 12px);
    padding: 0 clamp(60px, calc(40.68px + 2.1vw), 81px) clamp(20px, calc(14.48px + 0.6vw), 26px) clamp(18px, calc(12.48px + 0.6vw), 24px);
  }
}
.faq_accordion_answer_body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}
.faq_accordion_answer_txt {
  margin: 0;
  font-size: 14px;
}
@media (min-width: 920px) {
  .faq_accordion_answer_txt {
    font-size: clamp(14px, calc(12.16px + 0.2vw), 16px);
  }
}
.faq_accordion_answer_image {
  width: 100%;
  margin-top: 8px;
}
@media (min-width: 920px) {
  .faq_accordion_answer_image {
    margin-top: clamp(16px, calc(8.64px + 0.8vw), 24px);
  }
}
.faq_accordion_answer_image img {
  display: block;
  width: 100%;
  height: auto;
}/*# sourceMappingURL=base.css.map */