:root {
  --black: 51, 51, 51;
  --green: 20, 110, 75;
  --light_green: 242, 248, 244;
  --ex_light_green: 237, 245, 240;
  --dark_green: 0, 129, 107;
  --deep_green: 4, 109, 91;
  --light_lime: 250, 249, 239;
  --gray: 184, 184, 184;
  --dark_gray: 177, 177, 177;
  --light_gray: 212, 215, 213;
  --smoke_gray: 217, 217, 217;
  --border: rgba(var(--dark_gray), 0.4);
  --yellow: 242, 248, 244;
  --contents_width: 950px;
  --contents_width_wide: 1100px;
  --body_padding_side: 250px;
  --contents_width_with_padding: 1200px;
  --contents_width_wide_with_padding: 1350px;
  --sidebar_width: 250px;
  --header_height_sp: 65px;
  --header_height_pc: 80px;
}

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;
  font-family: 'Cabin', sans-serif;
}

html {
  font-size: 62.5%;
  word-break: keep-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;
}
a:not([class]) .c-ico {
  width: 12px;
  height: 12px;
  margin-left: 5px;
}
@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;
  font-family: 'Noto Sans JP', '銉掋儵銈儙瑙掋偞 ProN W3', Meiryo, sans-serif;
  color: rgb(var(--black));
  font-size: 1.4rem;
  line-height: 1.875;
  letter-spacing: 0.06em;
}
@media all and (min-width: 768px) {
  body {
    min-width: var(--contents_width_with_padding);
    font-size: 1.6rem;
  }
}

.l-wrapper {
  position: relative;
}

.l-container {
  position: relative;
}
.l-container.has-pt {
  padding-top: 55px;
}
@media all and (min-width: 768px) {
  .l-container.is-col2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: var(--sidebar_width) 20px auto;
    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);
  }
  .l-container.has-pt {
    padding-top: 120px;
  }
}

#home .l-container {
  background: #fff;
}
#home .l-container.tty {
  background: transparent;
}
/* 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: 1200px) {
  .u-media-query {
    font-family: 'pc';
  }
}

@media all and (max-width: 1199px) {
  .u-view-pc {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-tb {
    display: none !important;
  }
}
@media all and (min-width: 1200px) {
  .u-view-tb {
    display: none !important;
  }
}

@media all and (min-width: 768px) {
  .u-view-sp {
    display: none !important;
  }
}

@media all and (min-width: 1200px) {
  .u-view-under-tb {
    display: none !important;
  }
}
@media all and (max-width: 1400px) {
  .u-view-upper-tb1 {
    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: 'Cabin', sans-serif;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.02em;
  /*color: #146e4b;*/
}

.u-serif {
  font-family: 'Cabin', sans-serif;
  font-weight: 500;
}

@media all and (min-width: 768px) {
  .u-serif-pc {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: 0.3s ease;
  }
}

.u-bold {
  font-weight: 700;
}

/* 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;
height:100%;
    object-fit: cover;
}
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 1s ease;
  }
  a.u-zoom:hover .u-zoom__img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

a.u-underline {
  text-decoration: underline;
}
@media all and (min-width: 768px) {
  a.u-underline:hover {
    text-decoration: none;
  }
}

/* layout
  -------------------------------------- */
.u-inner {
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
}
@media all and (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: 1165px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .u-inner.fot {
    max-width: 805px;
  }

  .u-inner.sp {
    width: 100%;
    max-width: max-content;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .u-inner.is-wide-pc {
    max-width: 1150px;
  }
}

@media all and (max-width: 767px) {
  .u-inner-sp {
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/*  .c-archive01 绀惧摗銈ゃ兂銈裤儞銉ャ兗涓€瑕�
  ================================================== */
.c-archive01 {
  overflow: hidden;
}
.c-archive01__item {
  max-width: 460px;
  margin: 0 auto 25px;
}
.c-archive01__item:last-child {
  margin-bottom: 0;
}
.c-archive01__item-link {
  position: relative;
  display: block;
  padding-bottom: 35px;
}
.c-archive01__item-cat {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2px 8px;
  background: rgb(var(--green));
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}
.c-archive01__item-data {
  min-width: 120px;
  box-sizing: border-box;
  position: absolute;
  bottom: 25px;
  right: 0;
  background: #f2f8f4;
  padding: 16px 0 0 22px;
  line-height: 1.5;
  max-width: 90%;
}
.c-archive01__item-data::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 5px;
  width: 20px;
  height: 2px;
  background: rgb(var(--green));
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.c-archive01__item-pos {
  font-size: 1.1rem;
  margin-bottom: 2px;
  line-height: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-archive01__item-year {
  font-size: 1rem;
  color: #333;
  font-weight: bold;
  letter-spacing: 0.3px;
}
.c-archive01__item-name {
  margin-top: 5px;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  text-align: left;
  display: none;
}
@media all and (min-width: 768px) {
  .c-archive01 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -40px;
  }
  .c-archive01__item {
    width: calc(33.33% - 80px);
    margin: 0 40px 70px;
  }
  .c-archive01__item-link {
    padding-bottom: 75px;
  }
  .c-archive01__item-cat {
    padding: 2px 10px;
    font-size: 1.4rem;
  }
  .c-archive01__item-data {
    min-height: 100px;
    min-width: 158px;
    padding: 18px 0 0 25px;
  }
  .c-archive01__item-data::before {
    width: 25px;
  }
  .c-archive01__item-pos {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
  .c-archive01__item-year {
    font-size: 1.5rem;
  }
  .c-archive01__item-name {
    font-size: 2.1rem;
  }
  .c-archive01__item-name.ppo {
    font-size: 1.8rem;
  }
}

/* c-archive01.is-slider
  ------------------------------------- */
.c-archive01.is-slider .c-archive01__item {
  max-width: none;
  margin: 0;
}
.c-archive01.is-slider .c-archive01__item-link {
  width: 230px;
  margin: 0 15px;
}
@media all and (min-width: 768px) {
  .c-archive01.is-slider {
    margin: 0;
  }
  .c-archive01.is-slider .c-archive01__item-link {
    width: 270px;
    margin: 0 30px;
  }
}
@media all and (min-width: 1400px) {
  .c-archive01.is-slider .c-archive01__item-link {
    width: 340px;
    margin: 0 40px;
  }
}

/* c-bg-white
  =========================== */
.c-bg-white {
  background: #fff;
}

/* c-bg-green
  =========================== */
.c-bg-green {
  background: rgb(var(--green));
}

/* c-bg-light-green
  =========================== */
.c-bg-light-green {
  background: rgb(var(--light_green));
}

/* c-bg-ex-light-green
  =========================== */
.c-bg-ex-light-green {
  background: rgb(var(--ex_light_green));
}

/* c-bg-yellow
  =========================== */
.c-bg-yellow {
  background: rgb(var(--yellow));
}

/* c-box01 钖勯粍鑹茶儗鏅紜钖勯粍鑹层偣銉堛儵銈ゃ儣鏋狅紜鍐呬綑鐧�
  =========================================== */
.c-box01 {
  position: relative;
  padding: 15px;
  background: repeating-linear-gradient(-45deg, rgb(var(--yellow)), rgb(var(--yellow)) 10px, transparent 0, transparent 12px);
}
.c-box01__part {
  content: '';
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-box01__part.is-01 {
  display: block;
  right: 10px;
  bottom: 0;
  width: 2px;
  height: 50px;
  background: rgba(var(--green), 0.2);
}
.c-box01__part.is-02 {
  right: 38px;
  bottom: -15px;
  width: 4px;
  height: 50px;
  background: rgba(var(--green), 0.23);
}
.c-box01__inner {
  padding: 30px 20px;
  background: #fffff9;
}
.c-box01__txt {
  line-height: 1.77;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
}
@media (max-width: 374px) {
  .c-box01__txt {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 767px) {
  .c-box01 {
    margin: 0 -30px;
  }
  .c-box01__txt {
    text-align: center;
  }
  .c-box01__txt + .c-box01__txt {
    margin-top: 10px;
  }
}
@media all and (min-width: 768px) {
  .c-box01 {
    padding: 20px;
  }
  .c-box01__part.is-01 {
    right: 10px;
    bottom: 5px;
    height: 70px;
  }
  .c-box01__part.is-02 {
    right: 50px;
    height: 70px;
  }
  .c-box01__part.is-03 {
    display: block;
    top: 0;
    left: 60px;
    width: 2px;
    height: 50px;
    background: rgba(var(--green), 0.2);
  }
  .c-box01__part.is-04 {
    display: block;
    top: -10px;
    left: 90px;
    width: 10px;
    height: 40px;
    background: rgba(var(--green), 0.2);
    -webkit-transform: skew(-45deg);
    transform: skew(-45deg);
  }
  .c-box01__inner {
    padding: 50px;
  }
  .c-box01__txt {
    line-height: 1.9;
    text-align: center;
    font-size: 3rem;
  }
}

/* .c-btn01
  ================================================== */
.c-btn01 {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  width: auto;
  max-width: 100%;
  margin-top: 30px;
  font-size: 1.6rem;
  line-height: 1.5;
}
.c-btn01-list .c-btn01 {
  margin: 0 0 5px;
}
.c-btn01-list .c-btn01:last-child {
  margin-bottom: 0;
}
.c-btn01__link {
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  min-height: 70px;
  padding: 15px 50px;
  color: #fff;
  background: url('../images/bbg2.jpg') no-repeat;
  background-size: cover;
  background-position: center center;
  transition: all 0.3s ease;
}
.c-btn01__link::after {
  position: absolute;
  content: '';
  top: 49%;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transition: all 0.3s ease;
  right: 24px;
}
.c-btn01__link[href*='#']::after {
  -webkit-transform: rotate(135deg) translateY(-50%);
  transform: rotate(135deg) translateY(-50%);
  -webkit-transform-origin: top;
  transform-origin: top;
}
.c-btn01__sub {
  font-size: 1rem;
  margin-bottom: 8px;
}
.c-btn01__txt {
  position: relative;
  text-align: center;
  z-index: 2;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-family: 'Barlow-Bold', sans-serif;
  text-transform: capitalize;
}
@media all and (max-width: 767px) {
  .c-btn01-list.is-col2-sp {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -2px;
  }
  .c-btn01-list.is-col2-sp .c-btn01 {
    width: calc(50% - 4px);
    margin: 0 2px 5px;
  }
  .c-btn01-list.is-col2-sp .c-btn01__link {
    padding: 10px 30px;
  }
  .c-btn01-list.is-col2-sp .c-btn01__link::after {
    right: 15px;
  }
  .c-btn01-list.is-col2-sp .c-btn01:nth-of-type(2n + 1):nth-last-of-type(-n + 2) {
    margin-bottom: 0;
  }
  .c-btn01-list.is-col2-sp .c-btn01:nth-of-type(2n + 1):nth-last-of-type(-n + 2) ~ .c-btn01 {
    margin-bottom: 0;
  }
}
@media (max-width: 374px) {
  .c-btn01-list.is-col2-sp .c-btn01__link {
    padding: 10px 25px;
  }
  .c-btn01-list.is-col2-sp .c-btn01__link::after {
    right: 14px;
  }
}
@media all and (min-width: 768px) {
  .c-btn01-list .c-btn01 {
    margin: 0 0 20px;
  }
  .c-btn01-list.is-col3-pc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -10px;
  }
  .c-btn01-list.is-col3-pc .c-btn01 {
    width: calc(25% - 20px);
    margin: 0 10px 20px;
  }
  .c-btn01-list.is-col3-pc.news .c-btn01 {
    width: calc(33.3333% - 20px);
    border: 1px solid #c5d8d0;
  }

  /*.c-btn01-list.is-col3-pc .c-btn01:nth-of-type(3n+1):nth-last-of-type(-n+3) {
      margin-bottom: 0;
    }
    .c-btn01-list.is-col3-pc .c-btn01:nth-of-type(3n+1):nth-last-of-type(-n+3) ~ .c-btn01 {
      margin-bottom: 0;
    }*/
  .c-btn01__sub {
    font-size: 1.3rem;
    margin-bottom: 14px;
  }
  .c-btn01__link {
    min-height: 90px;
  }
  .c-btn01__link::after {
    border-width: 2px;
    right: 34px;
  }
}

.c-btn01.is-border .c-btn01__link {
  border: 1px solid;
  background: none;
}
.c-btn01.is-border .c-btn01__link:hover {
  border-color: transparent;
  background: rgb(var(--green));
}

.c-btn01.is-dark .c-btn01__link {
  background: rgb(var(--dark_green));
}
.c-btn01.is-dark .c-btn01__link:hover {
  background: rgba(var(--green));
}

.c-btn01.is-deep .c-btn01__link {
  background: rgba(20, 110, 75, 0.95);
}
.c-btn01.is-deep .c-btn01__link:hover {
  background: rgba(145, 187, 131, 0.95);
}

.c-btn01.is-light-green .c-btn01__link {
  background: rgb(var(--light_green));
  color: rgb(var(--black));
}
.c-btn01.is-light-green .c-btn01__link::after {
  color: rgb(var(--green));
}
@media all and (min-width: 768px) {
  .c-btn01.is-light-green .c-btn01__link:hover {
    background: rgba(var(--green), 0.95);
    color: #fff;
  }
  .c-btn01.is-light-green .c-btn01__link:hover::after {
    color: #fff;
  }
}

.c-btn01.is-genba .c-btn01__txt {
  margin-bottom: 5px;
  font-size: 4rem;
  line-height: 0.8;
  letter-spacing: 2px;
}
@media all and (min-width: 768px) {
  .c-btn01.is-genba .c-btn01__txt {
    margin-bottom: 8px;
  }
  .c-btn01.is-genba .c-btn01__link {
    z-index: 1;
  }
  .c-btn01.is-genba .c-btn01__link::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background: url('../images/bbg.jpg') no-repeat left top/cover;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .c-btn01.is-genba .c-btn01__link::after {
    right: 38px;
  }
  .c-btn01.is-genba .c-btn01__link:hover {
    background: none;
  }
  .c-btn01.is-genba .c-btn01__link:hover::before {
    opacity: 1;
  }
}

/* .c-btn01.is-mh60-sp  SP銇ч珮銇�60px
  ---------------------------------- */
@media all and (max-width: 767px) {
  .c-btn01.is-mh60-sp .c-btn01__link {
    min-height: 60px;
  }
}

/* .c-btn01.is-anchor  涓嬪悜銇嶇煝鍗�
  ---------------------------------- */
.c-btn01.is-anchor .c-btn01__link::after {
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  -webkit-transform-origin: top;
  transform-origin: top;
}

/* .c-btn02
  ================================================== */
.c-btn02 {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  width: auto;
  max-width: 100%;
  margin-top: 40px;
  line-height: 1.5;
}
.c-btn02__link {
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.c-btn02__ico {
  color: #fff;
}
.c-btn02__txt {
  position: relative;
  font-weight: bold;
  line-height: 1.5;
  margin-left: 10px;
}
@media all and (max-width: 767px) {
  .c-btn02 {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 768px) {
  .c-btn02__txt {
    margin-left: 25px;
  }
}

/* c-btn02.is-center
  ---------------------------------------- */
.c-btn02.is-center {
  justify-content: center;
}

/* .c-btn03 宸︺伀銉椼儵銈广伄銇ゃ亜銇熴伡銇熴倱
  ================================================== */
.c-btn03 {
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  overflow: visible;
  text-transform: none;
  cursor: pointer;
  position: relative;
  border: 1px solid rgb(var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  max-width: 275px;
  margin: 0 auto;
  padding: 10px 40px;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}
.c-btn03::before,
.c-btn03::after {
  position: absolute;
  top: 50%;
  left: 20px;
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  margin-top: -1px;
  background: rgb(var(--green));
  transition: all 0.3s ease;
}
.c-btn03::before {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
@media all and (min-width: 768px) {
  .c-btn03 {
    max-width: 380px;
    min-height: 90px;
    padding: 10px 65px;
    font-size: 1.8rem;
    transition: opacity 0.3s ease;
  }
  .c-btn03::before,
  .c-btn03::after {
    left: 35px;
    width: 27px;
  }
  .c-btn03:hover {
    opacity: 0.7;
  }
}

.c-btn03.has-mt {
  margin-top: 30px;
}
@media all and (min-width: 768px) {
  .c-btn03.has-mt {
    margin-top: 60px;
  }
}

/* .c-color-black
  ================================================== */
.c-color-black {
  color: rgb(var(--black));
}

/* .c-color-white
  ================================================== */
.c-color-white {
  color: #fff;
}

/* .c-color-green
  ================================================== */
.c-color-green {
  color: rgb(var(--green));
}

/* .c-color-gray
  ================================================== */
.c-color-gray {
  color: rgb(var(--gray));
}

/* .c-color-dark-gray
  ================================================== */
.c-color-dark-gray {
  color: rgb(var(--dark_gray));
}

/* c-entry01
  -------------------------------------------- */
.c-entry01 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #fff;
  margin-top: -75px;
}
.c-entry01::before {
  content: '';
  position: absolute;
  bottom: 0;
  height: calc(100% - 75px);
  width: 100%;
  background: rgb(var(--light_green));
}
.c-entry01__link {
  position: relative;
  display: block;
  width: calc(100% - 60px);
  margin: 0 auto;
  padding: 32px 35px;
  box-sizing: border-box;
  background: rgb(20, 110, 75);
  background: linear-gradient(87deg, rgba(20, 110, 75, 1) 0%, rgba(135, 184, 118, 1) 80%);
}

.c-entry01__link::after {
  position: absolute;
  content: '';
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  right: 24px;
}
.c-entry01__head-en {
  font-size: 1rem;
}
.c-entry01__head-ja img {
  height: 19px;
}
.c-entry01__txt {
  margin-top: 8px;
  font-size: 1.1rem;
}
@media all and (min-width: 768px) {
  .c-entry01 {
    margin-top: -120px;
  }
  .c-entry01::before {
    height: calc(100% - 120px);
  }
  .c-entry01__link {
    padding: 10px 140px;
    max-width: 950px;
    min-height: 240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: -webkit-filter 0.3s ease;
    transition: filter 0.3s ease;
    transition: filter 0.3s ease, -webkit-filter 0.3s ease;
  }

  .c-entry01__link.con {
    max-width: 1200px;
    padding: 50px 50px;
  }
  .c-entry01__link.con::after {
    display: none;
  }
  .c-entry01__link::after {
    right: 60px;
    width: 8px;
    height: 8px;
    border-width: 2px;
  }
  .c-entry01__link:hover {
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
  }
  .c-entry01__head-en {
    font-size: 1.4rem;
  }
  .c-entry01__head-ja {
    margin-top: 10px;
  }
  .c-entry01__head-ja img {
    height: 29px;
  }
  .c-entry01__txt {
    margin-top: 0;
    font-size: 1.5rem;
  }
}

/*  .c-faq01
  ================================================== */
.c-faq01 {
  background: rgb(var(--light_lime));
}
.c-faq01 + .c-faq01 {
  margin-top: 10px;
}
.c-faq01__ico {
  position: absolute;
  top: 13px;
  left: 10px;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(var(--green));
  border-radius: 50%;
  color: #fff;
}
.c-faq01__head {
  position: relative;
  padding: 15px 40px 15px 46px;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.c-faq01__head[class*='toggle'] {
  cursor: pointer;
}
.c-faq01__head[class*='toggle']::before,
.c-faq01__head[class*='toggle']::after {
  position: absolute;
  top: 50%;
  right: 15px;
  content: '';
  display: block;
  width: 12px;
  height: 2px;
  margin-top: -1px;
  background: rgb(var(--green));
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-faq01__head[class*='toggle']::before {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.c-faq01__head[class*='toggle'].is-active::before {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.c-faq01__txt {
  position: relative;
  padding: 22px 40px 26px 46px;
  letter-spacing: 0.08em;
}
.c-faq01__txt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  width: calc(100% - 30px);
  height: 1px;
  background: rgb(var(--smoke_gray));
}
.c-faq01__txt .c-faq01__ico {
  position: absolute;
  top: 20px;
  left: 10px;
  color: rgb(var(--green));
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
}
@media all and (min-width: 768px) {
  .c-faq01 + .c-faq01 {
    margin-top: 20px;
  }
  .c-faq01__ico {
    top: 23px;
    left: 30px;
    width: 45px;
    height: 45px;
  }
  .c-faq01__head {
    padding: 30px 80px 30px 90px;
    font-size: 1.8rem;
  }
  .c-faq01__head[class*='toggle']::before,
  .c-faq01__head[class*='toggle']::after {
    right: 30px;
    width: 20px;
  }
  .c-faq01__txt {
    padding: 30px 80px 35px 90px;
  }
  .c-faq01__txt::before {
    left: 30px;
    width: calc(100% - 60px);
  }
  .c-faq01__txt .c-faq01__ico {
    top: 23px;
    left: 30px;
  }
}

/* .c-form
  ================================================== */
.c-form ::-webkit-input-placeholder {
  color: #bbb;
}
.c-form ::-moz-placeholder {
  color: #bbb;
}
.c-form :-ms-input-placeholder {
  color: #bbb;
}
.c-form ::-ms-input-placeholder {
  color: #bbb;
}
.c-form ::placeholder {
  color: #bbb;
}
@media all and (min-width: 768px) {
  .c-form-table {
    border: 16px solid #f5f5f5;
    padding: 80px 100px;
  }
}

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: 60px;
  padding: 15px 20px;
  font-size: 1.6rem;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #f5f5f5;
  font-family: inherit;
}
@media all and (min-width: 768px) {
  input.c-form-parts,
  select.c-form-parts,
  textarea.c-form-parts,
  button.c-form-parts {
    height: 55px;
    font-size: 1.7rem;
  }
}

textarea.c-form-parts {
  height: 200px;
  resize: vertical;
}

select.c-form-parts {
  box-sizing: border-box;
  padding-right: 30px;
  background: #f5f5f5 no-repeat right 20px top 50%/10px 6px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="8"><path d="M13.056 1.333 11.75 0 6.528 5.333 1.305 0-.001 1.333 6.528 8Z" fill="rgb(56,175,143)"/></svg>');
}
@media all and (min-width: 768px) {
  select.c-form-parts {
    width: 500px;
    padding-right: 40px;
    background-size: 13px 8px;
  }
}

textarea.c-form-parts {
  height: 270px;
  resize: vertical;
}

/* .c-form.is-default
  ================================================== */
.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 {
  padding: 20px 0 15px;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: left;
  border-top: 1px solid rgb(var(--smoke_gray));
}
.c-form.is-default td {
  padding-bottom: 30px;
}
.c-form.is-default tr:last-of-type td {
  border-bottom: 1px solid rgb(var(--smoke_gray));
}
@media all and (min-width: 768px) {
  .c-form.is-default th {
    padding: 25px 0 20px;
    font-size: 1.8rem;
  }
}

/* .c-form-label
  ================================================== */
.c-form-label {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 49px;
  height: 23px;
  margin-left: 10px;
  background: rgb(var(--dark_gray));
  color: #fff;
  font-size: 1.2rem;
}
.c-form-label.is-required {
  background: rgb(var(--green));
}
@media all and (min-width: 768px) {
  .c-form-label {
    width: 53px;
    height: 24px;
    margin-left: 15px;
    font-size: 1.4rem;
  }
}

/* .c-form-note
  ================================================== */
.c-form-note {
  display: block;
  font-weight: 400;
  color: white;
  font-size: 1.3rem;
}

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;
  align-items: center;
}
.c-form-postcode__prefix {
  max-width: 26px;
  flex-basis: 26px;
  font-size: 1.6rem;
}
.c-form-postcode__input {
  max-width: 282px;
}
@media all and (max-width: 767px) {
  .c-form-postcode {
    min-width: calc(100% - 26px);
    width: calc(100% - 26px);
    flex-basis: calc(100% - 26px);
  }
}

/* c-form-file
  =========================== */
.c-form-file + .c-form-file {
  margin-top: 20px;
}

/* 纰鸿獚鐢婚潰
  ================================================ */
/* 纰鸿獚鐢婚潰
  ================================================ */
.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-privacy
  ================================================== */
.c-form-privacy {
  margin-top: 60px;
}
.c-form-privacy__check-wrap {
  margin-top: 30px;
  text-align: center;
}
@media all and (min-width: 768px) {
  .c-form-privacy {
    text-align: center;
  }
  .c-form-privacy__check-wrap {
    margin-top: 40px;
  }
}

.mw_wp_form_confirm .c-form-privacy {
  display: none;
}

/* .c-form-btn
  ================================================== */
.c-form-area-btn {
  margin-top: 40px;
}
@media all and (min-width: 768px) {
  .c-form-area-btn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.c-form-btn {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 70px;
  max-width: 380px;
  margin: 0 auto;
  padding: 5px 10px;
  font-size: 1.6rem;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  cursor: pointer;
  background: rgb(var(--green));
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
}
.c-form-btn + .c-form-btn {
  margin-top: 10px;
}
.c-form-btn.is-back {
  background: rgb(var(--gray));
}
@media all and (min-width: 768px) {
  .c-form-btn {
    height: 80px;
    transition: opacity 0.3s ease;
  }
  .c-form-btn + .c-form-btn {
    margin-top: 0;
    margin-left: 20px;
  }
  .c-form-btn:hover {
    opacity: 0.7;
  }
}

/* .c-form .mwform-radio-field
  ================================================ */
.c-form .mwform-radio-field,
.c-form .c-radio {
  display: block;
  background: #f5f5f5;
}
.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 {
  border-width: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
}
.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 {
  display: block;
  position: relative;
  padding: 15px 20px 15px 45px;
  vertical-align: top;
  font-size: 1.5rem;
}
.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: 19px;
  left: 20px;
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid rgb(var(--gray));
  border-radius: 50%;
  background: #fff;
}
.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: 24px;
  left: 25px;
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: rgb(var(--green));
  border-radius: 50%;
}
@media all and (max-width: 767px) {
  .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-left: 0 !important;
  }
}
@media all and (min-width: 768px) {
  .c-form .mwform-radio-field,
  .c-form .c-radio {
    display: inline-block;
    min-width: 230px;
  }
  .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: 0;
    margin-left: 10px;
  }
  .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 {
    padding: 15px 20px 15px 47px;
    font-size: 1.7rem;
  }
  .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: 21px;
  }
  .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: 26px;
  }
}

/* .c-form .mwform-checkbox-field
  ================================================ */
.c-form .mwform-checkbox-field,
.c-form .c-checkbox {
  display: inline-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 {
  border-width: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
}
.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: 33px;
  vertical-align: top;
  font-size: 1.5rem;
}
.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: 3px;
  left: 0;
  content: '';
  display: block;
  width: 25px;
  height: 25px;
  border: 1px solid rgb(var(--gray));
}
.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: 9px;
  left: 6px;
  content: '';
  display: block;
  width: 10px;
  height: 6px;
  border-style: solid;
  border-width: 3px 3px 0 0;
  border-color: rgb(var(--green));
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
@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: 2px;
  }
  .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;
}

/* .c-form-thanks
  ================================================ */
.c-form-thanks__txt {
  margin-bottom: 10px;
}

/* .c-head01
  ================================================== */
.c-head01 {
  position: relative;
  margin-bottom: 20px;
}
.c-head01::after {
  content: '';
  display: block;
  width: 25px;
  height: 0;
  border-top: 1px solid rgb(var(--green));
  margin-top: 15px;
}
.c-head01__oblique {
  position: absolute;
  top: -5px;
  left: -16px;
  width: 56px;
  height: 3px;
}
.c-head01__en {
  font-size: 1rem;
  margin-bottom: 17px;
}
.c-head01__txt {
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 700;
}
.c-head01__txt img {
  display: block;
}
.c-head01__txt.is-img {
  padding: 8px 0 3px;
}
.c-head01__txt.is-img img {
  width: auto;
  height: 31px;
  vertical-align: baseline;
}
@media all and (min-width: 768px) {
  .c-head01 {
    margin-bottom: 25px;
  }
  .c-head01::after {
    width: 40px;
    margin-top: 20px;
  }
  .c-head01__oblique {
    top: 10px;
    left: -40px;
    width: 103px;
  }
  .c-head01__en {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .c-head01__txt {
    font-size: 5.4rem;
  }
  .c-head01__txt.is-img {
    padding: 15px 0 10px;
  }
  .c-head01__txt.is-img img {
    height: 51px;
  }
}

.c-head01.is-center {
  text-align: center;
}
.c-head01.is-center::after {
  margin-left: auto;
  margin-right: auto;
}
.c-head01.is-center .c-head01__txt img {
  margin-left: auto;
  margin-right: auto;
}

.c-head01.is-border-dark::after {
  border-top-color: rgb(var(--dark_green));
}

.c-head01.is-border-white::after {
  border-top-color: #fff;
}

.c-head01.has-no-border::after {
  content: none;
}

@media all and (min-width: 768px) {
  .c-head01.has-no-border-pc::after {
    content: none;
  }
}

@media all and (min-width: 768px) {
  .c-head01.is-small-pc::after {
    width: 27px;
  }
  .c-head01.is-small-pc .c-head01__en {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #146e4b;
  }
  .c-head01.is-small-pc .c-head01__txt {
    font-size: 3.2rem;
  }
  .c-head01.is-small-pc .c-head01__txt.is-img {
    padding: 0 0 5px;
  }
  .c-head01.is-small-pc .c-head01__txt.is-img img {
    height: 31px;
  }
}

/* .c-head02 鑻辫獮澶э紜鏃ユ湰瑾炲皬锛嬩笅绶�
  ================================================== */
.c-head02 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 15px;
  text-align: center;
}
.c-head02::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: '';
  display: block;
  width: 25px;
  height: 1px;
  background: rgb(var(--green));
}
.c-head02__en {
  line-height: 1.3;
  font-size: 2.8rem;
  margin-bottom: 5px;
}
.c-head02__txt {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media all and (min-width: 768px) {
  .c-head02 {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }
  .c-head02::after {
    width: 40px;
  }
  .c-head02__en {
    font-size: 4rem;
    margin-bottom: 15px;
  }
  .c-head02__txt {
    font-size: 1.8rem;
  }
}

/* .c-head03 鑳屾櫙鐢诲儚銇ゃ亶瑕嬪嚭銇�
  ================================================== */
.c-head03 {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 50px 30px;
  margin: 0 -30px 30px;
}
.c-head03__main {
  font-size: 2.4rem;
}
.c-head03__main-txt {
  display: inline-block;
  position: relative;
}
.c-head03__main-txt::before {
  content: '';
  position: absolute;
  top: 18px;
  left: -10px;
  width: 35px;
  height: 2px;
  background: rgba(var(--light_green), 0.4);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.c-head03__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.c-head03__bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media all and (min-width: 768px) {
  .c-head03 {
    padding: 110px 100px;
    margin: 0 -225px 80px;
  }
  .c-head03__main {
    font-size: 3.6rem;
  }
  .c-head03__main-txt::before {
    width: 60px;
    top: 30px;
    left: -29px;
    height: 3px;
  }
}

/* .c-head04.is-white
  ================================================== */
.c-head04.is-white {
  color: #fff;
}
.c-head04.is-white::after {
  background: #fff;
}
.c-head04.is-white .c-head04__main::before {
  background: rgba(255, 255, 255, 0.4);
}

/* .c-head04 鏃ユ湰瑾烇紜鐭亜涓嬬窔銆傛棩鏈獮銇乏涓娿伀椋俱倞绶�
  ================================================== */
.c-head04 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 17px;
  text-align: center;
}
.c-head04::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: rgb(var(--green));
}

