@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
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,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 1rem;
}

body {
  -webkit-background-size: 100% auto;
  -moz-background-size: 100% auto;
  -webkit-text-size-adjust: none;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  background: transparent;
  color: #333;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  border: none;
}

ul,
ol {
  list-style: none;
}

em,
i {
  font-style: normal;
}

/* フォントサイズ
-------------------------------------------*/
html {
  font-size: 62.5%;
}

@media screen and (max-width: 991px) {
  html {
    font-size: 72.5%;
  }
}

@media (max-width: 500px) {
  html {
    font-size: calc(100vw / 39);
    /*ビューポートが390pxを基準*/
  }
}

/* body
-------------------------------------------*/
body {
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #444647;
  width: 100%;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (min-width: 992px) {
  body {
    font-size: 1.6rem;
  }
}

section p {
  line-height: 2;
}

@media screen and (max-width: 991px) {
  section p {
    line-height: 1.7;
    letter-spacing: 0.03em;
  }
}

/* コンテンツ幅
-------------------------------------------*/
.inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 50px;
}

@media screen and (max-width: 991px) {
  .inner {
    padding: 0 5%;
  }
}

.inner_s {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 50px;
}

@media screen and (max-width: 991px) {
  .inner_s {
    padding: 0 6%;
  }
}

/*------------------------------------
clearfix 
------------------------------------*/
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.clearfix {
  display: block;
}

/* End IE-mac */
.clear {
  clear: both;
}

/*------------------------------------
リンク 
------------------------------------*/
a {
  color: #444647;
  text-decoration: none;
}

@media screen and (min-width: 992px) {
  /* ホバーアクション */
  .hover {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .hover:hover {
    opacity: 0.6 !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*------------------------------------
テキスト
------------------------------------*/
.bold {
  font-weight: bold;
}

.txt_co_orange {
  color: #ff7fff;
}

/*------------------------------------
スマホ　非表示
------------------------------------*/
@media screen and (min-width: 992px) {
  .disp_sp {
    display: none !important;
  }
}

/*------------------------------------
PC　非表示
------------------------------------*/
@media screen and (max-width: 991px) {
  .disp_pc {
    display: none !important;
  }
}

/*------------------------------------
margin
------------------------------------*/
.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

/* ヘッダー
-------------------------------------------*/
body.is_hidden {
  overflow: hidden;
}

.js_ac_box {
  height: 0;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
  visibility: hidden;
  overflow: hidden;
}

.is_open + .js_ac_box {
  height: auto;
  opacity: 1;
  visibility: visible;
}

/* ボタン
  -------------------------------------------*/
@media screen and (min-width: 992px) {
  .header {
    position: relative;
    height: 100px;
    width: 100%;
    z-index: 100;
    background: #fff;
  }
  .header #sp_menu_block {
    display: none;
  }
  .header-wrap {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
  }
  .header-inner {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-left: 30px;
  }
  .header-logo {
    display: flex;
    align-items: center;
    width: 20%;
    max-width: 225px;
    height: 100%;
  }
  .header-tel {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
  }
  .header-tel > div {
    font-size: 1.2rem;
    font-weight: 500;
    padding-right: 5px;
  }
  .header-tel img {
    width: 131px;
  }
  .header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    margin-right: 150px;
    padding: 0 10px;
    width: 80%;
  }
  .header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    height: 60px;
  }
  .header-contact {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 150px;
  }
  .header-contact a {
    background: #235a3a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) and (min-width: 992px) {
  .header-contact a {
    font-size: 1.3333333333333335vw;
  }
}

@media screen and (min-width: 992px) {
  .header-contact a > span {
    position: relative;
    padding-top: 30px;
  }
  .header-contact a > span::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    background: url(../img/img-common/icon_mail_w.svg) center top no-repeat;
    background-size: contain;
    width: 28px;
    height: 100%;
  }
}

@media screen and (min-width: 992px) and (min-width: 992px) {
  .header-contact a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header-contact a > span::before {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header-contact a:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 992px) {
  .header .gnav {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 35px;
  }
  .header .gnav > ul {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
  }
  .header .gnav > ul > li {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
  }
  .header .gnav > ul > li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #05693c;
    width: calc(100% - 40px);
    margin: auto;
    height: 3px;
    opacity: 0;
  }
  .header .gnav > ul > li > a,
  .header .gnav > ul > li > div:nth-child(1) {
    line-height: 1;
    position: relative;
    cursor: pointer;
    padding: 15px;
    display: flex;
    align-items: center;
    height: 100%;
    color: #235a3a;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) and (min-width: 992px) {
  .header .gnav > ul > li > a,
  .header .gnav > ul > li > div:nth-child(1) {
    padding: 15px 10px;
  }
}

@media screen and (min-width: 992px) {
  .header .gnav > ul > li > a::after,
  .header .gnav > ul > li > div:nth-child(1)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 2px;
    background: #235a3a;
    opacity: 0;
  }
  .header .gnav > ul > li > a > span,
  .header .gnav > ul > li > div:nth-child(1) > span {
    display: block;
    text-align: center;
  }
  .header .gnav > ul > li > a > span:nth-child(1),
  .header .gnav > ul > li > div:nth-child(1) > span:nth-child(1) {
    font-size: 1.6rem;
    font-weight: 500;
    position: relative;
    line-height: 1;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) and (min-width: 992px) {
  .header .gnav > ul > li > a > span:nth-child(1),
  .header .gnav > ul > li > div:nth-child(1) > span:nth-child(1) {
    font-size: 1.3333333333333335vw;
  }
}

@media screen and (min-width: 992px) and (min-width: 992px) {
  .header .gnav > ul > li > a,
  .header .gnav > ul > li > div:nth-child(1) {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header .gnav > ul > li > a:hover,
  .header .gnav > ul > li > div:nth-child(1):hover {
    color: #d0b333;
  }
}

@media screen and (max-width: 991px) {
  .header {
    background: #fff;
    height: 50px;
    width: 100%;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
  }
  .header-wrap {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    background: #fff;
    z-index: 2;
  }
  .header-inner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
  }
  .header-logo {
    height: 28px;
  }
  .header-logo > img {
    height: 28px;
  }
  .header-hum {
    position: absolute;
    right: 5px;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 50px;
    height: 50px;
    padding-top: 2px;
    z-index: 9999;
  }
  .header-hum > img {
    width: 30px;
    margin-top: 8px;
  }
  .header-hum.is_active img {
    opacity: 0;
  }
  .header #sp_menu_btn {
    width: 30px;
    height: 18px;
    display: block;
    z-index: 101;
    cursor: pointer;
    position: relative;
  }
  .header #sp_menu_btn span {
    width: 30px;
    height: 2px;
    display: block;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    background: #235a3a;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header #sp_menu_btn span:nth-of-type(1) {
    top: 0;
  }
  .header #sp_menu_btn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    z-index: -1;
  }
  .header #sp_menu_btn span:nth-of-type(3) {
    bottom: 0;
  }
  .header .is_active #sp_menu_btn span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  .header .is_active #sp_menu_btn span:nth-of-type(2) {
    opacity: 0;
  }
  .header .is_active #sp_menu_btn span:nth-of-type(3) {
    transform: translateY(-6px) rotate(45deg);
  }
  .header #sp_menu_block {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    z-index: 1;
    background: #fff;
    padding: 60px 8% 60px;
    overflow-y: auto;
    background: #235a3a;
    -webkit-overflow-scrolling: touch;
  }
  .header #sp_menu_block.is_active {
    opacity: 1;
    pointer-events: all;
  }
  .header .sp-menu-list {
    padding-top: 20px;
  }
  .header .sp-menu-list > ul > li > a {
    font-size: 1.8rem;
    padding: 15px 0 15px 20px;
    display: block;
    line-height: 1;
    color: #fff;
    position: relative;
  }
  .header .sp-menu-list > ul > li > a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #84dfba;
  }
  .header .sp-menu-list > ul > li > a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10%;
    margin: auto;
    background: url(../img/img-common/icon_nav_arrow_w.svg) right center no-repeat;
    background-size: contain;
    width: 7px;
    height: 100%;
  }
  .header .sp-menu-contact {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px;
    margin-top: 25px;
  }
  .header .sp-menu-contact > span {
    position: relative;
    padding: 0 15px 0 40px;
    text-align: center;
    font-size: 1.6rem;
  }
  .header .sp-menu-contact > span::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: url(../img/img-common/icon_mail.svg) left center no-repeat;
    background-size: contain;
    width: 26px;
    height: 100%;
  }
  .header .sp-menu-tel {
    margin-top: 30px;
  }
  .header .sp-menu-tel a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0 18px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    font-size: 1.4rem;
  }
  .header .sp-menu-tel a > div {
    line-height: 1;
    color: #fff;
    padding-bottom: 15px;
  }
  .header .sp-menu-tel a img {
    max-width: 160px;
  }
}

@media screen and (min-width: 992px) {
  .about .header .gnav > ul > li#nav_about > a,
  .commitment .header .gnav > ul > li#nav_commitment > a,
  .service .header .gnav > ul > li#nav_service > a,
  .project .header .gnav > ul > li#nav_project > a,
  .post-type-archive-news .header .gnav > ul > li#nav_news > a,
  .single-news .header .gnav > ul > li#nav_news > a,
  .recruit .header .gnav > ul > li#nav_recruit > a,
  .trainee .header .gnav > ul > li#nav_recruit > a,
  .part-time .header .gnav > ul > li#nav_recruit > a,
  .career .header .gnav > ul > li#nav_recruit > a {
    color: #d0b333;
  }
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 270px;
  height: 60px;
  width: 100%;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 700;
  color: #15ae67;
  border: 1px solid #15ae67;
  background: #fff;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

.btn-arrow.--wide {
  max-width: 100%;
  border-radius: 10px;
}

@media screen and (max-width: 991px) {
  .btn-arrow.--wide {
    font-size: 1.8rem;
    padding: 15px 20px;
    height: auto;
    min-height: 60px;
  }
}

@media screen and (max-width: 991px) {
  .btn-arrow.--left {
    text-align: left;
  }
}

.btn-arrow > span {
  position: relative;
  padding-right: 30px;
}

.btn-arrow > span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-top: 1px solid #15ae67;
  border-right: 1px solid #15ae67;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 991px) {
  .btn-arrow {
    font-size: 1.5rem;
    margin: auto;
    border-radius: 10px;
    max-width: 350px;
  }
}

