@charset "utf-8";
/* ------------------------------------------------------------------
  INDEX

  -Reset
  -Common
  -Link
  -Material
  -Layout
  -Text
  -Table
  -Block
  -Section
------------------------------------------------------------------ */

/* ------------------------------------------------------------------
  -Reset (External:reset.css)
------------------------------------------------------------------ */

/* ------------------------------------------------------------------
  -Common
------------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html{
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  min-width: 1000px;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: #060606;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
  background: #fff;
}
img {
  max-width: 100%;
  padding: 0;
  margin: 0;
  vertical-align: top;
}
.img {
  width: 100%;
  text-align: center;
}
ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
}
div, ul, li {
  width: 100%;
}
sup {
  font-size: 30%;
  font-weight: normal !important;
  vertical-align: top;
  position: relative;
  top: 0.1em;
}

.pc_none {
  display: none;
}
.sp_none {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc_none {
    display: block;
  }
  .sp_none {
    display: none;
  }
  body {
    font-size: 3vw;
    min-width: initial;
  }
}


/* ------------------------------------------------------------------
  -Link
------------------------------------------------------------------ */
a {
  color: #060606;
  text-decoration: none;
}
a:hover {
  color: #003399;
  text-decoration: underline;
}
a:hover {
  opacity: 0.9; 
}


/* ------------------------------------------------------------------
  -Material
------------------------------------------------------------------ */
/*ページトップへ戻る*/
#page2top {
  display: none;
  position: fixed;
  bottom: 70px;
  left: 60%;
  z-index: 111;
  width: 100%;
  max-width: 1100px;
  opacity: 1;
  transform: translate(-50%);
}
#page2top a{
  position: absolute;
  right: 10px;
  bottom: 5px;
  display: inline-block;
  width: 58px;
  height: 58px;
  padding: 0;
  cursor: pointer;
  background: url(../img/top-arrow.svg) no-repeat 50% 50%, #ededed;
  background-size: 26px 30px;
  overflow: hidden;
  font-size: 0;
  text-indent: 101%;
  white-space: nowrap;
}
/*2contact*/
.contact-wrapper {
  position: fixed;
  width: auto;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end; /* 右端に揃える */
  z-index: 201;
}
.contact-link {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  font-weight: bold;
  font-size: 18px;
  padding: 10px 15px 10px 20px;
  border-radius: 0;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  width: 110px;
  transition: width 0.3s ease;
  text-decoration: none;
}
.contact-link span.extra {
  display: none;
  transition: opacity 0.3s ease;
}
.contact-link:hover {
  width: 180px;
  opacity: 1;
}
.contact-link:hover span.extra {
  display: inline;
}
/* リンクの装飾統一 */
.contact-link,
.contact-link:visited,
.contact-link:active,
.contact-link:hover {
  text-decoration: none;
}
.contact-link.apply {
  background-color: #FF6301;
  color: white;
}
.contact-link.apply:hover {
  color: white;
}
.contact-link.inquiry {
  background-color: #fff;
  color: #222;
  border: 2px solid #888;
  border-right: none;
}
.contact-link.inquiry:hover {
  color: black;
}
.contact-link span.extra {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease 0.1s, visibility 0s linear 0.4s;
}
.contact-link:hover span.extra {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.2s; /* 背景の幅が広がるのを待ってから表示 */
}

@media screen and (max-width: 1200px) {
  #page2top {
    left: 50%;
    max-width: 100%;
  }
  #page2top a {
    right: 10px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .contact-wrapper {
    top: auto;
    transform: none;
    bottom: 140px;
  }
}
@media screen and (max-width: 500px) {
  .contact-wrapper {
    gap: 2vw;
  }
  .contact-link {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    font-weight: bold;
    font-size: 4vw;
    padding: 2.5vw 3vw 2.5vw 4vw;
    border-radius: 0;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    width: 22vw;
  }
  .contact-link:hover {
    width: 38vw;
  }
  .contact-link.inquiry {
    border: 1px solid black;
  }
}

