@charset "UTF-8";
:root {
  --color-black: #222;
  --color-orange: #ff4800;
  --color-blue: #50c5f8;
  --color-green: #7ce926;
  --color-gray: #c3c3c3;
  --color-rgb-orange: 255,72,0;
  --color-rgb-blue: 80,197,248;
  --color-rgb-green: 124,233,38;
  --color-rgb-black: 34,34,34;
  --color-rgb-gray: 217,217,217;
  --color-rgb-white: 255,255,255;
  --color-01:#d9d9d9;
  --color-02:#cfd1d4;
  --color-03:#dbdbdb;
  --color-04:#5f5f5f;
  --color-05:#bbbbbb;
  --color-06:#4d4d4d;
  --color-07:#cccccc;
  --font-jp: "Shippori Mincho";
  --font-en-min: "Cormorant Garamond";
  --font-en-got: "Inter";
  --font-light: 300;
  --font-reg: 400;
  --font-med: 500;
  --font-semi: 600;
  --font-bold: 700;
}

/* ======================================================================
 common style index
・reset
・variable
・mixin
・base
・utility
・component
・layout
====================================================================== */
/*! destyle.css v1.0.15 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model */
/* ============================================ */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::before,
::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

/* 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;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: var(--font-bold);
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border: 0;
  border-top: 1px solid;
  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] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  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: 65%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
  vertical-align: bottom;
}

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 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. Change font properties to `inherit` in Safari.
 */
::-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] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* ======================================================================
 base
====================================================================== */
html {
  font-size: 62.5%;
  scroll-padding-top: 68px;
  scroll-padding-top: 125px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 1206px) {
  html {
    scroll-padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 71px;
  }
}

body {
  color: var(--color-black);
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, sans-serif;
  font-weight: var(--font-light);
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.025em;
  background-color: #fff;
}
body.hidden {
  overflow: hidden;
  height: 100%;
}
body.open {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  body {
    width: 100%;
    /*min-width: $content_width;*/
  }
}
@media screen and (max-width: 767px) {
  html, body {
    overscroll-behavior: none;
  }
}
html, body {
  width: 100%;
  height: 100%;
}

* {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* h1 - h6 */
h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
}

/* a */
a {
  text-decoration: none;
}

a:link {
  color: var(--color-black);
  cursor: pointer;
}

a:visited {
  color: var(--color-black);
}

@media screen and (min-width: 768px) {
  a:hover {
    color: var(--color-black);
  }
}

a:active {
  color: var(--color-black);
}

a[href^=tel] {
  color: var(--color-black);
}

/* Text Highlight */
/* button */
button {
  display: block;
}

textarea {
  resize: vertical;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #222222;
}

/* placeholder */
input:-moz-placeholder-shown, textarea:-moz-placeholder-shown {
  color: #858585;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #858585;
}

input:placeholder-shown, textarea:placeholder-shown {
  color: #858585;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #858585;
}

input:-moz-placeholder, textarea:-moz-placeholder {
  color: #858585;
  opacity: 1;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #858585;
  opacity: 1;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #858585;
}

input:focus:-moz-placeholder-shown, textarea:focus:-moz-placeholder-shown {
  color: #858585;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: #858585;
}

input:focus:placeholder-shown, textarea:focus:placeholder-shown {
  color: #858585;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: #858585;
}

input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
  color: #858585;
  opacity: 1;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: #858585;
  opacity: 1;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: #858585;
}

