@charset "UTF-8";

/* Reset CSS */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 1em;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

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

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

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

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

*,
*:before,
*:after {
  box-sizing: inherit;
}

a {
  display: inline-block;
  color: inherit;
  word-break: break-all;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover,
a:active,
a:focus,
a:hover img,
a:active img,
a:focus img {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

a img {
  border: none;
}

img {
  max-width: 100%;
  height: auto;
  box-sizing: content-box;
  vertical-align: middle;
  line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  max-height: 100%;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0.05em;
}

input[type="button"],
input[type="submit"],
input[type="reset"],
label {
  cursor: pointer;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
  border-radius: 0;
}

picture,
figure {
  display: block;
  width: 100%;
}

picture img,
figure img {
  display: block;
  width: 100%;
  object-fit: contain;
}

sup {
  font-size: 70%;
  vertical-align: baseline;
  position: relative;
  top: -0.35em;
}

sub {
  font-size: 70%;
  vertical-align: bottom;
  position: relative;
  bottom: -0.25em;
}


/*----------------------------------------
変数
-----------------------------------------*/
:root {
  --innerWide-maxWidth: 1700px;
  --inner-maxWidth: 1200px;
  --inner-minWidth: 960px;

  --header-height: 90px;
  --footer-logo-maxWidth: 300px;
  --inner-padding-LR: 20px;

  /* 頻出カラーまとめ */
  --col-green01: #2aaa83;
  --col-green02: #dff2ec;
  --col-green03: #f2faf8;

  --col-gold01: #c8a050;

  /* テキストなどのカラー */
  --col-black: #444;
  --col-gray01: #f3f3f3;
  --col-gray02: #cccccc;
  --col-gray03: #666666;

  /* グラデーション */
  --grade-green01: rgba(42, 170, 131, 1) 0%, rgba(0, 108, 98, 1) 100%;

  /* フォント関係 */
  /* ja */
  /* --font-family-01: 'Noto Sans JP', sans-serif; */
  /* en */

}

.blendMode-overlay {
  mix-blend-mode: overlay;
}

.blendMode-colorBurn {
  mix-blend-mode: color-burn;
}

.blendMode-colorDodge {
  mix-blend-mode: color-dodge;
}

.blendMode-hardL {
  mix-blend-mode: hard-light;
}

.blendMode-lighten {
  mix-blend-mode: lighten;
}


/*----------------------------------------
各ページ共通パーツ
-----------------------------------------*/
/* ページトップボタン */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
}

.btnTotop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9;
  width: 80px;
}


body {
  box-sizing: border-box;
  position: relative;
  /* アンカーリンク対策のマージンとパディング */
  margin-top: calc(-1 * var(--header-height));
  padding-top: var(--header-height);
  font-size: 1rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-feature-settings: "palt" 1;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: var(--col-black);
}

p {
  font-size: 1rem;
  line-height: 1.75;
}

main {
  padding-top: var(--header-height);
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.inner {
  width: 100%;
  max-width: var(--inner-maxWidth);
  padding-left: var(--inner-padding-LR);
  padding-right: var(--inner-padding-LR);
  margin: auto;
  position: relative;
}

.inner_wide {
  width: 100%;
  max-width: var(--innerWide-maxWidth);
  padding-left: var(--inner-padding-LR);
  padding-right: var(--inner-padding-LR);
  margin: auto;
  position: relative;
}

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

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.txtL {
  text-align: left;
}

.txtC {
  text-align: center;
}

.txtR {
  text-align: right;
}

.caption {
  font-size: 12px !important;
}

.fsSS {
  font-size: 80%;
}

.fsS {
  font-size: 90%;
}

.fsM {
  font-size: 110%;
}

.fsL {
  font-size: 120%;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}


.bg_green01_box {
  background: var(--col-green01);
}

.bg_green02_box {
  background: var(--col-green02);
}

.bg_green03_box {
  background: var(--col-green03);
}

.bg_gray_box {
  background: var(--col-gray01);
}



/* ボタン */
.btnA {
  position: relative;
  display: block;
  padding: 0.35em 1em;
  font-size: 1.1rem;
  background: var(--col-green01);
  color: #fff;
  overflow: hidden;
}

.btnA.current {
  background: #fff;
  color: var(--col-green01);
  font-weight: bold;
}

.btnA:not(.current):hover {
  /* background: var(--col-green02); */
  background: unset;
  color: var(--col-green01);
  transition: .4s;
}

.btnA:not(.current)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--col-green01);
  z-index: -1;
  scale: 0 1;
  transition: .2s ease-in-out;
  transform-origin: center left;
  opacity: 0.5;
}

