@charset "UTF-8";
/*//////////////////////////////////////////////////////////

Copyright (C) apricot-design All Rights Reserved.
------------------------------------------------------------
CSS information
 file name  :  reset.css
 style info :  リセットファイル
 admin info :  apricot-design

//////////////////////////////////////////////////////////*/
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-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: 75%;
}

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;
}

input, button, select, textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 100%;
  vertical-align: baseline;
  *vertical-align: middle;
  margin: 0;
  padding: 0;
  outline: none;
}

input[type=radio] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  margin-right: 5px;
}

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

select {
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
}
select::-ms-expand {
  display: 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;
}

.fadeIn {
  opacity: 0;
}
.fadeIn.js_active {
  animation: fadeIn 0.6s ease-in-out forwards;
}

.fadeInDelay {
  opacity: 0;
}
.fadeInDelay.js_active {
  animation: fadeIn 0.6s ease-in-out 0.4s forwards;
}

.fadeInLeft {
  opacity: 0;
}
.fadeInLeft.js_active {
  animation: fadeInLeft 0.6s ease-in-out forwards;
}

.fadeInRight {
  opacity: 0;
}
.fadeInRight.js_active {
  animation: fadeInRight 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(2em);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
:root {
  --max-with: 1500;
  --min-with: 1000px;
  --headerHeight: 100px;
  --activeHeaderHeight: 90px;
  --sideW: min(4.66vw, 70px);
  --space: 120px;
  --spaceMin: 80px;
}
@media screen and (max-width: 767px) {
  :root {
    --max-with: 375;
    --min-with: 300px;
    --headerHeight: 65px;
    --activeHeaderHeight: 60px;
    --sideW: min(6.66vw, 25px);
    --space: 80px;
    --spaceMin: 50px;
  }
}

html {
  width: 100%;
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--activeHeaderHeight);
}
html.font-small {
  font-size: 8px;
}
html.font-large {
  font-size: 12px;
}

body {
  font: 400 1.6rem/1.875 "Noto Sans JP", sans-serif;
  color: #1C1C1C;
  text-align: left;
  letter-spacing: 0.06em;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.08em;
}

a {
  text-decoration: none;
  color: #1C1C1C;
  transition: 0.5s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

.opacity {
  transition: 0.3s;
}
.opacity:hover {
  opacity: 0.6;
}

img {
  max-width: 100%;
  height: auto;
}

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

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: inherit;
  }
}

#container_wrap {
  position: relative;
  min-width: var(--min-with);
  padding-top: var(--headerHeight);
}
@media screen and (max-width: 767px) {
  #container_wrap {
    overflow: hidden;
    min-width: 1px;
  }
}

.section_wrap {
  position: relative;
  padding-bottom: var(--space);
}
.section_wrap_min {
  position: relative;
  padding-bottom: var(--spaceMin);
}
.section_wrap_lg {
  position: relative;
  padding-bottom: 180px;
}
@media screen and (max-width: 767px) {
  .section_wrap_lg {
    padding-bottom: 100px;
  }
}

.inner, .inner_min {
  max-width: calc(1220px + var(--sideW) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sideW);
}
.inner_min {
  max-width: calc(1016px + var(--sideW) * 2);
}
.inner + [class*=inner], .inner_min + [class*=inner] {
  margin-top: var(--spaceMin);
}

.header {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  min-width: var(--min-with);
  height: var(--headerHeight);
  top: 0;
  left: 0;
  z-index: 1000;
  transition: 0.5s;
  padding-left: var(--sideW);
}
@media screen and (max-width: 767px) {
  .header {
    padding-right: 12px;
  }
}
.header.js_scroll {
  height: var(--activeHeaderHeight);
}
.header.js_scroll .header__nav {
  height: var(--activeHeaderHeight);
}
@media screen and (max-width: 767px) {
  .header.active .header__ttl {
    opacity: 0;
  }
}
.header__ttl {
  transition: 0.5s;
  z-index: 3;
}
.header__ttl a {
  display: block;
  width: clamp(calc(var(--min-with) * 307 / var(--max-with)), calc(307vw / var(--max-with) * 100), 307px);
  aspect-ratio: 307/51;
  white-space: nowrap;
  text-indent: 110%;
  overflow: hidden;
  background: url(../images/logo.svg) no-repeat center/contain;
  transition: none;
}
@media screen and (max-width: 767px) {
  .header__ttl a {
    width: min(52.2vw, 196px);
  }
}
.header__nav {
  color: #fff;
  height: calc(var(--headerHeight) + 30px);
  transition: 0.5s;
  padding: 0 var(--sideW) 0 clamp(calc(var(--min-with) * 60 / var(--max-with)), calc(60vw / var(--max-with) * 100), 60px);
  border-radius: 0 0 0 50px;
  background-color: #016736;
  background-image: url("data:image/svg+xml;utf8,			<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'>			<rect width='14' height='14' fill='none'/>			<rect x='0' y='0' width='14' height='0.2' fill='%23ffffff' fill-opacity='0.08'/>			<rect x='0' y='0' width='0.2'  height='14' fill='%23ffffff' fill-opacity='0.08'/>			</svg>");
  background-repeat: repeat;
  background-size: 14px 14px;
}
@media screen and (max-width: 767px) {
  .header__nav {
    height: auto;
    padding: 0;
    background: none;
    padding-top: 14px;
  }
}

