@charset "UTF-8";
html {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 62.5%;
  line-height: 1.7;
  letter-spacing: 0.2em;
  color: #333;
}

body {
  font-size: 1.6rem;
  background-color: #fffff6;
}

.l-footer__info {
  background-color: #dedede;
}
.l-footer__info__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .l-footer__info__inner {
    flex-direction: column;
  }
}
.l-footer__info__logoKr {
  font-size: 2rem;
  font-weight: 600;
}
.l-footer__info__logoJp {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
  margin-bottom: 20px;
}
.l-footer__info__address, .l-footer__info__phone {
  font-size: 1.2rem;
}
.l-footer__info__phone {
  margin-bottom: 20px;
}
.l-footer__info__navList {
  font-size: 1.4rem;
  display: flex;
  gap: 25px;
}
@media (max-width: 576px) {
  .l-footer__info__navList {
    flex-direction: column;
    gap: 10px;
  }
}
.l-footer__info__navItem a:hover {
  opacity: 0.8;
}
.l-footer__bottom {
  background: #00a251;
}
.l-footer__bottom__copyRight {
  text-align: center;
  padding: 15px 0;
  font-size: 1.4rem;
  color: #fff;
}

.l-header {
  position: sticky;
  top: 0;
  background-color: #fffff6;
  z-index: 10;
  box-shadow: 0px 2px 8px #cdcdcd;
}
@media (max-width: 992px) {
  .l-header {
    background-color: #00a251;
  }
}
.l-header__top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header__logo__kr {
  font-size: 2.2rem;
  font-weight: 600;
}
@media (max-width: 992px) {
  .l-header__logo__kr {
    color: #fff;
    font-size: 2rem;
  }
}
.l-header__logo__jp {
  font-size: 1.4rem;
  font-weight: 600;
}
@media (max-width: 992px) {
  .l-header__logo__jp {
    color: #fff;
    font-size: 1.2rem;
  }
}
.l-header__right {
  display: flex;
  gap: 30px;
}
.l-header__right a:hover {
  opacity: 0.8;
}
@media (max-width: 992px) {
  .l-header__right {
    display: none;
  }
}
.l-header__nav {
  background-color: #00a251;
  padding: 20px;
}
@media (max-width: 992px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__navInner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 30px;
}
.l-header a:hover {
  opacity: 0.8;
}
.l-header__navMenu {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}
.l-header__mobileMenu {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 10;
}
@media (max-width: 992px) {
  .l-header__mobileMenu {
    display: block;
  }
}
.l-header__menubar, .l-header__menubar::before, .l-header__menubar::after {
  display: block;
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.5s;
}
.l-header__menubar::before {
  top: -10px;
}
.l-header__menubar::after {
  top: 10px;
}
.l-header__mobileMenu.open > .l-header__menubar {
  background-color: transparent;
}
.l-header__mobileMenu.open > .l-header__menubar::before {
  top: 0;
  transform: rotate(45deg);
  background-color: #fff;
}
.l-header__mobileMenu.open > .l-header__menubar::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #fff;
}
.l-header__mobileNav {
  position: fixed;
  width: 80%;
  height: 100vh;
  top: 0px;
  right: -120%;
  background-color: #00a251;
  padding: 50px 0;
  transition: all 0.5s;
}
.l-header__mobileNavList {
  margin: 20px 30px;
}
.l-header__mobileNavItem {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #fff;
}
.l-header__mobileNavItem a {
  display: block;
  width: 100%;
  height: 100%;
}
.l-header__mobileNav.open {
  right: 0;
}
.l-header__mobileNavInfo {
  margin: 40px auto;
  text-align: center;
}
.l-header__mobileNavContact {
  margin: 30px 30px;
  font-size: 1.4rem;
  color: #fff;
}

/* 管理バー表示時のヘッダー隠れ対策 */
/* 管理バー表示時（PC） */
body.admin-bar header {
  top: 32px;
  /* 管理バーの高さ */
}

/* 管理バー表示時（モバイル／782px以下） */
@media screen and (max-width: 782px) {
  body.admin-bar header {
    top: 46px;
    /* モバイル時の管理バーの高さ */
  }
}
.l-main__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  justify-content: center;
  align-items: center;
}
.l-main__content__area {
  margin: 80px 0 100px 0;
}

.c-btn {
  padding: 10px 50px;
  border-radius: 50px;
  font-size: 2rem;
  box-shadow: 0px 2px 8px #cdcdcd;
}
.c-btn:hover {
  opacity: 0.8;
}
.c-btn__primary {
  background-color: #00a251;
  color: #fff;
}
.c-btn__secondary {
  background-color: #fff;
  border: solid 1px #00a251;
  color: #00a251;
}

.c-sectionTitle {
  margin: 0 0 40px 0;
  font-size: 2.4rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 3px solid #00a251;
  color: #333333;
}
@media (max-width: 576px) {
  .c-sectionTitle {
    font-size: 2rem;
  }
}