.btnA:not(.current):hover::before {
  scale: 1 1;
  transition: .2s ease-in-out;
}

a.current,
.current>a {
  pointer-events: none;
}


/*----------------------------------------
子ページ
-----------------------------------------*/
/* 子ページトップ */
.page_head {
  background: url(../img/common/top_img.webp) center center no-repeat;
  background-size: cover;
  min-height: 280px;
}

.page_head hgroup {
  padding-top: 80px;
  padding-bottom: 80px;
}

h1 {
  font-size: 3.25rem;
}

.pageTittleWrap {
  margin: auto;
  width: 100%;
  text-align: center;
  margin-bottom: 90px;
}

.pageTittleWrap .titleBox {
  margin: 60px auto;
}

.pageTittleWrap .pageTittleEn {
  font-size: 3rem;
  font-family: var(--font-family-poppins);
  color: var(--col-blue01);
}

.pageTittleWrap .pageTittleJa {
  margin-top: -0.15em;
  font-size: 1.5rem;
}

.pageTittleWrap .pageTittleImg img {
  width: 100%;
  height: auto;
  background: #494949;
}

.contents_wrap {
  background: var(--col-green03);
  padding: 90px 0;
}

/* パンクズ */
.breadcrumbsNavi {
  display: flex;
  filter: drop-shadow(0px 0px 3px rgb(255, 255, 255)) drop-shadow(0px 0px 3px rgb(255, 255, 255)) drop-shadow(1px 1px 5px rgb(255, 255, 255));
  transform: translateZ(0);
}

.breadcrumbsNavi li {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0;
}

.breadcrumbsNavi li::after {
  content: "＞";
  padding: 0em 0.75em;
}

.breadcrumbsNavi li:last-child:after {
  content: "";
}

/* 子ページサブメニュー */
.subMenu {
  display: flex;
  justify-content: space-between;
  color: var(--col-green01);
  border-bottom: 1px solid var(--col-green01);
}

.subMenu>* {
  position: relative;
  padding: var(--inner-padding-LR) calc(1.5 * var(--inner-padding-LR));
  z-index: 0;
}

.subMenu>* .tit {
  line-height: 1.35;
}

.subMenu>*.current {
  background: linear-gradient(90deg, var(--grade-green01));
  color: #fff;
}

.subMenu.column2>* {
  width: 50%;
}

.subMenu.column3>* {
  width: calc(100% / 3);
}

.subMenu.column4>* {
  width: calc(100% / 4);
}

.subMenu.column2>.boxL::before,
.subMenu.column2>.boxR::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 18%;
  height: 68%;
  transform: translate(0%, -50%);
  background: url(../img/common/icon_arrow_R.svg) no-repeat center center;
  background-size: contain;
}

.subMenu.column2>.boxR::before {
  left: unset;
  right: 0;
  transform: translate(0%, -50%);
  background: url(../img/common/icon_arrow_R.svg) no-repeat center center;
  background-size: contain;
}

.subMenu.column2>.boxL .txtBox,
.subMenu.column2>.boxR .txtBox {
  width: 86%;
  max-width: 580px;
  margin-left: auto;
  text-align: center;
  font-weight: 500;
}

.subMenu.column2>.boxR .txtBox {
  margin-left: 0;
  margin-right: auto;
}

.subMenu.column2 .tit {
  font-size: 1.35rem;
  font-weight: 500;
}

.subMenu.column2 .btnList.column2>* {
  width: 49%;
}