.global_nav {
  display: flex;
  align-items: center;
  gap: 60px 40px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .global_nav {
    display: none;
    background-color: #016736;
    background-image: url("data:image/svg+xml;utf8,			<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'>			<rect width='14' height='14' fill='none'/>			<rect x='0' y='0' width='14' height='0.2' fill='%23ffffff' fill-opacity='0.08'/>			<rect x='0' y='0' width='0.2'  height='14' fill='%23ffffff' fill-opacity='0.08'/>			</svg>"), url(../images/nav_sp_bg.png);
    background-repeat: repeat, no-repeat;
    background-size: 14px 14px, 100% auto;
    background-position: top left, left bottom;
    padding: 110px 0 170px;
    overflow-y: scroll;
  }
}
.global_nav.active {
  display: flex;
  position: fixed;
  flex-direction: column;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.global_nav__function .font_size {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.875em;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 12px;
}
.global_nav__function .font_size ul {
  display: flex;
  align-items: center;
  gap: 5px;
}
.global_nav__function .font_size ul li {
  width: 60px;
  line-height: 21px;
  background-color: #fff;
  text-align: center;
  color: #016736;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s;
}
.global_nav__function .font_size ul li.is_current, .global_nav__function .font_size ul li:hover {
  background-color: #B29A3D;
  color: #fff;
}
.global_nav__function .sns {
  display: flex;
  align-items: center;
  gap: 11px;
}
.global_nav__function .sns img {
  display: block;
  margin: auto;
}
.global_nav__function .sns .search {
  margin-left: 6px;
}
.global_nav__function .sns .search form.gsc-search-box,
.global_nav__function .sns .search table.gsc-search-box {
  margin: 0;
}
.global_nav__function .sns .search table.gsc-search-box .gsc-input-box {
  border-radius: 0;
  padding: 0;
}
.global_nav__function .sns .search table.gsc-search-box td.gsc-input {
  padding-right: 3px;
}
.global_nav__function .sns .search table.gsc-search-box td.gsc-input .gsc-input-box {
  border: none;
}
.global_nav__function .sns .search table.gsc-search-box td.gsib_a {
  padding: 0;
}
.global_nav__function .sns .search table.gsc-search-box td.gsib_a input {
  width: 167px !important;
  height: auto !important;
  margin: 0 !important;
  line-height: 32px;
  padding: 0 0 0 10px !important;
  background-position: center left 10px !important;
}
.global_nav__function .sns .search table.gsc-search-box td.gsc-search-button {
  width: auto;
  margin: 0;
}
.global_nav__function .sns .search table.gsc-search-box td.gsc-search-button button {
  width: 32px;
  aspect-ratio: 1/1;
  background: url(../images/ico_search.svg) no-repeat center/18px auto;
  background-color: #fff;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 0;
}
.global_nav__function .sns .search table.gsc-search-box td.gsc-search-button button svg {
  display: none;
}
.global_nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px clamp(calc(var(--min-with) * 30 / var(--max-with)), calc(30vw / var(--max-with) * 100), 30px);
}
@media screen and (max-width: 767px) {
  .global_nav__list {
    flex-direction: column;
    justify-content: center;
  }
}
.global_nav__list a {
  display: block;
  position: relative;
  font-size: 1.25em;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .global_nav__list a {
    font-size: 1.375em;
  }
}
.global_nav__list a:hover::after {
  transform: scale(1);
  transform-origin: left;
}
.global_nav__list a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  left: 0;
  bottom: -2px;
  transform: scale(0, 1);
  transition: transform 0.5s;
  transform-origin: right;
}
@media screen and (max-width: 767px) {
  .global_nav .contact {
    display: block;
    padding: 0 var(--sideW);
    text-align: center;
  }
  .global_nav .contact strong {
    display: block;
    font-size: 1.125em;
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #fff;
  }
  .global_nav .contact p {
    font-size: 0.875em;
    letter-spacing: 0.04em;
  }
  .global_nav .contact p a {
    color: #fff;
  }
}

.menu-trigger {
  display: none;
  place-content: center;
  place-items: center;
  gap: 3px;
  position: relative;
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  cursor: pointer;
  background-color: #016736;
  z-index: 3;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .menu-trigger {
    display: grid;
  }
}
.menu-trigger span {
  display: block;
  position: relative;
  width: 18px;
  height: 14px;
  background: linear-gradient(to bottom, transparent calc(50% - 1px), #fff calc(50% - 1px), #fff calc(50% + 1px), transparent calc(50% + 1px));
  transition: 0.5s;
  margin-bottom: 2px;
}
.menu-trigger span::before, .menu-trigger span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  top: 0;
  left: 0;
  transform-origin: center;
  transition: 0.5s;
}
.menu-trigger span::after {
  top: auto;
  bottom: 0;
}
.menu-trigger p::before {
  content: "menu";
  display: block;
  color: #fff;
  font-size: 0.75em;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  text-align: center;
  line-height: 1;
}
.menu-trigger.active {
  background-color: #fff;
}
.menu-trigger.active span {
  background: none;
}
.menu-trigger.active span::before, .menu-trigger.active span::after {
  top: calc(50% - 1px);
  opacity: 1;
  rotate: 135deg;
  width: calc(100% + 10px);
  left: -4px;
  background-color: #016736;
}
.menu-trigger.active span::after {
  bottom: auto;
  rotate: -135deg;
}
.menu-trigger.active p::before {
  content: "Close";
  color: #016736;
}