@media screen and (min-width: 992px) {
  .btn-arrow {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .btn-arrow > span::after {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .btn-arrow:hover {
    border-color: #15ae67;
    background: #15ae67;
    color: #fff;
  }
  .btn-arrow:hover > span::after {
    border-color: #fff;
  }
  .btn-arrow.--blank::before {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .btn-arrow.--blank:hover::before {
    background-image: url(../img/common/icon_blank_w.svg);
  }
}

@media screen and (max-width: 991px) {
  .main {
    padding-top: 50px;
  }
}

.footer {
  margin-top: auto;
  background: #fff;
  padding: 150px 0 0;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .footer {
    padding: 100px 0 0;
    border-top-width: 3px;
  }
}

.footer_main {
  display: flex;
  padding-bottom: 50px;
}

@media screen and (max-width: 991px) {
  .footer_main {
    flex-direction: column-reverse;
    padding-bottom: 60px;
  }
}

.footer_inner {
  position: relative;
  max-width: 1250px;
  min-width: 960px;
  padding: 0 25px;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .footer_inner {
    width: 100%;
    display: block;
    padding: 0;
    min-width: 100%;
  }
}

.footer_logo > a > img {
  display: block;
  width: 273px;
}

.footer_logo .txt {
  display: block;
  margin-top: 30px;
  font-size: 2.1rem;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .footer_logo .txt {
    margin-top: 50px;
  }
}

@media screen and (min-width: 992px) {
  .footer_info {
    padding-right: 150px;
    margin-right: 60px;
    border-right: 1px solid #444647;
  }
}

@media screen and (max-width: 1200px) and (min-width: 992px) {
  .footer_info {
    padding-right: 60px;
    margin-right: 40px;
  }
}

@media screen and (max-width: 991px) {
  .footer_info {
    padding: 35px 6% 0;
  }
}

.footer_address {
  margin-top: 25px;
}

@media screen and (max-width: 991px) {
  .footer_address {
    margin-top: 15px;
  }
}

.footer_address dl {
  display: grid;
  line-height: 1.5;
}

@media screen and (min-width: 992px) {
  .footer_address dl {
    grid-template-columns: 115px 1fr;
    gap: 40px;
    place-items: start left;
  }
}

@media screen and (max-width: 991px) {
  .footer_address dl {
    gap: 0;
    line-height: 1.6;
  }
}

.footer_address dl dt,
.footer_address dl dd {
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .footer_address dl dt {
    font-size: 1.6rem;
  }
}

.footer_address dl + dl {
  margin-top: 10px;
}

@media screen and (max-width: 991px) {
  .footer_address dl + dl {
    margin-top: 15px;
  }
}

.footer_nav {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .footer_nav {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .footer_nav > ul {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .footer_nav > ul > li + li {
    margin-top: 5px;
  }
}

.footer_nav > ul > li > a {
  position: relative;
  display: block;
}

@media screen and (min-width: 992px) {
  .footer_nav > ul > li > a {
    padding-left: 15px;
  }
  .footer_nav > ul > li > a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #444647;
  }
}

@media screen and (max-width: 991px) {
  .footer_nav > ul > li > a {
    font-size: 1.8rem;
    padding: 15px 6%;
    display: block;
    line-height: 1;
    background: #e8f7f0;
  }
  .footer_nav > ul > li > a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10%;
    margin: auto;
    background: url(../img/img-common/icon_nav_arrow.svg) right center no-repeat;
    background-size: contain;
    width: 7px;
    height: 100%;
  }
  .footer_nav > ul > li > a > span {
    position: relative;
    padding-left: 15px;
  }
  .footer_nav > ul > li > a > span::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #444647;
  }
}

@media screen and (min-width: 992px) {
  .footer_nav > ul > li > a:hover {
    text-decoration: underline;
  }
}

@media screen and (min-width: 992px) {
  .footer_nav > ul > li + li {
    margin-top: 10px;
  }
}

.footer_copyright {
  padding: 15px 0;
  color: #fff;
  background: #235a3a;
  font-size: 1.4rem;
}

@media screen and (max-width: 991px) {
  .footer_copyright {
    padding: 15px 6%;
    text-align: center;
    font-size: 1.2rem;
  }
}

.ttl {
  text-align: center;
  margin-bottom: 45px;
}

@media screen and (max-width: 991px) {
  .ttl {
    margin-bottom: 30px;
  }
}

.ttl .t1 {
  font-size: 4.9rem;
  font-weight: 500;
  color: #c8d7d7;
  line-height: 1;
}

@media screen and (max-width: 991px) {
  .ttl .t1 {
    font-size: 3rem;
    line-height: 1.2;
  }
}

.ttl .t2 {
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.5;
  padding-top: 20px;
  margin-top: 30px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .ttl .t2 {
    font-size: 1.8rem;
    padding-top: 12px;
    margin-top: 15px;
  }
}

.ttl .t2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 85px;
  height: 2px;
  background: #d62300;
}

@media screen and (max-width: 991px) {
  .ttl .t2::after {
    width: 50px;
  }
}

.ttl-bg {
  display: flex;
  justify-content: center;
  margin-bottom: 70px;
}

@media screen and (max-width: 991px) {
  .ttl-bg {
    margin-bottom: 50px;
  }
}

.ttl-bg > div {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.7rem;
  font-weight: 500;
  padding: 0 40px;
  height: 60px;
  line-height: 1;
  color: #fff;
  background: #235a3a;
  border-radius: 50px;
  min-width: 190px;
}

.ttl-bg > div > span.--wide {
  letter-spacing: 0.8em;
  margin-right: -0.8em;
}

.section {
  margin-top: 80px;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .section {
    margin-top: 55px;
  }
}

.ttl-en {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 15px;
}

.ttl-en img {
  width: 230px;
}

@media screen and (max-width: 991px) {
  .ttl-en img {
    width: 130px;
  }
}

.ttl-en > div {
  margin-left: 20px;
  font-size: 4.2rem;
  font-weight: 300;
  color: #802e2d;
  line-height: 1;
  padding-bottom: 0.2em;
}

@media screen and (max-width: 991px) {
  .ttl-en > div {
    font-size: 2.5rem;
    margin-left: 15px;
  }
}

.ttl-en.--logi img {
  width: 262px;
}

@media screen and (max-width: 991px) {
  .ttl-en.--logi img {
    width: 130px;
  }
}

.ttl-en.--logi > div {
  font-size: 5rem;
  font-weight: 700;
  color: #00a3d7;
  font-style: italic;
}

@media screen and (max-width: 991px) {
  .ttl-en.--logi > div {
    font-size: 2.6rem;
    margin-left: 10px;
  }
}

.ttl-bd {
  font-size: 3.8rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 55px;
  text-align: center;
  border-top-left-radius: 50px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .ttl-bd {
    margin-bottom: 35px;
    font-size: 2.2rem;
  }
}

.ttl-bd.--reverse::after {
  left: inherit;
  border-bottom-right-radius: 0;
  right: calc(50vw - 10px);
  border-top-left-radius: 50px;
}

.ttl-bd.--reverse > div::after {
  border-top-left-radius: 0 !important;
  left: inherit;
  right: 0;
  border-bottom-right-radius: 50px;
}

@media screen and (max-width: 991px) {
  .ttl-bd.--reverse > div::after {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 40px;
    border-top-right-radius: 40px;
  }
}

.ttl-bd::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50vw - 10px);
  margin: auto;
  height: 100%;
  width: 50vw;
  background: #802e2d;
  border-bottom-right-radius: 50px;
}

@media screen and (max-width: 991px) {
  .ttl-bd::after {
    content: none;
  }
}

.ttl-bd > div {
  margin: auto;
  max-width: 1200px;
  position: relative;
  z-index: 2;
  padding: 20px;
}

.ttl-bd > div::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 100%;
  width: 50vw;
  border-top-left-radius: 50px;
  background: #802e2d;
}

@media screen and (max-width: 991px) {
  .ttl-bd > div::after {
    width: 100%;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
}

.ttl-bd > div::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 250px;
  height: 7px;
  background: #00b39d;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .ttl-bd > div::before {
    width: 170px;
    height: 5px;
  }
}

.ttl-bd > div > span {
  position: relative;
  z-index: 2;
}

.page_recruit .ttl .t1 {
  color: #44bd25;
}

.marker {
  background: linear-gradient(transparent 0%, #ffffff 0%);
}

.list-dot > li {
  position: relative;
  padding-left: 1.3em;
}

.list-dot > li::before {
  content: "・";
  position: absolute;
  display: block;
  left: 0;
  font-size: inherit;
}

.pageHeader {
  margin-bottom: 50px;
  overflow: hidden;
}

.pageHeader.--wide {
  position: relative;
  background: url(../img/img-common/mv_bg.png) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 380px;
}

@media screen and (max-width: 991px) {
  .pageHeader.--wide {
    margin-bottom: 30px;
    height: 270px;
    background-image: url(../img/img-common/mv_bg_sp.png);
  }
}

.pageHeader.--wide .pageHeader-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 6%;
}

@media screen and (max-width: 991px) {
  .pageHeader.--wide .pageHeader-title img {
    max-width: 300px;
    width: 80%;
  }
}

.pageHeader.--basic {
  position: relative;
  padding-top: 100px;
  margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
  .pageHeader.--basic {
    padding-top: 130px;
  }
}

.pageHeader.--basic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: calc(100% - 280px);
  height: 370px;
  width: 100%;
  background: url(../img/img-common/mv_bg.png) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

@media screen and (max-width: 991px) {
  .pageHeader.--basic::before {
    height: 100%;
    background-image: url(../img/img-common/mv_bg_sp.png);
  }
}

.pageHeader.--basic .inner {
  position: relative;
  max-width: 1100px;
  z-index: 3;
}

.pageHeader.--basic .inner .pageHeader-title {
  position: absolute;
  left: 50px;
  top: -35px;
}

@media screen and (max-width: 991px) {
  .pageHeader.--basic .inner .pageHeader-title {
    left: 6%;
    top: -95px;
    width: 58px;
  }
}

.pageHeader.--basic .pageHeader-image {
  width: 70vw;
  height: 540px;
  max-width: 900px;
  margin-left: calc(50% - 200px);
  height: 540px;
  overflow: hidden;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .pageHeader.--basic .pageHeader-image {
    width: 100%;
    height: 270px;
  }
}

.pageHeader.--basic .pageHeader-image .image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.pageHeader.--basic .pageHeader-image .txt {
  position: absolute;
  font-size: 3.3rem;
  font-weight: 700;
}

.pageHeader.--basic .pageHeader-image .txt b {
  font-size: 4.8rem;
  margin-left: -0.5em;
}

@media screen and (max-width: 991px) {
  .pageHeader.--basic .pageHeader-image .txt b {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 991px) {
  .pageHeader.--basic .pageHeader-image .txt {
    font-size: 1.7rem;
  }
}

.pageHeader.--basic.--reverse .pageHeader-title {
  left: inherit;
  right: 50px;
}

@media screen and (max-width: 991px) {
  .pageHeader.--basic.--reverse .pageHeader-title {
    left: inherit;
    right: 6%;
  }
}

.pageHeader.--basic.--reverse .pageHeader-image {
  margin-left: 0;
  margin: 0 calc(50% - 200px) 0 auto;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.pageHeader.--recruit {
  margin-bottom: 0;
}

.pageHeader.--recruit-pre {
  position: relative;
  padding-top: 100px;
  margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
  .pageHeader.--recruit-pre {
    padding-top: 130px;
    margin-bottom: 40px;
  }
}

.pageHeader.--recruit-pre::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 370px;
  width: 100%;
  background: url(../img/img-common/mv_bg.png) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

@media screen and (max-width: 991px) {
  .pageHeader.--recruit-pre::before {
    height: 300px;
    background-image: url(../img/img-common/mv_bg_sp.png);
  }
}

.pageHeader.--recruit-pre .inner {
  position: relative;
  max-width: 1100px;
  z-index: 3;
}

.pageHeader.--recruit-pre .inner .pageHeader-title {
  position: absolute;
  left: 50px;
  top: -35px;
}

@media screen and (max-width: 991px) {
  .pageHeader.--recruit-pre .inner .pageHeader-title {
    left: 0;
    right: 0;
    top: -95px;
    margin: auto;
    width: auto;
    height: 100px;
    display: flex;
    justify-content: center;
  }
  .pageHeader.--recruit-pre .inner .pageHeader-title img {
    height: 100%;
  }
}

@media screen and (min-width: 992px) {
  .pageHeader.--recruit-pre .pageHeader-title {
    left: inherit;
    right: 50px;
  }
}

.pageHeader.--recruit-pre.--reverse .flex .image {
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

@media screen and (min-width: 992px) {
  .pageHeader.--recruit-pre.--reverse .flex .image {
    right: calc(50% + 200px);
    left: inherit;
  }
}

.pageHeader.--recruit-pre.--reverse .flex .txt {
  margin: 0 0 0 auto;
}

@media screen and (min-width: 992px) {
  .pageHeader.--recruit-pre.--reverse .pageHeader-title {
    left: inherit;
    right: 50px;
  }
}

.pageHeader.--recruit-pre.--reverse .pageHeader-image {
  margin: 0 auto 0 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

@media screen and (min-width: 992px) {
  .pageHeader.--trainee {
    margin-bottom: 0;
  }
}

.pageHeader.--trainee .flex .txt {
  padding-top: 150px;
}

.pageHeader.--trainee .flex .txt dl dt {
  color: #4ba1e6;
}

.pageHeader.--part_time .flex .txt dl dt {
  color: #f7931e;
}

.pageHeader .flex {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 50px;
}

@media screen and (min-width: 992px) {
  .pageHeader .flex {
    min-height: 500px;
  }
}

@media screen and (max-width: 991px) {
  .pageHeader .flex {
    flex-direction: column-reverse;
    margin-top: 30px;
  }
}

.pageHeader .flex .inner {
  max-width: 1100px;
}

.pageHeader .flex .txt {
  width: 650px;
  margin: 0 auto 0 0;
  padding-top: 100px;
}

@media screen and (max-width: 991px) {
  .pageHeader .flex .txt {
    padding-top: 25px;
    width: 100%;
  }
}

.pageHeader .flex .txt .t1 {
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .pageHeader .flex .txt .t1 {
    font-size: 2.4rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }
}

.pageHeader .flex .txt .t2 {
  font-size: 4.2rem;
  color: #7db236;
  line-height: 1.6;
}

@media screen and (max-width: 991px) {
  .pageHeader .flex .txt .t2 {
    font-size: 3.4rem;
    line-height: 1.5;
  }
}

.pageHeader .flex .txt .t3 {
  font-size: 4rem;
  line-height: 1.6;
}

@media screen and (max-width: 991px) {
  .pageHeader .flex .txt .t3 {
    font-size: 3.4rem;
    line-height: 1.5;
  }
}

.pageHeader .flex .txt dl {
  padding-top: 35px;
}

.pageHeader .flex .txt dl dt {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.5;
  margin-left: -0.5em;
}

@media screen and (max-width: 991px) {
  .pageHeader .flex .txt dl dt {
    font-size: 2.4rem;
    margin-bottom: 20px;
    text-align: center;
    margin-left: 0;
  }
}

.pageHeader .flex .txt dl dd p {
  font-size: 1.8rem;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 991px) {
  .pageHeader .flex .txt dl dd p {
    font-size: 1.6rem;
  }
}

.pageHeader .flex .image {
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  overflow: hidden;
  max-width: 450px;
}

@media screen and (min-width: 992px) {
  .pageHeader .flex .image {
    top: 0;
    width: 50vw;
    position: absolute;
    left: calc(50% + 200px);
  }
}

@media screen and (max-width: 991px) {
  .pageHeader .flex .image {
    width: 100%;
    height: auto;
  }
}

.pageHeader .flex .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.topMv {
  position: relative;
  background: url(../img/img-index/mv_top_bg.png) center center no-repeat;
  background-size: cover;
  padding-bottom: 35px;
  overflow: hidden;
  background-attachment: fixed;
}

@media screen and (max-width: 991px) {
  .topMv {
    background-image: url(../img/img-common/mv_bg_sp.png);
  }
}

.topMv-image {
  display: flex;
  justify-content: center;
  overflow: hidden;
  width: 100vw;
  padding: 20px 0 50px;
}

@media screen and (max-width: 991px) {
  .topMv-image {
    padding: 10px 0 25px;
  }
}

.topMv-image img {
  width: 100%;
}

.topMv-txt {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 1350px) {
  .topMv-txt {
    margin-top: -5vw;
  }
}

@media screen and (max-width: 991px) {
  .topMv-txt {
    margin-top: 3vw;
    padding: 0 8%;
  }
}

.topMv-slider {
  display: flex;
  flex-wrap: nowrap;
}

.topMv-slider li {
  width: 1865px;
}

@media screen and (max-width: 991px) {
  .topMv-slider li {
    width: 1000px;
  }
}

@keyframes image-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-4680px);
  }
}

.topNews {
  padding: 50px 0;
}

@media screen and (max-width: 991px) {
  .topNews {
    padding: 30px 0;
  }
}

.topNews .flex {
  max-width: 850px;
  margin: auto;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .topNews .flex {
    flex-direction: column;
  }
}

@media screen and (min-width: 992px) {
  .topNews .flex .item:nth-child(1) {
    width: 100px;
  }
  .topNews .flex .item:nth-child(2) {
    width: calc(100% - 100px);
    padding-left: 40px;
  }
}

.topNews .flex .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: #d0efe1;
  color: #15ae67;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .topNews .flex .icon {
    font-size: 1.4rem;
    width: 5em;
    height: 5em;
  }
}