.c-content__box {
  padding: 40px 0;
}

.c-contentHeading-h2 {
  padding: 0.5em 0.7em;
  border-left: 5px solid #00a251;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.c-contentText {
  margin-bottom: 20px;
}

.c-speechBubble {
  position: relative;
  display: inline-block;
  margin-left: 20px;
  margin-bottom: 20px;
  padding: 16px;
  border: 1px solid #000000;
  border-radius: 15px;
  background-color: #ffffff;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
}
@media (max-width: 576px) {
  .c-speechBubble {
    padding: 8px;
    margin-bottom: 10px;
    border: none;
    background-color: transparent;
  }
}

.c-speechBubble::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-style: solid;
  border-width: 10px 20px 10px 0;
  border-color: transparent #000000 transparent transparent;
  translate: -100% -50%;
}
@media (max-width: 576px) {
  .c-speechBubble::before {
    display: none;
  }
}

.c-speechBubble::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-style: solid;
  border-width: 9px 18px 9px 0;
  border-color: transparent #ffffff transparent transparent;
  translate: -100% -50%;
}
@media (max-width: 576px) {
  .c-speechBubble::after {
    display: none;
  }
}

.c-marker {
  background: linear-gradient(transparent 60%, yellow 60%);
}

.pagination-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
  list-style-type: none;
  padding: 0;
}

.pagination-1 a {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  border: 1px solid #00a251;
  border-radius: 1px;
  color: #00a251;
}

.pagination-1 a:not(:hover) {
  text-decoration: none;
}

.pagination-1 .current a {
  background-color: #00a251;
  color: #fff;
  pointer-events: none;
}

.c-post-navigation {
  display: flex;
  justify-content: space-between;
}

.c-textBox {
  padding: 20px 20px 0px 20px;
  margin-bottom: 40px;
  border-radius: 20px;
  border: 1px dotted #333;
}

.c-content-flex {
  display: flex;
  gap: 20px;
}

.breadcrumb {
  margin-top: 20px;
  color: #9f9f9f;
  font-size: 1.4rem;
}

/* フォーム全体 */
.c-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
}

/* 各フィールドのラッパー */
.c-form__field__name,
.c-form__field__email,
.c-form__field__tel,
.c-form__field__message,
.c-form__field__submit {
  margin-bottom: 3rem;
}

/* ラベル */
.c-form label {
  margin-bottom: 1.6rem;
  font-weight: 600;
  color: #333;
  display: inline-block;
}

/* テキスト、メール、電話入力 */
.c-form__input__text,
.c-form__input__email,
.c-form__input__tel {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* フォーカス時 */
.c-form__input__text:focus,
.c-form__input__email:focus,
.c-form__input__tel:focus,
.c-form__input__textarea:focus {
  border-color: #0073aa;
  box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.2);
  outline: none;
}

/* テキストエリア */
.c-form__input__textarea {
  width: 100%;
  min-height: 150px;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
}

.c-form__span {
  font-size: 1.2rem;
  font-weight: 500;
  display: inline-block;
  background-color: #00a251;
  color: #fff;
  padding: 0.25rem 0.5rem;
  margin-right: 0.5rem;
  border-radius: 8px;
}

.c-form__textcenter {
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 32px;
}

input[type=checkbox i] {
  background-color: initial;
  cursor: default;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  box-sizing: border-box;
  margin: 3px 3px 3px 4px;
  padding: initial;
  border: initial;
}

