@charset "UTF-8";
/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, 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 {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

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

caption, th, td {
  font-weight: normal;
  text-align: left;
  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;
}

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

a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
}

:root {
  --rate-vw: 0.0520833333vw;
  --rate-fz: 0.0520833333vw;
  --cap:1;
}
@media screen and (max-width: 999px) {
  :root {
    --rate-fz: 0.0714285714vw;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --rate-vw: 0.2666666667vw;
    --rate-fz: 0.2666666667vw;
    --cap:10;
  }
}

/*------------------------------
common
------------------------------*/
body {
  color: #222222;
  font-family: "Noto Sans JP", sans-serif;
  word-break: break-all;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* コンテンツ幅
------------------------------*/
.inner {
  margin: 0 auto;
  width: clamp(0px, 1800 * var(--rate-vw), 1800px * var(--cap));
  max-width: 1800px;
}
@media screen and (max-width: 767px) {
  .inner {
    width: clamp(0px, 300 * var(--rate-vw), 300px * var(--cap));
  }
}

@media (min-width: 768px) {
  .inner-1710-pc {
    width: 89.0625%;
    max-width: 1710px;
  }
}

@media (min-width: 768px) {
  .inner-1290-pc {
    width: 67.1875%;
    max-width: 1290px;
  }
}

/* テキスト色
------------------------------*/
.u-text-wh {
  color: #fff !important;
}

/* タイトル
------------------------------*/
.c-section-title {
  letter-spacing: 0.05em;
}

.c-section-title__en {
  display: block;
  font-size: clamp(0px, 64 * var(--rate-fz), 64px * var(--cap));
  font-weight: 700;
  font-family: "Figtree", sans-serif;
}
@media (max-width: 767px) {
  .c-section-title__en {
    font-size: clamp(0px, 13 * var(--rate-fz), 13px * var(--cap));
    font-weight: 600;
  }
}

.c-section-title__ja {
  display: inline-block;
  text-align: left;
  font-size: clamp(0px, 15 * var(--rate-fz), 15px * var(--cap));
  font-weight: 700;
  line-height: 2.0666666667;
  color: #ABABAB;
  padding-left: 1.5em;
  position: relative;
}
.c-section-title__ja::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #00C65C;
  width: 1.1em;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .c-section-title__ja {
    font-size: clamp(0px, 32 * var(--rate-fz), 32px * var(--cap));
    font-weight: 500;
    padding-left: 0;
    color: #222222;
    line-height: 1.4; /*  */
  }
  .c-section-title__ja::before {
    display: none;
  }
}

/* タイトル矢印
------------------------------*/
@media (max-width: 767px) {
  .u-title-arrow {
    position: relative;
    padding-right: 2em;
  }
  .u-title-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: url(../img/icon_arrow-green.png) no-repeat center center/contain;
    width: 1.2em;
    aspect-ratio: 1/1;
  }
}

/* 下層ページトップ
------------------------------*/
.c-page-hero {
  position: relative;
  padding: clamp(0px, 220 * var(--rate-vw), 220px * var(--cap)) 0 0;
  aspect-ratio: 1920/474;
  width: 100%;
}
@media (max-width: 767px) {
  .c-page-hero {
    padding: clamp(0px, 130 * var(--rate-vw), 130px * var(--cap)) 0 0;
    aspect-ratio: 375/325;
  }
}

.c-page-hero__visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-page-hero__visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-page-title {
  position: relative;
  color: #fff;
  padding-left: 9%;
  padding-top: 1%;
}
@media (max-width: 767px) {
  .c-page-title {
    padding-left: 5%; /*  */
    padding-top: 2%;
  }
}