.topNews .flex ul li a {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #15ae67;
  padding: 10px 0;
  position: relative;
}

@media screen and (max-width: 991px) {
  .topNews .flex ul li a {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (min-width: 992px) {
  .topNews .flex ul li a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: url(../img/img-common/icon_arrow.svg) left center no-repeat;
    background-size: contain;
    width: 38px;
    height: 38px;
  }
}

.topNews .flex ul li .date {
  width: 120px;
  font-size: 1.7rem;
}

@media screen and (max-width: 991px) {
  .topNews .flex ul li .date {
    font-size: 1.4rem;
    width: 100%;
  }
}

.topNews .flex ul li .txt {
  width: calc(100% - 120px);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .topNews .flex ul li .txt {
    width: 100%;
    padding-right: 60px;
    font-size: 1.6rem;
    padding-top: 5px;
    position: relative;
  }
  .topNews .flex ul li .txt::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: url(../img/img-common/icon_arrow.svg) left center no-repeat;
    background-size: contain;
    width: 38px;
    height: 38px;
  }
}

@media screen and (max-width: 991px) and (max-width: 991px) {
  .topNews .flex ul li .txt::after {
    width: 33px;
    height: 33px;
  }
}

.topBnr {
  padding-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .topBnr {
    padding-bottom: 30px;
  }
}

.topBnr .inner {
  max-width: 1208px;
}

@media screen and (max-width: 991px) {
  .topBnr .inner {
    padding: 0;
  }
}

.topBnr-l .item {
  display: block;
}

.topBnr-l .item + .item {
  margin-top: 35px;
}

@media screen and (max-width: 991px) {
  .topBnr-l .item + .item {
    margin-top: 0;
  }
}

.topBnr-l .image {
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .topBnr-l .image {
    border-radius: 10px;
  }
}

.topBnr-l .image img {
  display: block;
}

.topBnr-l .image .txt {
  position: absolute;
  left: 50px;
  top: 50px;
  color: #fff;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .topBnr-l .image .txt {
    font-size: 2.7rem;
    left: 0;
    right: 0;
    top: 25px;
    margin: auto;
    width: calc(100% - 50px);
    line-height: 1.4;
  }
}

.topBnr-l .image .link {
  position: absolute;
  right: 55px;
  bottom: 30px;
  display: flex;
  justify-content: flex-end;
  max-width: 385px;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .topBnr-l .image .link {
    width: 80%;
    margin: auto;
    right: 0;
    left: 0;
    bottom: 35px;
  }
}

.topBnr-l .image .link > div {
  background: #fff;
  border-radius: 50px;
  height: 95px;
  display: flex;
  align-items: center;
  padding: 0 50px 0 30px;
  width: 100%;
  font-size: 2.7rem;
  font-weight: 600;
  color: #235a3a;
  position: relative;
}

@media screen and (max-width: 991px) {
  .topBnr-l .image .link > div {
    font-size: 2.1rem;
    height: 75px;
  }
}

.topBnr-l .image .link > div::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  background: url(../img/img-common/icon_arrow.svg) left center no-repeat;
  background-size: contain;
  width: 47px;
  height: 47px;
}

@media screen and (max-width: 991px) {
  .topBnr-l .image .link > div::after {
    width: 38px;
    height: 38px;
  }
}

.topBnr-s {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 70px;
}

@media screen and (max-width: 991px) {
  .topBnr-s {
    margin-top: 15px;
  }
}

.topBnr-s .item .image {
  border-radius: 10px;
}

.topBnr-s .item .txt {
  line-height: 1.5;
  padding-top: 10px;
}

@media screen and (max-width: 991px) {
  .topBnr-s .item .txt {
    width: 88%;
    margin: auto;
    padding-top: 12px;
  }
}

.topBnr-s .item .txt .t1 {
  font-size: 2.6rem;
  font-weight: 600;
  color: #235a3a;
  position: relative;
  min-height: 38px;
}

@media screen and (max-width: 991px) {
  .topBnr-s .item .txt .t1 {
    font-size: 2.1rem;
    min-height: 33px;
  }
}

.topBnr-s .item .txt .t1::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto;
  background: url(../img/img-common/icon_arrow.svg) left center no-repeat;
  background-size: contain;
  width: 38px;
  height: 38px;
}

@media screen and (max-width: 991px) {
  .topBnr-s .item .txt .t1::after {
    width: 33px;
    height: 33px;
  }
}

.topBnr-s .item .txt .t2 {
  font-size: 1.5rem;
  color: #235a3a;
  padding-top: 3px;
}

@media screen and (max-width: 991px) {
  .topBnr-s .item .txt .t2 {
    font-size: 1.4rem;
    padding-top: 8px;
  }
}

@media screen and (min-width: 992px) {
  .topBnr-s .item {
    width: 48%;
  }
  .topBnr-s .item:nth-child(n + 3) {
    margin-top: 55px;
  }
}

@media screen and (max-width: 991px) {
  .topBnr-s .item {
    width: 100%;
  }
  .topBnr-s .item:not(:last-child) {
    margin-bottom: 30px;
  }
}

.main.--commitment .pageHeader .pageHeader-image .txt {
  left: 50px;
  bottom: 35px;
  color: #fff;
  display: table;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .main.--commitment .pageHeader .pageHeader-image .txt {
    left: calc(6% + 29px);
    bottom: 20px;
  }
}

.main.--project .pageHeader .pageHeader-image .txt {
  left: 50px;
  top: 35px;
  color: #3fa061;
  display: table;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .main.--project .pageHeader .pageHeader-image .txt {
    left: calc(6% + 58px + 20px);
    top: 20px;
  }
}

.main.--about .pageHeader .pageHeader-image::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 30%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #1e4415 100%);
}

@media screen and (max-width: 991px) {
  .main.--about .pageHeader .pageHeader-image::before {
    height: 35%;
  }
}

.main.--about .pageHeader .pageHeader-image .txt {
  right: 50px;
  padding-left: 30px;
  bottom: 25px;
  color: #fff;
  display: table;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .main.--about .pageHeader .pageHeader-image .txt {
    left: 6%;
    bottom: 15px;
    padding-left: 0;
  }
}

.main.--service .pageHeader .pageHeader-image .txt {
  right: 50px;
  padding-left: 30px;
  bottom: 25px;
  color: #fff;
  display: table;
  line-height: 1.5;
  text-shadow: 1px 0 5px rgba(0, 0, 0, 0.1), -1px 0 5px rgba(0, 0, 0, 0.1), 0 1px 5px rgba(0, 0, 0, 0.1), 0 -1px 5px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 991px) {
  .main.--service .pageHeader .pageHeader-image .txt {
    left: 6%;
    bottom: 15px;
    padding-left: 0;
  }
}

.navPage {
  position: relative;
  height: 55px;
}