.p-toppage__mv__copy__text {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 992px) {
  .p-toppage__mv__copy__text {
    font-size: 2.4rem;
  }
}
@media (max-width: 576px) {
  .p-toppage__mv__copy__text {
    font-size: 2rem;
    margin-bottom: 0px;
    margin-top: 30px;
  }
}
.p-toppage__mv__content {
  display: flex;
  justify-content: center;
}
@media (max-width: 576px) {
  .p-toppage__mv__content {
    flex-direction: column;
  }
}
.p-toppage__mv__content__left {
  display: flex;
  justify-content: center;
}
.p-toppage__mv__content__left img {
  max-width: 550px;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-toppage__mv__content__right {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 576px) {
  .p-toppage__mv__content__right {
    margin-top: 20px;
  }
}
.p-toppage__mv__contact {
  margin: 40px 0 100px 0;
  display: flex;
  justify-content: center;
  gap: 40px;
  text-align: center;
}
@media (max-width: 576px) {
  .p-toppage__mv__contact {
    flex-direction: column;
    gap: 20px;
    margin: 20px 0 80px 0;
  }
}
.p-toppage__news {
  margin-bottom: 100px;
}
.p-toppage__news__newsList {
  margin-bottom: 60px;
}
.p-toppage__news__newsItem {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .p-toppage__news__newsItem {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
.p-toppage__news__newsDate {
  background-color: #00a251;
  padding: 5px;
  color: #fff;
  margin-right: 10px;
}
@media (max-width: 576px) {
  .p-toppage__news__newsDate {
    font-size: 1.2rem;
  }
}
.p-toppage__news__newsTitle {
  border-bottom: 2px dotted #333;
}
@media (max-width: 576px) {
  .p-toppage__news__newsTitle {
    width: 100%;
  }
}
.p-toppage__news__link {
  text-align: center;
}
.p-toppage__news__linkItem {
  border-bottom: dotted 2px #00a251;
  color: #00a251;
  display: inline-block;
}
.p-toppage__about__top {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .p-toppage__about__top {
    flex-direction: column;
    gap: 15px;
  }
}
.p-toppage__about__image {
  display: block;
  max-width: 300px;
}
.p-toppage__about__text {
  margin-bottom: 20px;
}
.p-toppage__about__link {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
.p-toppage__service {
  margin-bottom: 100px;
}
.p-toppage__service__serviceList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 576px) {
  .p-toppage__service__serviceList {
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 20px;
  }
}
.p-toppage__service__serviceItem {
  border: 2px dotted #333;
  background-color: #fff;
  border-radius: 20px;
  width: 23%;
  text-align: center;
}
.p-toppage__service__serviceItem a {
  display: block;
  width: 100%;
  padding: 30px 20px;
  border-radius: 20px;
}
.p-toppage__service__serviceItem a:hover {
  background-color: #f7f7f7;
}
@media (max-width: 576px) {
  .p-toppage__service__serviceItem {
    width: 100%;
  }
}
.p-toppage__service__itemTitle {
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .p-toppage__service__itemTitle {
    font-size: 1.8rem;
  }
}
.p-toppage__service__icon {
  font-size: 5rem;
  margin-bottom: 20px;
}
.p-toppage__service__icon.icon1 {
  color: #00a251;
}
.p-toppage__service__icon.icon2 {
  color: #3056a6;
}
.p-toppage__service__icon.icon3 {
  color: #53b332;
}
.p-toppage__service__icon.icon4 {
  color: #ec7ba5;
}
.p-toppage__service__icon.icon5 {
  color: #25a1dc;
}
.p-toppage__service__icon.icon6 {
  color: #1a853b;
}
.p-toppage__service__icon.icon7 {
  color: #e94622;
}
.p-toppage__service__description {
  font-size: 1.3rem;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .p-toppage__service__description {
    font-size: 1.6rem;
  }
}
.p-toppage__service__linkText {
  color: #00a251;
  border-bottom: dotted 2px #00a251;
  display: inline-block;
}
.p-toppage__faq {
  margin-bottom: 100px;
}
.p-toppage__faq__title {
  color: #00a251;
  border-bottom: dotted 2px #00a251;
  margin-bottom: 20px;
}
.p-toppage__contact__text {
  text-align: center;
}

.accordion-003 {
  max-width: 100%;
  margin-bottom: 7px;
  border-bottom: 2px dotted #00a251;
}

.accordion-003 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 5px 2em;
  color: #333;
  font-weight: 600;
  cursor: pointer;
}

.accordion-003 summary::-webkit-details-marker {
  display: none;
}

.accordion-003 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid rgba(51, 51, 51, 0.7019607843);
  border-right: 3px solid rgba(51, 51, 51, 0.7019607843);
  content: "";
  transition: transform 0.3s;
}

.accordion-003[open] summary::after {
  transform: rotate(225deg);
}

.accordion-003 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 2em 1.5em;
  color: #333333;
  transition: transform 0.5s, opacity 0.5s;
}

.accordion-003[open] p {
  transform: none;
  opacity: 1;
}

.p-about__image {
  max-width: 50%;
}
@media (max-width: 576px) {
  .p-about__image {
    max-width: 100%;
  }
}

.p-contact__link {
  display: flex;
  justify-content: center;
  text-align: center;
}
@media (max-width: 576px) {
  .p-contact__link {
    flex-direction: column;
  }
}

.p-contact__center {
  text-align: center;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid #ccc;
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}

th {
  background: #f2f2f2;
}

/* スマホ対応：テーブルをカード型に変換 */
@media (max-width: 768px) {
  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
  }
  thead {
    display: none;
  }
  tr {
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    background: #fff;
  }
  td {
    border: none;
    padding: 5px 0;
  }
  td::before {
    content: attr(data-label);
    display: block;
    font-weight: bold;
    margin-bottom: 3px;
    color: #555;
  }
  /* センター名だけグレー背景 */
  td[data-label=センター名] {
    background: #f7f7f7;
    padding: 8px;
    border-radius: 4px;
    font-weight: bold;
  }
  td[data-label=センター名]::before {
    color: #333;
  }
}
.u-mb10 {
  margin-bottom: 10px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-bold {
  font-weight: bold;
}

.u-icon-left {
  margin-right: 10px;
}

.u-pc-none {
  display: none;
}
@media (max-width: 576px) {
  .u-pc-none {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */