@charset "UTF-8";
.js-show-up {
  opacity: 0;
  transform: translate(0, 100px);
}
.js-show-up.is-show {
  opacity: 1;
  transform: none;
}

.js-show-left {
  opacity: 0;
  transform: translate(80px, 0);
}
.js-show-left.is-show {
  opacity: 1;
  transform: none;
}

.js-show-right {
  opacity: 0;
  transform: translate(-80px, 0);
}
.js-show-right.is-show {
  opacity: 1;
  transform: none;
}

html {
  box-sizing: border-box;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0 !important;
  scroll-behavior: smooth;
  color: #1a1a1a;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 572px) {
  html {
    font-size: 14px;
  }
}

input {
  -webkit-appearance: auto;
  -moz-appearance: auto;
       appearance: auto;
  margin: 0;
}

dt,
th {
  font-weight: 400;
}

.container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.wrap {
  margin-inline: auto;
  padding: 0 40px;
  width: min(100%, 1200px);
}
@media screen and (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }
}

.wrap-tb {
  margin-inline: auto;
  padding: 0 20px;
  width: min(100%, 1004px);
}

.wrap-tb-s {
  margin-inline: auto;
  padding: 0 20px;
  width: min(100%, 808px);
}

@media screen and (max-width: 1024px) {
  .mb-hide {
    display: none;
  }
}

.mb-display {
  display: none;
}
@media screen and (max-width: 964px) {
  .mb-display {
    display: block;
  }
}

@media screen and (max-width: 572px) {
  .sm-hide {
    display: none;
  }
}

.sm-display {
  display: none;
}
@media screen and (max-width: 572px) {
  .sm-display {
    display: block;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.body-fadein {
  -webkit-animation: fadeIn 1.5s forwards;
          animation: fadeIn 1.5s forwards;
}

.scroll-off {
  overflow: hidden;
}

.scroll-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  display: block flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 30px;
  right: 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
  transition: 0.7s;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 572px) {
  .scroll-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
  }
}
.scroll-top.is-show {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  box-shadow: none;
}
.scroll-top::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-left: 2px solid #1a1a1a;
  border-top: 2px solid #1a1a1a;
  transform: rotate(45deg) translate(2px, 2px);
}

.section-title {
  text-align: center;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.section-title__en {
  color: #1a1a1a;
  font-size: 3.5rem;
}
@media screen and (max-width: 572px) {
  .section-title__en {
    font-size: 3rem;
  }
}
.section-title__ja {
  line-height: 1;
  margin-top: 1em;
  font-size: 1.125rem;
}

.sec-name {
  position: relative;
  font-size: 1.75rem;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 20px;
  color: #1a1a1a;
  margin-inline: auto;
}
@media screen and (max-width: 572px) {
  .sec-name {
    font-size: 1.5rem;
    padding: 0 0 0 10px;
  }
}
.sec-name::before {
  content: "";
  width: 1em;
  height: 1em;
  background-image: url(../image/company/icon-sec-name.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translate(0, -50%);
}

.pagination {
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 572px) {
  .pagination {
    margin-top: 30px;
  }
}

.nav-links .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: #1a1a1a;
}

.nav-links a.page-numbers,
.nav-links .current,
.nav-links a.prev,
.nav-links a.next,
.nav-links .dots {
  width: 50px;
  height: 50px;
  font-size: 1.125rem;
  font-weight: bold;
  transition: 0.5s;
  font-weight: bold;
}

.nav-links a.page-numbers:hover {
  opacity: 0.7;
}

.nav-links .current {
  font-weight: bold;
  color: #D54940;
  padding: 0;
}

/* 前への「＜」、次への「＞」 */
.nav-links a.prev,
.nav-links a.next {
  color: currentColor;
  position: relative;
  border: none;
}

.nav-links .dots {
  background: transparent;
  border: none;
}

.next.page-numbers {
  position: relative;
}
.next.page-numbers::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  display: inline-block;
  background-color: currentColor;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(-50%, -45%);
}

.prev.page-numbers {
  position: relative;
}
.prev.page-numbers::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  display: inline-block;
  background-color: currentColor;
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
  transform: translate(-50%, -45%);
}

