@charset "UTF-8";
/*//////////////////////////////////////////////////////////
------------------------------------------------------------
CSS information
 file name  :  reset.css
 style info :  リセットファイル
//////////////////////////////////////////////////////////*/
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

html {
  overflow-y: scroll;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, ul {
  margin: 0;
  padding: 0;
}

body, button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

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

small {
  font-size: inherit;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul, ol {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0px;
}

nav ul, nav ol {
  list-style: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure, form {
  margin: 0;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  *margin-left: -7px;
}

button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button, input {
  line-height: normal;
  *overflow: visible;
}

button {
  cursor: pointer;
  -webkit-appearance: button;
}

input[type=button], input[type=reset], input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}
input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
}
input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

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

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

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

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style: none;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
* {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.ie6_error, .no_script {
  background: #F66;
  padding: 100px;
  text-align: center;
  font-size: 150%;
  color: #333;
}

.flt {
  float: left;
}

.flr {
  float: right;
}

.txt_l, td.txt_l, .txt_l td {
  text-align: left;
}

.txt_r, td.txt_r, .txt_r td {
  text-align: right;
}

.txt_c, td.txt_c, .txt_c td {
  text-align: center;
}

.valign_t, td.valign_t, .valign_t td {
  vertical-align: top;
}

.valign_m, td.valign_m, .valign_m td {
  vertical-align: middle;
}

.valign_b, td.valign_b, .valign_b td {
  vertical-align: bottom;
}

.clear {
  clear: both;
}

.clearfix {
  zoom: 1;
}
.clearfix:before {
  content: "";
  display: block;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.img_bd {
  border: solid 1px #E8E8E8;
}

.c_red {
  color: #FF3425;
}

a {
  text-decoration: none;
}

button {
  color: inherit;
}

select {
  color: inherit;
}

.mincho {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.gothic {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.en {
  font-family: "Jost", serif;
}

.c_green {
  color: #008E44;
}

:root {
  --sideW: min(7vw, 80px);
  --headerHeight: 100px;
  --extend: calc( (50vw - 50%) * -1 );
}

@media screen and (max-width: 767px) {
  :root {
    --sideW: min(7.2vw, 80px);
    --headerHeight: 60px;
  }
}
html {
  scroll-behavior: smooth;
  /* scroll-padding-top: var(--headerHeight); */
}

body {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.inner, .inner_s, .inner_m {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sideW);
}

.inner_m {
  max-width: calc(1000px + var(--sideW) * 2);
}

.inner_s {
  max-width: calc(800px + var(--sideW) * 2);
}

html {
  background-color: #F5F5ED;
}

a {
  color: #000;
}

a.link_text {
  color: #0033CC;
  text-decoration: underline;
}

picture {
  display: block;
}
picture img {
  display: block;
  width: 100%;
}

.opacity, .page-c-1 .anchorlink li a, .area__link, .card_business__link, .link_simulation, .card_archive_event:hover, .g_menu .list_menu > li.has_child .child li a, .g_menu .list_menu > li.has_child .parent a, .g_menu .list_menu > li > a {
  transition: 0.3s;
}
@media (hover: hover) {
  .opacity:hover, .page-c-1 .anchorlink li a:hover, .area__link:hover, .card_business__link:hover, .link_simulation:hover, .card_archive_event:hover, .g_menu .list_menu > li.has_child .child li a:hover, .g_menu .list_menu > li.has_child .parent a:hover, .g_menu .list_menu > li > a:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.kome {
  padding-left: 1em;
  text-indent: -1em;
}
.kome::before {
  content: "※";
}

.prepare {
  padding: 100px 0 140px;
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .prepare {
    font-size: 16px;
    padding: 80px 0 100px;
  }
}

.ttl_cmn_01 {
  position: relative;
  padding: 27.5px 0;
}
.ttl_cmn_01 .ja {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.ttl_cmn_01 .en {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Jost", serif;
  font-size: 6.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_01 {
    padding: 0;
  }
  .ttl_cmn_01 .ja {
    font-size: 28px;
  }
  .ttl_cmn_01 .en {
    font-size: 60px;
  }
}

.ttl_cmn_02 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3.5rem;
}
.ttl_cmn_02:after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background-color: #008E44;
  margin: 1rem auto 0;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_02 {
    margin-bottom: 2rem;
  }
}

.ttl_cmn_03 {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  border: 3px solid #000;
  box-shadow: 5px 5px 0px #000;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.36;
  padding: 1em 1.25em;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_03 {
    font-size: 22px;
    padding: 0.75em 1em;
  }
}

.btn_cmn_01 {
  display: flex;
  align-items: center;
  padding: 0 0 0 12px;
  width: 190px;
  height: 30px;
  background: #000 url(../images/ico_arrow_right.svg) no-repeat center right 11px/7px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.btn_cmn_02 {
  display: block;
  width: 167px;
  position: relative;
}
.btn_cmn_02 > span {
  position: relative;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-left: 14px;
  font-size: 1.25rem;
  font-weight: 700;
  border: 2px solid #000;
  border-radius: 50px;
  background-color: #fff;
  transition: 0.5s;
}
.btn_cmn_02 > span:after {
  content: "";
  display: block;
  width: 28px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #008E44 url(../images/ico_arrow_right_02.svg) no-repeat center left 10px/10px;
}
.btn_cmn_02 > span span {
  display: contents;
}
.btn_cmn_02:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 50px;
  position: absolute;
  top: 5px;
  left: 5px;
}
.btn_cmn_02:hover span {
  transform: translate(5px, 5px);
}

.btn_cmn_03 {
  position: relative;
  display: block;
  width: 100%;
  max-width: 313px;
  background-color: #000;
  border-radius: 100px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  padding: 11px 0;
  margin: 0 auto;
}
.btn_cmn_03:after {
  content: "";
  display: block;
  width: 28px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_right_03.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}

.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(231, 231, 231, 0.699);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .progress-wrap {
    right: 20px;
    bottom: 20px;
  }
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-bottom: 8px solid #008E44;
  border-top: 0;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #46B72A;
  stroke-width: 5;
  box-sizing: border-box;
  transition: all 200ms linear;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: var(--headerHeight);
  padding: 0 0 0 25px;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 0 0 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 52%;
  }
  .header__logo img {
    display: block;
    width: 100%;
  }
}
.header__right {
  display: flex;
  align-items: center;
  padding-right: 100px;
}
@media screen and (max-width: 767px) {
  .header__right {
    padding-right: 80px;
  }
}
.header__right ul.pc {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__right ul.pc li {
  font-size: 0.875rem;
}
@media screen and (max-width: 1140px) {
  .header__right ul.pc {
    display: none !important;
  }
}

.search {
  margin: 0 38px 0 25px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .search {
    margin: 0;
  }
}
.search .btn_search {
  width: 20px;
  display: block;
}
.search .btn_search img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .search .btn_search {
    margin: 5px 0 0;
  }
}
.search form {
  display: none;
  position: absolute;
  z-index: 1;
  top: calc(100% + 10px);
  right: -15px;
  width: 280px;
}
.search form input[type=text] {
  border-radius: 0;
  border: 1px solid #CDD6DD;
  width: 100%;
  font-size: 1rem;
  padding: 0.5em 1.5em 0.5em 0.5em;
}
.search form input[type=submit] {
  display: block;
  width: 20px;
  aspect-ratio: 1/1;
  background: url("../images/ico_search.svg") no-repeat center/contain;
  position: absolute;
  right: 14px;
  top: 9px;
  border: none;
}

.hbm__btn {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  border: none;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--headerHeight);
  aspect-ratio: 1/1;
  background-color: #008E44;
}
.hbm__btn .box {
  display: block;
  width: 36px;
  aspect-ratio: 36/25;
  position: relative;
}
.hbm__btn .box .bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: 0.3s;
}
.hbm__btn .box .bar:nth-child(1) {
  top: 0;
}
.hbm__btn .box .bar:nth-child(2) {
  top: 50%;
}
.hbm__btn .box .bar:nth-child(3) {
  top: 100%;
  width: 62.5%;
}
.hbm__btn.js-active .box .bar:nth-child(1) {
  top: 50%;
  transform: rotate(-135deg);
}
.hbm__btn.js-active .box .bar:nth-child(2) {
  top: 50%;
  transform: rotateY(90deg);
}
.hbm__btn.js-active .box .bar:nth-child(3) {
  top: 50%;
  width: 100%;
  transform: rotate(135deg);
}

.g_menu {
  transition: transform 0.3s;
  transform: translateX(100%);
  display: block;
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  padding: 65px 70px 30px;
  background-color: #008E44;
  width: 100%;
  height: 100%;
  overflow: scroll;
  max-width: 605px;
}
.g_menu.js-active {
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .g_menu {
    padding: 80px 8% 30px;
  }
}
.g_menu a {
  color: #fff;
  font-weight: 700;
}
.g_menu .list_menu > li {
  border-top: 1px solid #fff;
  padding: 1.09em 0;
}
.g_menu .list_menu > li:first-child {
  border-top: none;
}
.g_menu .list_menu > li.has_child {
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  .g_menu .list_menu > li.has_child {
    display: block;
  }
}
.g_menu .list_menu > li.has_child .parent {
  width: 185px;
  flex-shrink: 0;
}
.g_menu .list_menu > li.has_child .parent .child_open {
  display: none;
  padding: 0;
  border: none;
}
@media screen and (max-width: 767px) {
  .g_menu .list_menu > li.has_child .parent .child_open {
    display: inline-block;
    width: 16px;
    aspect-ratio: 1/1;
    background: transparent url(../images/ico_arrow_bottom.svg) no-repeat center top 6px/contain;
    margin-left: 0.5rem;
  }
  .g_menu .list_menu > li.has_child .parent .child_open.js-active {
    transform: rotateX(180deg);
    background: transparent url(../images/ico_arrow_bottom.svg) no-repeat center top 4px/contain;
  }
}
@media screen and (max-width: 767px) {
  .g_menu .list_menu > li.has_child .child {
    padding-top: 10px;
    display: none;
  }
}
.g_menu .list_menu > li.has_child .child li {
  margin-bottom: 0.5em;
}
.g_menu .list_menu > li.has_child .child li:last-child {
  margin-bottom: 0;
}
.g_menu .list_menu > li.has_child .child li a {
  padding-left: 1.25em;
  display: inline-block;
  position: relative;
}
.g_menu .list_menu > li.has_child .child li a:before {
  content: "";
  width: 1rem;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transition: 0.3s;
}
@media (hover: hover) {
  .g_menu .list_menu > li.has_child .child li a:hover:before {
    transform: rotateY(90deg);
    transform-origin: center right;
  }
}
.g_menu .list_sns {
  margin-top: 15px;
}
.g_menu .list_sns li {
  display: inline-block;
  margin-right: 28px;
}
.g_menu .list_sns li:last-child {
  margin-right: 0;
}

.footer {
  position: relative;
  background-color: #fff;
  border-top: 1px solid #000;
  padding: 60px 0;
}
.footer .footer_content {
  display: flex;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  .footer .footer_content {
    flex-direction: column;
  }
}
.footer .footer_left {
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .footer .footer_left {
    display: contents;
  }
}
.footer .footer_right {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .footer .footer_right {
    order: 3;
    margin-top: 25px;
  }
}
.footer__logo {
  width: 400px;
}
.footer__logo img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    order: 1;
  }
}

address {
  margin-top: 30px;
  margin-left: 84px;
}
@media screen and (max-width: 767px) {
  address {
    order: 2;
    font-size: 14px;
    margin-top: 18px;
    margin-left: 18px;
  }
}

