@charset "UTF-8";
:root {
  --black: 0,0,0;
  --orange: 235,103,0;
  --yellow: 248,180,30;
  --bg: 255,255,255;
  --gray: 184,173,165;
  --lightorange: 252,123,23;
  --lightyellow: 255,237,197;
  --border: 220,208,198;
  --contents_width: 1000px;
  --body_padding_side: 60px;
  --contents_width_with_padding: 1160px;
  --sidebar_width: 250px;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, a, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
  word-break: break-all;
}

body {
  -webkit-text-size-adjust: 100%;
}

article, aside, details, figcaption, figure,
main, footer, header, menu, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  word-break: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

ul:not([class]),
ol:not([class]) {
  padding-left: 1.25em;
}

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

span {
  font-weight: inherit;
}

blockquote, q {
  quotes: none;
}

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

a {
  color: inherit;
}
@media all and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}

a[class] {
  text-decoration: none;
}

ins {
  background-color: #ff9;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

address {
  font-style: normal;
}

sup {
  vertical-align: text-top;
  font-size: 0.75em;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.75em;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid rgb(var(--border));
  margin: 1em 0;
  padding: 0;
}

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

iframe {
  max-width: 100%;
}

/* form
================================================== */
input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  outline: none;
  border: 1px solid;
  border-radius: 0;
  background: none;
}
@media all and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
    font-size: 1.6rem;
  }
}

input[type=text], input[type=email], input[type=tel], textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input[type=radio], input[type=checkbox] {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

select {
  color: inherit;
}

textarea {
  resize: vertical;
}

button {
  color: inherit;
  font-weight: normal;
  cursor: pointer;
}

/* 02_base
================================================ */
body {
  min-width: 320px;
  color: rgb(var(--black));
  background: rgb(var(--bg));
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media all and (min-width: 768px) {
  body {
    min-width: var(--contents_width_with_padding);
    font-size: 1.6rem;
  }
}

.l-wrapper {
  position: relative;
}

@media all and (min-width: 768px) {
  .l-container.is-col2 {
    display: grid;
    grid-template-columns: var(--sidebar_width) auto;
    gap: 0 20px;
    width: var(--contents_width);
    margin: 0 auto;
  }
  .l-container.is-col2 .l-contents {
    flex: 1;
  }
  .l-container.is-col2 .l-sidebar {
    order: -1;
    flex-basis: var(--sidebar_width);
  }
}

/* sp <--> tb <--> pc
-------------------------------------- */
.u-media-query {
  display: none;
  font-family: "sp";
}
@media all and (min-width: 768px) {
  .u-media-query {
    font-family: "tb";
  }
}
@media all and (min-width: 1160px) {
  .u-media-query {
    font-family: "pc";
  }
}

@media all and (max-width: 1159px) {
  .u-view-pc {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-tb {
    display: none !important;
  }
}
@media all and (min-width: 1160px) {
  .u-view-tb {
    display: none !important;
  }
}

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

@media all and (min-width: 1160px) {
  .u-view-under-tb {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-upper-tb {
    display: none !important;
  }
}

/* overflow
-------------------------------------- */
.u-overflow-wrap {
  overflow: auto;
}
.u-overflow-wrap .u-overflow-sec {
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .u-overflow-wrap .u-overflow-sec {
    min-width: var(--contents_width_with_padding);
  }
}

/* text
-------------------------------------- */
.u-uppercase {
  text-transform: uppercase;
}

.u-en {
  font-family: "Roboto", sans-serif;
}

.u-note {
  font-size: 1.2rem;
}
@media all and (min-width: 768px) {
  .u-note {
    font-size: 1.4rem;
  }
}

@media all and (max-width: 767px) {
  .u-center-sp {
    text-align: center;
  }
}

@media all and (min-width: 768px) {
  .u-center-pc {
    text-align: center;
  }
}

.u-right {
  text-align: right;
}

/* link
-------------------------------------- */
a.u-alpha {
  display: block;
  text-decoration: none;
}
@media all and (min-width: 768px) {
  a.u-alpha {
    transition: all 0.3s ease;
  }
  a.u-alpha:hover {
    opacity: 0.7;
  }
}

a.u-zoom {
  display: block;
  text-decoration: none;
}
a.u-zoom .u-zoom__img {
  display: block;
}
a.u-zoom .u-zoom__img-wrap {
  display: block;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  a.u-zoom .u-zoom__img {
    transition: all 0.3s ease;
  }
  a.u-zoom:hover .u-zoom__img {
    transform: scale(1.1);
  }
}

a.u-external {
  text-decoration: underline !important;
}
a.u-external::after {
  margin: 0 0 3px 10px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%228.004%22%20height%3D%228.003%22%20viewBox%3D%220%200%208.004%208.003%22%3E%20%3Cpath%20id%3D%22%E5%90%88%E4%BD%93_57%22%20data-name%3D%22%E5%90%88%E4%BD%93%2057%22%20d%3D%22M-17947%2C27v-6.8h1.361v.757h-.6v5.283h5.283v-.6h.756V27Zm1.811-1.815V19h6.193v6.189Zm.758-.752h4.68v-4.68h-4.68Z%22%20transform%3D%22translate(17947.002%20-18.999)%22%20fill%3D%22%23eb6700%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
@media all and (min-width: 768px) {
  a.u-external {
    transition: opacity 0.3s ease;
  }
  a.u-external:hover {
    opacity: 0.7;
  }
}

/* layout
-------------------------------------- */
.u-inner {
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
}
@media all and (max-width: 767px) {
  .u-inner.is-sp-wide {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media all and (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: var(--contents_width);
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1500px) {
  .u-inner.is-wide {
    max-width: 1400px;
  }
}

/*  .c-anchor01
================================================== */
.c-anchor01 {
  margin: 0 auto;
}
.c-anchor01__item {
  width: 260px;
  margin: 0 auto;
}
.c-anchor01__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 30px;
  padding-right: 80px;
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.46;
  padding-top: 2px;
  color: #fff;
  background: linear-gradient(to right, #EB6700, #F8B41E);
  position: relative;
}
.c-anchor01__ico {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgb(var(--lightyellow));
  border-radius: 50%;
}
.c-anchor01__ico svg {
  width: 8px;
  color: rgb(var(--orange));
}
@media all and (max-width: 767px) {
  .c-anchor01__item + .c-anchor01__item {
    margin-top: 10px;
  }
}
@media all and (min-width: 768px) {
  .c-anchor01 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -10px;
  }
  .c-anchor01__item {
    margin: 10px;
  }
  .c-anchor01__link {
    height: 70px;
    transition: all 0.3s ease;
  }
  .c-anchor01__link:hover {
    opacity: 0.7;
  }
}

/*  .c-anchor01.is-bottom
================================================== */
.c-anchor01.is-bottom .c-anchor01__ico {
  transform: translateY(-50%) scale(1, -1);
}

/*  .c-archive01
================================================== */
.c-archive01__item {
  border-style: solid;
  border-width: 1px 0 0;
  border-color: rgb(var(--border));
}
.c-archive01__item:last-child {
  border-width: 1px 0;
}
.c-archive01__item-in {
  display: block;
  padding: 14px 0;
}
.c-archive01__item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.c-archive01__item-date {
  margin: 0 10px 0 0;
  padding: 5px 0;
  font-size: 1.2rem;
  font-weight: 700;
}
.c-archive01__item-cat {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -5px -5px 0;
}
.c-archive01__item-cat-item {
  font-size: 1.2rem;
  margin: 0 5px 5px 0;
  padding: 4px 15px;
  background: rgb(var(--orange));
  color: #fff;
  border-radius: 10px;
  line-height: 1;
}
.c-archive01__item-head {
  overflow: hidden;
  display: -webkit-box;
  max-height: 3.4em;
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  font-weight: 700;
}
@media all and (min-width: 768px) {
  .c-archive01__item {
    display: block;
  }
  .c-archive01__item-in {
    padding: 37px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    transition: all 0.3s ease;
  }
  .c-archive01__item-in:hover {
    background: rgb(var(--lightyellow));
  }
  .c-archive01__item-date {
    font-size: 1.4rem;
    padding: 0;
    margin: 0 30px 0 0;
  }
  .c-archive01__item-meta {
    width: 240px;
  }
  .c-archive01__item-cat {
    margin: 0;
  }
  .c-archive01__item-cat-item {
    margin: 0;
    font-size: 1.4rem;
    padding: 4px 16px;
    border-radius: 11px;
  }
  .c-archive01__item-head {
    width: calc(100% - 240px);
    max-height: 1.7em;
    -webkit-line-clamp: 1;
  }
}

/*  .c-archive02
================================================== */
.c-archive02 {
  display: flex;
  flex-wrap: wrap;
  margin: -20px -10px;
}
.c-archive02__item {
  width: calc(50% - 20px);
  margin: 20px 10px;
  counter-increment: number;
  position: relative;
}
.c-archive02__item::before {
  position: absolute;
  content: "Interview";
  transform: rotate(90deg);
  top: 15px;
  left: -12px;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  font-family: "Roboto", sans-serif;
}
.c-archive02__item::after {
  content: "0" counter(number);
  position: absolute;
  transform: rotate(90deg);
  top: 52px;
  left: 2px;
  font-size: 2rem;
  letter-spacing: 0.02em;
  font-family: "Roboto", sans-serif;
}
.c-archive02__item:nth-of-type(n+10)::after {
  content: counter(number);
}
.c-archive02__link {
  display: block;
}
.c-archive02__area-img {
  position: relative;
}
.c-archive02__area-img::before {
  position: absolute;
  content: "";
  width: 57px;
  height: 57px;
  bottom: -14px;
  left: 0;
  background: url(../img/interview/bg_interview01.png) no-repeat 0 100%/cover;
  z-index: -1;
}
.c-archive02__img {
  width: calc(100% - 30px);
  padding-left: 30px;
}
.c-archive02__area-txt {
  margin-top: 22px;
  padding-left: 15px;
  position: relative;
}
.c-archive02__area-txt::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, #EB6700, #F8B41E);
}
.c-archive02__name {
  font-size: 2.4rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.c-archive02__txt {
  margin-top: 3px;
  font-weight: 700;
  color: #B8ADA5;
  line-height: 1.6;
}
@media all and (min-width: 768px) {
  .c-archive02 {
    margin: -40px -28px;
  }
  .c-archive02__item {
    width: calc(33.33% - 56px);
    margin: 40px 28px;
  }
  .c-archive02__item::before {
    font-size: 2rem;
    top: 24px;
    left: -20px;
  }
  .c-archive02__item::after {
    font-size: 2.8rem;
    top: 85px;
    left: 4px;
  }
  .c-archive02__link:hover .c-archive02__img.is-front {
    opacity: 1;
  }
  .c-archive02__area-img::before {
    width: 139px;
    height: 139px;
    bottom: -10px;
  }
  .c-archive02__img {
    width: calc(100% - 50px);
    padding-left: 50px;
  }
  .c-archive02__img.is-front {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
    transition: all 0.3s ease;
  }
  .c-archive02__area-txt {
    margin-top: 39px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-left: 30px;
  }
  .c-archive02__name {
    width: 100px;
    font-size: 3.6rem;
  }
  .c-archive02__txt {
    width: calc(100% - 100px);
    text-align: right;
    margin: 0;
  }
}

/* c-archive03 TOPのInterview
========================================== */
.c-archive03 {
  position: relative;
}
.c-archive03__item {
  margin-top: 40px;
}
.c-archive03__link {
  display: block;
}
.c-archive03__area-img {
  width: 60%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.c-archive03__en {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  line-height: 1;
  position: absolute;
  top: 31px;
  right: -65px;
  transform: rotate(90deg);
}
.c-archive03__num {
  margin-left: 7px;
  display: inline-block;
  font-size: 2rem;
  transform: translateY(4px);
}
.c-archive03__area-txt {
  margin: 10px 34px 0;
  border-left: solid 2px;
  padding-left: 15px;
  line-height: 1.3;
}
.c-archive03__name {
  font-size: 2.4rem;
}
.c-archive03__txt {
  font-weight: 700;
  margin-top: 8px;
}
@media all and (min-width: 768px) {
  .c-archive03 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 38px;
  }
  .c-archive03__item {
    width: calc(33.33% - 76px);
    max-width: 330px;
    margin: 0 38px;
  }
  .c-archive03__item:first-child {
    margin-top: 160px;
  }
  .c-archive03__item:nth-child(2) {
    margin-top: 80px;
  }
  .c-archive03__link:hover .c-archive03__img.is-front {
    opacity: 1;
  }
  .c-archive03__area-img {
    width: 100%;
  }
  .c-archive03__img.is-front {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
  }
  .c-archive03__en {
    font-size: 2rem;
    right: auto;
    top: 50px;
    left: -88px;
  }
  .c-archive03__num {
    font-size: 2.8rem;
  }
  .c-archive03__area-txt {
    margin: 20px 0 0;
  }
  .c-archive03__name {
    font-size: 3rem;
  }
}
@media all and (min-width: 1510px ) {
  .c-archive03 {
    margin: 0 50px;
  }
  .c-archive03__item {
    width: calc(33.33% - 100px);
    max-width: 330px;
    margin: 0 50px;
  }
  .c-archive03__item:first-child {
    margin-top: 160px;
  }
  .c-archive03__item:nth-child(2) {
    margin-top: 80px;
  }
  .c-archive03__area-txt {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-left: 20px;
  }
  .c-archive03__name {
    font-size: 3.6rem;
    width: 80px;
  }
  .c-archive03__txt {
    width: calc(100% - 80px);
    text-align: right;
    margin-top: 0;
  }
}

/*  .c-btn01
================================================== */
.c-btn01 {
  margin: 0 auto 0;
}
.c-btn01__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding:0 30px;
  /*padding-left: 30px;
  padding-right: 30px;*/
  box-sizing: border-box;
  width: 100%;
  height: 80px;
  font-weight: 700;
  color: #fff;
  background: rgb(var(--yellow));
  position: relative;
}
.c-btn01__ico {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgb(var(--lightyellow));
  border-radius: 50%;
}
.c-btn01__ico svg {
  width: 12px;
  color: rgb(var(--orange));
}
@media all and (min-width: 768px) {
  .c-btn01 {
    width: 400px;
  }
  .c-btn01__link {
  padding:0 30px;
  /*padding-left: 30px;
  padding-right: 30px;*/
    height: 100px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
  }
  .c-btn01__link:hover {
    background: rgb(var(--orange));
  }
  .c-btn01__ico {
    right: 50px;
    width: 60px;
    height: 60px;
  }
  .c-btn01__ico svg {
    width: 17px;
  }
}

/*  .c-btn01.is-small
================================================== */
.c-btn01.is-small {
  margin: 0 auto;
}
.c-btn01.is-small .c-btn01__link {
  height: 100%;
  min-height: 60px;
  background: linear-gradient(to right, #EB6700, #F8B41E);
}
@media all and (min-width: 768px) {
  .c-btn01.is-small {
    margin: 0 auto;
  }
  .c-btn01.is-small .c-btn01__link {
    padding-left: 35px;
  }
  .c-btn01.is-small .c-btn01__link:hover {
    opacity: 0.7;
  }
  .c-btn01.is-small .c-btn01__ico {
    right: 20px;
    width: 40px;
    height: 40px;
  }
  .c-btn01.is-small .c-btn01__ico svg {
    width: 12px;
  }
}

/* .c-color-black
================================================== */
.c-color-black {
  color: rgb(var(--black));
}

/* .c-color-gray
================================================== */
.c-color-gray {
  color: rgb(var(--gray));
}

/*  .c-faq01
================================================== */
.c-faq01 {
  border-top: solid 2px rgb(var(--border));
}
.c-faq01:last-child {
  border-bottom: solid 2px rgb(var(--border));
}
.c-faq01__ico {
  position: absolute;
  top: 20px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 34px;
  height: 34px;
  box-sizing: border-box;
  text-align: center;
  padding-left: 1px;
  background: linear-gradient(to bottom, #EB6700, #F8B41E);
  color: #fff;
  border-radius: 50%;
}
.c-faq01__head {
  position: relative;
  font-weight: 700;
  padding: 25px 0 25px 45px;
}
.c-faq01__head[class*=toggle] {
  padding-right: 30px;
  cursor: pointer;
}
.c-faq01__head[class*=toggle]::before, .c-faq01__head[class*=toggle]::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  margin-top: -1px;
  background: linear-gradient(to right, #EB6700, #F8B41E);
  transition: all 0.3s ease;
}
.c-faq01__head[class*=toggle]::before {
  transform: rotate(-90deg);
}
.c-faq01__head[class*=toggle].is-active::before {
  transform: rotate(0);
}
.c-faq01__txt {
  position: relative;
  color: rgb(var(--black));
  transform: translateY(-20px);
  padding: 20px 15px 0 45px;
}
.c-faq01__txt .c-faq01__ico {
  top: 15px;
  border: solid 1px rgb(var(--orange));
  background: rgb(var(--bg));
  color: rgb(var(--orange));
}
@media all and (min-width: 768px) {
  .c-faq01__head {
    padding: 37px 0 37px 60px;
  }
  .c-faq01__head[class*=toggle] {
    padding-right: 60px;
  }
  .c-faq01__head[class*=toggle]::before, .c-faq01__head[class*=toggle]::after {
    width: 20px;
  }
  .c-faq01__ico {
    top: 30px;
    width: 40px;
    height: 40px;
    padding-top: 1px;
    padding-left: 2px;
  }
  .c-faq01__txt {
    transform: translateY(-35px);
    padding: 25px 60px 0 60px;
  }
  .c-faq01__txt .c-faq01__ico {
    top: 20px;
  }
}

/*  .c-faq02
================================================== */
.c-faq02 + .c-faq02 {
  margin-top: 15px;
}
.c-faq02__head {
  position: relative;
  font-size: 2rem;
  padding: 5px 0;
  border-bottom: solid 2px rgb(var(--border));
}
.c-faq02__head[class*=toggle] {
  padding-right: 30px;
  cursor: pointer;
}
.c-faq02__head[class*=toggle]::before, .c-faq02__head[class*=toggle]::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  margin-top: -1px;
  background: linear-gradient(to right, #EB6700, #F8B41E);
  transition: all 0.3s ease;
}
.c-faq02__head[class*=toggle]::before {
  transform: rotate(-90deg);
}
.c-faq02__head[class*=toggle].is-active::before {
  transform: rotate(0);
}
.c-faq02__content {
  padding-top: 5px;
  padding-bottom: 15px;
}
.c-faq02__btn {
  width: 260px;
}
.c-faq02__txt {
  margin-top: 15px;
  color: rgb(var(--black));
}
@media all and (min-width: 768px) {
  .c-faq02 + .c-faq02 {
    margin-top: 12px;
  }
  .c-faq02__head {
    font-size: 2.4rem;
    padding: 12px 0;
    border-bottom: solid 1px rgb(var(--border));
  }
  .c-faq02__head[class*=toggle] {
    padding-right: 60px;
  }
  .c-faq02__head[class*=toggle]::before, .c-faq02__head[class*=toggle]::after {
    width: 20px;
  }
  .c-faq02__content {
    padding: 0;
    padding-bottom: 60px;
  }
  .c-faq02__txt {
    margin-top: 20px;
  }
}

/* .c-form
================================================== */
input.c-form-parts, select.c-form-parts, textarea.c-form-parts, button.c-form-parts {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 50px;
  padding: 15px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  border: none;
  background: #F2F2F2;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
}
input.c-form-parts::-moz-placeholder, select.c-form-parts::-moz-placeholder, textarea.c-form-parts::-moz-placeholder, button.c-form-parts::-moz-placeholder {
  color: #B8ADA5;
}
input.c-form-parts::placeholder, select.c-form-parts::placeholder, textarea.c-form-parts::placeholder, button.c-form-parts::placeholder {
  color: #B8ADA5;
}
@media all and (min-width: 768px) {
  input.c-form-parts, select.c-form-parts, textarea.c-form-parts, button.c-form-parts {
    width: 700px;
    padding: 18px 20px;
    font-size: 1.6rem;
  }
}

textarea.c-form-parts {
  height: 200px;
  resize: vertical;
  background: #F2F2F2;
}
@media all and (min-width: 768px) {
  textarea.c-form-parts {
    width: 700px;
  }
}

select.c-form-parts {
  background: #F2F2F2 no-repeat right 10px top 50%/10px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%228.501%22%20height%3D%224.839%22%20viewBox%3D%220%200%208.501%204.839%22%3E%20%3Cpath%20id%3D%22%E5%90%88%E4%BD%93_80%22%20data-name%3D%22%E5%90%88%E4%BD%93%2080%22%20d%3D%22M4.631%2C7.44l2.9-3.2L4.628%2C1.061%2C5.6%2C0%2C9.467%2C4.239l-.011.013L5.6%2C8.5Z%22%20transform%3D%22translate(8.503%20-4.628)%20rotate(90)%22%20fill%3D%22%23eb6700%22%2F%3E%3C%2Fsvg%3E");
}
@media all and (min-width: 768px) {
  select.c-form-parts {
    width: 397px;
  }
}

.c-form-parts-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
}
.c-form-parts-list .c-form-parts {
  margin-right: 20px;
}
.c-form-parts-list.is-flex-enb {
  justify-content: flex-end;
}

/* .c-form.is-default
================================================== */
.c-form.is-default th, .c-form.is-default td {
  padding: 15px 0;
  border-style: solid;
  border-width: 0;
  border-color: rgb(var(--border));
}
.c-form.is-default th {
  padding: 15px;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.1em;
}
.c-form.is-default td {
  color: rgb(var(--black));
}
@media all and (max-width: 767px) {
  .c-form.is-default table, .c-form.is-default thead, .c-form.is-default tbody, .c-form.is-default tr, .c-form.is-default th, .c-form.is-default td {
    display: block;
  }
  .c-form.is-default th {
    border-top: solid 1px rgb(var(--border));
    border-bottom: 0;
    padding: 20px 15px 5px;
  }
  .c-form.is-default td {
    padding: 0 15px 20px;
    border-bottom: solid 1px rgb(var(--border));
  }
  .c-form.is-default tr + tr th {
    border-top: 0;
  }
}
@media all and (min-width: 768px) {
  .c-form.is-default th, .c-form.is-default td {
    padding: 20px 0;
    border-width: 1px 0;
  }
  .c-form.is-default th {
    width: 267px;
    vertical-align: top;
    padding-top: 32px;
  }
  .c-form.is-default td {
    vertical-align: middle;
  }
}

/* .c-form-label
================================================== */
.c-form-label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 15px;
  height: 15px;
  font-size: 1rem;
  border-radius: 11px;
  line-height: 1;
  transform: translateY(-3px);
}
/* .c-form-note
================================================== */
.c-form-note {
  display: block;
  font-weight: 400;
  color: #B8ADA5;
  font-size: 1.2rem;
}

td .c-form-note {
  margin-top: 10px;
}

.mw_wp_form_confirm .c-form-note {
  display: none;
}

/* .c-form-postcode
================================================== */
.c-form-postcode {
  display: flex;
  flex-wrap: wrap;
}
.c-form-postcode__prefix {
  max-width: 26px;
  flex-basis: 26px;
  padding-top: 12px;
}
.c-form-postcode__input {
  max-width: 280px;
  flex-basis: 280px;
}
@media all and (min-width: 768px) {
  .c-form-postcode__input {
    max-width: 307px;
    flex-basis: 307px;
  }
}

/* 確認画面
================================================ */
.mw_wp_form_confirm .c-form-postcode .c-form-postcode__prefix,
.is-confirm .c-form-postcode .c-form-postcode__prefix {
  max-width: none;
  flex-basis: 0;
  padding-top: 0;
}
.mw_wp_form_confirm .c-form-postcode .c-form-postcode__input,
.is-confirm .c-form-postcode .c-form-postcode__input {
  max-width: none;
}

/* .c-form-item
================================================== */
.c-form-item {
  display: flex;
}
.c-form-item + .c-form-item {
  margin-top: 10px;
}
.c-form-item-list {
  display: flex;
}
.c-form-item-list .c-form-item + .c-form-item {
  margin-top: 0;
  margin-left: 5px;
}
.c-form-item__prefix {
  min-width: 20px;
  margin-right: 10px;
  padding-top: 12px;
}
.c-form-item__suffix {
  min-width: 20px;
  margin-left: 10px;
  padding-top: 12px;
}
.c-form-item__input {
  flex: 1;
}
.c-form-item .c-form-item__input [name*=year] {
  width: 60px;
  padding: 15px 10px;
}
.c-form-item .c-form-item__input [name*=month] {
  width: 55px;
  padding: 15px 10px;
}
.c-form-item .c-form-item__input [name*=day] {
  width: 55px;
  padding: 15px 10px;
}
@media all and (max-width: 374px) {
  .c-form-item .c-form-item__input [name*=year] {
    width: 58px;
  }
  .c-form-item .c-form-item__input [name*=month] {
    width: 50px;
    padding: 5px;
    background-position: right 8px top 50%;
  }
  .c-form-item .c-form-item__input [name*=day] {
    width: 50px;
    padding: 5px;
    background-position: right 8px top 50%;
  }
}
@media all and (min-width: 1160px) {
  .c-form-item {
    display: inline-flex;
  }
  .c-form-item + .c-form-item {
    margin: 0 0 0 20px;
  }
  .c-form-item__input {
    width: 200px;
  }
  .c-form-item-list .c-form-item__input {
    width: auto;
  }
  .c-form-item .c-form-item__input [name*=year] {
    width: 82px;
    padding: 15px 20px;
  }
  .c-form-item .c-form-item__input [name*=month] {
    width: 62px;
    padding: 15px 10px;
  }
  .c-form-item .c-form-item__input [name*=day] {
    width: 62px;
    padding: 15px 10px;
  }
}

/* 確認画面
================================================ */
.mw_wp_form_confirm .c-form-item .c-form-item__prefix,
.mw_wp_form_confirm .c-form-item .c-form-item__suffix,
.is-confirm .c-form-item .c-form-item__prefix,
.is-confirm .c-form-item .c-form-item__suffix {
  min-width: 0;
  padding-top: 0;
}
.mw_wp_form_confirm .c-form-item .c-form-item__input,
.is-confirm .c-form-item .c-form-item__input {
  width: auto;
}

/* .c-form-address
================================================== */
.c-form-address {
  margin-top: 15px;
}

/* .c-form-agreement
================================================== */
.c-form-agreement {
  margin-top: 25px;
  text-align: center;
}
.c-form-agreement__txt {
  margin-top: 24px;
  text-align: center;
}
.c-form-agreement__link {
  text-decoration: underline !important;
}
@media all and (min-width: 768px) {
  .c-form-agreement__txt {
    margin-top: 15px;
  }
  .c-form-agreement__link:hover {
    text-decoration: none !important;
  }
}

.mw_wp_form_confirm .c-form-agreement {
  display: none;
}
.mw_wp_form_confirm .c-form-agreement__txt {
  display: none;
}
.mw_wp_form_confirm .c-form-agreement__link {
  display: none;
}

/* .c-form-privacy
================================================== */
.c-form-privacy {
  margin: 50px -15px 0;
  background: #fff;
  padding: 40px 30px;
}
.c-form-privacy__tit {
  font-weight: 700;
}
.c-form-privacy__area-txt {
  margin-top: 20px;
  background: #F2F2F2;
  padding: 30px 50px 30px 20px;
  max-height: 166px;
  box-sizing: border-box;
  overflow-y: scroll;
  color: rgb(var(--black));
}
.c-form-privacy__lead {
  margin-bottom: 1em;
}
.c-form-privacy__head {
  color: rgb(var(--orange));
  font-weight: 700;
}
.c-form-privacy__txt {
  color: rgb(var(--black));
}
.c-form-privacy__list-item + .c-form-privacy__list-item {
  margin-top: 1em;
}
@media all and (min-width: 768px) {
  .c-form-privacy {
    margin: 80px 0 0;
    padding: 40px;
  }
  .c-form-privacy__content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .c-form-privacy__tit {
    width: calc(100% - 780px);
  }
  .c-form-privacy__area-txt {
    margin: 0;
    width: 780px;
    padding: 30px 40px;
  }
}

.mw_wp_form_confirm .c-form-privacy__content {
  display: none;
}

.c-form-recaptcha {
  margin: 20px 30px 0;
  text-align: center;
}
@media all and (min-width: 768px) {
  .c-form-recaptcha {
    width: 253px;
    margin: 30px auto 0;
  }
}

.c-form-file {
  padding-top: 3px;
  padding-left: 28px;
}

/* .c-form-btn
================================================== */
.c-form-area-btn {
  margin: 25px 0 0;
}
@media all and (min-width: 768px) {
  .c-form-area-btn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.c-form-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 30px;
  width: 100%;
  height: 80px;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  background: rgb(var(--yellow));
  box-sizing: border-box;
  border: none;
  position: relative;
  transition: all 0.3s ease;
}
.c-form-btn::before {
  transition: all 0.3s ease;
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 50%;
  right: 20px;
  background: rgb(var(--lightyellow));
  transform: translateY(-50%);
}
.c-form-btn::after {
  position: absolute;
  z-index: 1;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 12px;
  height: 7px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%227%22%20viewBox%3D%220%200%2012%207%22%3E%20%3Cpath%20id%3D%22%E5%90%88%E4%BD%93_22%22%20data-name%3D%22%E5%90%88%E4%BD%93%2022%22%20d%3D%22M7.995%2C6.125%2C9.831%2C4.119H0V2.882H9.832L7.995.875%2C8.8%2C0%2C12%2C3.5%2C8.8%2C7Z%22%20fill%3D%22%23EB6700%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.c-form-btn.is-back {
  justify-content: flex-end;
  background: rgb(var(--border));
  padding-right: 30px;
}
.c-form-btn.is-back::before {
  right: auto;
  left: 20px;
  background: #F2F2F2;
}
.c-form-btn.is-back::after {
  right: auto;
  left: 34px;
  transform: translateY(-50%) scale(-1, -1);
}
@media all and (max-width: 767px) {
  .c-form-btn + .c-form-btn {
    margin-top: 10px;
  }
}
@media all and (min-width: 768px) {
  .c-form-btn {
    width: 400px;
    height: 100px;
    padding-left: 50px;
  }
  .c-form-btn::before {
    width: 60px;
    height: 60px;
    right: 50px;
  }
  .c-form-btn::after {
    right: 71px;
    display: inline-block;
    width: 17px;
    height: 10px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%227%22%20viewBox%3D%220%200%2012%207%22%3E%20%3Cpath%20id%3D%22%E5%90%88%E4%BD%93_22%22%20data-name%3D%22%E5%90%88%E4%BD%93%2022%22%20d%3D%22M7.995%2C6.125%2C9.831%2C4.119H0V2.882H9.832L7.995.875%2C8.8%2C0%2C12%2C3.5%2C8.8%2C7Z%22%20fill%3D%22%23EB6700%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
  .c-form-btn:hover {
    background: rgb(var(--orange));
  }
  .c-form-btn + .c-form-btn {
    margin-top: 0;
    margin-left: 20px;
  }
  .c-form-btn.is-back {
    padding-right: 50px;
  }
  .c-form-btn.is-back:before {
    left: 50px;
  }
  .c-form-btn.is-back:after {
    left: 71px;
  }
  .c-form-btn.is-back:hover {
    background: #B2A69B;
  }
}

.c-form-back {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  text-align: center;
}
.c-form-back__btn {
  display: inline-block;
  width: auto;
  background: none;
  border: 0;
  text-decoration: underline;
  color: rgb(var(--orange));
}
@media all and (min-width: 768px) {
  .c-form-back {
    width: 100%;
    margin-top: 30px;
  }
  .c-form-back__btn {
    font-size: 1.6rem;
  }
  .c-form-back__btn:hover {
    text-decoration: none;
  }
}

/* .c-form .mwform-radio-field
================================================ */
.c-form .mwform-radio-field,
.c-form .c-radio {
  display: block;
}
.c-form .mwform-radio-field + .mwform-radio-field,
.c-form .mwform-radio-field + .c-radio,
.c-form .c-radio + .mwform-radio-field,
.c-form .c-radio + .c-radio {
  margin-top: 10px;
}
.c-form .mwform-radio-field label,
.c-form .c-radio label {
  display: block;
  cursor: pointer;
}
.c-form .mwform-radio-field input,
.c-form .c-radio input {
  display: none;
}
.c-form .mwform-radio-field .mwform-radio-field-text,
.c-form .mwform-radio-field .c-radio__text,
.c-form .c-radio .mwform-radio-field-text,
.c-form .c-radio .c-radio__text {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  vertical-align: top;
}
.c-form .mwform-radio-field .mwform-radio-field-text::before,
.c-form .mwform-radio-field .c-radio__text::before,
.c-form .c-radio .mwform-radio-field-text::before,
.c-form .c-radio .c-radio__text::before {
  box-sizing: border-box;
  position: absolute;
  top: 3px;
  left: 0;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid;
  border-radius: 50%;
}
.c-form .mwform-radio-field input:checked + .mwform-radio-field-text::after,
.c-form .mwform-radio-field input:checked + .c-radio__text::after,
.c-form .c-radio input:checked + .mwform-radio-field-text::after,
.c-form .c-radio input:checked + .c-radio__text::after {
  box-sizing: border-box;
  position: absolute;
  top: 4px;
  left: 1px;
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: rgb(var(--black));
}
@media all and (min-width: 768px) {

  .c-form .mwform-radio-field .mwform-radio-field-text::before,
.c-form .mwform-radio-field .c-radio__text::before,
.c-form .c-radio .mwform-radio-field-text::before,
.c-form .c-radio .c-radio__text::before {
    top: 5px;
  }
  .c-form .mwform-radio-field input:checked + .mwform-radio-field-text::after,
.c-form .mwform-radio-field input:checked + .c-radio__text::after,
.c-form .c-radio input:checked + .mwform-radio-field-text::after,
.c-form .c-radio input:checked + .c-radio__text::after {
    top: 6px;
  }
}

.c-radio-list {
  display: flex;
  flex-wrap: wrap;
}
.c-radio-list .mwform-radio-field,
.c-radio-list .c-radio {
  display: inline-block;
  margin-right: 20px;
}
.c-radio-list .mwform-radio-field + .mwform-radio-field, .c-radio-list .mwform-radio-field + .c-radio,
.c-radio-list .c-radio + .mwform-radio-field,
.c-radio-list .c-radio + .c-radio {
  margin-top: 0;
}

/* .c-form .mwform-checkbox-field
================================================ */
.c-form .mwform-checkbox-field,
.c-form .c-checkbox {
  display: block;
}
.c-form .mwform-checkbox-field + .mwform-checkbox-field,
.c-form .mwform-checkbox-field + .c-checkbox,
.c-form .c-checkbox + .mwform-checkbox-field,
.c-form .c-checkbox + .c-checkbox {
  margin-top: 10px;
}
.c-form .mwform-checkbox-field label,
.c-form .c-checkbox label {
  display: block;
  cursor: pointer;
}
.c-form .mwform-checkbox-field input,
.c-form .c-checkbox input {
  display: none;
}
.c-form .mwform-checkbox-field .mwform-checkbox-field-text,
.c-form .mwform-checkbox-field .c-checkbox__text,
.c-form .c-checkbox .mwform-checkbox-field-text,
.c-form .c-checkbox .c-checkbox__text {
  position: relative;
  display: inline-block;
  padding-left: 28px;
  vertical-align: top;
  padding-top: 2px;
}
.c-form .mwform-checkbox-field .mwform-checkbox-field-text::before,
.c-form .mwform-checkbox-field .c-checkbox__text::before,
.c-form .c-checkbox .mwform-checkbox-field-text::before,
.c-form .c-checkbox .c-checkbox__text::before {
  box-sizing: border-box;
  position: absolute;
  top: 2px;
  left: 0;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid rgb(var(--border));
  background: #F2F2F2;
}
.c-form .mwform-checkbox-field input:checked + .mwform-checkbox-field-text::after,
.c-form .mwform-checkbox-field input:checked + .c-checkbox__text::after,
.c-form .c-checkbox input:checked + .mwform-checkbox-field-text::after,
.c-form .c-checkbox input:checked + .c-checkbox__text::after {
  position: absolute;
  top: 6px;
  left: 3px;
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  border-style: solid;
  border-width: 3px 3px 0 0;
  transform: rotate(135deg);
  color: rgb(var(--orange));
}
@media all and (min-width: 768px) {
  .c-form .mwform-checkbox-field .mwform-checkbox-field-text::before,
.c-form .mwform-checkbox-field .c-checkbox__text::before,
.c-form .c-checkbox .mwform-checkbox-field-text::before,
.c-form .c-checkbox .c-checkbox__text::before {
    top: 5px;
  }
  .c-form .mwform-checkbox-field input:checked + .mwform-checkbox-field-text::after,
.c-form .mwform-checkbox-field input:checked + .c-checkbox__text::after,
.c-form .c-checkbox input:checked + .mwform-checkbox-field-text::after,
.c-form .c-checkbox input:checked + .c-checkbox__text::after {
    top: 9px;
  }
}

.c-checkbox-list {
  display: flex;
  flex-wrap: wrap;
}
.c-checkbox-list .mwform-checkbox-field,
.c-checkbox-list .c-checkbox {
  display: inline-block;
  margin-right: 20px;
}
.c-checkbox-list .mwform-checkbox-field + .mwform-checkbox-field, .c-checkbox-list .mwform-checkbox-field + .c-checkbox,
.c-checkbox-list .c-checkbox + .mwform-checkbox-field,
.c-checkbox-list .c-checkbox + .c-checkbox {
  margin-top: 0;
}

/* .mw_wp_form リセチE
================================================ */
.mw_wp_form .c-form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

/* .c-form-thanks
================================================ */
.c-form-thanks__txt {
  margin-bottom: 10px;
}

/*  .c-head01
================================================== */
.c-head01 {
  margin-bottom: 20px;
}
.c-head01__en {
  display: inline-block;
  font-size: 3.2rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  position: relative;
}
.c-head01__en::before {
  position: absolute;
  top: 8px;
  left: -17px;
  display: inline-block;
  width: 11px;
  height: 11px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227%22%20height%3D%227%22%20viewBox%3D%220%200%207%207%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_116779%22%20data-name%3D%22%E3%83%91%E3%82%B9%20116779%22%20d%3D%22M161.184%2C382.7h.07a3.819%2C3.819%2C0%2C0%2C0-3.2-1.708%2C3.76%2C3.76%2C0%2C0%2C0-3.8%2C3.717%2C3.706%2C3.706%2C0%2C0%2C0%2C2.018%2C3.283%2C10.572%2C10.572%2C0%2C0%2C1%2C2.129-4.047A3.708%2C3.708%2C0%2C0%2C1%2C161.184%2C382.7Z%22%20transform%3D%22translate(-154.254%20-380.994)%22%20fill%3D%22%23EB6700%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.c-head01__main {
  font-weight: 700;
}
@media all and (min-width: 768px) {
  .c-head01 {
    margin-bottom: 50px;
  }
  .c-head01__en {
    font-size: 7rem;
  }
  .c-head01__en::before {
    top: 19px;
    left: -39px;
    display: inline-block;
    width: 19px;
    height: 19px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227%22%20height%3D%227%22%20viewBox%3D%220%200%207%207%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_116779%22%20data-name%3D%22%E3%83%91%E3%82%B9%20116779%22%20d%3D%22M161.184%2C382.7h.07a3.819%2C3.819%2C0%2C0%2C0-3.2-1.708%2C3.76%2C3.76%2C0%2C0%2C0-3.8%2C3.717%2C3.706%2C3.706%2C0%2C0%2C0%2C2.018%2C3.283%2C10.572%2C10.572%2C0%2C0%2C1%2C2.129-4.047A3.708%2C3.708%2C0%2C0%2C1%2C161.184%2C382.7Z%22%20transform%3D%22translate(-154.254%20-380.994)%22%20fill%3D%22%23EB6700%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
  .c-head01__main {
    font-size: 2.2rem;
  }
}

/*  .c-head01.is-center
================================================== */
.c-head01.is-center {
  text-align: center;
}

/*  .c-head01.is-flex
================================================== */
.c-head01.is-flex {
  display: flex;
  align-items: center;
}
.c-head01.is-flex .c-head01__main {
  margin-left: 15px;
  transform: translateY(3px);
}
@media all and (min-width: 768px) {
  .c-head01.is-flex .c-head01__main {
    margin-left: 30px;
    transform: translateY(7px);
  }
}

/*  .c-head02
================================================== */
.c-head02 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  padding-bottom: 10px;
  position: relative;
}
.c-head02::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, #EB6700, #F8B41E);
  bottom: 0;
  left: 0;
}
@media all and (min-width: 768px) {
  .c-head02 {
    font-size: 3.6rem;
    padding-bottom: 20px;
    margin-bottom: 45px;
  }
  .c-head02::after {
    width: 80px;
  }
}

/*  .c-head02.is-center
================================================== */
.c-head02.is-center {
  text-align: center;
}
.c-head02.is-center::after {
  left: 50%;
  transform: translateX(-50%);
}

/*  .c-head03
================================================== */
.c-head03 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-left: 10px;
  position: relative;
}
.c-head03::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #EB6700, #F8B41E);
  top: 0;
  left: 0;
}
@media all and (min-width: 768px) {
  .c-head03 {
    font-size: 2.4rem;
    padding-left: 16px;
  }
}

/*  .c-head04
================================================== */
.c-head04 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  padding-bottom: 6px;
  margin-bottom: 20px;
  border-bottom: solid 2px rgb(var(--border));
}
@media all and (min-width: 768px) {
  .c-head04 {
    font-size: 2.8rem;
    padding-bottom: 15px;
    margin-bottom: 35px;
  }
}

/* .c-ico
================================================== */
.c-ico {
  display: inline-block;
  vertical-align: middle;
}
.c-ico svg {
  transition: all 0.3s ease;
}

/* c-interview01
=============================================== */
@media all and (max-width: 767px) {
  .c-interview01__note {
    margin-top: 1.5em;
  }
}

/*  .c-interview01-sec
================================================== */
.c-interview01-sec__img {
  margin-left: 32px;
  margin-bottom: 32px;
  position: relative;
}
.c-interview01-sec__img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: -32px;
  left: -32px;
  background: linear-gradient(to bottom, #F8E0CB, #EBB3B0);
  opacity: 0.4;
  z-index: -2;
}
.c-interview01-sec__img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: -32px;
  left: -32px;
  background: url(../img/interview/detail/dot_interview01.png);
  z-index: -1;
}
.c-interview01-sec__head-copy {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  padding: 10px 0 10px 120px;
  margin-bottom: 15px;
}
.c-interview01-sec__head-copy::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background: rgb(var(--orange));
  top: 50%;
  left: 90px;
  margin-top: -1px;
}
.c-interview01-sec__head-en {
  font-size: 6rem;
  opacity: 0.26;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-interview01-sec__txt {
  color: rgb(var(--black));
}
.c-interview01-sec__content + .c-interview01-sec__content {
  padding-top: 50px;
}
@media all and (max-width: 767px) {
  .c-interview01-sec__area-img + .c-interview01-sec__area-txt {
    margin-top: 60px;
  }
  .c-interview01-sec__area-txt + .c-interview01-sec__area-img {
    margin-top: 30px;
  }
}
@media all and (min-width: 768px) {
  .c-interview01-sec {
    overflow: hidden;
  }
  .c-interview01-sec__img {
    margin: 0;
  }
  .c-interview01-sec__img::before, .c-interview01-sec__img::after {
    left: -50px;
    bottom: -50px;
  }
  .c-interview01-sec__content {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .c-interview01-sec__content + .c-interview01-sec__content {
    flex-direction: row-reverse;
    padding-top: 130px;
  }
  .c-interview01-sec__area-img {
    width: 450px;
  }
  .c-interview01-sec__area-txt {
    width: 608px;
  }
  .c-interview01-sec__head-copy {
    margin-bottom: 20px;
  }
}

/*  .c-interview01-sec.is-first
================================================== */
@media all and (max-width: 767px) {
  .c-interview01-sec.is-first .c-interview01-sec__inner {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .c-interview01-sec.is-first .c-interview01-sec__area-img {
    margin: 0 15px;
  }
}
@media all and (min-width: 768px) {
  .c-interview01-sec.is-first .c-interview01-sec__inner {
    padding-top: 80px;
    padding-bottom: 150px;
  }
  .c-interview01-sec.is-first .c-interview01-sec__area-txt {
    padding-top: 50px;
  }
}

/*  .c-interview01-sec.is-second
================================================== */
.c-interview01-sec.is-second .c-interview01-sec__inner {
  padding-top: 40px;
  padding-bottom: 50px;
}
.c-interview01-sec.is-second .c-interview01-sec__img {
  margin-left: 22px;
  margin-bottom: 22px;
}
.c-interview01-sec.is-second .c-interview01-sec__img::before, .c-interview01-sec.is-second .c-interview01-sec__img::after {
  bottom: -22px;
  left: -22px;
}
.c-interview01-sec.is-second .c-interview01-sec__content:nth-child(odd) .c-interview01-sec__img {
  margin-left: 0;
  margin-right: 22px;
}
.c-interview01-sec.is-second .c-interview01-sec__content:nth-child(odd) .c-interview01-sec__img::before, .c-interview01-sec.is-second .c-interview01-sec__content:nth-child(odd) .c-interview01-sec__img::after {
  left: auto;
  right: -22px;
}
@media all and (min-width: 768px) {
  .c-interview01-sec.is-second .c-interview01-sec__inner {
    padding-top: 130px;
    padding-bottom: 120px;
  }
  .c-interview01-sec.is-second .c-interview01-sec__area-txt {
    width: 588px;
    padding-left: 60px;
    box-sizing: border-box;
  }
  .c-interview01-sec.is-second .c-interview01-sec__area-img {
    width: calc(100% - 588px);
  }
  .c-interview01-sec.is-second .c-interview01-sec__img {
    margin: 0;
  }
  .c-interview01-sec.is-second .c-interview01-sec__img::before, .c-interview01-sec.is-second .c-interview01-sec__img::after {
    bottom: -40px;
    left: -40px;
  }
  .c-interview01-sec.is-second .c-interview01-sec__content:nth-child(odd) .c-interview01-sec__area-txt {
    padding-left: 0;
    padding-right: 60px;
  }
  .c-interview01-sec.is-second .c-interview01-sec__content:nth-child(odd) .c-interview01-sec__img {
    margin: 0;
  }
  .c-interview01-sec.is-second .c-interview01-sec__content:nth-child(odd) .c-interview01-sec__img::before, .c-interview01-sec.is-second .c-interview01-sec__content:nth-child(odd) .c-interview01-sec__img::after {
    left: auto;
    right: -40px;
  }
}
@media all and (min-width: 1510px ) {
  .c-interview01-sec.is-second .c-interview01-sec__area-txt {
    width: calc(100% - 600px);
    padding-right: 150px;
  }
  .c-interview01-sec.is-second .c-interview01-sec__area-img {
    width: 600px;
  }
  .c-interview01-sec.is-second .c-interview01-sec__content:nth-child(odd) .c-interview01-sec__area-txt {
    padding-left: 150px;
    padding-right: 60px;
  }
}

/*  .c-interview01-sec.is-future
================================================== */
.c-interview01-sec.is-future .c-interview01-sec__inner {
  padding-top: 40px;
}
.c-interview01-sec.is-future .c-interview01-sec__img {
  margin-left: 0;
  margin-right: 12px;
  margin-bottom: 12px;
}
.c-interview01-sec.is-future .c-interview01-sec__img::before, .c-interview01-sec.is-future .c-interview01-sec__img::after {
  left: auto;
  right: -12px;
  bottom: -12px;
}
@media all and (min-width: 768px) {
  .c-interview01-sec.is-future .c-interview01-sec__inner {
    padding-top: 110px;
    padding-bottom: 60px;
  }
  .c-interview01-sec.is-future .c-interview01-sec__content {
    display: block;
  }
  .c-interview01-sec.is-future .c-interview01-sec__area-txt, .c-interview01-sec.is-future .c-interview01-sec__area-img {
    width: 100%;
  }
  .c-interview01-sec.is-future .c-interview01-sec__area-img {
    margin-top: 50px;
  }
  .c-interview01-sec.is-future .c-interview01-sec__img {
    margin: 0;
  }
  .c-interview01-sec.is-future .c-interview01-sec__img::before, .c-interview01-sec.is-future .c-interview01-sec__img::after {
    left: auto;
    right: -40px;
    bottom: -40px;
  }
}

/*  .c-interview01-schedule
================================================== */
.c-interview01-schedule {
  color: #fff;
  position: relative;
}
.c-interview01-schedule::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/interview/detail/bg_schedule01_sp.jpg) no-repeat 0 100%/cover;
}
.c-interview01-schedule__inner {
  position: relative;
  padding-top: 35px;
  padding-bottom: 40px;
}
.c-interview01-schedule__head {
  padding-left: 15px;
}
.c-interview01-schedule__head-en::before {
  display: inline-block;
  width: 11px;
  height: 11px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227%22%20height%3D%227%22%20viewBox%3D%220%200%207%207%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_116779%22%20data-name%3D%22%E3%83%91%E3%82%B9%20116779%22%20d%3D%22M161.184%2C382.7h.07a3.819%2C3.819%2C0%2C0%2C0-3.2-1.708%2C3.76%2C3.76%2C0%2C0%2C0-3.8%2C3.717%2C3.706%2C3.706%2C0%2C0%2C0%2C2.018%2C3.283%2C10.572%2C10.572%2C0%2C0%2C1%2C2.129-4.047A3.708%2C3.708%2C0%2C0%2C1%2C161.184%2C382.7Z%22%20transform%3D%22translate(-154.254%20-380.994)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.c-interview01-schedule__list {
  position: relative;
}
.c-interview01-schedule__list::before {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(100% - 20px);
  top: 10px;
  left: 77px;
  background: #fff;
}
.c-interview01-schedule__item {
  display: flex;
  flex-wrap: wrap;
}
.c-interview01-schedule__item + .c-interview01-schedule__item {
  margin-top: 25px;
}
.c-interview01-schedule__time {
  font-size: 2rem;
  width: 77px;
  line-height: 1;
  padding-top: 3px;
}
.c-interview01-schedule__txt {
  font-size: 1.6rem;
  width: calc(100% - 77px);
  padding-left: 54px;
  box-sizing: border-box;
  position: relative;
}
.c-interview01-schedule__txt::before {
  position: absolute;
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  top: 8px;
  left: -5px;
}
.c-interview01-schedule__txt::after {
  position: absolute;
  content: "";
  width: 28px;
  height: 3px;
  top: 12px;
  left: 15px;
  background: url(../img/interview/detail/ico_schedule01.png) no-repeat 0 100%/cover;
}
@media all and (max-width: 767px) {
  .c-interview01-schedule__list + .c-interview01-schedule__list {
    margin-top: 25px;
    position: relative;
  }
  .c-interview01-schedule__list + .c-interview01-schedule__list::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% + 20px);
    top: -35px;
    left: 77px;
    background: #fff;
  }
}
@media all and (min-width: 768px) {
  .c-interview01-schedule::before {
    background: url(../img/interview/detail/bg_schedule01_pc.jpg) no-repeat 0 100%/cover;
  }
  .c-interview01-schedule__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .c-interview01-schedule__head {
    padding-left: 40px;
  }
  .c-interview01-schedule__head-en::before {
    display: inline-block;
    width: 19px;
    height: 19px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227%22%20height%3D%227%22%20viewBox%3D%220%200%207%207%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_116779%22%20data-name%3D%22%E3%83%91%E3%82%B9%20116779%22%20d%3D%22M161.184%2C382.7h.07a3.819%2C3.819%2C0%2C0%2C0-3.2-1.708%2C3.76%2C3.76%2C0%2C0%2C0-3.8%2C3.717%2C3.706%2C3.706%2C0%2C0%2C0%2C2.018%2C3.283%2C10.572%2C10.572%2C0%2C0%2C1%2C2.129-4.047A3.708%2C3.708%2C0%2C0%2C1%2C161.184%2C382.7Z%22%20transform%3D%22translate(-154.254%20-380.994)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
  .c-interview01-schedule__list {
    width: 50%;
    height: 100%;
  }
  .c-interview01-schedule__list::before {
    left: 120px;
  }
  .c-interview01-schedule__list-wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .c-interview01-schedule__item + .c-interview01-schedule__item {
    margin-top: 50px;
  }
  .c-interview01-schedule__time {
    width: 120px;
    font-size: 2.4rem;
    padding-top: 1px;
  }
  .c-interview01-schedule__txt {
    width: calc(100% - 120px);
  }
}

/*  .c-list01
================================================== */
.c-list01__item {
  padding-left: 15px;
  letter-spacing: 0.06em;
  position: relative;
}
.c-list01__item::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgb(var(--orange));
  top: 10px;
  left: 5px;
}
@media all and (min-width: 768px) {
  .c-list01__item::before {
    width: 3px;
    height: 3px;
    top: 11px;

  }
}

/*  .c-list02
================================================== */
.c-list02__item {
  padding-left: 25px;
  letter-spacing: 0.06em;
  color: rgb(var(--black));
  counter-increment: number;
  position: relative;
}
.c-list02__item::before {
  content: "0" counter(number) ".";
  position: absolute;
  top: 0;
  left: 0;
  color: rgb(var(--orange));
}
@media all and (min-width: 768px) {
  .c-list02__item {
    padding-left: 28px;
  }
}

/*  .c-other01
================================================== */
.c-other01__inner {
  padding-top: 60px;
}
.c-other01-bnr {
  margin-left: 35px;
  position: relative;
}
.c-other01-bnr__en {
  position: absolute;
  top: 47px;
  left: -90px;
  font-size: 1.8rem;
  transform: rotate(90deg);
}
.c-other01-bnr__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: 140px;
  background: url(../img/faq/bg_other01_sp.jpg) no-repeat 0 100%/cover;
}
.c-other01-bnr__head {
  margin: 0;
  margin-left: 30px;
}
.c-other01-bnr__head-en {
  font-size: 2.8rem;
}
.c-other01-bnr__head-main {
  font-size: 1.2rem;
}
.c-other01-bnr__btn {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgb(var(--lightyellow));
  border-radius: 50%;
}
.c-other01-bnr__btn svg {
  width: 12px;
  color: rgb(var(--orange));
}
@media all and (min-width: 768px) {
  .c-other01__inner {
    padding-top: 120px;
  }
  .c-other01-bnr {
    width: 800px;
    margin: 0 auto;
  }
  .c-other01-bnr__link {
    height: 200px;
    background: url(../img/faq/bg_other01_pc.jpg) no-repeat 0 100%/cover;
  }
  .c-other01-bnr__link:hover .c-other01-bnr__btn {
    background: rgb(var(--orange));
  }
  .c-other01-bnr__link:hover .c-other01-bnr__btn svg {
    color: #fff;
  }
  .c-other01-bnr__en {
    font-size: 2rem;
    line-height: 1.5;
    top: 16px;
  }
  .c-other01-bnr__head {
    margin-left: 70px;
  }
  .c-other01-bnr__head-en {
    font-size: 3.7rem;
  }
  .c-other01-bnr__head-en::before {
    top: 10px;
    left: -25px;
  }
  .c-other01-bnr__head-main {
    font-size: 1.1rem;
  }
  .c-other01-bnr__btn {
    width: 60px;
    height: 60px;
    right: 50px;
  }
  .c-other01-bnr__btn svg {
    width: 17px;
  }
}

/* .c-pager01
===================================*/
.c-pager01 {
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  margin: 30px -5px -10px;
}
.c-pager01 li {
  margin: 0 5px 10px;
}
.c-pager01 li a, .c-pager01 li span {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 30px;
  height: 30px;
  line-height: 1;
  border: 1px solid rgb(var(--black));
  text-decoration: none;
}
.c-pager01 li.pages span {
  width: auto;
  border: 0;
}
.c-pager01 li.current span {
  color: #fff;
  background: rgb(var(--black));
}
.c-pager01 li.first, .c-pager01 li.previous {
  margin-right: 15px;
}
.c-pager01 li.first a, .c-pager01 li.last a {
  width: auto;
  border-color: transparent;
  padding-right: 15px;
  padding-left: 15px;
}
.c-pager01 li.next, .c-pager01 li.last {
  margin-left: 15px;
}
.c-pager01 li.extend span {
  border: 0;
}
@media all and (min-width: 768px) {
  .c-pager01 li a:hover {
    text-decoration: none;
    border: 1px solid rgb(var(--black));
    background-color: rgb(var(--black));
    color: #fff;
  }
}

/*  .c-pager02
================================================== */
.c-pager02 {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  line-height: 1;
}
.c-pager02 a {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 50px;
  padding: 15px;
  border: 1px solid;
  text-decoration: none;
}
.c-pager02__previous, .c-pager02__next {
  width: calc(50% - 10px);
}
.c-pager02__previous {
  float: left;
}
.c-pager02__previous a {
  justify-content: flex-start;
  padding-left: 30px;
}
.c-pager02__next {
  float: right;
}
.c-pager02__next a {
  justify-content: flex-end;
  padding-right: 30px;
}
.c-pager02__all {
  width: 100%;
  clear: both;
  padding-top: 20px;
}
.c-pager02__all a {
  justify-content: center;
}
@media all and (min-width: 768px) {
  .c-pager02 a {
    transition: all 0.3s ease;
  }
  .c-pager02 a:hover {
    background: rgb(var(--black));
    color: #fff;
    border-color: rgb(var(--black));
  }
}

/* .c-single-content
================================================== */
.c-single-content *:first-child {
  margin-top: 0;
}
.c-single-content *:last-child {
  margin-bottom: 0;
}
.c-single-content a {
  text-decoration: underline;
}
.c-single-content ul {
  padding-left: 0;
  list-style: none;
}
.c-single-content ul li {
  padding-left: 15px;
  letter-spacing: 0.06em;
  position: relative;
}
.c-single-content ul li::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgb(var(--orange));
  top: 10px;
  left: 5px;
}
@media all and (min-width: 768px) {
  .c-single-content a:hover {
    text-decoration: none;
  }
  .c-single-content ul li::before {
    width: 3px;
    height: 3px;
    top: 11px;
  }
  .c-single-content .alignleft {
    float: left;
  }
  .c-single-content .alignright {
    float: right;
  }
  .c-single-content .aligncenter {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

/*  .c-tab01
================================================== */
.c-tab01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-tab01__item {
  cursor: pointer;
  width: calc(50% - 3px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-bottom: none;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-weight: 700;
  background: #eee;
}
.c-tab01__item.is-active {
  color: #fff;
  background: linear-gradient(to right, #EB6700, #F8B41E);
  border: none;
}
.c-tab01__content {
  border-top: solid 2px;
  padding-top: 25px;
  padding-bottom: 50px;
  background: #fff;
}
@media all and (max-width: 767px) {
  .c-tab01__content {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media all and (min-width: 768px) {
  .c-tab01 {
    justify-content: center;
  }
  .c-tab01__item {
    width: 355px;
    height: 80px;
    margin: 0 10px;
    font-size: 2rem;
  }
  .c-tab01__content {
    padding: 50px 100px 200px;
  }
}

/*  .c-tab01.is-col3
================================================== */
.c-tab01.is-col3 .c-tab01__item {
  width: calc(33.33% - 8px);
}
.c-tab01.is-col3 .c-tab01__item.is-active {
  background: linear-gradient(to left, #F28E10, #F8B41E);
}
@media all and (min-width: 768px) {
  .c-tab01.is-col3 .c-tab01__item {
    width: 300px;
    margin: 0 5px;
  }
}

/*  .c-tab01.is-bottom
================================================== */
.c-tab01.is-bottom .c-tab01__item {
  border: solid 1px rgb(var(--border));
  border-top: none;
}
.c-tab01.is-bottom .c-tab01__item.is-active {
  border: none;
}

/*  .c-tab01__content.is-col3
================================================== */
.c-tab01__content {
  border-bottom: solid 2px;
}
@media all and (min-width: 768px) {
  .c-tab01__content {
    padding: 60px 100px;
  }
}

/*  .c-tab02
================================================== */
.c-tab02 {
  display: flex;
  flex-wrap: wrap;
  margin: -5px 15px 15px;
}
.c-tab02__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: calc(50% - 10px);
  height: 40px;
  margin: 5px;
  border: solid 1px;
  border-radius: 20px;
  box-sizing: border-box;
}
.c-tab02__item.is-active {
  color: #fff;
  background: rgb(var(--orange));
}
.c-tab02__content-item {
  display: none;
}
.c-tab02__content-item.is-active {
  display: block;
}
@media all and (min-width: 768px) {
  .c-tab02 {
    margin: -5px auto 30px;
    justify-content: center;
  }
  .c-tab02__item {
    width: 150px;
    cursor: pointer;
  }
}

/*  .c-table01
================================================== */
.c-table01 {
  text-align: left;
}
.c-table01 th {
  padding-top: 15px;
  font-size: 1.6rem;
}
.c-table01 td {
  color: rgb(var(--black));
  padding-bottom: 15px;
  border-bottom: dotted 1px rgb(var(--border));
}
.c-table01__txt + .c-table01__txt {
  margin-top: 1.5em;
}
.c-table01__note {
  margin-top: 1.5em;
  font-size: 1.4rem;
  color: #B8ADA5;
}
.c-table01__note + .c-table01__txt {
  margin-top: 1.5em;
}
.c-table01-list__txt {
  padding-left: 2em;
}
.c-table01-list + .c-table01__txt {
  margin-top: 1.5em;
}
@media all and (max-width: 767px) {
  .c-table01 table, .c-table01 thead, .c-table01 tbody, .c-table01 tr, .c-table01 th, .c-table01 td {
    display: block;
  }
  .c-table01 th {
    border-bottom: 0;
  }
  .c-table01 tr + tr th {
    border-top: 0;
  }
}
@media all and (min-width: 768px) {
  .c-table01 th, .c-table01 td {
    padding: 20px 0 18px;
  }
  .c-table01 th {
    width: 150px;
    border-bottom: dotted 1px rgb(var(--border));
  }
}

/*  .c-table02
================================================== */
.c-table02 th, .c-table02 td {
  text-align: left;
  letter-spacing: 0.06em;
  padding: 15px;
  border: solid 1px rgb(var(--border));
  box-sizing: border-box;
}
.c-table02 th {
  line-height: 1.6;
}
.c-table02 th:first-child {
  width: 150px;
}
.c-table02 thead th {
  padding: 10px;
  text-align: center;
}
.c-table02 td {
  color: rgb(var(--black));
}
@media all and (min-width: 768px) {
  .c-table02 th {
    padding: 20px;
  }
  .c-table02 th:first-child {
    width: 197px;
  }
  .c-table02 thead th {
    padding: 15px 15px 12px;
  }
  .c-table02 td {
    padding: 20px;
  }
}

/* .l-breadcrumb
================================================ */
.l-breadcrumb {
  position: relative;
}
.l-breadcrumb::before {
  position: absolute;
  content: "";
  width: 221px;
  height: 111px;
  background: url(../img/common/bg_circle01.png) no-repeat 0 100%/cover;
  top: 0;
  right: 0;
  z-index: -1;
}
@media all and (min-width: 768px) {
  .l-breadcrumb::before {
    width: 592px;
    height: 296px;
  }
}

.l-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-top: 20px;
  padding-bottom: 20px;
}
.l-breadcrumb-list__item {
  display: inline-block;
  vertical-align: top;
  font-size: 1.4rem;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item {
  padding-left: 30px;
  position: relative;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  top: 50%;
  left: 10px;
  background: rgb(var(--border));
  margin-top: -2px;
}
@media all and (max-width: 767px) {
  .l-breadcrumb-list {
    white-space: nowrap;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
  }
  .l-breadcrumb-list::-webkit-scrollbar {
    display: none;
  }
}
@media all and (min-width: 768px) {
  .l-breadcrumb-list {
    padding-top: 37px;
  }
}



/* .l-header
================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  z-index: 2000;
}
.l-header.is-open {
  background: #fff;
}
.l-header.is-open .l-header-info__logo-link::before {
  opacity: 1;
}
.l-header.is-open .l-header-btn__wrap {
  display: none;
}
@media all and (min-width: 768px) {
  .l-header {
    min-width: var(--contents_width_with_padding);
  }
}

/* .l-header.is-shown
================================================ */
.l-header.is-shown {
  background: #fff;
}
.l-header.is-shown .l-header-info__logo-link::before {
  opacity: 1;
}

/* .l-header-info
================================================== */
.l-header-info {
  position: relative;
  z-index: 3;
  height: 48px;
}
.l-header-info__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.l-header-info__logo {
  width: 174px;
  padding: 12px 0 0 15px;
}
.l-header-info__logo-link {
  display: block;
  position: relative;
}
.l-header-info__logo-link::before {
  opacity: 0;
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 174px;
  height: 24px;
  transform: translateY(-50%);
  background: url(../img/common/img_logo02.png) no-repeat 0 100%/contain;
}
@media all and (min-width: 768px) {
  .l-header-info {
    height: 70px;
  }
  .l-header-info__logo {
    width: 228px;
    padding: 20px 40px 0;
  }
  .l-header-info__logo-link::before {
    width: 228px;
    height: 31px;
  }
  .l-header-info__btn-contact {
    margin: 0;
  }
}
@media all and (min-width: 1510px ) {
  .l-header-info__logo {
    padding-left: 80px;
  }
}

/* .l-header-btn
================================================== */
@media all and (min-width: 768px) {
  .l-header-btn__wrap {
    position: absolute;
    top: 0;
    right: 70px;
    display: flex;
    flex-wrap: wrap;
  }
  .l-header-btn__link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 70px;
    color: #fff;
    background: rgb(var(--orange));
    font-weight: 700;
    transition: all 0.3s ease;
  }
  .l-header-btn__link:hover {
    opacity: 0.7;
  }
  .l-header-btn.is-yellow .l-header-btn__link {
    background: rgb(var(--yellow));
  }
}

/* .l-nav-btn
================================================== */
.l-nav-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 48px;
  background: #fff;
  border: none;
  cursor: pointer;
}
.l-nav-btn__line {
  position: absolute;
  left: 15px;
  width: 20px;
  height: 2px;
  content: "";
  background: rgb(var(--orange));
  transition: all 0.3s ease;
}
.l-nav-btn__line:nth-child(1) {
  top: 15px;
}
.l-nav-btn__line:nth-child(2) {
  top: 22px;
}
.l-nav-btn__line:nth-child(3) {
  top: 29px;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(1) {
  top: 22px;
  transform: rotate(-45deg);
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(2) {
  opacity: 0;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(3) {
  top: 22px;
  transform: rotate(45deg);
}
.l-nav-btn__txt {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
}
@media all and (min-width: 768px) {
  .l-nav-btn {
    width: 70px;
    height: 70px;
  }
  .l-nav-btn__line {
    left: 23px;
    width: 24px;
  }
  .l-nav-btn__line:nth-child(1) {
    top: 24px;
  }
  .l-nav-btn__line:nth-child(2) {
    top: 34px;
  }
  .l-nav-btn__line:nth-child(3) {
    top: 44px;
  }
  .l-nav-btn.is-open .l-nav-btn__line:nth-child(1) {
    top: 34px;
    transform: rotate(-45deg);
  }
  .l-nav-btn.is-open .l-nav-btn__line:nth-child(3) {
    top: 34px;
    transform: rotate(45deg);
  }
}

/* .l-nav
================================================ */
.l-nav {
  position: absolute;
  top: 48px;
  left: 0;
  z-index: 2;
  width: 100%;
  max-height: calc(100vh - 48px);
  min-width: 320px;
  padding: 70px 0;
  background: rgba(249, 249, 249, 0.8);
  -webkit-backdrop-filter: blur(35px);
  backdrop-filter: blur(35px);
  box-sizing: border-box;
  text-align: center;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  transform: translateX(120%);
  transition: all 0.3s ease;
}
.l-nav::-webkit-scrollbar {
  display: none;
}
.l-nav.is-open {
  transform: translateX(0);
}
@media all and (min-width: 768px) {
  .l-nav {
    top: 70px;
    max-height: calc(100vh - 70px);
    padding: 220px 0 420px;
    overflow: hidden;
  }
  .l-nav::before {
    position: absolute;
    content: "";
    width: 569px;
    height: 409px;
    bottom: -14px;
    left: 0;
    opacity: 0.66;
    background: url(../img/common/bg_footer01_pc.png) no-repeat 0 100%/cover;
  }
  .l-nav__inner {
    width: 960px;
    position: relative;
  }
}
@media all and (min-width: 1510px ) {
  .l-nav::before {
    width: 813px;
    height: 584px;
    bottom: -20px;
  }
}

/* .l-nav-list
================================================== */
.l-nav-list {
  width: 255px;
  margin: 0 auto;
}
.l-nav-list__item-link {
  display: block;
  padding-left: 12px;
  text-align: left;
  position: relative;
}
.l-nav-list__item-link::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-block;
  width: 7px;
  height: 7px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227%22%20height%3D%227%22%20viewBox%3D%220%200%207%207%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_116779%22%20data-name%3D%22%E3%83%91%E3%82%B9%20116779%22%20d%3D%22M161.184%2C382.7h.07a3.819%2C3.819%2C0%2C0%2C0-3.2-1.708%2C3.76%2C3.76%2C0%2C0%2C0-3.8%2C3.717%2C3.706%2C3.706%2C0%2C0%2C0%2C2.018%2C3.283%2C10.572%2C10.572%2C0%2C0%2C1%2C2.129-4.047A3.708%2C3.708%2C0%2C0%2C1%2C161.184%2C382.7Z%22%20transform%3D%22translate(-154.254%20-380.994)%22%20fill%3D%22%23EB6700%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.l-nav-list__item-en {
  display: block;
  font-size: 2rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.l-nav-list__item-txt {
  font-size: 1.3rem;
  font-weight: 700;
}
.l-nav-list__btn {
  width: 255px;
  margin: 0 auto;
}
.l-nav-list__btn-wrap {
  margin-top: 30px;
}
.l-nav-list__btn-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  background: rgb(var(--orange));
}
.l-nav-list__btn.is-yellow .l-nav-list__btn-link {
  background: rgb(var(--yellow));
}
@media all and (max-width: 767px) {
  .l-nav-list__item + .l-nav-list__item {
    margin-top: 20px;
  }
  .l-nav-list__btn + .l-nav-list__btn {
    margin-top: 10px;
  }
}
@media all and (min-width: 768px) {
  .l-nav-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 874px;
    margin: 0;
  }
  .l-nav-list__item {
    width: 437px;
    margin-bottom: 40px;
  }
  .l-nav-list__item-link {
    padding-left: 33px;
    transition: all 0.3s ease;
  }
  .l-nav-list__item-link::before {
    top: 5px;
    display: inline-block;
    width: 19px;
    height: 19px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227%22%20height%3D%227%22%20viewBox%3D%220%200%207%207%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_116779%22%20data-name%3D%22%E3%83%91%E3%82%B9%20116779%22%20d%3D%22M161.184%2C382.7h.07a3.819%2C3.819%2C0%2C0%2C0-3.2-1.708%2C3.76%2C3.76%2C0%2C0%2C0-3.8%2C3.717%2C3.706%2C3.706%2C0%2C0%2C0%2C2.018%2C3.283%2C10.572%2C10.572%2C0%2C0%2C1%2C2.129-4.047A3.708%2C3.708%2C0%2C0%2C1%2C161.184%2C382.7Z%22%20transform%3D%22translate(-154.254%20-380.994)%22%20fill%3D%22%23EB6700%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
  .l-nav-list__item-link:hover {
    opacity: 0.7;
  }
  .l-nav-list__item-en {
    font-size: 4.5rem;
    margin-bottom: 10px;
  }
  .l-nav-list__item-txt {
    font-size: 1.8rem;
  }
  .l-nav-list__btn {
    width: 240px;
    margin: 0;
  }
  .l-nav-list__btn + .l-nav-list__btn {
    margin-left: 12px;
  }
  .l-nav-list__btn-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
  }
  .l-nav-list__btn-link {
    height: 70px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
  }
  .l-nav-list__btn-link:hover {
    opacity: 0.7;
  }
}

/* .l-nav-overlay
================================================ */
.l-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1000;
}
@media all and (min-width: 768px) {
  .l-nav-overlay {
    display: none !important;
  }
}

/* .l-ie-attention
================================================ */
.l-ie-attention {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.l-ie-attention__txt {
  font-size: 3rem;
  margin-bottom: 18px;
}
.l-ie-attention__note {
  color: #989898;
}
.l-ie-attention__note .l-ie-attention__note-link {
  display: inline-block;
}
.l-ie-attention__note-link {
  font-size: 1.8rem;
  border-bottom: 1px solid;
  position: relative;
  margin-right: 25px;
  display: inline-block;
}
.l-ie-attention__note-link::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 13px;
  width: 11px;
  height: 11px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%20%3Cg%20id%3D%22link%22%20transform%3D%22translate(0.5%200.5)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_23829%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2023829%22%20width%3D%228%22%20height%3D%228%22%20transform%3D%22translate(3)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_4323%22%20data-name%3D%22%E3%83%91%E3%82%B9%204323%22%20d%3D%22M688%2C718.025h-6v-6%22%20transform%3D%22translate(-682%20-707.025)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center/100%;
}

/* .l-main-img HOME
================================================ */
.l-main-img {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  height: 100vh;
}
.l-main-img__mv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.l-main-img__mv-item {
  height: 100%;
}
.l-main-img .slick-slider .slick-track,
.l-main-img .slick-slider .slick-list {
  height: 100%;
}
.l-main-img .slick-slider img {
  height: 100vh;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.l-main-img__inner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 238px;
  display: flex;
  flex-wrap: wrap;
  z-index: 2;
}
.l-main-img__inner.is-bg {
  z-index: 1;
}
.l-main-img__inner.is-absolute {
  position: absolute;
  top: 70px;
}
.l-main-img__inner.is-absolute .l-main-img__copy::before {
  opacity: 1;
}
.l-main-img__mv {
  overflow: hidden;
  z-index: 2;
}
.l-main-img__mv .slick-list {
  font-size: 0;
}
.l-main-img__copy {
  z-index: 2;
  position: relative;
}
.l-main-img__copy::before {
  position: absolute;
  content: "";
  width: 362px;
  height: 277px;
  top: -19px;
  left: 0;
  background: url(../img/home/copy_mv_sp.png) no-repeat 0 100%/cover;
  opacity: 0;
  transition: all 0.3s ease;
}
.l-main-img__copy.is-shown::before {
  opacity: 1;
}
.l-main-img__copy-wrap {
  margin: 0 -30px;
  position: absolute;
  bottom: 0px;
  height: 238px;
  padding-top: 90px;
}
.l-main-img__copy svg {
  width: 346px;
  height: 238px;
}
@media all and (min-width: 768px) {
  .l-main-img__inner.is-absolute {
    top: auto;
    bottom: -92px;
  }
  .l-main-img__inner.is-absolute .l-main-img__copy::before {
    opacity: 1;
  }
  .l-main-img__copy::before {
    width: 553px;
    height: 395px;
    top: -12px;
    left: 6px;
    background: url(../img/home/copy_mv_pc.png) no-repeat 0 100%/cover;
  }
  .l-main-img__copy svg {
    transition: all 0.4s ease;
    width: 804px;
    height: 552px;
  }
  .l-main-img__copy.is-small {
    margin-left: -6px;
  }
  .l-main-img__copy.is-small svg {
    width: 550px;
    height: 369px;
  }
  .l-main-img__copy-wrap {
    bottom: -10px;
    margin: 0;
    height: 552px;
    padding-top: 350px;
    display: flex;
    align-items: flex-end;
  }
  .l-main-img__copy-wrap.is-shown svg {
    width: 549px;
    height: 369px;
  }
}
@media all and (min-width: 1510px ) {
  .l-main-img__inner.is-absolute {
    bottom: -47px;
  }
  .l-main-img__copy::before {
    width: 813px;
    height: 584px;
    top: -20px;
    left: 0px;
  }
  .l-main-img__copy svg {
    width: 1120px;
    height: 769px;
  }
  .l-main-img__copy.is-small {
    margin-left: -6px;
  }
  .l-main-img__copy.is-small svg {
    width: 793px;
    height: 545px;
  }
  .l-main-img__copy-wrap {
    height: 769px;
    padding-top: 400px;
  }
}

.slide-animation {
  -webkit-animation: fadezoom 8s 0s forwards;
  animation: fadezoom 8s 0s forwards;
}

@-webkit-keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
/* .l-sub-img
================================================ */
.l-sub-img {
  color: #fff;
  position: relative;
}
.l-sub-img::before {
  background: no-repeat center/cover;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.l-sub-img__inner {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 300px;
}
.l-sub-img__area-txt {
  margin-top: 19px;
  text-align: center;
}
.l-sub-img__txt {
  font-size: 2rem;
}
.l-sub-img__head {
  font-size: 2.8rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.l-sub-img__en {
  font-size: 1.6rem;
  color: rgb(var(--orange));
}
@media all and (max-width: 767px) {
  .l-sub-img__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media all and (min-width: 768px) {
  .l-sub-img__inner {
    height: 450px;
  }
  .l-sub-img__area-txt {
    margin-top: 68px;
  }
  .l-sub-img__txt {
    font-size: 2.8rem;
  }
  .l-sub-img__head {
    font-size: 4rem;
  }
  .l-sub-img__en {
    font-size: 2rem;
    margin-top: 10px;
  }
}

#faq .l-sub-img::before {
  background-image: url(../img/faq/bg_mv01_sp.jpg);
}
@media all and (min-width: 768px) {
  #faq .l-sub-img::before {
    background-image: url(../img/faq/bg_mv01_pc.jpg);
  }
}

#data .l-sub-img::before {
  background-image: url(../img/data/bg_mv01_sp.jpg);
}
@media all and (min-width: 768px) {
  #data .l-sub-img::before {
    background-image: url(../img/data/bg_mv01_pc.jpg);
  }
}

#requirements .l-sub-img::before {
  background-image: url(../img/requirements/bg_mv01_sp.jpg);
}
@media all and (min-width: 768px) {
  #requirements .l-sub-img::before {
    background-image: url(../img/requirements/bg_mv01_pc.jpg);
  }
}

#interview .l-sub-img::before {
  background-image: url(../img/interview/bg_mv01_sp.jpg);
}
@media all and (min-width: 768px) {
  #interview .l-sub-img::before {
    background-image: url(../img/interview/bg_mv01_pc.jpg);
  }
}

#entry .l-sub-img::before {
  background-image: url(../img/entry/bg_mv01_sp.jpg);
}
@media all and (min-width: 768px) {
  #entry .l-sub-img::before {
    background-image: url(../img/entry/bg_mv01_pc.jpg);
  }
}

#thanks .l-sub-img::before {
  background-image: url(../img/entry/bg_mv01_sp.jpg);
}
@media all and (min-width: 768px) {
  #thanks .l-sub-img::before {
    background-image: url(../img/entry/bg_mv01_pc.jpg);
  }
}

#newgraduate .l-sub-img::before {
  background-image: url(../img/newgraduate/bg_mv01_sp.jpg);
}
@media all and (min-width: 768px) {
  #newgraduate .l-sub-img::before {
    background-image: url(../img/newgraduate/bg_mv01_pc.jpg);
  }
}

#newgraduate_thanks .l-sub-img::before {
  background-image: url(../img/newgraduate/bg_mv01_sp.jpg);
}
@media all and (min-width: 768px) {
  #newgraduate_thanks .l-sub-img::before {
    background-image: url(../img/newgraduate/bg_mv01_pc.jpg);
  }
}

#guideline .l-sub-img::before {
  background-image: url(../img/guideline/bg_mv01_sp.jpg);
}
@media all and (min-width: 768px) {
  #guideline .l-sub-img::before {
    background-image: url(../img/guideline/bg_mv01_pc.jpg);
  }
}

#error .l-sub-img::before {
  background-image: url(../img/error/bg_mv01_sp.jpg);
}
@media all and (min-width: 768px) {
  #error .l-sub-img::before {
    background-image: url(../img/error/bg_mv01_pc.jpg);
  }
}

/* .l-sub-img.is-interview
================================================ */
.l-sub-img.is-interview::before {
  background: none !important;
}
.l-sub-img.is-interview .l-sub-img__inner {
  height: 0;
  padding-top: 100%;
  position: relative;
}
.l-sub-img.is-interview .l-sub-img__area-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.l-sub-img.is-interview .l-sub-img__area-txt {
  position: absolute;
  left: 30px;
  bottom: -10px;
  text-align: left;
}
.l-sub-img.is-interview .l-sub-img__copy {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.82;
}
.l-sub-img.is-interview .l-sub-img__copy span {
  padding: 5px 0.5em;
  background: #fff;
  color: rgb(var(--orange));
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.l-sub-img.is-interview .l-sub-img__info {
  display: inline-block;
  line-height: 1.4;
  box-sizing: border-box;
  padding: 5px 10px 5px 25px;
  position: relative;
  background: #fff;
  color: rgb(var(--black));
}
.l-sub-img.is-interview .l-sub-img__info::before {
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - 10px);
  top: 5px;
  left: 10px;
  background: linear-gradient(to bottom, #EB6700, #F8B41E);
}
.l-sub-img.is-interview .l-sub-img__name {
  font-size: 2.4rem;
}
.l-sub-img.is-interview .l-sub-img__txt {
  font-size: 1.4rem;
  font-weight: 700;
}
@media all and (min-width: 768px) {
  .l-sub-img.is-interview .l-sub-img__inner {
    padding-top: 680px;
  }
  .l-sub-img.is-interview .l-sub-img__area-img {
    height: 680px;
  }
  .l-sub-img.is-interview .l-sub-img__area-img img {
    height: 680px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .l-sub-img.is-interview .l-sub-img__area-txt {
    left: 0;
    bottom: 130px;
  }
  .l-sub-img.is-interview .l-sub-img__copy {
    font-size: 4rem;
  }
  .l-sub-img.is-interview .l-sub-img__copy span {
    padding: 10px 0.5em;
  }
  .l-sub-img.is-interview .l-sub-img__info {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    padding-left: 22px;
    padding: 10px 20px 10px 37px;
  }
  .l-sub-img.is-interview .l-sub-img__info:before {
    top: 10px;
    left: 15px;
    height: calc(100% - 20px);
  }
  .l-sub-img.is-interview .l-sub-img__name {
    width: 85px;
    font-size: 3.6rem;
  }
  .l-sub-img.is-interview .l-sub-img__txt {
    width: calc(100% - 85px);
    font-size: 1.6rem;
  }
}

/* .l-sidebar
================================================== */
.js-c-anime-elem[data-anime=fadein-up] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-up].is-animated {
  opacity: 1;
  transform: translateY(0);
}

.js-c-anime-elem[data-anime=fadein-left] {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-left].is-animated {
  opacity: 1;
  transform: translateX(0);
}

.js-c-anime-elem[data-anime=fadein-right] {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-right].is-animated {
  opacity: 1;
  transform: translateX(0);
}

.js-c-anime-elem[data-anime-delay="0.1"] {
  transition-delay: 0.1s;
}
.js-c-anime-elem[data-anime-delay="0.2"] {
  transition-delay: 0.2s;
}
.js-c-anime-elem[data-anime-delay="0.3"] {
  transition-delay: 0.3s;
}
.js-c-anime-elem[data-anime-delay="0.4"] {
  transition-delay: 0.4s;
}
.js-c-anime-elem[data-anime-delay="0.5"] {
  transition-delay: 0.5s;
}
.js-c-anime-elem[data-anime-delay="0.6"] {
  transition-delay: 0.6s;
}
.js-c-anime-elem[data-anime-delay="0.7"] {
  transition-delay: 0.7s;
}
.js-c-anime-elem[data-anime-delay="0.8"] {
  transition-delay: 0.8s;
}
.js-c-anime-elem[data-anime-delay="0.9"] {
  transition-delay: 0.9s;
}
.js-c-anime-elem[data-anime-delay="1"] {
  transition-delay: 1s;
}
.js-c-anime-elem[data-anime-delay="1.1"] {
  transition-delay: 1.1s;
}
.js-c-anime-elem[data-anime-delay="1.2"] {
  transition-delay: 1.2s;
}
.js-c-anime-elem[data-anime-delay="1.3"] {
  transition-delay: 1.3s;
}
.js-c-anime-elem[data-anime-delay="1.4"] {
  transition-delay: 1.4s;
}
.js-c-anime-elem[data-anime-delay="1.5"] {
  transition-delay: 1.5s;
}
.js-c-anime-elem[data-anime-delay="1.6"] {
  transition-delay: 1.6s;
}
.js-c-anime-elem[data-anime-delay="1.7"] {
  transition-delay: 1.7s;
}
.js-c-anime-elem[data-anime-delay="1.8"] {
  transition-delay: 1.8s;
}
.js-c-anime-elem[data-anime-delay="1.9"] {
  transition-delay: 1.9s;
}
.js-c-anime-elem[data-anime-delay="2"] {
  transition-delay: 2s;
}

.js-c-switch-tab {
  cursor: pointer;
}

.js-c-switch-content {
  display: none;
}
.js-c-switch-content.is-active {
  display: block;
}

.js-c-toggle-trigger {
  cursor: pointer;
}

.js-c-toggle-content {
  display: none;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

#data .l-sub-img__en {
  color: #fff;
}
@media all and (max-width: 767px) {
  #data .l-container .u-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* .data-about
================================================ */
.data-about__inner {
  padding-top: 20px;
  padding-bottom: 50px;
  position: relative;
}
.data-about__inner::before {
  position: absolute;
  content: "";
  width: 34px;
  height: 40px;
  top: -30px;
  left: 15px;
  background: url(../img/data/bg_about01.png) no-repeat 0 100%/cover;
}
.data-about__inner::after {
  position: absolute;
  content: "";
  width: 158px;
  height: 94px;
  bottom: 30px;
  right: 5px;
  background: url(../img/data/bg_about02.png) no-repeat 0 100%/cover;
}
.data-about__img {
  position: relative;
  z-index: 2;
  text-align: center;
}
@media all and (min-width: 768px) {
  .data-about {
    overflow: hidden;
  }
  .data-about__inner {
    padding-top: 80px;
    padding-bottom: 170px;
  }
  .data-about__inner::before {
    width: 124px;
    height: 147px;
    top: 85px;
    left: -180px;
  }
  .data-about__inner::after {
    width: 285px;
    height: 170px;
    right: -150px;
    bottom: 60px;
  }
}

/* .data-faq
================================================ */
.data-faq__img {
  text-align: center;
}

/* .data-other
================================================ */
.data-other__inner {
  padding-top: 40px;
}
.data-other__link {
  background: url(../img/data/bg_other01_sp.jpg) no-repeat 0 100%/cover;
}
@media all and (min-width: 768px) {
  .data-other__inner {
    padding-top: 200px;
  }
  .data-other__link {
    background: url(../img/data/bg_other01_pc.jpg) no-repeat 0 100%/cover;
  }
}

@media all and (max-width: 767px) {
  #entry .l-container .u-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* .entry-form
================================================ */
.entry-form__inner {
  padding-top: 20px;
}
.entry-form__txt {
  color: rgb(var(--black));
  margin-bottom: 30px;
}
@media all and (min-width: 768px) {
  .entry-form__inner {
    padding-top: 80px;
  }
  .entry-form__txt {
    margin-bottom: 60px;
  }
}

.mw_wp_form_confirm .entry-form__txt {
  display: none;
}

/* entry-thanks
=========================================== */
.entry-thanks__inner {
  padding-top: 30px;
}
.entry-thanks__btn .c-btn01__ico::before {
  display: inline-block;
  width: 12px;
  height: 7px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%227%22%20viewBox%3D%220%200%2012%207%22%3E%20%3Cpath%20id%3D%22%E5%90%88%E4%BD%93_22%22%20data-name%3D%22%E5%90%88%E4%BD%93%2022%22%20d%3D%22M7.995%2C6.125%2C9.831%2C4.119H0V2.882H9.832L7.995.875%2C8.8%2C0%2C12%2C3.5%2C8.8%2C7Z%22%20fill%3D%22%23EB6700%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
@media all and (min-width: 768px) {
  .entry-thanks__inner {
    padding-top: 50px;
  }
  .entry-thanks__txt {
    text-align: center;
  }
}

/* .error-page404
================================================ */
.error-page404__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media all and (min-width: 768px) {
  .error-page404__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .error-page404__txt {
    text-align: center;
  }
}

@media all and (max-width: 767px) {
  #faq .l-container .u-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* .faq-anchor
================================================ */
.faq-anchor__inner {
  padding-top: 20px;
}
@media all and (min-width: 768px) {
  .faq-anchor__inner {
    padding-top: 80px;
  }
}

/* .faq-sec
================================================ */
.faq-sec__inner {
  padding-top: 40px;
}
.faq-sec-detail + .faq-sec-detail {
  margin-top: 30px;
}
@media all and (min-width: 768px) {
  .faq-sec__inner {
    padding-top: 100px;
  }
  .faq-sec-detail + .faq-sec-detail {
    margin-top: 60px;
  }
}

@media all and (max-width: 767px) {
  #guideline .l-container .u-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* .guideline-anchor
================================================ */
.guideline-anchor__inner {
  padding-top: 20px;
}
@media all and (min-width: 768px) {
  .guideline-anchor__inner {
    padding-top: 80px;
  }
}

/* .guideline-career
================================================ */
.guideline-career__inner {
  padding-top: 40px;
  padding-bottom: 50px;
}
.guideline-career__lead {
  color: rgb(var(--black));
  letter-spacing: 0.06em;
}
.guideline-career__img {
  margin-top: 25px;
}
.guideline-career__txt {
  color: rgb(var(--black));
  margin-top: 20px;
  margin-bottom: 15px;
}
.guideline-career-detail {
  padding-top: 70px;
  margin-top: -70px;
}
@media all and (max-width: 767px) {
  .guideline-career-detail__table {
    overflow-x: scroll;
  }
  .guideline-career-detail__table table {
    width: 800px;
  }
}
@media all and (min-width: 768px) {
  .guideline-career__inner {
    padding-top: 100px;
    padding-bottom: 120px;
  }
  .guideline-career__lead {
    text-align: center;
  }
  .guideline-career__img {
    margin-top: 50px;
  }
  .guideline-career__txt {
    margin-top: 60px;
    margin-bottom: 40px;
  }
  .guideline-career-detail {
    padding-top: 100px;
    margin-top: -100px;
  }
}

/* .guideline-training
================================================ */
.guideline-training {
  background: #fff;
}
.guideline-training__inner {
  padding-top: 40px;
}
.guideline-training__lead {
  color: rgb(var(--black));
  letter-spacing: 0.06em;
}
.guideline-training__table {
  border-top: solid 1px rgb(var(--border));
  margin-top: 30px;
}
@media all and (min-width: 768px) {
  .guideline-training__inner {
    padding-top: 110px;
  }
  .guideline-training__lead {
    text-align: center;
  }
  .guideline-training__table {
    margin-top: 60px;
  }
}

/* .guideline-support
================================================ */
.guideline-support {
  background: #fff;
}
.guideline-support__inner {
  padding-top: 40px;
  padding-bottom: 50px;
}
.guideline-support-detail + .guideline-support-detail {
  margin-top: 40px;
}
.guideline-support-detail__txt {
  color: rgb(var(--black));
  letter-spacing: 0.06em;
}
.guideline-support-detail__table {
  border-top: solid 1px rgb(var(--border));
  margin-top: 25px;
}
.guideline-support-detail__list {
  margin-top: 25px;
}
@media all and (min-width: 768px) {
  .guideline-support__inner {
    padding-top: 170px;
    padding-bottom: 120px;
  }
  .guideline-support-detail + .guideline-support-detail {
    margin-top: 80px;
  }
  .guideline-support-detail__table {
    margin-top: 35px;
  }
  .guideline-support-detail__table th {
    vertical-align: middle;
    width: 184px;
  }
  .guideline-support-detail__table td {
    padding: 30px 50px 30px 0;
  }
  .guideline-support-detail__table-list {
    display: flex;
    flex-wrap: wrap;
  }
  .guideline-support-detail__table-list .c-list01__item {
    width: 50%;
    box-sizing: border-box;
  }
}

/* .guideline-welfare
================================================ */
.guideline-welfare__inner {
  padding-top: 40px;
}
.guideline-welfare__lead {
  color: rgb(var(--black));
  letter-spacing: 0.06em;
}
.guideline-welfare-detail {
  background: #fff;
  padding: 30px;
  position: relative;
}
.guideline-welfare-detail + .guideline-welfare-detail {
  margin-top: 10px;
}
.guideline-welfare-detail:last-child {
  padding-bottom: 50px;
}
.guideline-welfare-detail__img {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 73px;
}
.guideline-welfare-detail__head {
  margin-left: 100px;
  margin-top: 25px;
}
.guideline-welfare-detail__list {
  color: rgb(var(--black));
  display: flex;
  flex-wrap: wrap;
  margin: 40px -5px 0;
}
.guideline-welfare-detail__list .c-list01__item {
  margin: 3px 0;
  width: 50%;
  box-sizing: border-box;
}
.guideline-welfare-detail__list .c-list01__item.is-wide {
  width: 100%;
}
.guideline-welfare-list {
  margin-top: 45px;
  padding-top: 15px;
  border-top: solid 2px rgb(var(--border));
}
.guideline-welfare-list__item {
  padding: 20px;
  background: rgb(var(--bg));
  border-radius: 10px;
  margin: 10px 0;
}
.guideline-welfare-list__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.guideline-welfare-list__head-txt {
  font-size: 1.6rem;
  font-weight: 700;
  width: calc(100% - 100px);
  box-sizing: border-box;
  padding-right: 15px;
  line-height: 1.6;
}
.guideline-welfare-list__head-img {
  width: 100px;
}
.guideline-welfare-list__txt {
  margin-top: 10px;
  color: rgb(var(--black));
  letter-spacing: 0.06em;
}
@media all and (max-width: 767px) {
  .guideline-welfare-detail {
    margin: 30px -15px 0;
  }
  .guideline-welfare-detail__list .c-list01__item.is-sp-wide {
    width: 100%;
  }
}
@media all and (min-width: 768px) {
  .guideline-welfare__inner {
    padding-top: 110px;
  }
  .guideline-welfare__lead {
    text-align: center;
  }
  .guideline-welfare-detail {
    margin-top: 40px;
    padding: 60px;
  }
  .guideline-welfare-detail + .guideline-welfare-detail {
    margin-top: 20px;
  }
  .guideline-welfare-detail:first-of-type .guideline-welfare-detail__img {
    top: 110px;
  }
  .guideline-welfare-detail:last-of-type {
    padding-top: 90px;
  }
  .guideline-welfare-detail__img {
    width: 108px;
    top: 60px;
    left: 120px;
  }
  .guideline-welfare-detail__head {
    margin: 0 0 0 310px;
  }
  .guideline-welfare-detail__list {
    margin: 20px 0 0 310px;
  }
  .guideline-welfare-list {
    margin-top: 90px;
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .guideline-welfare-list__item {
    margin: 8px 0;
    padding: 30px;
    width: 480px;
    box-sizing: border-box;
  }
  .guideline-welfare-list__head-txt {
    font-size: 2rem;
  }
  .guideline-welfare-list__txt {
    margin-top: 15px;
  }
}

/* .guideline-anchor-bottom
================================================ */
.guideline-anchor-bottom__inner {
  padding-top: 50px;
}
@media all and (min-width: 768px) {
  .guideline-anchor-bottom__inner {
    padding-top: 60px;
  }
}

/* .home-message
================================================ */
.home-message {
  position: relative;
}
.home-message::before {
  position: absolute;
  content: "";
  width: 222px;
  height: 305px;
  top: 0;
  right: 0;
  background: url(../img/home/bg_message01_sp.png) no-repeat 0 100%/cover;
  z-index: -2;
}
.home-message__inner {
  padding-top: 368px;
}
.home-message__head {
  margin-bottom: 25px;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
}
.home-message__head::before {
  position: absolute;
  top: 8px;
  left: -17px;
  display: inline-block;
  width: 11px;
  height: 11px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227%22%20height%3D%227%22%20viewBox%3D%220%200%207%207%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_116779%22%20data-name%3D%22%E3%83%91%E3%82%B9%20116779%22%20d%3D%22M161.184%2C382.7h.07a3.819%2C3.819%2C0%2C0%2C0-3.2-1.708%2C3.76%2C3.76%2C0%2C0%2C0-3.8%2C3.717%2C3.706%2C3.706%2C0%2C0%2C0%2C2.018%2C3.283%2C10.572%2C10.572%2C0%2C0%2C1%2C2.129-4.047A3.708%2C3.708%2C0%2C0%2C1%2C161.184%2C382.7Z%22%20transform%3D%22translate(-154.254%20-380.994)%22%20fill%3D%22%23EB6700%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.home-message__txt {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.2;
  position: relative;
  z-index: 2;
}
.home-message__txt + .home-message__txt {
  margin-top: 20px;
}
.home-message__img {
  width: 71%;
  margin: 30px -15px -50px auto;
}
@media all and (min-width: 768px) {
  .home-message::before {
    width: 480px;
    height: 280px;
    background: url(../img/home/bg_message01_pc.png) no-repeat 0 100%/cover;
  }
  .home-message__inner {
    max-width: 860px;
    padding-top: 100px;
    padding-bottom: 180px;
  }
  .home-message__head {
    font-size: 2rem;
    margin-bottom: 45px;
  }
  .home-message__head::before {
    top: 7px;
    left: -39px;
    display: inline-block;
    width: 19px;
    height: 19px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227%22%20height%3D%227%22%20viewBox%3D%220%200%207%207%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_116779%22%20data-name%3D%22%E3%83%91%E3%82%B9%20116779%22%20d%3D%22M161.184%2C382.7h.07a3.819%2C3.819%2C0%2C0%2C0-3.2-1.708%2C3.76%2C3.76%2C0%2C0%2C0-3.8%2C3.717%2C3.706%2C3.706%2C0%2C0%2C0%2C2.018%2C3.283%2C10.572%2C10.572%2C0%2C0%2C1%2C2.129-4.047A3.708%2C3.708%2C0%2C0%2C1%2C161.184%2C382.7Z%22%20transform%3D%22translate(-154.254%20-380.994)%22%20fill%3D%22%23EB6700%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
  .home-message__txt {
    font-size: 1.6rem;
  }
  .home-message__img {
    width: 323px;
    position: absolute;
    margin: 0;
    top: 185px;
    right: 70px;
  }
}
@media all and (min-width: 1510px ) {
  .home-message::before {
    width: 800px;
    height: 400px;
  }
  .home-message__inner {
    max-width: 1100px;
    padding-top: 140px;
    padding-bottom: 330px;
  }
  .home-message__img {
    width: 560px;
    right: 40px;
    top: 257px;
  }
  .home-message__txt {
    font-size: 2rem;
  }
}

.bgextend {
  -webkit-animation-name: bgextendAnimeBase;
  animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  -webkit-animation-name: bgextendAnimeSecond;
  animation-name: bgextendAnimeSecond;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から右*/
.bgLRextend::before {
  -webkit-animation-name: bgLRextendAnime;
  animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: rgb(var(--orange));
  /*伸びる背景色の設?*/
  transform-origin: right;
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    width: 0;
  }
  50% {
    transform: scaleX(1);
    width: 100%;
  }
  51% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

@keyframes bgLRextendAnime {
  0% {
    width: 0;
  }
  50% {
    transform: scaleX(1);
    width: 100%;
  }
  51% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

/* .home-data
================================================ */
.home-data {
  overflow: hidden;
  background: url(../img/home/bg_data01_sp.jpg) no-repeat top center/cover;
}
.home-data__inner {
  padding-top: 140px;
  padding-bottom: 80px;
}
.home-data-bnr {
  position: relative;
}
.home-data-bnr::before {
  position: absolute;
  content: "";
  width: 44px;
  height: 52px;
  top: -29px;
  left: -23px;
  background: url(../img/home/bg_data02.png) no-repeat 0 100%/cover;
}
.home-data-bnr::after {
  position: absolute;
  content: "";
  width: 102px;
  height: 61px;
  bottom: -30px;
  right: -43px;
  background: url(../img/home/bg_data03.png) no-repeat 0 100%/cover;
}
.home-data-bnr__link {
  display: block;
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 2;
}
.home-data-bnr__btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
}
.home-data-bnr__ico {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgb(var(--lightyellow));
  border-radius: 50%;
}
.home-data-bnr__ico svg {
  width: 12px;
}
@media all and (min-width: 768px) {
  .home-data {
    background: url(../img/home/bg_data01_pc.jpg) no-repeat top center/cover;
  }
  .home-data__inner {
    padding-top: 280px;
    padding-bottom: 220px;
  }
  .home-data-bnr::before {
    width: 74px;
    height: 88px;
    top: -37px;
    left: -37px;
  }
  .home-data-bnr::after {
    width: 171px;
    height: 102px;
    bottom: -51px;
    right: -51px;
  }
  .home-data-bnr__link:hover .home-data-bnr__ico {
    color: #fff;
    background: rgb(var(--orange));
  }
  .home-data-bnr__btn {
    bottom: 30px;
    right: 30px;
  }
  .home-data-bnr__ico {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
  }
  .home-data-bnr__ico svg {
    width: 17px;
  }
}
@media all and (min-width: 1510px ) {
  .home-data-bnr::before {
    width: 124px;
    height: 147px;
    top: -86px;
    left: -70px;
  }
  .home-data-bnr::after {
    width: 285px;
    height: 170px;
    bottom: -50px;
    right: -155px;
  }
}

/* .home-interview
================================================ */
.home-interview {
  position: relative;
}
.home-interview::before {
  transition: all 0.3s ease;
  opacity: 0;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(165deg, #EB6700, #F8B41E);
}
.home-interview::after {
  transition: all 0.3s ease;
  opacity: 0.04;
  position: absolute;
  content: "";
  width: 100%;
  height: 815px;
  top: 210px;
  right: 0;
  background: url(../img/home/bg_interview01_sp.png) no-repeat 0 100%/cover;
}
.home-interview__inner {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}
.home-interview__inner::before {
  position: absolute;
  content: "";
  width: 61px;
  height: 61px;
  top: 140px;
  right: 55px;
  background: url(../img/home/bg_interview02.png) no-repeat 0 100%/cover;
}
.home-interview__inner::after {
  position: absolute;
  content: "";
  width: 94px;
  height: 94px;
  bottom: 38px;
  left: 12px;
  background: url(../img/home/bg_interview03.png) no-repeat 0 100%/cover;
}
.home-interview__btn {
  position: relative;
  z-index: 2;
}
@media all and (min-width: 768px) {
  .home-interview::before {
    background: linear-gradient(to bottom right, #EB6700, #F8B41E);
  }
  .home-interview::after {
    width: 665px;
    height: 577px;
    top: 0;
    background: url(../img/home/bg_interview01_pc.png) no-repeat 0 100%/cover;
  }
  .home-interview__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .home-interview__inner::before {
    width: 102px;
    height: 102px;
    top: 150px;
    right: 25px;
  }
  .home-interview__inner::after {
    width: 157px;
    height: 157px;
    bottom: 114px;
    left: -45px;
  }
  .home-interview__head {
    margin-bottom: 0;
    margin-left: 120px;
  }
  .home-interview__btn {
    margin: 0 70px 0 auto;
  }
}
@media all and (min-width: 1510px ) {
  .home-interview::after {
    width: 1109px;
    height: 962px;
  }
  .home-interview__inner {
    padding-top: 180px;
    padding-bottom: 180px;
  }
  .home-interview__inner::before {
    width: 170px;
    height: 170px;
    top: 215px;
    right: -10px;
  }
  .home-interview__inner::after {
    width: 262px;
    height: 262px;
    bottom: 150px;
    left: -100px;
  }
  .home-interview__head {
    margin-left: 150px;
  }
  .home-interview__btn {
    margin: 0 100px 0 auto;
  }
}

/* .home-interview.is-shown
================================================ */
.home-interview.is-shown::before {
  opacity: 1;
}
.home-interview.is-shown::after {
  opacity: 1;
}
.home-interview.is-shown .home-interview__head {
  color: #fff;
}
.home-interview.is-shown .home-interview__head-en::before {
  display: inline-block;
  width: 11px;
  height: 11px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227%22%20height%3D%227%22%20viewBox%3D%220%200%207%207%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_116779%22%20data-name%3D%22%E3%83%91%E3%82%B9%20116779%22%20d%3D%22M161.184%2C382.7h.07a3.819%2C3.819%2C0%2C0%2C0-3.2-1.708%2C3.76%2C3.76%2C0%2C0%2C0-3.8%2C3.717%2C3.706%2C3.706%2C0%2C0%2C0%2C2.018%2C3.283%2C10.572%2C10.572%2C0%2C0%2C1%2C2.129-4.047A3.708%2C3.708%2C0%2C0%2C1%2C161.184%2C382.7Z%22%20transform%3D%22translate(-154.254%20-380.994)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.home-interview.is-shown .home-interview-list__en {
  color: #fff;
}
.home-interview.is-shown .home-interview-list__area-txt {
  color: #fff;
}
@media all and (min-width: 768px) {
  .home-interview.is-shown .home-interview__head-en::before {
    display: inline-block;
    width: 19px;
    height: 19px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227%22%20height%3D%227%22%20viewBox%3D%220%200%207%207%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_116779%22%20data-name%3D%22%E3%83%91%E3%82%B9%20116779%22%20d%3D%22M161.184%2C382.7h.07a3.819%2C3.819%2C0%2C0%2C0-3.2-1.708%2C3.76%2C3.76%2C0%2C0%2C0-3.8%2C3.717%2C3.706%2C3.706%2C0%2C0%2C0%2C2.018%2C3.283%2C10.572%2C10.572%2C0%2C0%2C1%2C2.129-4.047A3.708%2C3.708%2C0%2C0%2C1%2C161.184%2C382.7Z%22%20transform%3D%22translate(-154.254%20-380.994)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
}

/* .home-faq
================================================ */
.home-faq {
  position: relative;
}
.home-faq__bg {
  position: relative;
}
.home-faq__bg-img {
  position: absolute;
  width: 85%;
}
.home-faq__inner {
  padding-top: 80px;
  position: relative;
}
.home-faq__head {
  position: relative;
}
.home-faq-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.home-faq-btn__ico {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgb(var(--lightyellow));
  border-radius: 50%;
}
.home-faq-btn__ico svg {
  width: 12px;
}
.home-faq__area-img {
  margin: 0 -30px;
}
.home-faq__link {
  display: block;
}
@media all and (min-width: 768px) {
  .home-faq {
    overflow: hidden;
  }
  .home-faq__bg-img {
    top: -120px;
    left: -230px;
    width: 1200px;
    z-index: -1;
  }
  .home-faq__inner {
    padding-top: 120px;
    padding-left: 30px;
  }
  .home-faq__content {
    margin-right: calc(50% - 50vw);
  }
  .home-faq__link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .home-faq__head {
    width: 350px;
    margin-right: -22px;
    margin-bottom: 0;
    z-index: 1;
  }
  .home-faq__area-img {
    margin: 0;
    width: calc(100% - 328px);
  }
  .home-faq__link {
    position: relative;
    height: 340px;
    margin-left: auto;
    margin-right: 0;
  }
  .home-faq__link:hover .home-faq__img img {
    width: 100%;
  }
  .home-faq__img {
    overflow-y: hidden;
    text-align: right;
  }
  .home-faq__img img {
    width: 90%;
    height: 340px;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 0.3s ease;
  }
}
@media all and (min-width: 1510px ) {
  .home-faq__inner {
    padding-left: 0;
  }
  .home-faq__bg-img {
    top: -326px;
    left: -326px;
    width: 1730px;
  }
  .home-faq__inner {
    padding-top: 220px;
  }
}

/* .home-benefits
================================================ */
.home-benefits__inner {
  padding-top: 30px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .home-benefits__inner {
    padding-top: 30px;
    padding-bottom: 120px;
    padding-left: 30px;
  }
}
@media all and (min-width: 1510px ) {
  .home-benefits__inner {
    padding-bottom: 220px;
    padding-left: 0;
  }
}

/* .home-require
================================================ */
.home-require {
  overflow: hidden;
}
.home-require__inner {
  padding-right: 0;
  padding-left: 0;
}
.home-require__link {
  display: block;
}
.home-require__content {
  position: relative;
}
.home-require__head {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding-bottom: 100px;
}
.home-require-btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.home-require-btn__ico {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border: solid 1px rgb(var(--orange));
  border-radius: 50%;
}
.home-require-btn__ico svg {
  width: 12px;
}
@media all and (min-width: 768px) {
  .home-require {
    overflow: hidden;
  }
  .home-require__link:hover {
    color: #fff;
  }
  .home-require__link:hover .c-head01__en::before {
    display: inline-block;
    width: 19px;
    height: 19px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227%22%20height%3D%227%22%20viewBox%3D%220%200%207%207%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_116779%22%20data-name%3D%22%E3%83%91%E3%82%B9%20116779%22%20d%3D%22M161.184%2C382.7h.07a3.819%2C3.819%2C0%2C0%2C0-3.2-1.708%2C3.76%2C3.76%2C0%2C0%2C0-3.8%2C3.717%2C3.706%2C3.706%2C0%2C0%2C0%2C2.018%2C3.283%2C10.572%2C10.572%2C0%2C0%2C1%2C2.129-4.047A3.708%2C3.708%2C0%2C0%2C1%2C161.184%2C382.7Z%22%20transform%3D%22translate(-154.254%20-380.994)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
  .home-require__link:hover .home-require__img::before {
    opacity: 1;
  }
  .home-require__link:hover .home-require-btn__ico {
    border-color: #fff;
  }
  .home-require__content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 550px;
  }
  .home-require__img {
    position: relative;
  }
  .home-require__img::before {
    transition: all 0.3s ease;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/home/img_require02_pc.jpg) no-repeat 0 100%/cover;
    opacity: 0;
  }
  .home-require__img img {
    width: 100%;
    height: 550px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .home-require__head {
    box-sizing: border-box;
    max-width: 1100px;
    padding-bottom: 0;
    text-align: left;
    padding-left: 30px;
  }
  .home-require-btn {
    left: auto;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
  }
}
@media (max-width: 1100px) {
  .home-require__head {
    padding-right: 60px;
    padding-left: 60px;
  }
}
@media all and (min-width: 1510px ) {
  .home-require__head {
    max-width: 1400px;
    padding-left: 0;
  }
}

/* .home-news
================================================ */
.home-news__inner {
  padding-top: 70px;
}
.home-news__head {
  position: relative;
}
.home-news-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.home-news-btn__ico {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgb(var(--lightyellow));
  border-radius: 50%;
}
.home-news-btn__ico svg {
  width: 12px;
}
@media all and (min-width: 768px) {
  .home-news__inner {
    padding-top: 120px;
    padding-bottom: 0;
    max-width: 860px;
  }
  .home-news-btn {
    width: 170px;
  }
  .home-news-btn__link {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
  }
  .home-news-btn__link:hover .home-news-btn__ico {
    color: #fff;
    background: rgb(var(--orange));
  }
  .home-news-btn__txt {
    font-weight: 700;
    font-size: 1.5rem;
  }
  .home-news-btn__ico {
    width: 60px;
    height: 60px;
  }
  .home-news-btn__ico svg {
    width: 17px;
  }
}

@media all and (max-width: 767px) {
  #interview .l-container .u-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* .interview-archive
================================================ */
.interview-archive__inner {
  padding-top: 20px;
}
@media all and (min-width: 768px) {
  .interview-archive__inner {
    padding-top: 80px;
  }
}

@media all and (max-width: 767px) {
  #newgraduate .l-container .u-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* .entry-form
================================================ */
.newgraduate-form__inner {
  padding-top: 20px;
}
.newgraduate-form__txt {
  color: rgb(var(--black));
  margin-bottom: 30px;
}
@media all and (min-width: 768px) {
  .newgraduate-form__inner {
    padding-top: 80px;
  }
  .newgraduate-form__txt {
    margin-bottom: 60px;
  }
}

.mw_wp_form_confirm .newgraduate-form__txt {
  display: none;
}

/* newgraduate-thanks
=========================================== */
.newgraduate-thanks__inner {
  padding-top: 30px;
}
.newgraduate-thanks__btn .c-btn01__ico::before {
  display: inline-block;
  width: 12px;
  height: 7px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%227%22%20viewBox%3D%220%200%2012%207%22%3E%20%3Cpath%20id%3D%22%E5%90%88%E4%BD%93_22%22%20data-name%3D%22%E5%90%88%E4%BD%93%2022%22%20d%3D%22M7.995%2C6.125%2C9.831%2C4.119H0V2.882H9.832L7.995.875%2C8.8%2C0%2C12%2C3.5%2C8.8%2C7Z%22%20fill%3D%22%23EB6700%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
@media all and (min-width: 768px) {
  .newgraduate-thanks__inner {
    padding-top: 50px;
  }
  .newgraduate-thanks__txt {
    text-align: center;
  }
}

@media all and (max-width: 767px) {
  #requirements .l-container .u-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* .requirements-info
================================================ */
.requirements-info {
	padding-bottom:5rem; margin-bottom:10rem;}
.requirements-info__inner {
  padding-top: 15px;
}
.requirements-info__txt {
  color: rgb(var(--black));
  margin-bottom: 30px;
}
.requirements-info-process {
  margin-top: 50px;
}
.requirements-info-process__tit {
  margin-bottom: 25px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 5px;
  border-bottom: solid 2px rgb(var(--border));
}
.requirements-info-process__item {
  position: relative;
  padding: 20px 15px;
}
.requirements-info-process__item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #EB6700, #F8B41E);
  opacity: 0.1;
}
.requirements-info-process__item + .requirements-info-process__item {
  margin-top: 35px;
}
.requirements-info-process__item + .requirements-info-process__item::after {
  position: absolute;
  content: "";
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 25px;
  background: url(../img/requirements/ico_process01.png) no-repeat 0 100%/cover;
}
.requirements-info-process__item:last-child {
  padding: 45px 15px;
  text-align: center;
  color: #fff;
  background: linear-gradient(to right, #EB6700, #F8B41E);
}
.requirements-info-process__item:last-child::before {
  opacity: 0;
}
.requirements-info-process__item:last-child .requirements-info-process__head {
  font-size: 3.2rem;
  padding: 0;
}
.requirements-info-process__item:last-child .requirements-info-process__txt {
  padding: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
}
.requirements-info-process__en {
  width: 45px;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  position: absolute;
  top: 20px;
  left: 15px;
}
.requirements-info-process__en::before {
  position: absolute;
  top: -1px;
  left: 0;
  display: inline-block;
  width: 9px;
  height: 9px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227%22%20height%3D%227%22%20viewBox%3D%220%200%207%207%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_116779%22%20data-name%3D%22%E3%83%91%E3%82%B9%20116779%22%20d%3D%22M161.184%2C382.7h.07a3.819%2C3.819%2C0%2C0%2C0-3.2-1.708%2C3.76%2C3.76%2C0%2C0%2C0-3.8%2C3.717%2C3.706%2C3.706%2C0%2C0%2C0%2C2.018%2C3.283%2C10.572%2C10.572%2C0%2C0%2C1%2C2.129-4.047A3.708%2C3.708%2C0%2C0%2C1%2C161.184%2C382.7Z%22%20transform%3D%22translate(-154.254%20-380.994)%22%20fill%3D%22%23EB6700%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.requirements-info-process__en-step {
  font-size: 1rem;
}
.requirements-info-process__en-num {
  font-size: 2.4rem;
  display: block;
}
.requirements-info-process__head {
  padding-left: 45px;
  padding-top: 5px;
  font-size: 1.6rem;
  font-weight: 700;
}
.requirements-info-process__txt {
  padding-top: 5px;
  letter-spacing: 0.06em;
  position: relative;
}
.requirements-info-process__link {
  display: inline-block;
  text-decoration: underline !important;
}
@media all and (min-width: 768px) {
  .requirements-info__inner {
    padding-top: 80px;
  }
  .requirements-info__txt {
    margin-bottom: 50px;
  }
  .requirements-info-process {
    margin-top: 100px;
  }
  .requirements-info-process__item + .requirements-info-process__item {
    margin-top: 40px;
  }
  .requirements-info-process__item + .requirements-info-process__item::after {
    top: -32px;
  }
  .requirements-info-process__item:last-child {
    display: block;
    padding: 50px 0;
  }
  .requirements-info-process__tit {
    font-size: 2.8rem;
    padding-bottom: 10px;
    margin-bottom: 40px;
  }
  .requirements-info-process__item {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-wrap: wrap;
    min-height: 190px;
    align-items: center;
    box-sizing: border-box;
  }
  .requirements-info-process__en {
    position: relative;
    width: 200px;
    top: auto;
    margin-top: 10px;
  }
  .requirements-info-process__en::before {
    position: absolute;
    top: -15px;
    left: 50px;
    display: inline-block;
    width: 19px;
    height: 19px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227%22%20height%3D%227%22%20viewBox%3D%220%200%207%207%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_116779%22%20data-name%3D%22%E3%83%91%E3%82%B9%20116779%22%20d%3D%22M161.184%2C382.7h.07a3.819%2C3.819%2C0%2C0%2C0-3.2-1.708%2C3.76%2C3.76%2C0%2C0%2C0-3.8%2C3.717%2C3.706%2C3.706%2C0%2C0%2C0%2C2.018%2C3.283%2C10.572%2C10.572%2C0%2C0%2C1%2C2.129-4.047A3.708%2C3.708%2C0%2C0%2C1%2C161.184%2C382.7Z%22%20transform%3D%22translate(-154.254%20-380.994)%22%20fill%3D%22%23EB6700%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
  .requirements-info-process__en-step {
    font-size: 2rem;
  }
  .requirements-info-process__en-num {
    font-size: 5rem;
  }
  .requirements-info-process__area-txt {
    width: calc(100% - 200px);
  }
  .requirements-info-process__head {
    padding: 0;
  }
  .requirements-info-process__link:hover {
    text-decoration: none !important;
  }
}