.container {
  position: relative;
}
.container .header {
  background-color: transparent;
  height: 100px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 0 2%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
}
.container .header.is-color {
  color: #333;
}
@media screen and (max-width: 572px) {
  .container .header {
    display: none;
  }
}
.container .header__nav {
  font-weight: bold;
}
.container .header__nav_list {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.container .header__nav_list_item > a {
  display: block;
  padding: 0.5em;
  transition: 0.3s ease;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}
.container .header__nav_list_item > a:hover {
  opacity: 0.7;
}
.container .header__nav_list_item > a .svg-instagram {
  fill: currentColor;
  width: 24px;
  height: 24px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
}
.container .fv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  background-image: url(../image/fv_image.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .container .fv {
    background-image: url(../image/fv_image_sp.jpg);
  }
}
.container .fv__logo {
  position: absolute;
  left: 4%;
  top: 60px;
  width: 250px;
}
@media screen and (max-width: 1024px) {
  .container .fv__logo {
    top: 20px;
    width: 180px;
  }
}
.container .fv__logo > a {
  display: block;
  transition: 0.3s ease;
}
.container .fv__logo > a:hover {
  opacity: 0.7;
}
.container .fv__logo img {
  width: 100%;
}
.container .fv__main {
  position: absolute;
  left: 4%;
  bottom: 80px;
}
@media screen and (max-width: 572px) {
  .container .fv__main {
    bottom: 50px;
  }
}
.container .fv__main_text {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media screen and (max-width: 572px) {
  .container .fv__main_text {
    font-size: 2rem;
  }
}
.container .fv__main_imgtext {
  margin-top: 30px;
  height: 50px;
}
@media screen and (max-width: 572px) {
  .container .fv__main_imgtext {
    height: 25px;
  }
}
.container .mv_logo {
  position: absolute;
  left: 2%;
  top: 20px;
  width: 200px;
}
@media screen and (max-width: 572px) {
  .container .mv_logo {
    width: 160px;
  }
}
.container .mv_logo > a {
  display: block;
  transition: 0.3s ease;
}
.container .mv_logo > a:hover {
  opacity: 0.7;
}
.container .mv_logo img {
  width: 100%;
}
.container .hamburger {
  color: #fff;
  width: 50px;
  height: 50px;
  padding: 18px 16px;
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #1a1a1a;
  z-index: 30;
  display: none;
  border-radius: 50%;
}
@media screen and (max-width: 572px) {
  .container .hamburger {
    display: block;
  }
}
.container .hamburger.on-click .inner span:nth-child(1) {
  top: 50%;
  translate: 0 -50%;
  rotate: 390deg;
}
.container .hamburger.on-click .inner span:nth-child(2) {
  opacity: 0;
}
.container .hamburger.on-click .inner span:nth-child(3) {
  top: 50%;
  translate: 0 -50%;
  rotate: -390deg;
}
.container .hamburger .inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.container .hamburger .inner span {
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  transition: 0.3s;
}
.container .hamburger .inner span:nth-child(1) {
  top: 0;
}
.container .hamburger .inner span:nth-child(2) {
  top: 50%;
  translate: 0 -50%;
}
.container .hamburger .inner span:nth-child(3) {
  bottom: 0;
}
.container .ham_menu {
  color: #fff;
  height: 100vh;
  opacity: 0;
  padding: 0;
  position: fixed;
  transition: 0.3s;
  visibility: hidden;
  width: 100%;
  top: 0;
  z-index: 20;
  padding: 40px 4% 0;
  background-image: url(../image/fv_image.jpg);
  background-size: cover;
  background-position: center;
}
.container .ham_menu.is-show {
  opacity: 1;
  visibility: visible;
}
.container .ham_menu__logo {
  width: 200px;
}
.container .ham_menu__logo > img {
  width: 100%;
}
.container .ham_menu__nav {
  margin-top: 50px;
  font-weight: bold;
  color: #fff;
  font-size: 1.25rem;
}
.container .ham_menu__nav_list {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.container .ham_menu__nav_list_item > a {
  display: block;
  padding: 0.25em;
  transition: 0.3s ease;
  text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.4);
}

.footer {
  margin-top: 100px;
  padding: 50px 0 80px;
  position: relative;
  background-color: #ccc;
}
.footer__logo {
  width: 200px;
  margin: 0 auto;
}
.footer__logo > img {
  width: 100%;
}
.footer__nav {
  width: 100%;
  margin-top: 20px;
}
.footer__nav_list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 1em;
}
.footer__nav_list_item > a {
  display: block;
  font-weight: bold;
  padding: 1em 0.5em;
  transition: 0.3s ease;
}
.footer__nav_list_item > a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 572px) {
  .footer__nav_list_item > a {
    padding: 0.25em 0.5em;
  }
}
.footer .copylight {
  margin-top: 30px;
  text-align: center;
  font-size: 0.875rem;
}