.copyright {
  font-size: 0.75rem;
  margin-top: 30px;
  margin-left: 84px;
}
@media screen and (max-width: 767px) {
  .copyright {
    order: 4;
    margin-left: 0;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .footer_nav {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.footer_nav ul {
  -moz-column-count: 2;
       column-count: 2;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1000px) {
  .footer_nav ul {
    -moz-column-count: unset;
         column-count: unset;
  }
}
.footer_nav ul li {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .footer_nav ul li {
    margin-bottom: 1em;
  }
}
.footer_nav a {
  font-weight: 700;
}
.footer_nav a:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 12px;
  background: url(../images/ico_arrow_right_green.svg) no-repeat center/contain;
  margin-right: 8px;
}

.footer_sns {
  display: flex;
  gap: 23px;
}
@media screen and (max-width: 767px) {
  .footer_sns {
    justify-content: center;
  }
}
.footer_sns li {
  width: 100%;
  max-width: 100px;
}
.footer_sns li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 100px;
  aspect-ratio: 1/1;
  background-color: #008E44;
  font-size: 0.75rem;
  color: #fff;
  text-align: center;
}
.footer_sns li a:before {
  content: "";
  display: block;
  width: 36%;
  aspect-ratio: 36/37;
  background: no-repeat center/contain;
  margin: 0 auto 5px;
}
.footer_sns li a.instagram:before {
  background-image: url(../images/ico_instagram_white.svg);
}
.footer_sns li a.x:before {
  background-image: url(../images/ico_x_white.svg);
}

@keyframes bounce {
  0% {
    transform: translateY(80px);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  65% {
    transform: translateY(20px);
    opacity: 1;
  }
  85% {
    transform: translateY(0);
    opacity: 1;
  }
  90% {
    transform: translateY(5px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.main_visual {
  position: relative;
}
.main_visual .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 80px;
}
@media screen and (min-width: 768px) {
  .main_visual .text {
    padding-top: 0px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 0 6.3%;
  }
}
.main_visual .text .main {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .main_visual .text .main {
    width: 52%;
  }
  .main_visual .text .main img {
    display: block;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .main_visual .text .main {
    margin: 0;
  }
}
.main_visual .text p {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  text-shadow: 0 6px 6px rgba(0, 0, 0, 0.75);
  position: relative;
}
@media screen and (max-width: 767px) {
  .main_visual .text p {
    font-size: 19px;
    margin-top: 16px;
    opacity: 0;
  }
  .main_visual .text p.js-active {
    animation: bounce 0.5s 0.5s forwards;
  }
}
@media screen and (min-width: 768px) {
  .main_visual .text p {
    opacity: 0;
    transition: opacity 0.3s 1.5s ease-in;
  }
  .main_visual .text p.js-active {
    opacity: 1;
  }
}
.main_visual .text p:before, .main_visual .text p:after {
  display: block;
  content: "";
  width: 5px;
  height: 38px;
  background-color: #fff;
  position: absolute;
  top: 0;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.75);
}
@media screen and (max-width: 767px) {
  .main_visual .text p:before, .main_visual .text p:after {
    width: 3px;
    height: 31px;
  }
}
.main_visual .text p:before {
  transform: rotate(-32deg);
  right: calc(100% + 24px);
}
.main_visual .text p:after {
  transform: rotate(32deg);
  left: calc(100% + 16px);
}
@media screen and (min-width: 768px) {
  .main_visual .text p {
    margin: 0px 0 0 15px;
    padding: 0 0 0 64px;
    text-shadow: 0 6px 10px #000;
  }
  .main_visual .text p:before {
    width: 50px;
    height: 3px;
    transform: none;
    left: 0;
    top: calc(50% - 1px);
    box-shadow: 0 6px 6px #000;
  }
  .main_visual .text p:after {
    content: none;
  }
}
.main_visual .scroll-btn {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 3%;
}
.main_visual .scroll-btn > * {
  line-height: 10px;
  font-size: 13px;
  font-weight: normal;
  color: #fff;
  color: #fff;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.1em;
}
.main_visual .scroll-btn > *:hover, .main_visual .scroll-btn > *:focus, .main_visual .scroll-btn > *.active {
  color: #fff;
}
.main_visual .scroll-btn > *:hover, .main_visual .scroll-btn > *:focus, .main_visual .scroll-btn > *:active, .main_visual .scroll-btn > *.active {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.main_visual .scroll-btn .mouse {
  position: relative;
  display: block;
  width: 35px;
  height: 55px;
  margin: 0 auto 10px;
  box-sizing: border-box;
  border: 1px solid #fff;
  border-radius: 23px;
}
.main_visual .scroll-btn .mouse > * {
  position: absolute;
  display: block;
  top: 29%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: #fff;
  border-radius: 50%;
  animation: ani-mouse 2.5s linear infinite;
}
@keyframes ani-mouse {
  0% {
    opacity: 1;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 50%;
  }
  50% {
    opacity: 0;
    top: 50%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}
.main_visual .splide__slide.is-active picture,
.main_visual .splide__slide.is-prev picture,
.main_visual .splide__slide picture.is-prev {
  animation: scale 15s linear 0s normal both;
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.main_visual .splide__slide picture {
  display: block;
  overflow: hidden;
  position: relative;
}
.main_visual .splide__slide picture:after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 668px;
}
@media screen and (max-width: 767px) {
  .main_visual .splide__slide picture:after {
    padding-top: 607px;
  }
}
.main_visual .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.main_visual .splide__pagination {
  display: block;
  left: unset;
  bottom: 0;
  margin: 0 0 60px;
}
@media screen and (max-width: 767px) {
  .main_visual .splide__pagination {
    margin: 0 0 13px;
  }
}
.main_visual .splide__pagination li {
  display: block;
}
.main_visual .splide__pagination__page {
  width: 10px;
  height: 10px;
  opacity: 1;
  background-color: #fff;
  position: relative;
  margin: 9px;
}
.main_visual .splide__pagination__page:after {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background: transparent;
  border: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0;
}
.main_visual .splide__pagination__page.is-active {
  transform: none;
}
.main_visual .splide__pagination__page.is-active:after {
  opacity: 1;
}

.top_nav {
  padding-top: 3.125rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .top_nav {
    margin-bottom: 70px;
  }
}

.top_nav_list {
  display: flex;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  .top_nav_list {
    flex-direction: column;
    gap: 30px;
    width: 87.5%;
    margin: 0 auto;
  }
}
.top_nav_list li {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .top_nav_list li {
    width: 100%;
  }
}
.top_nav_list li a {
  display: block;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  text-align: center;
}
.top_nav_list li a:before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 300/238;
  background: no-repeat center/cover;
  transition: 0.3s;
}
.top_nav_list li a .text {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 9px 19px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .top_nav_list li a .text {
    font-size: 18px;
  }
}
.top_nav_list li a .text span {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  background: url(../images/ico_arrow_right.svg) no-repeat center right/11px;
}
@media screen and (max-width: 767px) {
  .top_nav_list li a .text span {
    background: url(../images/ico_arrow_right.svg) no-repeat center right/9px;
  }
}
.top_nav_list li a .text:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #008E44;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}
@media (hover: hover) {
  .top_nav_list li a:hover:before {
    transform: scale(1.1);
  }
}
.top_nav_list li:nth-child(1) a:before {
  background-image: url(../images/top_nav_01.jpg);
}
.top_nav_list li:nth-child(2) a:before {
  background-image: url(../images/top_nav_02.jpg);
}
.top_nav_list li:nth-child(3) a:before {
  background-image: url(../images/top_nav_03.jpg);
}

.top_notice {
  padding-bottom: 3.375rem;
}
@media screen and (max-width: 767px) {
  .top_notice .ttl_cmn_01 {
    margin-bottom: 17px;
  }
}

.top_notice_content,
.top_event_content {
  position: relative;
}
.top_notice_content ul,
.top_event_content ul {
  background-color: #fff;
  padding: 20px 4.5%;
}
@media screen and (max-width: 767px) {
  .top_notice_content ul,
  .top_event_content ul {
    padding: 16px 6.25% 28px;
  }
}
.top_notice_content ul li,
.top_event_content ul li {
  border-bottom: 1px solid #008E44;
}
.top_notice_content ul li:last-child,
.top_event_content ul li:last-child {
  border-bottom: none;
}
.top_notice_content .btn_cmn_01,
.top_event_content .btn_cmn_01 {
  margin: -15px 45px 0 auto;
}
@media screen and (max-width: 767px) {
  .top_notice_content .btn_cmn_01,
  .top_event_content .btn_cmn_01 {
    margin: -15px auto 0;
  }
}

.card_top_notice {
  display: flex;
  align-items: center;
  padding: 13px 0;
}
@media screen and (max-width: 767px) {
  .card_top_notice {
    flex-direction: column;
    align-items: flex-start;
  }
}
.card_top_notice .date {
  flex-shrink: 0;
  width: 100px;
  font-family: "Jost", serif;
  font-size: 16px;
  color: #008E44;
}
@media screen and (max-width: 767px) {
  .card_top_notice .date {
    font-size: 14px;
    margin-bottom: 3px;
  }
}
.card_top_notice .ttl {
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 767px) {
  .card_top_notice .ttl {
    font-size: 15px;
    -webkit-line-clamp: 2;
  }
}

.top_calender {
  padding: 3.75em 0;
  background: url(../images/top_calender_bg.jpg) no-repeat center/cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_calender {
    background: url(../images/top_calender_bg_sp.jpg) no-repeat center top/cover;
    padding: 55px 0 32px;
  }
}
.top_calender:before {
  content: "";
  display: block;
  width: 212px;
  aspect-ratio: 212/92;
  background: url(../images/top_calendar_deco.svg) no-repeat center bottom/contain;
  position: absolute;
  left: 8.93%;
  top: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .top_calender:before {
    width: 32.2%;
    max-width: 212px;
    top: -3.1%;
    transform: none;
  }
}
.top_calender .ttl_cmn_01 {
  margin-bottom: 6rem;
}
.top_calender .ttl_cmn_01 .en {
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .top_calender .ttl_cmn_01 {
    margin-bottom: 80px;
  }
}
.top_calender .calender img {
  width: 100%;
}

.top_event {
  padding: 6rem 0;
}
@media screen and (max-width: 767px) {
  .top_event {
    padding: 50px 0 96px;
  }
}
.top_event .ttl_cmn_01 {
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .top_event .ttl_cmn_01 {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .list_top_event > li:first-child {
    padding-top: 0;
  }
}

.card_top_event {
  display: flex;
  align-items: center;
  padding: 13px 0;
}
@media screen and (max-width: 767px) {
  .card_top_event {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
.card_top_event .category {
  margin-right: 18px;
  flex-shrink: 0;
}
.card_top_event .date {
  flex-shrink: 0;
  width: 92px;
  font-family: "Jost", serif;
  font-size: 1rem;
  color: #008E44;
}
@media screen and (max-width: 767px) {
  .card_top_event .date {
    font-size: 14px;
    margin-top: 3px;
  }
}
.card_top_event .ttl {
  flex-grow: 1;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 767px) {
  .card_top_event .ttl {
    font-size: 15px;
    -webkit-line-clamp: 4;
  }
}

.category_label {
  display: block;
  width: 147px;
  font-size: 12px;
  font-weight: 700;
  padding: 3px;
  text-align: center;
  color: #fff;
}
.category_label.blue {
  background-color: #039BE5;
}
.category_label.pink {
  background-color: #E67C73;
}
.category_label.green {
  background-color: #69C083;
}
.top_sns {
  background-color: #008E44;
  padding: 70px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_sns {
    padding: 35px 0 47px;
  }
}
.top_sns:before {
  content: "";
  display: block;
  width: 58px;
  aspect-ratio: 58/152;
  background: url(../images/top_sns_deco.svg) no-repeat center/contain;
  position: absolute;
  top: -90px;
  right: 6.4%;
}
@media screen and (max-width: 767px) {
  .top_sns:before {
    content: none;
    /* top: -65px; */
    /* right: 11.2%; */
  }
}

.top_sns_content {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top_sns_content {
    flex-direction: column;
  }
}

.box_instagram {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 80px;
}
.box_instagram .feed {
  width: 100%;
  max-width: 334px;
}
.box_instagram .feed img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .box_instagram {
    flex-direction: column;
    padding: 0;
    gap: 24px;
  }
  .box_instagram .account {
    display: contents;
  }
  .box_instagram p {
    order: 1;
  }
  .box_instagram .feed {
    order: 2;
  }
  .box_instagram a {
    order: 3;
    margin-top: 6px !important;
  }
}

.box_x {
  padding: 0 80px;
  border-left: 2px solid #fff;
}
@media screen and (max-width: 767px) {
  .box_x {
    padding: 0;
    border-left: none;
    border-top: 2px solid #fff;
    margin-top: 50px;
  }
  .box_x .account {
    padding: 50px 0 0;
  }
}

.account {
  padding: 35px 0;
}
.account .logo {
  text-align: center;
  color: #fff;
  font-family: "Jost", serif;
  font-size: 1.25rem;
}
.account .logo:before {
  content: "";
  display: block;
  width: 70px;
  aspect-ratio: 1/1;
  background: no-repeat center/contain;
  margin: 0 auto 8px;
}
.account .btn {
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 66px;
  aspect-ratio: 1/1;
  background-color: #000;
  color: #fff;
}
.account .btn span {
  display: block;
  font-size: 15px;
}
.account .btn span:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 12px;
  background: url(../images/ico_arrow_right.svg) no-repeat center/8px;
  margin-left: 5px;
}

.box_instagram .account .logo:before {
  background-image: url(../images/ico_instagram_white.svg);
}

.box_x .account .logo:before {
  background-image: url(../images/ico_x_white.svg);
}

.top_detail {
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top_detail {
    padding: 64px 0 80px;
  }
}
.top_detail .inner, .top_detail .inner_m, .top_detail .inner_s {
  max-width: calc(956px + var(--sideW) * 2);
}
.top_detail .btn_cmn_02 {
  margin: 3.125rem auto 0;
}

.top_detail_list > li {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 7.3%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top_detail_list > li {
    flex-direction: column;
    margin-bottom: 48px;
    position: relative;
  }
}
.top_detail_list > li:nth-child(odd) {
  flex-direction: row-reverse;
}
.top_detail_list > li:nth-child(odd) .top_detail_card__ttl:after {
  right: unset;
  left: -100px;
}
@media screen and (max-width: 767px) {
  .top_detail_list > li:nth-child(odd) {
    flex-direction: column;
  }
}
.top_detail_list > li:last-child {
  margin-bottom: 0;
}
.top_detail_list > li:nth-child(1) {
  background: url(../images/top_detail_deco_01.svg) no-repeat top 17px right 9.4%/11.08%;
}
@media screen and (max-width: 767px) {
  .top_detail_list > li:nth-child(1) {
    background: none;
  }
  .top_detail_list > li:nth-child(1):before {
    content: "";
    display: block;
    width: 84px;
    aspect-ratio: 84/108;
    background: url(../images/top_detail_deco_01.svg) no-repeat center/contain;
    position: absolute;
    top: -34px;
    right: -18px;
  }
}
.top_detail_list > li:nth-child(2) {
  background: url(../images/top_detail_deco_02.svg) no-repeat bottom 36px left 8.15%/12.13%;
}
@media screen and (max-width: 767px) {
  .top_detail_list > li:nth-child(2) {
    background: none;
  }
  .top_detail_list > li:nth-child(2):before {
    content: "";
    display: block;
    width: 84px;
    aspect-ratio: 84/51;
    background: url(../images/top_detail_deco_02.svg) no-repeat center/contain;
    position: absolute;
    top: -25px;
    left: 0;
  }
}
.top_detail_list > li:nth-child(3) {
  background: url(../images/top_detail_deco_03.svg) no-repeat top 35px right 7.8%/10.14%;
  gap: 4.6%;
}
.top_detail_list > li:nth-child(3) .top_detail_card__ttl {
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .top_detail_list > li:nth-child(3) {
    background: none;
  }
  .top_detail_list > li:nth-child(3):before {
    content: "";
    display: block;
    width: 87px;
    aspect-ratio: 87/62;
    background: url(../images/top_detail_deco_03.svg) no-repeat center/contain;
    position: absolute;
    top: -70px;
    right: -18px;
  }
  .top_detail_list > li:nth-child(3) .top_detail_card__ttl {
    font-size: 36px;
  }
}

.top_detail_card .box_image {
  position: relative;
  width: 47.6%;
  display: block;
  overflow: hidden;
  aspect-ratio: 456/410;
}
.top_detail_card .box_image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .top_detail_card .box_image {
    order: 2;
    width: 74.76%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top_detail_card .box_text {
    display: contents;
  }
}
.top_detail_card__ttl {
  color: #008E44;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_detail_card__ttl {
    order: 1;
    font-size: 42px;
    margin-bottom: 10px;
  }
}
.top_detail_card__ttl span {
  display: block;
  font-size: 0.6em;
}
.top_detail_card__ttl:after {
  content: "";
  display: block;
  width: 100vw;
  height: 2px;
  background-color: #46B72A;
  position: absolute;
  bottom: -20px;
  right: -100px;
}
@media screen and (max-width: 767px) {
  .top_detail_card__ttl:after {
    content: none;
  }
}
.top_detail_card__text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top_detail_card__text {
    order: 3;
    line-height: 1.625;
  }
}
.top_detail_card__link {
  margin: 30px auto 0;
  display: block;
  width: 100%;
  max-width: 115px;
  background-color: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  padding: 3px;
}
.top_detail_card__link:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 12px;
  background: url(../images/ico_arrow_right.svg) no-repeat center/contain;
  margin-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .top_detail_card__link {
    order: 4;
    margin-top: 20px;
  }
}

.page_header {
  height: 247px;
  background: no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .page_header {
    height: 168px;
  }
}

.ttl_page_h1 {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-bottom: -40px;
}
.ttl_page_h1:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #008E44;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}
.ttl_page_h1 span {
  position: relative;
  padding: 0.65em 1em;
  display: block;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ttl_page_h1 span {
    font-size: 28px;
    padding: 0.6em 1.25em;

  }
}

.archive-news .page_header,
.single-news .page_header {
  background-image: url(../images/news_page_header_bg.jpg);
}
@media screen and (max-width: 767px) {
  .archive-news .page_header,
  .single-news .page_header {
    background-image: url(../images/news_page_header_bg_sp.jpg);
  }
}
@media screen and (max-width: 767px) {
  .archive-news .breadcrumb,
  .single-news .breadcrumb {
    display: none;
  }
}

.archive-event .page_header,
.single-event .page_header {
  background-image: url(../images/event_page_header_bg.jpg);
}
@media screen and (max-width: 767px) {
  .archive-event .page_header,
  .single-event .page_header {
    background-image: url(../images/event_page_header_bg_sp.jpg);
  }
}
@media screen and (max-width: 767px) {
  .archive-event .breadcrumb,
  .single-event .breadcrumb {
    display: none;
  }
}

.single-event-entry .page_header,
.single-event-entry-thanks .page_header {
  background-image: url(../images/event_page_header_bg.jpg);
}
@media screen and (max-width: 767px) {
  .single-event-entry .page_header,
  .single-event-entry-thanks .page_header {
    background-image: url(../images/event_page_header_bg_sp.jpg);
  }
}
@media screen and (max-width: 767px) {
  .single-event-entry .breadcrumb,
  .single-event-entry-thanks .breadcrumb {
    display: none;
  }
}

.page-contact .page_header,
.page-contact-thanks .page_header {
  background-image: url(../images/contact_page_header_bg.jpg);
}
@media screen and (max-width: 767px) {
  .page-contact .page_header,
  .page-contact-thanks .page_header {
    background-image: url(../images/contact_page_header_bg_sp.jpg);
  }
}
@media screen and (max-width: 767px) {
  .page-contact .breadcrumb,
  .page-contact-thanks .breadcrumb {
    display: none;
  }
}

.page-a .page_header {
  background-image: url(../images/a_page_header_bg.jpg);
}
@media screen and (max-width: 767px) {
  .page-a .page_header {
    background-image: url(../images/a_page_header_bg_sp.jpg);
  }
}
@media screen and (max-width: 767px) {
  .page-a .breadcrumb {
    display: none;
  }
}

.page-b .page_header,
.page-b-1 .page_header,
.page-b-2 .page_header,
.page-b-2-thanks .page_header {
  background-image: url(../images/b-1_page_header_bg.jpg);
}
@media screen and (max-width: 767px) {
  .page-b .page_header,
  .page-b-1 .page_header,
  .page-b-2 .page_header,
  .page-b-2-thanks .page_header {
    background-image: url(../images/b-1_page_header_bg_sp.jpg);
  }
}
@media screen and (max-width: 767px) {
  .page-b .breadcrumb,
  .page-b-1 .breadcrumb,
  .page-b-2 .breadcrumb,
  .page-b-2-thanks .breadcrumb {
    display: none;
  }
}

.page-c-1 .page_header,
.page-c-2 .page_header,
.page-c-3 .page_header,
.page-c-4 .page_header {
  background-image: url(../images/c_page_header_bg.jpg);
}
@media screen and (max-width: 767px) {
  .page-c-1 .page_header,
  .page-c-2 .page_header,
  .page-c-3 .page_header,
  .page-c-4 .page_header {
    background-image: url(../images/c_page_header_bg_sp.jpg);
  }
}
@media screen and (max-width: 767px) {
  .page-c-1 .breadcrumb,
  .page-c-2 .breadcrumb,
  .page-c-3 .breadcrumb,
  .page-c-4 .breadcrumb {
    display: none;
  }
}

.page-about .page_header {
  background-image: url(../images/about_page_header_bg.jpg);
}
@media screen and (max-width: 767px) {
  .page-about .page_header {
    background-image: url(../images/about_page_header_bg_sp.jpg);
  }
}
@media screen and (max-width: 767px) {
  .page-about .breadcrumb {
    display: none;
  }
}

.page-business .page_header {
  background-image: url(../images/business_page_header_bg.jpg);
}
@media screen and (max-width: 767px) {
  .page-business .page_header {
    background-image: url(../images/business_page_header_bg_sp.jpg);
  }
}
@media screen and (max-width: 767px) {
  .page-business .breadcrumb {
    display: none;
  }
}

.breadcrumb {
  padding: 0.5em 2%;
  font-size: 12px;
}
@media screen and (max-width: 1180px) {
  .breadcrumb {
    display: none !important;
  }
}
.breadcrumb a {
  margin: 0 .25em 0 0;
  cursor: pointer;
}
.breadcrumb a.current {
  pointer-events: none;
}
.breadcrumb a.home {
  margin-left: 0;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

.section_wrap {
  padding: 70px 0 140px;
}
@media screen and (max-width: 767px) {
  .section_wrap {
    padding: 80px 0 70px;
  }
}

.archive_pagination {
  margin-top: 90px;
  font-size: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .archive_pagination {
    margin-top: 23px;
  }
}
.archive_pagination .page_number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  aspect-ratio: 1/1;
  border: 1px solid #000;
  font-family: "Jost", serif;
  font-size: 16px;
  margin: 0 5px;
}
.archive_pagination .page_number.prev {
  text-indent: -99999px;
  border: none;
  background: url(../images/ico_arrow_left_black.svg) no-repeat center/10px;
}
.archive_pagination .page_number.next {
  text-indent: -99999px;
  border: none;
  background: url(../images/ico_arrow_right_black.svg) no-repeat center/10px;
}
.archive_pagination .page_number.dot {
  border: none;
}
.archive_pagination .page_number.dot span {
  display: block;
  transform: translateY(-5px);
}
.archive_pagination .page_number.current {
  background-color: #008E44;
  border-color: #008E44;
  color: #fff;
}
.archive_pagination .page_number.number:hover {
  background-color: #008E44;
  border-color: #008E44;
  color: #fff;
}

.layout_col_02 {
  display: flex;
  gap: 12.4%;
}
@media screen and (max-width: 767px) {
  .layout_col_02 {
    display: contents;
  }
}
.layout_col_02 main {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .layout_col_02 main {
    width: 100%;
    padding: 0 6.25%;
  }
}
.layout_col_02 aside {
  flex-shrink: 0;
  width: 176px;
  padding-left: 29px;
  border-left: 1px solid #008E44;
}
@media screen and (max-width: 767px) {
  .layout_col_02 aside {
    border-left: none;
    border-top: 1px solid #008E44;
    width: 230px;
    padding: 40px 0 0;
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .layout_col_02 aside .category {
    margin-bottom: 32px;
  }
}
.layout_col_02 aside .category > li {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .layout_col_02 aside .category > li a {
    margin: 0 auto;
  }
}
.layout_col_02 aside .category .category_label {
  padding: 8px 4px;
}
.layout_col_02 aside .archive {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .layout_col_02 aside .archive {
    -moz-column-count: 3;
         column-count: 3;
  }
}
.layout_col_02 aside .archive li {
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .layout_col_02 aside .archive li a {
    display: block;
    text-align: center;
  }
}
.layout_col_02 aside .archive li a:hover {
  color: #008E44;
}
.layout_col_02 aside .archive li a.current {
  font-weight: 700;
}

.article_header {
  padding-bottom: 34px;
  border-bottom: 1px solid #008E44;
}
@media screen and (max-width: 767px) {
  .article_header {
    padding-bottom: 30px;
  }
}
.article_header .date {
  font-size: "Jost", serif;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .article_header .date {
    font-size: 14px;
  }
}
.article_header .ttl {
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .article_header .ttl {
    font-size: 22px;
  }
}

.article_content {
  padding: 42px 0 65px;
}
@media screen and (max-width: 767px) {
  .article_content {
    padding: 42px 0 40px;
  }
}

.single_pagination {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 55px;
}
@media screen and (max-width: 767px) {
  .single_pagination {
    width: 100%;
    font-size: 14px;
    gap: 8.75%;
    padding-top: 40px;
  }
}
.single_pagination li {
  width: 100px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .single_pagination li {
    width: 27.5%;
  }
}
.single_pagination .archive {
  display: block;
  padding: 2px 8px;
  background-color: #008E44;
  color: #fff;
}
.single_pagination .prev {
  display: flex;
  align-items: center;
  gap: 10px;
}
.single_pagination .prev:before {
  content: "";
  display: block;
  width: 10px;
  aspect-ratio: 1/2;
  background: url(../images/ico_arrow_left_black.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .single_pagination .prev:before {
    width: 8px;
  }
}
.single_pagination .next {
  display: flex;
  align-items: center;
  gap: 10px;
}
.single_pagination .next:after {
  content: "";
  display: block;
  width: 10px;
  aspect-ratio: 1/2;
  background: url(../images/ico_arrow_right_black.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .single_pagination .next:after {
    width: 8px;
  }
}

@media screen and (max-width: 767px) {
  .archive-news .inner_m {
    display: flex;
    flex-direction: column;
  }
  .archive-news .inner_m main {
    order: 1;
  }
  .archive-news .inner_m .archive_pagination {
    order: 2;
  }
  .archive-news .inner_m aside {
    order: 3;
  }
}

.list_archive_news > li {
  border-top: 1px solid #008E44;
  padding: 20px 0;
}
.list_archive_news > li:first-child {
  border-top: none;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .list_archive_news > li {
    padding: 23px 0;
  }
}

.card_archive_news {
  display: block;
}
.card_archive_news .date {
  font-family: "Jost", serif;
}
@media screen and (max-width: 767px) {
  .card_archive_news .date {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
.card_archive_news .ttl {
  font-size: 24px;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 767px) {
  .card_archive_news .ttl {
    font-size: 15px;
    -webkit-line-clamp: 2;
  }
}
.card_archive_news:hover {
  color: #008E44;
}

@media screen and (max-width: 767px) {
  .archive-event .inner_m {
    display: flex;
    flex-direction: column;
  }
  .archive-event .inner_m main {
    order: 1;
  }
  .archive-event .inner_m .archive_pagination {
    order: 2;
  }
  .archive-event .inner_m aside {
    order: 3;
  }
}

.list_archive_event > li {
  border-top: 1px solid #008E44;
  padding: 36px 0;
}
.list_archive_event > li:first-child {
  border-top: none;
  padding-top: 0;
}

.card_archive_event__category {
  display: inline-block;
  margin: 0 16px 8px 0;
}
@media screen and (max-width: 767px) {
  .card_archive_event__category {
    display: block;
    margin: 0;
  }
}
.card_archive_event__category li {
  display: inline-block;
  margin: 0 16px 8px 0;
}
.card_archive_event .date {
  display: inline-block;
  font-family: "Jost", serif;
  line-height: 1.5;
  font-size: 14px;
}
.card_archive_event .ttl {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 16px 0;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 767px) {
  .card_archive_event .ttl {
    font-size: 15px;
    -webkit-line-clamp: 2;
  }
}
@media screen and (max-width: 767px) {
  .card_archive_event__dlist {
    font-size: 15px;
  }
}
.card_archive_event__dlist .group {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .card_archive_event__dlist .group {
    display: block;
  }
}
.card_archive_event__dlist .group:last-child {
  margin-bottom: 0;
}
.card_archive_event__dlist .group dt {
  font-weight: 700;
  color: #008E44;
  flex-shrink: 0;
}
.card_archive_event__dlist .group dd.date {
  margin-left: 0;
  font-size: inherit;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.card_archive_event:hover {
  transition: 0.3s;
}
.card_archive_event:hover .ttl {
  color: #008E44;
}

.event_header__category {
  display: inline-block;
  margin: 0 16px 8px 0;
}
.event_header__category li {
  display: inline-block;
}
.event_header .date {
  display: inline-block;
  font-family: "Jost", serif;
  line-height: 1.5;
  margin-bottom: 0;
}
.event_header .ttl {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 20px 0 16px;
}
.event_header__dlist .group {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 4px;
}
.event_header__dlist .group:last-child {
  margin-bottom: 0;
}
.event_header__dlist .group dt {
  font-weight: 700;
  color: #008E44;
  flex-shrink: 0;
}
.event_header__dlist .group dd.date {
  margin-left: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.link_entryform {
  width: 100%;
  max-width: 306px;
  margin: 0 auto;
}

.single-event-entry .section_wrap {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .single-event-entry .section_wrap {
    padding: 90px 0;
  }
}
.single-event-entry .kome {
  font-size: 14px;
  margin-top: 7px;
  margin: 8px auto 0;
}

.btn_submit {
  width: 100%;
  max-width: 188px;
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .btn_submit {
    margin-top: 50px;
  }
}

.ttl_entry_event {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

.lead_entry_event {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .lead_entry_event {
    margin-bottom: 40px;
  }
}

.form_group {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .form_group {
    margin-bottom: 50px;
  }
}
.form_group__ttl {
  background-color: #008E44;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  padding: 0.5em 0.6em;
  margin-bottom: 21px;
}
@media screen and (max-width: 767px) {
  .form_group__ttl {
    font-size: 18px;
  }
}

.entry_form_02 .form_group__ttl {
  position: relative;
  padding-left: 58px;
}
.entry_form_02 .form_group__ttl:before {
  content: attr(data-num);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 100%;
  aspect-ratio: 1/1;
  background-color: #000;
  color: #fff;
  font-family: "Jost", serif;
  font-size: 26px;
  font-weight: 400;
  position: absolute;
  top: 0;
  left: 0;
}
.entry_form_02 .form_group .content {
  padding-left: 58px;
}
@media screen and (max-width: 767px) {
  .entry_form_02 .form_group .content {
    padding-left: 0;
  }
}
.entry_form_02 .form_group .content2 {
  padding-left: 46px;
}
@media screen and (max-width: 767px) {
  .entry_form_02 .form_group .content2 {
    padding-left: 0;
  }
}
.entry_form_02 .form_group .content2 .dlist_form .group {
  padding-right: 0;
}

.dlist_form .group {
  display: flex;
  align-items: baseline;
  padding: 27px 45px 27px 12px;
  border-bottom: 1px solid #008E44;
}
@media screen and (max-width: 767px) {
  .dlist_form .group {
    flex-direction: column;
    gap: 16px;
    padding: 30px 0;
  }
}
.dlist_form .group:first-child {
  padding-top: 0;
}
.dlist_form .group:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.dlist_form .group dt {
  width: 206px;
  flex-shrink: 0;
  padding: 0 0 0 75px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .dlist_form .group dt {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .dlist_form .group dt.require {
    padding: 0 0 0 75px;
  }
}
.dlist_form .group dt.require:before {
  content: "必  須";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 26px;
  background-color: #D11414;
  font-size: 14px;
  color: #fff;
  position: absolute;
  top: -1px;
  left: 0;
}
.dlist_form .group dd {
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .dlist_form .group dd {
    width: 100%;
  }
}
.dlist_form .group.align-center {
  align-items: center;
}
.dlist_form .group.align-center dt.require:before {
  top: 50%;
  transform: translateY(-50%);
}

.form_policy {
  text-align: center;
}

.policy_box {
  border: 1px solid #696969;
  padding: 40px 5%;
  border-radius: 20px;
  height: 414px;
  overflow: scroll;
  background-color: #fff;
  margin-bottom: 50px;
}
.policy_box > dt {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1em;
}
.policy_box > dd {
  text-align: left;
}
.policy_box > dd p {
  margin-bottom: 1.5em;
  line-height: 1.8;
}

.dlist_policy dt {
  font-weight: 700;
  margin-bottom: 0.5em;
}
.dlist_policy dd {
  margin-bottom: 1.5em;
  line-height: 1.8;
}

.list_dot > li {
  padding-left: 1em;
  text-indent: -1em;
}
.list_dot > li::before {
  content: "・";
}

.single-event-entry-thanks .section_wrap,
.page-b-2-thanks .section_wrap {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .single-event-entry-thanks .section_wrap,
  .page-b-2-thanks .section_wrap {
    padding: 90px 0;
  }
}
.single-event-entry-thanks .thanks_text,
.page-b-2-thanks .thanks_text {
  font-size: 18px;
  font-weight: 500;
  line-height: 2.2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .single-event-entry-thanks .thanks_text,
  .page-b-2-thanks .thanks_text {
    font-size: 16px;
  }
}
.single-event-entry-thanks .thanks_info,
.page-b-2-thanks .thanks_info {
  text-align: center;
  line-height: 2.25;
  margin-top: 74px;
}
@media screen and (max-width: 767px) {
  .single-event-entry-thanks .thanks_info,
  .page-b-2-thanks .thanks_info {
    margin-top: 50px;
  }
}

input[type=text],
input[type=tel],
input[type=email],
select,
textarea {
  width: 100%;
  border: 1px solid #696969;
  padding: 17px;
  border-radius: 20px;
  resize: none;
}
input[type=text].error,
input[type=tel].error,
input[type=email].error,
select.error,
textarea.error {
  border-color: #D11414;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff url(../images/ico_tri_bottom.svg) no-repeat center right 15px/11px;
  padding-right: 40px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 380px;
}
@media screen and (max-width: 767px) {
  select {
    min-width: unset;
    width: 100%;
  }
}

.select_narrow {
  border-radius: 4px;
  padding: 0.25em 1.5em 0.25em 0.5em;
  background: #fff url(../images/ico_tri_bottom.svg) no-repeat center right 10px/9px;
}

button {
  display: block;
  background: none;
  border: none;
  padding: 0;
}

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

label.checkbox {
  cursor: pointer;
}
label.checkbox input {
  display: none;
}
label.checkbox .front {
  display: inline-block;
  position: relative;
  padding: 40px;
  padding: 3px 0 3px 40px;
}
label.checkbox .front:before {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  background: url(../images/ico_checkbox.svg) no-repeat center/contain;
  position: absolute;
  top: 0px;
  left: 0;
}
label.checkbox input:checked + .front:before {
  background: url(../images/ico_checkbox_checked.svg) no-repeat center/contain;
}

label.radio {
  cursor: pointer;
}
label.radio input {
  display: none;
}
label.radio .front {
  display: inline-block;
  position: relative;
  padding: 40px;
  padding: 3px 0 3px 40px;
}
label.radio .front:before {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  background: url(../images/ico_radio.svg) no-repeat center/contain;
  position: absolute;
  top: 0px;
  left: 0;
}
label.radio input:checked + .front:before {
  background: url(../images/ico_radio_checked.svg) no-repeat center/contain;
}

input.zip1 {
  width: 102px;
}

input.zip2 {
  width: 120px;
}

.article_content * {
  line-height: 2;
  margin: 1.5rem 0;
}
.article_content *:first-child {
  margin-top: 0 !important;
}
.article_content .ttl_editor_01 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 1.25em;
  position: relative;
  margin: 2em 0 1em;
}
@media screen and (max-width: 767px) {
  .article_content .ttl_editor_01 {
    font-size: 18px;
  }
}
.article_content .ttl_editor_01:before {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1/1;
  background-color: #008E44;
  position: absolute;
  top: 6px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .article_content .ttl_editor_01:before {
    width: 14px;
  }
}
.article_content .link_block {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: underline;
  color: #0033CC;
  margin: 0;
}
.article_content img {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.contact_lead {
  text-align: center;
  margin: 3.75rem 0 4.5rem;
}

.page-contact-thanks .section_wrap {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .page-contact-thanks .section_wrap {
    padding: 90px 0;
  }
}
.page-contact-thanks .thanks_text {
  font-size: 18px;
  font-weight: 500;
  line-height: 2.2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-contact-thanks .thanks_text {
    font-size: 16px;
  }
}
.page-contact-thanks .thanks_info {
  text-align: center;
  line-height: 2.25;
  margin-top: 74px;
}
@media screen and (max-width: 767px) {
  .page-contact-thanks .thanks_info {
    margin-top: 50px;
  }
}

.page-consultation-thanks .section_wrap {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .page-consultation-thanks .section_wrap {
    padding: 90px 0;
  }
}
.page-consultation-thanks .thanks_text {
  font-size: 18px;
  font-weight: 500;
  line-height: 2.2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-consultation-thanks .thanks_text {
    font-size: 16px;
  }
}
.page-consultation-thanks .thanks_info {
  text-align: center;
  line-height: 2.25;
  margin-top: 74px;
}
@media screen and (max-width: 767px) {
  .page-consultation-thanks .thanks_info {
    margin-top: 50px;
  }
}

.sec_outline {
  padding: 30px 0 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec_outline {
    padding: 30px 0 70px;
  }
}
.sec_outline:after {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}

.dlist_outline > .group {
  display: flex;
}
@media screen and (max-width: 767px) {
  .dlist_outline > .group {
    flex-direction: column;
    margin-bottom: 1.8em;
  }
  .dlist_outline > .group:last-child {
    margin-bottom: 0;
  }
}
.dlist_outline > .group > dt {
  font-weight: 700;
  color: #008E44;
  width: 120px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .dlist_outline > .group > dt {
    width: 100%;
    margin-bottom: 0.25em;
  }
}
.dlist_outline > .group > dd {
  line-height: 1.8;
}

.dlist_history > .group {
  display: flex;
}
@media screen and (max-width: 767px) {
  .dlist_history > .group {
    flex-direction: column;
  }
}
.dlist_history > .group > dt {
  width: 130px;
  flex-shrink: 0;
}
.list_purpose li {
  padding-left: 2.6em;
  text-indent: -2.6em;
}
.list_purpose li:before {
  content: "（" attr(data-num) "）";
}

.sec_message {
  padding: 70px 0 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec_message {
    padding: 3.125rem 0 4.375rem;
  }
}
.sec_message:after {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.sec_message .paragraph span {
  color: #008E44;
}
.sec_message .name {
  margin-top: 2rem;
  text-align: right;
  font-size: 1.25rem;
}
.sec_message .name .position {
  font-size: 1rem;
  margin-right: 20px;
}

.paragraph > p {
  margin-top: 1.8em;
  line-height: 1.8;
}
.paragraph > p:first-child {
  margin-top: 0;
}

.message_figure {
  width: 100%;
  max-width: 434px;
  margin: 2rem auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .message_figure {
    width: auto;
    margin-left: var(--extend);
    margin-right: var(--extend);
  }
}
.message_figure:after {
  content: "";
  display: block;
  width: 141px;
  aspect-ratio: 1/1;
  background: url(../images/about_messafe_figure.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .message_figure:after {
    width: 137px;
    left: var(--sideW);
  }
}
.message_figure > li {
  display: flex;
  font-weight: 700;
  padding: 0.42em 0 0.42em 220px;
  border-bottom: 1px solid #4E7444;
}
@media screen and (max-width: 767px) {
  .message_figure > li {
    padding-left: 48%;
    padding-right: var(--sideW);
  }
}
.message_figure > li:before {
  display: block;
  content: attr(data-en);
  color: #008E44;
  font-family: "Jost", serif;
  font-size: 1.125rem;
  font-weight: 700;
  width: 113px;
}
@media screen and (max-width: 767px) {
  .message_figure > li:before {
    font-weight: 500;
    width: 96px;
  }
}
.message_figure > li:last-child {
  border-bottom: none;
}

.sec_document {
  padding: 5rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec_document {
    padding: 3.125rem 0;
  }
}
.sec_document:after {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .sec_document .ttl_cmn_02 span {
    display: block;
    font-size: 1.25rem;
    text-align: center;
  }
}
.sec_document .ttl_cmn_02:after {
  margin-top: 20px;
}

.list_document li {
  padding: 1.125rem 0;
  border-bottom: 1px solid #008E44;
}
.list_document li:last-child {
  border-bottom: none;
}
.list_document li a {
  color: #0033CC;
  text-decoration: underline;
}

.sec_access {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .sec_access {
    padding-top: 3.125rem;
  }
}
.sec_access .ttl_cmn_02 + p {
  line-height: 1.8;
  text-align: center;
  margin-bottom: 2rem;
}
.sec_access .gmap {
  display: block;
  overflow: hidden;
  height: 634px;
}
.sec_access .gmap__wrapper {
  margin: 0 var(--extend);
}
.sec_access .gmap iframe {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .sec_access .gmap {
    height: 294px;
  }
}

.business_lead {
  font-size: 1.125rem;
  line-height: 2.2;
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .business_lead {
    font-size: 1rem;
    margin-bottom: 50px;
  }
}

.sec_grant {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .sec_grant {
    margin-bottom: 50px;
  }
}
.sec_grant .ttl_cmn_02 {
  margin-bottom: 32px;
}
.sec_grant .paragraph {
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec_grant .paragraph {
    text-align: left;
  }
}
.sec_grant .btn_cmn_02 {
  margin: 30px auto 60px;
  width: 100%;
  max-width: 208px;
}

.link_simulation {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px 30px 30px;
  gap: 30px;
  width: 100%;
  max-width: 510px;
  margin: 0 auto;
  background: #008E44;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .link_simulation {
    gap: 18px;
    font-size: 16px;
    padding: 25px 20px;
    line-height: 1.25;
    position: relative;
    align-items: flex-start;
  }
}
.link_simulation span {
  display: block;
  font-size: 34px;
}
@media screen and (max-width: 767px) {
  .link_simulation span {
    font-size: 30px;
    margin-bottom: 5px;
  }
}
.link_simulation:before {
  content: "";
  display: block;
  width: 62px;
  aspect-ratio: 62/72;
  background: url(../images/ico_grant.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .link_simulation:before {
    width: 46px;
    margin: 10px 0 0;
  }
}
.link_simulation:after {
  content: "";
  display: block;
  width: 28px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_right_03.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .link_simulation:after {
    width: 30px;
    position: absolute;
    left: calc(50% + 66px);
    bottom: 30px;
  }
}

.sec_business {
  padding: 3.75rem 0;
  background-color: #008E44;
}
@media screen and (max-width: 767px) {
  .sec_business {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.list_business {
  display: flex;
  gap: 3.5%;
}
.list_business > li {
  width: 31%;
}
@media screen and (max-width: 767px) {
  .list_business {
    flex-direction: column;
    gap: 28px;
  }
  .list_business > li {
    width: 100%;
  }
}

.card_business {
  background-color: #fff;
}
.card_business__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 310/200;
}
.card_business__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card_business .box_text {
  padding: 27px 8% 37px;
}
@media screen and (max-width: 767px) {
  .card_business .box_text {
    padding: 20px 6.4% 34px;
  }
}
.card_business__ttl {
  color: #008E44;
  text-align: center;
  font-size: min(2.4vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.6em;
}
@media screen and (max-width: 767px) {
  .card_business__ttl {
    font-size: 26px;
    height: auto;
  }
}
.card_business__text {
  margin-top: 1rem;
  line-height: 1.8;
  height: 10em;
}
@media screen and (max-width: 1023px) {
  .card_business__text {
    height: 14em;
  }
}
@media screen and (max-width: 767px) {
  .card_business__text {
    height: auto;
  }
}
.card_business__link {
  margin: 1em auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 145px;
  height: 30px;
  background-color: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.card_business__link:after {
  content: "";
  display: block;
  width: 8px;
  aspect-ratio: 1/2;
  background: url(../images/ico_arrow_right.svg) no-repeat center/contain;
}

.sec_link {
  padding: 100px 0 0;
}
@media screen and (max-width: 767px) {
  .sec_link {
    padding: 50px 0 0;
  }
}
.sec_link .ttl_cmn_02 span {
  display: block;
  font-size: 20px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .sec_link .ttl_cmn_02 {
    margin: 0 -0.5em 40px;
  }
}

.list_link {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px 80px;
}
@media screen and (max-width: 767px) {
  .list_link {
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    gap: 30px 80px;
  }
}
.list_link > li {
  width: calc(50% - 40px);
}
@media screen and (max-width: 767px) {
  .list_link > li {
    width: 100%;
  }
}
.list_link > li a {
  display: block;
  max-width: 300px;
}
.list_link > li a img {
  display: block;
  max-width: 100%;
}
.list_link > li p {
  margin-top: 0.875rem;
  text-align: center;
}

.bnr_style_01 {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  height: 80px;
  background-color: #fff;
  border: 2px solid #008E44;
  color: #008E44;
  font-weight: 700;
  line-height: 1.375;
  text-align: center;
}

.a_lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 2.2;
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .a_lead {
    font-size: 16px;
    line-height: 2.125;
    margin-bottom: 50px;
  }
}

.a_kind .ttl_cmn_03 {
  margin: 0 auto 26px;
}
@media screen and (max-width: 767px) {
  .a_kind .ttl_cmn_03 {
    margin-bottom: 30px;
  }
}
.a_kind .ttl_cmn_03 + p {
  text-align: center;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .a_kind .ttl_cmn_03 + p {
    text-align: left;
    letter-spacing: -0.05em;
  }
}
.a_kind .figure {
  display: block;
  margin-top: 50px;
  margin-bottom: 170px;
}
.a_kind .figure img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .a_kind .figure {
    margin: 30px calc((50vw - 50%) * -1) 136px;
  }
}

.a_books {
  background-color: #008E44;
  padding: 60px 0;
  position: relative;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .a_books {
    margin-bottom: 97px;
  }
}
.a_books:before {
  content: "";
  display: block;
  width: 230px;
  aspect-ratio: 230/140;
  background: url(../images/a_books_01.svg) no-repeat center/contain;
  position: absolute;
  top: -110px;
  right: calc(50% + 162px);
}
@media screen and (max-width: 767px) {
  .a_books:before {
    width: 38px;
    aspect-ratio: 38/63;
    top: -32px;
    right: calc(50% - 146px);
    background: url(../images/a_books_01_sp.svg) no-repeat center/contain;
  }
}
.a_books .en {
  color: #008E44;
  font-size: 70px;
  font-weight: 700;
  position: absolute;
  top: -74px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .a_books .en {
    width: 100%;
    font-size: 48px;
    line-height: 1;
    text-align: center;
    right: 50%;
    transform: translateX(50%);
    top: -87px;
  }
}
.a_books .inner_m {
  display: flex;
  gap: 70px;
}
@media screen and (max-width: 767px) {
  .a_books .inner_m {
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.a_books .inner_m .texts {
  padding-top: 3%;
}
.a_books .inner_m .texts .ttl_cmn_03 {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.a_books .inner_m .texts p {
  width: 63.2%;
  color: #fff;
  line-height: 1.8;
  margin: 26px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .a_books .inner_m .texts p {
    width: 100%;
  }
}
.a_books .inner_m .texts p:after {
  content: "";
  display: block;
  width: 294px;
  aspect-ratio: 588/531;
  background: url(../images/a_book_02.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 100%;
}
@media screen and (max-width: 767px) {
  .a_books .inner_m .texts p:after {
    width: 40px;
    aspect-ratio: 40/83;
    background: url(../images/a_book_02_sp.svg) no-repeat center/contain;
    top: calc(100% + 16px);
    left: 0;
  }
}
.a_books .inner_m .texts .arrow {
  font-weight: 700;
  color: #fff;
  padding: 0 5px 0.75em 31px;
  width: -moz-fit-content;
  width: fit-content;
  background: url(../images/ico_arrow_left_02.png) no-repeat left bottom/100%;
}
@media screen and (max-width: 767px) {
  .a_books .inner_m .texts .arrow {
    margin: 0 auto;
    background: url(../images/ico_arrow_bottom_03.svg) no-repeat bottom center/12px;
    text-align: center;
    padding: 0 0 40px;
  }
}

.list_books {
  width: 311px;
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .list_books {
    gap: 20px;
  }
}
.list_books > li {
  width: calc(50% - 15px);
}
@media screen and (max-width: 767px) {
  .list_books > li {
    width: calc(50% - 10px);
  }
}
.list_books > li a {
  display: block;
  display: block;
  overflow: hidden;
  aspect-ratio: 140/199;
  border: 1px solid #fff;
}
.list_books > li a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.a_movie {
  position: relative;
  margin-bottom: 85px;
}
@media screen and (max-width: 767px) {
  .a_movie {
    margin-bottom: 50px;
  }
}
.a_movie > .en {
  font-family: "Jost", serif;
  font-size: 171px;
  font-weight: 700;
  writing-mode: vertical-rl;
  color: #fff;
  position: absolute;
  top: -46px;
  left: -74px;
}
@media screen and (max-width: 767px) {
  .a_movie > .en {
    writing-mode: horizontal-tb;
    font-size: 106px;
    left: 0;
    right: 0;
    top: -100px;
  }
}
.a_movie .inner_m {
  position: relative;
}
.a_movie .inner_m:after {
  content: "";
  display: block;
  width: 165px;
  aspect-ratio: 165/170;
  background: url(../images/a_movie_01.svg) no-repeat center/contain;
  position: absolute;
  top: -35px;
  left: calc(10px + var(--sideW));
}
@media screen and (max-width: 767px) {
  .a_movie .inner_m:after {
    position: static;
    background: url(../images/a_movie_01_sp.svg) no-repeat center/contain;
    width: 230px;
    aspect-ratio: 230/160;
    margin: 0 auto;
  }
}
.a_movie .ttl_cmn_03 {
  margin: 0 auto 63px;
}
@media screen and (max-width: 767px) {
  .a_movie .ttl_cmn_03 {
    text-align: center;
    margin: 0 auto 40px;
  }
}

.a_movie_para {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .a_movie_para {
    font-size: 16px;
    text-align: center;
  }
}
.a_movie_para span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .a_movie_para span {
    text-align: left;
  }
}

.list_movie {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 5%;
  margin-bottom: 46px;
}
@media screen and (max-width: 767px) {
  .list_movie {
    flex-direction: column;
    gap: 40px 5%;
    margin-bottom: 40px;
  }
}

.list_movie_01 {
  padding-bottom: 46px;
  border-bottom: 1px solid #008E44;
}
@media screen and (max-width: 767px) {
  .list_movie_01 {
    padding-bottom: 40px;
  }
}

.card_movie {
  width: 47.5%;
}
@media screen and (max-width: 767px) {
  .card_movie {
    width: 100%;
  }
}
.card_movie__video {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.card_movie__video iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.card_movie__ttl {
  font-size: 23px;
  font-weight: 700;
  padding: 16px 0 14px;
}
@media screen and (max-width: 767px) {
  .card_movie__ttl {
    text-align: center;
    padding: 16px 0 10px;
    line-height: 1.3;
  }
}
.card_movie__text {
  line-height: 1.8;
}

.a_event {
  padding-bottom: 106px;
}
@media screen and (max-width: 767px) {
  .a_event {
    padding-bottom: 60px;
  }
}
.a_event .ttl_cmn_02 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .a_event .ttl_cmn_02 {
    margin-bottom: 20px;
  }
}
.a_event .ttl_cmn_02 + p {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .a_event .ttl_cmn_02 + p {
    margin-bottom: 20px;
  }
}

.a_know {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .a_know {
    flex-direction: column;
  }
}
.a_know:before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 53.5%;
  background: url(../images/a_know.jpg) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .a_know:before {
    width: 100%;
    aspect-ratio: 375/242;
  }
}
.a_know .group {
  flex-grow: 1;
  background-color: #008E44;
  padding: 86px var(--sideW) 86px 4.46%;
}
@media screen and (max-width: 767px) {
  .a_know .group {
    padding: 30px var(--sideW) 40px;
  }
  .a_know .group .ttl_cmn_03 {
    margin: 0 auto 30px;
  }
}
.a_know .group p {
  margin: 28px 0;
  color: #fff;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .a_know .group p {
    text-align: center;
  }
}
.a_know .group .btn_cmn_01 {
  width: 145px;
}
@media screen and (max-width: 767px) {
  .a_know .group .btn_cmn_01 {
    margin: 0 auto;
  }
}

.b_lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 2.2;
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .b_lead {
    font-size: 16px;
    line-height: 2.125;
    margin-bottom: 40px;
  }
}

.b_event {
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .b_event {
    margin-bottom: 30px;
  }
}
.b_event .ttl_cmn_02 {
  margin-bottom: 38px;
}
@media screen and (max-width: 767px) {
  .b_event .ttl_cmn_02 {
    margin-bottom: 30px;
  }
}
.b_event .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 155px;
  height: 32px;
  background-color: #008E44;
  color: #fff;
  font-family: "Jost", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .b_event .icon {
    margin: 0 auto;
  }
}

.b_step {
  padding-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .b_step {
    padding-bottom: 80px;
  }
}
.b_step:after {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}

.b_step_lead {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 104px;
}
@media screen and (max-width: 767px) {
  .b_step_lead {
    text-align: left;
    margin-bottom: 80px;
  }
}

.list_step > li {
  margin: 107px 0 0;
  padding: 68px 6.25% 45px;
  position: relative;
}
.list_step > li:after {
  content: "";
  display: block;
  width: 63px;
  aspect-ratio: 63/47;
  background: url(../images/ico_arrow_bottom_02.svg) no-repeat center/contain;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .list_step > li:first-child {
    margin-top: 80px;
  }
}
.list_step > li:last-child:after {
  content: none;
}

.card_step {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.16);
}
.card_step .icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #008E44;
  font-family: "Jost", serif;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.card_step .icon span {
  font-size: 58px;
  font-weight: 700;
  text-shadow: 3px 3px 0px #000;
}
.card_step h2 {
  font-size: 28px;
  font-weight: 700;
  color: #008E44;
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .card_step h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.dlist_step_01 > .group {
  display: flex;
  gap: 33px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .dlist_step_01 > .group {
    flex-direction: column;
    gap: 24px;
  }
}
.dlist_step_01 > .group:last-child {
  margin-bottom: 0;
}
.dlist_step_01 > .group > dt {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 204px;
  height: 90px;
  background-color: #008E44;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  position: relative;
}
.dlist_step_01 > .group > dt:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 16px solid #008E44;
  border-right: 0;
  position: absolute;
  top: calc(50% - 9px);
  left: calc(100% - 1px);
}
@media screen and (max-width: 767px) {
  .dlist_step_01 > .group > dt:after {
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 16px solid #008E44;
    border-bottom: 0;
    top: calc(100% - 1px);
    left: calc(50% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .dlist_step_01 > .group > dt {
    width: 100%;
    height: auto;
    padding: 11px;
  }
}
.list_round li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 0.5em;
  line-height: 1.8;
}
.list_round li:before {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #696969;
  position: absolute;
  top: 8px;
  left: 0;
}
.list_round li:last-child {
  margin-bottom: 0;
}

.b_announce {
  padding: 90px 0;
}
@media screen and (max-width: 767px) {
  .b_announce {
    padding: 50px 0;
  }
}
.b_announce .ttl_cmn_02 {
  margin-bottom: 30px;
}
.b_announce .ttl_cmn_02 + p {
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .b_announce .ttl_cmn_02 + p {
    text-align: left;
  }
}
.b_announce .btn_cmn_02 {
  width: 100%;
  max-width: 447px;
  margin: 55px auto 0;
}
@media screen and (max-width: 767px) {
  .b_announce .btn_cmn_02 {
    width: 90%;
    margin: 44px auto 0;
  }
  .b_announce .btn_cmn_02 span {
    height: 76px;
    text-align: center;
    border-radius: 25px;
  }
  .b_announce .btn_cmn_02:before {
    border-radius: 25px;
  }
}

.list_announce {
  margin-top: 82px;
}
@media screen and (max-width: 767px) {
  .list_announce {
    margin-top: 53px;
  }
}

.card_announce {
  margin-top: 74px;
  background-color: #fff;
  border-radius: 20px;
  padding: 54px 6% 40px;
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.16);
  position: relative;
}
@media screen and (max-width: 767px) {
  .card_announce {
    margin-top: 63px;
    padding: 46px 6% 30px;
  }
}
.card_announce h3 {
  width: 100%;
  max-width: 300px;
  padding: 0.4em;
  background-color: #008E44;
  color: #fff;
  text-align: center;
  font-size: 22px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .card_announce h3 {
    max-width: 280px;
  }
}
.card_announce h3 + p {
  color: #008E44;
  text-align: center;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .card_announce h3 + p {
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 767px) {
  .card_announce h3 + p.kome {
    width: -moz-fit-content;
    width: fit-content;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .ex {
    margin: -0.5em;
    text-align: left !important;
  }
}

.dlist_price .group {
  display: flex;
  justify-content: center;
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  .dlist_price .group {
    flex-direction: column;
    margin-bottom: 16px;
  }
  .dlist_price .group:last-child {
    margin-bottom: 0;
  }
}
.dlist_price .group dt {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .dlist_price .group dt {
    text-align: center;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
  }
}
.dlist_price .group dt:after {
  content: "⋯";
  color: #008E44;
  margin: 0 0.5em;
}
@media screen and (max-width: 767px) {
  .dlist_price .group dt:after {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    transform: rotate(90deg);
    margin: 0;
    position: absolute;
    top: 100%;
    left: calc(50% - 0.5em);
  }
}
.dlist_price .group dd {
  font-size: 28px;
  font-weight: 700;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .dlist_price .group dd {
    text-align: center;
    width: 100%;
  }
}
.dlist_price + .kome {
  margin-top: 1em;
  text-align: center;
}

.b_find {
  background: no-repeat center/cover;
  background-image: url(../images/b_find_bg.jpg);
  padding: 97px 0 74px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .b_find {
    background-image: url(../images/b_find_bg_sp.jpg);
    padding: 40px 0 35px;
  }
}

.box_find {
  width: 100%;
  max-width: 446px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  padding: 80px 2.5%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .box_find {
    padding: 30px 2.5% 40px;
  }
}
.box_find:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #008E44;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}
.box_find h2 {
  position: relative;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .box_find h2 {
    font-size: 34px;
  }
}
.box_find p {
  position: relative;
  line-height: 1.8;
  margin: 1em 0 1.5em;
}
.box_find .btn_cmn_02 {
  width: 100%;
  max-width: 227px;
  margin: 0 auto;
}

.b_professional {
  background-color: #008E44;
  padding: 60px 0;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .b_professional {
    padding: 30px 0 110px;
    margin-bottom: 120px;
  }
}

.box_professional {
  color: #fff;
  display: flex;
  gap: 5%;
  position: relative;
}
.box_professional .group {
  flex-grow: 1;
}
.box_professional h2 {
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .box_professional h2 {
    font-size: 34px;
    text-align: center;
  }
}
.box_professional p {
  position: relative;
  line-height: 1.8;
  margin: 1em 0 1.5em;
}
.box_professional .btn_cmn_02 {
  width: 100%;
  max-width: 427px;
}
@media screen and (max-width: 767px) {
  .box_professional .btn_cmn_02 {
    width: 90%;
    margin: 0 auto;
  }
  .box_professional .btn_cmn_02 span {
    height: 76px;
    text-align: center;
    border-radius: 25px;
  }
  .box_professional .btn_cmn_02:before {
    border-radius: 25px;
  }
}
.box_professional:after {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 142px;
  aspect-ratio: 142/180;
  background: url(../images/b_professional.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .box_professional:after {
    width: 128px;
    position: absolute;
    left: calc(50% - 64px);
    top: calc(100% + 16px);
  }
}

.b_links .ttl_cmn_02 span {
  display: block;
  font-size: 20px;
}

.dlist_links dt {
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .dlist_links dt {
    margin-bottom: 22px;
  }
}
.dlist_links dt:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .dlist_links dt:before {
    position: static;
    width: 1px;
    height: 40px;
    margin: 0 auto 0.5em;
  }
}
.dlist_links dt span {
  background-color: #F5F5ED;
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 2em;
  font-size: 22px;
  font-weight: 700;
  color: #008E44;
}
@media screen and (max-width: 767px) {
  .dlist_links dt span {
    padding: 0;
    text-align: center;
  }
}
.dlist_links dd {
  margin-bottom: 74px;
}
@media screen and (max-width: 767px) {
  .dlist_links dd {
    margin-bottom: 40px;
  }
}
.dlist_links dd:last-child {
  margin-bottom: 0;
}

.dlist_link_list {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px 5%;
}
.dlist_link_list li {
  width: 300px;
}
.dlist_link_list li a {
  width: 250px;
  margin: 0 auto;
  display: block;
  overflow: hidden;
  aspect-ratio: 250/80;
}
.dlist_link_list li a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.dlist_link_list li p {
  text-align: center;
  margin-top: 0.5em;
}
.dlist_link_list li.wide {
  width: 100%;
}
.dlist_link_list li.wide a {
  width: 100%;
  max-width: 395px;
  aspect-ratio: 397/50;
}
.dlist_link_list li.wide p {
  text-align: center;
  margin-top: 1em;
}

.page-b-1 .lead {
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .page-b-1 .lead {
    text-align: left;
    margin-bottom: 0px;
  }
}

.map_nagano {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.map_nagano svg {
  width: 100%;
}

.bnr_portal {
  display: block;
  width: 100%;
  max-width: 492px;
  margin: 70px auto;
}
@media screen and (max-width: 767px) {
  .bnr_portal {
    margin: 30px auto;
  }
}
.bnr_portal img {
  display: block;
  width: 100%;
}

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

@media screen and (max-width: 767px) {
  .scroll_container_wrap {
    margin: 0 var(--extend);
  }
}

.scroll_ccontainer,
.scroll_container {
  width: 1000px;
}
@media screen and (max-width: 767px) {
  .scroll_ccontainer,
  .scroll_container {
    margin: 0 var(--sideW);
  }
}

@media screen and (max-width: 767px) {
  .scroll_container {
    width: 800px;
    margin: 0 var(--sideW);
  }
}

.ico_swipe {
  display: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 108px;
  height: 25px;
  background: url(../images/ico_arrow_left_01.svg) no-repeat center bottom/contain;
  font-family: "Jost", serif;
  padding-bottom: 5px;
  margin: 20px auto 0;
}
@media screen and (min-width: 1160px) {
  .ico_swipe {
    display: none !important;
  }
}

.area__header {
  display: flex;
  align-items: baseline;
}
.area__name {
  font-size: 30px;
  font-weight: 700;
  display: inline-block;
  flex-grow: 1;
  color: #008E44;
}
.area__attr {
  display: inline-block;
  font-size: 14px;
  flex-shrink: 0;
  margin-bottom: 10px;
}
.area__link {
  flex-shrink: 0;
  margin-left: 30px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #008E44;
  cursor: pointer;
  gap: 5px;
}
.area__link:after {
  content: "";
  display: block;
  width: 8px;
  aspect-ratio: 1/2;
  background: url(../images/ico_arrow_right_green.svg) no-repeat center/contain;
}
.area__table {
  width: 100%;
}
.area__table tr th {
  background-color: #008E44;
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 0.75em;
}
.area__table tr th:nth-child(1) {
  width: 480px;
  border-right: 1px solid #fff;
}
.area__table tr th:nth-child(2) {
  width: 100px;
  border-right: 1px solid #fff;
}
.area__table tr th:nth-child(3) {
  width: 130px;
  border-right: 1px solid #fff;
}
.area__table tr th:nth-child(4) {
  width: 87px;
  border-right: 1px solid #fff;
}
.area__table tr th:nth-child(5) {
  width: 202px;
  padding: 0;
}
.area__table tr td {
  border-right: 1px solid #008E44;
  padding: 8px 0;
}
.area__table tr td:nth-child(1) {
  width: 92px;
  border: none;
}
.area__table tbody tr:nth-child(odd) th, .area__table tbody tr:nth-child(odd) td {
  background-color: #fff;
}
.area__table tr:nth-child(2) th {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  width: 29px;
  padding: 0;
  font-family: "Jost", serif;
  font-weight: 400;
}
.area__table tr:nth-child(2) th:last-child {
  width: 29px;
  border-right: none;
  border-top: 1px solid #fff;
}
.area__table td {
  text-align: center;
  font-size: 14px;
}
.area__table td.head {
  font-size: 20px;
  font-weight: 700;
  text-align: left;
}
.area__table td.tel {
  font-family: "Jost", serif;
}

.area_labels {
  display: flex;
  justify-content: center;
  gap: 7px;
}
.area_labels li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  aspect-ratio: 1/1;
  border-radius: 5px;
  font-size: 15px;
  color: #fff;
}
.area_labels li:nth-child(1) {
  background-color: #2B7B9F;
}
.area_labels li:nth-child(2) {
  background-color: #2B9F41;
}
.area_labels li.hidden {
  visibility: hidden;
}

.area_links {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.area_links > li:nth-child(1) {
  width: 32px;
  flex-shrink: 0;
}
.area_links > li:nth-child(2) {
  width: 26px;
  flex-shrink: 0;
}
.area_links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 17px;
  font-size: 11px;
  font-weight: 500;
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 5px;
  padding: 0 0.5em 2px;
  color: #707070;
}
.area_links a.hidden {
  visibility: hidden;
}

.popup {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  display: none;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 var(--sideW);
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup.js-active {
  opacity: 1;
  visibility: visible;
}
.popup #overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #A6A69F;
}
.popup__container {
  position: relative;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.16);
  width: 100%;
  max-width: 1000px;
  background-color: #fff;
}
.popup .scroll {
  position: relative;
  padding: 0 8.3%;
  height: 100%;
  max-height: 80vh;
  overflow: scroll;
}
.popup .box {
  margin: 80px 0;
}
.popup .box .head {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .popup .box {
    margin: 40px 0 40px;
  }
}

#popup_close,
#popup_close_02,
#popup_close_03,
#popup_close_04,
#popup_close_05,
#popup_close_06 {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 20px;
  display: block;
  width: 23px;
  height: 23px;
  background-color: #000;
  padding: 0;
}
#popup_close:before, #popup_close:after,
#popup_close_02:before,
#popup_close_02:after,
#popup_close_03:before,
#popup_close_03:after,
#popup_close_04:before,
#popup_close_04:after,
#popup_close_05:before,
#popup_close_05:after,
#popup_close_06:before,
#popup_close_06:after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 50px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
#popup_close:after,
#popup_close_02:after,
#popup_close_03:after,
#popup_close_04:after,
#popup_close_05:after,
#popup_close_06:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.dlist_legend {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .dlist_legend {
    margin-bottom: 30px;
  }
}
.dlist_legend > dt {
  text-align: center;
  position: relative;
  margin-bottom: 26px;
}
@media screen and (max-width: 767px) {
  .dlist_legend > dt {
    margin-bottom: 18px;
  }
}
.dlist_legend > dt:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
}
.dlist_legend > dt span {
  position: relative;
  font-size: 22px;
  font-weight: 700;
  background-color: #fff;
  padding: 0 1.5em;
  color: #008E44;
}
@media screen and (max-width: 767px) {
  .dlist_legend > dt span {
    padding: 0 0.75em;
  }
}

.dlist_legend_child {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .dlist_legend_child {
    flex-direction: column;
    gap: 16px;
  }
}
.dlist_legend_child > .group:nth-child(1) {
  width: 278px;
}
@media screen and (max-width: 767px) {
  .dlist_legend_child > .group:nth-child(1) {
    width: 100%;
  }
}
.dlist_legend_child > .group:nth-child(2) {
  width: 300px;
}
@media screen and (max-width: 767px) {
  .dlist_legend_child > .group:nth-child(2) {
    width: 100%;
  }
}
.dlist_legend_child dt {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.dlist_legend_child dt .label {
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  aspect-ratio: 1/1;
  border-radius: 5px;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}
.dlist_legend_child dt .label.blue {
  background-color: #2B7B9F;
}
.dlist_legend_child dt .label.green {
  background-color: #2B9F41;
}
.dlist_legend_child dd {
  font-size: 0.875rem;
  letter-spacing: -0.01em;
}

.list_legend_business {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px 0;
}
@media screen and (max-width: 767px) {
  .list_legend_business {
    flex-direction: column;
    gap: 0;
  }
}
.list_legend_business > li {
  width: 26.8%;
  padding: 0 22px 10px;
  border-right: 1px dotted #008E44;
}
.list_legend_business > li:nth-child(1), .list_legend_business > li:nth-child(4), .list_legend_business > li:nth-child(5), .list_legend_business > li:nth-child(7) {
  width: 23.2%;
}
@media screen and (max-width: 767px) {
  .list_legend_business > li:nth-child(1), .list_legend_business > li:nth-child(4), .list_legend_business > li:nth-child(5), .list_legend_business > li:nth-child(7) {
    width: 100%;
  }
}
.list_legend_business > li:nth-child(1), .list_legend_business > li:nth-child(5) {
  padding-left: 0;
}
.list_legend_business > li:nth-child(4), .list_legend_business > li:nth-child(7) {
  padding-right: 0;
  border: none;
}
@media screen and (max-width: 767px) {
  .list_legend_business > li:nth-child(4), .list_legend_business > li:nth-child(7) {
    border-bottom: 1px dotted #008E44;
  }
}
@media screen and (max-width: 767px) {
  .list_legend_business > li {
    width: 100%;
    border-right: none;
    border-bottom: 1px dotted #008E44;
    padding: 20px 0;
  }
  .list_legend_business > li:nth-child(1) {
    padding-top: 0;
  }
  .list_legend_business > li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
}

@media screen and (max-width: 767px) {
  .dlist_legend_business_child {
    width: 170px;
    margin: 0 auto;
  }
}
.dlist_legend_business_child dt {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.dlist_legend_business_child dt:before {
  content: attr(data-en);
  display: block;
  text-align: center;
  color: #008E44;
  font-family: "Jost", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
}
.dlist_legend_business_child dd .image {
  display: block;
  overflow: hidden;
  aspect-ratio: 170/120;
}
.dlist_legend_business_child dd .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dlist_legend_business_child dd p {
  margin-top: 0.5em;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.b-2_lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 2.1;
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .b-2_lead {
    font-size: 16px;
    margin-bottom: 50px;
  }
}
.b-2_lead p {
  margin-bottom: 2.1em;
}
.b-2_lead p:last-child {
  margin-bottom: 0;
}

.page-c-1 .lead {
  font-size: 18px;
  line-height: 2.2;
  text-align: center;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .page-c-1 .lead {
    font-size: 16px;
    line-height: 2.125;
    margin-bottom: 50px;
  }
}
.page-c-1 .anchorlink {
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .page-c-1 .anchorlink {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
  }
}
.page-c-1 .anchorlink li {
  width: 100%;
  max-width: 260px;
}
.page-c-1 .anchorlink li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 53px;
  border-radius: 50px;
  background-color: #008E44;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.page-c-1 .anchorlink li a:after {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_bottom_01.svg) no-repeat center/contain;
}
.page-c-1 .link_simulation + p {
  font-size: 18px;
  text-align: center;
  margin-top: 0.75em;
}
@media screen and (max-width: 767px) {
  .page-c-1 .popup__container .head {
    font-size: 26px;
  }
}

.page-c-1_sec .link_simulation {
  margin-top: 40px;
}


#anc02 {
  margin-bottom: 110px;
}


.page-c-1_ttl:before {
  content: "";
  display: block;
  width: 100%;
  height: 204px;
  background: no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .page-c-1_ttl:before {
    height: 180px;
  }
}
.page-c-1_ttl span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 266px;
  aspect-ratio: 266/99;
  background: #fff;
  border: 3px solid #000;
  box-shadow: 5px 5px 0 black;
  font-size: 28px;
  font-weight: 700;
  margin: -50px auto 0;
}
@media screen and (max-width: 767px) {
  .page-c-1_ttl span {
    font-size: 22px;
    width: 194px;
    aspect-ratio: 194/63;
    margin: -31px auto 0;
  }
}

/* #anc01 .page-c-1_ttl:before { */
#anc02 .page-c-1_ttl:before {
  background-image: url(../images/page-c-1_ttl_01.jpg);
}
@media screen and (max-width: 767px) {
  /* #anc01 .page-c-1_ttl:before { */
  #anc02 .page-c-1_ttl:before {
    background-image: url(../images/page-c-1_ttl_01_sp.jpg);
  }
}

/* #anc02 .page-c-1_ttl:before { */
#anc01 .page-c-1_ttl:before {
  background-image: url(../images/page-c-1_ttl_02.jpg);
}
@media screen and (max-width: 767px) {
  /* #anc02 .page-c-1_ttl:before { */
  #anc02 .page-c-1_ttl:before {
    background-image: url(../images/page-c-1_ttl_02_sp.jpg);
  }
}

.label_description {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 34px;
  padding: 30px 0 20px;
}
@media screen and (max-width: 767px) {
  .label_description {
    width: 252px;
    gap: 10px 20px;
    justify-content: flex-start;
    margin: 0 auto;
  }
}
.label_description li {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
.label_description li:before {
  content: "";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 5px;
  padding: 0 1px 1px 0;
  font-size: 13px;
  height: 21px;
}
.label_description li:nth-child(1):before {
  content: "認";
  aspect-ratio: 1/1;
  background-color: #2B7B9F;
}
.label_description li:nth-child(2):before {
  content: "選";
  aspect-ratio: 1/1;
  background-color: #2B9F41;
}
.label_description li:nth-child(3):before {
  content: "その他";
  font-size: 10px;
  aspect-ratio: 42/21;
  background-color: #696969;
}
@media screen and (max-width: 767px) {
  .label_description li:nth-child(4) {
    margin-left: auto;
  }
}
.label_description li:nth-child(4):before {
  content: none;
}
.label_description li .area__link {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.list_zigyo > li {
  padding: 50px 0;
  border-bottom: 1px solid #008E44;
}
.list_zigyo > li:last-child {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .list_zigyo > li {
    padding: 40px 0;
  }
}

.card_zigyo {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  .card_zigyo {
    flex-direction: column;
  }
}
.card_zigyo .box_left {
  width: calc(95% - 250px);
}
@media screen and (max-width: 767px) {
  .card_zigyo .box_left {
    width: 100%;
  }
}
.card_zigyo .box_right {
  width: 250px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .card_zigyo .box_right {
    width: 100%;
    margin-top: 14px;
  }
}
.card_zigyo__ttl {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .card_zigyo__ttl {
    font-size: 22px;
  }
}
.card_zigyo__type {
  font-size: 20px;
  font-weight: 700;
  color: #008E44;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .card_zigyo__type {
    font-size: 18px;
  }
}
.card_zigyo__terms {
  font-weight: 500;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .card_zigyo__terms {
    font-size: 14px;
  }
}
.card_zigyo__terms small {
  font-size: 14px;
  font-weight: 400;
}
.card_zigyo__cat {
  width: 100%;
}
.card_zigyo__cat .label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 156px;
  aspect-ratio: 156/29;
  border-radius: 50px;
  background: #008E44;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin: 0 7px 14px 0;
}
.card_zigyo__cat02 {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.card_zigyo__cat02 .label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 5px;
  padding: 0 1px 1px 0;
}
.card_zigyo__cat02 .label.cat01 {
  font-size: 15px;
  width: 25px;
  aspect-ratio: 1/1;
  background-color: #2B7B9F;
}
.card_zigyo__cat02 .label.cat02 {
  font-size: 15px;
  width: 25px;
  aspect-ratio: 1/1;
  background-color: #2B9F41;
}
.card_zigyo__cat02 .label.cat03 {
  font-size: 12px;
  width: 49px;
  aspect-ratio: 49/25;
  background-color: #696969;
}

.application_dead {
  display: flex;
  align-items: center;
  gap: 9px;
}
.application_dead__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 86px;
  aspect-ratio: 86/30;
  background-color: #000;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  margin-right: 15px;
}
.application_dead__ttl:after {
  position: absolute;
  top: 0;
  left: 100%;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #000;
  border-right: 0;
}
@media screen and (max-width: 767px) {
  .application_dead__ttl {
    font-size: 14px;
    width: 66px;
    aspect-ratio: 66/24;
  }
  .application_dead__ttl:after {
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 12px solid #000;
  }
}
.application_dead__date {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .application_dead__ttl {
    font-size: 12px;
  }
  .application_dead__date {
    font-size: 16px;
  }
}

.document_download {
  margin-top: 14px;
  display: flex;
  gap: 20px;
}
.document_download a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  width: 90px;
  aspect-ratio: 3/1;
  background-color: #000;
  color: #fff;
  font-size: 15px;
}
.document_download a:after {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 1/2;
  background: url(../images/ico_arrow_right.svg) no-repeat center/contain;
  flex-shrink: 0;
  transform: translateY(0px);
}

.list_simulation > li {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .list_simulation > li {
    margin-bottom: 40px;
  }
}

.card_simulation .ttl {
  background-color: #008E44;
  color: #fff;
  font-weight: 700;
  padding: 0.5em 1em;
}
.card_simulation .mark_question {
  margin: 26px 0 22px;
  padding-left: 33px;
  font-weight: 700;
  position: relative;
}
.card_simulation .mark_question:before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #008E44;
  color: #fff;
  font-family: "Jost", serif;
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
}
.card_simulation textarea {
  border-radius: 4px;
}

.dlist_col {
  display: flex;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  .dlist_col {
    flex-direction: column;
    gap: 1em;
  }
}
.dlist_col > .group {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1em;
}
.dlist_col > .group dt {
  flex-shrink: 0;
}
.dlist_col > .group dd {
  flex-grow: 1;
}
.dlist_col > .group dd select {
  min-width: unset;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .content_simulation_result.box {
    margin-top: 80px;
  }
}
.content_simulation_result .btn_cmn_02 {
  width: 187px;
  margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
  .content_simulation_result .document_download {
    gap: 5%;
  }
  .content_simulation_result .document_download > li {
    width: 30%;
  }
  .content_simulation_result .document_download > li a {
    width: auto;
  }
}

.list_result > li {
  padding: 50px 0;
  border-bottom: 1px solid #008E44;
}
@media screen and (max-width: 767px) {
  .list_result > li {
    padding: 35px 0;
  }
}
.list_result > li:last-child {
  border-bottom: none;
}

.card_result__header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .card_result__header {
    flex-direction: column;
  }
}
.card_result__header .ttl {
  flex-grow: 1;
}
.card_result__header .ttl .main {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .card_result__header .ttl .main {
    font-size: 22px;
  }
}
.card_result__header .ttl .kind {
  font-size: 14px;
  margin-top: 0.5em;
}
.card_result__header .application_dead {
  margin-top: 5px;
  flex-shrink: 0;
}
.card_result__descr01 {
  font-weight: 500;
}
.card_result__descr02 {
  font-size: 14px;
  margin-top: 1em;
}
.card_result .document_download {
  margin-top: 24px;
}

.page-c-2 .scroll_container {
  width: 800px;
}
.page-c-2 .list_documents > li {
  margin-bottom: 0.5em;
}
.page-c-2 .list_documents > li:last-child {
  margin-bottom: 0;
}
.page-c-2 .lead {
  line-height: 1.8;
  text-align: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .page-c-2 .lead {
    font-weight: 500;
    line-height: 2.2;
  }
}
.page-c-2 .lead_ttl {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .page-c-2 .lead_ttl {
    margin-bottom: 1.75em;
  }
}
.page-c-2 #link01 + dd .ico_swipe {
  display: none !important;
  margin-bottom: 30px;
}
.page-c-2 #link01 + dd .list_documents {
  margin: 30px 0;
}
.page-c-2 #link02 + dd .dlist_rule {
  margin-bottom: 50px;
}
.page-c-2 #link02 + dd .dlist_rule + p {
  margin-bottom: 42px;
}
.page-c-2 #link02 + dd h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 40px 0 5px;
}
.page-c-2 #link05 + dd .list_documents {
  margin: 20px 0;
}
.page-c-2 #link05 + dd .machine_header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 1.5em 0 0.5em;
}
.page-c-2 #link05 + dd .machine_header h3 {
  font-size: 18px;
  font-weight: 700;
}
.page-c-2 #link05 + dd .machine_header a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 0.75em;
  font-weight: 500;
  background-color: #000;
  color: #fff;
  padding: 0 0.5em 1px;
}
.page-c-2 #link05 + dd .machine_header a:after {
  content: "";
  display: block;
  width: 5px;
  aspect-ratio: 1/2;
  background: url(../images/ico_arrow_right.svg) no-repeat center/contain;
}

.dlist_rental > dt {
  display: flex;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 10px;
}
.dlist_rental > dt h2 {
  font-size: 22px;
  font-weight: 700;
  color: #008E44;
  flex-shrink: 0;
  padding-right: 1.25em;
}
.dlist_rental > dt h2 small {
  font-size: 1rem;
  font-weight: 400;
  color: #000;
}
.dlist_rental > dt:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .dlist_rental > dt:after {
    margin-right: var(--extend);
  }
}
.dlist_rental dd {
  line-height: 1.875;
}
.dlist_rental dd .mt {
  display: block;
  margin-top: 1.2em;
}

.tbl_rental {
  width: 800px;
}
.tbl_rental th, .tbl_rental td {
  background-color: #fff;
  font-weight: 400;
  padding: 0.625em;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #008E44;
  border-bottom: 1px solid #008E44;
}
.tbl_rental tr td:last-child {
  border-right: none;
}
.tbl_rental tr:first-child th {
  width: 20%;
  background-color: #008E44;
  color: #fff;
  border-right: 1px solid #fff;
}
.tbl_rental tr:first-child th:last-child {
  border: none;
}
.tbl_rental tr:last-child th, .tbl_rental tr:last-child td {
  border-bottom: none;
}

.tbl_rental_02 tr:first-child th:nth-child(1) {
  width: 369px;
}
.tbl_rental_02 tr:first-child th:nth-child(2) {
  width: 209px;
}
.tbl_rental_02 tr:first-child th:nth-child(3) {
  width: 111px;
}
.tbl_rental_02 tr:first-child th:nth-child(4) {
  width: 111px;
}