.footer {
  padding-bottom: 200px;
  background: url(../images/footer_bg.svg) no-repeat center bottom -70px/calc(100% + 75px) auto;
}
@media screen and (max-width: 767px) {
  .footer {
    background-size: 144.5% auto;
    background-position: center bottom -15px;
    padding-bottom: 100px;
  }
}
.footer .inner, .footer .inner_min {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}
.footer__link {
  width: 100%;
  margin-bottom: var(--space);
}
@media screen and (max-width: 767px) {
  .footer__link {
    margin-bottom: 60px;
    padding: 0 var(--sideW);
  }
}
.footer__link .ttl_cmn_01 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .footer__link .ttl_cmn_01 {
    margin-bottom: 30px;
  }
}
.footer__link ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px clamp(calc(var(--min-with) * 40 / var(--max-with)), calc(40vw / var(--max-with) * 100), 40px);
}
.footer__link ul a {
  display: grid;
  place-content: center;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(28, 28, 28, 0.2);
  height: 120px;
}
.footer__link ul a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px rgba(28, 28, 28, 0.3);
}
.footer__info > img {
  display: block;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .footer__info > img {
    width: 246px;
    margin: 0 auto 30px;
  }
}
.footer__info p {
  font-size: 0.9375em;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .footer__info p {
    text-align: center;
    font-size: 0.8125em;
    letter-spacing: 0.04em;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav {
    width: 100%;
  }
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .footer__nav ul {
    align-items: center;
  }
}
.footer__nav ul a {
  display: block;
  font-size: 0.9375em;
  padding-bottom: 2px;
  border-bottom: 1px solid #1C1C1C;
  padding-right: 27px;
  background: url(../images/ico_blank.svg) no-repeat center right 5px;
}
@media screen and (max-width: 767px) {
  .footer__nav ul a {
    font-size: 0.8125em;
    padding-right: 20px;
    background-size: 13px auto;
  }
}
.footer__nav ul a:hover {
  color: #016736;
}
.footer .copyright {
  width: 100%;
  margin-top: 25px;
  font-size: 0.875em;
}
@media screen and (max-width: 767px) {
  .footer .copyright {
    margin-top: 30px;
    font-size: 0.75em;
    text-align: center;
  }
}

.main_visual {
  position: relative;
  height: calc(100vh - var(--headerHeight));
  height: calc(100svh - var(--headerHeight));
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .main_visual {
    margin-bottom: 40px;
  }
}
.main_visual__slide {
  width: 100%;
  height: 100%;
}
.main_visual__slide .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 11px;
  bottom: 33px;
  left: auto;
  padding: 0 var(--sideW);
}
@media screen and (max-width: 767px) {
  .main_visual__slide .swiper-pagination {
    justify-content: center;
  }
}
.main_visual__slide .swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  opacity: 1;
  background-color: #fff;
  border: 1px solid #fff;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .main_visual__slide .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }
}
.main_visual__slide .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #016736;
}
.main_visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main_visual h2 {
  position: absolute;
  top: 50%;
  left: clamp(calc(var(--min-with) * 162 / var(--max-with)), calc(162vw / var(--max-with) * 100), 162px);
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .main_visual h2 {
    left: 0;
    right: 0;
    top: 25%;
    transform: none;
  }
}
@media screen and (max-width: 767px) {
  .main_visual h2 img {
    display: block;
    width: 60%;
    margin: auto;
  }
}

.sec_top_news {
  padding-bottom: 135px;
}
@media screen and (max-width: 767px) {
  .sec_top_news {
    padding-bottom: 60px;
  }
}
.sec_top_news .inner, .sec_top_news .inner_min {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 0;
}
.sec_top_news .inner h2, .sec_top_news .inner_min h2 {
  font-size: 3.75em;
  font-family: "Poppins", sans-serif;
  color: #016736;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  width: 314px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sec_top_news .inner h2:after, .sec_top_news .inner_min h2:after {
  content: "";
  display: block;
  width: 100px;
  aspect-ratio: 1/1;
  background: url(../images/top_information_icon_01.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .sec_top_news .inner h2, .sec_top_news .inner_min h2 {
    width: 206px;
    font-size: 2.5em;
  }
  .sec_top_news .inner h2:after, .sec_top_news .inner_min h2:after {
    width: 60px;
  }
}
.sec_top_news .inner .news, .sec_top_news .inner_min .news {
  width: calc(100% - 360px);
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .sec_top_news .inner .news, .sec_top_news .inner_min .news {
    width: 100%;
  }
}
.sec_top_news .inner .news .list_news a, .sec_top_news .inner_min .news .list_news a {
  padding-block: 10px;
}

.top_lead .text {
  position: relative;
  padding-right: 46.5%;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .top_lead .text {
    padding: 120px 0 0;
  }
}
.top_lead .text::after {
  content: "";
  position: absolute;
  width: 42.8%;
  aspect-ratio: 522/443;
  background: url(../images/top_lead.png) no-repeat center/contain;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .top_lead .text::after {
    bottom: auto;
    top: 0;
    right: calc(var(--sideW) * -1);
    width: 55%;
  }
}
.top_lead .text h2 {
  margin-bottom: 40px;
}
.top_lead .text p {
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .top_lead .text p {
    font-size: 0.875em;
    line-height: 1.8;
  }
}
.top_lead__slide .swiper-wrapper {
  transition-timing-function: linear;
}
.top_lead__slide .swiper-slide {
  aspect-ratio: 1/1;
}
.top_lead__slide .swiper-slide:nth-of-type(2n) {
  margin-top: 40px;
}
.top_lead__slide .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}

.top_about {
  padding-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .top_about {
    padding-bottom: 80px;
  }
}
.top_about table {
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_about table {
    display: block;
  }
  .top_about table thead, .top_about table tbody, .top_about table tr, .top_about table th, .top_about table td {
    display: block;
    width: 100%;
  }
}
.top_about table th, .top_about table td {
  vertical-align: top;
  padding: 15px 25px;
  letter-spacing: 0.08em;
  border-bottom: 1px dashed #1C1C1C;
}
@media screen and (max-width: 767px) {
  .top_about table th, .top_about table td {
    padding: 5px 0 15px;
    font-size: 0.875em;
  }
}
.top_about table th {
  font-weight: 700;
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .top_about table th {
    padding: 15px 0 0;
    font-size: 1em;
    border-bottom: none;
  }
}
.top_about table th a {
  text-decoration: underline;
}
.top_about table th a:hover {
  color: #016736;
}

.top_information {
  position: relative;
  padding-bottom: 50px;
  margin-bottom: var(--space);
}
@media screen and (max-width: 767px) {
  .top_information {
    padding: 60px 0;
  }
}
.top_information::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 62px);
  background-color: #E8E2C8;
  background-image: url("data:image/svg+xml;utf8,			<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'>			<rect width='14' height='14' fill='none'/>			<rect x='0' y='0' width='14' height='0.2' fill='%23ffffff' fill-opacity='0.86'/>			<rect x='0' y='0' width='0.2'  height='14' fill='%23ffffff' fill-opacity='0.86'/>			</svg>");
  background-repeat: repeat;
  background-size: 14px 14px;
  top: 62px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .top_information::after {
    height: 100%;
    top: 0;
  }
}
.top_information .information_wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sideW);
  position: relative;
  z-index: 1;
  padding: 70px var(--sideW) 95px;
  border: 5px solid #1C1C1C;
  border-radius: 30px 30px 0 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .top_information .information_wrap {
    grid-template-columns: 1fr;
    padding: 0 clamp(calc(var(--min-with) * 22 / var(--max-with)), calc(22vw / var(--max-with) * 100), 22px) 40px;
  }
}
.top_information .information_wrap::before {
  content: "";
  position: absolute;
  width: 207px;
  aspect-ratio: 207/146;
  background: url(../images/top_information_icon_01.svg) no-repeat center/contain;
  right: -52px;
  top: -113px;
}
@media screen and (max-width: 767px) {
  .top_information .information_wrap::before {
    width: 114px;
    right: -25px;
    top: auto;
    bottom: calc(100% + 18px);
  }
}
.top_information .information_wrap .left {
  position: relative;
  padding-top: 150px;
}
@media screen and (max-width: 767px) {
  .top_information .information_wrap .left {
    padding-top: 0;
  }
}
.top_information .information_wrap .left h2 {
  position: absolute;
  left: -20px;
  top: -110px;
}
@media screen and (max-width: 767px) {
  .top_information .information_wrap .left h2 {
    position: static;
  }
}
@media screen and (max-width: 767px) {
  .top_information .information_wrap .left h2 img {
    display: block;
    width: 214px;
    margin: 0 auto;
    transform: translateY(-10px);
  }
}
.top_information .information_wrap .left ul {
  position: sticky;
  top: var(--headerHeight);
}
.top_information .information_wrap .left ul a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .top_information .information_wrap .left ul a {
    font-size: 0.9375em;
  }
}
.top_information .information_wrap .left ul a::before {
  content: "";
  display: block;
  width: 18px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_01.svg) no-repeat center/contain;
  transform: translateY(2px);
  flex-shrink: 0;
}
.top_information .information_wrap .right h3 {
  position: relative;
  color: #fff;
  background-color: #489860;
  padding: 15px 0 15px 110px;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.75;
  margin-top: 65px;
}
@media screen and (max-width: 767px) {
  .top_information .information_wrap .right h3 {
    font-size: 1.25em;
    padding: 10px 13px;
  }
}
.top_information .information_wrap .right h3:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .top_information .information_wrap .right h3.ico_02 {
    font-size: 1.125em;
    line-height: 1.5;
    padding: 13px;
  }
}
.top_information .information_wrap .right h3.ico_02::after {
  background-image: url(../images/top_information_icon_03.svg);
}
@media screen and (max-width: 767px) {
  .top_information .information_wrap .right h3.ico_02::after {
    width: 54px;
    top: -6px;
  }
}
.top_information .information_wrap .right h3::after {
  content: "";
  position: absolute;
  width: 78px;
  aspect-ratio: 1/1;
  background: url(../images/top_information_icon_02.svg) no-repeat center/contain;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .top_information .information_wrap .right h3::after {
    width: 44px;
    left: 13px;
    top: 0;
  }
}
.top_information .information_wrap .right h4 {
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #1C1C1C;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .top_information .information_wrap .right h4 {
    font-size: 1.125em;
  }
}
.top_information .information_wrap .right h5 {
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .top_information .information_wrap .right h5 {
    margin-top: 35px;
    font-size: 1.13em;
  }
}
.top_information .information_wrap .right h5 + p {
  margin-top: 5px;
  font-size: 0.933em;
  line-height: 1.7;
}
.top_information .information_wrap .right p {
  letter-spacing: 0.04em;
  margin-top: 15px;
}
.top_information .information_wrap .right p:first-child {
  margin-top: 0;
}
.top_information .information_wrap .right .btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 50px;
  background-color: #016736;
  border-radius: 30px;
  text-align: center;
  color: #fff;
  padding-left: 24px;
  padding-right: 12px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .top_information .information_wrap .right .btn {
    font-size: 0.8125em;
  }
}
.top_information .information_wrap .right .btn::after {
  content: "";
  display: block;
  width: 26px;
  aspect-ratio: 1/1;
  background: url(../images/ico_fax.svg) no-repeat center/contain;
}
.top_information .information_wrap .right .table {
  width: 100%;
  font-size: 0.9375em;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .top_information .information_wrap .right .table:not(.in_table) {
    display: block;
  }
  .top_information .information_wrap .right .table > thead, .top_information .information_wrap .right .table > tbody {
    display: block;
    width: 100%;
  }
  .top_information .information_wrap .right .table > thead > tr, .top_information .information_wrap .right .table > tbody > tr {
    display: block;
    width: 100%;
  }
  .top_information .information_wrap .right .table > thead > tr > th, .top_information .information_wrap .right .table > thead > tr > td, .top_information .information_wrap .right .table > tbody > tr > th, .top_information .information_wrap .right .table > tbody > tr > td {
    display: block;
    width: 100%;
  }
}
.top_information .information_wrap .right .table th, .top_information .information_wrap .right .table td {
  padding: 25px 0;
  vertical-align: top;
  border-bottom: 1px dashed #1C1C1C;
}
@media screen and (max-width: 767px) {
  .top_information .information_wrap .right .table th, .top_information .information_wrap .right .table td {
    padding: 3px 0 18px;
    font-size: 0.933em;
  }
}
.top_information .information_wrap .right .table th {
  font-weight: 700;
  width: 145px;
}
@media screen and (max-width: 767px) {
  .top_information .information_wrap .right .table th {
    padding: 18px 0 0;
    font-size: 1em;
    border-bottom: none;
  }
}
.top_information .information_wrap .right .table strong {
  display: block;
  font-size: 1.125em;
  text-align: center;
  color: #fff;
  background-color: #B29A3D;
  padding: 6px 0;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .top_information .information_wrap .right .table strong {
    font-size: 1.25em;
  }
}
.top_information .information_wrap .right .table dl {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 18px;
}
.top_information .information_wrap .right .table dl .item {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 10px 17px;
  align-items: center;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .top_information .information_wrap .right .table dl .item {
    grid-template-columns: 1fr;
  }
}
.top_information .information_wrap .right .table dl .item dt {
  border-radius: 80px;
  text-align: center;
  line-height: 46px;
  height: 46px;
  background-color: #E8E2C8;
  font-size: 0.933em;
}
@media screen and (max-width: 767px) {
  .top_information .information_wrap .right .table dl .item dt {
    width: 160px;
  }
}
.top_information .information_wrap .right .table dl .item dd {
  font-size: 0.933em;
}
.top_information .information_wrap .right .table .pc + .in_table.sp {
  margin-top: 0;
}
.top_information .information_wrap .right .table table {
  width: 100%;
  font-size: 0.933em;
  margin-top: 27px;
}
.top_information .information_wrap .right .table table:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .top_information .information_wrap .right .table table.sp {
    width: 100%;
    display: table;
  }
  .top_information .information_wrap .right .table table.sp + .sp {
    margin-top: 0;
  }
}
.top_information .information_wrap .right .table table.w_auto {
  width: auto;
}
.top_information .information_wrap .right .table table.w_auto th, .top_information .information_wrap .right .table table.w_auto td {
  width: 184px;
}
.top_information .information_wrap .right .table table thead th {
  background-color: #E8E2C8;
  border: 0.5px solid #1C1C1C;
  text-align: center;
  font-weight: 400;
  width: auto;
  padding: 5px 0;
}
.top_information .information_wrap .right .table table tbody td {
  vertical-align: middle;
  padding: 5px 0;
  text-align: center;
  border: 0.5px solid #1C1C1C;
}