/* ------------------------------------------------------------------
  -Layout
  base width: 1100px
  breakpoint: 767px
------------------------------------------------------------------ */
.inner {
  width: 1000px;
  margin: 0 auto;
}
.inner100 {
  width: 100%;
  margin: 0 auto;
}
.h-inner,
.n-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
/*Wrap*/
.contentWrap {
  width: 100%;
  margin:  0 auto;
  word-wrap : break-word;
  overflow-wrap : break-word;
}
@media screen and (max-width: 1130px) {
  .h-inner {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .inner100,
  .n-inner {
    width: 100%;
  }
}


/* ------------------------------------------------------------------
  -Text
------------------------------------------------------------------ */
/* Web font
--------------------------------------------------------*/
.f-maru {
  font-family: "Zen Maru Gothic", sans-serif !important;
}
.f-kaku {
  font-family: "Zen Kaku Gothic New", sans-serif !important;
}

/* 共通Hタグスタイル&レイアウト
--------------------------------------------------------*/
h1, h2, h3, h4, h5 {
  line-height: 1.4;
}


/* ------------------------------------------------------------------
  -Block 基本ブロック
------------------------------------------------------------------ */

/* header */
.header {
  background: #fff;
  width: 100%;
}
.h-logo a {
  display: inline-block;
  line-height: 1;
  max-width: 540px;
  margin: 12px 0;
}

/*nav*/
.fixed-nav {
  display: flex;
  justify-content: center;
  background: #085337;
  position: -webkit-sticky;
  position:         sticky;
  top: 0;
  z-index: 101;
}
.fixed-nav-box {
  display: flex;
  flex-wrap: nowrap;
  text-align: center;
  padding: 8px 0;
}
.fixed-nav-box li a {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  padding: 5px 0;
  border-left: 1px solid #FDFDF2;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.fixed-nav-box li:last-child a {
  border-right: 1px solid #FDFDF2;
}
.fixed-nav-box li a:hover {
  color: #f9fac5;
}
.fixed-nav-box li a span {
  font-size: 80%;
  margin-left: 2px;
}
.fixed-nav-box .sp_none {
  display: inline-block;
}
.nav-small {
  font-size: 80%;
}

/* billbord */
.billbord {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-image:url('../img/fv-pc.jpg');
  background-color: #F5F8FA;
}
.billbord .inner {
  position: relative;
  height: 400px;
  text-align: center;
}
.billbord .esgmark {
  padding-top: 75px;
}
.esgmark img {
  max-width: 740px;
  margin-left: 0;
}
.esgmark-ttl {
  position: relative;
  display: inline-block;
  background: #FDFDF2;
  color: #065337;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: 0.8px;
  padding: 15px 60px;
  z-index: 3;
  text-align: center;
  border: 4px solid #065337;
  border-radius: 100px;
  margin-top: 75px;
  box-shadow: 0px 3px 0px #0000001a;
}

/* footer */
.footer {
  background: #fff;
  text-align: center;
  font-size: 11px;
  color: #747474;
  padding-top: 50px;
  padding-bottom: 30px;
}
.copyright {
  font-size: 11px;
  font-weight: 400;
  margin-top: 30px;
}
.footer-nav a:first-of-type {
  padding-right: 10px;
  border-right: 1px solid #000;
}
.footer-nav a:last-of-type {
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .fixed-nav-box .sp_none {
    display: none !important;
  }
  .fixed-nav-box {
    padding: 8px 0;
  }
  .fixed-nav-box li a {
    font-size: 12px;
  }
  .fixed-nav-box li:first-of-type a {
    border-left: 0;
  }
  .fixed-nav-box li:last-of-type a {
    border-right: 0;
  }
  .h-logo a {
    display: inline-block;
    max-width: 300px;
    margin: 10px 0;
  }
  .nav-small {
    font-size: 100%;
  }
  .billbord {
    background-size: 138%;
    background-position: top 0 right 50%;
  }
  .billbord .inner {
    position: relative;
    height: 40vw;
  }
  .billbord:after {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    content: "";
    width: 100%;
    height: 15%;
    background: linear-gradient(rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.8) 50%, #ffffff 80%);
  }
  .billbord .esgmark {
    padding-top: 9vw;
  }
  .esgmark img {
    max-width: 74%;
  }
  .esgmark-ttl {
    margin: 6vw  auto 0;
    padding: 3vw 4vw;
    font-size: 5.2vw;
    border-width: 0.5vw;
  }
}
@media screen and (max-width: 520px) {
  .fixed-nav-box {
    padding: 0;
  }
  .fixed-nav-box li a {
    font-size: 2.6vw;
    padding: 2vw 0;
  }
  .nav-small {
    font-size: 90%;
  }
  .esgmark-ttl {
    font-size: 4.5vw;
    border-width: 0.8vw;
  }
}



/*------------------------------------------------------*/
/* Section 各セクションごとのスタイル
/*------------------------------------------------------*/
/* nav */
#esg00 {
  scroll-margin-top: -30px; /* 固定ヘッダーの高さ分 */
}
#esg01,
#esg02 {
  scroll-margin-top: 80px; /* 固定ヘッダーの高さ分 */
}
/* common */
.h2-ttl {
  margin-top: 0;
  width: 100%;
  line-height: 1.1;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  position: relative;
  display: inline-block;
  padding: 24px 0;
  background: #065337;
  color: #fff;
}
.h2-ttl::after	{
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  border-top: 12px solid #065337;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
}
.h3-ttl {
  background: #005437;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  margin-top: 60px;
  padding: 15px 0 15px 20px;
  display: flex;
  align-items: center;
}
.h3-ttl::before {
  content: "";
  width: 12px;
  height:12px;
  background: #E1EDD9;
  display: flex;
  margin-right: 20px;
}
.sec04-note {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
  text-align: right;
  color: #333;
}
.mt0 {
  margin-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .h2-txt  {
    font-size: 3.5vw;
    letter-spacing: 1px;
    padding: 10vw 0 5vw;
  }
  .h2-txt span {
    font-size: 3.5vw;
    padding: 0px 2.5vw;
    margin: 1.8vw 1vw 1.8vw 0;
    margin-right: 1.5vw;
  }
  .h2-ttl {
    font-size: 4.5vw;
    padding: 5vw 0;
  }
  .h2-ttl::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    border-top: 12px solid #065337;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
  }
  .h3-ttl {
    font-size: 3.5vw;
    margin-top: 8vw;
    padding: 3vw 0 3vw 3vw;
  }
  .h3-ttl::before {
    width: 10px;
    height:10px;
    margin-right: 10px;
  }
}

@media screen and (max-width: 520px) {
  .h2-ttl::after {
    bottom: -2.8vw;
    border-top: 3vw solid #065337;
    border-right: 5vw solid transparent;
    border-left: 5vw solid transparent;
  }
}



/**/
.sec-box {
}
.ttl-img {
  margin: 0 auto;
  text-align: center;
}
.content-box {
  margin-top: 30px;
  padding: 0 15px;
}
.img-box {
  margin: 30px 15px 0;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  border-radius: 4px;
  border: 1px solid #ecf2e4;
}
.disc-list {
  margin: 0.5em 0;
  padding: 1em 0 1em 2em;
  list-style-type: disc; 
  list-style-position: inside;　/* ul範囲に中点を入れる */
  padding-left: 1.5em;
  text-indent: -1.5em;
}
.num-list {
  margin: 0.5em 0;
  padding: 1em 0 1em 2em;
  list-style-type: decimal; 
  list-style-position: inside;　/* ul範囲に中点を入れる */
  padding-left: 1.5em;
  text-indent: -1.5em;
}
.num-list li{
  font-weight: 700;
  margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
  .sec-box {
  }
  .content-box {
    margin-top: 4vw;
    padding: 0 3vw;
  }
  .img-box {
    width: calc(100% - 30px);
    margin: 30px 3vw 0;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #ecf2e4;
  }
  .num-list {
    margin: 3vw 0;
    padding: 1em 0 1em 5vw;
    text-indent: -3.8vw;
  }
}

