@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family:
    "Noto Sans JP", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ",
    "Meiryo", sans-serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  background: #00121e;
  color: #fff;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-decoration: none;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1060px;
  padding: 0 30px;
  margin: 0 auto;
}

[data-trigger] {
  position: relative;
  top: 40px;
  transition:
    top 1s,
    opacity 1s;
  opacity: 0;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
}
[data-trigger].visible {
  top: 0;
  opacity: 1;
  filter: blur(0);
  -webkit-filter: blur(0);
  -moz-filter: blur(0);
  -o-filter: blur(0);
  -ms-filter: blur(0);
}

.footer {
  background: #00121e;
  padding-top: 80px;
}
@media only screen and (max-width: 767px) {
  .footer {
    padding-top: 48px;
  }
}
.footer__inner {
  max-width: 1240px;
  padding: 0 30px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .footer__inner {
    padding: 0 24px;
  }
}
.footer__left {
  width: 71.186441%;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .footer__left {
    width: 100%;
    gap: 24px;
    flex-direction: column;
  }
}
.footer__left > div {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .footer__left > div {
    width: 100%;
  }
}
.footer__left > div h3 {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.3125;
  color: #fff;
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .footer__left > div h3 {
    margin-top: 26px;
    font-size: 13px;
  }
}
.footer__left > div > a {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.3125;
  color: #fff;
  position: relative;
  margin-top: 40px;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .footer__left > div > a {
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .footer__left > div > a:hover {
    border-color: #fff;
    color: #ff9801;
    background: #fff;
  }
}
.footer__left > div > a:before {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid #ff9801;
  border-right: 2px solid #ff9801;
  transform: translateY(-50%) rotate(45deg);
}
.footer__left ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.footer__left ul li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  position: relative;
}
.footer__left ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: -12px;
  width: 100%;
  height: 1px;
  background: #b3b8bc;
  opacity: 0.2;
}
.footer__left ul li:first-child:before {
  display: none;
}
.footer__left ul li.border:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 1px;
  background: #b3b8bc;
  opacity: 0.2;
}
.footer__left ul li strong {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.3125;
}
@media only screen and (max-width: 767px) {
  .footer__left ul li strong {
    font-size: 13px;
  }
}
.footer__left ul li span {
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.3125;
  color: #b3b8bc;
}
@media only screen and (max-width: 767px) {
  .footer__left ul li span {
    font-size: 13px;
  }
}
.footer__left ul li a {
  font-size: 75%;
}
@media only screen and (max-width: 767px) {
  .footer__left ul li a {
    font-size: 11px;
  }
}
.footer__left ol {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 18px;
}
@media only screen and (max-width: 767px) {
  .footer__left ol {
    gap: 16px;
    margin-top: 16px;
  }
}
.footer__left ol li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  position: relative;
}
.footer__left ol li strong {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.3125;
}
@media only screen and (max-width: 767px) {
  .footer__left ol li strong {
    font-size: 13px;
  }
}
.footer__left ol li p {
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.3125;
  color: #b3b8bc;
}
@media only screen and (max-width: 767px) {
  .footer__left ol li p {
    font-size: 13px;
  }
}
.footer__right {
  width: 23.728814%;
}
@media only screen and (max-width: 767px) {
  .footer__right {
    width: 100%;
    margin-top: 48px;
  }
}
.footer__right ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .footer__right ul {
    gap: 16px;
  }
}
.footer__right ul li a {
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.61538462;
  color: #b3b8bc;
  padding-right: 20px;
  position: relative;
  display: inline-block;
}
@media only screen and (min-width: 768px) {
  .footer__right ul li a {
    opacity: 1;
    transition: opacity 0.3s;
  }
  .footer__right ul li a:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 767px) {
  .footer__right ul li a {
    font-size: 12px;
  }
}
.footer__right ul li a:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.footer__copyright {
  display: block;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.61538462;
  color: #ffffff;
  text-align: center;
  margin-top: 60px;
  background: #24333d;
  font-family:
    "Cinzel", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  padding: 12px 0;
}
@media only screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 11px;
    margin-top: 48px;
  }
}

.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  padding-top: 27px;
  padding-left: 36px;
}
@media only screen and (max-width: 767px) {
  .header {
    padding-top: 16px;
    padding-left: 24px;
  }
}
.header__logo a {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header__logo a img {
  width: 180px;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .header__logo a img {
    width: 140px;
  }
}
.header__logo a span {
  font-size: 10px;
  font-weight: 400;
  color: #a1b1c1;
  letter-spacing: 0.14rem;
}
@media only screen and (max-width: 767px) {
  .header__logo a span {
    font-size: 8px;
  }
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family:
    "Noto Sans JP", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ",
    "Meiryo", sans-serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  background: #00121e;
  color: #fff;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-decoration: none;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1060px;
  padding: 0 30px;
  margin: 0 auto;
}

[data-trigger] {
  position: relative;
  top: 40px;
  transition:
    top 1s,
    opacity 1s;
  opacity: 0;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
}
[data-trigger].visible {
  top: 0;
  opacity: 1;
  filter: blur(0);
  -webkit-filter: blur(0);
  -moz-filter: blur(0);
  -o-filter: blur(0);
  -ms-filter: blur(0);
}

.main-visual {
  height: 708px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .main-visual {
    height: 100svh;
  }
}
.main-visual__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.main-visual__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.main-visual__catch {
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  top: 100px;
}
@media only screen and (max-width: 767px) {
  .main-visual__catch {
    top: 43%;
    transform: translateX(-50%) translateY(-50%);
    width: 40%;
  }
}
.main-visual__catch img {
  width: 180px;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .main-visual__catch img {
    width: 100%;
  }
}
.main-visual__parts {
  position: absolute;
  z-index: 1;
  left: 80%;
  top: 44%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 20px;
  width: 272px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media only screen and (max-width: 767px) {
  .main-visual__parts {
    width: 182px;
    gap: 8px;
    left: 0;
    top: 24%;
    transform: none;
  }
}
.main-visual__parts img {
  width: 100%;
  height: auto;
}
.main-visual__footer {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .main-visual__footer {
    gap: 16px;
  }
}
.main-visual__footer > a {
  display: flex;
}
.main-visual__footer > a span {
  color: #fff;
  font-size: 10px;
  text-decoration: underline;
  letter-spacing: 0.01em;
}
.main-visual__footer > p {
  color: #a6acb0;
  font-size: 10px;
  padding-bottom: 20px;
  padding-top: 6px;
}
@media only screen and (max-width: 767px) {
  .main-visual__footer > p {
    font-size: 9px;
    line-height: 1.3125;
    text-align: center;
  }
}
.main-visual__buttons {
  display: flex;
  gap: 13px;
  justify-content: center;
  align-items: center;
}
.main-visual__buttons__button a {
  display: block;
  width: 180px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  padding-right: 15px;
  background: #ff9801;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .main-visual__buttons__button a {
    width: 150px;
    height: 38px;
  }
}
.main-visual__buttons__button a span {
  font-size: 14px;
  line-height: 1.28571429;
  font-weight: bold;
  color: #00111e;
  letter-spacing: 0.06em;
  text-align: center;
  display: block;
}
@media only screen and (max-width: 767px) {
  .main-visual__buttons__button a span {
    font-size: 11px;
  }
}
.main-visual__buttons__button a em {
  position: absolute;
  right: 0;
  top: 0;
  width: 15px;
  height: 100%;
  background: #00111e;
}
.main-visual__buttons__button a em:before {
  content: "";
  position: absolute;
  left: 42%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px;
  height: 5px;
  border-top: 2px solid #ff9801;
  border-right: 2px solid #ff9801;
}
.main-visual__buttons__button:nth-child(2) a {
  background: #fff;
}
.main-visual__buttons__button:nth-child(2) a span {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .main-visual__buttons__button:nth-child(2) a span {
    font-size: 12px;
  }
}
.main-visual__buttons__button:nth-child(2) a em:before {
  border-color: #fff;
}

.why {
  padding-top: 54px;
  padding-bottom: 54px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .why {
    padding-bottom: 80px;
  }
}
.why:after {
  content: "";
  height: 161px;
  width: 0.5px;
  background: #a1b1c1;
  position: absolute;
  right: 140px;
  bottom: 54px;
  transform: translateY(100%);
}
@media only screen and (max-width: 767px) {
  .why:after {
    height: 129px;
    right: 53px;
    bottom: 80px;
  }
}
.why__bg {
  position: absolute;
  left: 0;
  top: 77%;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
}
@media only screen and (max-width: 767px) {
  .why__bg {
    top: auto;
    bottom: -100%;
  }
}
.why__whole {
  overflow: hidden;
}
.why__inner {
  max-width: 1260px;
  padding: 0 30px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .why__inner {
    flex-direction: column;
    gap: 24px;
    padding: 0 24px;
  }
}
.why__title {
  width: 43.043478%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  .why__title {
    width: 100%;
    gap: 16px;
  }
}
.why__title small {
  font-family:
    "Cinzel", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.6875;
  color: #ff9801;
}
@media only screen and (max-width: 767px) {
  .why__title small {
    font-size: 12px;
  }
}
.why__title strong {
  font-size: 32px;
  font-family:
    "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  letter-spacing: 0.018em;
  line-height: 1.3125;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .why__title strong {
    font-size: 24px;
  }
}
.why__title span {
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.6875;
  color: #b3b8bc;
}
@media only screen and (max-width: 767px) {
  .why__title span {
    font-size: 12px;
  }
}
.why__contents {
  width: 56.956522%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media only screen and (max-width: 767px) {
  .why__contents {
    width: 100%;
  }
}
.why__contents__item {
  position: relative;
  padding: 40px 52px;
}
@media only screen and (max-width: 767px) {
  .why__contents__item {
    padding: 16px;
  }
}
.why__contents__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 300%;
  height: 100%;
  background: #24333d;
}
.why__contents__item > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
  position: relative;
}
.why__contents__item > div strong {
  display: flex;
  align-items: center;
  line-height: 1.3125;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .why__contents__item > div strong {
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.why__contents__item > div strong em {
  font-family:
    "Cinzel", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: #ff9801;
  position: relative;
  top: 2px;
}
@media only screen and (max-width: 767px) {
  .why__contents__item > div strong em {
    font-size: 18px;
  }
}
.why__contents__item > div strong span {
  font-size: 20px;
  letter-spacing: 0.014em;
}
@media only screen and (max-width: 767px) {
  .why__contents__item > div strong span {
    font-size: 16px;
  }
}
.why__contents__item > div p {
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.57142857;
  color: #b3b8bc;
}
@media only screen and (max-width: 767px) {
  .why__contents__item > div p {
    font-size: 12px;
    margin-top: 6px;
  }
}

.message {
  position: relative;
  z-index: 2;
}
.message__inner {
  max-width: 1160px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .message__inner {
    padding: 0 24px;
  }
}
.message__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.message__title small {
  font-family:
    "Cinzel", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.6875;
  color: #ff9801;
}
@media only screen and (max-width: 767px) {
  .message__title small {
    font-size: 12px;
  }
}
.message__title strong {
  font-size: 32px;
  font-family:
    "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  letter-spacing: 0.018em;
  line-height: 1.3125;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .message__title strong {
    font-size: 24px;
  }
}
.message__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .message__row {
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
  }
}
.message__left {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  .message__left {
    width: 100%;
  }
}
.message__left figure {
  display: flex;
  align-items: flex-start;
  gap: 56px;
}
.message__left figure img {
  width: 207px;
}
.message__left figure figcaption {
  width: 70px;
}
@media only screen and (max-width: 767px) {
  .message__left figure figcaption {
    width: 59px;
  }
}
.message__right {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: calc(70% - 60px);
}
@media only screen and (max-width: 767px) {
  .message__right {
    width: 100%;
  }
}
.message__right p {
  font-size: 14px;
  line-height: 1.57142857;
  letter-spacing: 0.08em;
  color: #b3b8bc;
}
@media only screen and (max-width: 767px) {
  .message__right p {
    font-size: 12px;
  }
}
.message__right div:nth-child(2) {
  display: flex;
  align-items: flex-end;
  width: 100%;
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .message__right div:nth-child(2) {
    margin-top: 32px;
  }
}
.message__right div:nth-child(2) > small {
  display: flex;
  align-items: center;
  gap: 12px;
}
.message__right div:nth-child(2) > small small {
  font-size: 14px;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .message__right div:nth-child(2) > small small {
    font-size: 12px;
  }
}
.message__right div:nth-child(2) > small span {
  font-size: 18px;
  letter-spacing: 0.08em;
  font-family:
    "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
@media only screen and (max-width: 767px) {
  .message__right div:nth-child(2) > small span {
    font-size: 16px;
  }
}

.who {
  position: relative;
  z-index: 2;
  background-image: url(../images/bg_img_pc.webp);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding-top: 72px;
  padding-bottom: 32px;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .who {
    background-image: url(../images/bg_img_sp.webp);
    padding-top: 120px;
  }
}
.who__inner {
  max-width: 1160px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .who__inner {
    padding: 0 24px;
  }
}
.who__inner > small {
  display: block;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.3125;
  color: #b3b8bc;
  margin-top: 32px;
}
@media only screen and (max-width: 767px) {
  .who__inner > small {
    margin-top: 24px;
    font-size: 8px;
    text-align: center;
    white-space: nowrap;
  }
}
.who__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-end;
  align-items: flex-end;
}
.who__title small {
  font-family:
    "Cinzel", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.6875;
  color: #ff9801;
}
@media only screen and (max-width: 767px) {
  .who__title small {
    font-size: 12px;
  }
}
.who__title strong {
  font-size: 32px;
  font-family:
    "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  letter-spacing: 0.018em;
  line-height: 1.3125;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .who__title strong {
    font-size: 24px;
  }
}
.who__contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .who__contents {
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
  }
}
.who__contents__item {
  width: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
@media only screen and (max-width: 767px) {
  .who__contents__item {
    width: 100%;
  }
}
.who__contents__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
@media only screen and (max-width: 767px) {
  .who__contents__header {
    padding: 12px 24px;
  }
}
.who__contents__header strong {
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1.3125;
}
@media only screen and (max-width: 767px) {
  .who__contents__header strong {
    font-size: 16px;
  }
}
.who__contents__header > span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.who__contents__header > span em {
  font-size: 24px;
  letter-spacing: 0.1em;
  color: #ff9801;
  font-family: futura-pt, sans-serif;
  font-weight: 300;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .who__contents__header > span em {
    font-size: 22px;
  }
}
.who__contents__header > span span {
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.3125;
}
@media only screen and (max-width: 767px) {
  .who__contents__header > span span {
    font-size: 10px;
  }
}
.who__contents__body {
  padding: 34px;
}
@media only screen and (max-width: 767px) {
  .who__contents__body {
    padding: 18px 24px;
  }
}
.who__contents__body ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.who__contents__body ul li {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  line-height: 1.57142857;
}
.who__contents__body ul li em {
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.1em;
  position: relative;
  top: 2px;
}
@media only screen and (max-width: 767px) {
  .who__contents__body ul li em {
    font-size: 10px;
  }
}
.who__contents__body ul li span {
  font-size: 14px;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .who__contents__body ul li span {
    font-size: 12px;
  }
}
.who__contents__footer {
  padding: 16px 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.who__contents__footer a {
  display: block;
  text-align: center;
  position: relative;
  width: 100%;
}
.who__contents__footer a span {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.3125;
}
.who__contents__footer a:before {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #ff9801;
  border-right: 2px solid #ff9801;
  transform: translateY(-50%) rotate(45deg);
}

.videos {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}
@media only screen and (max-width: 767px) {
  .videos {
    padding: 16px 0;
  }
}
.videos__inner {
  max-width: 1160px;
  padding: 0 30px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .videos__inner {
    gap: 8px;
    padding: 0 24px;
    flex-direction: column;
  }
}
.videos__item {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .videos__item {
    width: 100%;
  }
}
.videos__item a {
  display: block;
  opacity: 1;
  position: relative;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .videos__item a {
    transition: opacity 0.3s;
  }
  .videos__item a:hover {
    opacity: 0.8;
  }
}
.videos__item a img {
  display: block;
  width: 100%;
}

.videos__item .ico {
  width: 40px;
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translate(-50%,-50%);
}

.big-cv {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 386px;
  background-image: url(../images/cv_bg_pc.webp);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .big-cv {
    background-image: url(../images/cv_bg_sp.webp);
    padding-top: 48px;
    padding-bottom: 210px;
  }
}
.big-cv > small {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  padding-bottom: 20px;
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.3125;
  color: #b3b8bc;
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .big-cv > small {
    padding-bottom: 16px;
    font-size: 8px;
  }
}
.big-cv__inner {
  max-width: 1160px;
  padding: 0 30px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .big-cv__inner {
    gap: 16px;
    padding: 0 24px;
  }
}
.big-cv__title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .big-cv__title {
    gap: 16px;
  }
}
.big-cv__title small {
  font-family:
    "Cinzel", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 16px;
  letter-spacing: 0.3em;
  line-height: 1.6875;
  color: #ff9801;
}
@media only screen and (max-width: 767px) {
  .big-cv__title small {
    font-size: 14px;
  }
}
.big-cv__title strong {
  font-size: 61px;
  font-family:
    "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  letter-spacing: 0.018em;
  line-height: 1.3125;
  font-style: italic;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .big-cv__title strong {
    text-align: center;
    font-size: 28px;
  }
}
.big-cv h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 652px;
}
@media only screen and (max-width: 767px) {
  .big-cv h3 {
    width: 100%;
  }
}
.big-cv h3 img {
  width: 100%;
  height: auto;
}
.big-cv__buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 652px;
}
@media only screen and (max-width: 767px) {
  .big-cv__buttons {
    width: 100%;
  }
}
.big-cv__buttons__button {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .big-cv__buttons__button {
    width: 100%;
  }
}
.big-cv__buttons__button:nth-child(2) a span {
  color: #00111e;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .big-cv__buttons__button:nth-child(2) a span {
    font-size: 12px;
  }
}
.big-cv__buttons__button:nth-child(2) a em:before {
  border-color: #fff;
}
.big-cv__buttons__button a {
  display: block;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 16px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .big-cv__buttons__button a {
    height: 40px;
  }
}
.big-cv__buttons__button a span {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.3125;
  color: #00111e;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: #ff9801;
}
@media only screen and (max-width: 767px) {
  .big-cv__buttons__button a span {
    font-size: 11px;
    text-align: center;
  }
}
.big-cv__buttons__button a em {
  position: absolute;
  right: 0;
  top: 0;
  width: 16px;
  height: 100%;
  background: #00111e;
}
.big-cv__buttons__button a em:before {
  content: "";
  position: absolute;
  left: 42%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px;
  height: 5px;
  border-top: 2px solid #ff9801;
  border-right: 2px solid #ff9801;
}
.big-cv__other-button a {
  display: block;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgb(255, 255, 255);
}
@media only screen and (max-width: 767px) {
  .big-cv__other-button a {
    height: 36px;
    background: rgba(0, 8, 36, 0.5);
    border-width: 1px;
  }
}
@media only screen and (min-width: 768px) {
  .big-cv__other-button a {
    transition: background 0.3s;
  }
  .big-cv__other-button a:hover {
    background: #fff;
  }
  .big-cv__other-button a:hover span {
    color: #00111e;
  }
  .big-cv__other-button a:hover span:before {
    border-color: #00111e;
  }
}
.big-cv__other-button a span {
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1.3125;
  color: #fff;
  display: block;
  padding: 0 16px;
  padding-right: 32px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .big-cv__other-button a span {
    transition: color 0.3s;
  }
}
@media only screen and (max-width: 767px) {
  .big-cv__other-button a span {
    font-size: 12px;
  }
}
.big-cv__other-button a span:before {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media only screen and (min-width: 768px) {
  .big-cv__other-button a span:before {
    transition: border-color 0.3s;
  }
}

.recruit {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 140px;
  background-image: url(../images/bg02_pc.webp);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  margin-top: -2px;
}
@media only screen and (max-width: 767px) {
  .recruit {
    background-image: url(../images/bg02_sp.webp);
    padding-top: 48px;
    padding-bottom: 130px;
  }
}
.recruit__inner {
  max-width: 1160px;
  padding: 0 30px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  .recruit__inner {
    gap: 24px;
    padding: 0 24px;
  }
}
.recruit__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 210px;
}
@media only screen and (max-width: 767px) {
  .recruit__brand {
    width: 140px;
  }
}
.recruit__brand img {
  width: 100%;
  height: auto;
}
.recruit__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .recruit__row {
    flex-direction: column;
    gap: 24px;
  }
}
.recruit__row__left {
  width: 278px;
}
@media only screen and (max-width: 767px) {
  .recruit__row__left {
    width: 100%;
  }
}
.recruit__row__left h2 {
  font-size: 61px;
  font-family:
    "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  letter-spacing: 0.018em;
  line-height: 1.3125;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .recruit__row__left h2 {
    font-size: 28px;
  }
}
.recruit__row__right {
  width: calc(100% - 278px);
  padding-left: 80px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .recruit__row__right {
    width: 100%;
    padding-left: 0;
  }
}
.recruit__row__right p {
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.57142857;
  color: #b3b8bc;
}
@media only screen and (max-width: 767px) {
  .recruit__row__right p {
    font-size: 12px;
    line-height: 2;
  }
}
.recruit__row__right__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  right: 0;
  bottom: -100px;
}
.recruit__row__right__link > span {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.3125;
  color: #ee835c;
  padding-right: 54px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .recruit__row__right__link > span {
    font-size: 12px;
  }
}
.recruit__row__right__link > span:before {
  content: "";
  position: absolute;
  width: 42px;
  height: 2px;
  background: #e50012;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.recruit__row__right__link a {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: #e50012;
  position: relative;
  overflow: hidden;
  display: block;
}
@media only screen and (min-width: 768px) {
  .recruit__row__right__link a:hover span {
    top: 0;
    left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .recruit__row__right__link a {
    width: 76px;
    height: 76px;
  }
}
.recruit__row__right__link a em {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .recruit__row__right__link a em {
    width: 6px;
    height: 6px;
  }
}
.recruit__row__right__link a span {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: #ee835c;
  display: block;
  position: absolute;
  top: 54px;
  left: 58px;
  z-index: 1;
  transition:
    top 0.3s,
    left 0.3s;
}
@media only screen and (max-width: 767px) {
  .recruit__row__right__link a span {
    top: 36px;
    left: 36px;
    width: 76px;
    height: 76px;
  }
}

.loop-slider {
  overflow: hidden;
  width: 100%;
}
.loop-slider ul {
  display: flex;
  align-items: center;
  animation: loop-slider-scroll 40s linear infinite;
  will-change: transform;
}
.loop-slider li {
  flex: 0 0 auto;
}
.loop-slider img {
  width: 462px;
  height: 308px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
@media only screen and (max-width: 767px) {
  .loop-slider img {
    width: 175px;
    height: 117px;
  }
}

@keyframes loop-slider-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.section {
  width: 100px;
  height: auto;
}

.modal {
  opacity: 0;
  visibility: hidden;
  z-index: -9999;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100vw;
  height: 100vh;
}
.modal__overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 18, 30, 0.7);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.modal__box {
  width: 100%;
  max-width: 700px;
  z-index: 999999;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media only screen and (max-width: 767px) {
  .modal__box {
    width: 100%;
    max-width: 350px;
  }
}
.modal__box video {
  width: 100%;
  height: auto;
}
.modal__close {
  width: 40px;
  height: 40px;
  position: absolute;
  right: -12px;
  top: -25px;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
}
.modal__close span {
  display: block;
  width: 25px;
  height: 2px;
  background: #00121e;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
}
.modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal.open {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}
.modal.open .modal__overlay {
  opacity: 1;
  visibility: visible;
}
.modal.open .modal__box {
  opacity: 1;
  visibility: visible;
}