.c-page-title__ja {
  display: inline-block;
  text-align: left;
  font-size: clamp(0px, 15 * var(--rate-fz), 15px * var(--cap));
  font-weight: 700;
  line-height: 2.0666666667;
  padding-left: 1.5em;
  position: relative;
}
.c-page-title__ja::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #00C65C;
  width: 1.1em;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .c-page-title__ja {
    font-size: clamp(0px, 32 * var(--rate-fz), 32px * var(--cap));
    font-weight: 500;
    padding-left: 0;
    padding-right: 1.9em;
    line-height: 1;
  }
  .c-page-title__ja::before {
    display: none;
  }
  .c-page-title__ja::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: url(../img/icon_arrow-green.png) no-repeat center center/contain;
    width: 1.2em;
    aspect-ratio: 1/1;
    display: none; /*  */
  }
}

.c-page-title__en {
  display: block;
  font-size: clamp(0px, 64 * var(--rate-fz), 64px * var(--cap));
  font-weight: 700;
  font-family: "Figtree", sans-serif;
}
@media (max-width: 767px) {
  .c-page-title__en {
    font-size: clamp(0px, 13 * var(--rate-fz), 13px * var(--cap));
    font-size: 600;
  }
}

/* ボーダータイトル
------------------------------*/
.c-border-title {
  font-size: clamp(0px, 30 * var(--rate-fz), 30px * var(--cap));
  font-weight: 700;
  line-height: 1.4666666667;
  padding-top: 0.6em;
  position: relative;
  margin-left: clamp(0px, 55 * var(--rate-vw), 55px * var(--cap));
}
.c-border-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #00C65C;
  width: 1.5em;
  height: 0.1em;
}
@media (max-width: 767px) {
  .c-border-title {
    font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
    line-height: 1.45;
    margin-left: clamp(0px, 0 * var(--rate-vw), 0px * var(--cap));
  }
}

/* ボタン
------------------------------*/
.c-btn {
  display: inline-block;
  font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
  font-weight: 700;
  position: relative;
  padding-right: 2.9em;
}
.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/icon_btn-arrow.png) no-repeat center center/contain;
  width: 2em;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .c-btn {
    font-size: clamp(0px, 13 * var(--rate-fz), 13px * var(--cap)); /*  */
  }
}

@media (max-width: 767px) {
  .c-btn-t2::after {
    background: url(../img/icon_arrow2.png) no-repeat center center/contain;
    aspect-ratio: 18/21;
    width: 0.8em;
  }
}

/* 下層ページメニュー
------------------------------*/
.c-page-nav {
  margin-top: clamp(0px, 26 * var(--rate-vw), 26px * var(--cap));
}
@media (max-width: 767px) {
  .c-page-nav {
    margin-top: 0;
    padding: clamp(0px, 32 * var(--rate-vw), 32px * var(--cap)) 0;
  }
  .c-page-nav .inner {
    width: 88%;
  }
}