/* sec00
------------------------------------------------------------------ */
.sec00 {
  background: #E8F2E1;
}
.sec00 .inner {
  padding-top: 80px;
  padding-bottom: 160px;
}
.note-box {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  margin-top: 40px;
  background: #fff;
  font-size: 19px;
  font-size: 19px;
  font-weight: 500;
  line-height: 2.5;
  padding: 50px 70px;
  border-radius: 50px;
}
.note-box span {
  background-color: #fff; /* 背景色 */
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%), /* 点線1の色 */
                    linear-gradient(180deg, #ddd 1px, transparent 1px); /* 点線2の色と太さ */
  background-size: 8px 100%, /* 点線1のサイズ */
                   100% 2.5em; /* 点線2のサイズ */
  line-height: 2.5em; /* 文字の高さ */
  padding-bottom: 1px; /* 最終行の下にも罫線を引く */
}
.note-box span::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
}
.sec00 .h2-ttl {
  background: none;
  color: #065337;
  padding-top: 80px;
}
.sec00 .h2-ttl span {
  border-bottom: 4px solid #065337;
  padding-bottom: 8px;
}
.sec00 .h2-ttl .symbol {
  position: relative;
  border-bottom: 4px solid #E8F2E1;
}
.sec00 .h2-ttl .symbol::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 50%;
  border-bottom: 4px solid #065337;
}
.sec00 .h2-ttl span small {
  font-size: 70%;
  margin-left: -14px;
}
.sec00 .h2-ttl::after {
    content: none;
    display: none; 
}
/*box_waku*/
.box_waku {
  background: #fef2e2;
  border-radius: 50px;
  position: relative;
}
.box_waku .box_waku_inner:before,
.box_waku .box_waku_inner:after,
.box_waku:before,
.box_waku:after {
  content: '';
  display: block;
  width: 50px;
  height: 50px;
  background: no-repeat center center;
  background-size: contain;
  position: absolute;
}

.box_waku .box_waku_inner:before {
  background-image: url(../img/waku_01.svg);
  top: -5px;
  left: -5px;
}
.box_waku .box_waku_inner:after {
  background-image: url(../img/waku_02.svg);
  top: -5px;
  right: -5px;
}
.box_waku:before {
  background-image: url(../img/waku_03.svg);
  bottom: -5px;
  left: -5px;
}
.box_waku:after {
  background-image: url(../img/waku_04.svg);
  bottom: -5px;
  right: -5px;
}
@media screen and (max-width: 767px) {
  .sec00 .inner {
    padding: 0 15px 12vw;
  }
  .sec00 .h2-ttl {
    padding-top: 17vw;
  }
  .note-box {
    font-size: 3.5vw;
    margin-top: 5vw;
    padding: 8vw 8vw;
    border-radius: 6vw;
  }
  .sec00 .h2-ttl span small {
    margin-left: -1vw;
  }
  .box_waku {
    width: 90%;
    margin: 0 auto;
    border-radius: 6vw;
  }
  .box_waku .box_waku_inner:before,
  .box_waku .box_waku_inner:after,
  .box_waku:before,
  .box_waku:after {
    width: 5vw;
    height: 5vw;
  }

  .box_waku .box_waku_inner:before {
    background-image: url(../img/waku_01.svg);
    top: -1px;
    left: -1px;
  }
  .box_waku .box_waku_inner:after {
    background-image: url(../img/waku_02.svg);
    top: -1px;
    right: -1px;
  }
  .box_waku:before {
    background-image: url(../img/waku_03.svg);
    bottom: -1px;
    left: -1px;
  }
  .box_waku:after {
    background-image: url(../img/waku_04.svg);
    bottom: -1px;
    right: -1px;
  }
}
@media screen and (max-width: 520px) {
  .sec00 .h2-ttl span {
    border-bottom: 2px solid #065337;
    padding-bottom: 5px;
  }
  .sec00 .h2-ttl .symbol {
    border-bottom: 2px solid #E8F2E1;
  }
  .sec00 .h2-ttl .symbol::after {
    bottom: -2px;
    border-bottom: 2px solid #065337;
  }
  .box_waku .box_waku_inner:before,
  .box_waku .box_waku_inner:after,
  .box_waku:before,
  .box_waku:after {
    width: 5vw;
    height: 5vw;
  }
  .box_waku .box_waku_inner:before {
    background-image: url(../img/waku_01.svg);
    top: -1px;
    left: -1px;
  }
  .box_waku .box_waku_inner:after {
    background-image: url(../img/waku_02.svg);
    top: -1px;
    right: -1px;
  }
  .box_waku:before {
    background-image: url(../img/waku_03.svg);
    bottom: -1px;
    left: -1px;
  }
  .box_waku:after {
    background-image: url(../img/waku_04.svg);
    bottom: -1px;
    right: -1px;
  }
}