img {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ======================================================================
 utility
====================================================================== */
/* =================================
 layout
================================= */
.u_cf:after {
  display: block;
  clear: both;
  content: "";
}

@media screen and (min-width: 768px) {
  .u_pc {
    display: block;
  }
  .u_pc_i {
    display: inline;
  }
  .u_pc_ib {
    display: inline-block;
  }
  .u_pc_f {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u_pc_if {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .u_sp {
    display: none;
  }
  .u_sp_i, .u_sp_ib, .u_sp_f, .u_sp_if {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u_pc {
    display: none;
  }
  .u_pc_i, .u_pc_ib, .u_pc_f, .u_pc_if {
    display: none;
  }
  .u_sp {
    display: block;
  }
  .u_sp_i {
    display: inline;
  }
  .u_sp_ib {
    display: inline-block;
  }
  .u_sp_f {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u_sp_if {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
/* =================================
 content_size
================================= */
.u_content_size {
  padding: 0;
  margin: 0 auto;
  width: 1206px;
}
@media screen and (min-width: 1367px) {
  .u_content_size {
    width: 88.29%;
  }
}
@media screen and (max-width: 1206px) {
  .u_content_size {
    width: 100%;
    padding: 0 20px;
  }
}

.u_content_2 {
  padding: 0;
  margin: 0 auto;
  width: 1166px;
}
@media screen and (min-width: 1367px) {
  .u_content_2 {
    width: 85.36%;
  }
}
@media screen and (max-width: 1166px) {
  .u_content_2 {
    width: 100%;
    padding: 0 20px;
  }
}

.u_content_3 {
  padding: 0;
  margin: 0 auto;
  width: 950px;
}
@media screen and (min-width: 1367px) {
  .u_content_3 {
    width: 69.55%;
  }
}
@media screen and (max-width: 950px) {
  .u_content_3 {
    width: 100%;
    padding: 0 20px;
  }
}

.u_content_4 {
  padding: 0;
  margin: 0 auto;
  width: 970px;
}
@media screen and (min-width: 1367px) {
  .u_content_4 {
    width: 71.01%;
  }
}
@media screen and (max-width: 970px) {
  .u_content_4 {
    width: 100%;
    padding: 0 20px;
  }
}

/* =================================
 text
================================= */
.u_txt_1 {
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .u_txt_1 {
    font-size: 11px;
  }
}

.u_txt_2 {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .u_txt_2 {
    font-size: 16px;
  }
}

.u_txt_3 {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .u_txt_3 {
    font-size: 14px;
  }
}

.u_txt_4 {
  font-size: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .u_txt_4 {
    font-size: 18px;
  }
}

.u_txt_5 {
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .u_txt_5 {
    font-size: 13px;
  }
}

.u_txt_6 {
  font-size: 13px;
  line-height: 1.6;
}

.u_txt_7 {
  font-size: 12px;
  line-height: 1.6;
}

.u_txt_8 {
  font-size: 32px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .u_txt_8 {
    font-size: 24px;
  }
}

.u_txt_9 {
  font-size: 14px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .u_txt_9 {
    font-size: 13px;
  }
}

.u_txt_10 {
  font-size: 18px;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .u_txt_10 {
    font-size: 16px;
    line-height: 2;
  }
}

/* =================================
 text weight
================================= */
.u_lighter {
  font-weight: lighter;
}

.u_bold {
  font-weight: bold;
}

/* =================================
 text align
================================= */
.u_ta_c {
  text-align: center;
}

.u_ta_r {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .u_ta_cl {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .u_ta_lc {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .u_ta_cr {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .u_ta_cr {
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .u_ta_rc {
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  .u_ta_rc {
    text-align: center;
  }
}
/* =================================
 hover animation
================================= */
.u_hover_1 {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media screen and (min-width: 1025px) {
  .u_hover_1:hover {
    opacity: 0.7;
  }
}
/* ======================================================================
 component
====================================================================== */
/* =================================
 title
================================= */
.c_ttl_1 {
  font-size: 48px;
  font-family: var(--font-jp);
  line-height: 1.6;
  font-weight: var(--font-reg);
  color: #fff;
}
@media screen and (min-width: 1367px) {
  .c_ttl_1 {
    font-size: 3.514vw;
  }
}
@media screen and (max-width: 767px) {
  .c_ttl_1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 375px) {
  .c_ttl_1 {
    font-size: 8.533vw;
  }
}

.c_ttl_2 {
  margin-bottom: 70px;
}
.c_ttl_2 .sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--font-jp);
  font-weight: var(--font-semi);
  font-size: 18px;
  line-height: 1.6;
}
.c_ttl_2 .sub::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: #000;
  margin-right: 10px;
}
.c_ttl_2 .main {
  display: block;
  font-size: 64px;
  font-family: var(--font-en-min);
  font-weight: var(--font-med);
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-top: 5px;
}
@media screen and (min-width: 1367px) {
  .c_ttl_2 .sub {
    font-size: 1.318vw;
  }
  .c_ttl_2 .sub::before {
    width: 0.59vw;
    height: 0.59vw;
    margin-right: 0.73vw;
  }
  .c_ttl_2 .main {
    font-size: 4.685vw;
    margin-top: 0.37vw;
  }
}
@media screen and (max-width: 1206px) {
  .c_ttl_2 {
    margin-bottom: 5.12vw;
  }
  .c_ttl_2 .sub {
    font-size: 1.318vw;
  }
  .c_ttl_2 .sub::before {
    width: 0.59vw;
    height: 0.59vw;
    margin-right: 0.73vw;
  }
  .c_ttl_2 .main {
    font-size: 4.685vw;
    margin-top: 0.37vw;
  }
}
@media screen and (max-width: 767px) {
  .c_ttl_2 {
    margin-bottom: 50px;
  }
  .c_ttl_2 .sub {
    font-size: 16px;
  }
  .c_ttl_2 .sub::before {
    width: 7px;
    height: 7px;
    margin-right: 6px;
  }
  .c_ttl_2 .main {
    font-size: 41px;
    margin-top: 7px;
  }
}

.c_ttl_3 {
  margin: 0 0 35px;
  line-height: 1.6;
  text-align: center;
  font-weight: var(--font-bold);
  position: relative;
}
.c_ttl_3 .sub {
  font-size: 32px;
}
.c_ttl_3 .main {
  font-size: 40px;
  display: block;
}
@media screen and (max-width: 767px) {
  .c_ttl_3 {
    margin: 0 0 25px;
  }
  .c_ttl_3 .sub {
    font-size: 26px;
  }
  .c_ttl_3 .main {
    font-size: 27px;
    display: block;
  }
}

.c_ttl_4 {
  font-size: 36px;
  font-family: var(--font-jp);
  font-weight: var(--font-med);
  line-height: 1.6;
  margin-bottom: 70px;
}
@media screen and (min-width: 1367px) {
  .c_ttl_4 {
    font-size: 2.635vw;
  }
}
@media screen and (max-width: 1206px) {
  .c_ttl_4 {
    font-size: 2.635vw;
  }
}
@media screen and (max-width: 767px) {
  .c_ttl_4 {
    font-size: 22px;
  }
}

.c_ttl_5 {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media screen and (min-width: 1367px) {
  .c_ttl_5 {
    font-size: 1.76vw;
  }
}
@media screen and (max-width: 767px) {
  .c_ttl_5 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.c_ttl_6 {
  font-size: 32px;
  font-family: var(--font-jp);
  font-weight: var(--font-med);
  line-height: 1.6;
  margin-bottom: 70px;
}
@media screen and (min-width: 1367px) {
  .c_ttl_6 {
    font-size: 2.343vw;
  }
}
.c_ttl_7 .sub {
  display: block;
  font-family: var(--font-jp);
  font-weight: var(--font-semi);
  font-size: 20px;
  line-height: 1.6;
}
.c_ttl_7 .main {
  display: block;
  font-size: 72px;
  font-family: var(--font-en-min);
  font-weight: var(--font-med);
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-top: 10px;
}
@media screen and (min-width: 1367px) {
  .c_ttl_7 .sub {
    font-size: 1.46vw;
  }
  .c_ttl_7 .main {
    font-size: 5.27vw;
    margin-top: 0.73vw;
  }
}
@media screen and (max-width: 1206px) {
  .c_ttl_7 .sub {
    font-size: 1.46vw;
  }
  .c_ttl_7 .main {
    font-size: 5.27vw;
    margin-top: 0.73vw;
  }
}
@media screen and (max-width: 767px) {
  .c_ttl_7 .sub {
    font-size: 18px;
  }
  .c_ttl_7 .main {
    font-size: 52px;
    margin-top: 12px;
  }
}

.c_ttl_8 {
  font-size: 40px;
  font-family: var(--font-jp);
  font-weight: var(--font-reg);
  line-height: 1.2;
}
@media screen and (min-width: 1367px) {
  .c_ttl_8 {
    font-size: 2.93vw;
  }
}
@media screen and (max-width: 1206px) {
  .c_ttl_8 {
    font-size: 2.93vw;
  }
}
@media screen and (max-width: 767px) {
  .c_ttl_8 {
    font-size: 32px;
  }
}

.c_ttl_9 {
  font-size: 16px;
  font-weight: var(--font-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c_ttl_9 {
    font-size: 14px;
  }
}

.c_ttl_10 {
  font-size: 20px;
  font-weight: var(--font-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c_ttl_10 {
    font-size: 18px;
  }
}

.c_ttl_11 {
  font-size: 24px;
  font-family: var(--font-jp);
  font-weight: var(--font-semi);
  line-height: 1.5;
  margin-bottom: 38px;
}
@media screen and (max-width: 767px) {
  .c_ttl_11 {
    font-size: 20px;
    margin-bottom: 28px;
  }
}

.c_ttl_12 {
  font-size: 20px;
  font-family: var(--font-jp);
  font-weight: var(--font-semi);
  line-height: 1.6;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .c_ttl_12 {
    font-size: 18px;
  }
}

.c_ttl_13 {
  font-size: 28px;
  font-family: var(--font-jp);
  font-weight: var(--font-med);
  line-height: 1.6;
}
@media screen and (min-width: 1367px) {
  .c_ttl_13 {
    font-size: 2.05vw;
  }
}
@media screen and (max-width: 767px) {
  .c_ttl_13 {
    font-size: 18px;
  }
}

.ttl .c_ef_ttl,
.head .c_ef_ttl,
.catch .c_ef_ttl {
  overflow: hidden;
}
.ttl .c_ef_ttl .an_box,
.head .c_ef_ttl .an_box,
.catch .c_ef_ttl .an_box {
  opacity: 0;
  display: inline-block;
}
.ttl .c_ef_ttl.show_title .an_box, .ttl .c_ef_ttl.soon_title .an_box,
.head .c_ef_ttl.show_title .an_box,
.head .c_ef_ttl.soon_title .an_box,
.catch .c_ef_ttl.show_title .an_box,
.catch .c_ef_ttl.soon_title .an_box {
  -webkit-animation: slideIn 0.5s forwards;
  animation: slideIn 0.5s forwards;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(2), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(2),
.head .c_ef_ttl.show_title .an_box:nth-of-type(2),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(2),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(2),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(2) {
  animation-delay: 0.03s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(3), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(3),
.head .c_ef_ttl.show_title .an_box:nth-of-type(3),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(3),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(3),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(3) {
  animation-delay: 0.06s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(4), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(4),
.head .c_ef_ttl.show_title .an_box:nth-of-type(4),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(4),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(4),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(4) {
  animation-delay: 0.09s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(5), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(5),
.head .c_ef_ttl.show_title .an_box:nth-of-type(5),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(5),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(5),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(5) {
  animation-delay: 0.12s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(6), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(6),
.head .c_ef_ttl.show_title .an_box:nth-of-type(6),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(6),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(6),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(6) {
  animation-delay: 0.15s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(7), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(7),
.head .c_ef_ttl.show_title .an_box:nth-of-type(7),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(7),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(7),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(7) {
  animation-delay: 0.18s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(8), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(8),
.head .c_ef_ttl.show_title .an_box:nth-of-type(8),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(8),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(8),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(8) {
  animation-delay: 0.21s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(9), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(9),
.head .c_ef_ttl.show_title .an_box:nth-of-type(9),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(9),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(9),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(9) {
  animation-delay: 0.24s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(10), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(10),
.head .c_ef_ttl.show_title .an_box:nth-of-type(10),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(10),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(10),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(10) {
  animation-delay: 0.27s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(11), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(11),
.head .c_ef_ttl.show_title .an_box:nth-of-type(11),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(11),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(11),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(11) {
  animation-delay: 0.3s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(12), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(12),
.head .c_ef_ttl.show_title .an_box:nth-of-type(12),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(12),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(12),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(12) {
  animation-delay: 0.33s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(13), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(13),
.head .c_ef_ttl.show_title .an_box:nth-of-type(13),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(13),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(13),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(13) {
  animation-delay: 0.36s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(14), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(14),
.head .c_ef_ttl.show_title .an_box:nth-of-type(14),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(14),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(14),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(14) {
  animation-delay: 0.39s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(15), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(15),
.head .c_ef_ttl.show_title .an_box:nth-of-type(15),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(15),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(15),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(15) {
  animation-delay: 0.42s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(16), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(16),
.head .c_ef_ttl.show_title .an_box:nth-of-type(16),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(16),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(16),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(16) {
  animation-delay: 0.45s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(17), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(17),
.head .c_ef_ttl.show_title .an_box:nth-of-type(17),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(17),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(17),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(17) {
  animation-delay: 0.48s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(18), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(18),
.head .c_ef_ttl.show_title .an_box:nth-of-type(18),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(18),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(18),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(18) {
  animation-delay: 0.51s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(19), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(19),
.head .c_ef_ttl.show_title .an_box:nth-of-type(19),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(19),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(19),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(19) {
  animation-delay: 0.54s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(20), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(20),
.head .c_ef_ttl.show_title .an_box:nth-of-type(20),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(20),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(20),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(20) {
  animation-delay: 0.57s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(21), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(21),
.head .c_ef_ttl.show_title .an_box:nth-of-type(21),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(21),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(21),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(21) {
  animation-delay: 0.6s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(22), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(22),
.head .c_ef_ttl.show_title .an_box:nth-of-type(22),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(22),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(22),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(22) {
  animation-delay: 0.63s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(23), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(23),
.head .c_ef_ttl.show_title .an_box:nth-of-type(23),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(23),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(23),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(23) {
  animation-delay: 0.66s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(24), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(24),
.head .c_ef_ttl.show_title .an_box:nth-of-type(24),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(24),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(24),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(24) {
  animation-delay: 0.69s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(25), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(25),
.head .c_ef_ttl.show_title .an_box:nth-of-type(25),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(25),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(25),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(25) {
  animation-delay: 0.72s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(26), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(26),
.head .c_ef_ttl.show_title .an_box:nth-of-type(26),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(26),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(26),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(26) {
  animation-delay: 0.75s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(27), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(27),
.head .c_ef_ttl.show_title .an_box:nth-of-type(27),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(27),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(27),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(27) {
  animation-delay: 0.78s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(28), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(28),
.head .c_ef_ttl.show_title .an_box:nth-of-type(28),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(28),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(28),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(28) {
  animation-delay: 0.81s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(29), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(29),
.head .c_ef_ttl.show_title .an_box:nth-of-type(29),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(29),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(29),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(29) {
  animation-delay: 0.84s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(30), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(30),
.head .c_ef_ttl.show_title .an_box:nth-of-type(30),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(30),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(30),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(30) {
  animation-delay: 0.87s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(31), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(31),
.head .c_ef_ttl.show_title .an_box:nth-of-type(31),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(31),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(31),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(31) {
  animation-delay: 0.9s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(32), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(32),
.head .c_ef_ttl.show_title .an_box:nth-of-type(32),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(32),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(32),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(32) {
  animation-delay: 0.93s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(33), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(33),
.head .c_ef_ttl.show_title .an_box:nth-of-type(33),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(33),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(33),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(33) {
  animation-delay: 0.96s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(34), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(34),
.head .c_ef_ttl.show_title .an_box:nth-of-type(34),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(34),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(34),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(34) {
  animation-delay: 0.99s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(35), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(35),
.head .c_ef_ttl.show_title .an_box:nth-of-type(35),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(35),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(35),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(35) {
  animation-delay: 1.02s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(36), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(36),
.head .c_ef_ttl.show_title .an_box:nth-of-type(36),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(36),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(36),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(36) {
  animation-delay: 1.05s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(37), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(37),
.head .c_ef_ttl.show_title .an_box:nth-of-type(37),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(37),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(37),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(37) {
  animation-delay: 1.08s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(38), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(38),
.head .c_ef_ttl.show_title .an_box:nth-of-type(38),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(38),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(38),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(38) {
  animation-delay: 1.11s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(39), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(39),
.head .c_ef_ttl.show_title .an_box:nth-of-type(39),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(39),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(39),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(39) {
  animation-delay: 1.14s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(40), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(40),
.head .c_ef_ttl.show_title .an_box:nth-of-type(40),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(40),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(40),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(40) {
  animation-delay: 1.17s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(41), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(41),
.head .c_ef_ttl.show_title .an_box:nth-of-type(41),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(41),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(41),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(41) {
  animation-delay: 1.2s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(42), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(42),
.head .c_ef_ttl.show_title .an_box:nth-of-type(42),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(42),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(42),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(42) {
  animation-delay: 1.23s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(43), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(43),
.head .c_ef_ttl.show_title .an_box:nth-of-type(43),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(43),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(43),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(43) {
  animation-delay: 1.26s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(44), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(44),
.head .c_ef_ttl.show_title .an_box:nth-of-type(44),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(44),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(44),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(44) {
  animation-delay: 1.29s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(45), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(45),
.head .c_ef_ttl.show_title .an_box:nth-of-type(45),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(45),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(45),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(45) {
  animation-delay: 1.32s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(46), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(46),
.head .c_ef_ttl.show_title .an_box:nth-of-type(46),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(46),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(46),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(46) {
  animation-delay: 1.35s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(47), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(47),
.head .c_ef_ttl.show_title .an_box:nth-of-type(47),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(47),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(47),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(47) {
  animation-delay: 1.38s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(48), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(48),
.head .c_ef_ttl.show_title .an_box:nth-of-type(48),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(48),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(48),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(48) {
  animation-delay: 1.41s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(49), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(49),
.head .c_ef_ttl.show_title .an_box:nth-of-type(49),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(49),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(49),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(49) {
  animation-delay: 1.44s;
}
.ttl .c_ef_ttl.show_title .an_box:nth-of-type(50), .ttl .c_ef_ttl.soon_title .an_box:nth-of-type(50),
.head .c_ef_ttl.show_title .an_box:nth-of-type(50),
.head .c_ef_ttl.soon_title .an_box:nth-of-type(50),
.catch .c_ef_ttl.show_title .an_box:nth-of-type(50),
.catch .c_ef_ttl.soon_title .an_box:nth-of-type(50) {
  animation-delay: 1.47s;
}
@media screen and (min-width: 768px) {
  .ttl .c_ef_ttl::before,
  .head .c_ef_ttl::before,
  .catch .c_ef_ttl::before {
    opacity: 0;
    width: 4px;
    height: 4px;
    transition: width 0.3s, height 0.3s, opacity 0.3s;
  }
  .ttl .c_ef_ttl.show_title::before, .ttl .c_ef_ttl.soon_titl::before,
  .head .c_ef_ttl.show_title::before,
  .head .c_ef_ttl.soon_titl::before,
  .catch .c_ef_ttl.show_title::before,
  .catch .c_ef_ttl.soon_titl::before {
    opacity: 1;
    width: 8px;
    height: 8px;
  }
}
@media screen and (min-width: 1366px) {
  .ttl .c_ef_ttl::before,
  .head .c_ef_ttl::before,
  .catch .c_ef_ttl::before {
    width: 0.29vw;
    height: 0.29vw;
  }
  .ttl .c_ef_ttl.show_title::before, .ttl .c_ef_ttl.soon_titl::before,
  .head .c_ef_ttl.show_title::before,
  .head .c_ef_ttl.soon_titl::before,
  .catch .c_ef_ttl.show_title::before,
  .catch .c_ef_ttl.soon_titl::before {
    width: 0.59vw;
    height: 0.59vw;
  }
}
@media screen and (max-width: 1206px) {
  .ttl .c_ef_ttl::before,
  .head .c_ef_ttl::before,
  .catch .c_ef_ttl::before {
    width: 0.29vw;
    height: 0.29vw;
  }
  .ttl .c_ef_ttl.show_title::before, .ttl .c_ef_ttl.soon_titl::before,
  .head .c_ef_ttl.show_title::before,
  .head .c_ef_ttl.soon_titl::before,
  .catch .c_ef_ttl.show_title::before,
  .catch .c_ef_ttl.soon_titl::before {
    width: 0.59vw;
    height: 0.59vw;
  }
}
@media screen and (max-width: 767px) {
  .ttl .c_ef_ttl::before,
  .head .c_ef_ttl::before,
  .catch .c_ef_ttl::before {
    width: 3px;
    height: 3px;
  }
  .ttl .c_ef_ttl.show_title::before, .ttl .c_ef_ttl.soon_titl::before,
  .head .c_ef_ttl.show_title::before,
  .head .c_ef_ttl.soon_titl::before,
  .catch .c_ef_ttl.show_title::before,
  .catch .c_ef_ttl.soon_titl::before {
    width: 7px;
    height: 7px;
  }
}

.l_main_visual_top.show .c_ef_ttl .an_box {
  -webkit-animation: slideIn 0.5s forwards;
  animation: slideIn 0.5s forwards;
}
.l_main_visual_top.show .c_ef_ttl .an_box:nth-of-type(2) {
  animation-delay: 0.03s;
}
.l_main_visual_top.show .c_ef_ttl .an_box:nth-of-type(3) {
  animation-delay: 0.06s;
}
.l_main_visual_top.show .c_ef_ttl .an_box:nth-of-type(4) {
  animation-delay: 0.09s;
}
.l_main_visual_top.show .c_ef_ttl .an_box:nth-of-type(5) {
  animation-delay: 0.12s;
}
.l_main_visual_top.show .c_ef_ttl .an_box:nth-of-type(6) {
  animation-delay: 0.15s;
}
.l_main_visual_top.show .c_ef_ttl .an_box:nth-of-type(7) {
  animation-delay: 0.18s;
}
.l_main_visual_top.show .c_ef_ttl .an_box:nth-of-type(8) {
  animation-delay: 0.21s;
}
.l_main_visual_top.show .c_ef_ttl .an_box:nth-of-type(9) {
  animation-delay: 0.24s;
}
.l_main_visual_top.show .c_ef_ttl .an_box:nth-of-type(10) {
  animation-delay: 0.27s;
}
.l_main_visual_top.show .c_ef_ttl .an_box:nth-of-type(11) {
  animation-delay: 0.3s;
}
.l_main_visual_top.show .c_ef_ttl .an_box:nth-of-type(12) {
  animation-delay: 0.33s;
}
.l_main_visual_top.show .c_ef_ttl .an_box:nth-of-type(13) {
  animation-delay: 0.36s;
}
.l_main_visual_top.show .c_ef_ttl .an_box:nth-of-type(14) {
  animation-delay: 0.39s;
}
.l_main_visual_top.show .c_ef_ttl .an_box:nth-of-type(15) {
  animation-delay: 0.42s;
}
.l_main_visual_top.show .c_ef_ttl .an_box:nth-of-type(16) {
  animation-delay: 0.45s;
}
.l_main_visual_top.show .c_ef_ttl .an_box:nth-of-type(17) {
  animation-delay: 0.48s;
}
.l_main_visual_top.show .c_ef_ttl .an_box:nth-of-type(18) {
  animation-delay: 0.51s;
}
.l_main_visual_top.show .c_ef_ttl .an_box:nth-of-type(19) {
  animation-delay: 0.54s;
}
.l_main_visual_top.show .c_ef_ttl .an_box:nth-of-type(20) {
  animation-delay: 0.57s;
}
.l_main_visual_top.show .c_ef_ttl .an_box:nth-of-type(21) {
  animation-delay: 0.6s;
}
.l_main_visual_top.show .c_ef_ttl .an_box:nth-of-type(22) {
  animation-delay: 0.63s;
}
.l_main_visual_top.show .c_ef_ttl .an_box:nth-of-type(23) {
  animation-delay: 0.66s;
}
.l_main_visual_top.show .c_ef_ttl .an_box:nth-of-type(24) {
  animation-delay: 0.69s;
}

/* =================================
 fade
================================= */
.c_fadeinUp {
  opacity: 0;
  transform: translate(0, 10px);
}

.c_fadeinUp.active {
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate(0, 0);
  opacity: 1;
}

.c_fadeinUp.slowly.active {
  transition: all 3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate(0, 0);
  opacity: 1;
}

/* =================================
 buttons
================================= */
.c_btn_1,
.c_btn_1:link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 38px;
  width: 154px;
  border-radius: 9999px;
  background-color: #000;
  font-size: 15px;
  font-family: var(--font-en-got);
  font-weight: var(--font-med);
  line-height: 1;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c_btn_1:after, .c_btn_1:link:after,
.c_btn_1:link:after,
.c_btn_1:link:link:after {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 10px;
  margin: 0 0 0 6px;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  background: url(../img/common/icon_arrow02_white.svg);
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 300ms 0s ease;
}
.c_btn_1:before, .c_btn_1:link:before,
.c_btn_1:link:before,
.c_btn_1:link:link:before {
  content: "";
  height: 38px;
  width: 154px;
  border-radius: 9999px;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scale(0);
  transition: all 300ms 0s ease;
}
.c_btn_1::after,
.c_btn_1:link::after {
  background-image: url("../img/common/icon_arrow02_white.svg");
}
.c_btn_1:visited, .c_btn_1:active, .c_btn_1:link:visited, .c_btn_1:link:active,
.c_btn_1:link:visited,
.c_btn_1:link:active,
.c_btn_1:link:link:visited,
.c_btn_1:link:link:active {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c_btn_1:hover, .c_btn_1:link:hover,
  .c_btn_1:link:hover,
  .c_btn_1:link:link:hover {
    background-color: #fff;
    color: #000;
  }
  .c_btn_1:hover::before, .c_btn_1:hover:link::before, .c_btn_1:link:hover::before, .c_btn_1:link:hover:link::before,
  .c_btn_1:link:hover::before,
  .c_btn_1:link:hover:link::before,
  .c_btn_1:link:link:hover::before,
  .c_btn_1:link:link:hover:link::before {
    transform: scale(1);
    border: 1px solid var(--color-black);
  }
  .c_btn_1:hover::after, .c_btn_1:hover:link::after, .c_btn_1:link:hover::after, .c_btn_1:link:hover:link::after,
  .c_btn_1:link:hover::after,
  .c_btn_1:link:hover:link::after,
  .c_btn_1:link:link:hover::after,
  .c_btn_1:link:link:hover:link::after {
    background-image: url("../img/common/icon_arrow02.svg");
    right: 5px;
  }
}
@media screen and (max-width: 767px) {
  .c_btn_1,
  .c_btn_1:link {
    height: 50px;
    width: 320px;
  }
  .c_btn_1:before, .c_btn_1:link:before,
  .c_btn_1:link:before,
  .c_btn_1:link:link:before {
    margin: 0 5px 0 0;
  }
  .c_btn_1:after, .c_btn_1:link:after,
  .c_btn_1:link:after,
  .c_btn_1:link:link:after {
    width: 8px;
    height: 11px;
    margin-left: 10px;
  }
}

.c_btn_2,
.c_btn_2:link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 38px;
  width: 122px;
  border-radius: 9999px;
  background-color: #000;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c_btn_2 .btn_txt,
.c_btn_2:link .btn_txt {
  margin-left: -7px;
  position: relative;
}
.c_btn_2:after, .c_btn_2:link:after,
.c_btn_2:link:after,
.c_btn_2:link:link:after {
  content: "";
  position: absolute;
  display: block;
  width: 9px;
  height: 9px;
  margin: 0 0 0 10px;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  background: url(../img/common/icon_outlink_white.svg);
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 300ms 0s ease;
}
.c_btn_2:before, .c_btn_2:link:before,
.c_btn_2:link:before,
.c_btn_2:link:link:before {
  content: "";
  height: 38px;
  width: 122px;
  border-radius: 9999px;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scale(0);
  transition: all 300ms 0s ease;
}
.c_btn_2:visited, .c_btn_2:active, .c_btn_2:link:visited, .c_btn_2:link:active,
.c_btn_2:link:visited,
.c_btn_2:link:active,
.c_btn_2:link:link:visited,
.c_btn_2:link:link:active {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c_btn_2:hover, .c_btn_2:link:hover,
  .c_btn_2:link:hover,
  .c_btn_2:link:link:hover {
    background-color: #fff;
    color: #000;
  }
  .c_btn_2:hover .btn_txt, .c_btn_2:link:hover .btn_txt,
  .c_btn_2:link:hover .btn_txt,
  .c_btn_2:link:link:hover .btn_txt {
    color: #000;
  }
  .c_btn_2:hover::before, .c_btn_2:hover:link::before, .c_btn_2:link:hover::before, .c_btn_2:link:hover:link::before,
  .c_btn_2:link:hover::before,
  .c_btn_2:link:hover:link::before,
  .c_btn_2:link:link:hover::before,
  .c_btn_2:link:link:hover:link::before {
    transform: scale(1);
    border: 1px solid #000;
  }
  .c_btn_2:hover::after, .c_btn_2:hover:link::after, .c_btn_2:link:hover::after, .c_btn_2:link:hover:link::after,
  .c_btn_2:link:hover::after,
  .c_btn_2:link:hover:link::after,
  .c_btn_2:link:link:hover::after,
  .c_btn_2:link:link:hover:link::after {
    background-image: url("../img/common/icon_outlink.svg");
  }
}
@media screen and (max-width: 767px) {
  .c_btn_2,
  .c_btn_2:link {
    height: 38px;
    width: 122px;
  }
  .c_btn_2:after, .c_btn_2:link:after,
  .c_btn_2:link:after,
  .c_btn_2:link:link:after {
    width: 9px;
    height: 9px;
  }
}

/* =================================
 link
================================= */
.c_link_1,
.c_link_1:link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between; /*height: 38px;*/
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c_link_1 .arr,
.c_link_1:link .arr {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 100px;
  background-color: var(--color-black);
  position: relative;
  overflow: hidden;
}
.c_link_1 .arr:after, .c_link_1 .arr:link:after,
.c_link_1:link .arr:after,
.c_link_1:link .arr:link:after {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  background-image: url(../img/common/icon_arrow02_white.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.c_link_1 .arr::before,
.c_link_1:link .arr::before {
  content: "";
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 200px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: scale(0);
  transition: all 300ms 0s ease;
}
@media screen and (min-width: 768px) {
  .c_link_1:hover .arr,
  .c_link_1:link:hover .arr {
    background-color: #fff;
    transition: all 300ms 0.2s ease;
  }
  .c_link_1:hover .arr:after, .c_link_1:hover .arr:link:after,
  .c_link_1:link:hover .arr:after,
  .c_link_1:link:hover .arr:link:after {
    animation: 600ms ease-out 0s 1 normal forwards running outArrow;
  }
  .c_link_1:hover .arr::before,
  .c_link_1:link:hover .arr::before {
    transform: scale(1);
    border: 1px solid var(--color-black);
  }
}

.c_link_2 {
  position: relative;
  display: inline-block;
}
.c_link_2::before {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-black);
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .c_link_2:hover::before {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

.c_link_3 {
  position: relative;
  display: inline-block;
}
.c_link_3::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-black);
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) {
  .c_link_3:hover::after {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

.c_link_4,
.c_link_4:link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between; /*height: 38px;*/
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c_link_4 .arr,
.c_link_4:link .arr {
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 100px;
  background-color: var(--color-black);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.c_link_4 .arr:after, .c_link_4 .arr:link:after,
.c_link_4:link .arr:after,
.c_link_4:link .arr:link:after {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) rotate(90deg);
  background-image: url(../img/common/icon_arrow02_white.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.c_link_4 .arr::before,
.c_link_4:link .arr::before {
  content: "";
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 200px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: scale(0);
  transition: all 300ms 0s ease;
}
@media screen and (min-width: 768px) {
  .c_link_4:hover .arr,
  .c_link_4:link:hover .arr {
    background-color: #fff;
    transition: all 300ms 0.2s ease;
  }
  .c_link_4:hover .arr:after, .c_link_4:hover .arr:link:after,
  .c_link_4:link:hover .arr:after,
  .c_link_4:link:hover .arr:link:after {
    animation: 600ms ease-out 0s 1 normal forwards running outArrowVertica;
  }
  .c_link_4:hover .arr::before,
  .c_link_4:link:hover .arr::before {
    transform: scale(1);
    border: 1px solid var(--color-black);
  }
}
@media screen and (max-width: 767px) {
  .c_link_4 .arr,
  .c_link_4:link .arr {
    width: 19px;
    height: 19px;
    border-radius: 9999px;
  }
  .c_link_4 .arr:after, .c_link_4 .arr:link:after,
  .c_link_4:link .arr:after,
  .c_link_4:link .arr:link:after {
    width: 6px;
    height: 8px;
  }
}

.c_link_5,
.c_link_5:link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between; /*height: 38px;*/
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.c_link_5 .arr,
.c_link_5:link .arr {
  position: relative;
  display: block;
  border-radius: 100px;
  background-color: #000;
  position: relative;
  overflow: hidden;
}
.c_link_5 .arr::after,
.c_link_5:link .arr::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/common/icon_plus_white.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.c_link_5 .arr::before,
.c_link_5:link .arr::before {
  content: "";
  background-color: #fff;
  border-radius: 200px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: scale(0);
  transition: all 300ms 0s ease;
}
.c_link_5.selected .arr::after, .c_link_5.open .arr::after,
.c_link_5:link.selected .arr::after,
.c_link_5:link.open .arr::after {
  background-image: url("../img/common/icon_minus_white.svg");
}
@media screen and (min-width: 1367px) {
  .c_link_5 .arr::before,
  .c_link_5:link .arr::before {
    border-radius: 9999px;
  }
}
@media screen and (min-width: 768px) {
  .c_link_5:hover .arr,
  .c_link_5:link:hover .arr {
    background-color: #fff;
    transition: all 300ms 0.2s ease;
  }
  .c_link_5:hover .arr::after,
  .c_link_5:link:hover .arr::after {
    background-image: url("../img/common/icon_plus.svg");
  }
  .c_link_5:hover .arr::before,
  .c_link_5:link:hover .arr::before {
    transform: scale(1);
    border: 1px solid var(--color-black);
  }
  .c_link_5:hover.selected .arr::after, .c_link_5:hover.open .arr::after,
  .c_link_5:link:hover.selected .arr::after,
  .c_link_5:link:hover.open .arr::after {
    background-image: url("../img/common/icon_minus.svg");
  }
}
@media screen and (max-width: 767px) {
  .c_link_5 .arr,
  .c_link_5:link .arr {
    border-radius: 9999px;
  }
}

/* =================================
 icon
================================= */
/* =================================
 table
================================= */
.c_table_1 {
  width: 100%;
  border-collapse: inherit;
}
.c_table_1 th,
.c_table_1 td {
  vertical-align: middle;
  font-size: 14px;
  line-height: 1.7;
}
.c_table_1 th {
  text-align: center;
  padding: 10px;
  background-color: var(--color-black);
  color: #fff;
  font-weight: var(--font-bold);
  border-right: 1px solid var(--color-07);
  white-space: nowrap;
}
.c_table_1 th:nth-child(1) {
  width: 104px;
  width: 11%;
  border-radius: 10px 0 0 0;
}
.c_table_1 th:nth-child(2) {
  width: 110px;
  width: 11.5%;
}
.c_table_1 th:nth-child(3) {
  width: 123px;
  width: 12.6%;
}
.c_table_1 th:nth-child(4) {
  width: 164px;
  width: 16.9%;
}
.c_table_1 th:nth-child(5) {
  width: 233px;
  width: 24%;
}
.c_table_1 th:nth-child(6) {
  width: 236px;
  width: 24%;
}
.c_table_1 th:last-of-type {
  border-radius: 0 10px 0 0;
  border-right: none;
}
.c_table_1 td {
  padding: 20px 10px;
  border-right: 1px solid var(--color-07);
  border-bottom: 1px solid var(--color-07);
  background-color: rgba(var(--color-rgb-white), 0.9);
}
.c_table_1 td .tbl_box + .tbl_box {
  margin-top: 20px;
}
.c_table_1 td .highlight {
  font-weight: var(--font-bold);
}
.c_table_1 td .highlight + .highlight {
  margin-top: 7px;
  margin-bottom: 7px;
}
.c_table_1 td:nth-child(1) {
  border-radius: 0 0 0 10px;
  border-left: 1px solid var(--color-07);
}
.c_table_1 td:last-of-type {
  border-radius: 0 0 10px 0;
}

@media screen and (max-width: 767px) {
  .c_scroll_table {
    overflow: auto;
    margin-bottom: 20px;
  }
  .c_scroll_table .c_table_1 {
    width: 970px;
  }
  .c_scroll_table .c_table_1 th:nth-child(1) {
    width: 104px;
  }
  .c_scroll_table .c_table_1 th:nth-child(2) {
    width: 110px;
  }
  .c_scroll_table .c_table_1 th:nth-child(3) {
    width: 123px;
  }
  .c_scroll_table .c_table_1 th:nth-child(4) {
    width: 164px;
  }
  .c_scroll_table .c_table_1 th:nth-child(5) {
    width: 233px;
  }
  .c_scroll_table .c_table_1 th:nth-child(6) {
    width: 236px;
  }
}

/* =================================
 list
================================= */
.c_list_1 .c_list_1_item {
  display: flex;
  font-size: 16px;
  line-height: 2;
}
.c_list_1 .c_list_1_item + .c_list_1_item {
  margin-top: 3px;
}
.c_list_1 .c_list_1_item .subhead {
  font-size: 20px;
  font-weight: var(--font-bold);
}
.c_list_1 .c_list_1_item .subhead .highlight {
  font-size: 24px;
  background-image: linear-gradient(transparent 87%, var(--color-06) 13%);
}
.c_list_1 .c_list_1_item .c_list_1_txt {
  font-weight: var(--font-regular);
}
.c_list_1 .c_list_1_item::before {
  display: block;
  background-image: url("../img/p_top/icon_check.svg");
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 8px;
  margin-top: 9px;
  flex-shrink: 0;
}
.c_list_1.c_list_1--pt1 .c_list_1_item::before {
  width: 19px;
  height: 17px;
  margin-right: 10px;
  margin-top: 18px;
}
.c_list_1.c_list_1--pt1 .c_list_1_item + .c_list_1_item {
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .c_list_1 .c_list_1_item .subhead {
    font-size: 18px;
  }
  .c_list_1 .c_list_1_item .subhead .highlight {
    font-size: 20px;
  }
}

/* =================================
 item
================================= */
/* =================================
 link
================================= */
.c_out_link_1 {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.c_out_link_1::after {
  content: "";
  margin-left: 5px;
  width: 9px;
  height: 9px;
  background-image: url("../img/common/icon_outlink.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.c_out_link_2 {
  position: relative;
  display: inline-block;
  align-items: center;
  text-decoration: underline;
}
.c_out_link_2::after {
  position: absolute;
  content: "";
  margin-left: 5px;
  width: 9px;
  height: 9px;
  background-image: url("../img/common/icon_outlink.svg");
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 7px;
  right: 0;
}
@media screen and (min-width: 768px) {
  .c_out_link_2:hover {
    text-decoration: none;
  }
}

/* =================================
 section
================================= */
.c_scroll_sec {
  width: 100%;
}
.c_scroll_sec .scroll-infinity__wrap {
  position: relative;
  z-index: 1;
  margin-top: 45px;
}
.c_scroll_sec .scroll-infinity__wrap .slide_list {
  display: flex;
  animation: infinity-scroll-left 35s infinite linear both;
  width: 200%;
  white-space: nowrap;
}
.c_scroll_sec .scroll-infinity__wrap .slide_list .slide_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 150px;
  font-size: 10.981vw;
  line-height: 1.2;
  font-family: var(--font-en-min);
  font-weight: var(--font-reg);
  color: var(--color-02);
  width: 100%;
}
.c_scroll_sec .scroll-infinity__wrap .slide_list .slide_item .img {
  margin: 0 35px;
  width: 180px;
  margin: 0 2.56vw;
  width: 12.18vw;
}
@media screen and (min-width: 1367px) {
  .c_scroll_sec .scroll-infinity__wrap {
    margin-top: 5.42vw;
  }
  .c_scroll_sec .scroll-infinity__wrap .slide_list .slide_item {
    font-size: 10.981vw;
  }
  .c_scroll_sec .scroll-infinity__wrap .slide_list .slide_item .img {
    margin: 0 2.56vw;
    width: 12.18vw;
  }
}
@media screen and (max-width: 1206px) {
  .c_scroll_sec .scroll-infinity__wrap {
    margin-top: 5.42vw;
  }
  .c_scroll_sec .scroll-infinity__wrap .slide_list .slide_item {
    font-size: 10.981vw;
  }
  .c_scroll_sec .scroll-infinity__wrap .slide_list .slide_item .img {
    margin: 0 2.56vw;
    width: 11.18vw;
  }
}
@media screen and (max-width: 767px) {
  .c_scroll_sec {
    overflow-x: hidden;
  }
  .c_scroll_sec .scroll-infinity__wrap {
    margin-top: 45px;
  }
  .c_scroll_sec .scroll-infinity__wrap .slide_list {
    width: 2200px;
    animation: infinity-scroll-left 31s infinite linear both;
  }
  .c_scroll_sec .scroll-infinity__wrap .slide_list .slide_item {
    font-size: 120px;
  }
  .c_scroll_sec .scroll-infinity__wrap .slide_list .slide_item .img {
    margin: 0 24px;
    width: 144px;
  }
}

.c_interview_sec {
  width: 100%;
  position: relative;
  z-index: 1;
}
.c_interview_sec .ttl {
  margin-bottom: 0;
}
.c_interview_sec .slide_list_wrap {
  margin-top: -70px;
}
.c_interview_sec .slide_list_wrap .swiper-control-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  right: 0;
}
.c_interview_sec .slide_list_wrap .swiper-controller {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-left: 25px;
}
.c_interview_sec .slide_list_wrap .swiper-controller .swiper-button-prev,
.c_interview_sec .slide_list_wrap .swiper-controller .swiper-button-next {
  width: 54px;
  height: 54px;
  cursor: pointer;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
  left: auto;
  right: auto;
  top: auto;
  border-radius: 9999px;
  background-color: #fff;
}
.c_interview_sec .slide_list_wrap .swiper-controller .swiper-button-prev::before,
.c_interview_sec .slide_list_wrap .swiper-controller .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  border: 1px solid var(--color-black);
}
.c_interview_sec .slide_list_wrap .swiper-controller .swiper-button-prev::after,
.c_interview_sec .slide_list_wrap .swiper-controller .swiper-button-next::after {
  content: "";
  width: 13px;
  height: 17px;
  border: none;
  background-image: url("../img/common/icon_arrow01.svg");
  background-size: 13px auto;
}
.c_interview_sec .slide_list_wrap .swiper-controller .swiper-button-next {
  margin-left: 22px;
}
.c_interview_sec .slide_list_wrap .swiper-controller .swiper-button-next::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.c_interview_sec .slide_list_wrap .swiper-pagination {
  position: relative;
  bottom: auto;
  top: auto;
  left: auto;
  width: auto;
}
.c_interview_sec .slide_list_wrap .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--color-03);
  opacity: 1;
}
.c_interview_sec .slide_list_wrap .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color-black);
}
.c_interview_sec .slide_list_wrap .slide_list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 130px;
}
.c_interview_sec .slide_list_wrap .slide_list .slide_item .img_area {
  position: relative;
}
.c_interview_sec .slide_list_wrap .slide_list .slide_item .img_area::before {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 60px;
  background-image: url("../img/common/line_circle.svg");
  width: 279px;
  height: 341px;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.3s;
}
.c_interview_sec .slide_list_wrap .slide_list .slide_item .img_area .img {
  width: 328px;
  height: auto;
}
.c_interview_sec .slide_list_wrap .slide_list .slide_item .img_area .person_arr {
  width: 55px;
  height: 55px;
  border-radius: 9999px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 213px;
  overflow: hidden;
}
.c_interview_sec .slide_list_wrap .slide_list .slide_item .img_area .person_arr::before {
  content: "";
  width: 55px;
  height: 55px;
  background-color: #fff;
  border-radius: 200px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: scale(0);
  transition: all 300ms 0s ease;
}
.c_interview_sec .slide_list_wrap .slide_list .slide_item .img_area .person_arr::after {
  content: "";
  position: absolute;
  display: block;
  width: 13px;
  height: 17px;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  background-size: cover;
  background-image: url("../img/common/icon_arrow02_white.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area {
  margin-top: 40px;
}
.c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .subttl {
  font-family: var(--font-jp);
  font-weight: var(--font-med);
}
.c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .person_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 25px;
}
.c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .person_box .region_icon {
  width: 40px;
  height: 38px;
  position: relative;
}
.c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .person_box .region_icon .circle {
  position: absolute;
  display: block;
  background-color: rgba(var(--color-rgb-gray), 0.7);
  width: 22px;
  height: 22px;
  border-radius: 9999px;
}
.c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .person_box .region_icon .circle:nth-of-type(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .person_box .region_icon .circle:nth-of-type(2) {
  bottom: 0;
  left: 0;
}
.c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .person_box .region_icon .circle:nth-of-type(3) {
  bottom: 0;
  right: 0;
}
.c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .person_box .region_icon .circle:nth-of-type(3) {
  bottom: 0;
  right: 0;
}
.c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .person_box .region_icon .circle.transport {
  background-color: rgba(var(--color-rgb-blue), 0.7);
  z-index: 1;
}
.c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .person_box .region_icon .circle.accounting {
  background-color: rgba(var(--color-rgb-orange), 0.7);
  z-index: 1;
}
.c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .person_box .region_icon .circle.tax {
  background-color: rgba(var(--color-rgb-green), 0.7);
  z-index: 1;
}
.c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .person_box .degree {
  margin-left: 15px;
}
.c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .person_box .degree .region {
  font-feature-settings: "palt";
}
.c_interview_sec .slide_list_wrap .slide_list .slide_item.transport_slide .slide_link .img_area::before {
  background-image: url("../img/common/line_transport_circle.svg");
  background-repeat: no-repeat;
}
.c_interview_sec .slide_list_wrap .slide_list .slide_item.accounting_slide .slide_link .img_area::before {
  background-image: url("../img/common/line_accounting_circle.svg");
}
.c_interview_sec .slide_list_wrap .slide_list .slide_item.tax_slide .slide_link .img_area::before {
  background-image: url("../img/common/line_tax_circle.svg");
}
@media screen and (min-width: 1367px) {
  .c_interview_sec .slide_list_wrap {
    margin-top: -5.12vw;
  }
  .c_interview_sec .slide_list_wrap .slide_list {
    padding-top: 9.52vw;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .img_area::before {
    bottom: -1.1vw;
    left: 4.6vw;
    width: 20.42vw;
    height: 24.96vw;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .img_area .img {
    width: 24.01vw;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .img_area .person_arr {
    width: 4.03vw;
    height: 4.03vw;
    left: 15.74vw;
    background-size: 0.95vw auto;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .img_area .person_arr::before {
    width: 4.03vw;
    height: 4.03vw;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area {
    margin-top: 2.93vw;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .person_box {
    margin-top: 1.83vw;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .person_box .region_icon {
    width: 2.93vw;
    height: 2.78vw;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .person_box .region_icon .circle {
    width: 1.61vw;
    height: 1.61vw;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .person_box .degree {
    margin-left: 1.1vw;
  }
}
@media screen and (max-width: 1206px) {
  .c_interview_sec .slide_list_wrap {
    margin-top: -5.12vw;
  }
  .c_interview_sec .slide_list_wrap .slide_list {
    padding-top: 9.52vw;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item {
    flex-direction: column;
    display: flex;
    align-items: center;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .img_area::before {
    bottom: -1.1vw;
    left: 4.6vw;
    width: 20.42vw;
    height: 24.96vw;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .img_area .img {
    width: 24.01vw;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .img_area .person_arr {
    width: 4.03vw;
    height: 4.03vw;
    left: 15.74vw;
    background-size: 0.95vw auto;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .img_area .person_arr::before {
    width: 4.03vw;
    height: 4.03vw;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area {
    margin-top: 2.93vw;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .person_box {
    margin-top: 1.83vw;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .person_box .region_icon {
    width: 2.93vw;
    height: 2.78vw;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .person_box .region_icon .circle {
    width: 1.61vw;
    height: 1.61vw;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .person_box .degree {
    margin-left: 1.1vw;
  }
}
@media screen and (min-width: 768px) {
  .c_interview_sec .slide_list_wrap .swiper-controller .swiper-button-prev,
  .c_interview_sec .slide_list_wrap .swiper-controller .swiper-button-next {
    overflow: hidden;
  }
  .c_interview_sec .slide_list_wrap .swiper-controller .swiper-button-prev:hover,
  .c_interview_sec .slide_list_wrap .swiper-controller .swiper-button-next:hover {
    background-color: var(--color-black);
    transition: all 300ms 0.2s ease;
  }
  .c_interview_sec .slide_list_wrap .swiper-controller .swiper-button-prev:hover::after {
    animation: 600ms ease-out 0s 1 normal forwards running outArrow02Reverse;
  }
  .c_interview_sec .slide_list_wrap .swiper-controller .swiper-button-next:hover::after {
    animation: 600ms ease-out 0s 1 normal forwards running outArrow02;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .slide_link:hover .img_area::before {
    opacity: 1;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .slide_link:hover .img_area .person_arr {
    background-color: #fff;
    transition: all 300ms 0.2s ease;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .slide_link:hover .img_area .person_arr:after, .c_interview_sec .slide_list_wrap .slide_list .slide_item .slide_link:hover .img_area .person_arr:link:after {
    animation: 600ms ease-out 0s 1 normal forwards running outArrow;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .slide_link:hover .img_area .person_arr::before {
    transform: scale(1);
    border: 1px solid var(--color-black);
  }
}
@media screen and (max-width: 767px) {
  .c_interview_sec .ttl .main {
    font-size: 39px;
    letter-spacing: 0.03em;
  }
  .c_interview_sec .slide_list_wrap {
    margin-right: -20px;
    margin-top: 0;
  }
  .c_interview_sec .slide_list_wrap .swiper {
    display: flex;
    flex-direction: column;
  }
  .c_interview_sec .slide_list_wrap .swiper-control-wrap {
    order: 2;
    margin-top: 17.33vw;
    justify-content: center;
    position: relative;
    top: auto;
    right: auto;
  }
  .c_interview_sec .slide_list_wrap .slide_list {
    padding-top: 50px;
    align-items: flex-start;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item {
    padding-right: 8.53vw;
    min-height: 129.87vw;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .img_area {
    position: relative;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .img_area::after {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 107.58%;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .img_area .img {
    width: 100%;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .img_area .person_arr {
    width: 45px;
    height: 45px;
    left: 45.33vw;
    background-size: 11px auto;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area {
    margin-top: 30px;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .person_box {
    margin-top: 20px;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .person_box .region_icon {
    width: 40px;
    height: 38px;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .person_box .region_icon .circle {
    width: 22px;
    height: 22px;
  }
  .c_interview_sec .slide_list_wrap .slide_list .slide_item .txt_area .person_box .degree {
    margin-left: 10px;
  }
}

.c_interview_sec .slide_list_wrap .slide_list:has(> li:nth-of-type(3)) {
  justify-content: flex-start; /* アイテムが3つ以上の場合 */
}

.c_interview_sec .slide_list_wrap .slide_list:has(> li:nth-last-child(-n+2)):not(:has(> li:nth-of-type(3))) {
  justify-content: center; /* アイテムが2つ以下の場合に中央揃え */
}
@media screen and (max-width: 767px) {
  .c_interview_sec .slide_list_wrap .slide_list:has(> li:nth-last-child(-n+2)):not(:has(> li:nth-of-type(3))) {
    justify-content: flex-start;
  }
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l_container
================================= */
.l_container {
  position: relative;
  overflow-x: hidden;
}

/* =================================
 logo_head
================================= */
.logo_head {
  position: fixed;
  top: 0;
  left: 0;
  padding-left: 44px;
  z-index: 12;
  z-index: 12;
  transition: opacity 2s, padding 0.3s;
  width: 100%;
}
.logo_head .logo .link {
  padding: 42px 0;
  display: flex;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s, padding 0.3s;
}
.logo_head .logo .link .img {
  width: 159px;
}
.logo_head .logo .link .certification {
  margin-left: 20px;
}
.logo_head .logo.hidden .link {
  opacity: 0;
}
.logo_head.scroll {
  background-color: #fff;
}
.logo_head.scroll .logo .link {
  padding: 22px 0;
}
@media screen and (min-width: 768px) {
  .logo_head .logo .link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1206px) {
  .logo_head {
    left: 0;
    padding-left: 15px;
  }
  .logo_head .logo .link {
    padding: 35px 0;
  }
  .logo_head.scroll .logo .link .img {
    width: 140px;
  }
  .logo_head.scroll .logo .link .certification {
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  .logo_head {
    z-index: 14;
  }
  .logo_head .logo {
    transition: opacity 1s;
  }
  .logo_head .logo .link {
    padding: 19px 0;
  }
  .logo_head .logo .link .img {
    width: 110px;
  }
  .logo_head .logo .link .certification {
    margin-left: 15px;
  }
  .logo_head.scroll .logo .link {
    padding: 19px 0;
  }
}

/* =================================
 l_header
================================= */
.l_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  width: 100%;
  margin: 0 auto;
  padding: 35px 35px 35px 45px;
  position: fixed;
  top: 0;
  z-index: 12;
  z-index: 14;
  pointer-events: none;
}
.l_header .logo {
  mix-blend-mode: normal;
}
.l_header .logo .link {
  pointer-events: auto;
  display: flex;
  align-items: center;
}
.l_header .logo .link .certification {
  margin-left: 20px;
  color: #fff;
  color: #000;
}
.l_header .nav_block {
  pointer-events: auto;
}
.l_header .nav_block .job_btn {
  background-color: #000;
  color: #fff;
  transition: opacity 0.3s;
}
.l_header .nav_block .job_btn .job_btn_txt {
  position: relative;
}
.l_header .nav_block .job_btn::before, .l_header .nav_block .job_btn:link::before {
  background-color: var(--color-black);
}
.l_header .nav_block .job_btn::after {
  background-image: url("../img/common/icon_arrow02_white.svg");
}
.l_header .nav_block .job_btn.hidden {
  opacity: 0;
  pointer-events: none;
}
.l_header .nav_block .job_btn.hidden-nav {
  opacity: 0;
  pointer-events: none;
}
.l_header .nav_block .list {
  margin-top: 30px;
  transition: opacity 0.3s;
}
.l_header .nav_block .list .item {
  text-align: right;
}
.l_header .nav_block .list .item .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: inline-flex;
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--font-en-got);
  font-size: 16px;
  line-height: 1;
  font-weight: var(--font-med);
  color: var(--color-black);
}
.l_header .nav_block .list .item .link::before {
  background: var(--color-black);
}
.l_header .nav_block .list .item .link::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background-color: var(--color-black);
  margin-left: 10px;
  margin-top: 3px;
}
.l_header .nav_block .list .item .link.current::before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.l_header .nav_block .list .item + .item {
  margin-top: 20px;
}
.l_header .nav_block .list.hidden {
  opacity: 0;
  pointer-events: none;
}
.l_header .nav_block .list.hidden-nav {
  opacity: 0;
}
.l_header .nav_block.in-change .job_btn {
  background-color: #fff;
  color: #000;
}
.l_header .nav_block.in-change .job_btn::before, .l_header .nav_block.in-change .job_btn:link::before {
  background-color: #fff;
}
.l_header .nav_block.in-change .job_btn::after {
  background-image: url("../img/common/icon_arrow02.svg");
}
.l_header .nav_block.in-change .list .item .link {
  color: #fff;
}
.l_header .nav_block.in-change .list .item .link::before {
  background: #fff;
}
.l_header .nav_block.in-change .list .item .link::after {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .l_header .logo .link {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .l_header .logo .link:hover {
    opacity: 0.7;
  }
  .l_header .nav_block .job_btn:hover {
    color: var(--color-black);
  }
  .l_header .nav_block .job_btn:hover:visited, .l_header .nav_block .job_btn:hover:active, .l_header .nav_block .job_btn:hover:link:visited, .l_header .nav_block .job_btn:hover:link:active, .l_header .nav_block .job_btn:hover:link:visited, .l_header .nav_block .job_btn:hover:link:active, .l_header .nav_block .job_btn:hover:link:link:visited, .l_header .nav_block .job_btn:hover:link:link:active {
    color: var(--color-black);
  }
  .l_header .nav_block .job_btn:hover .job_btn_txt {
    color: var(--color-black);
  }
  .l_header .nav_block .job_btn:hover::before {
    background-color: #fff;
    border: 1px solid var(--color-black);
  }
  .l_header .nav_block .job_btn:hover::after {
    background-image: url("../img/common/icon_arrow02.svg");
  }
  .l_header .nav_block.in-change .job_btn:hover {
    color: #fff;
  }
  .l_header .nav_block.in-change .job_btn:hover:visited, .l_header .nav_block.in-change .job_btn:hover:active, .l_header .nav_block.in-change .job_btn:hover:link:visited, .l_header .nav_block.in-change .job_btn:hover:link:active, .l_header .nav_block.in-change .job_btn:hover:link:visited, .l_header .nav_block.in-change .job_btn:hover:link:active, .l_header .nav_block.in-change .job_btn:hover:link:link:visited, .l_header .nav_block.in-change .job_btn:hover:link:link:active {
    color: #fff;
  }
  .l_header .nav_block.in-change .job_btn:hover .job_btn_txt {
    color: #fff;
  }
  .l_header .nav_block.in-change .job_btn:hover::before {
    background-color: #000;
    border: 1px solid var(--color-black);
  }
  .l_header .nav_block.in-change .job_btn:hover::after {
    background-image: url("../img/common/icon_arrow02_white.svg");
  }
}
@media screen and (max-width: 1206px) {
  .l_header {
    padding: 35px 15px 35px 15px;
  }
}
@media screen and (max-width: 767px) {
  .l_header {
    padding: 11px 11px 15px 15px;
    mix-blend-mode: normal;
  }
  .l_header .logo .link .img {
    width: 110px;
  }
  .l_header .logo .link .certification {
    margin-left: 15px;
  }
  .l_header .nav_block .job_btn {
    display: none;
  }
  .l_header .nav_block .list {
    display: none;
  }
}

/* =================================
 hambarger_btn
================================= */
.hambarger_btn_wrap {
  cursor: pointer;
  opacity: 0;
  transition: opacity 1s;
  position: fixed;
  top: 14px;
  right: 39px;
  pointer-events: none;
}
.hambarger_btn_wrap .hambarger_btn {
  display: block;
  position: relative;
  width: 40px;
  width: 107px;
  height: 38px;
  cursor: pointer;
  border-radius: 9999px;
  background-color: #fff;
  border: 1px solid #000;
}
.hambarger_btn_wrap .hambarger_btn .item {
  display: block;
  width: 16px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 16px;
  right: 21px;
}
.hambarger_btn_wrap .hambarger_btn .txt {
  color: #000;
  font-size: 15px;
  position: absolute;
  top: 9px;
  right: 47px;
  font-family: var(--font-en-got);
  font-weight: var(--font-med);
}
.hambarger_btn_wrap .hambarger_btn .open_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.hambarger_btn_wrap .hambarger_btn .open_btn .item + .item {
  margin: 5px 0 0 0;
}
.hambarger_btn_wrap .hambarger_btn .close_btn {
  width: 100%;
  height: 100%;
}
.hambarger_btn_wrap .hambarger_btn .close_btn .item:nth-child(1) {
  position: absolute;
  right: 22PX;
  top: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.hambarger_btn_wrap .hambarger_btn .close_btn .item:nth-child(2) {
  position: absolute;
  right: 22px;
  top: 18px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hambarger_btn_wrap.visible {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 1206px) {
  .hambarger_btn_wrap {
    right: 15px;
    top: 12px;
  }
}
@media screen and (min-width: 768px) {
  .hambarger_btn_wrap .hambarger_btn::before {
    content: "";
    height: 38px;
    width: 107px;
    border-radius: 9999px;
    background-color: #000;
    position: absolute;
    top: 0;
    border: 1px solid #000;
    left: -1px;
    transform: scale(0);
    transition: all 300ms 0s ease;
  }
  .hambarger_btn_wrap .hambarger_btn:hover::before {
    transform: scale(1);
  }
  .hambarger_btn_wrap .hambarger_btn:hover .item {
    background-color: #fff;
  }
  .hambarger_btn_wrap .hambarger_btn:hover .txt {
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .hambarger_btn_wrap {
    display: block;
    padding: 4px;
  }
  .hambarger_btn_wrap .hambarger_btn {
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 9999px;
    background-color: #fff;
    background-color: #000;
  }
  .hambarger_btn_wrap .hambarger_btn .item {
    display: block;
    width: 15px;
    height: 1px;
    background-color: #000;
    background-color: #fff;
    position: relative;
    top: auto;
    right: auto;
  }
  .hambarger_btn_wrap .hambarger_btn .txt {
    display: none;
  }
  .hambarger_btn_wrap .hambarger_btn .open_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .hambarger_btn_wrap .hambarger_btn .open_btn .item + .item {
    margin: 5px 0 0 0;
  }
  .hambarger_btn_wrap .hambarger_btn .close_btn {
    width: 100%;
    height: 100%;
  }
  .hambarger_btn_wrap .hambarger_btn .close_btn .item:nth-child(1) {
    position: absolute;
    left: 12PX;
    top: 19px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .hambarger_btn_wrap .hambarger_btn .close_btn .item:nth-child(2) {
    position: absolute;
    left: 12px;
    top: 19px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .hambarger_btn_wrap .hambarger_btn {
    display: block;
  }
}

/* =================================
 sp_menu
================================= */
.sp_menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  z-index: 13;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  width: 31.84%;
  max-width: 560px;
  min-width: 400px;
  height: 100%;
  padding: 125px 25px 22px 70px;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: opacity 0.7s 0.5s, -webkit-transform 0.5s cubic-bezier(0.87, 0, 0.13, 1) 0.1s;
  transition: opacity 0.7s 0.5s, -webkit-transform 0.5s cubic-bezier(0.87, 0, 0.13, 1) 0.1s;
  transition: opacity 0.7s 0.5s, transform 0.5s cubic-bezier(0.87, 0, 0.13, 1) 0.1s;
  transition: opacity 0.7s 0.5s, transform 0.5s cubic-bezier(0.87, 0, 0.13, 1) 0.1s, -webkit-transform 0.5s cubic-bezier(0.87, 0, 0.13, 1) 0.1s;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.05);
}
.sp_menu .list {
  margin-top: 12px;
}
.sp_menu .list .item {
  width: 100%;
}
.sp_menu .list .item .link {
  padding: 3px 0;
  display: inline-block;
}
.sp_menu .list .item .link .main {
  display: block;
  font-size: 28px;
  font-family: var(--font-en-min);
  font-weight: var(--font-reg);
}
.sp_menu .list .item .link .sub {
  display: block;
  font-size: 12px;
  font-family: var(--font-jp);
  font-weight: var(--font-med);
  margin-top: 4px;
}
.sp_menu .list .item .inr_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 3px;
  font-size: 13px;
}
.sp_menu .list .item .inr_list .inr_list_item .inr_list_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 33px;
}
.sp_menu .list .item .inr_list .inr_list_item .inr_list_link::before {
  content: "";
  position: relative;
  display: block;
  width: 7px;
  height: 9px;
  margin: 0 7px 0 0;
  background-image: url(../img/common/icon_arrow02.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.sp_menu .list .item .inr_list .inr_list_item + .inr_list_item {
  margin-left: 20px;
}
.sp_menu .list .item:has(.inr_list_item) + .item {
  margin-top: 0;
}
.sp_menu .list .item + .item {
  margin-top: 35px;
}
.sp_menu .job_link_wrap {
  padding: 5px 0;
  display: block;
}
.sp_menu .job_btn {
  height: 38px;
  width: 154px;
  display: none;
}
.sp_menu .bottom_list {
  margin-top: 124px;
  font-size: 13px;
}
.sp_menu .bottom_list .bottom_list_item .bottom_list_link {
  padding: 0;
  display: inline-flex;
}
.sp_menu .bottom_list .bottom_list_item + .bottom_list_item {
  margin-top: 34px;
}
.sp_menu .copyright {
  margin-top: 34px;
  color: rgba(0, 0, 0, 0.5);
}
.sp_menu.open {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -webkit-transition: opacity 0.4s 0s, -webkit-transform 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0s;
  transition: opacity 0.4s 0s, -webkit-transform 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0s;
  transition: opacity 0.4s 0s, transform 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0s;
  transition: opacity 0.4s 0s, transform 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0s;
}
@media screen and (max-width: 767px) {
  .sp_menu {
    justify-content: space-between;
    overflow-y: scroll;
    width: 100%;
    min-width: unset;
    padding: 70px 25px 22px;
  }
  .sp_menu .list {
    margin-top: 12px;
  }
  .sp_menu .list .item {
    width: 100%;
  }
  .sp_menu .list .item .link {
    padding: 3px 0;
    display: block;
  }
  .sp_menu .list .item .link .main {
    display: block;
    font-size: 24px;
    font-family: var(--font-en-min);
    font-weight: var(--font-reg);
  }
  .sp_menu .list .item .link .sub {
    display: block;
    font-size: 10px;
    font-family: var(--font-jp);
    font-weight: var(--font-med);
    margin-top: 4px;
  }
  .sp_menu .list .item .inr_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 3px;
    font-size: 13px;
  }
  .sp_menu .list .item .inr_list .inr_list_item .inr_list_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 33px;
  }
  .sp_menu .list .item .inr_list .inr_list_item .inr_list_link::before {
    content: "";
    position: relative;
    display: block;
    width: 7px;
    height: 9px;
    margin: 0 7px 0 0;
    background-image: url(../img/common/icon_arrow02.svg);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .sp_menu .list .item .inr_list .inr_list_item + .inr_list_item {
    margin-left: 20px;
  }
  .sp_menu .list .item:has(.inr_list_item) + .item {
    margin-top: 0;
  }
  .sp_menu .list .item + .item {
    margin-top: 25px;
  }
  .sp_menu .job_link_wrap {
    padding: 5px 0;
    display: block;
  }
  .sp_menu .job_btn {
    height: 38px;
    width: 154px;
    display: flex;
  }
  .sp_menu .bottom_list {
    margin-top: 15px;
    font-size: 13px;
  }
  .sp_menu .bottom_list .bottom_list_item .bottom_list_link {
    padding: 17px 0;
    display: flex;
  }
  .sp_menu .bottom_list .bottom_list_item + .bottom_list_item {
    margin-top: 0px;
  }
  .sp_menu .copyright {
    margin-top: 13px;
  }
  .sp_menu.open {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-transition: opacity 0.4s 0s, -webkit-transform 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0s;
    transition: opacity 0.4s 0s, -webkit-transform 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0s;
    transition: opacity 0.4s 0s, transform 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0s;
    transition: opacity 0.4s 0s, transform 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0s;
  }
}

.sp_menu_bg {
  position: fixed;
  z-index: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.7s;
  pointer-events: none;
}
.sp_menu_bg.open {
  z-index: 12;
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .sp_menu_bg {
    display: none;
  }
}

/* =================================
 l_content
================================= */
body.open .l_content {
  pointer-events: none;
}

/* =================================
 l_main
================================= */
/* =================================
 l_footer
================================= */
body.open .l_footer {
  pointer-events: none;
}

.l_footer {
  width: 100%;
  position: relative;
  padding: 200px 0 80px;
}
.l_footer::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1282px;
  background-image: url("../img/common/footer_green_bg.svg"), url("../img/common/footer_blue_bg.svg"), url("../img/common/footer_red_bg.svg");
  background-size: 72.99% auto, 62.15% auto, 63.98% auto;
  background-repeat: no-repeat;
  background-position: right bottom;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}
.l_footer .inner {
  position: relative;
  z-index: 1;
}
.l_footer .top_block .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.l_footer .top_block .certification {
  margin-left: 20px;
}
.l_footer .bottom_block {
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.l_footer .bottom_block .left_area .ttl {
  opacity: 0;
}
.l_footer .bottom_block .left_area .ttl.show_title {
  animation: opacityUp 0.6s ease-out forwards;
}
.l_footer .bottom_block .left_area .out_list {
  display: flex;
  margin-top: 150px;
}
.l_footer .bottom_block .left_area .out_list .out_list_item + .out_list_item {
  margin-left: 30px;
}
.l_footer .bottom_block .left_area .copyright {
  margin-top: 25px;
  color: rgba(var(--color-rgb-black), 0.5);
}
.l_footer .bottom_block .right_area .foot_list {
  line-height: 1;
}
.l_footer .bottom_block .right_area .foot_list .item .link {
  font-family: var(--font-en-min);
  font-weight: var(--font-reg);
}
.l_footer .bottom_block .right_area .foot_list .item .inr_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
.l_footer .bottom_block .right_area .foot_list .item .inr_list .inr_list_item .inr_list_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.l_footer .bottom_block .right_area .foot_list .item .inr_list .inr_list_item .inr_list_link::before {
  content: "";
  position: relative;
  display: block;
  width: 7px;
  height: 9px;
  margin: 0 6px 0 0;
  background-image: url(../img/common/icon_arrow02.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.l_footer .bottom_block .right_area .foot_list .item .inr_list .inr_list_item .inr_list_link .num + .jp {
  margin-left: 0.5em;
}
.l_footer .bottom_block .right_area .foot_list .item .inr_list .inr_list_item + .inr_list_item {
  margin-left: 20px;
}
.l_footer .bottom_block .right_area .foot_list .item + .item {
  margin-top: 35px;
}
@media screen and (min-width: 1367px) {
  .l_footer {
    padding: 14.64vw 0 5.86vw;
  }
  .l_footer::before {
    height: 93.85vw;
  }
  .l_footer .top_block .certification {
    margin-left: 1.46vw;
  }
  .l_footer .bottom_block {
    margin-top: 0;
  }
  .l_footer .bottom_block .left_area .out_list {
    margin-top: 10.98vw;
  }
  .l_footer .bottom_block .left_area .out_list .out_list_item + .out_list_item {
    margin-left: 2.2vw;
  }
  .l_footer .bottom_block .left_area .copyright {
    margin-top: 1.83vw;
  }
  .l_footer .bottom_block .right_area .foot_list .item .inr_list {
    margin-top: 1.46vw;
  }
  .l_footer .bottom_block .right_area .foot_list .item .inr_list .inr_list_item .inr_list_link::before {
    width: 0.51vw;
    height: 0.66vw;
    margin: 0 0.59vw 0 0;
  }
  .l_footer .bottom_block .right_area .foot_list .item .inr_list .inr_list_item + .inr_list_item {
    margin-left: 1.46vw;
  }
  .l_footer .bottom_block .right_area .foot_list .item + .item {
    margin-top: 2.56vw;
  }
}
@media screen and (max-width: 1206px) {
  .l_footer {
    padding: 14.64vw 0 5.86vw;
  }
  .l_footer::before {
    height: 93.85vw;
  }
  .l_footer .top_block .certification {
    margin-left: 1.46vw;
  }
  .l_footer .bottom_block {
    margin-top: 0;
  }
  .l_footer .bottom_block .left_area .ttl {
    font-size: 2.635vw;
  }
  .l_footer .bottom_block .left_area .out_list {
    margin-top: 10.98vw;
  }
  .l_footer .bottom_block .left_area .out_list .out_list_item + .out_list_item {
    margin-left: 2.2vw;
  }
  .l_footer .bottom_block .left_area .copyright {
    margin-top: 1.83vw;
  }
  .l_footer .bottom_block .right_area .foot_list .item .inr_list {
    margin-top: 1.46vw;
  }
  .l_footer .bottom_block .right_area .foot_list .item .inr_list .inr_list_item .inr_list_link::before {
    width: 0.51vw;
    height: 0.66vw;
    margin: 0 0.59vw 0 0;
  }
  .l_footer .bottom_block .right_area .foot_list .item .inr_list .inr_list_item + .inr_list_item {
    margin-left: 1.46vw;
  }
  .l_footer .bottom_block .right_area .foot_list .item + .item {
    margin-top: 2.56vw;
  }
}
@media screen and (max-width: 1025px) {
  .l_footer .top_block .logo .link .img {
    width: 110px;
  }
  .l_footer .top_block .certification {
    margin-left: 15px;
  }
  .l_footer .bottom_block {
    margin-top: 0;
    flex-direction: column;
    justify-content: flex-start;
  }
  .l_footer .bottom_block .left_area .ttl {
    font-size: 20px;
  }
  .l_footer .bottom_block .left_area .info_box {
    display: none;
  }
  .l_footer .bottom_block .right_area .foot_list .item .inr_list {
    margin-top: 5px;
  }
  .l_footer .bottom_block .right_area .foot_list .item .inr_list .inr_list_item .inr_list_link::before {
    width: 7px;
    height: 9px;
    margin: 0 7px 0 0;
  }
  .l_footer .bottom_block .right_area .foot_list .item .inr_list .inr_list_item + .inr_list_item {
    margin-left: 20px;
  }
  .l_footer .bottom_block .right_area .foot_list .item + .item {
    margin-top: 35px;
  }
  .l_footer .bottom_block .info_box {
    display: block;
  }
  .l_footer .bottom_block .info_box .out_list {
    flex-direction: column;
    margin-top: 60px;
  }
  .l_footer .bottom_block .info_box .out_list .out_list_item + .out_list_item {
    margin-left: 0;
    margin-top: 20px;
  }
  .l_footer .bottom_block .info_box .copyright {
    margin-top: 1.83vw;
    color: rgba(var(--color-rgb-black), 0.5);
  }
}
@media screen and (max-width: 767px) {
  .l_footer {
    padding: 75px 0 97px;
  }
  .l_footer::before {
    height: 560px;
    height: 149.33vw;
    background-image: url("../img/common/footer_green_bg_sp.svg"), url("../img/common/footer_blue_bg_sp.svg"), url("../img/common/footer_red_bg_sp.svg");
    background-size: 88% auto, 53.33% auto, 58.67% auto;
  }
  .l_footer .top_block .logo {
    margin: 0 -5px;
    padding: 8px 0;
  }
  .l_footer .top_block .logo .link .img {
    width: 110px;
  }
  .l_footer .top_block .certification {
    margin-left: 15px;
  }
  .l_footer .bottom_block {
    margin-top: 0;
    flex-direction: column;
    justify-content: flex-start;
  }
  .l_footer .bottom_block .left_area .ttl {
    font-size: 19px;
  }
  .l_footer .bottom_block .right_area .foot_list .item .link {
    padding: 12px 0;
  }
  .l_footer .bottom_block .right_area .foot_list .item .inr_list {
    margin-top: 0;
  }
  .l_footer .bottom_block .right_area .foot_list .item .inr_list .inr_list_item .inr_list_link {
    padding-bottom: 28px;
  }
  .l_footer .bottom_block .right_area .foot_list .item .inr_list .inr_list_item .inr_list_link::before {
    width: 7px;
    height: 9px;
    margin: 0 7px 0 0;
    pointer-events: none;
  }
  .l_footer .bottom_block .right_area .foot_list .item .inr_list .inr_list_item .inr_list_link::after {
    pointer-events: none;
  }
  .l_footer .bottom_block .right_area .foot_list .item .inr_list .inr_list_item + .inr_list_item {
    margin-left: 20px;
  }
  .l_footer .bottom_block .right_area .foot_list .item:has(.inr_list) + .item {
    margin-top: 0;
  }
  .l_footer .bottom_block .right_area .foot_list .item + .item {
    margin-top: 11px;
  }
  .l_footer .bottom_block .info_box .out_list {
    flex-direction: column;
    margin-top: 60px;
  }
  .l_footer .bottom_block .info_box .out_list .out_list_item .link {
    padding: 14px 0;
  }
  .l_footer .bottom_block .info_box .out_list .out_list_item + .out_list_item {
    margin-left: 0;
    margin-top: 0;
  }
  .l_footer .bottom_block .info_box .copyright {
    margin-top: 15px;
  }
}

/* =================================
 c_scroll
================================= */
.c_scroll {
  opacity: 0;
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 45px;
  height: 34px;
  z-index: 11;
  transform: rotate(180deg);
  transition: opacity 0.5s ease;
  animation: arrowScroll 0.5s infinite alternate;
}
.c_scroll.visible {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .c_scroll {
    bottom: 35px;
    right: 18px;
  }
}

/* =================================
 c_gotop
================================= */
.c_gotop {
  opacity: 0;
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 45px;
  height: 34px;
  z-index: 11;
  cursor: pointer;
  transition: opacity 0.5s ease;
}
.c_gotop.visible {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .c_gotop {
    bottom: 12px;
    right: 18px;
    padding: 12px 0;
    height: auto;
    z-index: 12;
  }
}

/* =================================
 fix_job_btn
================================= */
.fix_job_btn {
  opacity: 0;
  transition: opacity 1s;
  position: fixed;
  top: 14px;
  right: 166px;
  width: 154px;
  height: 38px;
  z-index: 14;
  pointer-events: none;
}
.fix_job_btn.visible {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 1206px) {
  .fix_job_btn {
    right: 142px;
    top: 12px;
  }
}
@media screen and (min-width: 768px) {
  .fix_job_btn .job_link_wrap:hover .job_btn_txt {
    color: #000;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .fix_job_btn {
    top: auto;
    right: auto;
    bottom: 13px;
    left: 15px;
    width: 154px;
    height: 38px;
    display: block;
    opacity: 1;
    transition: opacity 2s;
    bottom: 13px;
    height: auto;
    z-index: 12;
    pointer-events: auto;
  }
  .fix_job_btn .job_link_wrap {
    padding: 10px 0;
    display: block;
  }
  .fix_job_btn .job_btn,
  .fix_job_btn .job_btn:link {
    width: 154px;
    height: 38px;
  }
  .fix_job_btn.show {
    opacity: 1;
  }
}

/* =================================
 l_breadcrumbs
================================= */
.l_breadcrumbs {
  padding-top: 180px;
  font-size: 13px;
}
.l_breadcrumbs .breadcrumbs {
  width: 1206px;
  margin: 0 auto;
}
.l_breadcrumbs a {
  color: var(--color-black);
  text-decoration: underline;
  padding-right: 27px;
  position: relative;
}
.l_breadcrumbs a:after {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  background: url(../img/common/icon_arrow02.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1367px) {
  .l_breadcrumbs {
    padding-top: 13.18vw;
  }
  .l_breadcrumbs .breadcrumbs {
    width: 88.29%;
  }
}
@media screen and (min-width: 768px) {
  .l_breadcrumbs a {
    transition: text-decoration 0.3s;
  }
  .l_breadcrumbs a:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 1206px) {
  .l_breadcrumbs .breadcrumbs {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .l_breadcrumbs {
    overflow-x: scroll;
    display: none;
  }
}

/* ======================================================================
 js control
====================================================================== */
/* 通常のフェード効果 */
.no-fade-target.no-fade {
  transition: none;
  opacity: 1;
}

.logo_head.no-fade {
  background-color: #fff;
}

.l_header.no-fade {
  opacity: 1;
}

.logo_head .logo.no-fade {
  opacity: 1;
}

.logo_head .no-fade .link {
  padding: 22px 0;
}

.logo_head.no-fade.show {
  background-color: transparent;
}

.logo_head.no-fade.show.scroll {
  background-color: #fff;
}

.nav_block .job_btn.en-fade {
  opacity: 0;
  pointer-events: none;
}

.l_header .nav_block .list.en-fade {
  opacity: 0;
  pointer-events: none;
}

/* フェード効果を無効にするクラス */
/* ======================================================================
 keyframes
====================================================================== */
@keyframes opacityUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: rotate(10deg) translateY(101%);
  }
  100% {
    opacity: 1;
    transform: rotate(0) translateY(0);
  }
}
@keyframes outArrow {
  0% {
    transform: translateX(0px);
  }
  40% {
    transform: translateX(60px);
  }
  41% {
    display: block;
    background-image: url(../img/common/icon_arrow02.svg);
    background-size: cover;
    background-repeat: no-repeat;
    text-indent: -9999px;
    overflow: hidden;
    transform: translateY(-50%) translateX(-60px);
  }
  100% {
    display: block;
    background-image: url(../img/common/icon_arrow02.svg);
    background-size: cover;
    background-repeat: no-repeat;
    text-indent: -9999px;
    overflow: hidden;
    transform: translateY(-50%) translateX(-50%);
  }
}
@keyframes outArrow02 {
  0% {
    transform: translateX(0px);
  }
  40% {
    transform: translateX(60px);
  }
  41% {
    display: block;
    background-image: url(../img/common/icon_arrow02_white.svg);
    background-size: cover;
    background-repeat: no-repeat;
    text-indent: -9999px;
    overflow: hidden;
    transform: translateX(-60px);
  }
  100% {
    display: block;
    background-image: url(../img/common/icon_arrow02_white.svg);
    background-size: cover;
    background-repeat: no-repeat;
    text-indent: -9999px;
    overflow: hidden;
    transform: translateX(0);
  }
}
@keyframes outArrow02Reverse {
  0% {
    transform: translateX(0px);
  }
  40% {
    transform: translateX(-60px);
  }
  41% {
    display: block;
    background-image: url(../img/common/icon_arrow01_white.svg);
    background-size: cover;
    background-repeat: no-repeat;
    text-indent: -9999px;
    overflow: hidden;
    transform: translateX(60px);
  }
  100% {
    display: block;
    background-image: url(../img/common/icon_arrow01_white.svg);
    background-size: cover;
    background-repeat: no-repeat;
    text-indent: -9999px;
    overflow: hidden;
    transform: translateX(0);
  }
}
@keyframes outArrowVertica {
  0% {
    transform: translateY(0px);
  }
  40% {
    transform: translateY(60px);
  }
  41% {
    display: block;
    background-image: url(../img/common/icon_arrow02.svg);
    background-size: cover;
    background-repeat: no-repeat;
    text-indent: -9999px;
    overflow: hidden;
    transform: translateX(-50%) translateY(-60px) rotate(90deg);
  }
  100% {
    display: block;
    background-image: url(../img/common/icon_arrow02.svg);
    background-size: cover;
    background-repeat: no-repeat;
    text-indent: -9999px;
    overflow: hidden;
    transform: translateX(-50%) translateY(-50%) rotate(90deg);
  }
}
@keyframes arrowScroll {
  0% {
    transform: translate3d(0, -5px, 0) rotate(180deg);
  }
  100% {
    transform: translate3d(0, 5px, 0) rotate(180deg);
  }
}
@keyframes normalArrowScroll {
  0% {
    transform: translate3d(0, -5px, 0) translateX(-50%);
  }
  100% {
    transform: translate3d(0, 5px, 0) translateX(-50%);
  }
}