.tbl_rental_03 tr:first-child th:nth-child(1) {
  width: 340px;
}
.tbl_rental_03 tr:first-child th:nth-child(2) {
  width: 273px;
}
.tbl_rental_03 tr:first-child th:nth-child(3) {
  width: 187px;
}

.dlist_rule {
  border: 1px solid #008E44;
}
.dlist_rule dt {
  background-color: #008E44;
  padding: 0.2em 15px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.dlist_rule dd {
  background-color: #fff;
  padding: 0 15px;
}
.dlist_rule dd ul li {
  border-bottom: 1px dashed #008E44;
  font-size: 18px;
  font-weight: 500;
  padding: 0.5em 0;
}
.dlist_rule dd ul li:last-child {
  border-bottom: none;
}

.list_manor {
  margin-bottom: 10px;
}
.list_manor > li {
  font-weight: 500;
  padding: 12px 0 12px 32px;
  border-bottom: 1px dashed #008E44;
  position: relative;
}
.list_manor > li:before {
  content: attr(data-num);
  display: block;
  font-family: "Jost", serif;
  font-size: 28px;
  font-weight: 700;
  color: #008E44;
  position: absolute;
  top: 1px;
  left: 0;
}
.list_manor > li:last-child {
  border-bottom: none;
}

.page-c-3 .lead {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 42px;
}
.page-c-3 .list_step {
  margin-bottom: 60px;
}
.page-c-3 .card_step .icon {
  border-radius: 0;
  width: 90px;
  padding-top: 7px;
}
.page-c-3 .card_step h3 {
  color: #008E44;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0.5em 0 0.375em;
}
@media screen and (max-width: 767px) {
  .page-c-3 .card_step h3 {
    margin-left: -1em;
    margin-right: -1em;
  }
}
.page-c-3 .card_step p {
  line-height: 1.8;
  text-align: center;
  letter-spacing: -0.1em;
}
.page-c-3 .card_step .image {
  margin: 30px auto;
  width: 100%;
}
.page-c-3 .card_step .image img {
  display: block;
  width: 100%;
}
.page-c-3 .card_step:nth-child(2) .image {
  max-width: 286px;
}
@media screen and (max-width: 767px) {
  .page-c-3 .card_step:nth-child(2) .image {
    max-width: 200px;
  }
}
.page-c-3 .card_step:nth-child(3) .image {
  max-width: 382px;
}
@media screen and (max-width: 767px) {
  .page-c-3 .card_step:nth-child(3) .image {
    max-width: 250px;
  }
}
.page-c-3 .list_step + .list_kome {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .page-c-3 .list_step + .list_kome {
    text-align: left;
    width: 252px;
    margin: 0 auto 34px;
  }
}
.page-c-3 .list_step + .list_kome > li {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
  margin-right: 1em;
  font-size: 14px;
}
.page-c-3 .list_step + .list_kome > li::before {
  content: "※";
}
.page-c-3 .list_step + .list_kome > li:last-child {
  margin-right: 0;
}
.page-c-3 .bnr {
  display: block;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}
.page-c-3 .bnr img {
  display: block;
  width: 100%;
}
.page-c-3 .bnr + p {
  text-align: center;
  margin-top: 0.75em;
}
.page-c-3 .for-student {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .page-c-3 .for-student {
    margin-top: 60px;
  }
}
.page-c-3 .for-student h3 {
  text-align: center;
  position: relative;
  margin-bottom: 24px;
}
.page-c-3 .for-student h3:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .page-c-3 .for-student h3:before {
    width: 100vw;
    margin-left: calc((50vw - 50%) * -1);
  }
}
.page-c-3 .for-student h3 span {
  position: relative;
  background-color: #F5F5ED;
  padding: 0 1.5em;
  font-size: 22px;
  font-weight: 700;
  color: #008E44;
}
.page-c-3 .for-student h3 + p {
  line-height: 1.85;
}
.page-c-3 .for-student h4 {
  margin: 40px 0 0;
  font-size: 18px;
  font-weight: 700;
}
.page-c-3 .for-student .list_documents {
  margin-top: 14px;
}
.page-c-3 .for-student .list_documents > li {
  margin-bottom: 0.625em;
  padding-left: 1.5em;
  position: relative;
}
.page-c-3 .for-student .list_documents > li:last-child {
  margin-bottom: 0;
}
.page-c-3 .for-student .list_documents > li:before {
  content: "";
  display: block;
  width: 1em;
  aspect-ratio: 1/1;
  background-color: #008E44;
  position: absolute;
  top: 5px;
  left: 0;
}
.page-c-3 .for-student .list_documents > li a {
  color: #0033CC;
  text-decoration: underline;
}

