@charset "UTF-8";
/* ====================================
   concept Index
==================================== */
/*--------------------------------------------*/
/*-media-size---------------------------------*/
/*--------------------------------------------*/
/****************
* アイコン付与mixin
* $pcw = PC時のアイコン横幅
* $pch = PC時のアイコン高さ
* $spw = SP時のアイコン横幅
* $sph = SP時のアイコン高さ
* $default = 初期表示のアイコンパス
* $hover = ホバー時のアイコンパス
* $top = アイコンの位置
*****************/
/****************
* リンクボタン スタイル
HTML
<div class="btn__normal--green">
    <a href="">企業情報</a>
</div>

$pcmt = PC時のmargin-top(任意の数字を入れる)
$spmt = SP時のmargin-top(任意の数字を入れる)
*****************/
/****************
* もっと見るリンク スタイル
HTML
<div class="link__more--normal">
    <a href="">もっと見る</a>
</div>

$pos = リンクの水平方向の配置(初期：flex-start, 中央寄せ：center, 右寄せ：flex-end )
$pcmt = PC時のmargin-top(任意の数字を入れる)
$spmt = SP時のmargin-top(任意の数字を入れる)
*****************/
/* section
==================================== */
@media screen and (max-width: 767px) {
  .c-section {
    position: relative;
  }
}

.c-section:nth-child(n+2) {
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  .c-section:nth-child(n+2) {
    margin-top: 65px;
  }
}

.c-section_header {
  display: flex;
  align-items: center;
  max-width: 1400px;
  border-top: 1px solid #b9bcbc;
  padding-top: 50px;
  margin-left: 0;
  margin-right: 10.98097vw;
}