.main .news {
  padding: 80px 0 0;
}
@media screen and (max-width: 572px) {
  .main .news {
    padding: 50px 0 0;
  }
}
.main .news__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 572px) {
  .main .news__content {
    gap: 30px;
    flex-direction: column;
  }
}
.main .news__content_item {
  width: 33.3333333333%;
  transition: 0.3s ease;
}
@media screen and (max-width: 572px) {
  .main .news__content_item {
    width: 100%;
  }
}
.main .news__content_item:hover {
  opacity: 0.7;
}
.main .news__content_item_image {
  width: 100%;
  aspect-ratio: 16/9;
}
.main .news__content_item_image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main .news__content_item_block {
  margin-top: 10px;
}
.main .news__content_item_block_title {
  font-size: 1.125rem;
  font-weight: bold;
}
.main .news__content_item_block_date {
  font-size: 0.875rem;
  margin-bottom: 10px;
}
.main .news__content_item_block_text {
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  font-size: 0.937rem;
}
.main .news .btn_wrap {
  margin-top: 50px;
}
.main .mission {
  margin-top: 80px;
  position: relative;
}
.main .mission .bg_accent1 {
  position: absolute;
  left: -150px;
  top: 0;
  height: 8vw;
}
@media screen and (max-width: 572px) {
  .main .mission .bg_accent1 {
    left: -30px;
    top: -50px;
    height: 13vw;
  }
}
.main .mission .bg_accent2 {
  position: absolute;
  right: -150px;
  bottom: 0;
  height: 8vw;
}
@media screen and (max-width: 572px) {
  .main .mission .bg_accent2 {
    right: -50px;
    bottom: -70px;
    height: 13vw;
  }
}
.main .mission__msg {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 30px 0;
  text-align: center;
}
.main .mission__text {
  margin-top: 20px;
  text-align: center;
}
.main .service {
  margin-top: 80px;
  padding: 80px 0;
  background-color: #f2f2f2;
}
@media screen and (max-width: 572px) {
  .main .service {
    padding: 50px 0;
  }
}
.main .service__text {
  margin-top: 30px;
  text-align: center;
}
.main .service__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
  margin-top: 30px;
}
@media screen and (max-width: 572px) {
  .main .service__content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.main .service__content_item {
  width: 100%;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
.main .service__content_item_image {
  width: 100%;
  aspect-ratio: 16/9;
}
.main .service__content_item_image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main .service__content_item_block {
  background-color: #fff;
  padding: 1em;
  text-align: center;
}
.main .service__content_item_block > h4 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #754c24;
}
.main .service__content_item_block > p {
  margin-top: 10px;
  font-size: 0.937rem;
  letter-spacing: 0.03em;
}
.main .cpitem {
  padding: 80px 0;
  background-image: url(../image/cpitem_bg.jpg);
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: overlay;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .main .cpitem {
    background-attachment: initial;
  }
}
@media screen and (max-width: 572px) {
  .main .cpitem {
    padding: 50px 0;
  }
}
.main .cpitem__text {
  text-align: center;
  margin-top: 30px;
}
.main .cpitem__content {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 572px) {
  .main .cpitem__content {
    gap: 10px;
  }
}
.main .cpitem__content_item {
  display: block;
  width: calc((100% - 80px) / 5);
  transition: 0.3s ease;
}
@media screen and (max-width: 572px) {
  .main .cpitem__content_item {
    width: calc((100% - 20px) / 3);
  }
}
.main .cpitem__content_item:hover {
  opacity: 0.7;
}
.main .cpitem__content_item > p {
  font-size: 0.875rem;
}
.main .cpitem__content_item > img {
  width: 100%;
  height: auto;
}
.main .company {
  padding: 50px 0 80px;
  background-image: url(../image/company_bg.jpg);
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: overlay;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .main .company {
    background-attachment: initial;
  }
}
.main .company__text {
  text-align: center;
  margin-top: 30px;
}
.main .company__content {
  background-color: #fff;
  padding: 30px 20px;
  margin-top: 30px;
  color: #1a1a1a;
  display: flex;
}
@media screen and (max-width: 572px) {
  .main .company__content {
    flex-direction: column;
    padding: 20px;
  }
}
.main .company__content_logo {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-right: 1px solid #1a1a1a;
}
@media screen and (max-width: 572px) {
  .main .company__content_logo {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #1a1a1a;
  }
}
.main .company__content_logo > img {
  display: block;
  width: 200px;
}
.main .company__content_block {
  width: 55%;
  padding: 30px;
}
@media screen and (max-width: 572px) {
  .main .company__content_block {
    width: 100%;
    padding: 20px 0;
  }
}
.main .company__content_block > h4 {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.main .company__content_block dl:last-child {
  margin-top: 50px;
}
.main .company__content_block dt {
  color: #1b4695;
  margin-top: 1em;
  line-height: 1.4;
}
.main .message {
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .main .message {
    margin-top: 50px;
  }
}
.main .message__content {
  margin-top: 50px;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 572px) {
  .main .message__content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }
}
.main .message__content_block {
  flex: 1;
}
.main .message__content_block p {
  margin-top: 2em;
}
.main .message__content_block p:first-child {
  margin-top: 0;
}
.main .message__content_image {
  width: 320px;
  position: relative;
}
@media screen and (max-width: 572px) {
  .main .message__content_image {
    width: 300px;
  }
}
.main .message__content_image .face {
  width: 100%;
}
.main .message__content_image .name {
  margin-top: 30px;
  height: 30px;
  display: block;
  margin-left: auto;
}
.main .message__content_image .bg {
  width: 300px;
  position: absolute;
  left: 75%;
  top: 30%;
  z-index: -1;
}
.main .sns {
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .main .sns {
    margin-top: 50px;
  }
}
.main .sns__content {
  width: 100%;
  margin-top: 50px;
}
@media screen and (max-width: 572px) {
  .main .sns__content {
    margin-top: 30px;
  }
}
.main .sns__content > img {
  width: 100%;
}
.main .contact {
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .main .contact {
    margin-top: 50px;
  }
}
.main .contact__text {
  margin-top: 30px;
  text-align: center;
}
.main .contact__line {
  background-color: #009245;
  color: #fff;
  padding: 30px 60px;
  display: flex;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto 0;
  position: relative;
}
@media screen and (max-width: 572px) {
  .main .contact__line {
    display: none;
  }
}
.main .contact__line::before {
  content: "";
  display: block;
  background-color: #006837;
  width: 60px;
  height: 60px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%);
  position: absolute;
  top: 0;
  right: 0;
}
.main .contact__line_block {
  text-align: center;
  margin-right: 30px;
}
.main .contact__line_block > h4 {
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.4;
}
.main .contact__line_block > p {
  margin-top: 10px;
  text-align: center;
  font-size: 0.875rem;
}
.main .contact__line_qr {
  width: 130px;
}
.main .contact__line_qr > img {
  width: 100%;
}
.main .contact__linesp {
  display: none;
  margin-top: 30px;
}
@media screen and (max-width: 572px) {
  .main .contact__linesp {
    display: block;
  }
}
.main .contact__linesp_text {
  text-align: center;
  font-size: 0.937rem;
  line-height: 1.6;
}
.main .contact__linesp_btn {
  display: block;
  width: 240px;
  margin: 5px auto 0;
  background-color: #009245;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 1em;
  line-height: 1.4;
  position: relative;
}
.main .contact__linesp_btn::before {
  content: "";
  display: block;
  background-color: #006837;
  width: 30px;
  height: 30px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%);
  position: absolute;
  top: 0;
  right: 0;
}
.main .contact__content {
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .main .contact__content {
    margin-top: 30px;
  }
}
.main .contact__content dl {
  display: flex;
  align-items: flex-start;
  gap: 30px 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 572px) {
  .main .contact__content dl {
    gap: 5px;
    flex-direction: column;
  }
}
.main .contact__content dl dt {
  width: calc(25% - 20px);
}
@media screen and (max-width: 572px) {
  .main .contact__content dl dt {
    margin-top: 20px;
    width: 100%;
  }
}
.main .contact__content dl dd {
  width: 75%;
}
@media screen and (max-width: 572px) {
  .main .contact__content dl dd {
    width: 100%;
  }
}
.main .contact__content dl dd input,
.main .contact__content dl dd textarea {
  border: 1px solid #1a1a1a;
  padding: 0.25em 0.5em;
  width: 100%;
}
.main .contact__content .c-policy-check {
  margin-top: 30px;
  text-align: center;
}
.main .contact__content .c-policy-check a {
  color: #1255d1;
  transition: 3s ease;
}
.main .contact__content .c-policy-check a:hover {
  opacity: 0.7;
}
.main .contact__content .btn-send {
  margin: 50px auto 0;
  width: 320px;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 572px) {
  .main .contact__content .btn-send {
    margin-top: 30px;
    width: 280px;
  }
}
.main .contact__content .btn-send:hover {
  opacity: 0.7;
}
.main .contact__content .btn-send:hover::before {
  translate: 5px -50%;
}
.main .contact__content .btn-send:hover::after {
  translate: 5px -50%;
}
.main .contact__content .btn-send input {
  background-color: #211815;
  border-radius: 30px;
  border: 1px solid #211815;
  color: #fff;
  font-size: 0.937rem;
  font-weight: bold;
  text-align: center;
  transition: 0.3s;
  width: 100%;
  padding: 1em 0;
  line-height: 1;
}
.main .contact__content .btn-send .wpcf7-spinner {
  position: absolute;
  inset: 0;
}