.sec_koyou,
.layout_cmn_kensyu {
  padding-bottom: 110px;
  margin-bottom: 92px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec_koyou,
  .layout_cmn_kensyu {
    padding-bottom: 80px;
    margin-bottom: 50px;
  }
}
.sec_koyou:after,
.layout_cmn_kensyu:after {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.sec_koyou .image,
.layout_cmn_kensyu .image {
  display: block;
  margin: 0 auto 40px;
}
.sec_koyou .image img,
.layout_cmn_kensyu .image img {
  display: block;
  width: 100%;
}
.sec_koyou .btn_cmn_02,
.layout_cmn_kensyu .btn_cmn_02 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.sec_koyou .btn_cmn_02 > span,
.layout_cmn_kensyu .btn_cmn_02 > span {
  padding: 0 0.5em 0 1em;
}

.layout_cmn_kensyu .ttl_cmn_02 {
  margin-bottom: 30px;
}
.layout_cmn_kensyu p {
  line-height: 1.85;
  text-align: center;
  margin-bottom: 32px;
}
.layout_cmn_kensyu p .marker_kome {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}
.layout_cmn_kensyu p .marker_kome::before {
  content: "※";
}

.sec_kouza .image {
  max-width: 374px;
}
@media screen and (max-width: 767px) {
  .sec_kouza .image {
    max-width: 280px;
  }
}
@media screen and (max-width: 767px) {
  .sec_kouza .btn_cmn_02 {
    width: 248px;
  }
  .sec_kouza .btn_cmn_02 span {
    height: 108px;
    border-radius: 25px;
    text-align: center;
  }
  .sec_kouza .btn_cmn_02:before {
    border-radius: 25px;
  }
}

.sec_kensyu {
  padding-bottom: 0;
  margin-bottom: 0;
  position: relative;
}
.sec_kensyu:after {
  content: none;
}
.sec_kensyu .image {
  max-width: 454px;
}
@media screen and (max-width: 767px) {
  .sec_kensyu .image {
    width: auto;
    margin-left: calc((50vw - 50%) * -1);
    margin-right: calc((50vw - 50%) * -1);
  }
}
@media screen and (max-width: 767px) {
  .sec_kensyu .ttl_cmn_02 + p {
    text-align: left;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .sec_kensyu .image + p {
    text-align: left;
  }
  .sec_kensyu .btn_cmn_02 {
    width: 288px;
  }
  .sec_kensyu .btn_cmn_02 span {
    height: 140px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    gap: 40px;
  }
  .sec_kensyu .btn_cmn_02 span:before {
    content: "";
    display: block;
    width: 201px;
    aspect-ratio: 201/50;
    background: url(../images/ico_kakko.svg) no-repeat center/contain;
    position: absolute;
    top: 45px;
    left: 15px;
  }
  .sec_kensyu .btn_cmn_02:before {
    border-radius: 25px;
  }
}

.page-c-4 .lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 2.2;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .page-c-4 .lead {
    font-size: 16px;
    line-height: 2.1;
    margin-bottom: 40px;
  }
}

.dlist_c-4 dt {
  display: flex;
  align-items: center;
  margin-top: 40px;
}
.dlist_c-4 dt span {
  font-size: 22px;
  font-weight: 700;
  color: #008E44;
  flex-shrink: 0;
  padding-right: 1.25em;
}
.dlist_c-4 dt:before {
  content: attr(data-num);
  display: block;
  width: 26px;
  color: #008E44;
  font-family: "Jost", serif;
  font-size: 30px;
  font-weight: 700;
  flex-shrink: 0;
}
.dlist_c-4 dt:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .dlist_c-4 dt:after {
    margin-right: var(--extend);
  }
}
.dlist_c-4 dd {
  margin-top: 10px;
  line-height: 1.8;
}
.dlist_c-4 dd ul li {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.8;
}
.dlist_c-4 dd ul li:not(:first-child) {
  margin-top: 0.375em;
}
.dlist_c-4 dd .mt {
  display: block;
  margin-top: 1.2em;
}