.c-page-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: clamp(0px, 7 * var(--rate-vw), 7px * var(--cap));
}
.c-page-menu li {
  width: calc(33.3% - clamp(0px, 7 * var(--rate-vw), 7px * var(--cap)) * 2 / 3);
}
.c-page-menu li a {
  display: inline-block;
  width: 100%;
  font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  font-weight: 700;
  line-height: 2.3;
  letter-spacing: 0.05em;
  text-align: center;
  border: 1px solid #00C65C;
  border-radius: 0.25em;
  background: #F6F6F6;
  padding: 1.4em 0;
  position: relative;
}
.c-page-menu li a::after {
  content: "";
  position: absolute;
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
  background: #00C65C;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 0.5em;
  aspect-ratio: 10/7;
}
@media (max-width: 767px) {
  .c-page-menu {
    gap: clamp(0px, 5 * var(--rate-vw), 5px * var(--cap));
  }
  .c-page-menu li {
    width: calc(50% - clamp(0px, 5 * var(--rate-vw), 5px * var(--cap)) / 2);
  }
  .c-page-menu li a {
    font-size: clamp(0px, 13 * var(--rate-fz), 13px * var(--cap));
    background: #fff;
    line-height: 1.4;
    height: clamp(0px, 85 * var(--rate-vw), 85px * var(--cap));
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .c-page-menu li a::after {
    display: none;
  }
}

.c-page-menu-2 li {
  width: calc(50% - clamp(0px, 7 * var(--rate-vw), 7px * var(--cap)) * 1 / 2);
}

/* パンくずリスト
------------------------------*/
.c-breadcrumbs {
  font-size: clamp(0px, 15 * var(--rate-fz), 15px * var(--cap));
  font-weight: 400;
  line-height: 2.5333333333;
  color: #7D7D7D;
  margin-top: clamp(0px, 24 * var(--rate-vw), 24px * var(--cap));
}
.c-breadcrumbs a {
  display: inline-block;
  color: #B8B8B8;
}
@media (max-width: 767px) {
  .c-breadcrumbs {
    margin-top: clamp(0px, 10 * var(--rate-vw), 10px * var(--cap));
    font-size: clamp(0px, 9 * var(--rate-fz), 9px * var(--cap));
  }
}

.c-bread-dec {
  display: inline-block;
  background: #B8B8B8;
  aspect-ratio: 6/8;
  width: clamp(0px, 8 * var(--rate-vw), 8px * var(--cap));
  left: 0%;
  top: 0%;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
  margin: 0 clamp(0px, 20 * var(--rate-vw), 20px * var(--cap));
}
@media (max-width: 767px) {
  .c-bread-dec {
    width: clamp(0px, 7 * var(--rate-vw), 7px * var(--cap));
    margin: 0 clamp(0px, 10 * var(--rate-vw), 10px * var(--cap));
  }
}

/*------------------------------
CTA
------------------------------*/
@media (max-width: 767px) {
  .cta {
    padding: clamp(0px, 80 * var(--rate-vw), 80px * var(--cap)) 0 clamp(0px, 50 * var(--rate-vw), 50px * var(--cap));
  }
}

.cta__content {
  width: 81%;
  margin: 0 auto;
  border: 1px solid #00C65C;
  text-align: center;
  position: relative;
}
.cta__content::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #00C65C;
  width: calc(100% - 7px);
  height: calc(100% - 7px);
}
.cta__content::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 50%;
  right: clamp(0px, 84 * var(--rate-vw), 84px * var(--cap));
  transform: translateY(-50%);
  background: url(../img/icon_arrow.png) no-repeat center center/contain;
  width: clamp(0px, 76 * var(--rate-vw), 76px * var(--cap));
  aspect-ratio: 1/1;
}
.cta__content a {
  display: block;
  width: 100%;
  height: 100%;
  padding: clamp(0px, 50 * var(--rate-vw), 50px * var(--cap)) 0;
}
@media (max-width: 767px) {
  .cta__content {
    border: 1px solid #008346;
    border-radius: clamp(0px, 8 * var(--rate-vw), 8px * var(--cap));
    width: clamp(0px, 260 * var(--rate-vw), 260px * var(--cap));
  }
  .cta__content::before {
    display: none;
  }
  .cta__content::after {
    top: unset;
    bottom: clamp(0px, 20 * var(--rate-vw), 20px * var(--cap));
    left: clamp(0px, 45 * var(--rate-vw), 45px * var(--cap));
    left: 2em;
    right: unset;
    background: url(../img/icon_arrow-green.png) no-repeat center center/cover;
    width: clamp(0px, 39 * var(--rate-vw), 39px * var(--cap));
  }
  .cta__content a {
    padding: clamp(0px, 45 * var(--rate-vw), 45px * var(--cap)) clamp(0px, 0 * var(--rate-vw), 0px * var(--cap)) clamp(0px, 100 * var(--rate-vw), 100px * var(--cap));
  }
}

.cta__title {
  color: #00C65C;
  letter-spacing: 0.05em;
}

