@charset "UTF-8";
/* ---------------------------------------------
アニメーション
-----------------------------------------------*/
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
body {
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 750px) {
  body {
    min-width: auto;
  }
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

img {
  border: 0;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  /*image-rendering: -webkit-optimize-contrast;*/
}
.safari img {
  image-rendering: inherit;
}

/* mouseover
--------------------------------------------------*/
@media screen and (min-width: 768px) {
  .over:hover {
    opacity: 0.6;
    transition: opacity 0.3s;
  }
}
label {
  cursor: pointer;
}

/* link
--------------------------------------------------*/
a {
  display: block;
  color: #000;
  transition: 0.3s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    text-decoration: none;
    /*opacity: $opacity;*/
  }
}

a[href*="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 420px) {
  a[href*="tel:"] {
    pointer-events: all;
  }
}

/* input
--------------------------------------------------*/
button {
  color: #000;
  transition: 0.3s;
  will-change: transform;
  letter-spacing: 0.05em;
}
button:focus {
  text-decoration: none;
}

.min-wrapper {
  width: 57.29vw;
  margin: 0 auto;
}

.wrapper {
  width: 72.91vw;
  margin: 0 auto;
}

.wide-wrapper {
  width: 83.3333vw;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  .min-wrapper, .wrapper, .wide-wrapper {
    width: 92vw;
  }
}
h3,
div,
p,
li,
dt,
dd,
th,
td,
a {
  font-size: clamp(12px, 1.171875vw, 2.2rem);
  line-height: 2.36;
  font-weight: 500;
  color: #162D7C;
}
@media screen and (max-width: 750px) {
  h3,
  div,
  p,
  li,
  dt,
  dd,
  th,
  td,
  a {
    font-size: clamp(10px, 3.7333333333vw, 2.8rem);
    letter-spacing: 0.03em;
    line-height: 2.5;
  }
}

.pc {
  display: block;
}

.sp, .ssp {
  display: none;
}

.pc-tb {
  display: block;
}

@media screen and (max-width: 750px) {
  .pc, .ssp {
    display: none;
  }
  .sp, .pc-tb {
    display: block;
  }
}
@media screen and (max-width: 420px) {
  .sp, .ssp {
    display: block;
  }
  .pc-tb, .pc {
    display: none;
  }
}
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

.sec-ttl {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  gap: 1.4583333333vw;
  color: #162D7C;
}
@media screen and (max-width: 900px) {
  .sec-ttl {
    gap: 3.3333333333vw;
  }
}
.sec-ttl .en {
  font-family: widescreen-ex, sans-serif;
  font-size: clamp(32px, 4.16vw, 80px);
  font-weight: 500;
  line-height: 1.2;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (max-width: 750px) {
  .sec-ttl .en {
    font-size: max(20px, 9.333vw);
  }
}
.sec-ttl .jp {
  font-family: "Zen Old Mincho", serif;
  font-size: max(14px, 1.3541666667vw);
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .sec-ttl .jp {
    font-size: max(10px, 4vw);
  }
}

.lead {
  font-family: "Zen Old Mincho", serif;
  font-size: max(20px, 2.2916666667vw);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.81;
}
.lead span {
  font-size: max(16px, 1.875vw);
}
@media screen and (max-width: 750px) {
  .lead {
    font-size: max(14px, 5.6vw);
  }
  .lead span {
    font-size: max(12px, 4.8vw);
  }
}

.footer {
  background: #0D1A43;
}
.footer .footer_container {
  padding: 3.125vw 7.2916666667vw 0 7.8125vw;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media screen and (max-width: 750px) {
  .footer .footer_container {
    padding: 10.6666666667vw 4vw 12vw;
    flex-direction: column;
    align-items: center;
  }
}
.footer .footer_container .info_l h1 {
  max-width: 13.5416666667vw;
  margin-bottom: 3.7135416667vw;
}
@media screen and (max-width: 750px) {
  .footer .footer_container .info_l h1 {
    max-width: 47.6vw;
    margin-bottom: 13.6vw;
  }
}
.footer .footer_container .info_l p {
  color: #fff;
  font-size: max(8px, 0.7291666667vw);
}
.footer .footer_container .info_l .tight {
  margin-top: 0.78125vw;
  line-height: 1.57;
}
@media screen and (max-width: 750px) {
  .footer .footer_container .info_l p {
    display: none;
  }
}
.footer .footer_container .info_r {
  flex-basis: 34.0625vw;
}
@media screen and (max-width: 1090px) {
  .footer .footer_container .info_r {
    flex-basis: 39.0625vw;
  }
}
@media screen and (max-width: 750px) {
  .footer .footer_container .info_r {
    width: 100%;
  }
}
.footer .footer_container .info_r .footer-nav {
  list-style: none;
  margin: 0 0 2.7083333333vw;
  padding: 0;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 5vw;
  column-gap: 0;
  row-gap: 1.0416666667vw;
  align-items: start;
}
.footer .footer_container .info_r .footer-nav > li {
  /* テキスト省略が効くように */
  min-width: 0;
}
.footer .footer_container .info_r .footer-nav a {
  display: inline-block;
  font-size: max(10px, 0.8333333333vw);
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 750px) {
  .footer .footer_container .info_r .footer-nav {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0;
    height: 66.6666666667vw;
    margin-bottom: 6.2666666667vw;
    margin-left: 6.6666666667vw;
    width: 100%;
    max-width: 78.9333333333vw;
  }
  .footer .footer_container .info_r .footer-nav a {
    font-size: max(10px, 3.4666666667vw);
    line-height: 3.8;
    font-weight: 600;
  }
  .footer .footer_container .info_r .footer-nav a::before {
    content: "・";
  }
}
@media screen and (max-width: 750px) {
  .footer .info_tx {
    margin-top: 7.6vw;
  }
  .footer .info_tx p {
    display: block;
    color: #fff;
    font-size: max(10px, 2.9333333333vw);
    text-align: center;
  }
  .footer .info_tx .tight {
    line-height: 1.8;
    margin-top: 5.3333333333vw;
  }
}

.btn_target {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8854166667vw;
  border: 0.0520833333vw #fff solid;
  height: 2.8125vw;
  margin-bottom: 0.8854166667vw;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 750px) {
  .btn_target {
    margin-bottom: 5.2vw;
  }
}
.btn_target p {
  font-family: widescreen-ex, sans-serif;
  font-size: clamp(10px, 0.93vw, 18px);
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  transition: 0.3s;
}
@media screen and (max-width: 750px) {
  .btn_target {
    height: 13.3333333333vw;
  }
  .btn_target p {
    font-size: max(10px, 2.9333333333vw);
  }
}
.btn_target.corporate {
  padding-right: 0.8333333333vw;
  margin-bottom: 0;
}
.btn_target::after {
  content: "";
  width: 0.8854166667vw;
  height: 0.8854166667vw;
  background: url(../images/target_icon.png) 0/contain no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.25vw;
}
@media screen and (max-width: 750px) {
  .btn_target::after {
    width: 4.6666666667vw;
    height: 4.6666666667vw;
    right: 4vw;
  }
}
.btn_target:hover {
  transform: scale(0.97);
}
.btn_target:hover p {
  opacity: 0.7;
}

.cr {
  background: #333;
  color: #fff;
  text-align: center;
  font-family: widescreen-ex, sans-serif;
  font-size: clamp(8px, 0.625vw, 12px);
  font-weight: 500;
  line-height: 1.2;
  margin-top: 3.9583333333vw;
  padding: 0.46875vw;
}
@media screen and (max-width: 750px) {
  .cr {
    font-size: max(10px, 2.6666666667vw);
    margin-top: 0;
    padding: 4.2666666667vw 1rem;
  }
}
@media screen and (max-width: 420px) {
  .cr {
    font-size: 9px;
  }
}

.l-nav {
  display: none;
}
@media screen and (max-width: 420px) {
  .is-fixed .l-nav {
    opacity: 1;
    pointer-events: all;
  }
  .l-nav-header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: spvw(100);
  }
  .l-nav__button {
    width: calc(100% - 3.5em);
    height: spvw(100);
    margin: 0 auto;
  }
  .l-nav__button a {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #a79280;
    color: #ffffff;
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}

h1.header-logo {
  max-width: 9.7395833333vw;
  min-width: 120px;
  position: fixed;
  top: 1.875vw;
  left: 3.9583333333vw;
  z-index: 999;
}
@media screen and (max-width: 750px) {
  h1.header-logo {
    position: relative;
    top: 4.8vw;
    left: 6.4vw;
    min-width: none;
    max-width: 29.7333333333vw;
  }
}

.header {
  position: fixed;
  z-index: 998;
  width: 100%;
  padding-top: 3.125vw;
  left: auto;
  padding: 3.125vw 3.0729166667vw 0 0;
}
@media screen and (max-width: 750px) {
  .header {
    padding: 7.8666666667vw 4vw 0 0;
    top: 0;
  }
}
.header .btn-block {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.header .linkbtn {
  height: 2.5vw;
  font-family: widescreen-ex, sans-serif;
  font-size: clamp(1.8rem, 1.458vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  background: #162D7C;
  color: #fff;
  padding: 0 3.0208333333vw 0 3.3854166667vw;
  border-radius: 7px 0 0 7px;
  z-index: 1001;
  line-height: 2.34375vw;
}
.header .linkbtn:hover {
  background-color: #CBCB2C;
}
@media screen and (max-width: 1090px) {
  .header .linkbtn {
    height: 2.8vw;
    line-height: 2.8vw;
  }
}
@media screen and (max-width: 900px) {
  .header .linkbtn {
    height: 3.7vw;
    line-height: 3.5vw;
  }
}
@media screen and (max-width: 750px) {
  .header .linkbtn {
    height: 7.7333333333vw;
    line-height: 7.7333333333vw;
    font-size: max(10px, 4vw);
    padding: 0 6.1333333333vw 0 7.6vw;
  }
}
.header .humberger {
  /* 可変パラメータ */
  --bar-w: 1.56vw; /* 線の長さ */
  --bar-h: .156vw; /* 線の太さ */
  /* 1920px時に“線と線のすき間(エッジ間)”= 5px */
  /* ← 数値×長さの形に直す（OK）*/
  --space-S: clamp(3px, calc((5 / 1920) * 100vw), 8px);
  /* 中心線のオフセット量 = すき間 + 線の太さ */
  --gap: calc(var(--space-S) + var(--bar-h));
  --anim: .28s ease;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 5.46875vw;
  height: 2.5vw;
  border-radius: 0 7px 7px 0;
  cursor: pointer;
  background: #A2B4C9;
  z-index: 1001;
  /* 線：中央基準、上下は top で配置 */
}
@media screen and (max-width: 1090px) {
  .header .humberger {
    height: 2.8vw;
  }
}
@media screen and (max-width: 900px) {
  .header .humberger {
    height: 3.7vw;
    --bar-w: 2vw; /* 線の長さ */
    --bar-h: 2px; /* 線の太さ */
  }
}
@media screen and (max-width: 750px) {
  .header .humberger {
    /* 可変パラメータ */
    --bar-w: 3.73vw; /* 線の長さ */
    --bar-h: .4vw; /* 線の太さ */
  }
}
.header .humberger span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--bar-w);
  height: var(--bar-h);
  background: #fff;
  transform: translateX(-50%);
  transform-origin: center;
  transition: transform var(--anim), width var(--anim), opacity var(--anim), top var(--anim);
}
.header .humberger span:nth-child(1) {
  top: calc(50% - var(--gap));
}
.header .humberger span:nth-child(2) {
  top: 50%;
}
.header .humberger span:nth-child(3) {
  top: calc(50% + var(--gap));
}
.header .humberger.active span:nth-child(1) {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 1.145vw; /* ≒ ptv(22) に合わせて微調整 */
}
@media screen and (max-width: 900px) {
  .header .humberger.active span:nth-child(1) {
    width: 1.9vw;
  }
}
@media screen and (max-width: 750px) {
  .header .humberger.active span:nth-child(1) {
    width: 2.66vw; /* 線の長さ */
  }
}
.header .humberger.active span:nth-child(2) {
  opacity: 0;
}
.header .humberger.active span:nth-child(3) {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
  width: 1.145vw;
}
@media screen and (max-width: 900px) {
  .header .humberger.active span:nth-child(3) {
    width: 1.9vw;
  }
}
@media screen and (max-width: 750px) {
  .header .humberger.active span:nth-child(3) {
    width: 2.66vw; /* 線の長さ */
  }
}
@media (prefers-reduced-motion: reduce) {
  .header .humberger span {
    transition: none;
  }
}
@media screen and (max-width: 750px) {
  .header .humberger {
    padding: 0 6.1333333333vw;
    width: 15.0666666667vw;
    height: 7.7333333333vw;
  }
}
.header nav {
  position: fixed;
  top: 0;
  width: 36.40625vw;
  height: 100vh;
  z-index: 1000;
  overflow-y: auto;
  background: linear-gradient(90deg, rgba(0, 19, 83, 0.95) 100%, rgba(10, 20, 54, 0.95) 0%);
  padding-bottom: 3.90625vw;
  right: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  /* 動きを減らす設定への配慮 */
  isolation: isolate;
}
@media screen and (max-width: 750px) {
  .header nav {
    width: 100%;
  }
}
.header nav.active {
  transform: translateX(0);
}
.header nav ul {
  margin: 7.7083333333vw 0.2604166667vw 2.3958333333vw 6.1458333333vw;
}
@media screen and (max-width: 900px) {
  .header nav ul {
    margin-top: 9.6354166667vw;
    margin-left: 5.2083333333vw;
  }
}
@media screen and (max-width: 750px) {
  .header nav ul {
    margin: 20.1333333333vw 8.1333333333vw 4.6354166667vw 3.1770833333vw;
  }
}
.header nav ul li {
  padding: 0.8333333333vw 0;
}
@media screen and (max-width: 750px) {
  .header nav ul li {
    padding-left: 2.4vw;
  }
}
.header nav a {
  color: #fff;
  font-size: max(12px, 1.3541666667vw);
  font-weight: 700;
  max-width: 22.0833333333vw;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 0.7291666667vw;
  line-height: 1;
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: left calc(100% - 0px);
  background-size: 0% 0.0520833333vw;
  transition: background-size 0.3s ease;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .header nav a {
    font-size: max(12px, 4.5333333333vw);
    max-width: 80vw;
    padding-bottom: 6.4vw;
  }
}
.header nav a span {
  font-family: widescreen-ex, sans-serif;
  font-size: clamp(10px, 0.83vw, 16px);
  font-weight: 500;
  line-height: 1.2;
  margin-left: 0.8333333333vw;
}
@media screen and (max-width: 750px) {
  .header nav a span {
    font-size: max(10px, 2.6666666667vw);
  }
}
.header nav a:hover, .header nav a:focus-visible {
  background-size: 100% 0.0520833333vw;
}
@media (prefers-reduced-motion: reduce) {
  .header nav a::after {
    transition: none;
  }
}
.header nav .btn_target {
  max-width: 25.4166666667vw;
  border: none;
  background-color: rgba(94, 162, 219, 0.7);
  background-image: none;
  height: 3.4895833333vw;
  margin: 0 0.2604166667vw 0 6.1458333333vw;
  padding: 0.1041666667vw 8.0208333333vw 0.1041666667vw 3.75vw;
  gap: 0.5729166667vw;
  transition: 0.3s;
}
@media screen and (max-width: 900px) {
  .header nav .btn_target {
    margin-left: 5.2083333333vw;
    padding-left: 0.9vw;
  }
}
@media screen and (max-width: 810px) {
  .header nav .btn_target {
    padding: 0.1041666667vw 2vw 0.1041666667vw 1vw;
    max-width: 195px;
  }
}
@media screen and (max-width: 750px) {
  .header nav .btn_target {
    max-width: 83.7333333333vw;
    height: 13.3333333333vw;
    padding: 3.8666666667vw 8.6666666667vw 4vw 8.8vw;
    gap: 1.8666666667vw;
  }
}
.header nav .btn_target p {
  font-size: max(12px, 1.1458333333vw);
  font-family: widescreen, sans-serif;
  transition: 0.3s;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .header nav .btn_target p {
    font-size: max(10px, 4vw);
  }
}
.header nav .btn_target::after {
  width: 1.1979166667vw;
  height: 1.1979166667vw;
  right: 1.5104166667vw;
}
@media screen and (max-width: 750px) {
  .header nav .btn_target::after {
    width: 5.0666666667vw;
    height: 5.0666666667vw;
    right: 8.6666666667vw;
  }
}
.header nav .btn_target:hover {
  border-bottom: none;
  transform: scale(0.97);
  background-image: none;
}
.header nav .btn_target:hover p {
  opacity: 0.7;
}
.header nav::after {
  content: "";
  width: 1.3020833333vw;
  height: 24.2708333333vw;
  position: absolute;
  background: url(../images/pc-navtxt.svg) 0/contain no-repeat;
  right: 3.4895833333vw;
  pointer-events: none;
  z-index: 0;
  top: 7.7083333333vw;
}
@media screen and (max-width: 900px) {
  .header nav::after {
    top: 9.6354166667vw;
  }
}
@media screen and (max-width: 750px) {
  .header nav::after {
    width: 5.2666666667vw;
    height: 95.0666666667vw;
    top: 29.2vw;
    right: 4.9333333333vw;
  }
}
.header .linkbtn {
  transition: background-color 0.3s ease;
}
.header .linkbtn.active {
  background-color: #CBCB2C;
}

/* ページ全域の“器”（flow外） */
/* 画面にピタッと固定。重なり防止に背面へ */
#bgfx {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

#bgfx > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv {
  position: relative;
  width: 100%;
  top: 0;
  aspect-ratio: 1920/1076;
}
@media screen and (max-width: 880px) {
  .fv {
    aspect-ratio: 1920/1191;
  }
}
@media screen and (max-width: 750px) {
  .fv {
    aspect-ratio: 750/1050;
  }
}
.fv .swiper {
  padding-top: 1.875vw;
  height: 47.8125vw;
}
@media screen and (max-width: 880px) {
  .fv .swiper {
    padding-top: max(63px, 1.875vw);
    height: 47.8125vw;
    height: auto;
    overflow-y: visible;
  }
}
@media screen and (max-width: 750px) {
  .fv .swiper {
    padding-top: 6.9333333333vw;
  }
}
.fv .swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.fv .swiper .swiper-slide {
  max-width: 39.0625vw;
  margin: 0 0.963vw;
  aspect-ratio: 750/793;
}
@media screen and (max-width: 750px) {
  .fv .swiper .swiper-slide {
    max-width: 75.8666666667vw;
    aspect-ratio: 570/825;
    margin: 0 2vw;
  }
}
.fv .swiper .swiper-slide img {
  height: auto;
  width: 100%;
  aspect-ratio: 750/793;
  object-fit: cover;
}
@media screen and (max-width: 750px) {
  .fv .swiper .swiper-slide img {
    aspect-ratio: 570/825;
    max-height: 110vw;
  }
}
.fv .swiper .swiper-slide.odd {
  margin-top: 4.6354166667vw;
}
@media screen and (max-width: 750px) {
  .fv .swiper .swiper-slide.odd {
    padding-top: 0;
    margin-top: 0;
  }
}
.fv .text {
  position: absolute;
  bottom: 6.7708333333vw;
  bottom: 0.8vw;
  left: 0;
  right: 0;
  margin-top: 0;
  padding-top: 0;
  overflow: hidden;
  height: 13.4375vw;
  z-index: 10;
}
@media screen and (max-width: 900px) {
  .fv .text {
    bottom: 0.5vw;
  }
}
@media screen and (max-width: 750px) {
  .fv .text {
    height: 26.5333333333vw;
    bottom: 2vw;
  }
}
.fv .text .track {
  display: flex;
  will-change: transform;
}
.fv .text ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.fv .text li {
  flex: 0 0 auto !important;
  margin-top: 0;
  padding: 0 3vw;
  aspect-ratio: auto;
}
.fv .text li img {
  display: block;
  width: auto;
  height: 13.4375vw;
  aspect-ratio: auto;
  object-fit: contain;
}
@media screen and (max-width: 750px) {
  .fv .text li {
    height: 26.5333333333vw;
  }
  .fv .text li img {
    max-width: none;
    height: 26.5333333333vw;
  }
}
.fv .cp {
  position: absolute;
  top: 33.8541666667vw;
  left: 3.3333333333vw;
  z-index: 10;
  max-width: 37.3958333333vw;
  min-width: 380px;
  overflow: hidden;
  --wipe: 0;
}
@media screen and (max-width: 900px) {
  .fv .cp {
    top: 34vw;
  }
}
@media screen and (max-width: 850px) {
  .fv .cp {
    top: 39vw;
  }
}
.fv .cp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff; /* 白い四角。色を変えたい場合はここを変更 */
  transform-origin: left center;
  transform: scaleX(var(--wipe));
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  .fv .cp::before {
    height: 100%;
  }
}
@media screen and (max-width: 750px) {
  .fv .cp_sp .cp {
    min-width: auto;
    max-width: 62.8vw;
    left: 4.4vw;
    height: 7.4666666667vw;
  }
  .fv .cp_sp .cp img {
    vertical-align: baseline;
  }
  .fv .cp_sp .cp-sp-1 {
    max-width: 41.7333333333vw;
    top: 83.6vw;
  }
  .fv .cp_sp .cp-sp-2 {
    top: 92.8vw;
    width: 62.8vw;
  }
}