@media screen and (min-width: 2036px) {
  .c-section_header {
    margin-right: 223.57247px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
  .c-section_header {
    margin-right: 118.59444px;
  }
}

@media screen and (max-width: 767px) {
  .c-section_header {
    display: block;
    margin-right: 25px;
    padding-top: 28px;
  }
}

.c-section_title-wrap {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .c-section_title-wrap {
    width: auto;
  }
}

.c-section_title {
  font-family: "YakuHanJP", Yu Gothic, "游ゴシック体", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .c-section_title {
    font-size: 25px;
  }
}

.c-section_control-wrap:nth-child(n+2) {
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  .c-section_control-wrap:nth-child(n+2) {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .c-section_control-list {
    position: absolute;
    z-index: 3;
    top: 0;
    bottom: 0;
    left: -25px;
    right: 0;
    pointer-events: none;
  }
}

.c-section_control-list > ul {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .c-section_control-list > ul {
    justify-content: space-between;
    height: 100%;
  }
}

.c-section_control-list > ul > li:nth-child(n+2) {
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .c-section_control-list > ul > li:nth-child(n+2) {
    margin-left: 0;
  }
}

.c-section_control-prev > button,
.c-section_control-next > button {
  position: relative;
  border: 0;
  background-color: #161b1b;
  color: #ddd8d8;
  overflow: hidden;
  text-indent: 300%;
  white-space: nowrap;
  width: 48px;
  height: 48px;
  outline: none;
  transition: color .6s ease, background-color .6s ease, opacity .6s ease;
}

@media screen and (max-width: 767px) {
  .c-section_control-prev > button,
  .c-section_control-next > button {
    width: 40px;
    height: 40px;
    pointer-events: auto;
  }
}

.c-section_control-prev > button:focus-visible,
.c-section_control-next > button:focus-visible {
  outline: 2px dotted #222;
}

.c-section_control-prev > button::before,
.c-section_control-next > button::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 13px;
  height: 13px;
  margin: auto;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transition: border-color .6s ease;
}

@media screen and (max-width: 767px) {
  .c-section_control-prev > button::before,
  .c-section_control-next > button::before {
    width: 8px;
    height: 8px;
  }
}

@media screen and (min-width: 768px) {
  .c-section_control-prev > button:hover,
  .c-section_control-next > button:hover {
    background-color: #f1f2f3;
    color: #161b1b;
    transition-duration: .15s, .15s;
  }
  .c-section_control-prev > button:hover::before,
  .c-section_control-next > button:hover::before {
    border-color: #161b1b;
    transition-duration: .15s;
  }
}

@media screen and (max-width: 767px) {
  .c-section_control-prev > button:active,
  .c-section_control-next > button:active {
    background-color: #f1f2f3;
    color: #161b1b;
    transition-duration: .15s, .15s;
  }
  .c-section_control-prev > button:active::before,
  .c-section_control-next > button:active::before {
    border-color: #161b1b;
    transition-duration: .15s;
  }
}

.c-section_control-prev > button[disabled],
.c-section_control-next > button[disabled] {
  opacity: 0;
  pointer-events: none;
}

.c-section_control-prev > button::before {
  transform: rotate(-135deg) translate(-3px, 3px);
}

@media screen and (max-width: 767px) {
  .c-section_control-prev > button::before {
    transform: rotate(-135deg) translate(-1px, 1px);
  }
}

.c-section_control-next > button::before {
  transform: rotate(45deg) translate(-3px, 3px);
}

@media screen and (max-width: 767px) {
  .c-section_control-next > button::before {
    transform: rotate(45deg) translate(-1px, 1px);
  }
}

.c-section_body:nth-child(n+2) {
  margin-top: 41px;
}

@media screen and (max-width: 767px) {
  .c-section_body:nth-child(n+2) {
    margin-top: 30px;
  }
}

/* slider
==================================== */
.c-slider-wrap {
  position: relative;
  margin-left: -4.90483vw;
  padding-left: 4.90483vw;
  padding-bottom: 55px;
  overflow: hidden;
}

@media screen and (min-width: 2036px) {
  .c-slider-wrap {
    margin-left: -99.86237px;
    padding-left: 99.86237px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
  .c-slider-wrap {
    margin-left: -52.97218px;
    padding-left: 52.97218px;
  }
}

@media screen and (max-width: 767px) {
  .c-slider-wrap {
    margin-left: 0;
    padding-left: 31px;
    padding-bottom: 40px;
  }
}

.c-slider-wrap::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 69.95%;
  background-color: #0f3c2f;
  pointer-events: none;
}

.c-slider {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.c-slider_inner-wrap {
  max-width: 1400px;
  margin-right: 14.29%;
}

@media screen and (max-width: 767px) {
  .c-slider_inner-wrap {
    max-width: 300px;
    margin-right: 55px;
  }
}

.c-slider_inner {
  display: flex;
  margin: 0 -18px;
}

@media screen and (max-width: 767px) {
  .c-slider_inner {
    margin: 0 -13px;
  }
}

.c-slider_item {
  flex-grow: 0;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 33.33%;
  padding: 0 18px;
}

@media screen and (max-width: 767px) {
  .c-slider_item {
    width: 100%;
    padding: 0 13px;
  }
}

.c-slider_inner {
  position: relative;
  z-index: 1;
}

/* concept
==================================== */
.c-concept_link-wrap > a {
  display: block;
  pointer-events: none;
}

.c-concept_link-wrap > a:focus {
  outline: 0;
}

.c-concept_link-wrap > a > * {
  pointer-events: auto;
}

.c-concept_image-wrap {
  margin-right: 3.62319%;
}

@media screen and (max-width: 767px) {
  .c-concept_image-wrap {
    margin-right: 10px;
  }
}

.c-concept_image {
  position: relative;
  padding-top: 130.45%;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .c-concept_image {
    padding-top: 130.54%;
  }
}

.c-concept_image > img {
  position: absolute;
  top: -1000%;
  left: -1000%;
  right: -1000%;
  bottom: -1000%;
  min-width: calc(500% + 2px);
  max-width: none;
  min-height: calc(500% + 2px);
  margin: auto;
  transform: scale(0.2);
  transition: transform .6s ease;
}

a:focus-visible .c-concept_image > img {
  transform: scale(0.21);
  transition-duration: .15s;
}

@media screen and (min-width: 768px) {
  a:hover .c-concept_image > img {
    transform: scale(0.21);
    transition-duration: .15s;
  }
}

@media screen and (max-width: 767px) {
  a:active .c-concept_image > img {
    transform: scale(0.21);
    transition-duration: .15s;
  }
}

.c-concept_header {
  position: relative;
  z-index: 1;
  margin-top: -18.11594%;
  margin-left: 7.24638%;
  padding: 17px 20px 19px;
  background-color: #fff;
  transition: background-color .6s ease;
}

@media screen and (max-width: 767px) {
  .c-concept_header {
    margin-top: -40px;
    margin-left: 15px;
    padding: 14px 15px 15px;
  }
}

a:focus-visible .c-concept_header {
  outline: 2px dotted #222;
  outline-offset: -2px;
}

@media screen and (min-width: 768px) {
  a:hover .c-concept_header {
    background-color: #f1f2f3;
    transition-duration: .15s;
  }
}

@media screen and (max-width: 767px) {
  a:active .c-concept_header {
    background-color: #f1f2f3;
    transition-duration: .15s;
  }
}

.c-concept_title {
  font-family: "YakuHanJP", Yu Gothic, "游ゴシック体", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  line-height: 1.6;
}

.c-concept_link {
  font-size: 14px;
  line-height: 1.6;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .c-concept_link {
    font-size: 13px;
  }
}

.c-concept_link:nth-child(n+2) {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .c-concept_link:nth-child(n+2) {
    margin-top: 7px;
  }
}

.c-concept_trigger-wrap > a {
  display: block;
  pointer-events: none;
}

.c-concept_trigger-wrap > a:focus {
  outline: 0;
}

.c-concept_trigger-wrap > a > * {
  pointer-events: auto;
}

.c-concept_body {
  position: relative;
  margin-left: 7.24638%;
  padding: 14px 20px 17px;
  color: #ededed;
  background-color: #16513b;
  transition: background-color .6s ease;
}

@media screen and (max-width: 767px) {
  .c-concept_body {
    margin-left: 15px;
    padding: 14px 15px 16px;
  }
}

a:focus-visible .c-concept_body {
  outline: 1px dotted #fff;
  outline-offset: -1px;
}

@media screen and (min-width: 768px) {
  a:hover .c-concept_body {
    background-color: #262828;
    transition-duration: .15s;
  }
}

@media screen and (max-width: 767px) {
  a:active .c-concept_body {
    background-color: #262828;
    transition-duration: .15s;
  }
}

.c-concept_body_title {
  font-family: garamond-regular, serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #ededed;
}

@media screen and (max-width: 767px) {
  .c-concept_body_title {
    font-size: 13px;
  }
}

.c-concept_body_inner:nth-child(n+2) {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .c-concept_body_inner:nth-child(n+2) {
    margin-top: 8px;
  }
}

.c-concept_body_link {
  position: relative;
  padding-right: 20px;
  font-size: 14px;
  line-height: 1.3;
  color: #ededed;
}

@media screen and (max-width: 767px) {
  .c-concept_body_link {
    font-size: 13px;
  }
}

.c-concept_body_link::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 1.3em;
  min-height: 10px;
  margin: auto 0;
  background: url(/assets/common/img/icon_modal_white.svg) no-repeat center center/100%;
}

/* js-c-slider
==================================== */