.cta__title-ja {
  display: block;
  font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
  font-weight: 700;
  line-height: 1.7222222222;
}
@media (max-width: 767px) {
  .cta__title-ja {
    display: none;
  }
}

.cta__title-en {
  display: block;
  font-size: clamp(0px, 58 * var(--rate-fz), 58px * var(--cap));
  font-weight: 700;
  font-family: "Figtree", sans-serif;
}
@media (max-width: 767px) {
  .cta__title-en {
    font-size: clamp(0px, 34 * var(--rate-fz), 34px * var(--cap));
    color: #008346;
  }
}

.cta__message {
  font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  margin-top: 0.5em;
}
@media (max-width: 767px) {
  .cta__message {
    font-size: clamp(0px, 12 * var(--rate-fz), 12px * var(--cap));
  }
}

/*------------------------------
関連情報
------------------------------*/
.related {
  padding: clamp(0px, 150 * var(--rate-vw), 150px * var(--cap)) 0 clamp(0px, 90 * var(--rate-vw), 90px * var(--cap));
}
@media (max-width: 767px) {
  .related {
    padding: clamp(0px, 80 * var(--rate-vw), 80px * var(--cap)) 0 0;
  }
}

@media (min-width: 768px) {
  .related__inner {
    width: 77%;
  }
}

.related__title {
  font-size: clamp(0px, 26 * var(--rate-fz), 26px * var(--cap));
  font-weight: 700;
  line-height: 1.6153846154;
}
@media (max-width: 767px) {
  .related__title {
    font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  }
}

.related__list {
  margin-top: clamp(0px, 28 * var(--rate-vw), 28px * var(--cap));
  display: flex;
  gap: 0 clamp(0px, 7 * var(--rate-vw), 7px * var(--cap));
}
@media (max-width: 767px) {
  .related__list {
    display: block;
    margin-top: clamp(0px, 20 * var(--rate-vw), 20px * var(--cap));
  }
}

@media (max-width: 767px) {
  .related__item:nth-child(n+2) {
    margin-top: clamp(0px, 10 * var(--rate-vw), 10px * var(--cap));
  }
  .related__item img {
    aspect-ratio: 302/156;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: clamp(0px, 6 * var(--rate-vw), 6px * var(--cap));
  }
}

.related__item-name {
  font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  font-weight: 700;
  margin-top: 0.75em;
}
@media (max-width: 767px) {
  .related__item-name {
    font-size: clamp(0px, 15 * var(--rate-fz), 15px * var(--cap));
    position: relative;
  }
  .related__item-name::before {
    content: "";
    position: absolute;
    background: #008346;
    aspect-ratio: 1/1;
    width: 1em;
    right: 0%;
    top: 50%;
    transform: translate(-10%, -50%) rotate(-45deg);
    -webkit-mask: url(../img/icon_nav-arrwo.png) center/100% no-repeat;
            mask: url(../img/icon_nav-arrwo.png) center/100% no-repeat;
  }
}

/*------------------------------
お知らせ一覧
------------------------------*/
.c-news-item:last-child {
  border-bottom: 1px solid #BFBFBF;
}
.c-news-item a {
  display: inline-block;
  width: 100%;
  border-top: 1px solid #BFBFBF;
  padding: clamp(0px, 30 * var(--rate-vw), 30px * var(--cap)) clamp(0px, 100 * var(--rate-vw), 100px * var(--cap));
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .c-news-item a {
    padding: clamp(0px, 28 * var(--rate-vw), 28px * var(--cap)) clamp(0px, 0 * var(--rate-vw), 0px * var(--cap)) clamp(0px, 34 * var(--rate-vw), 34px * var(--cap));
    display: block;
  }
}

.c-news-item__meta {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .c-news-item__meta {
    width: clamp(0px, 200 * var(--rate-vw), 200px * var(--cap));
  }
}
@media screen and (max-width: 999px) and (min-width: 769px) {
  .c-news-item__meta {
    width: 30%;
  }
}