.section_head {
  font-size: 2rem;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  text-align: center;
}
.section_head::after {
  content: "";
  height: 2px;
  width: 100px;
  display: block;
  margin-inline: auto;
  background-color: currentColor;
}

.btn_more {
  width: 260px;
  display: block;
  margin-inline: auto;
  text-align: center;
  position: relative;
  line-height: 1;
  padding: 1em 0;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  font-size: 0.935em;
  font-weight: bold;
  transition: 0.3s ease;
}
.btn_more:hover {
  background-color: #1a1a1a;
  color: #fff;
}

.works {
  margin-top: 120px;
  position: relative;
}
@media screen and (max-width: 572px) {
  .works {
    margin-top: 80px;
  }
}
.works::before {
  content: "";
  aspect-ratio: 4/3;
  background-color: #F5F5F2;
  display: block;
  left: 0;
  position: absolute;
  top: -50px;
  width: 50%;
  z-index: -1;
}
@media screen and (max-width: 572px) {
  .works::before {
    height: 50%;
  }
}
.works .works-bg {
  opacity: 0.8;
  position: absolute;
  right: 0;
  top: -100px;
  width: 45%;
  z-index: -1;
}
@media screen and (max-width: 572px) {
  .works .works-bg {
    top: -50px;
    width: 50%;
  }
}
.works .btn_more {
  margin-top: 50px;
}

.works_slider {
  margin: 50px auto 0;
  width: min(1400px, 90%);
}
@media screen and (max-width: 572px) {
  .works_slider {
    margin: 30px auto 0;
    width: 100%;
  }
}
.works_slider .swiper-slide {
  aspect-ratio: 16/9;
  position: relative;
}
.works_slider .swiper-slide > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.4);
}
.works_slider__item {
  position: absolute;
  bottom: 2em;
  left: 2em;
  z-index: 1;
}
@media screen and (max-width: 572px) {
  .works_slider__item {
    bottom: 1em;
    left: 1em;
  }
}
.works_slider__item_title {
  background-color: #1a1a1a;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.25em 1em;
  color: #fff;
}
@media screen and (max-width: 572px) {
  .works_slider__item_title {
    font-size: 0.935rem;
    padding: 0.125em 1em;
  }
}
.works_slider__item_text {
  margin-top: 20px;
  color: #fff;
  font-size: 1.25rem;
}
@media screen and (max-width: 572px) {
  .works_slider__item_text {
    font-size: 1rem;
    margin-top: 5px;
  }
}
.works_slider .swiper-button-prev,
.works_slider .swiper-button-next {
  background-color: #fff;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #1a1a1a;
  border-radius: 50%;
}
@media screen and (max-width: 572px) {
  .works_slider .swiper-button-prev,
.works_slider .swiper-button-next {
    width: 30px;
    height: 30px;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.works_slider .swiper-button-prev::after,
.works_slider .swiper-button-next::after {
  display: block;
  background-color: #1a1a1a;
  border: none;
  width: 0.8em;
  height: 0.6em;
  content: "";
  color: #1a1a1a;
  font-size: initial;
}
.works_slider .swiper-button-prev {
  left: 15.2%;
}
@media screen and (max-width: 572px) {
  .works_slider .swiper-button-prev {
    left: 2%;
  }
}
.works_slider .swiper-button-prev::after {
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
  translate: -1px 0;
}
.works_slider .swiper-button-next {
  right: 15.2%;
}
@media screen and (max-width: 572px) {
  .works_slider .swiper-button-next {
    right: 2%;
  }
}
.works_slider .swiper-button-next::after {
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  translate: 1px 0;
}

.works_content {
  margin-top: 50px;
  width: 100%;
}
@media screen and (max-width: 572px) {
  .works_content {
    margin-top: 30px;
  }
}
.works_content__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em 3em;
}
@media screen and (max-width: 1024px) {
  .works_content__list {
    gap: 2em;
  }
}
@media screen and (max-width: 964px) {
  .works_content__list {
    gap: 2em 1em;
  }
}
@media screen and (max-width: 572px) {
  .works_content__list {
    gap: 1em;
    grid-template-columns: repeat(1, 1fr);
  }
}
.works_content__list_item {
  width: 100%;
}
@media screen and (max-width: 572px) {
  .works_content__list_item {
    padding: 0 10px;
  }
}
.works_content__list_item:hover img {
  scale: 1.1;
}
.works_content__list_item_image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.works_content__list_item_image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.works_content__list_item_image_category {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #1a1a1a;
  color: #fff;
  padding: 0.125em 1em;
  font-size: 0.875rem;
  font-weight: bold;
}
.works_content__list_item_block {
  padding: 1em;
}
.works_content__list_item_block_title {
  font-weight: bold;
  line-height: 1.4;
}
.works_content__list_item_block_text {
  margin-top: 10px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  font-size: 0.935rem;
  line-height: 1.6;
}
.works_content__nodata {
  margin-top: 50px;
  text-align: center;
  font-size: 1.5rem;
  width: 100%;
}

.voice_content {
  margin-top: 80px;
  width: 100%;
}
@media screen and (max-width: 572px) {
  .voice_content {
    margin-top: 30px;
  }
}
.voice_content__list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 3em;
}
@media screen and (max-width: 1024px) {
  .voice_content__list {
    gap: 2em;
  }
}
@media screen and (max-width: 964px) {
  .voice_content__list {
    gap: 2em 1em;
  }
}
@media screen and (max-width: 572px) {
  .voice_content__list {
    gap: 1em 1em;
  }
}
.voice_content__list_item {
  width: calc((100% - 6em) / 3);
  background-color: #FFFFF0;
  padding: 1em;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1024px) {
  .voice_content__list_item {
    width: calc((100% - 4em) / 3);
  }
}
@media screen and (max-width: 964px) {
  .voice_content__list_item {
    width: calc((100% - 2em) / 3);
  }
}
@media screen and (max-width: 572px) {
  .voice_content__list_item {
    width: calc(100% - 20px);
    margin-inline: auto;
  }
}
.voice_content__list_item_image {
  width: 100%;
  aspect-ratio: 4/3;
  text-align: center;
  overflow: hidden;
}
.voice_content__list_item_image > img {
  width: auto;
  height: 100%;
}
.voice_content__list_item_block {
  margin-top: 1em;
}
.voice_content__list_item_block_title {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  color: #1a1a1a;
}
.voice_content__list_item_block_name {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  color: #1a1a1a;
}
.voice_content__list_item_block_msg {
  margin-top: 10px;
  line-height: 1.6;
  font-size: 0.935rem;
}
.voice_content .btn_more {
  margin-top: 50px;
}

.secinfo {
  margin-top: 120px;
}
@media screen and (max-width: 572px) {
  .secinfo {
    margin-top: 60px;
  }
}
.secinfo .wrap {
  display: flex;
  gap: 2em;
}
@media screen and (max-width: 1024px) {
  .secinfo .wrap {
    flex-direction: column;
  }
}
.secinfo .seccontent {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .secinfo .seccontent {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .secinfo .seccontent.blog {
    margin-top: 50px;
  }
}
.secinfo .seccontent.blog .section_header__title {
  position: relative;
}
.secinfo .seccontent.blog .section_header__title > img {
  position: absolute;
  width: 110px;
  bottom: 0;
  left: 10%;
}
@media screen and (max-width: 1024px) {
  .secinfo .seccontent.blog .section_header__title > img {
    left: 25%;
  }
}
@media screen and (max-width: 572px) {
  .secinfo .seccontent.blog .section_header__title > img {
    width: 100px;
    left: 5%;
  }
}
.secinfo .seccontent__list {
  width: 100%;
  margin-top: 30px;
}
.secinfo .seccontent__list_item > a {
  display: block flex;
  align-items: center;
  position: relative;
  transition: 0.3s;
}
.secinfo .seccontent__list_item > a:hover {
  opacity: 0.7;
}
.secinfo .seccontent__list_item > a:hover .arrow {
  translate: 5px -50%;
}
.secinfo .seccontent__list_item .arrow {
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background-color: #1a1a1a;
  overflow: hidden;
  top: 50%;
  right: 5px;
  translate: 0 -50%;
  transition: 0.3s;
}
@media screen and (max-width: 572px) {
  .secinfo .seccontent__list_item .arrow {
    display: none;
  }
}
.secinfo .seccontent__list_item .arrow .inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.secinfo .seccontent__list_item .arrow .inner::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -35% -50%;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.secinfo .seccontent__list_item_image {
  width: 150px;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 572px) {
  .secinfo .seccontent__list_item_image {
    aspect-ratio: 4/3;
    width: 120px;
  }
}
.secinfo .seccontent__list_item_image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.secinfo .seccontent__list_item_block {
  width: calc(100% - 150px);
  padding: 1em 3em 1em 1em;
}
@media screen and (max-width: 572px) {
  .secinfo .seccontent__list_item_block {
    padding: 0.5em 0 0.5em 1em;
    width: calc(100% - 120px);
  }
}
.secinfo .seccontent__list_item_block_date {
  font-size: 0.825rem;
  color: #1a1a1a;
}
.secinfo .seccontent__list_item_block_title {
  color: #1a1a1a;
  line-height: 1.4;
}
.secinfo .seccontent__list_item_block_text {
  margin-top: 5px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  line-height: 1.6;
  font-size: 0.875rem;
}
.secinfo .seccontent .btn_more {
  margin-top: 50px;
}

.seclink {
  margin-top: 120px;
}
@media screen and (max-width: 572px) {
  .seclink {
    margin-top: 60px;
  }
}
.seclink .wrap {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 572px) {
  .seclink .wrap {
    gap: 20px;
    flex-direction: column;
  }
}
.seclink__content {
  width: 50%;
  position: relative;
  display: block;
  transition: 0.3s;
}
@media screen and (max-width: 572px) {
  .seclink__content {
    width: 100%;
  }
}
.seclink__content:hover {
  opacity: 0.7;
}
.seclink__content > img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.5);
}
.seclink__content_title {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: #fff;
  text-align: center;
  padding: 1em 3em;
}
.seclink__content_title_en {
  display: block;
  color: #1a1a1a;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
}
.seclink__content_title_ja {
  display: block;
}