.hero {
  height: 303px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .hero {
    height: 200px;
  }
}
.hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.map {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 340px;
  border: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .map {
    height: 110px;
  }
}
.map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ttl_cmn_01 {
  display: block;
  text-align: center;
  font-weight: 500;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_01 {
    font-size: 0.875em;
  }
}
.ttl_cmn_01::before {
  content: attr(data-en);
  display: block;
  font-size: 3.75em;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #016736;
  line-height: 1;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_01::before {
    font-size: 3.57em;
    letter-spacing: 0.06em;
    padding-right: 86px;
  }
}

.list_news {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.list_news:last-child {
  margin-bottom: 0;
}
.list_news a {
  display: flex;
  flex-wrap: wrap;
  padding: 25px 0;
  border-bottom: 1px dashed #1C1C1C;
}
.list_news .date {
  width: 140px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .list_news .date {
    text-align: left;
    font-size: 0.875em;
  }
}
.list_news .title {
  display: block;
  width: calc(100% - 140px);
}
@media screen and (max-width: 767px) {
  .list_news .title {
    width: 100%;
    font-size: 0.9375em;
  }
}
.list_news .title:hover {
  color: #016736;
}

.list_btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .list_btns {
    gap: 15px;
  }
}
.list_btns--left {
  justify-content: left;
}

.table_parent {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .table_parent {
    white-space: nowrap;
    margin-bottom: 20px;
  }
}
.table_parent:last-child {
  margin-bottom: 0;
}