.text_link {
  color: #0033CC;
  text-decoration: underline;
}

.text_link_square {
  display: inline-block;
  color: #0033CC;
  text-decoration: underline;
  padding-left: 1.5em;
  position: relative;
}
.text_link_square:before {
  content: "";
  display: block;
  width: 1em;
  aspect-ratio: 1/1;
  background-color: #008E44;
  position: absolute;
  top: 0.4em;
  left: 0;
}

.error_message {
  background-color: #fff;
  border: 2px solid #D11414;
  text-align: center;
  padding: 1em;
  color: #D11414;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .error_message {
    font-size: 16px;
  }
}

.error_text {
  font-size: 12px;
  font-weight: 700;
  color: #D11414;
  margin-top: 1em;
  padding-left: 18px;
  position: relative;
}
.error_text:before {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 1/1;
  background: url(../images/ico_error.svg) no-repeat center/contain;
  position: absolute;
  top: 2px;
  left: 0;
}

.page_nav {
  position: fixed;
  z-index: 1;
  top: 50%;
  right: 0;
}
@media screen and (max-width: 767px) {
  .page_nav {
    display: none;
  }
}
.page_nav li {
  margin-bottom: 20px;
}
.page_nav li:last-child {
  margin-bottom: 0;
}
.page_nav a {
  display: block;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.2;
  color: #46B72A;
  padding: 0.5em 1em;
  border-radius: 8px 0 0 8px;
}
.page_nav a:hover {
  color: #fff;
  background-color: #46B72A;
}

.ico_require {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 26px;
  background-color: #D11414;
  font-size: 14px;
  color: #fff;
  margin-bottom: 1rem;
}

.marker_kome.mb01 {
  margin-bottom: 21px;
  padding-left: 1em;
  text-indent: -1em;
}
.marker_kome.mb01::before {
  content: "※";
}
@media screen and (max-width: 767px) {
  .marker_kome.mb01 {
    margin-bottom: 21px;
  }
}

.entry_form_02 .btn_cmn_02 {
  width: 250px;
  margin: 0 auto;
}

.sim_label {
  width: fit-content;
  font-size: 22px;
  font-weight: 700;
  background-color: #000;
  color: #fff;
  padding: 3px 1em;
  border-radius: 50px;
  margin: 12px auto 30px;
}
.sim_label + p {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .sim_label + p {
    margin-bottom: 30px;
  }
}
.popup .box .head.head02 {
  margin-bottom: 0;
}

/* 2025 03 26 instagram */
.instagram-feed {
  width: 100%;
  max-width: 334px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.instagram-post {
  width: calc( 50% - 15px );
  overflow: hidden;
  display: block;
  aspect-ratio: 1/1;
}
.instagram-post img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.instagram-post iframe {
  border: none !important;
  margin: -54px 0px 0px !important;
  width: 100% !important;
  min-width: 0 !important;
}

@media screen and (max-width: 767px) {
  .instagram-feed {
    order: 2;
  }
  .account .logo {
    order: 1;
  }
}