/* 見出し */
h2 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  position: relative;
  font-size: 2.25rem;
  margin-bottom: .3em;
  word-break: keep-all;
}

h2 .txt {
  width: fit-content;
  display: block;
  padding-right: .5em;
}

h2 .line {
  display: block;
  width: 95%;
  height: 2px;
  background: linear-gradient(90deg, var(--grade-green01));
  margin-bottom: 0.55em;
}

h2.long .line {
  width: 24%;
}

h2::after {
  right: 0;
}


.h3_tit {
  font-size: 1.25rem;
  padding-bottom: 0.25em;
  margin-bottom: 0.65em;
  border-bottom: 2px solid var(--col-green02);
}

/* コンテンツボックス */
.contents_wrap .inner+.inner {
  margin-top: 50px;
}

.contents_wrap .innerBox {
  max-width: var(--inner-maxWidth);
  width: 100%;
  padding: calc(var(--inner-padding-LR) * 1.5);
  background: #fff;
}

.contents_wrap .innerBox+.innerBox {
  margin-top: var(--inner-padding-LR);
}



/* リスト_インデックスあり */
.list_dotindex li {
  position: relative;
  padding-left: 1em;
}

.list_dotindex li::before {
  content: '・';
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
}

/* リンクリスト */
.link_list {
  text-align: left;
}

.link_list li {
  line-height: 1.4;
}

.link_list li+li {
  margin-top: 1em;
}

.link_list a {
  color: var(--col-green01);
}

.link_list a:hover {
  border-bottom: 1px solid;
}



/* カラム */
.column2,
.column3,
.column4 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* 2カラム */
.column2>* {
  width: 48%;
}

.column2.card>* {
  background: #fff;
}

.column2.card .item .imgBox {
  position: relative;
  width: 100%;
}

.column2.card .item .imgBox .title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  font-size: 2.25rem;
  text-align: center;
  color: #fff;
}

.column2.card .item .txtBox {
  padding: 60px;
}

/* 3カラム */
.column3>* {
  width: 32%;
}

/* 4カラム */
.column4>* {
  width: 24%;
}



/*----------------------------------------
ボタン系
-----------------------------------------*/
/* ボタン_矢印付き */
.btnWrap {
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
  margin-top: .75em;
  font-weight: var(--font-weight-bold);
}

.btnWrap p {
  font-size: 1.25rem;
}

.btnWrap a {
  position: relative;
  color: #fff;
  /* font-size: .75em; */
  padding: 0.45em 5em 0.45em 1.5em;
  background: var(--col-blue04);
  border-radius: 2em;
}

.btnWrap a::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 1.5em;
  font-size: 1em;
  width: 2.5em;
  height: 1em;
  background: url(../img/icon/arrowWgiteSR.svg) center center no-repeat;
  background-size: contain;
  transform: translate(0, -50%);
}

.btnWrap a:hover:before {
  right: 1em;
  transition: all 0.25s linear;
}

.noLink {
  pointer-events: none;
}

.btnR {
  position: relative;
  display: block;
  width: fit-content;
  padding-right: 2.35em;
  color: var(--col-green01);
  z-index: 2;
  /* background: #fff; */
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: .5em;
  margin-left: auto;
}

.btnR .btnInner {
  position: relative;
  padding: 0.5em 1.5em;
  padding-right: 4.5em;
  border-radius: 2em;
  background: #fff;
  color: var(--col-red01);
  text-align: right;
  margin-left: auto;
}

.btnR::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1em;
  height: 1em;
  background: url(../img/common/icon_arrow_R.svg) center center no-repeat;
  border-radius: 2em;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.btnR:hover {
  opacity: .7;
}

.btnR:hover:before {
  right: -0.25em;
  transition: 0.25s;
}

.btnR.btn_blue {
  color: var(--col-blue01);
}

.btnR.btn_blue::before {
  background: linear-gradient(90deg, var(--grade-blue01));
}

.btnR .btnInner::after {
  content: '';
  position: absolute;
  top: 46%;
  right: 1.35em;
  width: 3em;
  height: 1em;
  background: url(../img/common/ico_btn_arowR_red.svg) no-repeat center center;
  background-size: contain;
  transform: translate(0%, -50%);
}

.btnR.btn_blue .btnInner::after {
  background: url(../img/common/ico_btn_arowR_blue.svg) no-repeat center center;
}

.btnR:hover .btnInner::after {
  right: 1em;
  transition: 100ms ease-in;
}

.btnR.noLink:hover .btnInner::after {
  right: 1.35em;
}

.btnR+.btnR {
  margin-top: 0.5em;
}


/* PDFボタン */
a.pdf {
  position: relative;
  display: inline-block;
  padding-right: 1em;
}

a.pdf::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translate(0, -50%);
  width: .8em;
  height: 1em;
  background: url("../img/common/icon_pdf.svg") no-repeat center center;
  background-size: contain;
}


/* ボックスリンクボタン */
.boxlink_list {
  display: flex;
  justify-content: space-between;
}

.boxlink_list>* {
  display: flex;
  flex-direction: column;
}

.boxlink_list a {
  display: block;
  height: 100%;
  padding: var(--inner-padding-LR);
  border: 1px solid var(--col-green01);
  /* word-break: keep-all; */
  font-weight: 600;
  color: var(--col-green01);
}


.txt_box+.boxlink_list {
  margin-top: 20px;
}


/*----------------------------------------
404ページ
-----------------------------------------*/
.page-404 {
  text-align: center;
}

.page-404 h1 {
  margin-top: 1.15em;
  color: var(--col-green01);
}

.page-404 .txt {
  font-size: 1.25rem;
  margin-top: 1.5em;
}

.page-404 .btnR.top {
  margin: 3em auto;
}


@media only screen and (min-width: 1600px) {

  .subMenu.column2>.boxL::before,
  .subMenu.column2>.boxR::before {
    width: 100px;
  }

  .subMenu.column2>.boxL::before {
    right: 620px;
    left: unset;
  }

  .subMenu.column2>.boxR::before {
    right: unset;
    left: 620px;
  }
}

@media only screen and (max-width: 1200px) {
  html {
    font-size: 1.5vw;
  }

  .btnA {
    font-size: 1rem;
    padding: 0.35em .5em;
  }

  .subMenu.column2>.boxL::before,
  .subMenu.column2>.boxR::before {
    left: 2%;
    width: 13%;
  }

  .subMenu.column2>.boxR::before {
    left: unset;
    right: 2%;
  }

  h2.long .line {
    width: 14%;
  }
}

@media only screen and (max-width: 959px) {

  /*----------------------------------------
  変数
  -----------------------------------------*/
  :root {
    --inner-minWidth: 960px;
  }

  html {
    font-size: 1.85vw;
    width: 100%;
  }

  #contents .inner {
    min-width: auto;
  }

  .subMenu.column2 .btnList.column2 {
    flex-wrap: wrap;
  }

  .subMenu.column2 .btnList.column2>* {
    width: 100%;
    margin-bottom: .5em;
  }

  .subMenu.column2>.boxL .txtBox,
  .subMenu.column2>.boxR .txtBox {
    width: 82%;
  }

  .subMenu.column2>.boxL::before,
  .subMenu.column2>.boxR::before {
    width: 18%;
  }

}