.btn_more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875em;
  letter-spacing: 0.08em;
}
.btn_more:hover {
  color: #016736;
}
.btn_more:hover::after {
  background-color: #016736;
}
.btn_more::after {
  content: "";
  display: block;
  width: 17px;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_arrow_01.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow_01.svg) no-repeat center/contain;
  background-color: #1C1C1C;
  transform: translateY(1px);
  transition: 0.5s;
}

.post_title {
  font-size: 2em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .post_title {
    font-size: 1.5em;
  }
}

.post_date {
  font-size: 0.9375em;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.08em;
  margin-bottom: 45px;
}

.add_ttl {
  font-size: 1.75em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.75;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .add_ttl {
    font-size: 1.375em;
  }
}
.add_ttl:first-child {
  margin-top: 0;
}

.add_link {
  letter-spacing: 0.08em;
  display: inline-block;
  border-bottom: 2px solid #1C1C1C;
}
.add_link:hover {
  border-bottom-color: #016736;
  color: #016736;
}

.post_contents {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .post_contents {
    margin-bottom: 50px;
  }
}
.post_contents p {
  margin-top: 25px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .post_contents p {
    font-size: 0.875em;
  }
}
.post_contents p:first-child {
  margin-top: 0;
}
.post_contents img {
  display: block;
  margin-top: 35px;
  border-radius: 15px;
}
.post_contents img:first-child {
  margin-top: 0;
}

/* ==========================================================================//
//
// parts
//
// ========================================================================== */
/* 背景パララックス
---------------------------------------------------------------------------------------------------------------------- */
.bg_parallax {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .bg_parallax {
    background-size: auto 120%;
  }
}

.img_parallax {
  position: relative;
  overflow: hidden;
}
.img_parallax img {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.1s linear;
  will-change: transform;
}

/* wp-pagenavi
---------------------------------------------------------------------------------------------------------------------- */
.wp-pagenavi {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 20px;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    gap: 10px;
    justify-content: flex-start;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: grid;
  place-content: center;
  width: 40px;
  aspect-ratio: 1/1;
  background-color: #489860;
  color: #fff;
  font-size: 1.25em;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 30px;
    font-size: 1.125em;
  }
}
.wp-pagenavi a:hover, .wp-pagenavi a.current,
.wp-pagenavi span:hover,
.wp-pagenavi span.current {
  background-color: #016736;
}
.wp-pagenavi a.extend,
.wp-pagenavi span.extend {
  width: auto;
  aspect-ratio: auto;
  background-color: transparent;
  font-family: "Noto Sans JP", sans-serif;
  color: #016736;
}
.wp-pagenavi a.extend::after,
.wp-pagenavi span.extend::after {
  content: none;
}

/* モーダル
---------------------------------------------------------------------------------------------------------------------- */
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 25px;
  z-index: 1001;
}
@media screen and (max-width: 767px) {
  .modal {
    border-radius: 20px;
  }
}
.modal_close_btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  aspect-ratio: 1/1;
  background: url(../images/ico_modal_close.svg) no-repeat center/contain;
  border-radius: 50%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .modal_close_btn {
    width: 30px;
    right: 12px;
  }
}
.modal_close_btn::after {
  transform: rotate(-45deg);
}
.modal_content {
  display: none;
  position: relative;
  width: auto;
  max-width: calc(100vw - var(--sideW) * 2);
  max-height: 90vh;
  overflow-y: scroll;
  padding: 75px min(6.66vw, 100px) 90px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .modal_content {
    padding: 40px var(--sideW);
    border-radius: 20px;
  }
}
.modal_prev, .modal_next {
  position: absolute;
  width: var(--sideW);
  height: 100%;
  left: 0;
  top: 0;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
}
.modal_prev::after, .modal_next::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/ico_arrow_right.svg) no-repeat center/30px auto;
  left: 0;
  top: 0;
  transform: rotate(180deg);
}
.modal_next {
  left: auto;
  right: 0;
}
.modal_next::after {
  transform: rotate(0);
}

.modal_overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background-color: rgba(1, 103, 54, 0.8);
  top: 0;
  left: 0;
  z-index: 1000;
}

/* タブ切り替え
---------------------------------------------------------------------------------------------------------------------- */
.js_tab__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .js_tab__menu {
    gap: 5px;
  }
}
.js_tab__menu-btn {
  background-color: #EDE7D3;
  line-height: 77px;
  text-align: center;
  padding: 0 22px;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 10px 10px 0 0;
  transition: 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .js_tab__menu-btn {
    line-height: 1.5;
    padding: 12px 10px;
    font-size: 0.8125em;
  }
}
.js_tab__menu-btn.js_active {
  background-color: #016736;
  color: #fff;
}
.js_tab .js_tab__panel-item {
  display: none;
}
.js_tab .js_tab__panel-item.js_active {
  display: block;
}

/* パンくず
---------------------------------------------------------------------------------------------------------------------- */
#list_breadcrumb {
  font-size: 0.875em;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #list_breadcrumb {
    font-size: 0.75em;
    overflow-x: scroll;
    text-align: right;
  }
}
#list_breadcrumb .inner, #list_breadcrumb .inner_min {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5em;
}
@media screen and (max-width: 767px) {
  #list_breadcrumb .inner, #list_breadcrumb .inner_min {
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    white-space: nowrap;
    width: auto;
    max-width: none;
    margin: 0;
  }
}