/* sec01
------------------------------------------------------------------ */
.sec01 {
  background: #fff;
}
.sec01 .inner {
  width: 100%;
  padding-bottom: 80px;
  background: linear-gradient(180deg, rgb(232, 241, 225) 0%, rgb(255, 255, 255) 3%, rgba(255, 255, 255, 0) 100%);
  /* background: rgb(232, 241, 225);*/
}
.sec01 .h2-ttl {
  position: relative;
}
.sec01-ttl-img {
  position: absolute;
  width: 140px;
  bottom: -15px;
  right: 280px;
}
.sec01 .sec-box {
  width: 880px;
  margin: 0 auto;
  padding-top: 30px;
}
.merit-box {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  margin-top: 80px;
}
.merit-lead {
  width: 100%;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  position: relative;
  display: inline-block;
  padding: 20px 0;
  background: #fff;
  color: #fff;
  border-radius: 100vh;
}
.merit01 .merit-lead {
  background: #F78F00;
}
.merit02 .merit-lead {
  background: #70B217;
}
.merit03 .merit-lead {
  background: #0168AF;
}
.merit-lead::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  border-top: 12px solid #fff;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
}
.merit01 .merit-lead::after {
  border-top-color: #F78F00;
}
.merit02 .merit-lead::after {
  border-top-color: #70B217;
}
.merit03 .merit-lead::after {
  border-top-color: #0168AF;
}
.merit-ttl {
  margin-top: 50px;
  line-height: 1.1;
  font-size: 32px;
  font-weight: 600;
  color: #065337;
  text-align: left;
  padding-left: 40px;
  position: relative;
}
.merit01 .merit-ttl {
  color: #964F00;
}
.merit02 .merit-ttl {
  color: #065337;
}
.merit03 .merit-ttl {
  color: #0F5784;
}
.merit-ttl::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 100%;
  background: #fff;
  border-radius: 10px;
}
.merit01 .merit-ttl::before {
  background: #F6B52C;
}
.merit02 .merit-ttl::before {
  background: #91D553;
}
.merit03 .merit-ttl::before {
  background: #3E99D6;
}
.archive-list {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.archive-item {
  width: 100%;
  border-radius: 8px;
  background-color: #FFF;
}
.merit01 .archive-item {
  background-color: #FFF9F0;
}
.merit02 .archive-item {
  background-color: #EDF7E7;
}
.merit03 .archive-item {
  background-color: #E6F5FF;
}
.archive-img-wrap {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.archive-img-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 0 0;
  object-fit: cover;
}
.archive-ttl {
  margin: 10px 0 40px;
  line-height: 1.4;
  font-size: 26px;
  font-weight: 700;
  text-align: left;
  color: #065337;
}
.archive-ttl span {
  padding-bottom: 10px;
  border-bottom: 2px solid #065337;
}
.archive-desc {
  width: calc(100% - 60px);
  padding: 30px;
  margin: 30px auto;
  background: #fff;
  border-radius: 10px;
  font-size: 16px;
  line-height: 2.2;
}
.sec01 .ttl-img {
  max-width: 160px;
}
.sec01-list {
  display: flex;
  flex-wrap: nowrap;
  margin: 10px auto 20px 0;
  max-width: 100%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .sec01 .inner {
    padding: 0 15px 5vw;
  }
  .sec01 .ttl-img {
    max-width: 20vw;
    margin-top: 3vw;
  }
  .sec01 .h2-ttl {
    margin-top: 0;
  }
  .sec01-ttl-img {
    width: 18vw;
    bottom: -6px;
    right: 10vw;
  }
  .sec01 .sec-box {
    width: 90%;
    padding-top: 5vw;
  }
  .merit-box {
    margin-top: 5vw;
  }
  .merit-lead {
    width: 100%;
    font-size: 3.8vw;
    padding: 3vw 0;
  }
  .merit-ttl {
    margin-top: 7vw;
    font-size: 4vw;
    padding-left: 7vw;
  }
  .merit-ttl::before {
    width: 3vw;
    border-radius: 3vw;
  }
  .archive-list {
    margin-top: 5vw;
    display: flex;
    justify-content: space-between;
  }
  .archive-item {
    width: 100%;
    border-radius: 8px;
    background-color: #fff;
    margin-bottom: 4vw;
  }
  .archive-img-wrap {
    width: 100%;
    margin-bottom: 0;
  }
  .archive-img-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
    object-fit: cover;
  }
  .archive-ttl {
    margin: 2vw auto;
    font-size: 3.8vw;
    padding-bottom: 6vw;
  }
  .archive-desc {
    width: calc(100% - 4vw);
    padding: 15px 15px;
    margin: 0 auto 2vw;
    font-size: 3.5vw;
    border-radius: 0 0 10px 10px;
  }
}
@media screen and (max-width: 520px) {
  .merit-lead::after {
    bottom: -1.8vw;
    border-top: 2vw solid #fff;
    border-right: 4vw solid transparent;
    border-left: 4vw solid transparent;
  }
}