.c-head04.con {
  padding-bottom: 0;
}
.c-head04.con::after {
  display: none;
}

.c-head04__main {
  position: relative;
  display: inline-block;
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.c-head04__main::before {
  content: '';
  position: absolute;
  top: 15px;
  left: -10px;
  width: 30px;
  height: 2px;
  background: rgba(var(--green), 0.4);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media all and (min-width: 768px) {
  .c-head04 {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .c-head04::after {
    width: 40px;
  }
  .c-head04__main {
    font-size: 5.1rem;
    font-weight: bold;
  }
  .c-head04__main::before {
    top: 25px;
    left: -25px;
    width: 60px;
    height: 3px;
  }
}

/* c-head04.is-no-line
  ------------------------------------- */
.c-head04.is-no-line {
  padding-bottom: 0;
}
.c-head04.is-no-line::after {
  content: none;
}

/* c-head04.is-left
  ------------------------------------- */
.c-head04.is-left {
  text-align: left;
  padding-left: 8px;
}
@media all and (min-width: 768px) {
  .c-head04.is-left {
    padding-left: 15px;
  }
}

/* .c-head05 鏃ユ湰瑾炪儐銈偣銉堛伄銇裤€係P2rem,PC2.3rem
  ================================================== */
.c-head05 {
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 2rem;
}
@media all and (min-width: 768px) {
  .c-head05 {
    margin-bottom: 25px;
    font-size: 2.3rem;
  }
}

.c-head05.is-center {
  text-align: center;
}

@media all and (max-width: 767px) {
  .c-head05.is-24-sp {
    margin-bottom: 25px;
    font-size: 2.4rem;
  }
}

@media all and (min-width: 768px) {
  .c-head05.is-40-pc {
    margin-bottom: 40px;
    font-size: 4rem;
  }
}

/* .c-head06 骞呫亜銇ｃ伇銇勩伄涓嬬窔浠樸亶
  ================================================== */
.c-head06 {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgb(var(--smoke_gray));
  line-height: 1.5;
  font-size: 2.2rem;
}
@media all and (min-width: 768px) {
  .c-head06 {
    margin-bottom: 30px;
    font-size: 3rem;
  }
}

/* .c-ico
  ================================================== */
.c-ico {
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
  transition: all 0.3s ease;
}

/* .c-ico-arrow
  ================================================== */
.c-ico-arrow {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-sizing: border-box;
  background: rgb(var(--green));
  transition: all 0.3s ease;
}
.c-ico-arrow::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  box-sizing: border-box;
}
.c-ico-arrow::after {
  position: absolute;
  content: '';
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  left: 50%;
  -webkit-transform: translate(-75%, -50%) rotate(45deg);
  transform: translate(-75%, -50%) rotate(45deg);
}
.c-ico-arrow.is-arw-top::after {
  -webkit-transform: translate(-50%, -25%) rotate(-45deg);
  transform: translate(-50%, -25%) rotate(-45deg);
}
.c-ico-arrow.is-bg-dark {
  background: #126243;
}
.c-ico-arrow.is-stroke {
  background: none;
}
.c-ico-arrow.is-stroke::before {
  border-color: currentColor;
}
@media all and (max-width: 767px) {
  .c-ico-arrow.is-mid,
  .c-ico-arrow.is-mid-sp {
    width: 35px;
    height: 35px;
  }
  .c-ico-arrow.is-mid::after,
  .c-ico-arrow.is-mid-sp::after {
    margin-left: -1px;
  }
}
@media all and (min-width: 768px) {
  .c-ico-arrow {
    width: 80px;
    height: 80px;
    transition: all 0.3s ease;
  }
  .c-ico-arrow::before {
    border-width: 2px;
    transition: all 0.3s ease;
  }
  .c-ico-arrow::after {
    border-width: 2px;
    width: 11px;
    height: 11px;
    transition: all 0.3s ease;
  }
  .c-ico-arrow.is-mid,
  .c-ico-arrow.is-mid-pc {
    width: 60px;
    height: 60px;
  }
  .c-ico-arrow.is-mid::after,
  .c-ico-arrow.is-mid-pc::after {
    width: 7px;
    height: 7px;
  }
  .c-ico-arrow.is-small-pc {
    width: 50px;
    height: 50px;
  }
  .c-ico-arrow.is-small-pc::after {
    width: 7px;
    height: 7px;
  }
}

@media all and (min-width: 768px) {
  a:hover .c-ico-arrow {
    background: none;
  }
  a:hover .c-ico-arrow::before,
  a:hover .c-ico-arrow::after {
    border-color: rgb(var(--green));
  }
  a:hover .c-ico-arrow.is-stroke {
    background: rgb(var(--green));
  }
  a:hover .c-ico-arrow.is-stroke::before {
    border-color: transparent;
  }
  a:hover .c-ico-arrow.is-stroke::after {
    border-color: #fff;
  }

  a:hover .c-ico-arrow.is-hover-white::before,
  a:hover .c-ico-arrow.is-hover-white::after {
    border-color: #fff;
  }
  a:hover .c-ico-arrow.is-hover-white.is-stroke {
    background: #fff;
  }
  a:hover .c-ico-arrow.is-hover-white.is-stroke::before {
    border-color: transparent;
  }
  a:hover .c-ico-arrow.is-hover-white.is-stroke::after {
    border-color: rgb(var(--green));
  }
}
/* .c-link01.is-large
  ================================================== */
.c-link01.is-large .c-link01__in {
  min-height: 190px;
}
.c-link01.is-large .c-link01__en {
  margin-bottom: 10px;
}
.c-link01.is-large .c-link01__txt {
  font-size: 2.2rem;
}
@media all and (min-width: 768px) {
  .c-link01.is-large .c-link01__in {
    min-height: 280px;
    overflow: hidden;
  }
  .c-link01.is-large .c-link01__txt {
    font-size: 3.5rem;
  }
}

/* .c-link01 Recommended Contents銇儗鏅敾鍍忎粯銇嶃儶銉炽偗
  ================================================== */
.c-link01-list .c-link01 {
  margin-bottom: 10px;
}
.c-link01-list .c-link01__in {
  min-height: 110px;
}
.c-link01-list .c-link01:last-child {
  margin-bottom: 0;
}
.c-link01-list .c-link01__txt {
  font-size: 1.8rem;
}
.c-link01__in {
  overflow: hidden;
  box-sizing: border-box;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 30px 60px 30px 35px;
  color: #fff;
  z-index: 1;
}
.c-link01__en {
  margin-bottom: 5px;
  font-size: 1rem;
}
.c-link01__txt {
  line-height: 1.3;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  font-weight: bold;
}
.c-link01__ico {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.c-link01__bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.c-link01__bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 374px) {
  .c-link01-list .c-link01__txt {
    font-size: 1.6rem;
  }
  .c-link01__in {
    padding: 30px 60px 30px 25px;
  }
}
@media all and (min-width: 768px) {
  .c-link01 {
    max-width: 1165px;
    margin: 0 auto;
  }
  .c-link01-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .c-link01-list .c-link01 {
    width: calc(50% - 40px);
    margin: 0 20px 40px;
  }

  .c-link01-list .c-link01:nth-child(3),
  .c-link01-list .c-link01:nth-child(4) {
    margin-bottom: 0;
  }

  .c-link01-list .c-link01__in {
    min-height: 180px;
    padding: 54px 90px 54px 50px;
  }
  .c-link01-list .c-link01__txt {
    font-size: 2.4rem;
  }
  .c-link01-list .c-link01__ico {
    right: 30px;
    width: 60px;
    height: 60px;
  }
  .c-link01__in {
    min-height: 240px;
    padding: 50px 150px 50px 140px;
    overflow: hidden;
  }
  .c-link01__in:hover .c-link01__bg img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  .c-link01__en {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
  .c-link01__txt {
    font-size: 3.4rem;
  }
  .c-link01__ico {
    right: 60px;
  }
  .c-link01__bg img {
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}

/* c-link02 鍏堥牠銇彸鍚戙亶銆屻亸銆嶃伄瀛椼仱銇�
  ============================== */
.c-link02__link {
  position: relative;
}
.c-link02__link::before {
  content: '';
  position: absolute;
  content: '';
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  position: static;
  display: inline-block;
  margin-right: 10px;
  color: rgb(var(--green));
}
.c-link02__ico {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 3px;
}
@media all and (min-width: 768px) {
  .c-link02__link {
    transition: color 0.3s ease;
  }
  .c-link02__link:hover {
    color: rgb(var(--green));
  }
  .c-link02__link::before {
    margin-right: 12px;
  }
  .c-link02__ico {
    width: 11px;
    height: 11px;
    margin-left: 5px;
  }
}

/* .c-link02.has-mt 涓婁綑鐧姐亗銈�
  --------------------------------- */
.c-link02.has-mt {
  margin-top: 13px;
}

/* .c-link02.is-15-sp SP1.5rem
  ---------------------------------- */
@media all and (max-width: 767px) {
  .c-link02.is-15-sp {
    font-size: 1.5rem;
  }
}

/* c-list01 骞呫亜銇ｃ伇銇勩伄涓嬬窔銇ゃ亶銆佷父鐣彿銉偣銉�
  ================================= */
.c-list01__item {
  display: flex;
  flex-wrap: wrap;
  padding: 15px 0;
  border-bottom: 1px solid rgb(var(--smoke_gray));
}
.c-list01__item:first-of-type {
  padding-top: 0;
}
.c-list01__item-num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  line-height: 1;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}
.c-list01__item-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  width: calc(100% - 36px);
  min-height: 36px;
  padding-left: 9px;
  line-height: 1.5;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
@media all and (min-width: 768px) {
  .c-list01__item {
    padding: 17px 0;
  }
  .c-list01__item-num {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
  }
  .c-list01__item-txt {
    width: calc(100% - 45px);
    min-height: 45px;
    padding-left: 15px;
    font-size: 1.9rem;
  }
}

/* c-modal01
  =============================== */
.c-modal01 {
  position: relative;
  z-index: 20;
}
.c-modal01[aria-hidden='false'] .c-modal01__overlay {
  -webkit-animation: c-modal01-fadein 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: c-modal01-fadein 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal01[aria-hidden='false'] .c-modal01__container {
  -webkit-animation: c-modal01-slideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: c-modal01-slideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal01[aria-hidden='true'] .c-modal01__overlay {
  -webkit-animation: c-modal01-fadeout 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: c-modal01-fadeout 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal01[aria-hidden='true'] .c-modal01__container {
  -webkit-animation: c-modal01-slideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: c-modal01-slideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal01__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-modal01__container {
  position: relative;
  background-color: #fff;
  padding: 30px;
  width: calc(100% - 60px);
  max-width: 500px;
  max-height: 80vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}
.c-modal01__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  line-height: 1;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  text-indent: -200vw;
  border: 0;
  overflow: hidden;
  white-space: nowrap;
  font-weight: normal;
  transition: opacity 0.3s ease;
}
.c-modal01__close::before,
.c-modal01__close::after {
  content: '';
  position: absolute;
  top: 13px;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-modal01__close::before {
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
}
.c-modal01__close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: top;
  transform-origin: top;
}
.c-modal01__close:focus,
.c-modal01__close:hover {
  opacity: 0.7;
}
.c-modal01__content {
  margin-bottom: 10px;
  line-height: 1.5;
}

@-webkit-keyframes c-modal01-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes c-modal01-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes c-modal01-fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes c-modal01-fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes c-modal01-slideIn {
  from {
    -webkit-transform: translateY(15%);
    transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes c-modal01-slideIn {
  from {
    -webkit-transform: translateY(15%);
    transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes c-modal01-slideOut {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }
}
@keyframes c-modal01-slideOut {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }
}
/* c-note01
  =============================== */
.c-note01 {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
@media all and (min-width: 768px) {
  .c-note01 {
    font-size: 1.4rem;
  }
}

/* c-note01.has-mt
  -------------------------------- */
.c-note01.has-mt {
  margin-top: 1em;
}

/* .c-pager01
  ================================================ */
.c-pager01 {
  position: relative;
  background: repeating-linear-gradient(-45deg, rgb(var(--light_green)), rgb(var(--light_green)) 2px, transparent 0, transparent 8px);
}
.c-pager01__inner {
  padding-top: 30px;
  padding-bottom: 30px;
}
.c-pager01-btns {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
}
.c-pager01__all {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
}
.c-pager01__previous,
.c-pager01__next {
  width: calc(50% - 20px);
  max-width: 140px;
  text-align: center;
}
.c-pager01__previous .c-pager01__arrow {
  padding-left: 15px;
  text-align: left;
}
.c-pager01__previous .c-pager01__arrow::before {
  left: 0;
  -webkit-transform: rotate(-135deg) translateY(-50%);
  transform: rotate(-135deg) translateY(-50%);
}
.c-pager01__next .c-pager01__arrow {
  padding-right: 15px;
  text-align: right;
}
.c-pager01__next .c-pager01__arrow::before {
  right: 0;
}
.c-pager01__img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 8px;
}
.c-pager01__ico {
  width: 38px;
  height: 38px;
  margin: 0 auto 8px;
}
.c-pager01__name {
  line-height: 1.5;
  font-size: 2rem;
}
.c-pager01__position {
  margin-top: 5px;
  line-height: 1.5;
  font-size: 1.2rem;
}
.c-pager01__year {
  margin-top: 2px;
  color: rgb(var(--green));
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.c-pager01__arrow {
  position: relative;
  margin-top: 25px;
  box-sizing: border-box;
  font-size: 1.6rem;
}
.c-pager01__arrow::before {
  position: absolute;
  content: '';
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  color: rgb(var(--green));
  -webkit-transform-origin: top;
  transform-origin: top;
}
.c-pager01__index {
  font-size: 1.6rem;
}
@media (max-width: 374px) {
  .c-pager01__position {
    font-size: 1.1rem;
  }
}
@media all and (min-width: 768px) {
  .c-pager01__inner {
    position: relative;
    z-index: 1;
    padding: 70px 0;
  }
  .c-pager01-btns {
    padding-bottom: 0;
  }
  .c-pager01__all {
    bottom: 30px;
  }
  .c-pager01__previous,
  .c-pager01__next {
    width: auto;
    width: calc(50% - 50px);
    max-width: none;
    margin: 0;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
  }
  .c-pager01__previous .c-pager01__link,
  .c-pager01__next .c-pager01__link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .c-pager01__next {
    text-align: right;
    justify-content: flex-end;
  }
  .c-pager01__next .c-pager01__link {
    justify-content: flex-end;
  }
  .c-pager01__next .c-pager01__area-txt {
    text-align: left;
  }
  .c-pager01__img {
    width: 100px;
    height: 100px;
    margin: 0 20px 0 0;
  }
  .c-pager01__area-txt {
    flex-basis: calc(100% - 120px);
    max-width: calc(100% - 120px);
  }
  .c-pager01__ico {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  .c-pager01__name {
    font-size: 2.6rem;
  }
  .c-pager01__position {
    font-size: 1.5rem;
  }
  .c-pager01__year {
    font-size: 1.2rem;
  }
  .c-pager01__arrow {
    width: 100%;
  }
  .c-pager01__index {
    font-size: 1.6rem;
  }
}

/*  .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-recommended01
  ================================================== */
.c-recommended01 {
  position: relative;
  z-index: 1;
}
.c-recommended01::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  background: repeating-linear-gradient(-45deg, rgb(var(--light_green)), rgb(var(--light_green)) 2px, transparent 0, transparent 8px);
}
.c-recommended01.has-header {
  background: transparent;
}
.c-recommended01.has-header::before {
  top: 310px;
}
.c-recommended01.has-header .c-recommended01__inner {
  padding-top: 80px;
}
.c-recommended01.has-header.has-list::before {
  top: 270px;
}
.c-recommended01.has-entry .c-recommended01__inner {
  padding-bottom: 130px;
}
.c-recommended01__inner {
  padding-top: 50px;
  padding-bottom: 100px;
}
@media all and (min-width: 768px) {
  .c-recommended01.has-header {
    background: transparent;
  }
  .c-recommended01.has-header::before {
    top: 420px;
  }
  .c-recommended01.has-header.twoo::before {
    top: 250px;
  }

  .c-recommended01.has-header .c-recommended01__inner {
    padding-top: 120px;
  }
  .c-recommended01.has-header.has-list::before {
    top: 400px;
  }
  .c-recommended01.has-header.has-list .c-recommended01__inner {
    padding-top: 150px;
  }
  .c-recommended01.has-entry .c-recommended01__inner {
    padding-bottom: 220px;
  }
  .c-recommended01__inner {
    padding-top: 80px;
    padding-bottom: 150px;
  }
}

/* .c-schedule01
  ================================================== */
.c-schedule01__item {
  position: relative;
  margin-bottom: 20px;
  padding-left: 95px;
}
.c-schedule01__item:last-child {
  margin-bottom: 0;
}
.c-schedule01__item:last-child::before {
  bottom: 10px;
}
.c-schedule01__item::before {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 8px;
  width: 1px;
  height: calc(100% + 20px);
  background: currentColor;
}
.c-schedule01__item-time {
  position: absolute;
  top: 0;
  left: 36px;
  width: 50px;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}
.c-schedule01__item-time::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -36px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: currentColor;
}
.c-schedule01__item-txt {
  font-size: 1.6rem;
}
@media all and (min-width: 768px) {
  .c-schedule01 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 100px;
    -moz-column-gap: 100px;
    column-gap: 100px;
  }
  .c-schedule01__item {
    box-sizing: border-box;
    width: calc(50% - 100px);
    min-width: 380px;
    margin-bottom: 0;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    padding: 15px 0 15px 95px;
  }
  .c-schedule01__item::before {
    top: 0;
    height: calc(100% + 30px);
  }
  .c-schedule01__item:last-child::before {
    height: calc(100% - 30px);
  }
  .c-schedule01__item-time {
    top: 15px;
    font-size: 1.6rem;
  }
  .c-schedule01__item-txt {
    font-size: 1.8rem;
  }
}

/* c-set01  鐢诲儚锛嬨儐銈偣銉堛偍銉偄锛堣鍑恒仐锛嬨儐銈偣銉堬級銆傘儑銉曘偐銉儓绺︿甫銇�
  =========================================== */
.c-set01 + .c-set01 {
  margin-top: 60px;
}
.c-set01__img {
  margin-bottom: 30px;
  text-align: center;
}
.c-set01__head {
  padding-bottom: 20px;
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgb(var(--smoke_gray));
}
@media all and (min-width: 768px) {
  .c-set01 + .c-set01 {
    margin-top: 120px;
  }
  .c-set01__img {
    margin-bottom: 60px;
  }
  .c-set01__head {
    margin-bottom: 30px;
    padding-bottom: 30px;
    font-size: 3rem;
  }
}

/* c-set01.has-bg 銉嗐偔銈广儓銈ㄣ儶銈€伀鑳屾櫙鐧�
  -------------------------------------- */
.c-set01.has-bg .c-set01__img {
  position: relative;
  z-index: 2;
}
.c-set01.has-bg .c-set01__area-txt {
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
}
.c-set01.has-bg .c-set01__area-txt::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -30px;
  z-index: -1;
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  background: #fff;
}
@media all and (min-width: 768px) {
  .c-set01.has-bg .c-set01__area-txt {
    padding: 0 80px 100px;
  }
  .c-set01.has-bg .c-set01__area-txt::before {
    left: -100px;
    width: calc(100% + 200px);
    height: calc(100% + 180px);
  }
}

/* .c-set01.is-left-pc PC銇х敾鍍忓乏
  -------------------------------------- */
@media all and (min-width: 768px) {
  .c-set01.is-left-pc {
    display: flex;
    box-sizing: border-box;
  }
  .c-set01.is-left-pc .c-set01__img {
    margin: 0 60px 0 -70px;
    width: calc(50% + 40px);
    max-width: 605px;
  }
  .c-set01.is-left-pc .c-set01__area-txt {
    box-sizing: border-box;
    width: 50%;
    min-width: 550px;
    padding-left: 30px;
  }
}
@media all and (min-width: 1200px) {
  .c-set01.is-left-pc .c-set01__img {
    margin-left: -8vw;
    width: calc(50% + 8vw);
  }
}
@media all and (min-width: 1400px) {
  .c-set01.is-left-pc .c-set01__img {
    margin-left: -120px;
  }
}

/* .c-set01.is-right-pc PC銇х敾鍍忓彸
  -------------------------------------- */
@media all and (min-width: 768px) {
  .c-set01.is-right-pc {
    display: flex;
    box-sizing: border-box;
    flex-direction: row-reverse;
  }
  .c-set01.is-right-pc .c-set01__img {
    margin: 0 -70px 0 60px;
    width: calc(50% + 40px);
    max-width: 605px;
  }
  .c-set01.is-right-pc .c-set01__area-txt {
    box-sizing: border-box;
    width: 50%;
    min-width: 550px;
    padding-right: 30px;
  }
}
@media all and (min-width: 1200px) {
  .c-set01.is-right-pc .c-set01__img {
    margin-right: -8vw;
    width: calc(50% + 8vw);
  }
}
@media all and (min-width: 1400px) {
  .c-set01.is-right-pc .c-set01__img {
    margin-right: -120px;
  }
}

/* c-set01.is-reverse-sp
  ------------------------------------- */
@media all and (max-width: 767px) {
  .c-set01.is-reverse-sp {
    display: flex;
    flex-direction: column-reverse;
  }
  .c-set01.is-reverse-sp .c-set01__img {
    margin-bottom: 0;
  }
  .c-set01.is-reverse-sp .c-set01__area-txt {
    margin-bottom: 30px;
  }
}

/* c-set02  涓搞偄銈ゃ偝銉筹紜瑕嬪嚭銇楋紜銉嗐偔銈广儓
  =========================================== */
.c-set02 {
  position: relative;
  box-sizing: border-box;
  margin-left: 40px;
  padding: 20px 20px 20px 55px;
  border: 1px solid rgb(var(--green));
}
.c-set02-list .c-set02 {
  margin: 0 0 10px 40px;
}
.c-set02__head {
  margin-bottom: 5px;
  line-height: 1.5;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
.c-set02__ico {
  position: absolute;
  top: 50%;
  left: -40px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
}
@media all and (min-width: 768px) {
  .c-set02 {
    margin: 50px 0 0;
    padding: 63px 30px 30px;
  }
  .c-set02-list .c-set02 {
    margin: 50px 0 85px 0;
  }
  .c-set02-list.is-col3-pc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -12px;
  }
  .c-set02-list.is-col3-pc .c-set02:not(.is-center-pc) {
    width: calc(33.33% - 24px);
    margin: 50px 12px 45px;
  }
  .c-set02-list.is-col3-pc .c-set02.is-center-pc {
    margin-bottom: 45px;
  }
  .c-set02__head {
    font-size: 2.3rem;
    text-align: center;
  }
  .c-set02__txt {
    text-align: center;
  }
  .c-set02__ico {
    top: -50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
  }
}

/* .c-set02.is-center-pc  PC銇т腑澶倛銇涖仹瑕嬪嚭銇椼仺銉嗐偔銈广儓妯甫銇�
  ------------------------------------------------- */
@media all and (min-width: 768px) {
  .c-set02.is-center-pc {
    display: flex;
    text-align: left;
    width: 790px;
    margin: 12px auto;
    padding: 28px 40px 28px 90px;
  }
  .c-set02.is-center-pc .c-set02__head {
    max-width: 40%;
    min-width: 10%;
    margin: 0 20px 0 0;
    text-align: left;
  }
  .c-set02.is-center-pc .c-set02__txt {
    margin-top: 2px;
    text-align: left;
  }
  .c-set02.is-center-pc .c-set02__ico {
    top: 50%;
    left: -60px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
  }
}

/* c-set03  鍐呬綑鐧姐亗銈娿伄銉溿儍銈偣銆傝鍑恒仐銇屼笂銇皯銇椼伅銇垮嚭銈�
  =========================================== */
.c-set03__head {
  margin-bottom: -40px;
}
.c-set03__area-txt {
  padding: 56px 30px;
  margin: 0 -30px;
}
@media all and (min-width: 768px) {
  .c-set03__head {
    margin-bottom: -70px;
  }
  .c-set03__area-txt {
    margin: 0 -110px;
    padding: 106px 110px 80px;
  }
}

/* c-set04  涓哥敾鍍忥紜鍚嶅墠锛嬨儐銈偣銉�
  =========================================== */
.c-set04-list .c-set04 {
  margin-bottom: 10px;
}
.c-set04-list .c-set04:last-child {
  margin-bottom: 0;
}
.c-set04__link {
  position: relative;
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  padding: 8px 12px;
  height: 100%;
  box-sizing: border-box;
}
.c-set04__link::before {
  content: '';
  position: absolute;
  top: 5px;
  left: -6px;
  width: 24px;
  height: 2px;
  background: rgb(var(--green));
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.c-set04__img {
  position: relative;
  min-width: 60px;
  width: 60px;
  height: 60px;
  margin-right: 10px;
  border-radius: 50%;
  overflow: hidden;
}
.c-set04__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-set04__area-txt {
  width: calc(100% - 60px - 10px);
}
.c-set04__name {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}
.c-set04__txt {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}
@media all and (min-width: 768px) {
  .c-set04-list .c-set04 {
    margin-bottom: 18px;
  }
  .c-set04-list.is-col4-pc {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -9px;
  }
  .c-set04-list.is-col4-pc .c-set04 {
    width: calc(25% - 18px);
    margin: 0 9px 18px;
  }
  .c-set04-list.is-col4-pc .c-set04:nth-of-type(4n + 1):nth-last-of-type(-n + 4) {
    margin-bottom: 0;
  }
  .c-set04-list.is-col4-pc .c-set04:nth-of-type(4n + 1):nth-last-of-type(-n + 4) ~ .c-set04 {
    margin-bottom: 0;
  }
  .c-set04__link {
    padding: 10px 15px;
  }
  .c-set04__img {
    min-width: 70px;
    width: 70px;
    height: 70px;
  }
  .c-set04__area-txt {
    width: calc(100% - 70px - 10px);
  }
  .c-set04__name {
    font-size: 2rem;
  }
  .c-set04__txt {
    font-size: 1.3rem;
  }
}

/* c-single01 绀惧摗銈ゃ兂銈裤儞銉ャ兗瑭崇窗
  =========================================== */
.c-single01 {
  overflow: hidden;
}
.c-single01__note {
  margin-top: 10px;
  text-align: right;
  font-size: 1.2rem;
}
@media all and (min-width: 768px) {
  .c-single01__note {
    margin-top: 15px;
    font-size: 1.6rem;
  }
}

/* .c-single01-profile
  =============================================== */
.c-single01-profile__inner {
  padding-top: 3px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .c-single01-profile__inner {
    padding-top: 6px;
    padding-bottom: 120px;
  }
}

/* .c-single01-profile-box
  -----------------------------*/
.c-single01-profile-box {
  position: relative;
  padding: 40px 30px;
}
.c-single01-profile-box::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 25px;
  height: 2px;
  background: rgb(var(--green));
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.c-single01-profile-box__heading {
  display: flex;
  flex-wrap: wrap;
}
.c-single01-profile-box__heading-img {
  position: relative;
  min-width: 90px;
  width: 90px;
  height: 90px;
  margin-right: 20px;
  border-radius: 50%;
  overflow: hidden;
}
.c-single01-profile-box__heading-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-single01-profile-box__heading-area-txt {
  width: calc(100% - 90px - 20px);
}
.c-single01-profile-box__heading-initial {
  line-height: 1.5;
  font-size: 2rem;
  letter-spacing: 0.08em;
}
.c-single01-profile-box__heading-position {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
.c-single01-profile-box__heading-years-label {
  margin-right: 5px;
  padding: 2px 6px;
  background: rgb(var(--green));
  color: #fff;
  font-size: 1.2rem;
}
.c-single01-profile-box__heading-years-txt {
  color: rgb(var(--green));
  font-size: 1.3rem;
}
@media all and (max-width: 767px) {
  .c-single01-profile-box__txt {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid rgb(var(--smoke_gray));
  }
}
@media all and (min-width: 768px) {
  .c-single01-profile-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px 50px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .c-single01-profile-box::before {
    left: 30px;
  }
  .c-single01-profile-box__heading {
    width: 395px;
  }
  .c-single01-profile-box__heading-img {
    min-width: 130px;
    width: 130px;
    height: 130px;
    margin-right: 60px;
  }
  .c-single01-profile-box__heading-area-txt {
    width: calc(100% - 130px - 60px);
  }
  .c-single01-profile-box__heading-initial {
    font-size: 3rem;
  }
  .c-single01-profile-box__heading-position {
    font-size: 1.5rem;
  }
  .c-single01-profile-box__heading-years-label {
    font-size: 1.3rem;
  }
  .c-single01-profile-box__heading-years-txt {
    font-size: 1.5rem;
  }
  .c-single01-profile-box__txt {
    box-sizing: border-box;
    width: calc(100% - 395px - 50px);
    margin-left: 50px;
    padding: 15px 0 15px 50px;
    border-left: 1px solid rgb(var(--smoke_gray));
  }
}

/* .c-single01-sec
  =============================================== */
.c-single01-sec:nth-child(3n + 1) {
  background: rgb(var(--yellow));
}
.c-single01-sec:nth-child(3n + 3) {
  background: rgb(var(--ex_light_green));
}
.c-single01-sec__inner {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media all and (min-width: 768px) {
  .c-single01-sec {
    position: relative;
  }
  .c-single01-sec:nth-child(3n + 1) .c-single01-sec__part {
    top: 480px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-left: -680px;
    width: 151px;
    height: 141px;
    background: url(../images/bg_part01.png) no-repeat center/contain;
  }
  .c-single01-sec:nth-child(3n + 2) .c-single01-sec__part {
    bottom: 70px;
    right: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 159px;
    height: 152px;
    margin-right: -880px;
    background: url(../images/bg_part02.png) no-repeat center/contain;
  }
  .c-single01-sec:nth-child(3n + 3) .c-single01-sec__part {
    bottom: 120px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-left: -680px;
    width: 151px;
    height: 141px;
    background: url(../images/bg_part01.png) no-repeat center/contain;
  }
  .c-single01-sec__inner {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .c-single01-sec__part {
    position: absolute;
  }
}

/* c-single01-bnr
  ================================== */
.c-single01-bnr {
  position: relative;
  z-index: 1;
  padding-left: 30px;
  text-align: center;
}
.c-single01-bnr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgb(var(--yellow)) 50%, #fff 50%);
}
@media all and (min-width: 768px) {
  .c-single01-bnr {
    padding-left: 150px;
  }
}

/* c-single01-vision
  =================================== */
.c-single01-vision__inner {
  padding-top: 50px;
  padding-bottom: 70px;
}
@media all and (min-width: 768px) {
  .c-single01-vision__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

/* c-single01-vision-box
  ----------------------------------------- */
.c-single01-vision-box {
  padding: 35px 30px;
}
.c-single01-vision-box__head {
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 2rem;
  letter-spacing: 0.04em;
}
@media all and (min-width: 768px) {
  .c-single01-vision-box {
    padding: 60px;
  }
  .c-single01-vision-box__head {
    margin-bottom: 15px;
    font-size: 2.3rem;
  }
}

/* c-single01-schedule
  ===================================== */
.c-single01-schedule {
  position: relative;
  color: #fff;
}
.c-single01-schedule::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../images/bg_schedule01.jpg) no-repeat 0 0 / cover;
}
.c-single01-schedule__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.c-single01-schedule__head {
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.3;
  font-size: 2.6rem;
}
.c-single01-schedule__head-txt {
  position: relative;
  display: inline-block;
}
.c-single01-schedule__head-txt::before {
  content: '';
  position: absolute;
  top: 7px;
  left: -7px;
  width: 25px;
  height: 2px;
  background: rgba(var(--light_green), 0.2);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media all and (min-width: 768px) {
  .c-single01-schedule__inner {
    padding: 115px 120px 120px 120px;
  }
  .c-single01-schedule__head {
    margin-bottom: 60px;
    font-size: 4rem;
  }
  .c-single01-schedule__head-txt::before {
    top: 15px;
    left: -20px;
    width: 60px;
  }
}

/* c-single01-bottom
  ====================================== */
.c-single01-bottom__inner {
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .c-single01-bottom__inner {
    padding-bottom: 100px;
  }
}

/* c-single01-message
  ====================================== */
.c-single01-message__inner {
  padding: 0 20px 80px;
}
@media all and (min-width: 768px) {
  .c-single01-message__inner {
    box-sizing: border-box;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 0 120px;
  }
}

/* c-single01-message-box
  -------------------------------------------- */
.c-single01-message-box {
  padding: 30px;
}
.c-single01-message-box__img {
  width: 160px;
  height: 160px;
  margin: 0 auto 10px;
  border-radius: 50%;
  overflow: hidden;
}
.c-single01-message-box__head {
  line-height: 1.5;
  font-size: 2rem;
  letter-spacing: 0.04em;
}
.c-single01-message-box__txt {
  margin-top: 5px;
}
@media all and (min-width: 768px) {
  .c-single01-message-box {
    display: flex;
    flex-wrap: wrap;
    padding: 54px 60px;
  }
  .c-single01-message-box__img {
    width: 160px;
    margin: 0;
  }
  .c-single01-message-box__area-txt {
    box-sizing: border-box;
    width: calc(100% - 160px);
    padding-left: 30px;
  }
  .c-single01-message-box__head {
    font-size: 2.3rem;
  }
  .c-single01-message-box__txt {
    margin-top: 15px;
  }
}

/* .c-single-content
  ================================================== */
.c-single-content *:first-child {
  margin-top: 0;
}
.c-single-content *:last-child {
  margin-bottom: 0;
}
.c-single-content p {
  margin: 1em 0;
}
.c-single-content a {
  text-decoration: underline;
}
@media all and (min-width: 1200px) {
  .c-single-content a:hover {
    text-decoration: none;
  }
  .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-table01 绶戠窔銇ㄣ偘銉兗绶氥仱銇�
  ================================================== */
.c-table01 th {
  font-weight: 700;
  font-size: 1.6rem;
  text-align: left;
  border-top: 1px solid rgb(var(--green));
}
.c-table01 th,
.c-table01 td {
  padding: 15px 0 14px;
  letter-spacing: 0.08em;
}
@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: 1px solid rgb(var(--smoke_gray));
  }
  .c-table01 tr:last-of-type td {
    border-bottom: 1px solid rgb(var(--green));
  }
}
@media all and (min-width: 768px) {
  .c-table01 th,
  .c-table01 td {
    padding: 26px;
  }
  .c-table01 th {
    width: 23.6%;
    font-size: 1.8rem;
    padding-left: 40px;
    border-bottom: 1px solid rgb(var(--green));
  }
  .c-table01 td {
    padding-right: 40px;
    padding-left: 50px;
    border-top: 1px solid rgb(var(--smoke_gray));
    border-bottom: 1px solid rgb(var(--smoke_gray));
  }
  .c-table01 th,
  .c-table01 td {
    padding-top: 25px;
    padding-bottom: 24px;
  }
}

/* .l-breadcrumb
  ================================================ */
.l-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 15px;
  padding-bottom: 15px;
}
.l-breadcrumb-list__item {
  display: inline-block;
  vertical-align: top;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item {
  margin-left: 5px;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item:before {
  content: '';
  margin-right: 10px;
  color: rgb(var(--green));
  position: absolute;
  content: '';
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  width: 4px;
  height: 4px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  position: static;
  display: inline-block;
}
.l-breadcrumb-list__item a {
  color: rgb(var(--green));
}
@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: 30px;
    padding-bottom: 30px;
  }
  .l-breadcrumb-list.pro {
    margin-top: 25px;
  }
  .l-breadcrumb-list__item {
    font-size: 1.5rem;
  }
}

/* .l-footer
  ================================================ */
.l-footer {
  position: relative;
  background: rgb(var(--light_green));
}
.l-footer__inner {
  padding-bottom: 45px;
}
.l-footer__cr {
  color: rgb(var(--light_gray));
  font-size: 1.3rem;
}
@media all and (max-width: 767px) {
  .l-footer__cr {
    margin-top: 40px;
  }
}
@media all and (min-width: 768px) {
  .l-footer {
    padding-top: 40px;
    margin-top: -20px;
  }
  .l-footer__inner {
    border-top: 1px solid rgb(var(--light_gray));
    max-width: 100%;
    padding: 35px 65px 30px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
}

/* .l-footer-first
  ================================================ */
.l-footer-first {
  position: relative;
  background: rgb(var(--light_green));
  border-top: 1px solid #eee;
}
.l-footer-first__inner {
  padding-top: 40px;
  padding-bottom: 50px;
}
@media all and (min-width: 768px) {
  .l-footer-first__inner {
    padding-top: 103px;
    padding-bottom: 86px;
  }
}

/* .l-footer-first-info
  ================================================ */
.l-footer-first-info {
  text-align: center;
  margin-bottom: 40px;
}
.l-footer-first-info__logo {
  max-width: 235px;
  margin: 0 auto;
}
.l-footer-first-info__logo-txt {
  margin-top: 2px;
  display: block;
  color: rgb(var(--green));
  font-size: 1.1rem;
}
@media all and (min-width: 768px) {
  .l-footer-first-info__logo {
    max-width: 255px;
  }
  .l-footer-first-info__logo-txt {
    font-size: 1.2rem;
  }
}

/* .l-footer-first-list
  ================================================ */
.l-footer-first-list__item {
  line-height: 1.5;
}
.l-footer-first-list__item-trigger {
  padding: 0;
  margin: 0;
  border: none;
  font: inherit;
  text-align: inherit;
  position: relative;
  font-weight: 700;
}
.l-footer-first-list__item-trigger-txt {
  position: relative;
  display: block;
  padding-left: 20px;
}
.l-footer-first-list__item-trigger-txt::before {
  position: absolute;
  top: 10px;
  left: 0;
  content: '';
  width: 14px;
  height: 2px;
  background: rgb(var(--green));
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.l-footer-first-list__child {
  font-size: 1.3rem;
}
@media all and (max-width: 767px) {
  .l-footer-first-list {
    border-top: 1px solid var(--border);
  }
  .l-footer-first-list__item {
    border-bottom: 1px solid var(--border);
  }
  .l-footer-first-list__item-trigger {
    height: 60px;
  }
  .l-footer-first-list__item-trigger::before,
  .l-footer-first-list__item-trigger::after {
    position: absolute;
    top: 50%;
    right: 0;
    content: '';
    width: 13px;
    height: 0;
    border-top: 1px solid rgb(var(--green));
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .l-footer-first-list__item-trigger:not(.is-active)::before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .l-footer-first-list__child {
    padding-bottom: 10px;
  }
  .l-footer-first-list__child-item-link {
    display: block;
    padding: 10px 0;
  }
  .l-footer-first-list__child-item-link-txt {
    position: relative;
    padding: 1px 0 0 20px;
  }
  .l-footer-first-list__child-item-link-txt::after {
    position: absolute;
    content: '';
    top: 50%;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    left: -6px;
    color: rgb(var(--green));
  }
}
@media all and (min-width: 768px) {
  .l-footer-first-list {
    display: flex;
    justify-content: space-between;
  }
  .l-footer-first-list__item {
    max-width: 205px;
    min-width: 110px;
  }
  .l-footer-first-list__item-trigger {
    font-size: 1.5rem;
    pointer-events: none;
  }
  .l-footer-first-list__content {
    display: block !important;
    height: auto !important;
    padding-left: 20px;
  }
  .l-footer-first-list__child {
    line-height: 1.5;
  }
  .l-footer-first-list__child-item {
    margin-top: 15px;
  }
  .l-footer-first-list__child-item-link {
    display: block;
    transition: color 0.3s ease;
  }
  .l-footer-first-list__child-item-link-txt {
    position: relative;
    padding-left: 10px;
  }
  .l-footer-first-list__child-item-link-txt::before {
    position: absolute;
    top: 0;
    left: 0;
    color: rgb(var(--green));
    content: '-';
  }
  .l-footer-first-list__child-item-link:hover {
    color: rgb(var(--green));
  }
}

/* .l-footer-sub
  ================================================== */
.l-footer-sub {
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
}
.l-footer-sub__item + .l-footer-sub__item {
  margin-left: 30px;
}
.l-footer-sub__item-link {
  display: block;
}
.l-footer-sub__item-link-ico {
  width: 12px;
  height: 12px;
  margin-left: 5px;
}
@media all and (min-width: 768px) {
  .l-footer-sub__item-link-txt {
    transition: color 0.3s ease;
  }
  .l-footer-sub__item-link:hover {
    color: rgb(var(--green));
  }
}

/* .l-footer-page-top
  ================================================ */
.l-footer-page-top {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  position: fixed;
  padding: 0;
  margin: 0;
  bottom: 35px;
  z-index: 10;
  color: rgb(var(--green));
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}
.l-footer-page-top__link {
  display: block;
  width: 100%;
  height: 100%;
}
.l-footer-page-top.is-shown {
  opacity: 1;
  visibility: visible;
}
@media all and (max-width: 767px) {
  .l-footer-page-top {
    right: 30px;
  }
}
@media all and (min-width: 768px) {
  .l-footer-page-top {
    position: sticky;
    margin: -50px 65px 0 auto;
    width: 50px;
    height: 50px;
    left: 0;
    bottom: 20px;
  }
}

/* .l-header
  ================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  z-index: 2000;
  transition: 0.5s ease;
}
.l-header.is-active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.l-header.is-active:not(.is-shown) {
  -webkit-transform: translateY(-160px);
  transform: translateY(-160px);
}
.l-header.is-loading {
  transition: none !important;
}
.l-header.is-loading a {
  transition: none !important;
  font-family: 'Cabin', sans-serif;
}
@media all and (min-width: 1200px) {
  .l-header {
    display: flex;
    justify-content: space-between;
  }
  .l-header.is-active:not(.is-shown) .l-nav-list__content {
    opacity: 0;
    pointer-events: none;
  }
}

/* .l-header-info
  ================================================== */
.l-header-info {
  position: relative;
  z-index: 3;
  height: 65px;
  background: #fff;
}
.l-header-info__logo {
  width: 181px;
  padding: 10px 0 0 15px;
}
.l-header-info__logo-img {
  display: block;
}
.l-header-info__logo-txt {
  margin-top: 1px;
  display: block;
  font-size: 1.1rem;
  color: rgb(var(--green));
  word-break: break-word;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .l-header-info__logo {
    width: 350px;
  }
  .l-header-info__logo-link {
    display: flex !important;
    align-items: center;
  }
  .l-header-info__logo-img {
    flex-basis: 180px;
    max-width: 180px;
  }
  .l-header-info__logo-txt {
    margin-left: 20px;
    font-size: 1.2rem;
  }
}
@media all and (min-width: 1200px) {
  .l-header-info {
    height: 80px;
    flex-basis: 450px;
    max-width: 450px;
  }
  .l-header-info__logo {
    padding: 15px 0 0 25px;
  }
}

@media all and (min-width: 1680px) {
  .l-header-info__logo-img {
    flex-basis: 205px;
    max-width: 205px;
  }
}

/* .l-nav-btn
  ================================================== */
.l-nav-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 25px;
  height: 25px;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.l-nav-btn__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background: rgb(var(--green));
  transition: all 0.3s ease;
}
.l-nav-btn__line:nth-child(1) {
  top: 4px;
}
.l-nav-btn__line:nth-child(2) {
  top: 11px;
}
.l-nav-btn__line:nth-child(3) {
  top: 18px;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(-45deg);
  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: 11px;
  -webkit-transform: rotate(45deg);
  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: 1200px) {
  .l-nav-btn {
    display: none;
  }
}

/* .l-nav
  ================================================ */
.l-nav {
  position: absolute;
  top: 65px;
  left: 0;
  z-index: 2;
  width: 100%;
  max-height: calc(100vh - 65px);
  min-width: 320px;
  padding: 40px 30px 100px;
  background: rgb(var(--light_green));
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  text-align: left;
}
@media all and (max-width: 1199px) {
  .l-nav {
    overflow: auto;
    -webkit-transform: translateX(120%);
    transform: translateX(120%);
    transition: all 0.3s ease;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav.is-open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@media all and (min-width: 1200px) {
  .l-nav {
    position: static;
    min-width: auto;
    padding: 0;
    background: #fff;
    display: flex;
    justify-content: flex-end;
  }
}

/* .l-nav-list
  ================================================== */
.l-nav-list__item {
  line-height: 1.5;
}
.l-nav-list__item-trigger {
  padding: 0;
  margin: 0;
  border: none;
  font: inherit;
  text-align: inherit;
  font-family: 'Cabin', sans-serif;
}
.l-nav-list__child {
  font-size: 1.3rem;
}
.l-nav-list__child-item {
  max-width: 315px;
}
.l-nav-list__child-item-link {
  display: block;
}
.l-nav-list__child-item-link-img {
  width: 100%;
  height: 110px;
  margin-bottom: 5px;
}
.l-nav-list__child-item-link-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.l-nav-list__child-item-link-txt {
  position: relative;
  padding: 1px 20px 0 0;
  font-family: 'Barlow-Bold';
}
.l-nav-list__child-item-link-txt::after {
  position: absolute;
  content: '';
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  right: 12px;
  color: rgb(var(--green));
}
@media all and (max-width: 1199px) {
  .l-nav-list {
    border-top: 1px solid var(--border);
  }
  .l-nav-list__item {
    border-bottom: 1px solid var(--border);
  }
  .l-nav-list__item-trigger {
    position: relative;
    font-weight: 700;
    height: 60px;
  }
  .l-nav-list__item-trigger::before,
  .l-nav-list__item-trigger::after {
    position: absolute;
    top: 50%;
    right: 0;
    content: '';
    width: 13px;
    height: 0;
    border-top: 1px solid rgb(var(--green));
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .l-nav-list__item-trigger:not(.is-active)::before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .l-nav-list__item-trigger-txt {
    position: relative;
    display: block;
    padding-left: 20px;
    font-family: 'Cabin', sans-serif;
  }
  .l-nav-list__item-trigger-txt::before {
    position: absolute;
    top: 10px;
    left: 0;
    content: '';
    width: 14px;
    height: 2px;
    background: rgb(var(--green));
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .l-nav-list__content-in {
    padding: 0;
    margin: 0;
  }
  .l-nav-list__child-item {
    padding-bottom: 20px;
  }
  .l-nav-list__child.is-recruit {
    padding-bottom: 10px;
  }
  .l-nav-list__child.is-recruit .l-nav-list__child-item {
    padding: 0;
  }
  .l-nav-list__child.is-recruit .l-nav-list__child-item-link {
    padding: 10px 0;
  }
  .l-nav-list__child.is-recruit .l-nav-list__child-item-link-txt {
    padding-right: 0;
    padding-left: 20px;
  }
  .l-nav-list__child.is-recruit .l-nav-list__child-item-link-txt::after {
    right: unset;
    left: -6px;
  }
}
@media all and (min-width: 1200px) {
  .l-nav-list {
    position: relative;
    display: flex;
    justify-content: center;
    margin-right: 10px;
  }
  .l-nav-list__item {
    display: flex;
    margin-right: 25px;
  }
  .l-nav-list__item-trigger {
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
  }
  .l-nav-list__item-trigger:hover,
  .l-nav-list__item-trigger.is-active {
    color: rgb(var(--green));
  }
  .l-nav-list__item-trigger-txt {
    font-size: 1.4rem;
  }
  .l-nav-list__item-link {
    display: block;
    padding: 20px 30px;
  }
  .l-nav-list__content {
    box-sizing: border-box;
    position: fixed;
    top: 80px;
    right: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: rgb(var(--ex_light_green));
    height: auto !important;
    padding: 40px !important;
    display: block !important;
  }
  .l-nav-list__content.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .l-nav-list__content-in {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .l-nav-list__content-head {
    margin: 0;
    margin-top: 0.2rem;
    margin-right: 2rem;
  }
  .l-nav-list__child {
    display: flex;
    font-size: 1.4rem;
  }
  .l-nav-list__child-item {
    margin-left: 12px;
    max-width: 300px;
  }
  .l-nav-list__child-item-link {
    transition: color 0.3s ease;
  }
  .l-nav-list__child-item-link-img {
    height: 130px;
    margin-bottom: 12px;
    transition: opacity 0.3s ease;
  }
  .l-nav-list__child-item-link-txt {
    word-break: keep-all;
    overflow: hidden;
    overflow-wrap: anywhere;
  }
  .l-nav-list__child-item-link-txt::after {
    top: 11px;
  }
  .l-nav-list__child-item-link:hover {
    color: rgb(var(--green));
  }
  .l-nav-list__child-item-link:hover .l-nav-list__child-item-link-img {
    opacity: 0.7;
  }
  .l-nav-list__child.is-business,
  .l-nav-list__child.is-environment {
    min-width: 720px;
  }
  .l-nav-list__child.is-business .l-nav-list__child-item,
  .l-nav-list__child.is-environment .l-nav-list__child-item {
    max-width: 168px;
  }
  .l-nav-list__child.is-recruit .l-nav-list__child-item {
    margin-top: 32px;
    border-bottom: 1px solid var(--border);
  }
  .l-nav-list__child.is-recruit .l-nav-list__child-item-link {
    width: 180px;
    padding-bottom: 25px;
  }
}
@media all and (min-width: 1400px) {
  .l-nav-list {
    margin-right: 0;
  }
  .l-nav-list__item {
    margin-right: 40px;
  }
  .l-nav-list__item-trigger-txt {
    font-size: 1.5rem;
  }
}

/* .l-nav-entry
  ================================================== */
.l-nav-entry {
  margin-top: 40px;
}
@media all and (min-width: 1200px) {
  .l-nav-entry {
    margin: 0;
    width: 160px;
    font-size: 1.6rem;
  }
  .l-nav-entry__link {
    min-height: 80px;
    height: 80px;
    padding: 10px;
    box-sizing: border-box;
  }
  .l-nav-entry__link::after {
    right: 22px;
  }
}
@media all and (min-width: 1400px) {
  .l-nav-entry {
    width: 180px;
    font-size: 1.8rem;
  }
  .l-nav-entry__link {
    transition: -webkit-filter 0.3s ease;
    transition: filter 0.3s ease;
    transition: filter 0.3s ease, -webkit-filter 0.3s ease;
  }
  .l-nav-entry__link:hover {
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
  }
}

/* .l-nav-sub
  ================================================== */
.l-nav-sub {
  margin-top: 45px;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
}
.l-nav-sub__item + .l-nav-sub__item {
  margin-left: 30px;
}
.l-nav-sub__item-link {
  display: block;
}
.l-nav-sub__item-link-ico {
  width: 12px;
  height: 12px;
  margin-left: 5px;
}
@media all and (min-width: 1200px) {
  .l-nav-sub {
    display: none;
  }
}

/* .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: 1200px) {
  .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 {
  text-align: center;
}
.l-main-img-slide {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  min-height: 500px;
}
.l-main-img-slide::after {
  content: '';
  display: block;
  position: absolute;
  pointer-events: none;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(var(--black), 0) 0%, rgba(11, 11, 11, 0.2) 64%, rgb(var(--black)) 100%);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.l-main-img-slide.is-dark::after {
  opacity: 0.85;
}
.l-main-img-slide__wrap {
  height: 100%;
}
.l-main-img-slide__wrap div {
  height: 100%;
}
.l-main-img-slide__wrap.is-slick-start .slick-slide {
  -webkit-transform: scale(1.1) !important;
  transform: scale(1.1) !important;
  transition: opacity 2s ease 0s, -webkit-transform 10s linear !important;
  transition: opacity 2s ease 0s, transform 10s linear !important;
  transition: opacity 2s ease 0s, transform 10s linear, -webkit-transform 10s linear !important;
}
.l-main-img-slide__wrap.is-slick-start .slick-slide:not(.slick-active) {
  opacity: 0;
  -webkit-transform: scale(1) !important;
  transform: scale(1) !important;
  transition: opacity 2s ease 1s, -webkit-transform 10s linear 1s !important;
  transition: opacity 2s ease 1s, transform 10s linear 1s !important;
  transition: opacity 2s ease 1s, transform 10s linear 1s, -webkit-transform 10s linear 1s !important;
}
.l-main-img-slide__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.l-main-img-first {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
  min-height: 500px;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  padding-top: var(--header_height_sp);
  color: #fff;
}
.l-main-img-first__inner {
  padding: 0 30px 80px;
}
.l-main-img-first__txt {
  margin-bottom: 15px;
  font-size: 1.3rem;
}
.l-main-img-first__txt img {
  transform: translateX(3.5rem;);
}
.l-main-img-first__deco {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  overflow: hidden;
}
.l-main-img-first__deco-item {
  position: absolute;
}
.l-main-img-first__deco-item.is-item01 {
  top: 140px;
  left: -20px;
  width: 106px;
  height: 2px;
  opacity: 0.5;
}
.l-main-img-first__deco-item.is-item02 {
  bottom: 145px;
  right: 17px;
  width: 62px;
  height: 3px;
  opacity: 0.4;
}
.l-main-img-first__deco-item.is-item03 {
  bottom: 155px;
  right: -17px;
  width: 76px;
  height: 1px;
  opacity: 0.5;
}
.l-main-img-first__scroll {
  position: absolute;
  bottom: 41px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 1rem;
}
.l-main-img-first__scroll-bar {
  display: block;
  margin: 10px auto 0;
  height: 40px;
  width: 0;
  border-left: 1px solid;
}
.l-main-img-detail {
  color: #fff;
}
.l-main-img-detail__inner {
  padding-top: 75px;
  padding-bottom: 107px;
}
.l-main-img-detail__txt {
  line-height: 2.5;
}
.l-main-img-detail__txt + .l-main-img-detail__txt {
  margin-top: 1.5em;
}
.l-main-img-detail__btn {
  max-width: 295px;
  margin: 80px auto 0;
}
.l-main-img-detail__btn-link {
  height: 90px;
}
@media all and (min-width: 768px) {
  .l-main-img-first__inner {
    padding-left: 0;
    padding-right: 0;
  }
  .l-main-img-first__txt {
    margin-bottom: 30px;
    font-size: 1.6rem;
  }
  .l-main-img-first__txt img {
    transform: translateX(3.5rem);
  }
  .l-main-img-first__deco-item.is-item01 {
    top: 180px;
    left: 140px;
    width: 334px;
  }
  .l-main-img-first__deco-item.is-item02 {
    bottom: 145px;
    right: 280px;
  }
  .l-main-img-first__deco-item.is-item03 {
    bottom: 185px;
    right: 175px;
    width: 138px;
  }
  .l-main-img-first__scroll {
    font-size: 1.4rem;
  }
  .l-main-img-first__scroll-bar {
    height: 60px;
  }
  .l-main-img-detail__inner {
    padding-top: 250px;
    padding-bottom: 287px;
  }
  .l-main-img-detail__txt {
    font-size: 2.1rem;
  }
  .l-main-img-detail__btn {
    max-width: 600px;
    margin-top: 180px;
  }
  .l-main-img-detail__btn-link {
    height: 160px;
  }
}
@media all and (min-width: 1200px) {
  .l-main-img-first {
    padding-top: var(--header_height_pc);
  }
}

/* .l-sub-img
  ================================================ */
.l-sub-img {
  position: relative;
  padding-top: var(--header_height_sp);
}
.l-sub-img::before {
  content: '';
  position: absolute;
  bottom: -105px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 40vw;
  min-height: 150px;
  background: url(../images/bg_mv01_sp.jpg) no-repeat 0 0 / cover;
}

.l-sub-img__inner {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  padding: 0 0 0 15px;
  text-align: center;
}
.l-sub-img__desc {
  position: absolute;
  top: 49.5%;
  left: 15px;
  right: 0;
  text-align: center;
  color: #fff;
}
.l-sub-img-def {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/bg_grad01_sp.jpg) no-repeat 0 0 / cover;
  color: #fff;
}
.l-sub-img-def__head {
  font-size: 1.6rem;
}
@media all and (min-width: 768px) {
  .l-sub-img::before {
    bottom: -350px;
    height: 460px;
    background: url(../images/bg_mv01_pc.jpg) no-repeat 0 0 / cover;
  }

  .l-sub-img.pro::before {
    bottom: -250px;
  }

  .l-sub-img__inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 0 0 5vw;
  }
  .l-sub-img__desc {
    top: 55.5%;
    left: 5vw;
    margin-left: -5%;
  }
  .l-sub-img-def {
    height: 250px;
    background-image: url(../images/bg_grad01_pc.jpg);
  }
  .l-sub-img-def__head {
    font-size: 2rem;
  }
}
@media all and (min-width: 1200px) {
  .l-sub-img {
    padding-top: var(--header_height_pc);
  }
}

/* .l-interview-img
  ================================================ */
.l-interview-img {
  position: relative;
  padding-top: var(--header_height_sp);
}
.l-interview-img::before {
  content: '';
  position: absolute;
  bottom: -105px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 40vw;
  min-height: 150px;
  background: url(../images/bg_mv01_sp.jpg) no-repeat 0 0 / cover;
}
.l-interview-img__inner {
  box-sizing: border-box;
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 0 0 15px;
}
.l-interview-img__area-txt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
  padding: 0 30px 30px 40px;
}
.l-interview-img__sub {
  color: #fff;
  font-size: 1.4rem;
}
.l-interview-img__head {
  display: flex;
  flex-direction: column;
  margin-top: 3px;
  line-height: 1.5;
  font-size: 2rem;
  letter-spacing: 0.08em;
}
.l-interview-img__head-row {
  display: inline-block;
  margin: 5px auto 0 0;
  padding: 0 5px;
  background: #fff;
}
.l-interview-img__head-row:first-child {
  position: relative;
}
.l-interview-img__head-row:first-child::before {
  content: '';
  position: absolute;
  top: 3px;
  left: -9px;
  display: block;
  width: 25px;
  height: 2px;
  background: rgb(var(--green));
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.l-interview-img__initial {
  color: #fff;
  font-size: 2.3rem;
  letter-spacing: 0.08em;
}
.l-interview-img__position {
  color: #fff;
  letter-spacing: 0.08em;
}
.l-interview-img__year {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}
@media (max-width: 374px) {
  .l-interview-img__area-txt {
    padding: 0 20px 30px 30px;
  }
  .l-interview-img__head {
    font-size: 1.8rem;
  }
}
@media all and (min-width: 768px) {
  .l-interview-img::before {
    bottom: -350px;
    height: 480px;
    background: url(../images/bg_mv01_pc.jpg) no-repeat 0 0 / cover;
  }
  .l-interview-img__inner {
    max-width: 1920px;
    padding: 0 0 0 5vw;
  }
  .l-interview-img__area-txt {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 14% 4vw;
  }
  .l-interview-img__sub {
    font-size: 1.4rem;
  }
  .l-interview-img__head {
    font-size: 2.8rem;
  }
  .l-interview-img__initial {
    margin-top: 10px;
    font-size: 2.8rem;
  }
  .l-interview-img__position {
    font-size: 1.8rem;
  }
  .l-interview-img__year {
    font-size: 1.3rem;
  }
}
@media all and (min-width: 1200px) {
  .l-interview-img {
    padding-top: var(--header_height_pc);
  }
}

/* .l-story-img
  ================================================ */
.l-story-img {
  position: relative;
  padding-top: var(--header_height_sp);
}
.l-story-img::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 45px;
  left: 0;
  right: 0;
  z-index: -2;
  background: url(../images/bg_grad02_sp.jpg) no-repeat 0 0 / cover;
}
.l-story-img::after {
  content: '';
  position: absolute;
  bottom: -105px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 40vw;
  min-height: 150px;
  background: url(../images/bg_mv01_sp.jpg) no-repeat 0 0 / cover;
}
.l-story-img__inner {
  box-sizing: border-box;
  position: relative;
  margin: 0 auto;
  padding: 0 0 0 15px;
  z-index: 2;
}
.l-story-img__area-txt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: calc(100% - 30px);
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
  padding: 0 0 30px 33px;
}
.l-story-img__sub {
  color: #fff;
  font-size: 1.4rem;
}
.l-story-img__head {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 10px;
  line-height: 1.5;
  font-size: 2rem;
  letter-spacing: 0.08em;
  position: relative;
}
.l-story-img__head::before {
  content: '';
  position: absolute;
  top: 8px;
  left: -9px;
  display: block;
  width: 25px;
  height: 2px;
  background: rgb(var(--green));
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  z-index: 2;
}
.l-story-img__head-row {
  position: relative;
  padding: 0 8px;
  margin: 5px -16px 0 0;
  letter-spacing: 0.5px;
}
.l-story-img__head-row::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: -1;
}
.l-story-img__bg {
  display: flex;
  align-items: center;
  width: 100%;
  max-height: 650px;
  box-sizing: border-box;
  overflow: hidden;
}
.l-story-img__bg-in {
  flex-basis: 100%;
}
.l-story-img__bg-in img {
  width: 100%;
}
@media all and (max-width: 374px) {
  .l-story-img__head {
    font-size: 1.6rem;
  }
}
@media all and (min-width: 768px) {
  .l-story-img::after {
    bottom: -350px;
    height: 480px;
    background: url(../images/bg_mv01_pc.jpg) no-repeat 0 0 / cover;
  }
  .l-story-img__inner {
    padding: 0 0 0 5vw;
  }
  .l-story-img__area-txt {
    max-width: calc(550px + 14%);
    padding: 0 0 80px 14%;
  }
  .l-story-img__sub {
    font-size: 1.4rem;
  }
  .l-story-img__head {
    font-size: 2.8rem;
  }
  .l-story-img__head-row {
    margin-top: 6px;
  }
  .l-story-img__bg {
    padding-top: 40px;
    max-height: 726px;
  }
}
@media all and (min-width: 1200px) {
  .l-story-img {
    padding-top: var(--header_height_pc);
  }
  .l-story-img__bg {
    padding-top: 90px;
    max-height: 776px;
  }
}

/* .l-sidebar
  ================================================== */
.js-c-anime-elem[data-anime='fadein-up'] {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  transition: opacity 2s ease, -webkit-transform 1.8s ease;
  transition: opacity 2s ease, transform 1.8s ease;
  transition: opacity 2s ease, transform 1.8s ease, -webkit-transform 1.8s ease;
}
.js-c-anime-elem[data-anime='fadein-up'].is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.js-c-anime-elem [data-anime='fadein-up'] {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  transition: opacity 2s ease, -webkit-transform 1.8s ease;
  transition: opacity 2s ease, transform 1.8s ease;
  transition: opacity 2s ease, transform 1.8s ease, -webkit-transform 1.8s ease;
}
.js-c-anime-elem.is-animated [data-anime='fadein-up'] {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@-webkit-keyframes obliqueAnim {
  0% {
    -webkit-transform: translate(0%, 0);
    transform: translate(0%, 0);
    left: -100%;
  }
  15% {
    -webkit-transform: translate(0%, 0);
    transform: translate(0%, 0);
    left: -100%;
  }
  50% {
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    left: 100%;
  }
  100% {
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    left: 100%;
  }
}

@keyframes obliqueAnim {
  0% {
    -webkit-transform: translate(0%, 0);
    transform: translate(0%, 0);
    left: -100%;
  }
  15% {
    -webkit-transform: translate(0%, 0);
    transform: translate(0%, 0);
    left: -100%;
  }
  50% {
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    left: 100%;
  }
  100% {
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    left: 100%;
  }
}
.js-c-anime-elem [data-anime='oblique'],
.js-c-anime-elem [data-anime='oblique-once'] {
  display: block;
  overflow: hidden;
  -webkit-transform: rotate(-45deg) skewX(45deg);
  transform: rotate(-45deg) skewX(45deg);
}
.js-c-anime-elem [data-anime='oblique']::before,
.js-c-anime-elem [data-anime='oblique-once']::before {
  bottom: 0;
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  background: currentColor;
  -webkit-transform: translate(0%, 0);
  transform: translate(0%, 0);
  left: -100%;
}
.js-c-anime-elem [data-anime='oblique-once']::before {
  background: rgb(var(--green));
  opacity: 0.4;
  transition: -webkit-transform 1.2s cubic-bezier(0.4, 0.03, 0.5, 1);
  transition: transform 1.2s cubic-bezier(0.4, 0.03, 0.5, 1);
  transition: transform 1.2s cubic-bezier(0.4, 0.03, 0.5, 1), -webkit-transform 1.2s cubic-bezier(0.4, 0.03, 0.5, 1);
}
.js-c-anime-elem.is-animated [data-anime='oblique']::before {
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0.03, 0.5, 1);
  animation-timing-function: cubic-bezier(0.4, 0.03, 0.5, 1);
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: obliqueAnim;
  animation-name: obliqueAnim;
}
.js-c-anime-elem.is-animated [data-anime='oblique-once']::before {
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
}

.js-c-anime-elem[data-anime-delay='0.1'],
.js-c-anime-elem [data-anime-delay='0.1'] {
  transition-delay: 0.1s;
}
.js-c-anime-elem[data-anime-delay='0.1']::before,
.js-c-anime-elem [data-anime-delay='0.1']::before {
  transition-delay: 0.1s;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.js-c-anime-elem[data-anime-delay='0.2'],
.js-c-anime-elem [data-anime-delay='0.2'] {
  transition-delay: 0.2s;
}
.js-c-anime-elem[data-anime-delay='0.2']::before,
.js-c-anime-elem [data-anime-delay='0.2']::before {
  transition-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.js-c-anime-elem[data-anime-delay='0.3'],
.js-c-anime-elem [data-anime-delay='0.3'] {
  transition-delay: 0.3s;
}
.js-c-anime-elem[data-anime-delay='0.3']::before,
.js-c-anime-elem [data-anime-delay='0.3']::before {
  transition-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.js-c-anime-elem[data-anime-delay='0.4'],
.js-c-anime-elem [data-anime-delay='0.4'] {
  transition-delay: 0.4s;
}
.js-c-anime-elem[data-anime-delay='0.4']::before,
.js-c-anime-elem [data-anime-delay='0.4']::before {
  transition-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.js-c-anime-elem[data-anime-delay='0.5'],
.js-c-anime-elem [data-anime-delay='0.5'] {
  transition-delay: 0.5s;
}
.js-c-anime-elem[data-anime-delay='0.5']::before,
.js-c-anime-elem [data-anime-delay='0.5']::before {
  transition-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.js-c-anime-elem[data-anime-delay='0.6'],
.js-c-anime-elem [data-anime-delay='0.6'] {
  transition-delay: 0.6s;
}
.js-c-anime-elem[data-anime-delay='0.6']::before,
.js-c-anime-elem [data-anime-delay='0.6']::before {
  transition-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.js-c-anime-elem[data-anime-delay='0.7'],
.js-c-anime-elem [data-anime-delay='0.7'] {
  transition-delay: 0.7s;
}
.js-c-anime-elem[data-anime-delay='0.7']::before,
.js-c-anime-elem [data-anime-delay='0.7']::before {
  transition-delay: 0.7s;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.js-c-anime-elem[data-anime-delay='0.8'],
.js-c-anime-elem [data-anime-delay='0.8'] {
  transition-delay: 0.8s;
}
.js-c-anime-elem[data-anime-delay='0.8']::before,
.js-c-anime-elem [data-anime-delay='0.8']::before {
  transition-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.js-c-anime-elem[data-anime-delay='0.9'],
.js-c-anime-elem [data-anime-delay='0.9'] {
  transition-delay: 0.9s;
}
.js-c-anime-elem[data-anime-delay='0.9']::before,
.js-c-anime-elem [data-anime-delay='0.9']::before {
  transition-delay: 0.9s;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.js-c-anime-elem[data-anime-delay='1'],
.js-c-anime-elem [data-anime-delay='1'] {
  transition-delay: 1s;
}
.js-c-anime-elem[data-anime-delay='1']::before,
.js-c-anime-elem [data-anime-delay='1']::before {
  transition-delay: 1s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.js-c-anime-elem[data-anime-delay='1.1'],
.js-c-anime-elem [data-anime-delay='1.1'] {
  transition-delay: 1.1s;
}
.js-c-anime-elem[data-anime-delay='1.1']::before,
.js-c-anime-elem [data-anime-delay='1.1']::before {
  transition-delay: 1.1s;
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
.js-c-anime-elem[data-anime-delay='1.2'],
.js-c-anime-elem [data-anime-delay='1.2'] {
  transition-delay: 1.2s;
}
.js-c-anime-elem[data-anime-delay='1.2']::before,
.js-c-anime-elem [data-anime-delay='1.2']::before {
  transition-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.js-c-anime-elem[data-anime-delay='1.3'],
.js-c-anime-elem [data-anime-delay='1.3'] {
  transition-delay: 1.3s;
}
.js-c-anime-elem[data-anime-delay='1.3']::before,
.js-c-anime-elem [data-anime-delay='1.3']::before {
  transition-delay: 1.3s;
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}
.js-c-anime-elem[data-anime-delay='1.4'],
.js-c-anime-elem [data-anime-delay='1.4'] {
  transition-delay: 1.4s;
}
.js-c-anime-elem[data-anime-delay='1.4']::before,
.js-c-anime-elem [data-anime-delay='1.4']::before {
  transition-delay: 1.4s;
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.js-c-anime-elem[data-anime-delay='1.5'],
.js-c-anime-elem [data-anime-delay='1.5'] {
  transition-delay: 1.5s;
}
.js-c-anime-elem[data-anime-delay='1.5']::before,
.js-c-anime-elem [data-anime-delay='1.5']::before {
  transition-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.js-c-anime-elem[data-anime-delay='1.6'],
.js-c-anime-elem [data-anime-delay='1.6'] {
  transition-delay: 1.6s;
}
.js-c-anime-elem[data-anime-delay='1.6']::before,
.js-c-anime-elem [data-anime-delay='1.6']::before {
  transition-delay: 1.6s;
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}
.js-c-anime-elem[data-anime-delay='1.7'],
.js-c-anime-elem [data-anime-delay='1.7'] {
  transition-delay: 1.7s;
}
.js-c-anime-elem[data-anime-delay='1.7']::before,
.js-c-anime-elem [data-anime-delay='1.7']::before {
  transition-delay: 1.7s;
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}
.js-c-anime-elem[data-anime-delay='1.8'],
.js-c-anime-elem [data-anime-delay='1.8'] {
  transition-delay: 1.8s;
}
.js-c-anime-elem[data-anime-delay='1.8']::before,
.js-c-anime-elem [data-anime-delay='1.8']::before {
  transition-delay: 1.8s;
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}
.js-c-anime-elem[data-anime-delay='1.9'],
.js-c-anime-elem [data-anime-delay='1.9'] {
  transition-delay: 1.9s;
}
.js-c-anime-elem[data-anime-delay='1.9']::before,
.js-c-anime-elem [data-anime-delay='1.9']::before {
  transition-delay: 1.9s;
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s;
}
.js-c-anime-elem[data-anime-delay='2'],
.js-c-anime-elem [data-anime-delay='2'] {
  transition-delay: 2s;
}
.js-c-anime-elem[data-anime-delay='2']::before,
.js-c-anime-elem [data-anime-delay='2']::before {
  transition-delay: 2s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/* js-c-modal01
  =============================== */
.js-c-modal01 {
  display: none;
}
.js-c-modal01.is-open {
  display: block;
}

.js-c-navchild-trigger {
  cursor: pointer;
}

.js-c-navchild-content {
  display: none;
}

.js-c-switch-tab {
  cursor: pointer;
}

.js-c-switch-content {
  display: none;
}

.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;
  -ms-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 {
  -webkit-transform: translate3d(0, 0, 0);
  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;
}

/* business-intro
  ====================================== */
.business-intro__inner {
  padding-bottom: 70px;
}
.business-intro__lead {
  margin-bottom: 30px;
}
@media all and (min-width: 768px) {
  .business-intro__inner {
    padding-bottom: 150px;
  }
  .business-intro__lead {
    margin-bottom: 60px;
    text-align: center;
  }
}

/* business-intro-heading
  ------------------------------------------ */
.business-intro-heading {
  text-align: center;
  margin-bottom: 35px;
}
.business-intro-heading__head {
  position: relative;
  display: inline-block;
  padding: 20px 25px;
  border: 1px solid rgb(var(--green));
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  text-align: center;
}
.business-intro-heading__head::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/bg_intro01.jpg) repeat-x 0 0 / cover;
}
@media (max-width: 374px) {
  .business-intro-heading__head {
    font-size: 1.6rem;
  }
}
@media all and (min-width: 768px) {
  .business-intro-heading__head {
    display: block;
    box-sizing: border-box;
    max-width: 912px;
    margin: 0 auto 60px;
    padding: 55px;
    font-size: 3.6rem;
  }
  .business-intro-heading__head::before {
    top: 12px;
    left: 12px;
    background: url(../images/bg_intro01.jpg) repeat-x 0 0/30px 100%;
  }
}

/* business-intro-dept
  ------------------------------------------ */
.business-intro-dept {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -7px;
}
.business-intro-dept__wrap {
  padding: 26px 16px 20px;
  border: 4px solid #f5f5f5;
}
.business-intro-dept__item {
  box-sizing: border-box;
  width: 100%;
  margin: 0 7px 10px;
  padding: 15px 45px 20px;
}
.business-intro-dept__item.is-half {
  position: relative;
  width: calc(50% - 14px);
  padding: 15px 14px 20px;
}
.business-intro-dept__item.is-half::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 11px;
  height: 30px;
  background: url(../images/ico_arrow01_sp.png) no-repeat center/contain;
}
.business-intro-dept__item.is-half.is-right::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -22px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 27px;
  height: 11px;
  background: url(../images/ico_arrow02_sp.png) no-repeat center/contain;
}
.business-intro-dept__item:first-child {
  position: relative;
  margin-bottom: 34px;
}
.business-intro-dept__item.is-green {
  background: #ecf9f5;
}
.business-intro-dept__item.is-blue {
  background: #ecf7f9;
}
.business-intro-dept__item-head {
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}
@media (max-width: 374px) {
  .business-intro-dept__wrap {
    padding: 20px 10px;
  }
  .business-intro-dept__item {
    padding: 15px 20px 20px;
  }
  .business-intro-dept__item.is-half {
    padding: 15px 10px;
  }
  .business-intro-dept__item-head {
    font-size: 1.2rem;
  }
}
@media all and (min-width: 768px) {
  .business-intro-dept {
    margin: 0 -40px;
  }
  .business-intro-dept__wrap {
    padding: 50px 80px 35px;
  }
  .business-intro-dept__item {
    margin: 0 40px 15px;
    padding: 25px 110px 35px;
  }
  .business-intro-dept__item:first-child {
    margin-bottom: 47px;
  }
  .business-intro-dept__item.is-half {
    width: calc(50% - 80px);
    padding: 25px 35px 35px;
  }
  .business-intro-dept__item.is-half::before {
    top: -39px;
    width: 39px;
    height: 39px;
    background: url(../images/ico_arrow01_pc.png) no-repeat center/contain;
  }
  .business-intro-dept__item.is-half.is-right::before {
    -webkit-transform: translateX(-50%) scale(-1, 1);
    transform: translateX(-50%) scale(-1, 1);
  }
  .business-intro-dept__item.is-half.is-right::after {
    left: -69px;
    width: 60px;
    height: 11px;
    background: url(../images/ico_arrow02_pc.png) no-repeat center/contain;
  }
  .business-intro-dept__item.is-half .business-intro-dept-list {
    margin: 0 -14px;
  }
  .business-intro-dept__item.is-half .business-intro-dept-list__item {
    width: calc(33.33% - 28px);
    margin: 0 14px;
  }
  .business-intro-dept__item-head {
    margin-bottom: 3px;
    font-size: 2rem;
  }
}

/* business-intro-dept-list
  --------------------------------------- */
.business-intro-dept-list__item {
  border-bottom: 1px solid rgb(var(--smoke_gray));
}
.business-intro-dept-list__item-link {
  position: relative;
  display: block;
  padding: 10px 15px 8px 0;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
.business-intro-dept-list__item-link::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  color: rgb(var(--green));
  -webkit-transform: rotate(135deg) translateY(-50%);
  transform: rotate(135deg) translateY(-50%);
  -webkit-transform-origin: 2px -2px;
  transform-origin: 2px -2px;
}
@media all and (min-width: 768px) {
  .business-intro-dept-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -20px;
  }
  .business-intro-dept-list__item {
    width: calc(33.33% - 40px);
    margin: 0 20px;
  }
  .business-intro-dept-list__item-link {
    font-size: 1.7rem;
    transition: color 0.3s ease;
  }
  .business-intro-dept-list__item-link::before {
    border-width: 2px 2px 0 0;
  }
  .business-intro-dept-list__item-link:hover {
    color: rgb(var(--green));
  }
}

/* business-sec
  =================================== */
.business-sec {
  position: relative;
  overflow: hidden;
}
.business-sec.is-pb-none .business-sec__inner {
  padding-bottom: 0;
}
.business-sec.has-bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.business-sec.has-bg.is-light-green::before {
  background: rgb(var(--light_green));
}
.business-sec.has-bg.is-green::before {
  background: #ddf2eb;
}
.business-sec__inner {
  padding-bottom: 70px;
}
@media all and (min-width: 768px) {
  .business-sec.has-bg::before {
    height: calc(100% - 90px);
  }
  .business-sec.has-bg .business-sec__inner {
    padding-top: 0;
  }
  .business-sec__inner {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}

/* business-sec-branch
  ----------------------------------- */
.business-sec-branch {
  margin-top: 60px;
}
.business-sec-branch + .business-sec-branch {
  margin-top: 40px;
}
.business-sec-branch__area-member {
  margin-top: 40px;
}
@media all and (min-width: 768px) {
  .business-sec-branch + .business-sec-branch {
    margin-top: 70px;
  }
  .business-sec-branch__area-member {
    margin-top: 60px;
  }
}

/* .data-about
  ================================================ */
.data-about {
  position: relative;
}
.data-about::before {
  content: '';
  position: absolute;
  top: -151px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  background: url(../images/bg_about01_sp.jpg) center top/cover;
  z-index: -1;
}
.data-about__inner {
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
}
.data-about__head {
  text-align: center;
  margin-bottom: 35px;
}
.data-about__head-num {
  font-size: 1.7rem;
  color: rgb(var(--green));
}
.data-about__head-main {
  margin-top: 5px;
  font-size: 2.4rem;
  line-height: 1.5;
}
.data-about-detail {
  margin: 45px -15px 0;
  padding: 30px 35px;
  background: #fff;
}
.data-about-detail__head {
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2.2rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
.data-about-detail__head::before,
.data-about-detail__head::after {
  content: '';
  flex-basis: calc(100% - 10.4em);
  height: 0;
  border-top: 1px solid rgba(var(--green), 0.5);
}
.data-about-detail__txt {
  margin-top: 20px;
}
@media all and (min-width: 768px) {
  .data-about::before {
    top: -338px;
    background-image: url(../images/abbg2.jpg);
  }
  .data-about__inner {
    padding-bottom: 282px;
  }
  .data-about__head {
    margin-bottom: 55px;
  }
  .data-about__head-num {
    font-size: 2rem;
  }
  .data-about__head-main {
    margin-top: 20px;
    font-size: 3.6rem;
  }
  .data-about__lead {
    text-align: center;
    letter-spacing: 0.5px;
    word-break: break-word;
  }
  .data-about-detail {
    margin: 125px auto 0;
    padding: 40px 80px 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .data-about-detail__head {
    width: 100%;
    font-size: 3rem;
    margin-bottom: 25px;
  }
  .data-about-detail__head::before,
  .data-about-detail__head::after {
    flex-basis: calc(100% - 20em);
  }
  .data-about-detail__img {
    flex-basis: 430px;
    max-width: 430px;
  }
  .data-about-detail__txt {
    margin-top: 0;
    flex-basis: calc(100% - 430px - 40px);
    max-width: calc(100% - 430px - 40px);
  }
}

/* .data-flow
  ================================================ */
.data-flow__head {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 1;
  padding: 37px 45px 45px;
}
.data-flow__head::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
  height: auto;
  background: url(../images/bg_grad01_pc.jpg) -171px 0px/912px auto;
  z-index: -1;
}
.data-flow__head-num {
  font-size: 1.7rem;
}
.data-flow__head-main {
  margin-top: 5px;
  font-size: 2.4rem;
  line-height: 1.5;
}
.data-flow__inner {
  padding-top: 40px;
  padding-bottom: 80px;
}
.data-flow__img {
  margin-top: 50px;
}
.data-flow-links {
  margin-top: 60px;
}
.data-flow-links__item {
  margin-top: 20px;
}
@media all and (min-width: 768px) {
  .data-flow__head {
    padding: 80px 45px 90px;
    top: -132px;
    margin-bottom: -132px;
  }
  .data-flow__head::before {
    left: 200px;
    background-position: left top;
    background-size: cover;
  }
  .data-flow__head-num {
    font-size: 2rem;
  }
  .data-flow__head-main {
    margin-top: 20px;
    font-size: 3.6rem;
  }
  .data-flow__inner {
    padding-top: 90px;
    padding-bottom: 282px;
  }
  .data-flow__lead {
    text-align: center;
  }
  .data-flow__img {
    margin-top: 90px;
  }
  .data-flow-links {
    margin-top: 100px;
  }
  .data-flow-links__item {
    margin-top: 30px;
  }
}

/* .data-number
  ================================================ */
.data-number {
  background: url(../images/bg_number01_sp.jpg) no-repeat center top/cover fixed;
}
.data-number__head {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 1;
  padding: 37px 45px 45px;
}
.data-number__head::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
  height: auto;
  background: url(../images/bg_grad01_pc.jpg) -171px 0px/912px auto;
  z-index: -1;
}
.data-number__head-num {
  font-size: 1.7rem;
}
.data-number__head-main {
  margin-top: 5px;
  font-size: 2.4rem;
  line-height: 1.5;
}
.data-number__inner {
  padding-top: 40px;
  padding-bottom: 70px;
}
@media all and (min-width: 768px) {
  .data-number {
    background-image: url(../images/bg_number01_pc.jpg);
  }
  .data-number__head {
    padding: 80px 45px 90px;
    top: -132px;
    margin-bottom: -132px;
  }
  .data-number__head::before {
    right: 200px;
    background-position: left top;
    background-size: cover;
  }
  .data-number__head-num {
    font-size: 2rem;
  }
  .data-number__head-main {
    margin-top: 20px;
    font-size: 3.6rem;
  }
  .data-number__lead {
    text-align: center;
  }
  .data-number__inner {
    padding-top: 90px;
    padding-bottom: 120px;
  }
}

.data-number-sec {
  padding-top: 40px;
}
.data-number-sec__head {
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(var(--dark_gray), 0.5);
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.data-number-sec__note {
  text-align: right;
  font-size: 1rem;
  margin: -20px 0 20px;
}
@media all and (min-width: 768px) {
  .data-number-sec {
    padding-top: 90px;
  }
  .data-number-sec__head {
    font-size: 3rem;
    padding-bottom: 30px;
    margin-bottom: 40px;
  }
  .data-number-sec__note {
    font-size: 1.3rem;
    margin: -25px 0 30px;
  }
}

.data-number-sec-lineup {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -4.5px;
}
.data-number-sec-lineup__item {
  padding-top: 15px;
  background: #fff;
  flex-basis: calc(50% - 9px);
  max-width: calc(50% - 9px);
  margin: 0 4.5px 10px;
}
.data-number-sec-lineup__item.is-full {
  flex-basis: 100%;
  max-width: 100%;
}
.data-number-sec-lineup__tit::after {
  content: '';
  display: block;
  margin: 5px auto 0;
  width: 20px;
  height: 0;
  border-top: 1px solid rgb(var(--green));
}
@media all and (max-width: 767px) {
  .data-number-sec-lineup__item.is-full-sp {
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media all and (min-width: 768px) {
  .data-number-sec-lineup {
    margin: 0 -19px;
  }
  .data-number-sec-lineup__item {
    padding-top: 10px;
    background: #fff;
    flex-basis: calc(25% - 38px);
    max-width: calc(25% - 38px);
    margin: 0 19px 0;
  }
  .data-number-sec-lineup__item.is-double-pc {
    flex-basis: calc(66.6666666667% - 38px);
    max-width: calc(66.6666666667% - 38px);
  }
  .data-number-sec-lineup__item.is-full-pc {
    flex-basis: 100%;
    max-width: 100%;
  }
  .data-number-sec-lineup__item.is-half-pc {
    flex-basis: calc(50% - 38px);
    max-width: calc(50% - 38px);
  }
  .data-number-sec-lineup__tit {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
  }
  .data-number-sec-lineup__tit::after {
    margin-top: 5px;
    width: 40px;
  }
}

/* entry-form
  ============================ */
.entry-form__inner {
  padding-bottom: 100px;
}
@media all and (min-width: 768px) {
  .entry-form__inner {
    padding-bottom: 150px;
  }
}

/* entry-form-thanks
  ============================== */
@media all and (min-width: 768px) {
  .entry-form-thanks__txt {
    text-align: center;
  }
}

/* entry-form-intro
  ============================ */
.entry-form-intro {
  margin-bottom: 60px;
}
@media all and (min-width: 768px) {
  .entry-form-intro {
    margin-bottom: 80px;
  }
}

/* entry-form-flow
  ============================ */
.entry-form-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -26px;
  position: relative;
}
.entry-form-flow::before {
  content: '';
  position: absolute;
  top: 23px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: rgb(var(--smoke_gray));
}
.entry-form-flow__wrap {
  margin-bottom: 40px;
  padding: 20px 0;
}
.entry-form-flow__item {
  position: relative;
  width: 50px;
  margin: 0 26px;
  padding-top: 60px;
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
}
.entry-form-flow__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 50px;
  height: 50px;
  border: 1px solid rgb(var(--dark_gray));
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
}
.entry-form-flow__item::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgb(var(--dark_gray));
}
@media (max-width: 374px) {
  .entry-form-flow__item {
    margin: 0 20px;
  }
}
@media all and (min-width: 768px) {
  .entry-form-flow {
    margin: 0 -60px;
  }
  .entry-form-flow::before {
    top: 28px;
    width: 350px;
    height: 4px;
  }
  .entry-form-flow__wrap {
    padding: 40px 0;
  }
  .entry-form-flow__item {
    width: 60px;
    margin: 0 60px;
    font-size: 1.8rem;
  }
  .entry-form-flow__item::before {
    width: 60px;
    height: 60px;
  }
  .entry-form-flow__item::after {
    top: 21px;
    left: 21px;
    width: 18px;
    height: 18px;
  }
}

.mw_wp_form_input .entry-form-flow__item:nth-of-type(1) {
  color: rgb(var(--green));
}
.mw_wp_form_input .entry-form-flow__item:nth-of-type(1)::after {
  background: rgb(var(--green));
}

.mw_wp_form_confirm .entry-form-intro {
  display: none;
}
.mw_wp_form_confirm .entry-form-flow__item:nth-of-type(2) {
  color: rgb(var(--green));
}
.mw_wp_form_confirm .entry-form-flow__item:nth-of-type(2)::after {
  background: rgb(var(--green));
}

.mw_wp_form_complete .entry-form-flow__item:nth-of-type(3) {
  color: rgb(var(--green));
}
.mw_wp_form_complete .entry-form-flow__item:nth-of-type(3)::after {
  background: rgb(var(--green));
}

/* environment-intro
  ================================== */
.environment-intro {
  overflow: hidden;
}
.environment-intro__inner {
  padding-bottom: 70px;
}
@media all and (min-width: 768px) {
  .environment-intro__inner {
    padding-bottom: 150px;
  }
}

/* environment-intro-sec
  =================================== */
.environment-intro-sec + .environment-intro-sec {
  margin-top: 40px;
}
.environment-intro-sec__area-txt {
  margin-top: -42px;
  padding: 42px 30px;
  text-align: center;
}
.environment-intro-sec__txt {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}
.environment-intro-sec__txt-showy {
  font-size: 2rem;
}
@media (max-width: 374px) {
  .environment-intro-sec__txt {
    font-size: 1.4rem;
  }
  .environment-intro-sec__txt-showy {
    font-size: 1.8rem;
  }
}
@media all and (min-width: 768px) {
  .environment-intro-sec + .environment-intro-sec {
    margin-top: 60px;
  }
  .environment-intro-sec__area-txt {
    margin-top: -69px;
    padding: 69px 110px 60px;
  }
  .environment-intro-sec__txt {
    font-size: 2.1rem;
  }
  .environment-intro-sec__txt-showy {
    font-size: 2.7rem;
  }
}

/* environment-slide
  =================================== */
.environment-slide {
  position: relative;
  width: 100%;
  height: 126px;
  overflow: hidden;
}
.environment-slide img,
.environment-slide::after {
  position: absolute;
  top: 0;
  width: 1202px;
  max-width: 1202px;
  height: 100%;
  -webkit-animation: environment-slide 60s linear infinite;
  animation: environment-slide 60s linear infinite;
}
.environment-slide img {
  right: 100%;
}
.environment-slide::after {
  content: '';
  display: inline-block;
  left: 0;
  background: url(../images/img_slide01.jpg) repeat-x 0 0 / contain;
}
@media all and (min-width: 768px) {
  .environment-slide {
    height: 334px;
  }
  .environment-slide img,
  .environment-slide::after {
    width: 3192px;
    max-width: 3192px;
  }
}

@-webkit-keyframes environment-slide {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes environment-slide {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* environment-copy
  ================================= */
.environment-copy {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.environment-copy::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 231px;
  background: url(../images/bg_copy01_sp.jpg) no-repeat 0 0 / cover;
}
.environment-copy__inner {
  padding-top: 90px;
  padding-bottom: 90px;
}
.environment-copy__head {
  max-width: 100%;
  width: 315px;
  margin: 0 auto 30px;
}
.environment-copy__txt {
  line-height: 2.2;
  letter-spacing: 0.08em;
}
.environment-copy__part {
  position: absolute;
  background: rgb(var(--green));
  display: block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.environment-copy__part.is-01 {
  top: 20px;
  left: 10px;
  width: 2px;
  height: 30px;
  opacity: 0.4;
}
.environment-copy__part.is-02 {
  top: -7px;
  left: 40px;
  width: 1px;
  height: 55px;
  opacity: 0.5;
}
.environment-copy__part.is-03 {
  bottom: 20px;
  right: 30px;
  width: 2px;
  height: 35px;
  opacity: 0.4;
}
.environment-copy__part.is-04 {
  bottom: 35px;
  right: 20px;
  width: 1px;
  height: 55px;
  opacity: 0.5;
}
@media (max-width: 374px) {
  .environment-copy__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
  .environment-copy__txt {
    font-size: 1.4rem;
  }
}
@media all and (min-width: 768px) {
  .environment-copy::before {
    height: 100%;
    background: url(../images/bg_copy01_pc.jpg) no-repeat 0 0 / cover;
  }
  .environment-copy__inner {
    padding-top: 250px;
    padding-bottom: 250px;
  }
  .environment-copy__head {
    width: 790px;
    margin-bottom: 70px;
  }
  .environment-copy__txt {
    font-size: 2.4rem;
  }
  .environment-copy__part.is-01 {
    top: 135px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    height: 60px;
    width: 3px;
    margin-left: -755px;
  }
  .environment-copy__part.is-02 {
    top: 70px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    height: 130px;
    margin-left: -700px;
  }
  .environment-copy__part.is-03 {
    right: 50%;
    bottom: 135px;
    -webkit-transform: translateX(50%) rotate(45deg);
    transform: translateX(50%) rotate(45deg);
    width: 3px;
    height: 60px;
    margin-right: -705px;
  }
  .environment-copy__part.is-04 {
    bottom: 150px;
    right: 50%;
    -webkit-transform: translateX(50%) rotate(45deg);
    transform: translateX(50%) rotate(45deg);
    height: 130px;
    margin-right: -730px;
  }
}

/* environment-field-heading
  ============================================ */
.environment-field-heading {
  position: relative;
}
.environment-field-heading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../images/bg_grad01_sp.jpg) no-repeat center top/cover;
}
.environment-field-heading__inner {
  padding-top: 60px;
  padding-bottom: 70px;
}
.environment-field-heading__lead {
  letter-spacing: 0.08em;
}
@media all and (min-width: 768px) {
  .environment-field-heading::before {
    background: url(../images/bg_grad01_pc.jpg) no-repeat center top/cover;
  }
  .environment-field-heading__inner {
    padding-top: 146px;
    padding-bottom: 150px;
  }
  .environment-field-heading__lead {
    text-align: center;
  }
}

/* environment-field-sec
  ------------------------------------ */
.environment-field-sec + .environment-field-sec {
  margin-top: 30px;
}
.environment-field-sec__wrap {
  padding-top: 70px;
  padding-bottom: 70px;
}
.environment-field-sec__slider-img {
  text-align: center;
}
.environment-field-sec__slider-img img {
  margin: 0 auto;
}
.environment-field-sec__slider .slick-dots {
  display: flex !important;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding-top: 10px;
}
.environment-field-sec__slider .slick-dots li {
  margin: 0 3px;
}
.environment-field-sec__slider .slick-dots li button {
  padding: 0;
  border: none;
  overflow: hidden;
  text-indent: 100%;
  width: 6px;
  height: 6px;
  background: rgba(var(--dark_gray), 0.3);
  border-radius: 50%;
  transition: background 0.3s ease;
}
.environment-field-sec__slider .slick-dots li.slick-active button {
  width: 10px;
  height: 10px;
  background: rgb(var(--green));
}
.environment-field-sec__area-txt {
  position: relative;
  padding: 20px 20px 45px;
}
.environment-field-sec__area-txt::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -15px;
  z-index: -1;
  width: calc(100% + 30px);
  height: 100%;
  background: rgb(var(--light_green));
}
.environment-field-sec__txt {
  letter-spacing: 0.08em;
}
@media all and (max-width: 767px) {
  .environment-field-sec__slider .slick-dots {
    position: relative;
  }
  .environment-field-sec__slider .slick-dots::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -15px;
    z-index: -1;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    background: rgb(var(--light_green));
  }
}
@media all and (min-width: 768px) {
  .environment-field-sec {
    display: flex;
    flex-wrap: wrap;
  }
  .environment-field-sec + .environment-field-sec {
    margin-top: 70px;
  }
  .environment-field-sec:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .environment-field-sec:nth-of-type(even) .environment-field-sec__area-txt::before {
    right: auto;
    left: 0;
  }
  .environment-field-sec__wrap {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .environment-field-sec__slider {
    box-sizing: border-box;
    width: 490px;
  }
  .environment-field-sec__area-txt {
    box-sizing: border-box;
    width: calc(100% - 490px);
    margin-top: 30px;
    padding: 80px 70px 110px;
  }
  .environment-field-sec__area-txt::before {
    right: 0;
    left: auto;
    width: calc(100% + 45px);
  }
}

/* environment-welfare
  =================================== */
.environment-welfare__inner {
  padding-top: 50px;
  padding-bottom: 70px;
}
@media all and (min-width: 768px) {
  .environment-welfare__inner {
    padding-top: 146px;
    padding-bottom: 150px;
  }
}

/* environment-welfare-list
  ------------------------------------ */
.environment-welfare-list__item {
  margin-bottom: 10px;
  text-align: center;
  border: 1px solid rgb(var(--green));
}
.environment-welfare-list__item:last-child {
  margin-bottom: 0;
}
.environment-welfare-list__item-head {
  padding: 10px;
  line-height: 1.5;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
}
.environment-welfare-list__item-area-ico {
  padding: 15px;
}
.environment-welfare-list__item-ico {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
.environment-welfare-list__item-note {
  margin-top: 10px;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
@media all and (min-width: 768px) {
  .environment-welfare-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
  }
  .environment-welfare-list__item {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: calc(33.33% - 24px);
    margin: 0 12px 24px;
  }
  .environment-welfare-list__item:nth-of-type(3n + 1):nth-last-of-type(-n + 3) {
    margin-bottom: 0;
  }
  .environment-welfare-list__item:nth-of-type(3n + 1):nth-last-of-type(-n + 3) ~ .environment-welfare-list__item {
    margin-bottom: 0;
  }
  .environment-welfare-list__item-area-ico {
    padding: 25px;
    flex-grow: 1;
  }
  .environment-welfare-list__item-ico {
    width: 90px;
    height: 90px;
  }
  .environment-welfare-list__item-head {
    padding: 13px;
    font-size: 1.9rem;
  }
}

/* .error-page404
  ================================================ */
.error-page404__inner {
  padding-bottom: 60px;
}
.error-page404__txt {
  text-align: center;
}
@media all and (min-width: 768px) {
  .error-page404__inner {
    padding-bottom: 180px;
  }
  .error-page404__btn {
    margin-top: 100px;
  }
}

/* faq-sec
  ================================== */
.faq-sec + .faq-sec .faq-sec__inner {
  padding-top: 60px;
}
@media all and (min-width: 768px) {
  .faq-sec + .faq-sec .faq-sec__inner {
    padding-top: 140px;
  }
}

/* .home-zero
  ================================================ */
.home-zero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: url('../images/bg_stream01_sp.jpg') no-repeat center top/100% auto;
}

.home-zero__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}
.home-zero__bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.home-zero__deco {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}
.home-zero__deco-item {
  position: absolute;
}
.home-zero__deco-item.is-item01 {
  top: 53px;
  left: -30px;
  width: 160px;
  height: 3px;
  opacity: 0.3;
}
.home-zero__deco-item.is-item02 {
  top: 0;
  right: 17px;
  width: 62px;
  height: 3px;
  opacity: 0.4;
}
.home-zero__deco-item.is-item03 {
  bottom: 60px;
  right: 20px;
  width: 180px;
  height: 3px;
  opacity: 0.8;
}
.home-zero__deco-item.is-item04 {
  bottom: 100px;
  left: 75px;
  width: 55px;
  height: 5px;
  opacity: 0.2;
  color: rgb(var(--green));
}
.home-zero__deco-item.is-item04::before {
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
  -webkit-animation-name: none !important;
  animation-name: none !important;
}
.home-zero__deco-item.is-item05 {
  top: 100px;
  right: 45px;
  width: 30px;
  height: 5px;
  opacity: 0.23;
  color: rgb(var(--green));
}
.home-zero__deco-item.is-item05::before {
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
  -webkit-animation-name: none !important;
  animation-name: none !important;
}
.home-zero__inner {
  position: relative;
  padding-top: 150px;
  padding-bottom: 170px;
}
.home-zero__box {
  background: rgb(var(--green)) url('../images/bg_zero02.jpg') no-repeat left bottom/cover;
  box-shadow: 10px 3px 30px rgba(0, 0, 0, 0.12);
}
.home-zero__box-in {
  display: block;
  padding: 50px 35px 27px;
}
.home-zero .home-zero__head-txt img {
  height: 67px;
}

.home-zero .home-zero__head-txt {
  letter-spacing: 5px;
}

.home-zero__btn {
  margin-top: 19px;
  text-align: center;
}
@media all and (max-width: 374px) {
  .home-zero__inner {
    padding-top: 100px;
    padding-bottom: 110px;
  }
}
@media all and (min-width: 768px) {
  .home-zero {
    background-image: url('../images/bg_stream01_pc.jpg');
  }
  .home-zero__bg {
    top: 0;
  }
  .home-zero__deco-item.is-item01 {
    top: 150px;
  }
  .home-zero__deco-item.is-item02 {
    top: 90px;
    right: 55%;
    width: 84px;
  }
  .home-zero__deco-item.is-item03 {
    bottom: 90%;
    right: -40px;
    width: 200px;
  }
  .home-zero__deco-item.is-item04 {
    bottom: 35%;
    left: 25%;
    width: 75px;
    height: 13px;
  }
  .home-zero__deco-item.is-item05 {
    top: 49%;
    left: 20%;
    width: 65px;
    height: 8px;
  }
  .home-zero__deco-item.is-item06 {
    top: 200px;
    left: 32%;
    width: 230px;
    height: 3px;
    opacity: 0.09;
    color: rgb(var(--green));
  }
  .home-zero__deco-item.is-item06::before {
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    -webkit-animation-name: none !important;
    animation-name: none !important;
  }
  .home-zero__deco-item.is-item07 {
    top: 40%;
    right: 25%;
    width: 80px;
    height: 3px;
    opacity: 0.23;
    color: rgb(var(--green));
  }
  .home-zero__deco-item.is-item07::before {
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    -webkit-animation-name: none !important;
    animation-name: none !important;
  }
  .home-zero__inner {
    padding-top: 124px;
    padding-bottom: 106px;
  }
  .home-zero__box {
    width: 510px;
    margin: 0 auto;
    text-align: center;
  }
  .home-zero__box-in {
    padding: 79px 0 64px;
  }
  .home-zero .home-zero__head {
    margin-bottom: 20px;
  }
  .home-zero .home-zero__head-txt {
    margin-top: -8px;
  }
  .home-zero .home-zero__head-txt img {
    height: 118px;
  }
  .home-zero__btn {
    margin-top: 30px;
  }
}
@media all and (min-width: 1400px) {
  .home-zero__inner {
    padding-top: 190px;
    padding-bottom: 220px;
  }
}

/* .home-business
  ================================================ */
.home-business {
  position: relative;
  z-index: 1;
}
.home-business::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(var(--ex_light_green), 0.7);
  z-index: -1;
}
.home-business-list {
  color: #fff;
}
.home-business-list__link {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  width: 100%;
}
.home-business-list__img {
  position: relative;
  z-index: -1;
  background: #000;
  width: 100%;
  height: 0;
  padding-top: 47.8723404255%;
}
.home-business-list__img img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-business-list__area-txt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  box-sizing: border-box;
  padding: 23px 30px;
}
.home-business-list__tit {
  font-size: 2.3rem;
  line-height: 1.5;
}
.home-business-list__txt {
  opacity: 0;
  max-height: 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
  transition: all 0.8s ease;
}
.home-business-list__ico {
  position: absolute;
  bottom: 20px;
  right: 30px;
}
.home-business__area-bottom {
  padding: 0 30px 70px;
}
@media all and (max-width: 767px) {
  .home-business__area-head {
    padding: 70px 30px 40px;
  }
}
@media all and (min-width: 768px) {
  .home-business {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex-direction: row-reverse;
    align-items: flex-start;
    max-width: 1920px;
    margin: 0 auto;
    padding-top: 238px;
  }
  .home-business::before {
    left: unset;
    width: 63.5416666667%;
  }
  .home-business__area-head {
    position: sticky;
    top: 0;
    left: 0;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 9.3229166667%;
    flex-basis: 30.0520833333%;
    max-width: 30.0520833333%;
  }
  @supports not (position: sticky) {
    .home-business__area-head {
      position: -webkit-sticky;
    }
  }
  .home-business__area-list {
    flex-basis: 54.9479166667%;
    max-width: 54.9479166667%;
    padding-top: 12px;
  }
  .home-business-list {
    color: #fff;
  }
  .home-business-list__link {
    min-height: 200px;
  }
  .home-business-list__link:hover .home-business-list__img img {
    opacity: 0.8;
  }
  .home-business-list__link:hover .home-business-list__txt {
    padding-top: 15px;
    opacity: 1;
    max-height: 10em;
  }
  .home-business-list__area-txt {
    padding: 55px 160px 55px 60px;
  }
  .home-business-list__tit {
    font-size: 3.5rem;
  }
  .home-business-list__ico {
    position: absolute;
    bottom: 50px;
    right: 40px;
  }
}

/* .home-interview
  ================================================ */
.home-interview {
  position: relative;
  z-index: 1;
}
.home-interview::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 340px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(var(--light_lime));
  z-index: -1;
}
.home-interview__area-head {
  padding-top: 70px;
  padding-bottom: 40px;
}
.home-interview__area-slide {
  position: relative;
}
.home-interview__area-bottom {
  padding-bottom: 80px;
}
@media all and (min-width: 768px) {
  .home-interview::before {
    height: 423px;
  }
  .home-interview__area-head {
    padding-top: 140px;
    padding-bottom: 0;
    display: flex;
    align-items: flex-end;
  }
  .home-interview__head {
    margin-bottom: 30px;
  }
  .home-interview__txt {
    margin-bottom: 58px;
    margin-left: 140px;
  }
  .home-interview__area-bottom {
    padding-top: 20px;
    padding-bottom: 140px;
  }
}
@media all and (min-width: 768px) and (min-width: 1400px) {
  .home-interview::before {
    height: 573px;
  }
}

.home-interview-nav {
  position: static;
}
.home-interview-nav__counter {
  position: absolute;
  bottom: -25px;
  right: 30px;
  text-align: right;
  font-size: 1.3rem;
}
.home-interview-nav__counter .slick-count-total {
  color: rgb(var(--gray));
}
.home-interview-nav__arrows {
  position: static;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home-interview-nav__arrows .slick-arrow {
  position: relative;
  font-size: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: transparent;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  text-indent: -200px;
}
.home-interview-nav__arrows .slick-arrow::before {
  position: absolute;
  content: '';
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  left: 50%;
  color: rgb(var(--green));
  -webkit-transform: translate(-75%, -50%) rotate(45deg);
  transform: translate(-75%, -50%) rotate(45deg);
}
.home-interview-nav__arrows .slick-arrow.slick-prev::before {
  -webkit-transform: translate(-25%, -50%) rotate(-135deg);
  transform: translate(-25%, -50%) rotate(-135deg);
}
@media all and (max-width: 767px) {
  .home-interview-nav__counter .slick-count-total::before {
    display: inline-block;
    content: '/';
    margin: 0 5px;
  }
  .home-interview-nav__arrows {
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    margin-top: -40px;
  }
  .home-interview-nav__arrows .slick-arrow {
    background: rgba(255, 255, 255, 0.7);
  }
}
@media all and (min-width: 768px) {
  .home-interview-nav {
    position: relative;
    max-width: var(--contents_width);
    margin-right: auto;
    margin-left: auto;
    bottom: -130px;
  }
  .home-interview-nav__counter {
    bottom: 22px;
    right: 70px;
    font-size: 1.4rem;
    width: 90px;
    text-align: center;
  }
  .home-interview-nav__counter .slick-count-total::before {
    display: inline-block;
    content: '';
    margin: 0 8px 5px;
    width: 35px;
    height: 0;
    border-top: 1px solid var(--border);
  }
  .home-interview-nav__arrows {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 230px;
    height: 60px;
  }
  .home-interview-nav__arrows .slick-arrow {
    width: 60px;
    height: 60px;
    border: 2px solid rgb(var(--green));
    transition: all 0.3s ease;
  }
  .home-interview-nav__arrows .slick-arrow::before {
    width: 7px;
    height: 7px;
    border-width: 2px;
    transition: border 0.3s ease;
  }
  .home-interview-nav__arrows .slick-arrow:hover {
    background: rgb(var(--green));
    border-color: transparent;
  }
  .home-interview-nav__arrows .slick-arrow:hover::before {
    border-color: #fff;
  }
}

/* .home-project
  ================================================ */
.home-project {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-bottom: 75px;
  background: url('../images/bg_stream02_sp.jpg') no-repeat center bottom/100% auto;
}
.home-project::before {
  position: absolute;
  content: '';
  width: 100%;
  top: 0;
  bottom: 50%;
  left: 0;
  right: 0;
  background: rgb(var(--light_lime));
  z-index: -1;
}
.home-project__link {
  position: relative;
  display: block;
  margin-left: 30px;
}
.home-project__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: -1;
  background: rgb(var(--green));
}
.home-project__bg::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url('../images/bg_project01_sp.png') no-repeat left top/cover;
}
.home-project__bg-lane {
  position: absolute;
  top: -200px;
  bottom: -200px;
  left: -350px;
  right: -450px;
  display: flex;
}
.home-project__bg-lane-item {
  position: relative;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  flex-basis: 12.5%;
  max-width: 12.5%;
  margin-right: 7.5%;
  box-sizing: border-box;
  background: url('../images/img_project01.jpg') repeat-y center top/100% auto;
  transition: background-position-y 2s ease;
}
.home-project__bg-lane-item.is-item01 {
  background-image: url('../images/ss4.jpg');
}
.home-project__bg-lane-item.is-item02 {
  background-image: url('../images/ss1.jpg');
}
.home-project__bg-lane-item.is-item03 {
  background-image: url('../images/ss3.jpg');
}
.home-project__bg-lane-item.is-item04 {
  background-image: url('../images/ss2.jpg');
}
.home-project__inner {
  padding-top: 70px;
  padding-bottom: 60px;
  box-sizing: border-box;
}
.home-project .home-project__head-txt img {
  height: 73px;
}
.home-project__btn {
  margin-top: 40px;
  text-align: right;
}
.home-project.is-animated .home-project__bg-lane-item:nth-of-type(odd) {
  background-position-y: -50px;
}
.home-project.is-animated .home-project__bg-lane-item:nth-of-type(even) {
  background-position-y: 50px;
}
@media all and (min-width: 768px) {
  .home-project__link {
    margin-left: 60px;
    padding-right: 60px;
  }
  .home-project__bg::after {
    background-image: url('../images/bg_project01_pc.png');
  }
  .home-project__inner {
    padding-bottom: 80px;
    min-height: 550px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home-project .home-project__head {
    margin-bottom: 0;
  }
  .home-project .home-project__head-txt img {
    height: 135px;
  }
  .home-project__btn {
    margin-bottom: -120px;
  }
  .home-project.is-animated .home-project__bg-lane-item:nth-of-type(odd) {
    background-position-y: -150px;
  }
  .home-project.is-animated .home-project__bg-lane-item:nth-of-type(even) {
    background-position-y: 150px;
  }
}
@media all and (min-width: 1400px) {
  .home-project__link {
    margin-left: 150px;
    padding-right: 150px;
  }
}
.home-project::before {
  bottom: 75%;
}
@media all and (min-width: 768px) {
  .home-project {
    padding-bottom: 165px;
    background-image: url('../images/bg_stream02_pc.jpg');
  }
}

/* .home-environment
  ================================================ */
.home-environment {
  background: url('../images/bg_stream02_sp.jpg') no-repeat center bottom/100% auto;
}
.home-environment__inner {
  padding-top: 60px;
  padding-bottom: 75px;
}
.home-environment-list {
  margin-top: 15px;
  font-size: 1.6rem;
  font-weight: 700;
}
.home-environment-list__item + .home-environment-list__item {
  border-top: 1px solid var(--border);
}
.home-environment-list__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.home-environment-list__ico {
  color: #fff;
}
@media all and (max-width: 767px) {
  .home-environment__area-img {
    margin: 0 75px 50px -30px;
  }
}
@media all and (min-width: 768px) {
  .home-environment {
    position: relative;
    background-image: url('../images/bg_stream02_pc.jpg');
  }
  .home-environment__inner {
    position: static;
    padding-top: 158px;
    padding-bottom: 165px;
    display: flex;
    justify-content: flex-end;
  }
  .home-environment__area-txt {
    padding-top: 60px;
  }
  .home-environment__area-img {
    position: absolute;
    top: 158px;
    left: 60px;
    width: 561px;
  }
  .home-environment-list {
    margin-top: 39px;
  }
}
@media all and (min-width: 1400px) {
  .home-environment__inner {
    margin-left: auto;
    justify-content: space-between;
  }
  .home-environment__area-txt {
    padding-top: 80px;
    padding-right: 67px;
  }
  .home-environment__area-img {
    position: static;
    margin-left: -190px;
    width: 606px;
  }
}

/* .home-recruit
  ================================================ */
.home-recruit {
  position: relative;
  background: rgb(var(--light_green));
  color: #fff;
  z-index: 1;
}
.home-recruit::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 75px;
  left: 0;
  right: 0;
  background: url('../images/bgsm_f.jpg') no-repeat center top/cover;
  z-index: -1;
}
.home-recruit__deco {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  overflow: hidden;
  height: 300px;
}
.home-recruit__deco-item {
  position: absolute;
}
.home-recruit__deco-item.is-item01 {
  top: 80px;
  left: 20px;
  width: 60px;
  height: 2px;
  opacity: 0.5;
}
.home-recruit__deco-item.is-item02 {
  bottom: 145px;
  right: 17px;
  width: 62px;
  height: 3px;
  opacity: 0.4;
}
.home-recruit__deco-item.is-item03 {
  bottom: 155px;
  right: -17px;
  width: 76px;
  height: 1px;
  opacity: 0.5;
}
.home-recruit__inner {
  padding-top: 70px;
}
.home-recruit-entry {
  margin-top: 20px;
}
.home-recruit-entry__link {
  position: relative;
  display: block;
  padding: 32px 35px;
  box-sizing: border-box;
  /*background: linear-gradient(to right, #29b792 0%, #5ec5ac 100%);*/
  background: url('../images/fv1.jpg') no-repeat;
  background-size: cover;
  background-position: center center;
}
.home-recruit-entry__link::after {
  position: absolute;
  content: '';
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  right: 24px;
}
.home-recruit-entry__head-en {
  font-size: 1rem;
}
.home-recruit-entry__head-ja img {
  height: 19px;
}
.home-recruit-entry__txt {
  margin-top: 8px;
  font-size: 1.1rem;
  line-height: 2rem;
}
@media all and (max-width: 767px) {
  .home-recruit-list {
    margin: 0 30px;
  }
  .home-recruit-list__item {
    margin-top: 10px;
  }
}
@media all and (min-width: 768px) {
  .home-recruit::after {
    bottom: 120px;
    background-image: url('../images/footbg.jpg');
  }
  .home-recruit__deco {
    position: absolute;
    top: 103px;
    left: 50%;
    right: unset;
    height: 172px;
    width: 635px;
    margin-left: -317px;
  }
  .home-recruit__deco-item {
    position: absolute;
  }
  .home-recruit__deco-item.is-item01 {
    top: 40px;
    left: 40px;
    width: 80px;
  }
  .home-recruit__deco-item.is-item02 {
    bottom: 70px;
    right: 70px;
    width: 42px;
  }
  .home-recruit__deco-item.is-item03 {
    bottom: 50px;
    right: 50px;
    width: 85px;
  }
  .home-recruit__inner {
    padding-top: 118px;
  }
  .home-recruit-list {
    display: flex;
    justify-content: center;
    margin: 0 45px;
  }
  .home-recruit-list__item {
    font-size: 2.4rem;
    flex-basis: calc(33.3333333333% - 30px);
    max-width: calc(33.3333333333% - 30px);
    margin: 0 15px;
  }
  .home-recruit-list__link {
    height: 160px;
    padding-left: 35px;
    padding-right: 35px;
  }
  .home-recruit-entry {
    margin-top: 110px;
  }
  .home-recruit-entry__link {
    padding: 10px 140px;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: -webkit-filter 0.3s ease;
    transition: filter 0.3s ease;
    transition: filter 0.3s ease, -webkit-filter 0.3s ease;
  }
  .home-recruit-entry__link::after {
    right: 60px;
    width: 8px;
    height: 8px;
    border-width: 2px;
  }
  .home-recruit-entry__link:hover {
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
  }
  .home-recruit-entry__head-en {
    font-size: 1.4rem;
  }
  .home-recruit-entry__head-ja {
    margin-top: 10px;
    font-size: 3.5rem;
  }
  .home-recruit-entry__head-ja img {
    height: 29px;
  }
  .home-recruit-entry__txt {
    margin-top: 0.8rem;
    font-size: 1.5rem;
  }
}
@media all and (min-width: 1400px) {
  .home-recruit-list {
    margin: 0 auto;
    max-width: 1680px;
  }
  .home-recruit-list__item {
    flex-basis: 28.3333333333%;
    max-width: 28.3333333333%;
    margin: 0 2.5%;
  }
}

/* info-newgrade-intro
  ============================ */
.info-newgrade-intro {
  overflow: hidden;
}
.info-newgrade-intro__inner {
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .info-newgrade-intro__inner {
    padding-bottom: 150px;
  }
}

/* info-newgrade-require
  ============================ */
.info-newgrade-require__inner {
  padding-bottom: 175px;
}
@media all and (min-width: 768px) {
  .info-newgrade-require__inner {
    padding-bottom: 270px;
  }
}

/* interview-archive
  ====================================== */
.interview-archive {
  overflow: hidden;
}
.interview-archive__area-archive {
  position: relative;
  padding: 60px 42px 70px;
}
.interview-archive__area-archive::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -30px;
  z-index: -1;
  width: calc(100% + 60px);
  height: calc(100% - 57vw);
  background: #f2f8f4;
}

@media all and (min-width: 276px) {
  .interview-archive__area-anchor.pro,
  .u-inner.pro,
  .interview-archive__area-archive.pro {
    max-width: 98%;
  }
}
@media all and (min-width: 576px) {
  .interview-archive__area-anchor.pro,
  .u-inner.pro {
    max-width: 1200px;
  }
}

@media all and (min-width: 768px) {
  .interview-archive__area-anchor {
    box-sizing: border-box;
    max-width: 1175px;
    margin: 0 auto;
    padding: 0 0;
  }
  .u-inner.pro {
    max-width: 1285px;
  }
  .interview-archive__area-anchor.pro {
    max-width: 1300px;
  }
  .interview-archive__area-archive {
    box-sizing: border-box;
    max-width: 1260px;
    margin: 0 auto;
    padding: 100px 42px 80px;
  }
  .interview-archive__area-archive.pro {
    max-width: 1380px;
  }

  .interview-archive__area-archive::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 200vw;
    height: calc(100% - 280px);
  }
}

@media all and (min-width: 1500px) {
  .interview-archive__area-anchor.pro {
    max-width: 1330px;
  }
  .u-inner.pro {
    max-width: 1320px;
  }
  .interview-archive__area-archive.pro {
    max-width: 1330px;
    padding: 70px 0 80px;
  }
}
/* job-info-intro
  ============================ */
.job-info-intro {
  overflow: hidden;
}
.job-info-intro__inner {
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .job-info-intro__inner {
    padding-bottom: 150px;
  }
}

/* job-info-require
  ============================ */
.job-info-require__inner {
  padding-bottom: 175px;
}
@media all and (min-width: 768px) {
  .job-info-require__inner {
    padding-bottom: 270px;
  }
}

/* jobreturn-intro
  ========================== */
.jobreturn-intro {
  overflow: hidden;
}
.jobreturn-intro__inner {
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .jobreturn-intro__inner {
    padding-bottom: 147px;
    padding-top: 4rem;
  }
}

/* jobreturn-about
  ========================== */
.jobreturn-about__inner {
  padding-bottom: 70px;
}
@media all and (min-width: 768px) {
  .jobreturn-about__inner {
    padding-bottom: 150px;
  }
}

/* jobreturn-about-sec
  --------------------------------- */
.jobreturn-about-sec + .jobreturn-about-sec {
  margin-top: 60px;
}
@media all and (min-width: 768px) {
  .jobreturn-about-sec + .jobreturn-about-sec {
    margin-top: 100px;
  }
}

/* jobreturn-flow
  ========================== */
.jobreturn-flow__inner {
  padding-top: 60px;
  padding-bottom: 70px;
}
@media all and (min-width: 768px) {
  .jobreturn-flow__inner {
    padding-top: 147px;
    padding-bottom: 150px;
  }
}

/* jobreturn-flow-list
  -------------------------------------- */
.jobreturn-flow-list__item {
  display: flex;
  flex-direction: column;
  padding: 20px 25px;
}

.jobreturn-flow-list__item.fac {
  width: calc(98.2% - 1px);
}
.jobreturn-flow-list__item.fac1 {
  width: calc(98.2% - 1px);
}
.jobreturn-flow-list__item p {
  line-height: 1.3;
}

.jobreturn-flow-list__item-head {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.jobreturn-flow-list__item-head-num {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  line-height: 1;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}
.jobreturn-flow-list__item-head-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 36px;
  box-sizing: border-box;
  width: calc(100% - 36px);
  padding-left: 8px;
  line-height: 1.5;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
.jobreturn-flow-list__item-ico {
  width: 80px;
  margin: 0 auto 10px;
}

.jobreturn-flow-list__item-ico.hon {
  width: 100%;
}

@media all and (max-width: 767px) {
  .jobreturn-flow-list {
    max-width: 480px;
    margin: 0 auto;
  }
  .jobreturn-flow-list__item + .jobreturn-flow-list__item {
    margin-top: 10px;
  }
}
@media all and (min-width: 768px) {
  .jobreturn-flow-list__item.fac {
    width: calc(51.6% - 60px);
  }
  .jobreturn-flow-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -30px;
  }
  .jobreturn-flow-list__item {
    position: relative;
    box-sizing: border-box;
    width: calc(50% - 60px);
    margin: 0 20px 30px 20px;
    padding: 30px 25px;
  }
  .jobreturn-flow-list__item-head-num {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
  }
  .jobreturn-flow-list__item-head-txt {
    width: calc(100% - 45px);
    min-height: 45px;
    padding-left: 15px;
    font-size: 1.9rem;
  }
  .jobreturn-flow-list__item-ico {
    margin-bottom: 20px;
  }
  .jobreturn-flow-list__item-arrow {
    position: absolute;
    top: 50%;
    right: -50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
  }
  .jobreturn-flow-list__item-arrow::after {
    width: 6px;
    height: 6px;
  }
}

/* jobreturn-contact
  ================================== */
.jobreturn-contact__inner {
  padding-top: 50px;
  padding-bottom: 170px;
}
.jobreturn-contact__box {
  padding: 30px 25px;
  border: 4px solid rgb(var(--smoke_gray));
}
.jobreturn-contact__head {
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 2rem;
  letter-spacing: 0.04em;
}
.jobreturn-contact__txt {
  letter-spacing: 0.08em;
}
@media all and (min-width: 768px) {
  .jobreturn-contact__inner {
    padding-top: 100px;
    padding-bottom: 270px;
  }
  .jobreturn-contact__box {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 60px;
  }
  .jobreturn-contact__head {
    box-sizing: border-box;
    width: 240px;
    padding-right: 20px;
    font-size: 2.3rem;
  }
  .jobreturn-contact__txt {
    box-sizing: border-box;
    width: calc(100% - 240px);
    padding-left: 70px;
    border-left: 1px solid rgba(var(--dark_gray), 0.4);
  }
}

/* .reason-intro
  ================================================ */
.reason-intro {
  position: relative;
  overflow: hidden;
  background: url(../images/nn.png) no-repeat center bottom/100% auto;
  padding: 100px 0;
}
.reason-intro__inner {
  padding-bottom: 70px;
}
.reason-intro-profile {
  position: relative;
  margin-bottom: 40px;
}
.reason-intro-profile img {
  margin: 0 -30px;
  max-width: calc(100% + 60px);
}
.reason-intro-profile__card {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 18px 15px 15px;
  background: rgb(var(--black));
  color: #fff;
  line-height: 1.6;
  box-sizing: border-box;
}
.reason-intro-profile__card::before {
  content: '';
  position: absolute;
  top: 5px;
  left: -10px;
  width: 30px;
  height: 2px;
  background: rgb(var(--green));
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.reason-intro-profile__card-sub {
  font-size: 1rem;
}
.reason-intro-profile__card-main {
  display: flex;
  align-items: center;
}
.reason-intro-profile__card-main-pos {
  font-size: 1rem;
  margin: 2px 10px 0 0;
}
.reason-intro-profile__card-main-name {
  font-size: 1.6rem;
}
.reason-intro__head {
  text-align: center;
  margin: 0 18px 25px;
}
.reason-intro__txt {
  margin-top: 2em;
}
@media all and (min-width: 768px) {
  .reason-intro::before {
    background-image: url(../images/bg_stream03_pc.jpg);
  }
  .reason-intro-profile {
    margin-bottom: 20px;
  }
  .reason-intro-profile img {
    margin: 0 auto;
    max-width: 100%;
  }
  .reason-intro-profile__card {
    min-width: 449px;
    padding: 42px 40px 30px;
  }
  .reason-intro-profile__card::before {
    top: 13px;
    left: -16px;
    width: 60px;
    height: 3px;
  }
  .reason-intro-profile__card-sub {
    font-size: 1.8rem;
  }
  .reason-intro-profile__card-main-pos {
    font-size: 2.3rem;
    margin: 5px 20px 0 0;
  }
  .reason-intro-profile__card-main-name {
    font-size: 3.2rem;
  }
  .reason-intro__inner {
    padding-bottom: 20px;
  }
  .reason-intro__head {
    margin: 0 auto 85px;
  }
}

/* .reason-message
  ================================================ */
.reason-message {
  position: relative;
  z-index: 1;
}
.reason-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 289px;
  background: url(../images/bg_grad01_sp.jpg) no-repeat center top/cover;
  z-index: -1;
}
.reason-message__inner {
  padding-top: 60px;
}
.reason-message__head {
  line-height: 1.5;
}
.reason-message__box {
  background: #fff;
  padding: 30px 20px;
}
@media all and (min-width: 768px) {
  .reason-message::before {
    height: 485px;
  }
  .reason-message__inner {
    padding-top: 140px;
  }
  .reason-message__box {
    padding: 80px 95px;
  }
}

/* .story-intro
  ================================================ */
.story-intro__inner {
  padding-bottom: 60px;
}
.story-intro__head {
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .story-intro__inner {
    padding-bottom: 120px;
  }
  .story-intro__lead {
    text-align: center;
    width: 80%;
    margin: auto;
  }
}

/* .story-flow
  ================================================ */
.story-flow {
  overflow: hidden;
}
.story-flow__set {
  position: relative;
}
.story-flow__set.has-bg-green::before,
.story-flow__set.has-bg-yellow::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgb(var(--light_green));
}
.story-flow__set.has-bg-green .story-flow-sec-list,
.story-flow__set.has-bg-yellow .story-flow-sec-list {
  background: #fff;
}
.story-flow__set.has-bg-yellow::before {
  background: rgb(var(--yellow));
}
.story-flow__set-inner {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
.story-flow__set-inner::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  border-left: 1px solid rgb(var(--green));
}
.story-flow__set:last-of-type .story-flow__set-inner {
  padding-bottom: 0;
}
.story-flow__set:first-of-type .story-flow__set-inner::before {
  top: 50px;
}
@media all and (min-width: 768px) {
  .story-flow__set.has-bg-green::before,
  .story-flow__set.has-bg-yellow::before {
    max-width: calc(100% - 150px);
    min-width: 1770px;
  }
  .story-flow__set.has-bg-green::before {
    right: unset;
  }
  .story-flow__set.has-bg-yellow::before {
    left: unset;
  }
  .story-flow__set-inner {
    padding-top: 200px;
    padding-bottom: 100px;
  }
  .story-flow__set-inner::before {
    left: 50%;
  }
  .story-flow__set:first-of-type .story-flow__set-inner::before {
    top: 100px;
  }
}

.story-flow-sec {
  position: relative;
}
.story-flow-sec + .story-flow-sec {
  margin-top: 50px;
}
.story-flow-sec__num {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(var(--green));
  color: #fff;
}
.story-flow-sec__tit {
  padding-bottom: 20px;
  margin-bottom: 20px;
  line-height: 1.2;
  font-size: 2.2rem;
  border-bottom: 1px solid rgb(var(--smoke_gray));
}
.story-flow-sec__sub {
  margin: 22px 0 10px;
  line-height: 1.5;
  font-size: 1.8rem;
}
.story-flow-sec-list {
  padding: 14px 20px;
  background: rgb(var(--light_green));
  line-height: 1.5;
  font-size: 1.5rem;
}
.story-flow-sec-list__item + .story-flow-sec-list__item {
  margin-top: 10px;
}
.story-flow-sec-list__link {
  position: relative;
  display: block;
  padding-left: 18px;
}
.story-flow-sec-list__link::before {
  color: rgb(var(--green));
  position: absolute;
  content: '';
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  left: -3px;
}
@media all and (max-width: 767px) {
  .story-flow-sec {
    padding-left: 55px;
  }
  .story-flow-sec__img {
    margin-bottom: 20px;
  }
}
@media all and (min-width: 768px) {
  .story-flow-sec {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .story-flow-sec + .story-flow-sec {
    margin-top: 170px;
  }
  .story-flow-sec:nth-child(even) {
    flex-direction: row-reverse;
  }
  .story-flow-sec__num {
    top: -110px;
    left: 50%;
    margin-left: -40px;
    width: 80px;
    height: 80px;
    font-size: 2.6rem;
  }
  .story-flow-sec__img {
    flex-basis: calc(50% - 60px);
    max-width: calc(50% - 60px);
  }
  .story-flow-sec__area-txt {
    flex-basis: calc(50% - 60px);
    max-width: calc(50% - 60px);
  }
  .story-flow-sec__tit {
    padding-bottom: 30px;
    margin-bottom: 30px;
    font-size: 3rem;
  }
  .story-flow-sec__sub {
    margin-top: 30px;
    font-size: 2rem;
  }
  .story-flow-sec-list__link {
    transition: color 0.3s ease;
  }
  .story-flow-sec-list__link:hover {
    color: rgb(var(--green));
  }
}
@media all and (min-width: 1400px) {
  .story-flow-sec:nth-child(odd) .story-flow-sec__img {
    margin-left: -115px;
  }
  .story-flow-sec:nth-child(even) .story-flow-sec__img {
    margin-right: -115px;
  }
  .story-flow-sec__img {
    flex-basis: calc(50% - 60px + 115px);
    max-width: calc(50% - 60px + 115px);
  }
}