/* swiper-common
---------------------------------------------------------------------------------------------------------------------- */
.swiper-button {
  width: 90px;
  height: auto;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_arrow_white.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow_white.svg) no-repeat center/contain;
  background-color: #016736;
  margin: 0;
  top: calc(50% - 45px);
}
@media screen and (max-width: 767px) {
  .swiper-button {
    width: 40px;
    top: calc(50% - 20px);
  }
}
.swiper-button::after {
  content: none;
}
.swiper-button-prev {
  transform: rotate(180deg);
}

/* その他
---------------------------------------------------------------------------------------------------------------------- */
.lead {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .lead {
    text-align: left;
    line-height: 1.75;
    margin-bottom: 40px;
  }
}
.lead:last-child {
  margin-bottom: 0;
}
.lead--left {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .lead--sp_center {
    text-align: center;
  }
}
.lead.mb_sm {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .lead.mb_sm {
    margin-bottom: 20px;
  }
}

/* アーカイブのページネーション
---------------------------------------------------------------------------------------------------------------------- */
.list_pagination {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed #1C1C1C;
  border-bottom: 1px dashed #1C1C1C;
  padding: 25px 20px;
}
@media screen and (max-width: 767px) {
  .list_pagination {
    padding: 20px 0;
    justify-content: center;
    gap: 15px 0;
  }
}
.list_pagination:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .list_pagination li {
    order: 1;
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .list_pagination li:nth-child(2) {
    order: 3;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .list_pagination li:nth-child(3) {
    order: 2;
  }
}
.list_pagination a {
  display: block;
  position: relative;
  padding: 0 40px;
  position: relative;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .list_pagination a {
    padding: 0 30px;
  }
}
.list_pagination a:hover {
  text-decoration: underline;
  color: #016736;
}
.list_pagination a:hover::before {
  background-color: #016736;
}
.list_pagination a::before {
  content: "";
  position: absolute;
  width: 27px;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_arrow_01.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow_01.svg) no-repeat center/contain;
  background-color: #1C1C1C;
  left: 0;
  top: calc(50% - 13.5px);
  transform: rotate(180deg);
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .list_pagination a::before {
    width: 20px;
    top: calc(50% - 10px);
  }
}
.list_pagination a.next {
  text-align: right;
}
.list_pagination a.next::before {
  left: auto;
  right: 0;
  transform: none;
}
.list_pagination a.archive::before {
  content: none;
}

/* フォームパーツ
---------------------------------------------------------------------------------------------------------------------- */
.dlist_form {
  display: flex;
  flex-direction: column;
  gap: 35px;
  position: relative;
  margin-bottom: 40px;
}
.dlist_form .item {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: baseline;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .dlist_form .item {
    grid-template-columns: 1fr;
    gap: 10px 0;
  }
}
.dlist_form .item:last-child {
  padding-top: 32px;
  border-top: 1px solid #1C1C1C;
}
@media screen and (max-width: 767px) {
  .dlist_form .item:last-child {
    padding-top: 25px;
  }
}
.dlist_form .item:last-child p {
  font-size: 0.8125em;
}
.dlist_form dt {
  font-weight: 700;
  font-size: 1.125em;
}
.dlist_form dt.req {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .dlist_form dt.req {
    gap: 0 10px;
  }
}
.dlist_form dt.req::after {
  content: "必須";
  display: block;
  width: 45px;
  line-height: 22px;
  text-align: center;
  background-color: #016736;
  color: #fff;
  font-size: 0.75em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .dlist_form dd .wpcf7-radio {
    -moz-columns: 2;
         columns: 2;
    -moz-column-fill: auto;
         column-fill: auto;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}

input[type=text],
input[type=email],
input[type=tel],
input[type=date],
select,
textarea {
  width: 100%;
  max-width: 100%;
  padding: 20px;
  background-color: transparent;
  border: 1px solid #1C1C1C;
  line-height: 1.5;
  color: #1C1C1C;
  text-align: left;
}
@media screen and (max-width: 767px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=date],
  select,
  textarea {
    padding: 15px 10px;
  }
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=date]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #A3A3A3;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=date]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #A3A3A3;
}

textarea {
  height: 264px;
}
@media screen and (max-width: 767px) {
  textarea {
    height: 150px;
  }
}

select {
  width: auto;
  padding: 22px 45px 22px 20px;
  background: url(../images/ico_select.svg) no-repeat center right 10px;
}
@media screen and (max-width: 767px) {
  select {
    padding: 15px 45px 15px 10px;
  }
}

.wpcf7-form-control-wrap:has(#zip) {
  display: block;
}
.wpcf7-form-control-wrap:has(#zip)::before {
  content: "〒";
  display: inline-block;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-control-wrap:has(#zip)::before {
    margin-right: 10px;
  }
}

#zip {
  width: 280px;
}
@media screen and (max-width: 767px) {
  #zip {
    width: 150px;
  }
}

.mail_domain {
  background-color: #fff;
  padding: 25px 45px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .mail_domain {
    padding: 20px var(--sideW);
    margin-bottom: 25px;
  }
}
.mail_domain strong {
  display: block;
  margin-bottom: 8px;
}
.mail_domain p {
  font-size: 0.875em;
}