/* sec02
------------------------------------------------------------------ */
.sec02 {
  background: #E8F1E1;
}
.sec02 .inner {
  padding: 20px 0 120px;
}
.sec02 .txt small {
  font-size: 80%;
}
.sec02 .h4-ttl {
  margin: 40px 15px 0;
  display: flex;
  align-items: center;
}
.sec02 .h4-ttl span {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  display: inline-block;
  margin: 0 auto;
  padding: 15px 0 15px 0;
  border-bottom: 4px solid #065337;
}

/* 全体フロー */
.step-flow {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 30px;
}
.step {
  display: flex;
  flex-direction: column;
  width: calc(100%/5);
  height: 230px;
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  text-align: center;
}
.step .step-num {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  min-height: 60px;
  background: #00a651; /* デフォルト緑 */
  padding: 15px 0;
}
.step.green .step-num {
  background: #00a651;
}
.step.blue .step-num {
  background: #274b85;
}
.step .step-num span {
  font-size: 24px;
  display: block;
  margin-top: 4px;
}
.step .step-text {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 18px;
  color: #000;
  font-weight: 700;
  padding: 0 20px 20px;
  line-height: 1.6;
}
.step-text.step2 {
  padding-top: 15px;
}
.step .step-text small {
  text-indent: -1em;
  padding-left: 1em;
  text-align: left;
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.2;
  color: #444;
}
.step-flow-note {
  text-align: right;
  font-size: 14px;
  margin-top: 20px;
}

/* 詳細フロー */
.detail-flow {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  gap: 35px;
  justify-content: center;
  padding: 40px 70px 0 35px;
}
.detail-flow .arrow-bg {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: calc(100% - 35px);
  height: 50px;
  background: rgba(0, 128, 128, 0.2);
  transform: translateY(-50%);
  z-index: 0;
  margin-top: 25px;
}
.detail-flow .arrow-bg::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -35px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 45px solid transparent;
  border-bottom: 45px solid transparent;
  border-left: 35px solid rgba(0, 128, 128, 0.2);
}
.detail-flow .detail-step {
  position: relative;
  z-index: 1;
  width: calc(100% / 6);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.detail-flow .detail-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  background-color: #00a651;
}
.detail-flow .detail-step.green .detail-label {
  background-color: #00a651;
}
.detail-flow .detail-step.blue .detail-label {
  background-color: #274b85;
}
.detail-flow .detail-text {
    display: flex;
    align-items: center;
    width: 100%;
    max-height: 400px;
    padding: 15px 0 50px;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -o-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    box-sizing: border-box;
}
.detail-text-inner {
  font-size: 24px;
  font-weight: 700;
}


/* Table */
.contentsWrap_sec {
  width: 100%;
  background: #fff;
  padding: 50px;
  margin-top: 40px;
  border-radius: 10px;
  margin-bottom: 80px;
}
.table01 { 
  width: 100%;
}
.table01 thead {
  background: #DDEBF6;
}
.table01 tr {
  border-bottom: 1px solid #F2F2F2;
}
.table01 tr:last-of-type {
  border-bottom: 0;
}
.table01 th,
.table01 td {
  padding: 35px 20px;
  font-weight: 500;
}
.table01 th {
    vertical-align: top;
}
.table01 th span {
  background: #f2f2f2;
  display: inline-block;
  width: 100%;
  padding: 5px;
}
.table01 td small {
  display: inline-block;
  margin-top: 10px;
  font-size: 80%;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .contentsWrap_sec {
    width: 90%;
    padding: 0 15px 15px;
    margin: 8vw auto 10vw;
  }
  .sec02 .inner {
    padding: 8vw 15px 15vw;
  }
  .sec02 .h4-ttl {
    margin: 3vw 3vw 0;
  }
  .sec02 .h4-ttl span{
    font-size: 4vw;
    padding: 3vw 0 3vw 0;
  }
  
/* 全体フロー */
.step-flow {
  gap: 5vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 5vw;
}
.step {
  display: flex;
  flex-direction: column;
  width: 80%;
  height: auto;
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  text-align: center;
}
.step .step-num {
  font-size: 3vw;
  padding: 2vw 0;
  min-height: 0;
}
.step .step-num span {
  font-size: 4vw;
  margin-top: 1vw;
}
.step .step-text {
  flex: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 3.5vw;
  padding: 3vw 0 4vw;
}
.step .step-text br {
  display: none;
}
.step-text.step2 {
  padding-top: 3vw;
}
.step .step-text small {
  text-indent: -1em;
  padding-left: 1em;
  text-align: left;
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.2;
  color: #444;
}
.step-flow-note {
  text-align: right;
  font-size: 14px;
  margin-top: 20px;
}
  .step-flow-note {
    font-size: 3vw;
  }

  .detail-flow {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5vw;
    padding: 8vw 0 2vw 0;
    margin-top: 3vw;
  }
  .detail-flow .arrow-bg {
    top: 0;
    left: 50%;
    right: initial;
    width: 35px;
    height: 100%;
    transform: translateX(-50%);
    margin-top: 2vw;
    background: linear-gradient(
      to bottom,
      rgba(0, 128, 128, 0) 0%,       /* 上端：完全に透明 */
      rgba(0, 128, 128, 0.2) 3%,     /* 3%の地点で色がつく */
      rgba(0, 128, 128, 0.2) 100%    /* それ以降は一色 */
    );
  }
  .detail-flow .arrow-bg::after {
    top: initial;
    bottom: -107px;
    right: 0;
    transform: translateY(-50%) rotate(90deg);
    border-top: 45px solid transparent;
    border-bottom: 45px solid transparent;
    border-left: 35px solid rgba(0, 128, 128, 0.2);
  }
  .detail-flow .detail-step {
    width: 80%;
    border-radius: 10px;
  }
  .detail-flow .detail-label {
    height: auto;
    font-size: 4vw;
    padding: 2vw 0;
  }
  .detail-flow .detail-text {
    max-height: 0;
    padding: 5vw 0 8vw;
    writing-mode: revert;
  }
  .detail-text-inner {
    width: 100%;
    font-size: 3.5vw;
    text-align: center;
  }
  
  
  .table01 tr {
    margin: 3vw 0;
  }
  .table01 th {
    width: 100%;
    display: block;
    margin: 3vw 0 0;
    padding: 0;
    padding-top: 3vw;
    font-size: 3.5vw;
  }
  .table01 td {
    width: 100%;
    display: block;
    margin: 3vw 0 3vw;
    padding: 3vw 0;
    font-size: 3.5vw;
  }
  .table01 th span {
    display: block;
  }
}