.navPage-bar {
  background: #3fa061;
  padding: 15px 50px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .navPage-bar {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.navPage-bar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media screen and (min-width: 992px) {
  .navPage-bar ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 991px) {
  .navPage-bar ul {
    display: flex;
    flex-wrap: nowrap;
    min-width: max-content;
    justify-content: flex-start;
    padding: 0 6% 0 0;
    margin: 0;
  }
}

.navPage-bar ul li + li {
  margin-left: 80px;
}

@media screen and (max-width: 991px) {
  .navPage-bar ul li + li {
    margin-left: 60px;
    margin-left: 50px;
  }
}

.navPage-bar ul li a {
  display: flex;
  align-items: center;
  border-radius: 50px;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  position: relative;
  padding-left: 20px;
}

@media screen and (max-width: 991px) {
  .navPage-bar ul li a {
    font-size: 1.6rem;
  }
}

.navPage-bar ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #73cea4;
}

.navPage-bar ul li.active a::before {
  background: #e4ee79;
}

.bgbox {
  position: relative;
}

@media screen and (min-width: 992px) {
  .bgbox {
    min-height: 460px;
    padding-top: 180px;
  }
}

.bgbox .inner {
  padding: 0;
}

.bgbox .txtbox p {
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .bgbox .txtbox p {
    font-size: 1.6rem;
  }
}

.bgbox .txtbox p .marker {
  padding: 0 3px;
  background: linear-gradient(transparent 0%, #e4ee79 0%);
}

.bgbox .txtbox .btn-arrow {
  margin-top: 40px;
}

@media screen and (max-width: 991px) {
  .bgbox .txtbox .btn-arrow {
    margin-top: 25px;
  }
}

.bgbox .txtbox + .--mt {
  margin-top: 150px;
}

@media screen and (max-width: 991px) {
  .bgbox .txtbox + .--mt {
    margin-top: 100px;
  }
}

.bgbox .txtbox .bgbox-ttl {
  margin-bottom: 80px;
}

@media screen and (max-width: 991px) {
  .bgbox .txtbox .bgbox-ttl {
    margin-bottom: 40px;
  }
}

.bgbox-image {
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .bgbox-image {
    position: absolute;
    top: 0;
    width: calc(50vw - 200px);
    height: 460px;
  }
}

@media screen and (min-width: 992px) {
  .bgbox-image.--left {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    width: 50vw;
    z-index: 2;
    max-width: 605px;
    right: calc(50% + 200px);
  }
}

@media screen and (min-width: 992px) {
  .bgbox-image.--right {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    width: 50vw;
    z-index: 2;
    max-width: 605px;
    left: calc(50% + 200px);
  }
}

.bgbox-image.--bottom {
  top: inherit;
  bottom: 0;
}

.bgbox-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bgbox-main {
  background-color: #fbfceb;
  padding: 60px 60px 70px;
}

@media screen and (min-width: 992px) {
  .bgbox-main {
    border-radius: 50px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

@media screen and (max-width: 991px) {
  .bgbox-main {
    padding: 30px 6% 60px;
  }
}

.bgbox-main .image {
  position: relative;
  margin: 45px 0 15px;
}

@media screen and (max-width: 991px) {
  .bgbox-main .image {
    margin: 0 0 35px;
  }
}

@media screen and (min-width: 992px) {
  .bgbox-main .image .txt {
    position: absolute;
    bottom: 50px;
    right: 0;
    background: rgba(208, 179, 51, 0.8);
    color: #fff;
    font-size: 3.6rem;
    font-weight: 600;
    padding: 8px 35px 10px;
    line-height: 1.3;
  }
}

@media screen and (max-width: 991px) {
  .bgbox-main .image .txt {
    font-size: 2.4rem;
    font-weight: 600;
    color: #3fa061;
    line-height: 1.5;
    text-align: center;
    padding-top: 10px;
  }
}

@media screen and (max-width: 991px) {
  .bgbox-main .sp-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}

.bgbox-lead {
  margin: 0 auto 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 992px) {
  .bgbox-lead {
    min-height: 220px;
    width: calc(50% + 90px);
  }
}

@media screen and (max-width: 991px) {
  .bgbox-lead .txtbox p {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 992px) {
  .bgbox-lead.--right {
    margin: 0 0 0 auto;
    width: calc(50% + 140px);
  }
}

.bgbox-lead + .txtbox {
  margin-top: 35px;
}

.bgbox-no {
  margin-top: 70px;
}

@media screen and (max-width: 991px) {
  .bgbox-no {
    margin-top: 60px;
  }
}

.bgbox-no dl + dl {
  margin-top: 75px;
}

@media screen and (max-width: 991px) {
  .bgbox-no dl + dl {
    margin-top: 50px;
  }
}

.bgbox-no dl dt {
  display: grid;
  margin-bottom: 15px;
}

@media screen and (min-width: 992px) {
  .bgbox-no dl dt {
    grid-template-columns: 133px 1fr;
    gap: 23px;
    place-items: end left;
  }
}

@media screen and (max-width: 991px) {
  .bgbox-no dl dt {
    gap: 20px;
  }
}

.bgbox-no dl dt .no {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bgbox-no dl dt .no > div {
  width: 100%;
  max-width: 140px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #fff;
  background: #235a3a;
  font-size: 2rem;
  font-weight: 500;
  border-radius: 50px;
  margin-top: 10px;
}

.bgbox-no dl dt .txt {
  width: 90%;
  font-size: 2.7rem;
  font-weight: 500;
  color: #235a3a;
  line-height: 1.5;
  border-bottom: 4px solid #d0b333;
  padding-bottom: 5px;
}

@media screen and (max-width: 991px) {
  .bgbox-no dl dt .txt {
    text-align: center;
    font-size: 2.1rem;
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .bgbox-no dl dd .image {
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 15px;
  }
}

@media screen and (min-width: 992px) {
  .bgbox-no dl.--narrow {
    width: calc(50% + 140px);
    margin-left: auto;
  }
}

.bgbox-ttl {
  font-size: 4.1rem;
  font-weight: 600;
  position: relative;
  padding-left: 50px;
  color: #235a3a;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .bgbox-ttl {
    text-align: center;
    font-size: 2.6rem;
    display: table;
    margin: auto;
    padding-left: 35px;
    padding-right: 15px;
  }
}

.bgbox-ttl.--noicon {
  padding: 0 !important;
}

@media screen and (max-width: 991px) {
  .bgbox-ttl.--noicon {
    font-size: 2.4rem;
  }
}

.bgbox-ttl.--noicon::before {
  content: none;
}

.bgbox-ttl.--flex {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .bgbox-ttl.--flex::before {
    content: none;
  }
}

@media screen and (max-width: 991px) {
  .bgbox-ttl.--flex {
    flex-direction: column;
    padding: 0;
  }
  .bgbox-ttl.--flex b {
    position: relative;
    padding-left: 30px;
  }
  .bgbox-ttl.--flex b::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #73cea4;
  }
}

.bgbox-ttl.--flex > span {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  padding-top: 0.7em;
  padding-left: 30px;
}

@media screen and (max-width: 991px) {
  .bgbox-ttl.--flex > span {
    font-size: 1.8rem;
    padding: 5px 0 0;
  }
}

.bgbox-ttl::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #73cea4;
}

@media screen and (max-width: 991px) {
  .bgbox-ttl::before {
    width: 18px;
    height: 18px;
  }
}

.bgbox-ttl + .txtbox {
  margin-top: 80px;
}

@media screen and (max-width: 991px) {
  .bgbox-ttl + .txtbox {
    margin-top: 15px;
  }
}

.bgbox-tag {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .bgbox-tag {
    justify-content: center;
    margin-bottom: 25px;
  }
}

.bgbox-tag span {
  display: flex;
  align-items: center;
  padding: 10px 30px 12px;
  line-height: 1;
  color: #fff;
  background: #235a3a;
  font-size: 2.7rem;
}

@media screen and (max-width: 991px) {
  .bgbox-tag span {
    font-size: 1.9rem;
  }
}

.bgbox-social {
  padding-top: 70px;
}

@media screen and (max-width: 991px) {
  .bgbox-social {
    padding-top: 50px;
  }
}

.bgbox-social dl + dl {
  margin-top: 80px;
}

@media screen and (max-width: 991px) {
  .bgbox-social dl + dl {
    margin-top: 70px;
  }
}

.bgbox-social dl dt {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 6px solid #333;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .bgbox-social dl dt {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}

.bgbox-social dl dd .flex {
  display: grid;
}

@media screen and (min-width: 992px) {
  .bgbox-social dl dd .flex {
    grid-template-columns: 60% 1fr;
    gap: 45px;
    place-items: start left;
  }
}

@media screen and (max-width: 991px) {
  .bgbox-social dl dd .flex {
    gap: 25px;
  }
}

.bgbox-social dl dd .flex .item .image > div {
  padding-top: 5px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .bgbox-social dl dd .flex .item .image > div {
    text-align: left;
  }
}

.bgbox-social dl dd .flex .item .t1 {
  padding-top: 20px;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
  .bgbox-social dl dd .flex .item .t1 {
    font-size: 2.1rem;
    margin-bottom: 10px;
    padding-top: 0;
  }
}

.bgbox-social dl dd .flex .item ul li {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .bgbox-social dl dd .flex .item ul li {
    font-size: 1.8rem;
  }
}

.bgbox-social dl dd .flex .item ul li > span {
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .bgbox-social dl dd .flex .item ul li > span {
    font-size: 1.6rem;
  }
}

.bgbox-social dl dd .flex .item ul li > span.--block {
  display: block;
}

.bgbox-social dl dd .flex .item ul li + li {
  margin-top: 5px;
}

.bgbox-social dl:nth-child(1) dt {
  color: #ff8d56;
  border-color: #ff8d56;
}

.bgbox-social dl:nth-child(1) dd .flex .item .t1 {
  color: #ff8d56;
}

.bgbox-social dl:nth-child(2) dt {
  color: #5680bc;
  border-color: #5680bc;
}

.bgbox-social dl:nth-child(2) dd .flex .item .t1 {
  color: #5680bc;
}

.bgbox-sign {
  margin-top: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

@media screen and (max-width: 991px) {
  .bgbox-sign {
    margin-top: 50px;
  }
}

.bgbox-sign .t1 {
  font-size: 1.8rem;
  line-height: 1;
}

.bgbox-sign .t2 {
  font-size: 2.5rem;
  line-height: 1;
  padding-left: 20px;
}

@media screen and (min-width: 992px) {
  .main.--commitment .bgbox.--bg01 .bgbox-main {
    background-image: url(../img/img-commitment/bg_commitment01.png);
  }
}

@media screen and (min-width: 992px) and (min-width: 992px) {
  .main.--commitment .bgbox.--bg02 {
    padding-bottom: 130px;
  }
}

@media screen and (min-width: 992px) {
  .main.--commitment .bgbox.--bg02 .bgbox-main {
    background-image: url(../img/img-commitment/bg_commitment02.png);
  }
  .main.--project .bgbox.--bg01 .bgbox-main {
    background-image: url(../img/img-project/bg_project01.png);
  }
  .main.--project .bgbox.--bg02 .bgbox-main {
    background-image: url(../img/img-project/bg_project02.png);
  }
  .main.--project .bgbox.--bg03 {
    padding-top: 0;
  }
  .main.--project .bgbox.--bg03 .bgbox-main {
    background-image: url(../img/img-project/bg_project03.png);
  }
  .main.--about .bgbox.--bg01 .bgbox-main {
    background-image: url(../img/img-about/bg_about01.png);
  }
  .main.--about .bgbox.--bg02 .bgbox-main {
    background-image: url(../img/img-about/bg_about02.png);
  }
  .main.--about .bgbox.--bg03 {
    padding-top: 0;
  }
  .main.--about .bgbox.--bg03 .bgbox-main {
    background-image: url(../img/img-about/bg_about03.png);
  }
  .main.--service .bgbox {
    padding-top: 0;
  }
  .main.--service .bgbox.--bg01 .bgbox-main {
    background-image: url(../img/img-service/bg_service01.png);
  }
}

@media screen and (min-width: 992px) and (min-width: 992px) {
  .main.--service .bgbox.--bg01 .btn-arrow {
    margin-top: 90px;
  }
}

@media screen and (min-width: 992px) {
  .main.--service .bgbox.--bg02 .bgbox-main {
    background-image: url(../img/img-service/bg_service02.png);
  }
}

@media screen and (max-width: 991px) and (max-width: 991px) {
  .main.--about .bgbox.--bg01 .txtbox .bgbox-ttl {
    white-space: nowrap;
  }
}

@media screen and (max-width: 991px) {
  .main.--service .bgbox.--bg01 .bgbox-main, .main.--service .bgbox.--bg02 .bgbox-main {
    padding: 0 0 60px;
  }
  .main.--service .bgbox.--bg01 .bgbox-main .image, .main.--service .bgbox.--bg02 .bgbox-main .image {
    margin-bottom: 50px;
  }
  .main.--service .bgbox.--bg01 .bgbox-main .image .txt,
  .main.--service .bgbox.--bg01 .bgbox-main .txtbox, .main.--service .bgbox.--bg02 .bgbox-main .image .txt,
  .main.--service .bgbox.--bg02 .bgbox-main .txtbox {
    padding-left: 6%;
    padding-right: 6%;
  }
  .main.--service .bgbox.--bg01 .bgbox-main .bgbox-ttl, .main.--service .bgbox.--bg02 .bgbox-main .bgbox-ttl {
    width: 88%;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.4rem;
  }
  .main.--service .bgbox.--bg01 .bgbox-main .bgbox-ttl, .main.--service .bgbox.--bg02 .bgbox-main .bgbox-ttl {
    margin-bottom: 20px;
  }
  .main.--service .bgbox.--bg01 .bgbox-main .bgbox-ttl, .main.--service .bgbox.--bg02 .bgbox-main .bgbox-ttl {
    text-align: left;
  }
}

.main.--service .bgbox .itembox {
  margin-top: 120px;
}

@media screen and (max-width: 991px) {
  .main.--service .bgbox .itembox {
    margin-top: 60px;
  }
}

.main.--service .bgbox .itembox .t1 {
  font-size: 2.1rem;
  font-weight: 500;
  color: #15ae67;
  padding: 10px 0;
  border-top: 1px solid #444647;
  border-bottom: 1px solid #444647;
  text-align: center;
}

.main.--service .bgbox .itembox .flex {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

@media screen and (max-width: 991px) {
  .main.--service .bgbox .itembox .flex {
    flex-direction: column;
    width: 92%;
    margin: auto;
  }
}

.main.--service .bgbox .itembox .flex .item + .item {
  margin-left: 100px;
}

@media screen and (max-width: 991px) {
  .main.--service .bgbox .itembox .flex .item + .item {
    margin: 20px 0 0;
  }
}

.main.--service .bgbox .itembox .flex .item dl {
  font-size: 1.8rem;
}

.main.--service .bgbox .itembox .flex .item dl dt {
  margin-bottom: 5px;
}

.main.--service .bgbox .itembox .flex .item ul.--flex {
  display: grid;
}

@media screen and (min-width: 992px) {
  .main.--service .bgbox .itembox .flex .item ul.--flex {
    grid-template-columns: repeat(2, auto);
    gap: 5px 30px;
  }
}

@media screen and (max-width: 991px) {
  .main.--service .bgbox .itembox .flex .item ul.--flex {
    grid-template-columns: repeat(2, 35%);
    gap: 5px 20px;
  }
}

.singleBox {
  margin-top: 70px;
}

@media screen and (max-width: 991px) {
  .singleBox {
    margin-top: 0;
  }
}

@media screen and (max-width: 991px) {
  .singleBox .inner {
    padding: 0;
  }
}

.singleBox-bg {
  border-radius: 50px;
  background-color: #fbfceb;
  padding: 60px 60px 60px;
}

@media screen and (max-width: 991px) {
  .singleBox-bg {
    padding: 30px 6% 35px;
    border-radius: 0;
  }
}

.singleBox-ttl {
  font-size: 3.2rem;
  font-weight: 500;
  position: relative;
  padding-left: 50px;
  margin-top: 5px;
  line-height: 1.4;
}

@media screen and (max-width: 991px) {
  .singleBox-ttl {
    text-align: left;
    font-size: 2.4rem;
    padding-left: 35px;
  }
}

.singleBox-ttl::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  margin: auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #73cea4;
}

@media screen and (max-width: 991px) {
  .singleBox-ttl::before {
    width: 18px;
    height: 18px;
  }
}

.singleBox-image {
  margin: 30px 0 0;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .singleBox-image {
    margin-top: 25px;
  }
}

.singleBox .date {
  display: flex;
  justify-content: flex-start;
}

.singleBox .date > div {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 5px 15px 7px;
  line-height: 1;
}

.singleBox .date > div > span {
  font-size: 1.2rem;
}

.singleBox .date > div > b {
  font-size: 2.1rem;
  padding-left: 8px;
}

.singleBox-content h2 {
  font-size: 2.6rem;
  font-weight: 500;
  color: #3fa061;
  margin-bottom: 15px;
  padding: 20px 0 20px 30px;
  border-left: 5px solid #3fa061;
  margin-top: 60px;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .singleBox-content h2 {
    border-width: 4px;
    padding: 10px 0 10px 20px;
    font-size: 2.2rem;
  }
}

.singleBox-content h2:first-of-type {
  margin-top: 35px;
}

@media screen and (max-width: 991px) {
  .singleBox-content h2:first-of-type {
    margin-top: 25px;
  }
}

.singleBox-content h3 {
  font-size: 2.4rem;
  font-weight: 500;
  color: #d0b333;
  margin-bottom: 15px;
  margin-top: 60px;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .singleBox-content h3 {
    font-size: 2rem;
  }
}

.singleBox-content p {
  margin-top: 30px;
  font-size: 1.6rem;
}

@media screen and (max-width: 991px) {
  .singleBox-content p {
    margin-top: 25px;
  }
}

.singleBox-content ul,
.singleBox-content ol {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  margin-top: 25px;
}

@media screen and (max-width: 991px) {
  .singleBox-content ul,
  .singleBox-content ol {
    padding: 25px;
  }
}

.singleBox-content ol {
  counter-reset: ol-counter;
}

.singleBox-content ol > li {
  counter-increment: ol-counter;
  position: relative;
  padding-left: 1.3em;
  font-size: 1.6rem;
}

.singleBox-content ol > li + li {
  margin-top: 3px;
}

.singleBox-content ol > li::before {
  content: counter(ol-counter) ".";
  position: absolute;
  display: block;
  left: 0;
  font-size: inherit;
  color: #3fa061;
}

.singleBox-content ul li {
  position: relative;
  padding-left: 1.3em;
  font-size: 1.6rem;
}

.singleBox-content ul li + li {
  margin-top: 3px;
}

.singleBox-content ul li::before {
  content: "";
  position: absolute;
  display: block;
  top: 0.6em;
  left: 0;
  background: #3fa061;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.singleBox-pager {
  margin-top: 60px;
}

.singleBox-pager .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 991px) {
  .singleBox-pager .flex {
    padding-bottom: 4em;
  }
}

.singleBox-pager .flex .item {
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 992px) {
  .singleBox-pager .flex .item:nth-child(1) {
    width: 25%;
    justify-content: flex-start;
  }
  .singleBox-pager .flex .item:nth-child(3) {
    width: 25%;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 991px) {
  .singleBox-pager .flex .item:nth-child(2) {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.singleBox-pager .flex .item a {
  font-size: 1.8rem;
}

@media screen and (min-width: 992px) {
  .singleBox-pager .flex .item a:hover span {
    text-decoration: underline;
  }
}

@media screen and (max-width: 991px) {
  .singleBox-pager .flex .item a {
    font-size: 1.6rem;
  }
}

.singleBox-pager .flex .item a.prevlink {
  position: relative;
  padding-left: 30px;
}

.singleBox-pager .flex .item a.prevlink::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-top: 1px solid #15ae67;
  border-right: 1px solid #15ae67;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.singleBox-pager .flex .item a.nextlink {
  position: relative;
  padding-right: 30px;
}

.singleBox-pager .flex .item a.nextlink::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-top: 1px solid #15ae67;
  border-right: 1px solid #15ae67;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.singleBox-pager .flex .item a.listlink {
  position: relative;
}

.singleBox-pager .flex .item a.listlink > div {
  padding-left: 30px;
  position: relative;
}

.singleBox-pager .flex .item a.listlink > div::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 9px;
  margin: auto;
  width: 2px;
  height: 20px;
  background: #fff;
}

.singleBox-pager .flex .item a.listlink > div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 2px;
  background: #fff;
}

.singleBox-pager .flex .item a.listlink::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background: #15ae67;
}

.newsArchive .inner {
  max-width: 1200px;
}

.newsArchive-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.newsArchive-list .newsArchive-item {
  background: #fbfceb;
  padding: 20px;
}

@media screen and (min-width: 992px) {
  .newsArchive-list .newsArchive-item {
    width: 49%;
  }
  .newsArchive-list .newsArchive-item:nth-child(n + 3) {
    margin-top: 4%;
  }
}

@media screen and (max-width: 991px) {
  .newsArchive-list .newsArchive-item {
    width: 100%;
    padding: 30px 30px;
  }
  .newsArchive-list .newsArchive-item:not(:last-child) {
    margin-bottom: 20px;
  }
}

.newsArchive-list .newsArchive-item .flex {
  display: grid;
}

@media screen and (min-width: 992px) {
  .newsArchive-list .newsArchive-item .flex {
    grid-template-columns: 200px 1fr;
    gap: 20px;
    place-items: top left;
  }
}

@media screen and (max-width: 991px) {
  .newsArchive-list .newsArchive-item .flex {
    gap: 20px;
  }
}

.newsArchive-list .newsArchive-item .flex .item {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .newsArchive-list .newsArchive-item .flex .item:nth-child(1) {
    padding-top: 60px;
  }
}

.newsArchive-list .newsArchive-item .flex .image {
  width: 200px;
  height: 200px;
  display: block;
}

@media screen and (max-width: 991px) {
  .newsArchive-list .newsArchive-item .flex .image {
    margin: auto;
  }
}

.newsArchive-list .newsArchive-item .flex .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.newsArchive-item {
  position: relative;
}

.newsArchive-item .date {
  display: flex;
  justify-content: flex-start;
}

.newsArchive-item .date > div {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 5px 15px 7px;
  line-height: 1;
}

.newsArchive-item .date > div > span {
  font-size: 1.2rem;
}

.newsArchive-item .date > div > b {
  font-size: 2.1rem;
  padding-left: 8px;
}

.newsArchive-item dl {
  padding-top: 25px;
}

@media screen and (max-width: 991px) {
  .newsArchive-item dl {
    padding-top: 15px;
  }
}

.newsArchive-item dl dt {
  font-size: 2rem;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #a7a8a9;
  position: relative;
  line-height: 1.5;
  padding-left: 23px;
}

.newsArchive-item dl dt::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  margin: auto;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #73cea4;
}

.newsArchive-item dl dt::after {
  content: "";
  position: absolute;
  top: -50px;
  right: 0;
  margin: auto;
  background: url(../img/img-common/icon_blank.svg) left center no-repeat;
  background-size: contain;
  width: 23px;
  height: 23px;
}

.newsArchive-item dl dd {
  font-size: 1.4rem;
  line-height: 1.6;
}

.newsArchive .pager-info {
  text-align: center;
  margin: 80px 0 15px;
}

@media screen and (max-width: 991px) {
  .newsArchive .pager-info {
    margin: 40px 0 10px;
  }
}

.newsArchive .pager {
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .newsArchive .pager {
    padding-bottom: 15px;
  }
}

.newsArchive .pager .nav-links {
  display: flex;
  justify-content: center;
}

.newsArchive .pager .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin: 0;
  font-weight: 500;
  font-size: 1.6rem;
}

.newsArchive .pager .page-numbers + .page-numbers {
  margin-left: 15px;
}

@media screen and (max-width: 991px) {
  .newsArchive .pager .page-numbers + .page-numbers {
    margin-left: 10px;
  }
}

.newsArchive .pager .page-numbers:not(.dots) {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #444647;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .newsArchive .pager .page-numbers:not(.dots) {
    width: 35px;
    height: 35px;
  }
}