.wpcf7-checkbox,
.wpcf7-radio,
.wpcf7-acceptance {
  display: block;
}
.wpcf7-checkbox.site_check,
.wpcf7-radio.site_check,
.wpcf7-acceptance.site_check {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}
@media screen and (max-width: 767px) {
  .wpcf7-checkbox.site_check,
  .wpcf7-radio.site_check,
  .wpcf7-acceptance.site_check {
    gap: 15px 25px;
  }
}
.wpcf7-checkbox.site_check .wpcf7-list-item,
.wpcf7-radio.site_check .wpcf7-list-item,
.wpcf7-acceptance.site_check .wpcf7-list-item {
  margin: 0;
}
.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-radio .wpcf7-list-item,
.wpcf7-acceptance .wpcf7-list-item {
  display: block;
  margin: 0 0 15px;
}
@media screen and (max-width: 767px) {
  .wpcf7-checkbox .wpcf7-list-item,
  .wpcf7-radio .wpcf7-list-item,
  .wpcf7-acceptance .wpcf7-list-item {
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    margin-bottom: 0;
    padding-bottom: 15px;
  }
}
.wpcf7-checkbox .wpcf7-list-item:last-child,
.wpcf7-radio .wpcf7-list-item:last-child,
.wpcf7-acceptance .wpcf7-list-item:last-child {
  margin-bottom: 0;
}
.wpcf7-checkbox .wpcf7-list-item label,
.wpcf7-radio .wpcf7-list-item label,
.wpcf7-acceptance .wpcf7-list-item label {
  font-size: 0.9375em;
}
.wpcf7-checkbox .wpcf7-list-item label input,
.wpcf7-radio .wpcf7-list-item label input,
.wpcf7-acceptance .wpcf7-list-item label input {
  display: none;
}
.wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after,
.wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  border-color: #1C1C1C;
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label,
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  display: block;
  position: relative;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label,
  .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label,
  .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
    padding-left: 25px;
  }
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before,
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  width: 1.42em;
  aspect-ratio: 1/1;
  border: 1px solid #1C1C1C;
  left: 0;
  top: calc(50% - 0.71em);
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after,
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 6px;
  border-left: 2px solid transparent;
  border-bottom: 2px solid transparent;
  left: 0.2em;
  top: calc(50% - 0.3em);
  transform: rotate(-40deg);
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after,
  .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after,
  .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::after {
    top: 8px;
    left: 3px;
  }
}

[data-name=doui] .wpcf7-acceptance {
  display: block;
}
[data-name=doui] .wpcf7-acceptance a {
  text-decoration: underline;
}
[data-name=doui] .wpcf7-acceptance a:hover {
  text-decoration: none;
}
[data-name=doui] + p {
  font-size: 0.8125em;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 5px;
}

.privacy-policy_wrap {
  background-color: #fff;
  padding: 80px clamp(calc(var(--min-with) * 100 / var(--max-with)), calc(100vw / var(--max-with) * 100), 100px);
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .privacy-policy_wrap {
    padding: 40px var(--sideW);
  }
}

.dlist_policy {
  margin-bottom: 20px;
}
.dlist_policy:last-child {
  margin-bottom: 0;
}
.dlist_policy .item {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .dlist_policy .item {
    margin-bottom: 40px;
  }
}
.dlist_policy .item:last-child {
  margin-bottom: 0;
}
.dlist_policy dt {
  display: flex;
  gap: 0 10px;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .dlist_policy dt {
    font-size: 1.125em;
  }
}
.dlist_policy dt::before {
  content: "●";
  display: block;
  font-weight: 500;
  color: #016736;
  flex-shrink: 0;
}
.dlist_policy dd {
  font-size: 0.875em;
}
@media screen and (max-width: 767px) {
  .dlist_policy dd ul {
    padding: 15px 0;
    margin-bottom: 25px;
  }
}
.dlist_policy dd ul:last-child {
  margin-bottom: 0;
}
.dlist_policy dd ul li {
  display: flex;
  gap: 0.5em;
}
.dlist_policy dd ul li::before {
  content: "■";
  display: block;
  flex-shrink: 0;
}

/* reCAPTCHAバッジ非表示 */
.grecaptcha-badge {
  visibility: hidden;
}

.grecaptcha_text {
  text-align: center;
}

/* ユーティリティ
mx ＝ "x軸方向のmargin"
---------------------------------------------------------------------------------------------------------------------- */
.u-text-center {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .u-text-left-sp {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .u-text-center-sp {
    text-align: center;
  }
}

.u-text-left {
  text-align: left;
}

.u-mx-center {
  margin-inline: auto;
}

.u-mx-right {
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .u-mx-right-sp {
    margin-left: auto;
  }
}

.u-mx-left {
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .u-mx-left-sp {
    margin-right: auto;
  }
}

.u-disp-ib {
  display: inline-block;
}

.u-nolink {
  pointer-events: none;
}

.u-nolink-pc {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .u-nolink-pc {
    pointer-events: auto;
  }
}

@media screen and (max-width: 767px) {
  .u-nolink-sp {
    pointer-events: none;
  }
}

.u-br-gap {
  display: block;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .u-br-gap {
    margin-bottom: 10px;
  }
}

.u-br-gap-sp {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-br-gap-sp {
    margin-bottom: 10px;
  }
}

.post-type-archive-post .section_wrap .ttl_cmn_01:before {
  background: url(../images/top_information_icon_01.svg) no-repeat center right/contain;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 122px;
}

.single-post .section_wrap .ttl_cmn_01:before {
  background: url(../images/top_information_icon_01.svg) no-repeat center right/contain;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 122px;
}