.concept {
  margin-top: 6.1458333333vw;
}
@media screen and (max-width: 900px) {
  .concept .min-wrapper {
    width: 70vw;
  }
}
@media screen and (max-width: 750px) {
  .concept {
    margin-top: 6.9333333333vw;
  }
  .concept .min-wrapper {
    width: 98%;
  }
}
.concept p {
  font-size: max(13px, 1.484375vw);
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
  text-align: center;
  line-height: 1.96;
  color: #162D7C;
}
@media screen and (max-width: 750px) {
  .concept p {
    font-size: max(13px, 4vw);
    letter-spacing: 0.05em;
    line-height: 2.16;
  }
}
.concept .other {
  margin-top: 4.53125vw;
}
@media screen and (max-width: 750px) {
  .concept .other {
    margin-top: 9.6vw;
  }
}
.concept p:not(:first-child) {
  margin-top: 4.1666666667vw;
}
@media screen and (max-width: 750px) {
  .concept p:not(:first-child) {
    margin-top: 9.6vw;
  }
}
.concept p.en {
  margin-top: 1.25vw;
  font-size: max(12px, 1.1458333333vw);
}
@media screen and (max-width: 750px) {
  .concept p.en {
    margin-top: 2.6666666667vw;
    font-size: max(10px, 2.9333333333vw);
  }
}
.concept .img-slider {
  margin-top: 9.0104166667vw;
}
@media screen and (max-width: 750px) {
  .concept .img-slider {
    margin-top: 18.8vw;
  }
}
.concept .img-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.concept .img-slider .swiper-slide {
  margin: 0 0.44vw;
}
@media screen and (max-width: 750px) {
  .concept .img-slider .swiper-slide {
    margin: 0 0.86vw;
    max-width: 104.2666666667vw;
  }
}
.concept .img-slider .swiper-slide img {
  height: auto;
  width: 100%;
  display: block; /* 画像の下の隙間防止 */
  transform: translateZ(0); /* GPU ヒントでカクつき軽減 */
}
@media screen and (max-width: 750px) {
  .concept .img-slider .swiper-slide img {
    max-width: 104.2666666667vw;
    height: 118.6666666667vw;
    object-fit: cover;
    aspect-ratio: 782/890;
  }
}

.about {
  margin: 6.6666666667vw 0 0;
}
@media screen and (max-width: 750px) {
  .about {
    margin-top: 14.8vw;
  }
}
.about .about_lead {
  margin: 2.9166666667vw 6.3541666667vw 0 8.3333333333vw;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 8.1770833333vw;
}
@media screen and (max-width: 1090px) {
  .about .about_lead {
    align-items: flex-start;
  }
}
@media screen and (max-width: 750px) {
  .about .about_lead {
    flex-direction: column-reverse;
    margin: 1.7333333333vw 4vw 0;
    gap: 12.4vw;
  }
}
.about .about_lead .textbox {
  max-width: 35vw;
  flex-basis: 42%;
}
.about .about_lead .textbox p {
  margin-top: 3.0729166667vw;
}
@media screen and (max-width: 750px) {
  .about .about_lead .textbox {
    width: 100%;
    max-width: none;
  }
  .about .about_lead .textbox p {
    margin-top: 8.2666666667vw;
  }
}
.about .about_lead .image {
  max-width: 42.1354166667vw;
  flex-basis: 50%;
}
@media screen and (max-width: 750px) {
  .about .about_lead .image {
    width: 100%;
    max-width: none;
  }
}

.pin-wrap {
  margin-top: 8.3333333333vw;
  padding-top: 0.5208333333vw;
}
@media screen and (max-width: 750px) {
  .pin-wrap {
    margin-top: 12vw;
  }
}

.respect .sec-ttl {
  align-items: flex-start;
  gap: 1.9791666667vw;
}
@media screen and (max-width: 750px) {
  .respect .sec-ttl {
    gap: 4vw;
  }
  .respect .sec-ttl .en {
    line-height: 1.5;
  }
}
.respect .wide-wrapper {
  overflow: hidden;
}
.respect .slider_container {
  padding-bottom: 7.2916666667vw;
  position: relative;
}
@media screen and (max-width: 750px) {
  .respect .slider_container {
    margin-top: 8.2666666667vw;
    padding-bottom: 15.8666666667vw;
  }
}
.respect .slider_container .row-scroll {
  display: flex;
  height: 100%;
  position: relative;
  align-items: center;
  gap: 1.3541666667vw;
  z-index: 2;
  will-change: transform;
  transform: translateX(10.9375vw);
}
@media screen and (max-width: 750px) {
  .respect .slider_container .row-scroll {
    align-items: start;
  }
}
.respect .slider_indicators {
  position: absolute;
  bottom: 2.34375vw;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 10;
  /* 追加：スライドするハイライト */
}
@media screen and (max-width: 750px) {
  .respect .slider_indicators {
    bottom: 7.8666666667vw;
  }
}
.respect .slider_indicators .indicator {
  width: 25%;
  height: 0.46875vw;
  background: #162D7C;
  position: relative;
}
@media screen and (max-width: 750px) {
  .respect .slider_indicators .indicator {
    height: 1.8666666667vw;
  }
}
.respect .slider_indicators .indicator-highlight {
  position: absolute;
  height: 0.46875vw;
  left: 0;
  bottom: 0;
  background: #8dc6f7;
  border-radius: 2px;
  will-change: transform;
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  .respect .slider_indicators .indicator-highlight {
    height: 1.8666666667vw;
    background: #6989a5;
  }
}
.respect .slider_counter {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #162D7C;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 1.0416666667vw;
}
@media screen and (max-width: 750px) {
  .respect .slider_counter {
    gap: 4vw;
  }
}
.respect .slider_counter .current,
.respect .slider_counter .total {
  font-family: widescreen-ex, sans-serif;
  font-size: clamp(10px, 0.83vw, 16px);
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 750px) {
  .respect .slider_counter .current,
  .respect .slider_counter .total {
    font-size: max(10px, 2.6666666667vw);
  }
}
.respect .slider_counter .border {
  width: 3.2291666667vw;
  height: 1px;
  background: #162D7C;
  display: block;
}
@media screen and (max-width: 750px) {
  .respect .slider_counter .border {
    width: 8.4vw;
  }
}
.respect .respect_slider {
  width: 83.3333333333vw;
  height: 100%;
  flex-shrink: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-top: 4.1145833333vw;
  gap: 11.5625vw;
  margin-right: 5.2083333333vw;
}
@media screen and (max-width: 750px) {
  .respect .respect_slider {
    margin-right: 0;
  }
}
@media screen and (max-width: 750px) {
  .respect .respect_slider {
    flex-direction: column;
    align-items: start;
    padding-top: 0;
    gap: 0;
    width: 96vw;
    padding: 0 2vw;
  }
}
.respect .respect_slider .image {
  max-width: 43.1770833333vw;
}
@media screen and (max-width: 750px) {
  .respect .respect_slider .image {
    max-width: none;
  }
}
.respect .respect_slider .image img {
  object-fit: cover;
}
.respect .respect_slider .textbox {
  max-width: 28.59375vw;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 750px) {
  .respect .respect_slider .textbox {
    max-width: none;
    padding-top: 6.8vw;
    padding: 6.8vw 4vw 0;
  }
}
.respect .respect_slider .textbox p {
  margin-top: 2.34375vw;
}
@media screen and (max-width: 750px) {
  .respect .respect_slider .textbox p {
    margin-top: 5.7333333333vw;
  }
}
.respect .respect_slider .textbox::after {
  content: "#01";
  font-weight: 500;
  font-family: widescreen-ex, sans-serif;
  font-size: max(40px, 10.4166666667vw);
  position: absolute;
  color: rgba(42, 115, 177, 0.11);
  top: -3.125vw;
  right: 0;
  line-height: 1;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .respect .respect_slider .textbox::after {
    font-size: max(20px, 19.4666666667vw);
    top: 6.5333333333vw;
    right: 4vw;
  }
}
.respect .respect_slider .lead_02 {
  font-size: max(20px, 2.0833333333vw);
}
@media screen and (max-width: 750px) {
  .respect .respect_slider .lead_02 {
    font-size: max(18px, 5.6vw);
  }
}
.respect .respect_slider:not(:first-child) .textbox {
  max-width: 25.3125vw;
}
@media screen and (max-width: 750px) {
  .respect .respect_slider:not(:first-child) .textbox {
    max-width: none;
    padding-top: 6.8vw;
    padding: 6.8vw 4vw 0;
  }
}
.respect .respect_slider.box_02, .respect .respect_slider.box_04 {
  gap: 11.5625vw;
}
@media screen and (max-width: 750px) {
  .respect .respect_slider.box_02, .respect .respect_slider.box_04 {
    gap: 0;
    padding-top: 0;
  }
}
.respect .respect_slider.box_02 .textbox, .respect .respect_slider.box_04 .textbox {
  max-width: 31.7708333333vw;
}
@media screen and (max-width: 750px) {
  .respect .respect_slider.box_02 .textbox, .respect .respect_slider.box_04 .textbox {
    max-width: none;
    padding-top: 6.8vw;
    padding: 6.8vw 4vw 0;
  }
}
.respect .respect_slider.box_02 .textbox::after, .respect .respect_slider.box_04 .textbox::after {
  right: auto;
  left: 5.9895833333vw;
}
@media screen and (max-width: 750px) {
  .respect .respect_slider.box_02 .textbox::after, .respect .respect_slider.box_04 .textbox::after {
    top: 6.5333333333vw;
    left: auto;
    right: 4vw;
  }
}
.respect .respect_slider.box_02 .textbox {
  flex-basis: 25.3125vw;
}
.respect .respect_slider.box_02 .textbox p {
  margin-top: 2.2395833333vw;
}
.respect .respect_slider.box_02 .textbox::after {
  content: "#02";
  top: -1.9791666667vw;
  left: 0;
}
@media screen and (max-width: 750px) {
  .respect .respect_slider.box_02 .textbox::after {
    top: 6.5333333333vw;
    left: auto;
    right: 0;
  }
}
.respect .respect_slider.box_03 .textbox p {
  margin-top: 2.6041666667vw;
}
.respect .respect_slider.box_03 .textbox::after {
  content: "#03";
  top: -1.9791666667vw;
}
@media screen and (max-width: 750px) {
  .respect .respect_slider.box_03 .textbox::after {
    top: 6.5333333333vw;
    right: 0;
  }
}
.respect .respect_slider.box_04 {
  gap: 8.4895833333vw;
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .respect .respect_slider.box_04 {
    gap: 0;
  }
}
.respect .respect_slider.box_04 .image {
  max-width: 829;
}
.respect .respect_slider.box_04 .textbox {
  flex-basis: 26.5625vw;
}
@media screen and (max-width: 750px) {
  .respect .respect_slider.box_04 .textbox .lead_02 {
    line-height: 4;
  }
}
.respect .respect_slider.box_04 .textbox p {
  margin-top: 3.4895833333vw;
}
@media screen and (max-width: 750px) {
  .respect .respect_slider.box_04 .textbox p {
    margin-top: 1.0666666667vw;
  }
}
.respect .respect_slider.box_04 .textbox::after {
  content: "#04";
  left: 0;
}
@media screen and (max-width: 750px) {
  .respect .respect_slider.box_04 .textbox::after {
    top: 6.5333333333vw;
    right: 0;
    left: auto;
  }
}

.ceo {
  background: url(../images/ceo_bg.webp) 0/cover no-repeat;
  margin-top: 8.1770833333vw;
  padding: 6.3541666667vw 0 11.875vw;
  position: relative;
}
@media screen and (max-width: 750px) {
  .ceo {
    margin-top: 24.6666666667vw;
    padding: 11.0666666667vw 0 19.8666666667vw;
  }
}
.ceo .sec-ttl {
  gap: 1.40625vw;
}
.ceo .sec-ttl .en,
.ceo .sec-ttl .jp {
  color: #fff;
}
@media screen and (max-width: 750px) {
  .ceo .sec-ttl {
    gap: 3.6vw;
  }
  .ceo .sec-ttl .en {
    font-size: max(20px, 8vw);
  }
}
.ceo .ceo_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 5.2083333333vw;
}
@media screen and (max-width: 750px) {
  .ceo .ceo_container {
    margin-top: 6.6666666667vw;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 10.4vw;
  }
}
.ceo .ceo_container .textbox {
  flex-basis: 37%;
}
@media screen and (max-width: 900px) {
  .ceo .ceo_container .textbox {
    flex-basis: 40%;
  }
}
@media screen and (max-width: 750px) {
  .ceo .ceo_container .textbox {
    flex-basis: 100%;
  }
}
.ceo .ceo_container .textbox .lead {
  margin-left: -0.5208333333vw;
}
@media screen and (max-width: 750px) {
  .ceo .ceo_container .textbox .lead {
    margin-left: 0;
  }
}
.ceo .ceo_container .textbox .lead,
.ceo .ceo_container .textbox p {
  color: #fff;
}
.ceo .ceo_container .textbox p {
  margin-top: 3.28125vw;
  max-width: 26.0416666667vw;
}
@media screen and (max-width: 900px) {
  .ceo .ceo_container .textbox p {
    max-width: 30.2083333333vw;
    margin-top: 9.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .ceo .ceo_container .textbox p {
    max-width: none;
  }
}
.ceo .ceo_container .image_box {
  max-width: 36.4583333333vw;
  padding-top: 0.5208333333vw;
}
@media screen and (max-width: 750px) {
  .ceo .ceo_container .image_box {
    flex-basis: 100%;
    max-width: none;
  }
}
.ceo .ceo_container .image_box .name {
  color: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1.9791666667vw;
  gap: 1.40625vw;
}
@media screen and (max-width: 750px) {
  .ceo .ceo_container .image_box .name {
    gap: 3.7333333333vw;
    margin-top: 5.6vw;
    margin-right: 4vw;
  }
}
.ceo .ceo_container .image_box .name span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: max(12px, 0.8333333333vw);
  display: block;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .ceo .ceo_container .image_box .name span {
    font-size: max(10px, 2.6666666667vw);
  }
}
.ceo .ceo_container .image_box .name .in-name {
  font-size: max(14px, 1.3541666667vw);
  font-weight: 700;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 750px) {
  .ceo .ceo_container .image_box .name .in-name {
    font-size: max(10px, 4vw);
  }
}
.ceo .movie-btn {
  border: 0.0520833333vw solid #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7.8125vw;
  margin-top: 3.3333333333vw;
  padding: 1.1979166667vw 9.8958333333vw 1.1979166667vw 3.75vw;
  max-height: 5.5208333333vw;
}
@media screen and (max-width: 1090px) {
  .ceo .movie-btn {
    gap: 4.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .ceo .movie-btn {
    padding: 3.8666666667vw 14.6666666667vw 3.0666666667vw 7.6vw;
    margin-top: 7.2vw;
    height: 19.3333333333vw;
    max-height: 19.3333333333vw;
  }
}
.ceo .movie-btn .icon {
  transition: 0.3s;
  max-width: 3.125vw;
  height: 3.125vw;
  min-width: 3.125vw;
  min-height: 3.125vw;
}
.ceo .movie-btn .icon img {
  vertical-align: sub;
}
@media screen and (max-width: 750px) {
  .ceo .movie-btn .icon img {
    vertical-align: middle;
  }
}
@media screen and (max-width: 750px) {
  .ceo .movie-btn .icon {
    max-width: 11.6vw;
    height: 11.6vw;
    min-width: auto;
    min-height: auto;
  }
}
.ceo .movie-btn .play_text {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  gap: 0.46875vw;
  transition: 0.3s;
}
@media screen and (max-width: 750px) {
  .ceo .movie-btn .play_text {
    gap: 2.1333333333vw;
    width: 100%;
  }
}
.ceo .movie-btn .play_text .text-01 {
  max-width: 11.8229166667vw;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .ceo .movie-btn .play_text .text-01 {
    max-width: 41.6vw;
  }
}
.ceo .movie-btn .play_text .text-01 img {
  max-width: 11.8229166667vw;
  vertical-align: middle;
}
@media screen and (max-width: 750px) {
  .ceo .movie-btn .play_text .text-01 img {
    max-width: 41.6vw;
  }
}
.ceo .movie-btn .play_text .jp {
  color: #fff;
  font-weight: 700;
  font-size: max(12px, 0.78125vw);
  text-wrap: nowrap;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .ceo .movie-btn .play_text .jp {
    font-size: max(10px, 2.9333333333vw);
    text-decoration: underline;
  }
}
.ceo .movie-btn:hover {
  transform: scale(0.97);
}
.ceo .movie-btn:hover .play_text {
  opacity: 0.8;
}

.ceo_slide_wrapper {
  position: relative;
}
.ceo_slide_wrapper .splide.ceo-slide {
  position: absolute;
  bottom: 0;
  transform: translateY(43%);
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .ceo_slide_wrapper .splide.ceo-slide {
    transform: translateY(33%);
  }
}
@media screen and (max-width: 420px) {
  .ceo_slide_wrapper .splide.ceo-slide {
    transform: translateY(62%);
  }
}
.ceo_slide_wrapper .splide.ceo-slide .splide__list .splide__slide.ceo-slide-item {
  color: #d1d1d1;
  font-family: widescreen-ex, sans-serif;
  font-size: clamp(50px, 13.95vw, 268px);
  font-weight: 500;
  line-height: 1.2;
  padding: 0 4vw;
  line-height: 1.5;
  display: inline-block;
}
@media screen and (max-width: 750px) {
  .ceo_slide_wrapper .splide.ceo-slide .splide__list .splide__slide.ceo-slide-item {
    height: 34.6666666667vw;
    font-size: max(30px, 26.1333333333vw);
    letter-spacing: -0.03em;
  }
}
@media screen and (max-width: 420px) {
  .ceo_slide_wrapper .splide.ceo-slide .splide__list .splide__slide.ceo-slide-item {
    height: auto;
  }
}

.modal {
  display: none;
}

.modaal-container .modaal-content-container {
  padding: 0;
}
.modaal-container iframe {
  aspect-ratio: 16/9;
  width: 100%;
}

.modaal-wrapper {
  z-index: 1000 !important;
}
.modaal-wrapper .modaal-close {
  z-index: 1000 !important;
}
.modaal-wrapper .modaal-close:hover {
  background: transparent;
}
.modaal-wrapper .modaal-close:after,
.modaal-wrapper .modaal-close:before {
  width: 0.1041666667vw;
  height: 2.6041666667vw;
  top: 0;
  left: 50%;
}
.modaal-wrapper .modaal-close:focus:after,
.modaal-wrapper .modaal-close:focus:before,
.modaal-wrapper .modaal-close:hover:after,
.modaal-wrapper .modaal-close:hover:before {
  background: #fff;
  opacity: 0.7;
}

/* パララックスセクション */
.parallax-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 10.8333333333vw 0 0;
}
@media screen and (max-width: 750px) {
  .parallax-section {
    padding: 26.6666666667vw 0 0;
  }
}

.parallax-image-wrapper {
  width: 94.2708333333vw;
  aspect-ratio: 1810/792;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .parallax-image-wrapper {
    width: 92vw;
    aspect-ratio: 690/975;
  }
}

/* 重要！これがないとパララックスが動かない */
.parallax-image {
  position: absolute;
  /* 必須 */
  top: -10%;
  /* 必須 */
  left: 0;
  /* 必須 */
  width: 100%;
  height: 110%;
  max-height: 41.25vw;
  /* 必須 */
  object-fit: cover;
  will-change: transform;
}
@media screen and (max-width: 750px) {
  .parallax-image {
    max-height: 130vw;
  }
  .parallax-image img {
    object-position: left;
  }
}

.corevalues {
  margin-top: 8.0208333333vw;
}
@media screen and (max-width: 750px) {
  .corevalues {
    margin-top: 9.3333333333vw;
  }
}
.corevalues .corevalues_header {
  margin: 0 12.96875vw 0 11.71875vw;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .corevalues .corevalues_header {
    flex-direction: column;
  }
}
.corevalues .corevalues_header .image {
  max-width: 33.2291666667vw;
}
@media screen and (max-width: 750px) {
  .corevalues .corevalues_header .image {
    margin-top: 8vw;
    max-width: 77.6vw;
  }
}
.corevalues .values_inner {
  margin-top: 8.9427083333vw;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .corevalues .values_inner {
    margin-top: 12.4vw;
  }
}
.corevalues .values_inner tr {
  display: block;
  background: rgba(0, 51, 95, 0.12);
  margin-bottom: 1.3020833333vw;
  padding: 0.6770833333vw 1.7708333333vw;
}
@media screen and (max-width: 750px) {
  .corevalues .values_inner tr {
    background: transparent;
    display: flex;
    height: auto;
    flex-direction: column;
  }
}
.corevalues .values_inner tr th {
  font-size: max(12px, 1.3541666667vw);
  font-weight: 700;
  font-family: "Zen Old Mincho", serif;
  width: 19.6354166667vw;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .corevalues .values_inner tr th {
    background: rgba(0, 51, 95, 0.12);
    width: 100%;
    display: block;
    font-size: max(13px, 4.5333333333vw);
    text-align: center;
    padding: 1.4666666667vw 1.3333333333vw 2.4vw;
  }
}
.corevalues .values_inner tr td {
  line-height: 1.5;
  font-size: max(12px, 1.1458333333vw);
}
@media screen and (max-width: 750px) {
  .corevalues .values_inner tr td {
    width: 100%;
    display: block;
    text-align: center;
    padding: 4.2666666667vw 1.3333333333vw;
    background: transparent;
    letter-spacing: 1.96;
    font-size: max(12px, 3.7333333333vw);
  }
}

.lookingfor {
  margin: 6.3020833333vw 9.2708333333vw 0 13.5416666667vw;
}
@media screen and (max-width: 750px) {
  .lookingfor {
    margin: 18.5333333333vw 0 16.5333333333vw;
  }
}
.lookingfor .sec-ttl {
  align-items: flex-start;
}
@media screen and (max-width: 750px) {
  .lookingfor .sec-ttl {
    margin: 0 4vw;
  }
}
.lookingfor .lookingfor_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 7.2395833333vw;
  margin-top: 0.78125vw;
}
@media screen and (max-width: 750px) {
  .lookingfor .lookingfor_container {
    flex-direction: column;
    gap: 5.0666666667vw;
  }
}
.lookingfor .lookingfor_container .image {
  max-width: 36.4583333333vw;
}
@media screen and (max-width: 750px) {
  .lookingfor .lookingfor_container .image {
    max-width: none;
    margin: 0 4vw;
  }
}
.lookingfor .lookingfor_container .list {
  margin-top: 3.125vw;
  max-width: 33.4895833333vw;
}
@media screen and (max-width: 750px) {
  .lookingfor .lookingfor_container .list {
    max-width: none;
    margin: 0 0.6666666667vw 0 4vw;
  }
}
.lookingfor .lookingfor_container .list li {
  text-indent: -1.3020833333vw;
  padding-left: 1.3020833333vw;
  font-size: max(12px, 1.3541666667vw);
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  line-height: 1.53;
  margin-top: 1.9270833333vw;
}
@media screen and (max-width: 750px) {
  .lookingfor .lookingfor_container .list li {
    font-size: max(10px, 3.7333333333vw);
    padding-left: 0;
    line-height: 3.2;
    padding-left: 3.7333333333vw;
    text-indent: -3.7333333333vw;
    font-weight: 600;
  }
  .lookingfor .lookingfor_container .list li.tight {
    line-height: 1.6;
    letter-spacing: -0.005em;
  }
}

.career {
  margin-top: 10.0520833333vw;
  padding: 5.8333333333vw 0 8.8541666667vw;
  background: url(../images/carrer_bg.webp) 0/cover no-repeat;
}
@media screen and (max-width: 750px) {
  .career {
    padding: 9.6vw 0 9.7333333333vw;
    background-image: url(../images/career_bg_sp.webp);
  }
}
.career .sec-ttl .en,
.career .sec-ttl .jp {
  color: #fff;
}
@media screen and (max-width: 750px) {
  .career .sec-ttl {
    align-items: center;
  }
  .career .sec-ttl .en {
    text-align: center;
  }
}
.career .career_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 6.875vw;
}
@media screen and (max-width: 750px) {
  .career .career_container {
    margin-top: 10.8vw;
    flex-direction: column-reverse;
    gap: 10.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .career .career_container .textbox {
    margin: 0 0 0 4vw;
  }
}
.career .career_container .textbox .lead {
  color: #fff;
  max-width: 27.0833333333vw;
}
@media screen and (max-width: 1090px) {
  .career .career_container .textbox .lead {
    max-width: 33.8541666667vw;
  }
}
@media screen and (max-width: 750px) {
  .career .career_container .textbox .lead {
    max-width: none;
  }
}
.career .career_container .textbox p {
  max-width: 26.0416666667vw;
  color: #fff;
  margin-top: 1.953125vw;
}
@media screen and (max-width: 1090px) {
  .career .career_container .textbox p {
    max-width: 31.25vw;
  }
}
@media screen and (max-width: 750px) {
  .career .career_container .textbox p {
    max-width: 88vw;
    margin-top: 9.3333333333vw;
  }
}
.career .career_container .splide {
  max-width: 36.4583333333vw;
  padding-bottom: 2.65625vw;
  /* 数字の位置 */
  /* 数字の色やサイズ調整 */
  /* スライドのサイズ調整 */
}
@media screen and (max-width: 750px) {
  .career .career_container .splide {
    max-width: none;
    width: 100%;
    padding-bottom: 7.3333333333vw;
  }
}
.career .career_container .splide .pager-wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  width: 100%;
  gap: 0.625vw;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  /* これがないとスライドの下になる */
}
@media screen and (max-width: 750px) {
  .career .career_container .splide .pager-wrap {
    gap: 2.2666666667vw;
  }
}
.career .career_container .splide .pager-wrap .pager-btn {
  display: block;
  color: #fff;
  font-family: widescreen-ex, sans-serif;
  font-size: clamp(10px, 0.83vw, 16px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: 0.3s;
}
.career .career_container .splide .pager-wrap .pager-btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 750px) {
  .career .career_container .splide .pager-wrap .pager-btn {
    font-size: max(10px, 2.9333333333vw);
  }
}
.career .career_container .splide .pagination {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.171875vw;
}
@media screen and (max-width: 750px) {
  .career .career_container .splide .pagination {
    gap: 6vw;
  }
}
.career .career_container .splide .pagination .border {
  width: 1.40625vw;
  height: 1px;
  background-color: #fff;
  display: block;
}
@media screen and (max-width: 750px) {
  .career .career_container .splide .pagination .border {
    height: 1px;
    width: 6.6666666667vw;
  }
}
.career .career_container .splide .pagination span {
  color: #fff;
  font-family: widescreen-ex, sans-serif;
  font-size: clamp(10px, 0.83vw, 16px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  .career .career_container .splide .pagination span {
    font-size: max(10px, 2.9333333333vw);
  }
}
.career .career_container .splide .splide__slide img {
  height: auto;
  width: 100%;
}
.career .jobflow_contents {
  margin: 5.7291666667vw 0 0;
  position: relative;
}
@media screen and (max-width: 750px) {
  .career .jobflow_contents {
    margin: 12.5333333333vw 0 0 !important;
  }
}
.career .jobflow_contents .job_t {
  position: absolute;
  left: 6.25vw;
  top: 50%;
  transform: translateY(-50%);
  max-width: 8.4375vw;
  max-height: 56.875vw;
}
@media screen and (max-width: 750px) {
  .career .jobflow_contents .job_t {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .career .jobflow_contents {
    margin: 12.6666666667vw 4vw 0;
  }
}
.career .jobflow_contents .job_flow_box {
  background: rgba(181, 203, 222, 0.19);
  max-width: 75vw;
  margin: 0 0 0 10.4166666667vw;
  padding: 4.0104166667vw 0 6.7708333333vw;
  border-radius: 1.8229166667vw;
}
@media screen and (max-width: 750px) {
  .career .jobflow_contents .job_flow_box {
    padding: 9.6vw 2vw 12.1333333333vw 4vw;
    max-width: none;
    width: 100%;
    margin: 0;
  }
}
.career .jobflow_contents .job_flow_box .job_ttl {
  color: #fff;
  font-size: max(20px, 2.0833333333vw);
  text-align: center;
}
.career .jobflow_contents .job_flow_box .job_ttl span {
  font-size: max(16px, 1.71875vw);
}
@media screen and (max-width: 750px) {
  .career .jobflow_contents .job_flow_box .job_ttl {
    font-size: max(20px, 5.3333333333vw);
  }
  .career .jobflow_contents .job_flow_box .job_ttl span {
    font-size: max(16px, 4.6666666667vw);
  }
}
.career .jobflow_contents .job_flow_box .ex {
  color: #fff;
  text-align: center;
  margin-top: 0.8333333333vw;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 750px) {
  .career .jobflow_contents .job_flow_box .ex {
    font-size: max(10px, 3.4666666667vw);
  }
}
.career .jobflow_contents .job_flow_box .ex-min {
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  color: #fff;
  font-size: max(12px, 1.0416666667vw);
  margin: 3.3333333333vw 0 1.09375vw;
}
@media screen and (max-width: 750px) {
  .career .jobflow_contents .job_flow_box .ex-min {
    margin: 9.2vw 0 3.4666666667vw;
    font-size: max(10px, 3.2vw);
  }
}
.career .jobflow_contents .job_flow_box .jobflow-img {
  max-width: 56.8229166667vw;
  margin: 0 6.1458333333vw 0 9.8958333333vw;
}
@media screen and (max-width: 750px) {
  .career .jobflow_contents .job_flow_box .jobflow-img {
    width: 100%;
    max-width: none;
    margin: 0;
  }
}

.benefits {
  margin-top: 8.8541666667vw;
}
@media screen and (max-width: 750px) {
  .benefits {
    margin: 14.9333333333vw 0 16vw;
  }
}
.benefits .sec-ttl {
  align-items: flex-start;
}
@media screen and (max-width: 750px) {
  .benefits .sec-ttl {
    align-items: center;
  }
  .benefits .sec-ttl .en {
    font-size: max(20px, 9.3333333333vw);
    white-space: nowrap;
  }
}
.benefits .benefits_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 4.7916666667vw;
}
.benefits .benefits_container .images {
  max-width: 36.4583333333vw;
}
.benefits .benefits_container .images img {
  transition: opacity 0.2s ease;
}
.benefits .benefits_container .images .images {
  position: relative;
}
.benefits .benefits_container .images .images picture,
.benefits .benefits_container .images .images img {
  display: block;
  width: 100%;
  height: auto;
}
.benefits .benefits_container .images .images .fade-next {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 必要に応じて */
  opacity: 0;
  transition: opacity 0.8s ease;
  /* ←ここで“ふわっ”の時間を調整 */
  pointer-events: none;
}
.benefits .benefits_container .benefits-list {
  width: 50%;
}
.benefits .benefits_container .benefits-list li {
  color: #7e7e7e;
  cursor: pointer;
  padding: 1.6666666667vw 2.34375vw;
  font-family: "Zen Old Mincho", serif;
  font-size: max(12px, 1.5625vw);
  font-weight: 700;
  position: relative;
  line-height: 1.1;
  border-bottom: 0.072vw solid #707070;
}
.benefits .benefits_container .benefits-list li::before {
  content: "";
  width: 0.8854166667vw;
  height: 0.8854166667vw;
  border-radius: 50%;
  position: absolute;
  background: #162D7C;
  transition: 0.3s;
  top: 50%;
  transform: translateY(-50%);
  left: 0.3125vw;
  opacity: 0;
  z-index: 10;
}
.benefits .benefits_container .benefits-list li.is-active {
  color: #2a48b1;
  border-bottom: 0.072vw solid #2a48b1;
}
.benefits .benefits_container .benefits-list li.is-active::before {
  opacity: 1;
}
@media screen and (max-width: 750px) {
  .benefits .benefits_container {
    display: none;
  }
}
.benefits .benefit_container_sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .benefits .benefit_container_sp {
    display: block;
    margin-top: 11.2vw;
  }
  .benefits .benefit_container_sp ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.3333333333vw 3.0666666667vw;
  }
  .benefits .benefit_container_sp ul .image {
    aspect-ratio: 334/217;
  }
  .benefits .benefit_container_sp ul .image img {
    object-fit: cover;
  }
  .benefits .benefit_container_sp ul .text {
    line-height: 1.4;
    text-align: center;
    margin-top: 1.8666666667vw;
  }
  .benefits .benefit_container_sp ul .text span {
    font-size: max(9px, 2.9333333333vw);
  }
}

.date-contents {
  margin-top: 6.8229166667vw;
  background: url(../images/data_bg.webp) 0/cover no-repeat;
  padding: 4.7395833333vw 0 9.375vw;
}
@media screen and (max-width: 750px) {
  .date-contents {
    padding: 10.9333333333vw 0 14.2666666667vw;
  }
}
.date-contents .sec-ttl .en,
.date-contents .sec-ttl .jp {
  color: #fff;
}
.date-contents .data_grid {
  margin-top: 5.7291666667vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.09375vw 1.1979166667vw;
}
@media screen and (max-width: 750px) {
  .date-contents .data_grid {
    margin-top: 10.1333333333vw;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.8vw 2.6666666667vw;
  }
}
.date-contents .data {
  background: rgba(42, 115, 177, 0.4);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  border-radius: 1.0416666667vw;
  padding: 3.75vw 1.0416666667vw 1.25vw;
  height: 16.4583333333vw;
}
@media screen and (max-width: 750px) {
  .date-contents .data {
    height: 55.3333333333vw;
    flex-direction: column;
    padding: 4.4vw 2.6666666667vw;
  }
}
.date-contents .data .item {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  font-size: max(12px, 1.3541666667vw);
}
@media screen and (max-width: 750px) {
  .date-contents .data .item {
    order: 1;
    text-align: center;
    line-height: 1.4;
    margin-top: 3.0666666667vw;
    font-size: max(16px, 3.7333333333vw);
  }
}
.date-contents .data .data_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6770833333vw;
  margin-top: 1.6666666667vw;
}
@media screen and (max-width: 750px) {
  .date-contents .data .data_container {
    display: contents;
  }
}
.date-contents .data .icon {
  width: 2.8125vw;
  height: 3.9583333333vw;
}
@media screen and (max-width: 750px) {
  .date-contents .data .icon {
    order: 0;
    width: 8.9333333333vw;
    height: 12.4vw;
  }
}
.date-contents .data .icon img {
  object-fit: contain;
}
.date-contents .data .num-box {
  color: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0.4166666667vw;
}
@media screen and (max-width: 750px) {
  .date-contents .data .num-box {
    gap: 0.6666666667vw;
    order: 2;
    margin-top: 4.8vw;
  }
}
.date-contents .data .num-box .num {
  color: #fff;
  font-family: widescreen-ex, sans-serif;
  font-size: clamp(16px, 3.64vw, 70px);
  font-weight: 500;
  line-height: 1.2;
  line-height: 1;
}
.date-contents .data .num-box .num span {
  font-family: widescreen-ex, sans-serif;
  font-size: clamp(12px, 1.66vw, 32px);
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 750px) {
  .date-contents .data .num-box .num span {
    font-size: max(12px, 4.5333333333vw);
  }
}
@media screen and (max-width: 750px) {
  .date-contents .data .num-box .num {
    font-size: max(20px, 12vw);
  }
}
.date-contents .data .num-box .tani {
  line-height: 1.5;
  font-weight: 700;
}
.date-contents .data .num-box .tani.en {
  font-family: widescreen-ex, sans-serif;
}
@media screen and (max-width: 750px) {
  .date-contents .data .num-box .tani {
    font-size: max(12px, 4.2666666667vw);
  }
}
.date-contents .data .ex {
  color: #fff;
  font-size: max(10px, 1.0416666667vw);
  margin-top: 2.2916666667vw;
  line-height: 1.2;
  display: flex;
  align-items: flex-end;
  flex-basis: 50%;
}
@media screen and (max-width: 750px) {
  .date-contents .data .ex {
    font-size: max(10px, 2.6666666667vw);
    margin-top: 1.7708333333vw;
    order: 3;
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .date-contents .data:first-child .num-box .num {
    letter-spacing: -0.05em;
    font-size: max(20px, 10.6666666667vw);
  }
}
.date-contents .data:nth-child(2) .data_container {
  margin-top: 1.40625vw;
}
.date-contents .data:nth-child(2) .data_container .icon {
  width: 4.21875vw;
  height: 4.7395833333vw;
}
.date-contents .data:nth-child(2) .data_container .icon img {
  height: 4.7395833333vw;
}
@media screen and (max-width: 750px) {
  .date-contents .data:nth-child(2) .data_container .icon {
    width: 10.8vw;
    height: 12.2666666667vw;
  }
  .date-contents .data:nth-child(2) .data_container .icon img {
    height: 12.2666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .date-contents .data:nth-child(2) .num-box {
    margin-top: 5.8666666667vw;
  }
  .date-contents .data:nth-child(2) .num-box .num {
    letter-spacing: 0;
  }
}
@media screen and (max-width: 750px) {
  .date-contents .data:nth-child(3) {
    padding: 6.9333333333vw 2.6666666667vw;
  }
  .date-contents .data:nth-child(3) .item {
    margin-top: 3.6vw;
  }
}
.date-contents .data:nth-child(3) .data_container {
  margin-top: 2.4479166667vw;
  gap: 1.3020833333vw;
}
.date-contents .data:nth-child(3) .data_container .icon {
  width: 2.5vw;
  height: 3.6458333333vw;
}
.date-contents .data:nth-child(3) .data_container .icon img {
  height: 3.6458333333vw;
}
@media screen and (max-width: 750px) {
  .date-contents .data:nth-child(3) .data_container .icon {
    width: 6.9333333333vw;
    height: 10vw;
  }
  .date-contents .data:nth-child(3) .data_container .icon img {
    height: 10vw;
  }
}
@media screen and (max-width: 750px) {
  .date-contents .data:nth-child(3) .num-box {
    margin-top: 7.0666666667vw;
  }
}
.date-contents .data:nth-child(4), .date-contents .data:nth-child(5), .date-contents .data:nth-child(6) {
  padding: 3.28125vw 1.0416666667vw 1.25vw;
}
@media screen and (max-width: 750px) {
  .date-contents .data:nth-child(4) {
    padding: 7.0666666667vw 2.6666666667vw;
  }
  .date-contents .data:nth-child(4) .item {
    margin-top: 2.8vw;
  }
}
.date-contents .data:nth-child(4) .data_container {
  margin-top: 2.2395833333vw;
}
.date-contents .data:nth-child(4) .data_container .icon {
  width: 2.65625vw;
  height: 3.8020833333vw;
}
.date-contents .data:nth-child(4) .data_container .icon img {
  height: 3.8020833333vw;
}
@media screen and (max-width: 750px) {
  .date-contents .data:nth-child(4) .data_container .icon {
    width: 7.8666666667vw;
    height: 11.2vw;
  }
  .date-contents .data:nth-child(4) .data_container .icon img {
    height: 11.2vw;
  }
}
.date-contents .data:nth-child(4) .num-box .num {
  letter-spacing: -0.06em;
}
.date-contents .data:nth-child(4) .num-box .num span {
  letter-spacing: 0;
}
@media screen and (max-width: 750px) {
  .date-contents .data:nth-child(4) .num-box {
    margin-top: 7.0666666667vw;
  }
}
.date-contents .data:nth-child(5) {
  padding: 3.28125vw 1.0416666667vw 1.25vw;
}
@media screen and (max-width: 750px) {
  .date-contents .data:nth-child(5) {
    padding: 4.8vw 2.6666666667vw 3.8666666667vw;
  }
  .date-contents .data:nth-child(5) .item {
    margin-top: 2.6666666667vw;
  }
  .date-contents .data:nth-child(5) .ex {
    margin-top: 6.8vw;
  }
}
.date-contents .data:nth-child(5) .data_container {
  margin-top: 0.9375vw;
  gap: 15;
}
.date-contents .data:nth-child(5) .data_container .icon {
  width: 3.59375vw;
  height: 4.4270833333vw;
}
.date-contents .data:nth-child(5) .data_container .icon img {
  height: 4.4270833333vw;
}
@media screen and (max-width: 750px) {
  .date-contents .data:nth-child(5) .data_container .icon {
    width: 8.9333333333vw;
    height: 12.6666666667vw;
  }
  .date-contents .data:nth-child(5) .data_container .icon img {
    height: 12.6666666667vw;
  }
}
.date-contents .data:nth-child(5) .num-box .num {
  font-size: max(18px, 3.3854166667vw);
  letter-spacing: -0.05em;
}
@media screen and (max-width: 750px) {
  .date-contents .data:nth-child(5) .num-box {
    margin-top: 5.7333333333vw;
  }
  .date-contents .data:nth-child(5) .num-box .num {
    font-size: max(18px, 10.6666666667vw);
  }
}
@media screen and (max-width: 750px) {
  .date-contents .data:nth-child(6) {
    padding: 7.4666666667vw 2.6666666667vw 3.8666666667vw;
  }
  .date-contents .data:nth-child(6) .item {
    margin-top: 2.6666666667vw;
  }
}
.date-contents .data:nth-child(6) .data_container {
  margin-top: 1.7708333333vw;
  gap: 19;
}
.date-contents .data:nth-child(6) .data_container .icon {
  width: 3.3333333333vw;
  height: 3.6458333333vw;
}
.date-contents .data:nth-child(6) .data_container .icon img {
  height: 3.6458333333vw;
}
@media screen and (max-width: 750px) {
  .date-contents .data:nth-child(6) .data_container .icon {
    width: 9.2vw;
    height: 10vw;
  }
  .date-contents .data:nth-child(6) .data_container .icon img {
    height: 10vw;
  }
}
.date-contents .data:nth-child(6) .ex {
  margin-top: 2.0833333333vw;
}
@media screen and (max-width: 750px) {
  .date-contents .data:nth-child(6) .ex {
    margin-top: 6.5333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .date-contents .data:nth-child(6) .num-box {
    margin-top: 5.7333333333vw;
  }
}
.date-contents .data:nth-child(6) .num-box .num {
  font-size: max(18px, 3.3854166667vw);
  letter-spacing: -0.08em;
}
@media screen and (max-width: 750px) {
  .date-contents .data:nth-child(6) .num-box .num {
    font-size: max(18px, 10.6666666667vw);
  }
}
.interview {
  margin-top: 6.3020833333vw;
}
@media screen and (max-width: 900px) {
  .interview {
    margin-top: 9.8666666667vw;
  }
}
.interview .interview_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  flex-direction: row-reverse;
  margin: 5.78125vw 2.4479166667vw 0 9.0625vw;
  gap: 4.4270833333vw;
}
@media screen and (max-width: 900px) {
  .interview .interview_container {
    gap: 2.6041666667vw;
    margin-left: 5.2083333333vw;
  }
}
@media screen and (max-width: 750px) {
  .interview .interview_container {
    display: block;
    margin: 12.9333333333vw 4vw 19.6vw;
  }
}
.interview .interview_cp {
  max-width: 10.3125vw;
}
@media screen and (max-width: 900px) {
  .interview .interview_cp {
    max-width: 8.8541666667vw;
  }
}
@media screen and (max-width: 750px) {
  .interview .interview_cp {
    display: none;
  }
}
.interview .interview_contents {
  flex-basis: 73.75vw;
}
@media screen and (max-width: 900px) {
  .interview .interview_contents {
    flex-basis: 90%;
  }
}
@media screen and (max-width: 750px) {
  .interview .interview_contents {
    width: 100%;
    margin: 0 auto;
  }
}
.interview .interview_contents .interview_box {
  max-width: 73.75vw;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 4.1145833333vw;
}
@media screen and (max-width: 900px) {
  .interview .interview_contents .interview_box {
    gap: 3.3854166667vw;
    max-width: 81vw;
  }
}
@media screen and (max-width: 750px) {
  .interview .interview_contents .interview_box {
    flex-direction: column;
    max-width: none;
    width: 100%;
    flex-direction: column-reverse;
    gap: 10.1333333333vw;
  }
}
.interview .interview_contents .interview_box .textbox {
  max-width: 31.5625vw;
}
@media screen and (max-width: 900px) {
  .interview .interview_contents .interview_box .textbox {
    max-width: 39vw;
  }
}
@media screen and (max-width: 750px) {
  .interview .interview_contents .interview_box .textbox {
    max-width: none;
  }
}
.interview .interview_contents .interview_box .textbox .lead {
  font-size: max(20px, 1.8229166667vw);
  line-height: 1.83;
}
@media screen and (max-width: 750px) {
  .interview .interview_contents .interview_box .textbox .lead {
    line-height: 1.8;
    font-size: max(12px, 5.6vw);
  }
}
.interview .interview_contents .interview_box .textbox .lead span {
  font-size: max(16px, 1.5625vw);
}
@media screen and (max-width: 750px) {
  .interview .interview_contents .interview_box .textbox .lead span {
    font-size: max(12px, 5.6vw);
  }
}
.interview .interview_contents .interview_box .textbox .info_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.1875vw;
  margin: 1.6666666667vw 0 0;
  padding-bottom: 2.1875vw;
  border-bottom: 0.0729166667vw solid #162D7C;
}
@media screen and (max-width: 750px) {
  .interview .interview_contents .interview_box .textbox .info_container {
    gap: 11.0666666667vw;
    margin-top: 5.6vw;
    border-bottom: none;
  }
}
.interview .interview_contents .interview_box .textbox .info_container .info_box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
}
.interview .interview_contents .interview_box .textbox .info_container .info_box .year {
  font-family: widescreen-ex, sans-serif;
  font-size: clamp(20px, 2.6vw, 50px);
  font-weight: 500;
  line-height: 1.2;
  line-height: 1.2;
}
@media screen and (max-width: 750px) {
  .interview .interview_contents .interview_box .textbox .info_container .info_box .year {
    font-size: max(20px, 8.2666666667vw);
  }
}
.interview .interview_contents .interview_box .textbox .info_container .info_box span {
  line-height: 1;
  font-family: widescreen-ex, sans-serif;
  font-size: clamp(5px, 0.625vw, 12px);
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 750px) {
  .interview .interview_contents .interview_box .textbox .info_container .info_box span {
    font-size: max(6px, 2vw);
  }
}
.interview .interview_contents .interview_box .textbox .info_container .name_box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.5vw;
  flex-direction: column;
}
@media screen and (max-width: 750px) {
  .interview .interview_contents .interview_box .textbox .info_container .name_box {
    gap: 1.3333333333vw;
  }
}
.interview .interview_contents .interview_box .textbox .info_container .name_box .type {
  font-size: max(12px, 0.8333333333vw);
  line-height: 1;
  margin-top: 0.2604166667vw;
}
@media screen and (max-width: 750px) {
  .interview .interview_contents .interview_box .textbox .info_container .name_box .type {
    font-size: max(10px, 2.9333333333vw);
  }
}
.interview .interview_contents .interview_box .textbox .info_container .name_box .name {
  line-height: 1.1;
  font-family: "Zen Old Mincho", serif;
  font-size: max(12px, 1.3541666667vw);
  font-weight: 600;
}
@media screen and (max-width: 750px) {
  .interview .interview_contents .interview_box .textbox .info_container .name_box .name {
    font-size: max(12px, 4.5333333333vw);
  }
}
.interview .interview_contents .interview_box .textbox .item {
  font-size: max(12px, 0.9375vw);
  margin-top: 1.6666666667vw;
}
.interview .interview_contents .interview_box .image {
  max-width: 37.96875vw;
  line-height: 2.22;
}
@media screen and (max-width: 750px) {
  .interview .interview_contents .interview_box .image {
    max-width: none;
  }
}
@media (min-width: 751px) {
  .interview .interview_contents .interview-toggle {
    display: none;
  }
  .interview .interview_contents .interview_box .textbox .item {
    max-height: none;
    overflow: visible;
  }
}
@media screen and (max-width: 750px) {
  .interview .interview_contents {
    /* ボタンの見た目はお好みで */
    /* アコーディオン本体：デフォ閉 */
    /* 開状態はクラスで制御（上限は十分大きく：任意に調整可） */
  }
  .interview .interview_contents .interview-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 3.7333333333vw 1em 4.1333333333vw;
    font-size: max(12px, 3.7333333333vw);
    font-weight: 600;
    line-height: 1;
    border: 0.2666666667vw solid #162D7C;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    margin-top: 7.8666666667vw;
    transition: 0.3s;
    position: relative;
  }
  .interview .interview_contents .interview-toggle::after {
    content: "";
    width: 2.2666666667vw;
    height: 3.4666666667vw;
    background: url(../images/sp_arrow.svg) 0/contain no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    right: 4vw;
    transition: 0.2s;
  }
  .interview .interview_contents .interview-toggle[aria-expanded=true] {
    /* 開いている時のスタイル */
    width: 100%;
  }
  .interview .interview_contents .interview-toggle[aria-expanded=true]::after {
    background: url(../images/sp_arrow.svg) 0/contain no-repeat;
    transform: translateY(-50%) rotate(0);
  }
  .interview .interview_contents .interview_box .textbox .item {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    /* パディングは閉時は縦0。横だけ常時付けたいなら残す */
    padding-inline: 4vw;
    padding-block-start: 0;
    padding-block-end: 0;
    border: 0 solid #162D7C;
    margin-top: -0.2666666667vw;
    transition: max-height 0.3s ease;
    font-size: max(12px, 3.7333333333vw);
    line-height: 2.5;
    padding-block: 0;
    /* ← “同時に”動かす */
    transition: max-height 0.3s ease, padding-block-start 0.3s ease, padding-block-end 0.3s ease, opacity 0.2s linear, border-width 0.3s ease, visibility 0s linear 0.3s; /* 閉じ終わってから非表示に */
    height: 0;
  }
  .interview .interview_contents .interview_box .textbox .item.is-open {
    max-height: 80rem; /* 中身より十分大きく */
    height: auto;
    opacity: 1;
    visibility: visible;
    /* 上下の余白を開時だけ付与（shorthandは使わず衝突回避） */
    padding-block-start: 5.6vw;
    padding-block-end: 8.4vw;
    border-width: 0.2666666667vw;
    border-color: #162D7C;
  }
}
.interview .interview_contents .box_02 {
  flex-direction: row-reverse;
  margin-top: 4.1145833333vw;
}
@media screen and (max-width: 750px) {
  .interview .interview_contents .box_02 {
    margin-top: 8.1333333333vw;
    flex-direction: column-reverse;
  }
}
.interview .interview_contents .box_02 .textbox {
  max-width: 28.6458333333vw;
}
@media screen and (max-width: 1090px) {
  .interview .interview_contents .box_02 .textbox {
    max-width: 33.8541666667vw;
  }
}
@media screen and (max-width: 900px) {
  .interview .interview_contents .box_02 .textbox {
    max-width: 42vw;
  }
}
@media screen and (max-width: 750px) {
  .interview .interview_contents .box_02 .textbox {
    max-width: none;
  }
}
.interview .interview_contents .box_02 .image {
  margin-top: 1.0416666667vw;
}
.interview .interview_contents .box_03 {
  margin-top: 3.75vw;
}
@media screen and (max-width: 750px) {
  .interview .interview_contents .box_03 {
    margin-top: 13.3333333333vw;
  }
}
.interview .interview_contents .box_03 .textbox {
  max-width: 30.7291666667vw;
}
@media screen and (max-width: 900px) {
  .interview .interview_contents .box_03 .textbox {
    max-width: 39vw;
  }
}
@media screen and (max-width: 750px) {
  .interview .interview_contents .box_03 .textbox {
    max-width: none;
  }
}