.newsArchive .pager a.page-numbers:not(.dots):hover {
  background: #444647;
  color: #fff;
}

.newsArchive .pager .page-numbers.current {
  background: #444647;
  color: #fff;
}

.newsArchive .pager .page-numbers.dots {
  transform: none;
}

.newsArchive .pager .next {
  margin-left: 0;
  position: relative;
}

.newsArchive .pager .next::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -5px;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (min-width: 992px) {
  .newsArchive .pager .next:hover::before {
    border-color: #fff;
  }
}

.newsArchive .pager .prev {
  position: relative;
}

.newsArchive .pager .prev::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -5px;
  left: 0;
  width: 10px;
  height: 10px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

@media screen and (min-width: 992px) {
  .newsArchive .pager .prev:hover::before {
    border-color: #fff;
  }
}

.newsArchive .pager .nav-next-text,
.newsArchive .pager .nav-prev-text {
  width: auto;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: underline;
}

.newsArchive .pager .nav-next-text:hover,
.newsArchive .pager .nav-prev-text:hover {
  text-decoration: none;
}

.newsArchive .pager .nav-next-text {
  padding-left: 10px;
}

.newsArchive .pager .nav-prev-text {
  padding-right: 10px;
}

.aboutInfo {
  margin-top: 90px;
}

@media screen and (max-width: 991px) {
  .aboutInfo {
    margin-top: 65px;
  }
}

.aboutInfo-tbl dl {
  max-width: 760px;
  margin: auto;
  display: grid;
}

@media screen and (min-width: 992px) {
  .aboutInfo-tbl dl {
    grid-template-columns: 150px 1fr;
    gap: 5px;
    place-items: start left;
  }
}

@media screen and (max-width: 991px) {
  .aboutInfo-tbl dl {
    gap: 0;
    place-items: start left;
  }
}

@media screen and (min-width: 992px) {
  .aboutInfo-tbl dl:nth-child(odd) dt,
  .aboutInfo-tbl dl:nth-child(odd) dd {
    background: #ebf5ef;
  }
}

.aboutInfo-tbl dl dt {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 5px 10px;
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .aboutInfo-tbl dl dt {
    background: #ebf5ef;
    display: table;
    width: auto;
  }
}

.aboutInfo-tbl dl dd {
  font-size: 1.8rem;
  width: 100%;
  height: 100%;
  padding: 5px 10px 5px 30px;
}

@media screen and (min-width: 992px) {
  .aboutInfo-tbl dl dd {
    background: #fff;
  }
}

@media screen and (max-width: 991px) {
  .aboutInfo-tbl dl dd {
    padding: 8px 10px 0;
  }
}

.aboutInfo-tbl dl dd ul li a {
  margin-left: 5px;
}

.aboutInfo-tbl dl dd ul li + li {
  margin-top: 5px;
}

.aboutInfo-tbl dl + dl {
  margin-top: 8px;
}

@media screen and (max-width: 991px) {
  .aboutInfo-tbl dl + dl {
    margin-top: 20px;
  }
}

.aboutMember {
  padding: 70px 0 100px;
  position: relative;
  background-color: #fbfceb;
  margin-top: 90px;
}

@media screen and (min-width: 992px) {
  .aboutMember {
    background-image: url(../img/img-about/bg_about02.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media screen and (max-width: 991px) {
  .aboutMember {
    margin-top: 65px;
    padding: 50px 0 50px;
  }
}

.aboutMember .inner {
  max-width: 1180px;
}

@media screen and (max-width: 991px) {
  .aboutMember .inner {
    padding: 0;
  }
}

.aboutMember .flex {
  display: grid;
}

@media screen and (min-width: 992px) {
  .aboutMember .flex {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media screen and (max-width: 991px) {
  .aboutMember .flex {
    gap: 25px;
  }
}

.aboutMember .flex .item {
  background: #fff;
  border-radius: 50px;
  position: relative;
  padding: 35px 35px 50px;
  overflow: hidden;
}

.aboutMember .flex .item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #15af67 transparent transparent;
  border-width: 0px 60px 60px 0px;
}

.aboutMember .flex .item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #d0b333;
  border-width: 60px 0px 0px 60px;
}

.aboutMember .flex .item .image {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.aboutMember .flex .item .image img {
  max-width: 200px;
  display: block;
}

@media screen and (max-width: 991px) {
  .aboutMember .flex .item .image img {
    max-width: 140px;
  }
}

.aboutMember .flex .item dl dt {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.6;
  margin-bottom: 15px;
}

.aboutMember .flex .item dl dt .t1 {
  font-size: 2.1rem;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .aboutMember .flex .item dl dt .t1 {
    font-size: 2rem;
  }
}

.aboutMember .flex .item dl dt .t2 {
  font-size: 1.6rem;
  font-weight: 500;
}

.aboutMember .flex .item dl dd p {
  font-size: 1.6rem;
  line-height: 1.8;
}

.aboutHistory {
  margin-top: 0;
  padding: 70px 0 100px;
}

@media screen and (max-width: 991px) {
  .aboutHistory {
    padding: 50px 0;
  }
}

.aboutHistory .ttl-bg {
  margin-bottom: 40px;
}

.aboutHistory-item + .aboutHistory-item {
  margin-top: 65px;
}

@media screen and (max-width: 991px) {
  .aboutHistory-item + .aboutHistory-item {
    margin-top: 60px;
  }
}

.aboutHistory-list dl {
  display: grid;
}

@media screen and (min-width: 992px) {
  .aboutHistory-list dl {
    grid-template-columns: 110px 1fr;
    gap: 30px;
  }
}

@media screen and (max-width: 991px) {
  .aboutHistory-list dl {
    gap: 0;
  }
}

.aboutHistory-list dl + dl {
  margin-top: 8px;
}

@media screen and (max-width: 991px) {
  .aboutHistory-list dl + dl {
    margin-top: 20px;
  }
}

.aboutHistory-list dl dt {
  font-size: 1.8rem;
  color: #15ae67;
  font-weight: 500;
  display: flex;
  align-items: center;
  position: relative;
}

.aboutHistory-list dl dt .icon {
  font-size: 1.2rem;
  background: #ccc;
  border-radius: 50px;
  height: 22px;
  padding-bottom: 0.1em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  color: #444647;
}

@media screen and (min-width: 992px) {
  .aboutHistory-list dl dt .icon {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -80px;
  }
}

@media screen and (max-width: 991px) {
  .aboutHistory-list dl dt .icon {
    margin-left: 15px;
  }
}

.aboutHistory-list dl dt .icon > span {
  letter-spacing: 0.5em;
  margin-right: -0.5em;
}

.aboutHistory-list dl dt .icon.--magazine {
  background: #8cd7b5;
}

.aboutHistory-list dl dt .icon.--newspaper {
  background: #98d3ff;
}

.aboutHistory-list dl dt .icon.--tv {
  background: #fbc685;
}

.aboutHistory-list dl dd {
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .aboutHistory-list dl dd {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 992px) {
  .aboutHistory-list.--icon dl dd {
    padding-left: 60px;
  }
}

.aboutPhilosophy {
  margin-top: 0;
}

.aboutPhilosophy-bg {
  padding: 90px 0 110px;
  position: relative;
  background-color: #fbfceb;
}

@media screen and (min-width: 992px) {
  .aboutPhilosophy-bg {
    background-image: url(../img/img-about/bg_about03.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

@media screen and (max-width: 991px) {
  .aboutPhilosophy-bg {
    padding: 35px 0 60px;
  }
}

.aboutPhilosophy-lead p {
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}

@media screen and (max-width: 991px) {
  .aboutPhilosophy-lead p {
    font-size: 2.1rem;
  }
}

.aboutPhilosophy-lead p + p {
  margin-top: 30px;
}

.aboutPhilosophy .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 80px auto 0;
}

@media screen and (max-width: 991px) {
  .aboutPhilosophy .flex {
    margin-top: 50px;
  }
}

.aboutPhilosophy .flex .item dl dt {
  font-size: 2.4rem;
  font-weight: 500;
  color: #235a3a;
  text-align: center;
  border-bottom: 2px solid #235a3a;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.aboutPhilosophy .flex .item dl dd p {
  font-size: 1.8rem;
}

@media screen and (min-width: 992px) {
  .aboutPhilosophy .flex .item {
    width: 45%;
  }
}

@media screen and (max-width: 991px) {
  .aboutPhilosophy .flex .item {
    width: 100%;
  }
  .aboutPhilosophy .flex .item:not(:last-child) {
    margin-bottom: 50px;
  }
}

.aboutPhilosophy-link {
  margin-top: 50px;
}

.aboutPhilosophy-link > div {
  position: relative;
  padding-left: 20px;
  font-size: 1.8rem;
}

.aboutPhilosophy-link > div::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid #444647;
  border-right: 1px solid #444647;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*------------------------------------
採用情報 
------------------------------------*/
.recruitLead-image {
  position: relative;
}

@media screen and (max-width: 991px) {
  .recruitLead-image {
    height: auto;
  }
}

.recruitLead-image img.img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruitLead-image img.txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 991px) {
  .recruitLead-image img.txt {
    width: 60%;
  }
}

.recruitLead-bg {
  padding: 70px 0 100px;
  position: relative;
  background: url(../img/img-recruit/bg_recruit01.png) center center no-repeat;
  background-size: cover;
}

@media screen and (max-width: 991px) {
  .recruitLead-bg {
    background: none;
    padding: 40px 0 50px;
  }
}

.recruitLead-txt dl dt {
  font-size: 4.2rem;
  font-weight: 500;
  margin-bottom: 35px;
}

@media screen and (max-width: 991px) {
  .recruitLead-txt dl dt {
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 25px;
  }
}

.recruitLead-txt p {
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .recruitLead-txt p {
    font-size: 1.8rem;
  }
}

.recruitLead-txt p + p {
  margin-top: 35px;
}

@media screen and (max-width: 991px) {
  .recruitLead-txt p + p {
    margin-top: 20px;
  }
}

.recruitLead-application {
  margin-top: 140px;
}

@media screen and (max-width: 991px) {
  .recruitLead-application {
    margin-top: 50px;
  }
}

.recruitLead-application h2 {
  font-size: 4.1rem;
  font-weight: 600;
  position: relative;
  padding-left: 50px;
  color: #235a3a;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .recruitLead-application h2 {
    font-size: 2.4rem;
    padding-left: 35px;
    display: table;
    margin: auto;
    padding-right: 35px;
  }
}

.recruitLead-application h2::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #7db236;
}

@media screen and (max-width: 991px) {
  .recruitLead-application h2::before {
    width: 18px;
    height: 18px;
  }
}

.recruitLead-application h2 + p {
  margin-top: 35px;
  font-size: 2.3rem;
  line-height: 1.6;
}

@media screen and (max-width: 991px) {
  .recruitLead-application h2 + p {
    margin-top: 25px;
  }
}

.recruitLead-application .flex {
  margin-top: 55px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (min-width: 992px) {
  .recruitLead-application .flex {
    position: relative;
  }
  .recruitLead-application .flex .item {
    width: 32%;
  }
  .recruitLead-application .flex .item:nth-child(n + 4) {
    margin-top: 26px;
  }
  .recruitLead-application .flex::after {
    content: "";
    display: block;
    width: 32%;
    height: 0;
  }
}

@media screen and (max-width: 991px) {
  .recruitLead-application .flex {
    margin-top: 35px;
  }
  .recruitLead-application .flex .item {
    width: 100%;
  }
  .recruitLead-application .flex .item:not(:last-child) {
    margin-bottom: 25px;
  }
}

.recruitLead-application .flex .item {
  background: #fbfceb;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 25px;
}

@media screen and (max-width: 991px) {
  .recruitLead-application .flex .item {
    min-height: 350px;
  }
}

.recruitLead-application .flex .item dl {
  padding-bottom: 35px;
}

@media screen and (max-width: 991px) {
  .recruitLead-application .flex .item dl {
    padding-bottom: 30px;
  }
}

.recruitLead-application .flex .item dl dt {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  background: #ccc;
  color: #fff;
  padding: 20px;
}

@media screen and (max-width: 991px) {
  .recruitLead-application .flex .item dl dt {
    font-size: 2rem;
  }
}

.recruitLead-application .flex .item dl dd {
  padding: 30px 20px 0;
}

.recruitLead-application .flex .item dl dd p {
  line-height: 1.8;
}

@media screen and (max-width: 991px) {
  .recruitLead-application .flex .item dl dd p {
    font-size: 1.6rem;
  }
}

.recruitLead-application .flex .item.--carrier dl dt {
  background: #235a3a;
}

.recruitLead-application .flex .item.--part dl dt {
  background: #f69f3b;
}

.recruitLead-application .flex .item.--trainee dl dt {
  background: #4ba1e6;
}

.recruitLead-application .flex .item.--new_graduate dl dt {
  background: #8cc63f;
}

.recruitLead-application .jobbtn {
  display: flex;
  justify-content: center;
  margin-top: auto;
}

.recruitLead-application .jobbtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  margin: auto;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 700;
  border: 1px solid #235a3a;
  color: #235a3a;
  background: #fff;
  padding: 0 30px;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

.recruitLead-application .jobbtn a > span {
  position: relative;
  padding-right: 20px;
}

.recruitLead-application .jobbtn a > span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-top: 1px solid #235a3a;
  border-right: 1px solid #235a3a;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 991px) {
  .recruitLead-application .jobbtn a {
    font-size: 1.8rem;
    height: 45px;
  }
}

@media screen and (min-width: 992px) {
  .recruitLead-application .jobbtn a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .recruitLead-application .jobbtn a > span::after {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .recruitLead-application .jobbtn a:hover {
    color: #fff !important;
    background: #235a3a;
  }
  .recruitLead-application .jobbtn a:hover > span::after {
    border-color: #fff !important;
  }
}

.recruitApplication {
  padding-top: 75px;
}

@media screen and (max-width: 991px) {
  .recruitApplication {
    padding-top: 45px;
  }
}

.recruitApplication .inner {
  max-width: 1200px;
}

.recruitApplication-image {
  height: 450px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .recruitApplication-image {
    height: auto;
  }
}

.recruitApplication-image img.img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruitApplication-image img.txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 991px) {
  .recruitApplication-image img.txt {
    display: none;
  }
}

.recruitApplication-txt {
  background: #d5f0ef;
  padding: 65px 0 100px;
}

@media screen and (max-width: 991px) {
  .recruitApplication-txt {
    padding: 25px 0 50px;
  }
}

.recruitApplication-txt .txt {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}

.recruitApplication-txt .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (min-width: 992px) {
  .recruitApplication-txt .flex {
    position: relative;
  }
  .recruitApplication-txt .flex .item {
    width: 32%;
  }
  .recruitApplication-txt .flex::after {
    content: "";
    display: block;
    width: 32%;
    height: 0;
  }
}

@media screen and (max-width: 991px) {
  .recruitApplication-txt .flex .item {
    width: 100%;
  }
  .recruitApplication-txt .flex .item:not(:last-child) {
    margin-bottom: 25px;
  }
}

.recruitApplication-txt .flex .item {
  background: #fff;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  position: relative;
}

@media screen and (max-width: 991px) {
  .recruitApplication-txt .flex .item {
    min-height: 350px;
  }
}

.recruitApplication-txt .flex .item::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #00bfb2 transparent;
  border-width: 0px 0px 35px 35px;
}

@media screen and (max-width: 991px) {
  .recruitApplication-txt .flex .item::after {
    border-width: 0px 0px 30px 30px;
  }
}

.recruitApplication-txt .flex .item dl {
  padding-bottom: 70px;
}

@media screen and (max-width: 991px) {
  .recruitApplication-txt .flex .item dl {
    padding-bottom: 60px;
  }
}

.recruitApplication-txt .flex .item dl dt {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
  .recruitApplication-txt .flex .item dl dt {
    font-size: 2rem;
  }
}

.recruitApplication-txt .flex .item.--carrier::after {
  border-color: transparent transparent #d62300 transparent;
}

.recruitApplication-txt .flex .item.--carrier .recruitApplication-btn a {
  border-color: #d62300;
  color: #d62300;
}

.recruitApplication-txt .flex .item.--carrier .recruitApplication-btn a > span::after {
  border-color: #d62300;
}

@media screen and (min-width: 992px) {
  .recruitApplication-txt .flex .item.--carrier .recruitApplication-btn a:hover {
    background: #d62300;
  }
}

.recruitApplication-txt .flex .item.--part::after {
  border-color: transparent transparent #3d7fff transparent;
}

.recruitApplication-txt .flex .item.--part .recruitApplication-btn a {
  border-color: #3d7fff;
  color: #3d7fff;
}

.recruitApplication-txt .flex .item.--part .recruitApplication-btn a > span::after {
  border-color: #3d7fff;
}

@media screen and (min-width: 992px) {
  .recruitApplication-txt .flex .item.--part .recruitApplication-btn a:hover {
    background: #3d7fff;
  }
}

.recruitApplication-txt .flex .item.--new_graduate::after {
  border-color: transparent transparent #44bd25 transparent;
}

.recruitApplication-txt .flex .item.--new_graduate .recruitApplication-btn a {
  border-color: #44bd25;
  color: #44bd25;
}

.recruitApplication-txt .flex .item.--new_graduate .recruitApplication-btn a > span::after {
  border-color: #44bd25;
}

@media screen and (min-width: 992px) {
  .recruitApplication-txt .flex .item.--new_graduate .recruitApplication-btn a:hover {
    background: #44bd25;
  }
}

@media screen and (max-width: 991px) {
  .recruitApplication-txt p {
    font-size: 1.4rem;
  }
}

.recruitApplication-btn {
  display: flex;
  justify-content: center;
  margin-top: auto;
}

.recruitApplication-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  margin: auto;
  font-size: 1.7rem;
  line-height: 1.4;
  font-weight: 700;
  border: 1px solid #000;
  background: #fff;
  padding: 0 30px;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

.recruitApplication-btn a > span {
  position: relative;
  padding-right: 20px;
}

.recruitApplication-btn a > span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-top: 1px solid #e72e35;
  border-right: 1px solid #e72e35;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 991px) {
  .recruitApplication-btn a {
    font-size: 1.5rem;
    height: 45px;
  }
}

@media screen and (min-width: 992px) {
  .recruitApplication-btn a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .recruitApplication-btn a > span::after {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .recruitApplication-btn a:hover {
    color: #fff !important;
  }
  .recruitApplication-btn a:hover > span::after {
    border-color: #fff !important;
  }
}

.recruitCredo {
  padding: 0 0 0;
}

@media screen and (max-width: 991px) {
  .recruitCredo {
    padding: 0 0 0;
  }
}

.recruitCredo-ttl {
  position: relative;
  background: url(../img/img-recruit/bg_recruit02.png) center center no-repeat;
  background-size: cover;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 54px;
}

@media screen and (max-width: 991px) {
  .recruitCredo-ttl {
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 991px) {
  .recruitCredo-ttl img {
    max-width: 220px;
  }
}

.recruitCredo-ttl h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recruitCredo-ttl h2 > div {
  font-size: 2.4rem;
  padding-top: 25px;
  line-height: 1;
}

@media screen and (max-width: 991px) {
  .recruitCredo-items {
    padding-top: 0;
  }
}

.recruitCredo-items.--btn {
  padding-bottom: 0;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  justify-content: center;
}

.recruitCredo-items.--btn .item {
  min-height: 320px !important;
  width: 492px;
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 320px !important;
  width: 492px;
  border-radius: 20px;
  padding-top: 35px;
}

@media screen and (max-width: 991px) {
  .recruitCredo-items.--btn .item {
    min-height: 250px !important;
  }
}

.recruitCredo-items.--btn .read_credo {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .recruitCredo-items.--btn .read_credo {
    bottom: 15px;
  }
}

.recruitCredo-items.--btn .read_credo > span {
  color: #444647;
  position: relative;
  padding-right: 20px;
  font-size: 2.2rem;
  margin-right: -20px;
}

@media screen and (max-width: 991px) {
  .recruitCredo-items.--btn .read_credo > span {
    font-size: 1.8rem;
  }
}

.recruitCredo-items.--btn .read_credo > span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 1px solid #444647;
  border-right: 1px solid #444647;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.recruitCredo-items .item {
  background: #fff;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
}

.recruitCredo-items .item + .item {
  padding-top: 90px;
  width: calc(100% - 80px);
  margin: auto;
}

@media screen and (max-width: 991px) {
  .recruitCredo-items .item + .item {
    padding-top: 30px;
    width: calc(100% - 20px);
  }
}

.recruitCredo-items .item:last-child {
  padding-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .recruitCredo-items .item:last-child {
    padding-bottom: 30px;
  }
}

.recruitCredo-items .item.--mv {
  background: #15ae67;
  min-height: 380px;
}

@media screen and (max-width: 991px) {
  .recruitCredo-items .item.--mv {
    min-height: 200px;
  }
}

.recruitCredo-items .item.--mv .logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.recruitCredo-items .item.--mv .logos img {
  width: 155px;
}

@media screen and (max-width: 991px) {
  .recruitCredo-items .item.--mv .logos img {
    width: 125px;
  }
}

.recruitCredo-items .item .txtbox {
  max-width: 600px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .recruitCredo-items .item .txtbox {
    padding: 0 25px;
  }
}

.recruitCredo-items .item .txtbox .no {
  line-height: 1;
  text-align: center;
  color: #15ae67;
  margin-bottom: 20px;
  font-size: 6.4rem;
}

@media screen and (max-width: 991px) {
  .recruitCredo-items .item .txtbox .no {
    font-size: 3.4rem;
    margin-bottom: 10px;
  }
}

.recruitCredo-items .item .txtbox .txt + .txt {
  padding-top: 60px;
}

@media screen and (max-width: 991px) {
  .recruitCredo-items .item .txtbox .txt + .txt {
    padding-top: 30px;
  }
}

.recruitCredo-items .item .txtbox .txt p {
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .recruitCredo-items .item .txtbox .txt p {
    font-size: 1.5rem;
  }
}

.recruitCredo-items .item .txtbox .logos {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

@media screen and (max-width: 991px) {
  .recruitCredo-items .item .txtbox .logos {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }
}

.recruitCredo-items .item .txtbox .logos img:nth-child(1) {
  width: 132px;
}

@media screen and (max-width: 991px) {
  .recruitCredo-items .item .txtbox .logos img:nth-child(1) {
    width: 101px;
  }
}

.recruitCredo-items .item .txtbox .logos img:nth-child(2) {
  width: 136px;
  margin-left: 50px;
}

@media screen and (max-width: 991px) {
  .recruitCredo-items .item .txtbox .logos img:nth-child(2) {
    margin: 25px 0 0 0;
    width: 105px;
  }
}

.modal .recruitCredo-items {
  max-width: 860px;
  margin: auto;
  background: #15ae67;
  padding-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .modal .recruitCredo-items {
    padding-bottom: 10px;
  }
}

.recruitPre .inner {
  max-width: 1100px;
}

.recruitPre .txt p {
  font-size: 1.8rem;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 991px) {
  .recruitPre .txt p {
    font-size: 1.6rem;
  }
}

.recruitPre .txt p + p {
  margin-top: 30px;
}

@media screen and (max-width: 991px) {
  .recruitPre .txt p + p {
    margin-top: 25px;
  }
}

.recruitPre .list-dot li {
  font-size: 1.8rem;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 991px) {
  .recruitPre .list-dot li {
    font-size: 1.6rem;
  }
}

.recruitPre .list-dot li + li {
  margin-top: 5px;
}

.recruitPre-lead {
  position: relative;
  z-index: 2;
  margin-top: -150px;
  padding-bottom: 80px;
}

@media screen and (max-width: 991px) {
  .recruitPre-lead {
    margin-top: -50px;
  }
}

.recruitPre-lead .wbox {
  padding: 30px 40px;
  border: 1px solid #d62300;
  background: #fff;
  position: relative;
}

@media screen and (max-width: 991px) {
  .recruitPre-lead .wbox {
    padding: 25px 20px;
  }
}

.recruitPre-lead .wbox::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #d62300 transparent;
  border-width: 0px 0px 35px 35px;
}

@media screen and (max-width: 991px) {
  .recruitPre-lead .wbox::after {
    border-width: 0px 0px 30px 30px;
  }
}

.recruitPre-lead .wbox .t1 {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (max-width: 991px) {
  .recruitPre-lead .wbox .t1 {
    font-size: 2.8rem;
  }
}

.recruitPre-lead .wbox .t2 {
  margin-top: 15px;
}

.recruitPre-lead .wbox .t2 p {
  font-size: 2.4rem;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .recruitPre-lead .wbox .t2 p {
    font-size: 1.8rem;
  }
}

.recruitPre-lead .txt {
  padding-top: 40px;
}

.recruitPre-item h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: rgba(212, 38, 22, 0.6);
  margin-bottom: 30px;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .recruitPre-item h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}

.recruitPre-item h2 > .kako {
  margin-left: -0.3em;
  display: block;
}

@media screen and (max-width: 991px) {
  .recruitPre-item h2 > .kako {
    margin-left: 0;
    text-align: center;
  }
}

.recruitPre-item h2 + .recruitPre-list {
  padding-top: 0;
}

.recruitPre-item + .recruitPre-item {
  margin-top: 95px;
}

@media screen and (max-width: 991px) {
  .recruitPre-item + .recruitPre-item {
    margin-top: 70px;
  }
}

.recruitPre-item > .flex {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 992px) {
  .recruitPre-item > .flex .txtbox {
    width: 600px;
    padding-top: 35px;
  }
  .recruitPre-item > .flex .image {
    position: absolute;
    width: 50vw;
    left: calc(50% + 250px);
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 400px;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    overflow: hidden;
  }
  .recruitPre-item > .flex .image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .recruitPre-item > .flex.--reverse .image {
    right: calc(50% + 250px);
    left: inherit;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .recruitPre-item > .flex.--reverse .txtbox {
    margin: 0 0 0 auto;
  }
}

@media screen and (max-width: 991px) {
  .recruitPre-item > .flex {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 50px;
  }
  .recruitPre-item > .flex .image {
    margin-bottom: 20px;
  }
}

.recruitPre-list {
  padding: 30px 0 40px;
}

@media screen and (max-width: 991px) {
  .recruitPre-list {
    padding: 15px 0 20px;
  }
}

.recruitPre-list li {
  background: #e4ee79;
  display: table;
  padding: 5px 20px 5px 10px;
}

.recruitPre-list li > div {
  font-size: 2.1rem;
  position: relative;
  font-weight: 500;
  padding-left: 1.2em;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .recruitPre-list li > div {
    font-size: 1.6rem;
  }
}

.recruitPre-list li > div::before {
  content: "・";
  position: absolute;
  display: block;
  left: 0;
  font-size: inherit;
}

.recruitPre-list li + li {
  margin-top: 10px;
}

.recruitPre-dl {
  padding: 10px 0 0;
}

.recruitPre-dl dl + dl {
  margin-top: 30px;
}

.recruitPre-dl dl:nth-child(1) dt::before {
  content: "01.";
}

.recruitPre-dl dl:nth-child(2) dt::before {
  content: "02.";
}

.recruitPre-dl dl:nth-child(3) dt::before {
  content: "03.";
}

.recruitPre-dl dl:nth-child(4) dt::before {
  content: "04.";
}

.recruitPre-dl dt {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 5px;
  line-height: 1.5;
  position: relative;
  padding-left: 2em;
}

@media screen and (max-width: 991px) {
  .recruitPre-dl dt {
    font-size: 2.1rem;
  }
}

.recruitPre-dl dt::before {
  position: absolute;
  display: block;
  left: 0;
  font-size: inherit;
  font-weight: 700;
}

.recruitPre-require.--bd {
  margin-top: 50px;
  padding: 45px 0;
  border-top: 1px solid #929b8c;
  border-bottom: 1px solid #929b8c;
}

@media screen and (max-width: 991px) {
  .recruitPre-require.--bd {
    padding: 25px 0;
  }
}

.recruitPre-require + .txt {
  margin-top: 35px;
}

.recruitPre-require dl dt {
  font-size: 1.8rem;
  display: table;
  background: #000;
  color: #fff;
  line-height: 1;
  padding: 8px 25px;
  margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .recruitPre-require dl dt {
    margin: 0 auto 20px;
    font-size: 1.6rem;
  }
}

.recruitPre-require ul li {
  display: flex;
}

.recruitPre-require ul li + li {
  margin-top: 5px;
}

.recruitPre-require ul li b {
  width: 7em;
  background: #eceeb2;
  padding: 5px 10px;
  line-height: 1.5;
}

.recruitPre-require ul li span {
  padding: 5px 10px;
  width: calc(100% - 7em);
  line-height: 1.5;
}

.recruitPre-btn {
  margin-top: 80px;
  padding-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .recruitPre-btn {
    margin-top: 40px;
    margin-bottom: 0;
  }
}

.recruitPre-btn a {
  display: flex;
  justify-content: center;
  background: #d42614;
  height: 60px;
  align-items: center;
}

.recruitPre-btn a > span {
  color: #fff;
  position: relative;
  padding-right: 15px;
  font-size: 1.8rem;
  font-weight: 700;
}

.recruitPre-btn a > span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.recruitPre-icons {
  margin-top: 35px;
}

.recruitPre-icons > .flex {
  display: grid;
}

@media screen and (min-width: 992px) {
  .recruitPre-icons > .flex {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    place-content: center;
  }
}

@media screen and (max-width: 991px) {
  .recruitPre-icons > .flex {
    gap: 15px;
    width: 90%;
    margin: auto;
  }
}

.recruitPre-icons > .flex .item {
  background: #f9fbdf;
  padding: 20px 20px 30px;
}

@media screen and (max-width: 991px) {
  .recruitPre-icons > .flex .item {
    padding: 10px 10px 20px;
  }
}

.recruitPre-icons > .flex .item .icon {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .recruitPre-icons > .flex .item .icon img {
    width: 80%;
    max-width: 85px;
  }
}

.recruitPre-icons > .flex .item p {
  font-size: 1.7rem;
  line-height: 1.5;
  text-align: center;
  margin-top: 35px;
}

@media screen and (max-width: 991px) {
  .recruitPre-icons > .flex .item p {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 991px) {
  .recruitPre .bg01,
  .recruitPre .bg02 {
    margin-top: 70px;
  }
}

@media screen and (min-width: 992px) {
  .recruitPre.--career .bg01 {
    margin-top: 30px;
    position: relative;
    background: url(../img/img-career/bg_career01.png) center top no-repeat;
    background-size: 1380px auto;
  }
}

@media screen and (min-width: 992px) {
  .recruitPre.--career .bg02 {
    margin-top: 95px;
    position: relative;
    background: url(../img/img-career/bg_career02.png) center bottom no-repeat;
    background-size: 1380px auto;
  }
}

.recruitPre.--career h2 {
  color: #7db236;
}

.recruitPre.--career .recruitPre-require dl dt {
  color: #eceeb2;
}

.recruitPre.--career .recruitPre-dl dt::before {
  color: #7db236;
}

@media screen and (min-width: 992px) {
  .recruitPre.--trainee .bg01 {
    padding-top: 60px;
    position: relative;
    background: url(../img/img-trainee/bg_trainee01.png) center top no-repeat;
    background-size: 1387px auto;
  }
}

.recruitPre.--trainee h2 {
  color: #4ba1e6;
}

@media screen and (min-width: 992px) {
  .recruitPre.--part_time .bg01 {
    padding-top: 60px;
    position: relative;
    background: url(../img/img-part_time/bg_part_time01.png) center top no-repeat;
    background-size: 1441px auto;
  }
}

.recruitPre.--part_time h2 {
  color: #f7931e;
}

.modal {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  visibility: hidden;
  opacity: 0;
}

.modal_bg {
  background: rgba(51, 51, 51, 0.9);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal_inner {
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  border-radius: 10px;
  height: 100%;
  max-height: 80%;
}

.modal_main {
  height: 100%;
  max-height: 100%;
  overflow-y: scroll;
}

.modal_close {
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  right: 15px;
  top: -50px;
  z-index: 99999;
}

.modal_close > span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.modal_close > span::before,
.modal_close > span::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  width: 2px;
  height: 40px;
  background: #fff;
}

.modal_close > span::before {
  transform: rotate(-45deg);
}

.modal_close > span::after {
  transform: rotate(45deg);
}

.modal.is_open {
  opacity: 1;
  visibility: visible;
}

/*------------------------------------
個人情報保護方針について 
------------------------------------*/
.policyBlk {
  padding: 80px 0 150px;
}

@media screen and (max-width: 991px) {
  .policyBlk {
    padding: 10px 0 75px;
  }
}

.policyBlk .inner {
  max-width: 1020px;
}

@media screen and (max-width: 991px) {
  .policyBlk .inner {
    padding: 0;
  }
}

.policyBlk-item {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #b8b7b7;
}

@media screen and (max-width: 991px) {
  .policyBlk-item {
    padding-right: 6%;
    padding-left: 6%;
  }
}

.policyBlk-item dl dt {
  font-size: 2.1rem;
  margin-bottom: 25px;
}

.policyBlk-item dl dd p {
  color: #555957;
}

.policyBlk-item:not(:last-child) {
  margin-bottom: 40px;
}

.policyBlk .policyBlk-info {
  padding-top: 20px;
}

@media screen and (max-width: 991px) {
  .policyBlk .policyBlk-info {
    padding-right: 6%;
    padding-left: 6%;
    padding-top: 10px;
  }
}

.policyBlk .policyBlk-info .t1 {
  margin-bottom: 15px;
}

.policyBlk .policyBlk-info .t1 span {
  font-size: 1.8rem;
  display: block;
}

.policyBlk .policyBlk-info .t1 span:nth-child(2) {
  font-size: 2.1rem;
}

.policyBlk .policyBlk-info p {
  color: #555957;
  font-size: 1.8rem;
  line-height: 1.8;
}

/*------------------------------------
お問い合わせ
------------------------------------*/
.contactBlk .hisu {
  font-size: 1.3rem;
  font-weight: 500;
  padding: 0 7px;
  line-height: 1;
  background: #fff;
  color: #ff8b00 !important;
  border: 1px solid #ff8b00;
  margin-left: 15px;
  border-radius: 5px;
  line-height: 23px;
  height: 23px;
}

@media screen and (max-width: 991px) {
  .contactBlk .hisu {
    padding: 1px 7px;
    margin-left: 10px;
  }
}

.contactBlk .inner {
  max-width: 880px;
}

@media screen and (max-width: 991px) {
  .contactBlk .inner {
    padding: 0;
  }
}

.contactBlk-lead {
  margin-bottom: 70px;
}

@media screen and (max-width: 991px) {
  .contactBlk-lead {
    margin-bottom: 50px;
    padding: 0 5%;
  }
}

.contactBlk-lead p {
  font-size: 2rem;
  line-height: 1.7;
}

@media screen and (max-width: 991px) {
  .contactBlk-lead p {
    font-size: 1.8rem;
  }
}

.contactBlk-item + .contactBlk-item {
  margin-top: 65px;
}

.contactBlk-item h2 {
  font-size: 2.1rem;
  font-weight: 500;
  margin-bottom: 50px;
  border-bottom: 1px solid #555b60;
  padding-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .contactBlk-item h2 {
    text-align: center;
    margin-bottom: 30px;
  }
}

.contactBlk-item .formBox {
  width: 76%;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .contactBlk-item .formBox {
    width: 100%;
    padding: 0 5%;
  }
}

.contactBlk-item .formBox-item + .formBox-item {
  margin-top: 35px;
}

@media screen and (max-width: 991px) {
  .contactBlk-item .formBox-btn {
    padding-top: 15px;
  }
}

.contactBlk-item.--message .formBox {
  width: 100%;
}

.contactBlk-item.--message h2 {
  margin-bottom: 25px;
}

.formBox.hide {
  display: none;
}

.formBox-file {
  margin-top: 75px;
}

@media screen and (max-width: 991px) {
  .formBox-file {
    margin-top: 45px;
  }
}

@media screen and (max-width: 991px) {
  .formBox-file dl {
    padding: 0 5%;
  }
}

.formBox-file dl dt > div {
  font-size: 1.7rem;
  font-weight: 500;
  display: inline;
}

.formBox-file dl dd p {
  font-size: 1.4rem;
  padding: 5px 0 15px;
}

.formBox-file dl dd .formBox-add {
  margin-top: 0;
}

.formBox-item dt {
  margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .formBox-item dt {
    margin-bottom: 10px;
  }
}

.formBox-item dt > div {
  font-size: 1.7rem;
  font-weight: 500;
  display: inline;
}

.formBox-item dl + dl {
  margin-top: 40px;
}

@media screen and (max-width: 991px) {
  .formBox-item dl + dl {
    margin-top: 25px;
  }
}

.formBox-item.--privacy {
  padding-top: 15px !important;
  margin-bottom: 0 !important;
}

@media screen and (max-width: 991px) {
  .formBox-item.--privacy {
    padding-top: 5px !important;
  }
}

.formBox-item.--privacy dt > div {
  font-size: 1.4rem;
}

@media screen and (max-width: 991px) {
  .formBox-item.--privacy dt > div {
    font-size: 1.2rem;
  }
}

.formBox-item.--privacy dt > div > a {
  position: relative;
  display: inline;
  padding-bottom: 3px;
  background: linear-gradient(transparent calc(100% - 1px), #ff8b00 0%);
}

@media screen and (min-width: 992px) {
  .formBox-item.--privacy dt > div > a:hover {
    background: none;
  }
}

.formBox-item.--sex {
  display: flex;
  justify-content: center;
  max-width: 400px;
}

.formBox-item.--sex dt {
  padding-right: 45px;
}

@media screen and (max-width: 991px) {
  .formBox-item.--sex dt {
    padding-right: 40px;
  }
}

.formBox-item.--sex dd > label + label {
  margin-left: 25px;
}

@media screen and (max-width: 991px) {
  .formBox-item.--sex dd > label + label {
    margin-left: 20px;
  }
}

@media screen and (max-width: 991px) {
  .formBox-item.--sex dd .input_chk + span {
    font-size: 1.7rem;
  }
}

.formBox-caution {
  font-size: 1.4rem;
  margin-top: 40px;
}

.formBox-birth {
  display: grid;
}

@media screen and (min-width: 992px) {
  .formBox-birth {
    grid-template-columns: repeat(3, 160px);
    gap: 20px;
  }
}

@media screen and (max-width: 991px) {
  .formBox-birth {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.formBox-birth .item {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .formBox-birth .item:nth-child(1) {
    grid-column: 1 / 2;
  }
}

@media screen and (max-width: 991px) {
  .formBox-birth .item:nth-child(2), .formBox-birth .item:nth-child(3) {
    grid-row: 2 / 3;
  }
}

.formBox-birth .item .input_text,
.formBox-birth .item .select {
  width: calc(100% - 3em);
}

.formBox-birth .item > span {
  width: 3em;
  padding-left: 10px;
  font-size: 1.7rem;
  font-weight: 500;
}

.formBox-period {
  display: grid;
  margin-bottom: 20px;
}

@media screen and (min-width: 992px) {
  .formBox-period {
    grid-template-columns: auto auto;
    gap: 10px;
    place-items: center;
  }
}

@media screen and (max-width: 991px) {
  .formBox-period {
    row-gap: 20px;
  }
}

.formBox-period .item {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .formBox-period .item:nth-child(1) {
    width: calc(100% - 3em);
  }
}

.formBox-period .item > div {
  padding-right: 15px;
}

@media screen and (max-width: 991px) {
  .formBox-period .item > div {
    width: 3em;
    text-align: center;
  }
}

.formBox-period .item ul {
  display: flex;
  align-items: center;
}

.formBox-period .item ul li {
  display: flex;
  align-items: center;
}

.formBox-period .item ul li .input_text {
  width: calc(100% - 3em);
}

.formBox-period .item ul li > span {
  width: 3em;
  padding-left: 10px;
  font-size: 1.7rem;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .formBox-period .input_chk + span {
    font-size: 1.7rem;
  }
}

.formBox-privacy {
  padding: 20px 0 20px 20px;
}

@media screen and (max-width: 991px) {
  .formBox-privacy {
    padding: 10px 0;
  }
}

.formBox-privacy.--center {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .formBox-privacy.--center {
    justify-content: flex-start;
  }
  .formBox-privacy.--center .input_chk + div {
    font-size: 1.6rem;
  }
  .formBox-privacy.--center .hisu {
    margin-left: 0;
  }
}

.formBox-privacy.--center a {
  position: relative;
  display: inline;
  padding-bottom: 3px;
  background: linear-gradient(transparent calc(100% - 1px), #ff8b00 0%);
}

@media screen and (min-width: 992px) {
  .formBox-privacy.--center a:hover {
    background: none;
  }
}

.formBox-add {
  border: 1px dashed #555b60;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 60px;
}

@media screen and (max-width: 991px) {
  .formBox-add {
    width: 90%;
    margin: 35px auto 0;
  }
}

.formBox-add > span {
  position: relative;
  color: #2eaaff;
  padding-left: 25px;
  font-size: 1.7rem;
}

.formBox-add > span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6px;
  margin: auto;
  width: 2px;
  height: 14px;
  background: #2eaaff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.formBox-add > span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 14px;
  height: 2px;
  background: #2eaaff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.formBox-add + .formBox {
  margin-top: 50px;
}

@media screen and (max-width: 991px) {
  .formBox-add + .formBox {
    margin-top: 25px;
  }
}

.formBox-add-file {
  position: relative;
}

.formBox-add-file .input_file {
  display: none;
}

.formBox-add-file .custom-upload {
  border: 1px dashed #555b60;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.formBox-add-file .custom-upload > span {
  position: relative;
  color: #2eaaff;
  padding-left: 25px;
  font-size: 1.7rem;
}

.formBox-add-file .custom-upload > span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6px;
  margin: auto;
  width: 2px;
  height: 14px;
  background: #2eaaff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.formBox-add-file .custom-upload > span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 14px;
  height: 2px;
  background: #2eaaff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.formBox-add-file .file-preview {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.formBox-btn {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}

.formBox-btn button {
  height: 62px;
  display: flex;
  align-items: center;
  line-height: 1;
  justify-content: center;
  background: #15ae67;
  border: 1px solid #15ae67;
  color: #fff;
  border-radius: 50px;
  font-size: 2.1rem;
  padding: 15px 50px;
  margin: auto;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}

@media screen and (min-width: 992px) {
  .formBox-btn button {
    min-width: 320px;
  }
}

@media screen and (max-width: 991px) {
  .formBox-btn button {
    font-size: 1.8rem;
  }
}

.formBox.--border .formBox-item {
  padding: 0 10px 35px;
  border-bottom: 1px solid #d4d6d7;
  margin-bottom: 35px;
}

@media screen and (max-width: 991px) {
  .formBox.--border .formBox-item {
    padding: 0 5% 30px;
    margin-bottom: 30px;
  }
}

input,
textarea {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

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

textarea.input_text {
  height: 200px;
  max-width: 100%;
}

.input_text {
  width: 100%;
  max-width: 420px;
  padding: 10px 15px;
  height: 60px;
  background: #f5f5f5;
  border: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  border-radius: 10px;
  line-height: 1.5;
  font-size: 16px;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (min-width: 992px) {
  .input_text {
    font-size: 1.7rem;
    font-weight: 500;
  }
}

.input_text.--zip {
  max-width: 200px;
}

.input_text + .input_text {
  margin-top: 15px;
}

/* プレースフォルダ設定 */
::-webkit-input-placeholder {
  color: #9e9c8f;
}

:-ms-input-placeholder {
  color: #9e9c8f;
}

::placeholder {
  color: #9e9c8f;
}

@media screen and (max-width: 991px) {
  ::placeholder {
    font-size: 1.7rem;
    font-weight: 500;
  }
}

input:focus::placeholder,
textarea:focus::placeholder {
  color: transparent !important;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent !important;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: transparent !important;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: transparent !important;
}

.input_chk {
  position: absolute;
}

.input_chk + span,
.input_chk + div {
  margin: 0;
  border-radius: 4px;
  padding: 0 0 0 30px;
  display: inline-block;
  position: relative;
  font-weight: 500;
  font-size: 1.7rem;
}

@media screen and (max-width: 991px) {
  .input_chk + span,
  .input_chk + div {
    font-size: 1.7rem;
  }
}

.input_chk + span::before,
.input_chk + div::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background: #fff;
  border: 2px solid #4d4d4d;
}

.input_chk + span::after,
.input_chk + div::after {
  content: "";
  position: absolute;
  opacity: 0;
  width: 7px;
  height: 11px;
  top: 50%;
  margin-top: -2px;
  left: 6px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid #bf0005;
  border-bottom: 2px solid #bf0005;
}

.input_chk:checked + span::after,
.input_chk:checked + div::after {
  opacity: 1;
}

.select {
  position: relative;
  background: #f5f5f5;
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  height: 60px;
  text-align: center;
  border-radius: 10px;
}

.select::before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #333;
  pointer-events: none;
}

.select select {
  width: 100%;
  height: 100%;
  font-size: 1.7rem;
  font-weight: 500;
  cursor: pointer;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 8px 38px 8px 15px;
  color: #000;
}

@media screen and (max-width: 991px) {
  .select select {
    font-size: 16px;
  }
}

.select select option:first-child {
  color: #9e9e9f;
}

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