@charset "UTF-8";
/*
Theme Name: gx-suishin
Author: naoki imanishi
Version: 0.01
*/
/*-------------------------------------
    color
--------------------------------------*/
/*-------------------------------------
    function
--------------------------------------*/
/*-------------------------------------
    container
--------------------------------------*/
.container {
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media print, screen and (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media print, screen and (min-width: 768px) {
  .container {
    max-width: 768px;
    padding: 0 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .container {
    max-width: 1044px;
    gap: 80px;
  }
}
@media print, screen and (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/*-------------------------------------
    general
--------------------------------------*/
main {
  padding-top: 100px;
}

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

html {
  opacity: 0;
  animation: fadeIn 1.8s ease-in-out forwards; /* 1秒でフェードイン */
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*-------------------------------------
    header
--------------------------------------*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  border-bottom: 4px solid #008058;
  box-sizing: border-box;
  background-color: #fff;
}
.header_wrap {
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_logo a img {
  height: 70px;
}
.header_nav {
  display: none;
}
.header_nav.is-active {
  display: block;
}
@media print, screen and (min-width: 1024px) {
  .header_nav {
    display: block;
  }
}
.header_list {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  align-items: center;
  height: auto;
  z-index: 1000;
}
.header_list::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
@media print, screen and (min-width: 1024px) {
  .header_list {
    position: inherit;
    flex-direction: row;
    align-items: center;
  }
  .header_list::before {
    content: none;
  }
}
.header li {
  height: auto;
  display: block;
  width: 100%;
  border-top: #008058 solid 1px;
}
@media print, screen and (min-width: 1024px) {
  .header li {
    width: auto;
    border-top: none;
  }
}
.header_items {
  box-sizing: border-box;
  opacity: 1;
  display: block;
  padding: 20px 20px;
  background-color: #fff;
}
.header li:last-child .header_items {
  color: #fff;
  background: #008058;
  background: linear-gradient(128deg, rgb(0, 128, 88) 55%, rgb(255, 216, 31) 100%);
}
@media print, screen and (min-width: 1024px) {
  .header li:last-child .header_items {
    border-radius: 5px/5px;
    padding: 8px 16px;
  }
}
.header_button {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.header_button span {
  width: 26px;
  display: block;
  height: 2px;
  background-color: #008058;
}
@media print, screen and (min-width: 1024px) {
  .header_button {
    display: none;
  }
}

/*-------------------------------------
    footer
--------------------------------------*/
footer div {
  color: #fff;
  background-color: #2c2c2c;
  font-size: 0.75rem;
  text-align: center;
  padding: 10px 0;
}

/*-------------------------------------
    top
--------------------------------------*/
.petal {
  position: absolute;
  top: 2vh; /* 画面外から開始 */
  pointer-events: none;
  will-change: transform, opacity;
  z-index: 1000;
}

@keyframes fallAndSway {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translate(20px, 100px) rotate(30deg);
    opacity: 1;
  }
  50% {
    transform: translate(-15px, 200px) rotate(60deg);
    opacity: 0.9;
  }
  75% {
    transform: translate(25px, 300px) rotate(90deg);
    opacity: 0.7;
  }
  100% {
    transform: translate(-20px, 460px) rotate(120deg);
    opacity: 0;
  }
}
.top {
  position: relative;
  overflow: hidden;
}
.top_image {
  width: 100%;
  height: calc(80vh - 100px) !important;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) {
  .top_image {
    height: calc(90vh - 100px) !important;
  }
}
.top_image .swiper-slide {
  height: 100%;
}
.top_image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_text {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .top_text {
    width: 90%;
    height: 90%;
  }
}
@media print, screen and (min-width: 1024px) {
  .top_text {
    width: 80%;
    height: 80%;
  }
}
.top_text .top_text_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 0;
}
.top_text .top_main {
  position: relative;
  z-index: 1;
  font-size: 1.625rem;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .top_text .top_main {
    font-size: 2.5rem;
  }
}
@media print, screen and (min-width: 1024px) {
  .top_text .top_main {
    font-size: 3.125rem;
  }
}
.top_sub {
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .top_sub {
    font-size: 1.375rem;
  }
}
@media print, screen and (min-width: 1024px) {
  .top_sub {
    font-size: 1.625rem;
  }
}
.top_sub span {
  font-size: 0.875rem;
}
@media print, screen and (min-width: 768px) {
  .top_sub span {
    font-size: 1.125rem;
  }
}
@media print, screen and (min-width: 1024px) {
  .top_sub span {
    font-size: 1.375rem;
  }
}
.top_main {
  line-height: 1.5;
  font-size: 1.625rem;
  margin-bottom: 20px;
  color: #fff;
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  .top_main {
    font-size: 1.875rem;
  }
}
@media print, screen and (min-width: 1024px) {
  .top_main {
    font-size: 2.5rem;
  }
}

/*-------------------------------------
    components
--------------------------------------*/
@media print, screen and (min-width: 1024px) {
  .c-section_title {
    margin-bottom: 40px;
  }
}
.c-section_title h2 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .c-section_title h2 {
    font-size: 1.5rem;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-section_title h2 {
    font-size: 1.625rem;
  }
}
.c-section_title h2::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 6px;
  background-color: #ffd81f;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.c-section_sub {
  padding-left: 20px;
  border-left: 6px solid #ffd81f;
  padding-top: 6px;
  padding-bottom: 6px;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 1024px) {
  .c-section_sub {
    margin-bottom: 40px;
  }
}
.c-section_sub span {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 0.75rem;
}
.c-section_sub h3 {
  font-size: 1.25rem;
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  .c-section_sub h3 {
    font-size: 1.375rem;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-section_sub h3 {
    font-size: 1.5rem;
  }
}

.c-button_main {
  padding: 12px 60px 12px 40px;
  background-color: #008058;
  border-radius: 20px/20px;
  display: inline-block;
  color: #fff;
  position: relative;
}
.c-button_main::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #fff;
  border-right: 0;
  transform: translateY(-50%);
}

.c-section_wrap {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
  .c-section_wrap {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-section_wrap {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.c-section_sub-wrap {
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .c-section_sub-wrap {
    margin-bottom: 40px;
  }
}

.c-contact {
  color: #fff;
  background: #008058;
  background: linear-gradient(128deg, rgb(0, 128, 88) 70%, rgb(255, 216, 31) 100%);
}
.c-contact_head {
  flex-direction: column;
  display: flex;
  justify-content: space-between;
}
@media print, screen and (min-width: 768px) {
  .c-contact_head {
    flex-direction: row;
  }
}
.c-contact_body {
  text-align: center;
}
.c-contact_title {
  width: 100%;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .c-contact_title {
    font-size: 1.625rem;
    width: 30%;
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-contact_title {
    font-size: 1.875rem;
  }
}
.c-contact_text {
  width: 100%;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .c-contact_text {
    width: 70%;
  }
}
.c-contact_button {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: bold;
  background-color: #fff;
  border-radius: 50px/50px;
  width: 100%;
  padding: 20px 0;
  border: solid 3px #008058;
  transition: all ease-in-out 0.3s;
  text-decoration: none !important;
  color: #000 !important;
  position: relative;
}
.c-contact_button:hover {
  color: #fff !important;
  background-color: rgba(0, 128, 88, 0.2);
  border: solid 3px #fff;
}
.c-contact_button:hover::before {
  border-left: 10px solid #fff;
}
@media print, screen and (min-width: 768px) {
  .c-contact_button {
    width: auto;
    font-size: 1.25rem;
    padding: 20px 120px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-contact_button {
    font-size: 1.5rem;
  }
}
.c-contact_button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #008058;
  border-right: 0;
  transform: translateY(-50%);
}

.c-page {
  color: #fff;
  background: #008058;
  background: linear-gradient(128deg, rgb(0, 128, 88) 70%, rgb(255, 216, 31) 100%);
}
.c-page_title {
  width: 100%;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .c-page_title {
    font-size: 1.625rem;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-page_title {
    font-size: 1.875rem;
  }
}
.c-page_bottom {
  overflow: hidden;
  margin-top: 20px;
}
.c-page_main {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
}
.c-page_main div {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: bold;
  line-height: 1.5;
  font-size: 1.375rem;
}
@media print, screen and (min-width: 768px) {
  .c-page_main div {
    font-size: 1.5rem;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-page_main div {
    font-size: 1.75rem;
  }
}
.c-page_main #slot {
  vertical-align: middle;
  line-height: 1;
  margin-bottom: 20px;
  display: inline-flex;
  gap: 6px;
}
.c-page_main #slot span {
  font-size: 60px !important;
}
.c-page_main .digit-container {
  width: 40px;
  height: 60px;
  overflow: hidden;
  text-align: center;
}
.c-page_main .digit-strip {
  display: inline-block;
  transform: translateY(0);
  transition: transform 0.3s ease-out;
}
.c-page_main .digit-strip span {
  display: block;
  height: 60px;
  line-height: 60px;
}
.c-page_main span {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .c-page_main span {
    font-size: 1.125rem;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-page_main span {
    font-size: 1.25rem;
  }
}
.c-page_main span:last-child {
  margin-top: 20px;
  display: inline-block;
  font-size: 1.375rem;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .c-page_main span:last-child {
    font-size: 1.5rem;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-page_main span:last-child {
    font-size: 1.75rem;
  }
}
.c-page_wrap {
  flex-direction: column;
  display: flex;
  gap: 40px;
}
@media print, screen and (min-width: 1024px) {
  .c-page_wrap {
    flex-direction: row;
  }
}
.c-page_left {
  order: 2;
  width: 100%;
}
@media print, screen and (min-width: 1024px) {
  .c-page_left {
    width: 50%;
  }
}
.c-page_left img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.c-page_right {
  order: 1;
  width: 100%;
}
.c-page_right img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media print, screen and (min-width: 1024px) {
  .c-page_right {
    width: 50%;
    margin-left: auto;
  }
}
.c-page_text {
  margin-top: 40px;
}
.c-page_text p {
  margin-bottom: 10px;
}
.c-page_text p:last-child {
  margin-bottom: 0;
}

.breadcrumb {
  overflow-x: auto;
  width: 100%;
  min-width: 600px;
  display: flex;
  list-style: none;
  padding: 0;
}
.breadcrumb::-webkit-scrollbar {
  display: none;
}
.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
  color: #fff;
  font-size: 0.75rem;
}
.breadcrumb li a {
  font-size: 0.75rem;
  color: #fff;
  text-decoration: none;
}
.breadcrumb li a:hover {
  text-decoration: underline;
}

.c-card {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
.c-card.--top {
  flex-wrap: wrap;
}
@media print, screen and (min-width: 768px) {
  .c-card.--top {
    flex-direction: row;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-card.--top {
    flex-wrap: nowrap;
  }
}
@media print, screen and (min-width: 768px) {
  .c-card.--wrap {
    flex-wrap: wrap;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-card {
    flex-direction: row;
  }
}
.c-card_body {
  padding: 20px;
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 1024px) {
  .c-card_body {
    gap: 20px;
  }
}
.c-card_items {
  background-color: #fff;
  padding: 40px;
  border-top: 8px solid #008058;
  box-shadow: 3px 3px 3px #efefef;
}
.c-card_items.--top {
  padding: 0;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .c-card_items.--top {
    width: calc((100% - 40px) / 2);
  }
}
@media print, screen and (min-width: 1024px) {
  .c-card_items.--top {
    width: calc((100% - 40px) / 3);
  }
}
.c-card_img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9; /* 16:9 の比率で枠を固定 */
  overflow: hidden;
}
.c-card_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 枠いっぱいに表示して中央を基準にトリミング */
  -o-object-position: center;
     object-position: center; /* 中央寄せ */
  display: block;
}
.c-card_title {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .c-card_title {
    font-size: 1.25rem;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-card_title {
    font-size: 1.375rem;
  }
}
.c-card_text {
  margin-top: 40px;
  font-size: 1rem;
  line-height: 1.5;
}

.c-image {
  margin-top: 60px;
  text-align: center;
}
.c-image img {
  display: block;
  height: 80px;
  margin: 0 auto;
}

.c-line_table {
  width: 100%;
}
.c-line_row {
  display: flex;
  gap: 40px;
  box-sizing: border-box;
  padding: 40px 0;
  align-items: center;
  border-top: 1px solid #6e6e6e;
}
.c-line_row:last-of-type {
  border-bottom: 1px solid #6e6e6e;
}
.c-line_head {
  width: 30%;
  text-align: center;
}
.c-line_cell {
  width: 70%;
  line-height: 1.5;
}

.c-num_list {
  margin-top: 60px;
  padding: 40px 40px 40px 60px;
  background-color: #efefef;
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style-type: decimal;
}
.c-num_list li {
  list-style: decimal;
  line-height: 1.5;
  font-weight: bold;
}

.c-menber {
  flex-direction: column;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 40px;
}
@media print, screen and (min-width: 768px) {
  .c-menber {
    flex-direction: row;
  }
}
.c-menber_item {
  width: 100%;
  border-top: 8px solid #008058;
  padding: 20px;
  box-shadow: 3px 3px 3px #efefef;
  display: flex;
  flex-direction: column;
  gap: 40px;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) {
  .c-menber_item {
    width: calc((100% - 40px) / 2);
  }
}
@media print, screen and (min-width: 1024px) {
  .c-menber_item {
    width: calc((100% - 80px) / 3);
  }
}
.c-menber_item.--one {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media print, screen and (min-width: 1024px) {
  .c-menber_item.--one {
    flex-direction: row;
  }
}
.c-menber_item.--one .c-menber_img {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .c-menber_item.--one .c-menber_img {
    width: 50%;
    margin: 0 auto;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-menber_item.--one .c-menber_img {
    width: 30%;
  }
}
.c-menber_item.--one .c-menber_detail {
  width: 100%;
}
@media print, screen and (min-width: 1024px) {
  .c-menber_item.--one .c-menber_detail {
    width: 70%;
    text-align: left;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-menber_item {
    padding: 40px;
  }
}
.c-menber_img {
  width: 100%;
}
.c-menber_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: 50%/50%;
}
.c-menber_detail {
  text-align: center;
  width: 100%;
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.c-menber_position {
  width: 100%;
}
.c-menber_position span {
  display: inline-block;
  background-color: #efefef;
  padding: 8px 24px;
  font-weight: bold;
  border-radius: 50px/50px;
  border: 1px solid #6e6e6e;
}
.c-menber_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media print, screen and (min-width: 1024px) {
  .c-menber_wrap {
    flex-direction: row;
    gap: 40px;
  }
}
.c-menber_name {
  line-height: 1.5;
  font-size: 1.125rem;
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  .c-menber_name {
    font-size: 1.25rem;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-menber_name {
    font-size: 1.5rem;
  }
}
.c-menber_post {
  line-height: 1.5;
}
.c-menber_text {
  line-height: 1.5;
  text-align: left;
}

/*-------------------------------------
    news
--------------------------------------*/
.news {
  background-color: #efefef;
}
.news_list {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.news_item {
  display: flex;
  padding: 10px 40px 10px 20px;
  background-color: #fff;
  border-radius: 5px/5px;
  gap: 0 40px;
  border-left: 6px solid #6e6e6e;
  position: relative;
  transition: background-color ease-in-out 0.3s;
  flex-direction: column;
}
@media print, screen and (min-width: 1024px) {
  .news_item {
    padding: 16px 40px 16px 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  .news_item {
    flex-direction: row;
    align-items: center;
  }
}
.news_item_left {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .news_item_left {
    width: 40%;
  }
}
.news_item_left img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 15px/15px;
}
@media print, screen and (min-width: 768px) {
  .news_item_left img {
    max-height: auto;
  }
}
.news_item_right {
  margin-top: 20px;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .news_item_right {
    margin-top: 0;
    width: 60%;
  }
}
.news_item_head {
  display: flex;
  align-items: center;
}
.news_item_body {
  margin-top: 10px;
}
@media print, screen and (min-width: 1024px) {
  .news_item_body {
    margin-top: 0;
  }
}
.news_item:hover {
  background-color: rgba(0, 128, 88, 0.2);
}
.news_item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #008058;
  border-right: 0;
  transform: translateY(-50%);
}
.news_date {
  width: 120px;
  font-size: 0.75rem;
}
@media print, screen and (min-width: 1024px) {
  .news_date {
    font-size: 1rem;
  }
}
.news_category {
  width: 120px;
  text-align: center;
  border-radius: 15px/15px;
  padding: 2px 0;
  border: 1px solid #6e6e6e;
  background-color: #efefef;
  font-size: 0.75rem;
}
@media print, screen and (min-width: 1024px) {
  .news_category {
    font-size: 1rem;
  }
}
.news_title {
  font-weight: bold;
  line-height: 1.5;
  font-size: 0.875rem;
}
@media print, screen and (min-width: 1024px) {
  .news_title {
    font-size: 1rem;
  }
}
.news_button {
  margin-top: 60px;
  text-align: center;
}
.news_meta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  gap: 10px;
}
.news_meta span {
  display: inline-block;
  margin-left: auto;
}
.news_footer {
  position: relative;
}
.news_footer_back {
  width: 100%;
}
.news_footer_front {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.news_footer p {
  margin-bottom: 0 !important;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 1.375rem !important;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .news_footer p {
    font-size: 1.875rem !important;
  }
}
@media print, screen and (min-width: 1024px) {
  .news_footer p {
    font-size: 2.5rem !important;
  }
}

.about_wrap {
  flex-direction: column;
  display: flex;
  gap: 40px;
}
@media print, screen and (min-width: 1024px) {
  .about_wrap {
    flex-direction: row;
  }
}
.about_left {
  width: 100%;
}
@media print, screen and (min-width: 1024px) {
  .about_left {
    width: 50%;
  }
}
.about_left img {
  width: 100%;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media print, screen and (min-width: 1024px) {
  .about_left img {
    min-height: 600px;
    max-height: auto;
  }
}
.about_right {
  width: 100%;
}
@media print, screen and (min-width: 1024px) {
  .about_right {
    width: 50%;
    margin-left: auto;
    padding: 60px 0;
  }
}
.about_text {
  margin-top: 40px;
}
.about_text p {
  margin-bottom: 10px;
}
.about_text p:last-child {
  margin-bottom: 0;
}
.about_button {
  text-align: right;
  flex-direction: column;
  margin-top: 60px;
  display: flex;
  gap: 20px;
  justify-content: space-around;
}
@media print, screen and (min-width: 768px) {
  .about_button {
    flex-direction: row;
    text-align: center;
  }
}

.archive {
  margin-bottom: 200px;
}
.archive_title .container {
  margin: 0 auto;
  padding: 0 20px;
}
@media print, screen and (min-width: 640px) {
  .archive_title .container {
    max-width: 640px;
  }
}
@media print, screen and (min-width: 768px) {
  .archive_title .container {
    max-width: 768px;
    padding: 0 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .archive_title .container {
    max-width: 900px;
  }
}
.archive .container {
  margin: 0 auto;
  padding: 0 20px;
}
@media print, screen and (min-width: 640px) {
  .archive .container {
    max-width: 640px;
  }
}
@media print, screen and (min-width: 768px) {
  .archive .container {
    max-width: 768px;
    padding: 0 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .archive .container {
    max-width: 900px;
  }
}
.archive table {
  margin-bottom: 40px;
}
.archive table td {
  line-height: 1.5;
  font-size: 0.875rem;
}
.archive table td:first-child {
  background-color: #efefef;
  width: 20%;
}
.archive strong {
  font-weight: bold;
  font-size: 1rem;
}
.archive a {
  text-decoration: underline;
  color: #0068bd;
  font-size: 1rem;
}
.archive figcaption {
  font-size: 0.75rem;
  color: #6e6e6e;
  text-align: center;
  line-height: 1.5;
}
.archive h2 {
  padding-bottom: 10px;
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(128deg, rgb(0, 128, 88) 55%, rgb(255, 216, 31) 100%) 1;
     border-image: linear-gradient(128deg, rgb(0, 128, 88) 55%, rgb(255, 216, 31) 100%) 1;
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .archive h2 {
    font-size: 1.5rem;
  }
}
@media print, screen and (min-width: 1024px) {
  .archive h2 {
    font-size: 1.625rem;
  }
}
.archive h3 {
  margin-bottom: 20px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
}
.archive p {
  margin-bottom: 20px;
  font-size: 1rem;
}
.archive ul {
  margin-bottom: 40px;
  padding: 20px 20px 20px 40px;
  background-color: #efefef;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style-type: decimal;
}
.archive ul li {
  list-style: decimal;
  line-height: 1.5;
  font-weight: bold;
  font-size: 1rem;
}
.archive ul li::marker {
  color: #008058;
}
.archive ol {
  margin-bottom: 40px;
  padding: 20px 20px 20px 40px;
  background-color: #efefef;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style-type: disc;
}
.archive ol li {
  list-style: disc;
  line-height: 1.5;
  font-weight: bold;
  font-size: 1rem;
}
.archive ol li::marker {
  color: #008058;
}
.archive .wp-block-list {
  /*     width: fit-content;
  margin: 0 auto 40px auto; */
}
.archive .wp-block-columns {
  margin-bottom: 40px;
}
.archive .wp-block-image {
  margin-bottom: 40px;
}

.filter {
  margin: 0 auto;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  gap: 20px;
}
@media print, screen and (min-width: 768px) {
  .filter {
    width: 70%;
  }
}
.filter_text {
  width: 100%;
}
.filter_list {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
}
@media print, screen and (min-width: 1024px) {
  .filter_list {
    gap: 0;
  }
}
.filter_items {
  width: calc((100% - 20px) / 2);
  cursor: pointer;
}
.filter_items.is-active span {
  background-color: rgba(0, 128, 88, 0.8);
  color: #fff;
  border: 1px solid #008058;
}
@media print, screen and (min-width: 1024px) {
  .filter_items {
    width: 25%;
  }
}
.filter_items:last-child {
  width: 100%;
  margin-top: 20px;
  text-decoration: underline;
}
.filter_items span {
  width: 120px;
  text-align: center;
  border-radius: 15px/15px;
  padding: 2px 0;
  border: 1px solid #6e6e6e;
  background-color: #efefef;
  display: inline-block;
}

.contact .error {
  text-align: right;
  font-size: 0.75rem;
  color: #ff1e1e;
  font-weight: bold;
  position: absolute;
  bottom: -18px;
  right: 0;
}
.contact_wrap {
  padding: 20px;
  background-color: #efefef;
}
@media print, screen and (min-width: 1024px) {
  .contact_wrap {
    padding: 60px;
  }
}
.contact_row {
  display: flex;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
  gap: 10px;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 1024px) {
  .contact_row {
    flex-direction: row;
    padding: 20px 40px;
  }
}
.contact_row:last-child {
  margin-bottom: 0;
}
.contact_title {
  width: 100%;
  font-weight: bold;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 1024px) {
  .contact_title {
    min-width: 300px;
    width: auto;
  }
}
.contact_title span {
  display: inline-block;
  padding: 4px;
  margin-left: 10px;
  font-size: 0.625rem;
  font-weight: bold;
}
.contact_title span.red {
  border: 2px solid #ff1e1e;
  color: #ff1e1e;
}
.contact_title span.blue {
  border: 2px solid #1e5aff;
  color: #1e5aff;
}
.contact_input {
  position: relative;
  width: 100%;
}
@media print, screen and (min-width: 1024px) {
  .contact_input {
    width: calc(100% - 200px);
  }
}
.contact_input input,
.contact_input textarea,
.contact_input select {
  cursor: pointer;
  padding: 10px 20px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  border-radius: 5px/5px;
  border: 1px solid #008058;
  line-height: 1.5;
  font-size: 1rem;
}
.contact_input select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  line-height: 1.5;
}
.contact_input textarea {
  height: 200px;
}
.contact_input.select-wrapper {
  position: relative;
}
.contact_input.select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px; /* 右余白20pxにするために、矢印の幅考慮して調整 */
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #008058; /* 矢印の色 */
  pointer-events: none;
  transform: translateY(-50%);
}
.contact_bottom {
  text-align: center;
}
.contact_bottom a {
  text-decoration: underline;
}
.contact_button button {
  margin-top: 40px;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: bold;
  background-color: #fff;
  border-radius: 50px/50px;
  width: 100%;
  padding: 20px 0;
  border: solid 3px #008058;
  transition: all ease-in-out 0.3s;
  text-decoration: none !important;
  color: #000 !important;
  position: relative;
}
@media print, screen and (min-width: 1024px) {
  .contact_button button {
    width: 50%;
  }
}
.contact_button button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #008058;
  border-right: 0;
  transform: translateY(-50%);
}
.contact_check {
  text-decoration: underline;
  cursor: pointer;
}

.accordion {
  width: 100%;
}
.accordion:last-of-type {
  margin-bottom: 0;
}
.accordion_item {
  position: relative;
}
.accordion_item.is-open .accordion_panel {
  opacity: 1;
  height: auto;
}
.accordion_item.is-open .accordion_panel::before {
  opacity: 1;
}
.accordion_item.is-open .accordion_panel .accordion_content {
  transform: none;
  opacity: 1;
}
.accordion_item.is-open .accordion_chevron {
  transform: rotate(180deg);
}
.accordion_trigger {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4;
  border: none;
  border-left: 6px solid #008058;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}
.accordion_trigger:focus-visible {
  outline: 3px solid #99c2ff;
  outline-offset: -2px;
}
.accordion_chevron {
  width: 18px;
  height: 18px;
  transition: transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.accordion_panel {
  height: 0;
  opacity: 0;
  transition: height 280ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 280ms linear;
  position: relative;
  padding-top: 20px;
  background-color: #fff;
}
.accordion_content {
  padding: 16px 20px;
  border-left: 6px solid #ffd81f;
  background: #fff;
  position: relative;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  z-index: 1;
  transform: translateY(-4px);
  opacity: 0;
  transition: transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 280ms linear;
}
@media (prefers-reduced-motion: reduce) {
  .accordion_panel, .accordion_content, .accordion_chevron, .accordion_panel::before {
    transition: none !important;
  }
}

.user-bottom {
  margin: 60px auto 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .user-bottom {
    font-size: 1.625rem;
  }
}
@media print, screen and (min-width: 1024px) {
  .user-bottom {
    font-size: 1.875rem;
  }
}
.user-image {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .user-image {
    padding-top: 260px;
  }
}
.user-image img {
  width: 100%;
  margin: 0 auto;
  display: block;
}
@media print, screen and (min-width: 1024px) {
  .user-image img {
    width: 70%;
  }
}
.user-voice {
  margin-top: 20px;
  padding: 20px;
  border-top: solid #cccccc 1px;
  border-bottom: solid #cccccc 1px;
  border-right: solid #cccccc 1px;
  background-color: #fff;
  border-radius: 5px/5px;
  border-left: 6px solid #008058;
  position: relative;
  font-size: 1.25rem;
  font-weight: bold;
  z-index: 3;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .user-voice {
    position: absolute;
    margin-top: 0;
  }
}
.user-voice::before {
  position: absolute;
  content: none;
  transform: rotate(45deg);
  width: 20px;
  height: 20px;
  background-color: #fff;
  z-index: -1;
  border-right: solid #cccccc 1px;
  border-bottom: solid #cccccc 1px;
  bottom: -11px;
  left: 50%;
}
@media print, screen and (min-width: 768px) {
  .user-voice::before {
    content: "";
  }
}
@media print, screen and (min-width: 768px) {
  .user-voice.--num1 {
    top: 3%;
    left: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .user-voice.--num2 {
    top: 25%;
    left: 20%;
  }
}
@media print, screen and (min-width: 768px) {
  .user-voice.--num3 {
    top: 0;
    right: 12%;
  }
}
@media print, screen and (min-width: 1024px) {
  .user-voice.--num3 {
    top: 7%;
    right: 30%;
  }
}
@media print, screen and (min-width: 768px) {
  .user-voice.--num4 {
    top: 20%;
    right: 5%;
  }
}
form.form-submitting {
  pointer-events: none;
  opacity: 0.6; /* 任意: 見た目で「処理中」感を出す */
}

.work-area {
  position: relative;
}
.work-area .work-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 50px;
  font-size: 3.75rem;
  font-weight: bold;
  color: #008058;
  padding: 0 10px 10px 10px;
  border-bottom: 5px solid #ffd81f;
}
.work-area .work-text span {
  font-size: 1.25rem;
  color: #000;
  font-weight: bold;
}
.work-area img {
  display: block;
  width: 100%;
}
.work-area .ab-img {
  width: 60px;
  height: 60px;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  position: absolute;
}
.work-area .ab-img.show {
  opacity: 1;
}
@media print, screen and (min-width: 768px) {
  .work-area .ab-img {
    width: 120px;
    height: 120px;
  }
}
@media print, screen and (min-width: 1024px) {
  .work-area .ab-img {
    width: 100px;
    height: 100px;
  }
}
.work-area .ab-img.--1 {
  top: 5%;
  left: 15%;
}
.work-area .ab-img.--2 {
  top: 20%;
  left: 25%;
}
.work-area .ab-img.--3 {
  top: 30%;
  left: 3%;
}
.work-area .ab-img.--4 {
  top: 4%;
  left: 60%;
}
.work-area .ab-img.--5 {
  top: 50%;
  left: 80%;
}
.work-area .ab-img.--6 {
  top: 50%;
  left: 25%;
}
.work-area .ab-img.--7 {
  top: 20%;
  left: 38%;
}
.work-area .ab-img.--8 {
  top: -10%;
  left: 40%;
}
.work-area .ab-img.--9 {
  top: 50%;
  left: 50%;
}

.swiper-body {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

/* ページネーションの余白 */
@media print, screen and (min-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px 8px !important;
  }
}
@media print, screen and (min-width: 1024px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 14px 14px !important;
  }
}

.news-button-prev,
.news-button-next {
  transform: translateY(50%) !important;
}

.swiper-button-next {
  right: 10px !important;
  width: 50px !important;
  transform: translateX(50%) !important;
}

.swiper-button-prev {
  left: 10px !important;
  width: 50px !important;
  transform: translateX(-50%) !important;
}

.swiper-pagination-bullet {
  background-color: #fff !important;
}
@media print, screen and (min-width: 768px) {
  .swiper-pagination-bullet {
    height: 10px !important;
    width: 10px !important;
  }
}
@media print, screen and (min-width: 1024px) {
  .swiper-pagination-bullet {
    height: 14px !important;
    width: 14px !important;
  }
}

.swiper-pagination {
  z-index: 1001 !important;
}
@media print, screen and (min-width: 1024px) {
  .swiper-pagination {
    display: flex;
    flex-direction: column;
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 40px !important;
}
@media print, screen and (min-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: 60px !important;
  }
}
@media print, screen and (min-width: 1024px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    top: 50% !important;
    right: 20px !important;
    bottom: auto !important;
    left: auto !important;
    width: auto !important;
    transform: translateY(-50%) !important;
  }
}

.gallery-grid {
  -moz-column-count: 1;
       column-count: 1;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media print, screen and (min-width: 768px) {
  .gallery-grid {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media print, screen and (min-width: 1024px) {
  .gallery-grid {
    -moz-column-count: 3;
         column-count: 3;
  }
}
.gallery-grid .gallery-item,
.gallery-grid .coming-soon {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 10px;
  vertical-align: top;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}
.gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.gallery-grid .gallery-item .label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  box-sizing: border-box;
  text-align: center;
  word-break: break-word;
}
.gallery-grid .coming-soon {
  background: #222;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 200px;
  min-height: 200px;
}

.grecaptcha-badge {
  opacity: 0;
  z-index: -1;
}/*# sourceMappingURL=style.css.map */