.secline {
  margin-top: 100px;
  width: 100%;
  background-image: url(../image/top/secline-bg.jpg);
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: overlay;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .secline {
    background-attachment: initial;
  }
}
@media screen and (max-width: 572px) {
  .secline {
    margin-top: 60px;
  }
}
.secline__title {
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  padding: 0 20px;
  line-height: 1.4;
}
.secline__title > span {
  display: inline-block;
}
@media screen and (max-width: 572px) {
  .secline__title {
    font-size: 1.75rem;
  }
}
.secline__text {
  margin-top: 20px;
  padding: 0 20px;
}
.secline .btn_more {
  margin-top: 30px;
  background-color: #009145;
  border: 1px solid #009145;
  color: #fff;
}
.secline .btn_more .svg-arrow {
  fill: #fff;
}

.secmessage {
  padding: 80px 10px;
  text-align: center;
}
@media screen and (max-width: 572px) {
  .secmessage {
    padding: 30px 10px;
    text-align: left;
  }
}
.secmessage__text {
  font-size: 1rem;
  line-height: 2;
}
.secmessage__text > span {
  display: inline-block;
}

.secmap {
  width: 100%;
}
.secmap iframe {
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 964px) {
  .secmap iframe {
    height: 400px;
  }
}
@media screen and (max-width: 572px) {
  .secmap iframe {
    height: 300px;
  }
}