/*==========================================================================================
ここからSP
==========================================================================================*/
@media only screen and (max-width: 767px) {

  /*----------------------------------------
  変数
  -----------------------------------------*/
  :root {
    --inner-maxWidth: 767px;
    --inner-minWidth: 300px;

    --header-height: 20vw;
    --inner-padding-LR: 4vw;
  }

  html {
    font-size: 3.85vw;
  }

  body {
    margin-top: calc(-1 * var(--header-height));
    padding-top: var(--header-height);
    font-size: 3.85vw;
  }



  /*----------------------------------------
  各ページ共通パーツ
  -----------------------------------------*/
  .inner {
    min-width: auto;
    padding: 0 var(--inner-padding-LR);
  }

  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  .contents_wrap {
    padding: 10vw 0;
  }

  .column2>*,
  .column3>*,
  .column4>* {
    width: 100%;
  }

  .contents_list.column2>*+*,
  .contents_list.column3>*+*,
  .contents_list.column4>*+* {
    margin-top: var(--inner-padding-LR);
  }


  /*----------------------------------------
  子ページ
  -----------------------------------------*/
  /* 子ページトップ */
  .page_head {
    background: url(../img/common/top_img_sp.webp) center center no-repeat;
    background-size: cover;
    min-height: 10vw;
  }

  .page_head hgroup {
    padding-top: 15vw;
    padding-bottom: 15vw;
  }

  h1 {
    font-size: 8vw;
  }

  h2 {
    font-size: 1.75rem;
  }

  h2 .line {
    width: 90%;
  }

  h2.long .txt {
    font-size: 75%;
  }

  h2.long .line {
    width: 30%;
  }

  h4.txtG {
    font-size: 1.1rem;
  }

  .bgImg_wrap .inner {
    padding-top: 12vw;
    padding-bottom: 12vw;
  }

  .boxlink_list>li {
    margin-bottom: 20px;
  }

  .boxlink_list>li:last-child {
    margin-bottom: 0px;
  }

  .contents_wrap .innerBox {
    padding: calc(var(--inner-padding-LR) * 1);
  }

  /* 子ページサブメニュー */
  .subMenu {
    flex-wrap: wrap;
  }

  .subMenu>* {
    padding: 1.5vw var(--inner-padding-LR);
  }

  .subMenu.column2>* {
    width: 100%;
  }

  .subMenu.column3>*,
  .subMenu.column4>* {
    width: calc(100% / 2);
    text-align: left;
  }

  .subMenu.column3>*:last-child {
    width: calc(100% / 1);
  }


  .subMenu.column2>.boxL::before,
  .subMenu.column2>.boxR::before {
    content: unset;
    /* content: '';
    position: absolute;
    top: 50%;
    left: 0; */
  }

  .subMenu.column2>.boxL .txtBox,
  .subMenu.column2>.boxR .txtBox {
    width: 100%;
    max-width: unset;
    margin-left: 0;
    margin-right: 0;
  }

  .subMenu.column2 .tit {
    font-size: 1rem;
  }

  .subMenu.column2 .btnList.column2>* {
    width: 49%;
  }

  .subMenu.column2 .btnList .btnA {
    font-size: .9rem;
  }


  /* コンテンツボックス */
  .contents_wrap .inner+.inner {
    margin-top: 8vw;
  }


  /* 見出しボックス */
  .sectionWrap .top_h2 {
    top: -4vw;
    left: -1.5vw;
  }

  .sectionWrap .top_h2 img {
    height: 10vw;
  }

  .contentTitleWrap .subCopy {
    font-size: 3rem;
    color: var(--col-blue04);
    font-family: var(--font-family-poppins);
  }

  .contentTitleWrap .tittle {
    margin-top: -0.35em;
    margin-bottom: 1.25em;
    font-size: 1.35rem;
    font-weight: var(--font-weight-bold);
  }

  /* 丸見出し */
  .tit_iconRound {
    font-size: 1.4rem;
    line-height: 1.35;
    margin: 0.25em 0
  }

  .tit_iconRound_wrap+.tit_iconRound_wrap {
    margin-top: 8vw;
  }

  .sectionWrap .tit_iconRound_wrap {
    padding: var(--inner-padding-LR);
  }

  .tit_iconRound_wrap .innerBox:has(.tit_iconRound) {
    margin-left: 3.5em;
  }


  /* リスト_インデックスあり */
  .list_dotindex li {
    position: relative;
    padding-left: 1em;
  }

  .list_dotindex li::before {
    content: '・';
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    height: 1em;
  }


  /* アイコン付リスト */
  .list_icon li a {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .list_icon li+li {
    margin-top: 5px;
  }

  .list_icon li .icon {
    width: 35%;
    margin: auto;
  }

  .list_icon li .txtBox {
    width: 100%;
    text-align: center;
  }

  .list_icon li .tit {
    font-size: 4vw;
  }


}