.description {
  margin-top: 4.9479166667vw;
  padding: 6.1979166667vw 0 7.8645833333vw;
  background: url(../images/description_bg.webp) 0/cover no-repeat;
  /*エリアの表示非表示と形状*/
}
@media screen and (max-width: 750px) {
  .description {
    padding: 10.4vw 0 11.0666666667vw;
  }
}
.description .sec-ttl .en,
.description .sec-ttl .jp {
  color: #fff;
}
@media screen and (max-width: 750px) {
  .description .sec-ttl {
    align-items: center;
  }
  .description .sec-ttl .en {
    text-align: center;
  }
}
.description .desctiption_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 4.4791666667vw;
  margin-top: 6.5625vw;
}
@media screen and (max-width: 750px) {
  .description .desctiption_container {
    gap: 11.4666666667vw;
    margin-top: 8.9333333333vw;
    flex-direction: column;
  }
}
.description .tab {
  margin-bottom: 0;
  flex-basis: 13.8541666667vw;
}
@media screen and (max-width: 750px) {
  .description .tab {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 2.1333333333vw;
  }
}
.description .tab li {
  margin-bottom: 0.9895833333vw;
  /*liにactiveクラスがついた時の形状*/
}
@media screen and (max-width: 750px) {
  .description .tab li {
    margin-bottom: 0;
    flex-basis: 49%;
  }
}
.description .tab li a {
  display: block;
  margin: 0 2px;
  padding: 10px 20px;
  background: rgba(157, 157, 157, 0.41);
  border: rgba(255, 255, 255, 0.41) 0.1041666667vw solid;
  font-size: max(12px, 1.0416666667vw);
  line-height: 1;
  text-align: center;
  height: 4.21875vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3vw;
  color: #fff;
  max-width: 13.8541666667vw;
  transition: 0.3s;
}
@media screen and (max-width: 750px) {
  .description .tab li a {
    max-width: 45.2vw;
    font-size: max(12px, 4vw);
    height: 18.6666666667vw;
    gap: 1vw;
    position: relative;
    border: rgba(255, 255, 255, 0.41) 1px solid;
    background: transparent;
  }
  .description .tab li a::after {
    content: "";
    width: 2.2vw;
    height: 3.4666666667vw;
    background: url(../images/sp_arrow_sp.svg) 0/contain no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 4.2666666667vw;
  }
}
.description .tab li a span {
  line-height: 1;
  font-size: max(5px, 0.625vw);
}
@media screen and (max-width: 750px) {
  .description .tab li a span {
    font-size: max(7px, 2.6666666667vw);
  }
}
.description .tab li a:hover {
  transform: scale(0.97);
}
.description .tab li.active a {
  background: rgba(24, 53, 150, 0.67);
  position: relative;
  border: 1px solid #ccc;
  border: rgba(255, 255, 255, 0.67) 0.1041666667vw solid;
}
.description .discription_contents {
  flex-basis: 65vw;
}
@media screen and (max-width: 750px) {
  .description .discription_contents {
    background: rgba(78, 98, 114, 0.4);
    border: 0.2666666667vw solid rgba(255, 255, 255, 0.4);
    padding: 4vw 3.3333333333vw;
  }
}
.description .info {
  display: none;
  /*はじめは非表示*/
  opacity: 0;
  /*透過0*/
  margin-top: 0;
  border: 0.1041666667vw solid #fff;
  /*areaにis-activeというクラスがついた時の形状*/
}
@media screen and (max-width: 750px) {
  .description .info {
    border: none;
  }
}
.description .info .dis-detail {
  width: 100%;
}
.description .info .dis-detail tr th {
  background: rgba(78, 98, 114, 0.4);
  text-align: center;
  vertical-align: middle;
  border-right: 0.1041666667vw #fff solid;
  border-bottom: 0.1041666667vw #fff solid;
  border-top: 0.1041666667vw #fff solid;
  font-size: max(12px, 1.0416666667vw);
  color: #fff;
  max-width: 18.125vw;
  width: 28%;
}
@media screen and (max-width: 750px) {
  .description .info .dis-detail tr th {
    width: 100%;
    max-width: none;
    display: block;
    border: 0.2666666667vw solid rgba(255, 255, 255, 0.7);
    font-size: max(10px, 4.2666666667vw);
    height: 13.3333333333vw;
    background: transparent;
    line-height: 13.3333333333vw;
  }
}
.description .info .dis-detail tr:first-child th {
  border-top: 0.1041666667vw #fff solid;
  border-top: none;
}
@media screen and (max-width: 750px) {
  .description .info .dis-detail tr:first-child th {
    border: 0.2666666667vw solid rgba(255, 255, 255, 0.7);
  }
}
.description .info .dis-detail tr:last-child th {
  border-bottom: none;
}
@media screen and (max-width: 750px) {
  .description .info .dis-detail tr:last-child th {
    border: 0.2666666667vw solid rgba(255, 255, 255, 0.7);
  }
}
.description .info .dis-detail tr th:last-child {
  border-right: none;
}
.description .info .dis-detail tr td {
  max-width: 46.875vw;
  border-bottom: 0.1041666667vw #fff solid;
  width: 72%;
  font-size: max(12px, 0.9375vw);
  padding: 1.9791666667vw 2.3958333333vw 1.9791666667vw 3.2291666667vw;
}
@media screen and (max-width: 750px) {
  .description .info .dis-detail tr td {
    width: 100%;
    border-bottom: none;
    display: block;
    font-size: max(10px, 3.7333333333vw);
    max-width: none;
    padding: 6vw 0 8.4vw;
  }
}
.description .info .dis-detail tr td p,
.description .info .dis-detail tr td li {
  font-size: max(12px, 0.9375vw);
  color: #fff;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .description .info .dis-detail tr td p,
  .description .info .dis-detail tr td li {
    font-size: max(10px, 3.7333333333vw);
  }
  .description .info .dis-detail tr td p span,
  .description .info .dis-detail tr td li span {
    letter-spacing: 0;
    white-space: nowrap;
  }
}
.description .info .dis-detail tr td .mb_30 {
  margin-bottom: 1.71875vw;
}
@media screen and (max-width: 750px) {
  .description .info .dis-detail tr td .mb_30 {
    margin-bottom: 8vw;
  }
}
.description .info .dis-detail tr td .mb_24 {
  margin-bottom: 1.1979166667vw;
}
@media screen and (max-width: 750px) {
  .description .info .dis-detail tr td .mb_24 {
    margin-bottom: 5.7333333333vw;
  }
}
.description .info .dis-detail tr td .item {
  border: 0.0520833333vw solid #fff;
  padding: 0.2083333333vw 1.0416666667vw 0.3645833333vw;
  width: fit-content;
  margin: 2.5vw 0 0.5208333333vw;
}
@media screen and (max-width: 750px) {
  .description .info .dis-detail tr td .item {
    border: 0.2666666667vw solid rgba(255, 255, 255, 0.7);
    font-size: max(10px, 2.9333333333vw);
    padding: 1.8666666667vw 4vw;
    margin: 8.4vw 0 3.0666666667vw;
  }
}
.description .info .dis-detail tr td .tight {
  line-height: 1.7;
}
.description .info .dis-detail tr:last-child td {
  border-bottom: none;
}
.description .info.is-active {
  display: block;
  /*表示*/
  animation-name: displayAnime;
  /*ふわっと表示させるためのアニメーション*/
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.faq {
  padding: 4.9479166667vw 0 6.875vw;
}
@media screen and (max-width: 750px) {
  .faq {
    padding: 8.1333333333vw 0 16.2666666667vw;
  }
}
.faq .faq_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 750px) {
  .faq .faq_container {
    flex-direction: column;
  }
}
.faq .faq_container .sec-ttl {
  align-items: flex-start;
  gap: 0.9895833333vw;
}
@media screen and (max-width: 750px) {
  .faq .faq_container .sec-ttl {
    width: 100%;
    gap: 1.7333333333vw;
    text-align: center;
    align-items: center;
  }
}
.faq .faq_container .faq_contents {
  flex-basis: 62.4479166667vw;
  margin-top: 1.3020833333vw;
  /*アコーディオン全体*/
  /*アコーディオンタイトル*/
  /*アイコンの＋と×*/
  /*　closeというクラスがついたら形状変化　*/
  /*アコーディオンで現れるエリア*/
}
@media screen and (max-width: 750px) {
  .faq .faq_container .faq_contents {
    margin-top: 8vw;
    width: 100%;
  }
}
.faq .faq_container .faq_contents .accordion-area {
  list-style: none;
  width: 100%;
  margin: 0 auto;
}
.faq .faq_container .faq_contents .accordion-area li {
  margin: 0.4166666667vw 0;
}
@media screen and (max-width: 750px) {
  .faq .faq_container .faq_contents .accordion-area li {
    margin: 4vw 0;
  }
}
.faq .faq_container .faq_contents .title {
  position: relative;
  /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: max(12px, 1.0416666667vw);
  font-weight: 700;
  padding: 0.3645833333vw 1.0416666667vw;
  transition: all 0.5s ease;
  background: rgba(42, 115, 177, 0.12);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.6041666667vw;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 750px) {
  .faq .faq_container .faq_contents .title {
    padding: 2.1333333333vw 3.2vw;
    font-size: max(10px, 3.7333333333vw);
    gap: 3.4666666667vw;
    width: 100%;
  }
}
.faq .faq_container .faq_contents .title span {
  font-family: widescreen-ex, sans-serif;
  font-size: clamp(16px, 1.927vw, 37px);
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 750px) {
  .faq .faq_container .faq_contents .title span {
    font-size: max(10px, 6.6666666667vw);
  }
}
.faq .faq_container .faq_contents .title::after {
  position: absolute;
  content: "";
  width: 0.8333333333vw;
  height: 0.7291666667vw;
  background: url(../images/faq_icon.svg) 0/contain no-repeat;
  right: 1.9270833333vw;
  transform: rotate(-180deg);
  transition: 0.3s;
}
@media screen and (max-width: 900px) {
  .faq .faq_container .faq_contents .title::after {
    width: 0.9375vw;
    height: 0.8333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .faq .faq_container .faq_contents .title::after {
    right: 3.0666666667vw;
    background: url(../images/sp_arrow.svg) 0/contain no-repeat;
    width: 2.2666666667vw;
    height: 3.4666666667vw;
  }
}
.faq .faq_container .faq_contents .title.close::after {
  transform: rotate(0);
}
.faq .faq_container .faq_contents .box {
  display: none;
  padding: 1.1458333333vw 5.3125vw 0.8854166667vw 5.7291666667vw;
}
@media screen and (max-width: 750px) {
  .faq .faq_container .faq_contents .box {
    padding: 5.0666666667vw 4vw 7.2vw;
  }
}
.faq .faq_container .faq_contents .box p {
  font-size: max(12px, 0.9375vw);
  line-height: 1.777;
}
@media screen and (max-width: 750px) {
  .faq .faq_container .faq_contents .box p {
    font-size: max(10px, 3.7333333333vw);
    line-height: 2.5;
  }
}

.entry {
  background: url(../images/entry_bg.webp) 0/cover no-repeat;
  position: relative;
  padding: 4.4270833333vw 0 7.5vw;
}
@media screen and (max-width: 750px) {
  .entry {
    padding: 9.4666666667vw 0 16vw;
  }
}
.entry .sec-ttl {
  gap: 0.458vw;
}
.entry .sec-ttl .en,
.entry .sec-ttl .jp {
  color: #fff;
}
.entry .sec-ttl .jp {
  background: linear-gradient(transparent 65%, #dec84d 35%);
  padding-bottom: 0.2604166667vw;
}
.entry .lead {
  line-height: 2;
  font-size: max(12px, 1.0416666667vw);
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-top: 2.5vw;
}
@media screen and (max-width: 750px) {
  .entry .lead {
    margin-top: 7.7333333333vw;
    font-size: max(10px, 3.7333333333vw);
  }
}
.entry .parallax-section {
  padding-top: 3.3854166667vw;
}
@media screen and (max-width: 750px) {
  .entry .parallax-section {
    margin-top: 7.7333333333vw;
  }
  .entry .parallax-section .parallax-image-wrapper {
    aspect-ratio: 693/540;
  }
}
.entry .parallax-section::after {
  content: "";
  width: 32.1875vw;
  height: 1.7708333333vw;
  background: url(../images/entry_text.svg) 0/contain no-repeat;
  position: absolute;
  left: 49%;
  bottom: 0;
  transform: translate(-50%, 55%);
}
@media screen and (max-width: 750px) {
  .entry .parallax-section::after {
    width: 83.7333333333vw;
    height: 4.6666666667vw;
  }
}
.entry .entry_btn_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 6.5104166667vw;
  gap: 0.8333333333vw;
}
@media screen and (max-width: 750px) {
  .entry .entry_btn_container {
    margin-top: 17.0666666667vw;
    flex-direction: column;
    gap: 5.4666666667vw;
  }
}
.entry .entry_btn_container .entry-btn {
  background: #465eb2;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.71875vw 6.8229166667vw 1.71875vw 6.5625vw;
  height: 5.5729166667vw;
  width: 36.0416666667vw;
  transition: 0.3s;
}
@media screen and (max-width: 900px) {
  .entry .entry_btn_container .entry-btn {
    width: 100%;
    justify-content: center;
    padding: 1.71875vw 0.5208333333vw 1.71875vw 0.5208333333vw;
  }
}
@media screen and (max-width: 750px) {
  .entry .entry_btn_container .entry-btn {
    padding: 4.5333333333vw 7.7333333333vw 5.0666666667vw;
    height: 18.6666666667vw;
  }
}
.entry .entry_btn_container .entry-btn .place {
  font-size: max(12px, 1.1458333333vw);
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .entry .entry_btn_container .entry-btn .place {
    font-size: max(10px, 4vw);
    font-weight: 600;
  }
}
.entry .entry_btn_container .entry-btn span {
  width: 1.9270833333vw;
  height: 0.0520833333vw;
  background: #fff;
  display: block;
  margin: 0 1.0416666667vw;
}
@media screen and (max-width: 750px) {
  .entry .entry_btn_container .entry-btn span {
    width: 4.9333333333vw;
    height: 1px;
    margin: 0 5.7333333333vw 0 3.2vw;
  }
}
.entry .entry_btn_container .entry-btn .announce {
  color: #fff;
  font-size: max(12px, 1.1458333333vw);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .entry .entry_btn_container .entry-btn .announce {
    font-family: zen-kaku-gothic-new, sans-serif;
    font-size: max(12px, 3.4666666667vw);
    font-weight: 500;
    line-height: 1;
    margin-top: 0.2666666667vw;
  }
}
.entry .entry_btn_container .entry-btn .icon {
  width: 2.1354166667vw;
  height: 2.1354166667vw;
  margin-left: 2.1354166667vw;
}
@media screen and (max-width: 750px) {
  .entry .entry_btn_container .entry-btn .icon {
    width: 8.9333333333vw;
    height: 8.9333333333vw;
    margin-left: 8.4vw;
  }
}
.entry .entry_btn_container .entry-btn .icon img {
  vertical-align: sub;
  vertical-align: super;
}
.entry .entry_btn_container .entry-btn:hover {
  transform: scale(0.97);
}
.entry .entry_btn_container .kansai {
  background: #335889;
}
.entry .to_top-btn {
  position: absolute;
  bottom: 3.0729166667vw;
  left: 2.5vw;
  color: #fff;
  font-family: widescreen-ex, sans-serif;
  font-size: clamp(8px, 0.729vw, 14px);
  font-weight: 500;
  line-height: 1.2;
  writing-mode: vertical-rl;
  letter-spacing: 0.12em;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: row;
  gap: 1.40625vw;
  transition: 0.3s;
}
@media screen and (max-width: 750px) {
  .entry .to_top-btn {
    display: none;
  }
}
.entry .to_top-btn span {
  width: 0.0520833333vw;
  background: #fff;
  display: block;
  height: 3.8541666667vw;
}
.entry .to_top-btn:hover {
  opacity: 0.7;
}

.hidden {
  overflow: hidden;
}