/* sec-contact
------------------------------------------------------------------ */
.sec-contact {
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-image:url('../img/sec03_bg.jpg');
  background-color: #F5F8FA;
}
.sec-contact-bg {
  background: #065337;
}
.sec-contact-bg .inner {
  padding: 50px 0;
  text-align: center;
}
.contact-btn {
  text-align: center;
  margin-bottom: 30px;
}
.contact-btn a {
  display: inline-block;
  width: 480px;
  border: 3px solid #fff;
  border-radius: 100px;
  font-size: 22px;
  font-weight: bold;
  padding: 15px 80px;
  text-decoration: none;
}
.apply .contact-btn a {
  background: #FF6301;
  color: #fff;
  border-color: #FF6301;
}
.inquiry .contact-btn a {
  background: #fff;
  color: #222;
  border-color: #888;
}
.arrow {
  position: relative;
  display: inline-block;
}
.arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 18px;
  width: 25px;
  height: 1.5px;
  background-color: #fff;
  transform: translateY(-50%) translateX(0);
  transition: transform 0.3s ease;
}
.arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 8px solid #fff;
  transform: translateX(0);
  transition: transform 0.3s ease;
}
.arrow:hover::before {
  transform: translateY(-50%) translateX(-5px);
  right: 20px;
  width: 23px;
}
.arrow:hover::after {
  transform: translateX(-5px);
  right: 13px;
}
.inquiry .arrow::before {
  background-color: #222;
}
.inquiry .arrow::after {
  border-left: 8px solid #222;
}
.sec-contact-ttl {
  font-size: 25px;
  line-height: 1.1;
  font-weight: 700;
}
.sec-contact-desc {
  font-size: 14px;
  line-height: 1.4;
}
.sec-contact-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 30px auto;
  padding: 35px 20px 10px;
  max-width: 750px;
  text-align: left;
  line-height: 2.5;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .sec-contact-bg .inner {
    padding: 2vw 15px 2vw;
  }
  .sec-contact-list {
    gap: 20px;
    margin: 20px auto 20px;
    padding: 30px 15px 0;
    max-width: 100%;
  }
  .contact-btn {
    width: 100%;
  }
  .contact-btn a {
    width: 90%;
    padding: 10px 0;
  }
}
@media screen and (max-width: 520px) {
  .sec-contact-list {
    gap: 4vw;
    margin: 20px auto 20px;
    padding: 6vw 15px 0;
    max-width: 100%;
  }
  .sec-contact-ttl {
    font-size: 4.5vw;
  }
  .sec-contact-desc {
    font-size: 3vw;
    margin: 0 auto;
    width: 90%;
  }
  .contact-btn a {
    font-size: 4vw;
  }
  .arrow::before {
    right: 4vw;
    width: 5vw;
    height: 1px;
  }
  .arrow::after {
    right: 2vw;
    margin-top: -3px;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 8px solid #fff;
  }
  .arrow:hover::before {
    transform: translateY(-50%) translateX(-5px);
    right: 5vw;
    width: 4.5vw;
  }
  .arrow:hover::after {
    transform: translateX(-5px);
    right: 3vw;
  }
  .inquiry .arrow::before {
    background-color: #222;
  }
  .inquiry .arrow::after {
    border-left: 8px solid #222;
  }
}