.c-news-item__date {
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  font-weight: 700;
  font-family: "Figtree", sans-serif;
  letter-spacing: 0.05em;
  width: 5.5em;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .c-news-item__date {
    font-size: clamp(0px, 12 * var(--rate-fz), 12px * var(--cap));
  }
}

.c-news-item__category {
  font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
  font-weight: 700;
  background: #F3F3F3;
  padding: 1em;
  border-radius: 0.2em;
  margin-left: 1.2em;
}
@media (max-width: 767px) {
  .c-news-item__category {
    font-size: clamp(0px, 10 * var(--rate-fz), 10px * var(--cap));
    border: 1px solid #008346;
    background: transparent;
    border-radius: 0;
    padding: 0.2em 1em;
  }
}

.c-news-item__title {
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  font-weight: 500;
}
@media (min-width: 768px) {
  .c-news-item__title {
    padding-left: 3em;
    width: calc(100% - clamp(0px, 200 * var(--rate-vw), 200px * var(--cap)));
  }
}
@media screen and (max-width: 999px) and (min-width: 769px) {
  .c-news-item__title {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .c-news-item__title {
    margin-left: 0;
    margin-top: 0.5em;
    font-size: clamp(0px, 13 * var(--rate-fz), 13px * var(--cap));
  }
}

/*------------------------------
topics
------------------------------*/
.c-topics-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0px, 80 * var(--rate-vw), 80px * var(--cap)) clamp(0px, 60 * var(--rate-vw), 60px * var(--cap));
}
@media (max-width: 767px) {
  .c-topics-list {
    gap: clamp(0px, 40 * var(--rate-vw), 40px * var(--cap)) 0;
  }
}

.c-topics-item {
  width: calc((100% - clamp(0px, 60 * var(--rate-vw), 60px * var(--cap)) * 2) / 3);
}
@media (max-width: 767px) {
  .c-topics-item {
    width: 100%;
  }
}

.c-topics-item__meta {
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  margin-top: 1em;
}

.c-topics-item__img img {
  border-radius: clamp(0px, 8 * var(--rate-vw), 8px * var(--cap));
  aspect-ratio: 444/273;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-topics-item__date {
  color: #9F9F9F;
  font-weight: bold;
}

.c-topics-item__title {
  margin-top: 1em;
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
}

.c-topics-item__category {
  font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
  font-weight: 700;
  background: #E5E5E5;
  color: #979797;
  padding: 0.8em 1em;
  border-radius: 0.2em;
  margin-left: 0em;
  display: inline-block;
  border-radius: clamp(0px, 3 * var(--rate-vw), 3px * var(--cap));
  margin-top: 1em;
}
@media (max-width: 767px) {
  .c-topics-item__category {
    font-size: clamp(0px, 10 * var(--rate-fz), 10px * var(--cap));
    border: 1px solid #008346;
    background: transparent;
    border-radius: 0;
    padding: 0.2em 1em;
  }
}

/*------------------------------
404
------------------------------*/
.error-page {
  padding: 10% 0 24.4%;
  text-align: center;
}
.error-page h2 {
  font-size: 6rem;
  font-weight: bold;
}
.error-page p {
  padding-top: 5%;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .error-page h2 {
    font-size: 4rem;
  }
  .error-page p {
    font-size: 1.6rem;
  }
}

.c-link-arrow {
  position: relative;
}
.c-link-arrow::before {
  content: "";
  position: absolute;
  background: #00C65C;
  aspect-ratio: 1/1;
  width: 1em;
  right: 0%;
  top: calc(1em + 0.5lh);
  transform: translate(-10%, -50%);
  -webkit-mask: url(../img/icon_arrow3.png) center/100% no-repeat;
          mask: url(../img/icon_arrow3.png) center/100% no-repeat;
}

.u-ml-0 {
  margin-left: 0 !important;
}
/*# sourceMappingURL=common.css.map */