.policy-main .policy {
  margin-top: 180px;
}
.policy-main .policy__title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.policy-main .policy__content {
  margin-top: 50px;
  line-height: 1.8;
}
@media screen and (max-width: 572px) {
  .policy-main .policy__content {
    margin-top: 30px;
  }
}
.policy-main .policy__content h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 2em;
}
.policy-main .policy__content h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 2em;
}
.policy-main .policy__content p {
  margin-top: 1em;
}
.policy-main .policy__content p a {
  text-decoration: underline;
  transition: 0.3s;
}
.policy-main .policy__content p a:hover {
  opacity: 0.7;
}
.policy-main .policy__content ol {
  padding-left: 1.5rem;
  counter-reset: number 0;
}
.policy-main .policy__content ol li {
  margin-top: 10px;
}
.policy-main .policy__content ol li::before {
  counter-increment: number 1;
  content: counter(number) ". ";
}

.p-404 {
  width: 100%;
  margin-top: 200px;
  padding: 0 20px;
  text-align: center;
}
.p-404 .title {
  font-size: 2rem;
  font-weight: bold;
}
.p-404 .text {
  margin-top: 30px;
  font-size: 1.25rem;
  font-weight: bold;
}
.p-404 .back-btn {
  margin: 80px auto 0;
  display: block;
  color: #1a1a1a;
  border: 1px solid currentColor;
  padding: 0.5em 0;
  width: 280px;
  transition: 0.3s;
  text-align: center;
}
.p-404 .back-btn:hover {
  opacity: 0.7;
}

.a_news_main .a_news {
  margin-top: 150px;
}
.a_news_main .a_news__content {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 572px) {
  .a_news_main .a_news__content {
    gap: 30px;
    flex-direction: column;
  }
}
.a_news_main .a_news__content_item {
  width: calc((100% - 60px) / 3);
  transition: 0.3s ease;
}
@media screen and (max-width: 572px) {
  .a_news_main .a_news__content_item {
    width: 100%;
  }
}
.a_news_main .a_news__content_item:hover {
  opacity: 0.7;
}
.a_news_main .a_news__content_item_image {
  width: 100%;
  aspect-ratio: 16/9;
}
.a_news_main .a_news__content_item_image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.a_news_main .a_news__content_item_block {
  margin-top: 10px;
}
.a_news_main .a_news__content_item_block_title {
  font-size: 1.125rem;
  font-weight: bold;
}
.a_news_main .a_news__content_item_block_date {
  font-size: 0.875rem;
  margin-bottom: 10px;
}
.a_news_main .a_news__content_item_block_text {
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  font-size: 0.937rem;
}

.single-main .single {
  margin-top: 180px;
}
.single-main .single__title {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.4;
}
.single-main .single__date {
  font-weight: 500;
  color: #1a1a1a;
  display: inline-block;
}
.single-main .single__category {
  display: inline-block;
  margin-left: 2em;
  background-color: #1a1a1a;
  color: #fff;
  padding: 0 1em;
  text-align: center;
  border-radius: 20px;
  font-size: 0.875rem;
}
.single-main .single__image {
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: 1em;
}
.single-main .single__image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-main .single__content {
  margin-top: 2em;
  line-height: 1.8;
}
@media screen and (max-width: 572px) {
  .single-main .single__content {
    margin-top: 1.5em;
    line-height: 1.6;
  }
}
.single-main .single__content h2 {
  font-size: 1.375rem;
  border-bottom: 3px double #1a1a1a;
  font-weight: bold;
  margin-top: 1.5em;
  padding-bottom: 3px;
}
.single-main .single__content h3 {
  font-size: 1.25rem;
  padding-left: 0.5em;
  font-weight: bold;
  border-left: 3px double #1a1a1a;
  margin-top: 1.5em;
}
.single-main .single__content h4 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-top: 1.5em;
}
.single-main .single__content p {
  margin-top: 1em;
}
.single-main .single__content p a {
  color: #007FC5;
  text-decoration: underline;
  transition: 0.3s;
}
.single-main .single__content p a:hover {
  opacity: 0.7;
}
.single-main .single__content figure {
  margin-top: 1em;
}
.single-main .single__content figure img {
  width: 100%;
}
.single-main .single .back-btn {
  margin: 50px auto 0;
  width: 260px;
  display: block;
  margin-inline: auto;
  text-align: center;
  position: relative;
  line-height: 1;
  padding: 1em 0;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  font-size: 0.935em;
  font-weight: bold;
  transition: 0.3s ease;
}
.single-main .single .back-btn:hover {
  background-color: #1a1a1a;
  color: #fff;
}
/*# sourceMappingURL=style.css.map */