@charset "UTF-8";
/* ------------------------------------------
  ヘッダー
------------------------------------------ */
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #fff;
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 1rem 0;
    height: 7rem;
  }
}
.l-header__inner_logo {
  display: flex;
  align-items: center;
}
.l-header__inner_logo_text {
  display: flex;
  flex-direction: column;
  color: #303030;
  line-height: 1.26;
}
.l-header__inner_logo_text_top {
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-header__inner_logo_text_top {
    font-size: 1rem;
  }
}
.l-header__inner_logo_text_bottom_large {
  font-size: 4.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-header__inner_logo_text_bottom_large {
    font-size: 2.5rem;
  }
}
.l-header__inner_logo_text_bottom_small {
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-header__inner_logo_text_bottom_small {
    font-size: 0.75rem;
  }
}
.l-header__inner_logo_icon {
  width: 9.4rem;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .l-header__inner_logo_icon {
    width: 4rem;
    margin-left: 0.5rem;
  }
}
.l-header__inner_contact {
  color: #0072BF;
  display: flex;
  align-items: center;
}
.l-header__inner_contact_text {
  font-size: 2rem;
  font-weight: 500;
}
.l-header__inner_contact_num {
  margin-left: 1.5rem;
  display: flex;
  align-items: center;
}
.l-header__inner_contact_num_icon {
  width: 6rem;
}
.l-header__inner_contact_num_text {
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-left: 0.7rem;
}
@media screen and (max-width: 767px) {
  .l-header__inner_contact {
    display: none;
  }
}
.l-header__inner .c-ham {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__inner .c-ham {
    display: block;
    width: 2.4rem;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .l-header__inner .c-ham__inner {
    height: 1.3rem;
    position: relative;
    transition: 0.3s ease;
  }
  .l-header__inner .c-ham__inner_bar {
    position: absolute;
    display: block;
    content: "";
    height: 0.1rem;
    background-color: #3E3A39;
    transition: 0.3s ease;
  }
  .l-header__inner .c-ham__inner_bar:nth-child(1) {
    top: 0;
    left: 0;
    width: 1.9rem;
  }
  .l-header__inner .c-ham__inner_bar:nth-child(2) {
    top: 0.6rem;
    left: 0;
    width: 2.4rem;
  }
  .l-header__inner .c-ham__inner_bar:nth-child(3) {
    top: 1.3rem;
    left: 0;
    width: 1.5rem;
  }
  .l-header__inner .c-ham__menu {
    font-size: 0.6rem;
    margin-top: 0.6rem;
    display: block;
    transition: 0.3s ease;
  }
  .l-header__inner .c-ham.active .c-ham__inner {
    height: 2.5rem;
    padding: 1rem;
  }
  .l-header__inner .c-ham.active .c-ham__inner_bar:nth-child(1) {
    top: 1.5rem;
    left: 0.2rem;
    width: 2rem;
    transform: rotate(45deg);
  }
  .l-header__inner .c-ham.active .c-ham__inner_bar:nth-child(2) {
    opacity: 0;
  }
  .l-header__inner .c-ham.active .c-ham__inner_bar:nth-child(3) {
    top: 1.5rem;
    left: 0.2rem;
    width: 2rem;
    transform: rotate(-45deg);
  }
  .l-header__inner .c-ham.active .c-ham__menu {
    font-size: 0;
  }
}
.l-header__nav {
  padding: 3rem 0;
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: fixed;
    top: 7rem;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - 7rem);
    height: calc(100vsh - 7rem);
    transition: 0.3s ease;
    overflow: scroll;
  }
  .l-header__nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    background-color: #fff;
  }
}
.l-header__nav_contact {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__nav_contact {
    background-color: #E5F1F9;
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    color: #0072BF;
    font-weight: 500;
  }
  .l-header__nav_contact_text {
    font-size: 1rem;
  }
  .l-header__nav_contact_num {
    display: flex;
    align-items: center;
    margin-left: 0.5rem;
  }
  .l-header__nav_contact_num_icon {
    width: 3rem;
  }
  .l-header__nav_contact_num_text {
    margin-left: 0.5rem;
    font-size: 2rem;
    letter-spacing: 0.04em;
  }
}
.l-header__nav_menu {
  width: 80rem;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 3.5rem;
}
@media screen and (max-width: 767px) {
  .l-header__nav_menu {
    width: auto;
    margin-left: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    padding: 1.2rem 0;
  }
}
.l-header__nav_menu_item {
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header__nav_menu_item {
    width: 100%;
  }
}
.l-header__nav_menu_item:hover .l-header__nav_menu_item_submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.l-header__nav_menu_item_link {
  font-size: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 0.8rem 0;
}
@media screen and (max-width: 767px) {
  .l-header__nav_menu_item_link {
    padding: 1.3rem 2rem;
    width: 100%;
    justify-content: space-between;
    font-weight: 400;
    font-size: 1.2rem;
  }
  .l-header__nav_menu_item_link.open.has_submenu::after {
    background-image: url(../img/common/icon_arrow_up_sp.png);
  }
}
.l-header__nav_menu_item_link.has_submenu::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 0.9rem;
  background-image: url(../img/common/icon_arrow_down.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 1rem;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-header__nav_menu_item_link.has_submenu::after {
    width: 1.2rem;
    height: 0.7rem;
  }
}
@media screen and (min-width: 768px) {
  .l-header__nav_menu_item_link:hover {
    color: #0072BF;
    opacity: 1;
  }
  .l-header__nav_menu_item_link:hover.has_submenu::after {
    background-image: url(../img/common/icon_arrow_up.png);
  }
}
@media screen and (min-width: 768px) {
  .l-header__nav_menu_item_submenu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: 0.3s ease;
    z-index: 1;
    transform: translateY(100%);
    background-color: #0072BF;
    border-radius: 1rem;
    padding: 1.5rem;
  }
  .l-header__nav_menu_item_submenu_item_link {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 1rem 0;
    display: flex;
	line-height: 130%;
  }
  .l-header__nav_menu_item_submenu_item_link::before {
    content: "";
    width: 0.9rem;
    height: 1.6rem;
    background-image: url(../img/common/icon_arrow_white.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-right: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav_menu_item_submenu {
    display: none;
    background-color: #E5F1F9;
    padding: 1rem 0;
  }
  .l-header__nav_menu_item_submenu_item_link {
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1rem 2rem;
    display: flex;
  }
  .l-header__nav_menu_item_submenu_item_link::before {
    content: "";
    display: block;
    height: 1.2rem;
    width: 0.7rem;
    background-image: url(../img/common/icon_arrow_submenu_sp.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 1rem;
    transition: 0.3s ease;
  }
}
.l-header__nav.active_contact {
  display: none;
}
.l-header__nav.active_menu {
  width: 80rem;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 3.5rem;
}
.l-header__nav.active_menu_item {
  position: relative;
}
.l-header__nav.active_menu_item:hover .l-header__nav_menu_item_submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.l-header__nav.active_menu_item_link {
  font-size: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 0.8rem 0;
}
.l-header__nav.active_menu_item_link.has_submenu::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 0.9rem;
  background-image: url(../img/common/icon_arrow_down.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 1rem;
  transition: 0.3s ease;
}
.l-header__nav.active_menu_item_link:hover {
  color: #0072BF;
  opacity: 1;
}
.l-header__nav.active_menu_item_link:hover.has_submenu::after {
  background-image: url(../img/common/icon_arrow_up.png);
}
.l-header__nav.active_menu_item_submenu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: 0.3s ease;
  z-index: 1;
  transform: translateY(100%);
  background-color: #0072BF;
  border-radius: 1rem;
  padding: 1.5rem;
}
.l-header__nav.active_menu_item_submenu_item_link {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 1rem 0;
  display: flex;
}
.l-header__nav.active_menu_item_submenu_item_link::before {
  content: "";
  width: 0.9rem;
  height: 1.6rem;
  background-image: url(../img/common/icon_arrow_white.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 0.5rem;
}

/* ------------------------------------------
  フッター
------------------------------------------ */
.l-footer {
  margin-top: 20rem;
  color: #303030;
}
@media screen and (max-width: 767px) {
  .l-footer {
    margin-top: 8rem;
  }
}
.l-footer__toptext {
  position: relative;
}
.l-footer__toptext_inner {
  background-color: #fff;
  font-size: 2.2rem;
  padding-right: 1.5rem;
  color: #231815;
  display: table;
}
@media screen and (max-width: 767px) {
  .l-footer__toptext_inner {
    font-size: 1.3rem;
    padding-right: 1rem;
  }
}
.l-footer__toptext::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.1rem;
  background-color: #C9CACA;
  top: 50%;
  right: 0;
  position: absolute;
  z-index: -1;
}
.l-footer__content {
  margin-top: 2rem;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .l-footer__content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.l-footer__content_left_logo {
  display: flex;
  align-items: center;
}
.l-footer__content_left_logo_text {
  display: flex;
  flex-direction: column;
  color: #303030;
  line-height: 1.26;
}
@media screen and (max-width: 767px) {
  .l-footer__content_left_logo_text {
    line-height: 1.4;
  }
}
.l-footer__content_left_logo_text_top {
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-footer__content_left_logo_text_top {
    font-size: 1rem;
  }
}
.l-footer__content_left_logo_text_bottom_large {
  font-size: 4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-footer__content_left_logo_text_bottom_large {
    font-size: 2rem;
  }
}
.l-footer__content_left_logo_text_bottom_small {
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-footer__content_left_logo_text_bottom_small {
    font-size: 0.75rem;
  }
}
.l-footer__content_left_logo_icon {
  width: 9.4rem;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .l-footer__content_left_logo_icon {
    width: 6rem;
  }
}
.l-footer__content_left_address {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 130%;
}
@media screen and (max-width: 767px) {
  .l-footer__content_left_address {
    font-size: 1rem;
  }
}
.l-footer__content_right {
  margin-left: 14rem;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer__content_right {
    margin-left: 0;
    padding-bottom: 0;
    margin-top: 3rem;
  }
}
.l-footer__content_right_link {
  display: flex;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}
@media screen and (max-width: 767px) {
  .l-footer__content_right_link {
    flex-direction: column;
    row-gap: 2rem;
  }
}
.l-footer__content_right_link_item {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  padding-bottom: 0.8rem;
}
@media screen and (max-width: 767px) {
  .l-footer__content_right_link_item {
    font-size: 1rem;
    padding-bottom: 0.5rem;
  }
}
.l-footer__content_right_link_item::before {
  content: "";
  width: 0.7rem;
  height: 1.2rem;
  background-image: url(../img/top/icon_arrow_post.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.8rem;
}
@media screen and (max-width: 767px) {
  .l-footer__content_right_link_item::before {
    width: 0.6rem;
    height: 0.8rem;
    margin-right: 0.4rem;
  }
}
.l-footer__content_right_link_item::after {
  content: "";
  position: absolute;
  display: block;
  width: 5rem;
  height: 0.3rem;
  background-color: #B7CCD4;
  bottom: 0;
  left: 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer__content_right_link_item::after {
    width: 3.6rem;
    height: 0.2rem;
    left: 1rem;
  }
}
.l-footer__copy {
  display: block;
  margin-top: 5rem;
  text-align: center;
  padding-bottom: 3rem;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    font-size: 1rem;
    padding-bottom: 2.5rem;
  }
}

/* ------------------------------------------
  トップページ
------------------------------------------ */
.l-mv__sliderwrap {
  position: relative;
}
.l-mv__slider_item {
  position: relative;
  height: 100%;
}
.l-mv__slider_item iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 683/300;
}
@media screen and (max-width: 767px) {
  .l-mv__slider_item iframe {
    aspect-ratio: 375/300;
  }
}
.l-mv__slider_dots {
  position: absolute;
  width: 100%;
  bottom: 1.5rem;
  right: 0;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .l-mv__slider_dots {
    bottom: 4rem;
  }
}
.l-mv__slider_dots .slick-dots {
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 1.8rem;
       column-gap: 1.8rem;
}
@media screen and (max-width: 767px) {
  .l-mv__slider_dots .slick-dots {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.l-mv__slider_dots .slick-dots li button {
  font-size: 0;
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  border-radius: 50%;
  border: 0.1rem solid #fff;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-mv__slider_dots .slick-dots li button {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.l-mv__slider_dots .slick-dots li.slick-active button {
  background-color: #fff;
}
.l-mv__text {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-mv__text {
    top: 31.7%;
    transform: translateY(0);
  }
}
.l-mv__text_head {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .l-mv__text_head {
    font-size: 1.6rem;
  }
}
.l-mv__text_head_large {
  font-size: 5.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-mv__text_head_large {
    font-size: 2.1rem;
  }
}
.l-mv__text_desc {
  margin-top: 2rem;
  font-size: 1.95rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-mv__text_desc {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.l-top {
  margin-top: -5.5rem;
  position: relative;
  z-index: 1;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .l-top {
    margin-top: -2.5rem;
    padding-bottom: 4rem;
    overflow: hidden;
  }
}
.l-top__butterfly {
  position: absolute;
  top: -16rem;
  right: 5rem;
  z-index: 1000;
  animation: floating-x 7.2s ease-in-out infinite alternate-reverse;
}
@media screen and (max-width: 767px) {
  .l-top__butterfly {
    top: 15rem;
    right: 0;
    width: 100vw;
    aspect-ratio: 375/411;
  }
}
.l-top__butterfly_img {
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@media screen and (max-width: 767px) {
  .l-top__butterfly_img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right top;
       object-position: right top;
    width: 100%;
    height: 100%;
  }
}
.l-top__news {
  position: relative;
  z-index: 1001;
}
.l-top__news_content {
  background-color: #fff;
  border-radius: 2.5rem;
  padding: 2rem 3rem 4rem;
  width: 61.5rem;
}
@media screen and (max-width: 767px) {
  .l-top__news_content {
    border-radius: 1.2rem;
    width: auto;
    padding: 1rem 1rem 2.5rem;
  }
}
.l-top__news_content_head {
  display: flex;
  align-items: flex-end;
  color: #0072BF;
}
@media screen and (max-width: 767px) {
  .l-top__news_content_head {
    align-items: baseline;
  }
}
.l-top__news_content_head_en {
  font-size: 4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-top__news_content_head_en {
    font-size: 2rem;
  }
}
.l-top__news_content_head_ja {
  font-size: 1.5rem;
  margin-left: 1.5rem;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .l-top__news_content_head_ja {
    font-size: 1rem;
    margin-left: 0.5rem;
  }
}
.l-top__news_content_list {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .l-top__news_content_list {
    margin-top: 0.3rem;
  }
}
.l-top__news_content_list_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.8rem;
  font-weight: 500;
  color: #0072BF;
  padding: 0.8rem 0;
}
@media screen and (max-width: 767px) {
  .l-top__news_content_list_item {
    font-size: 1rem;
    padding: 0.4rem 0;
  }
}
.l-top__news_content_list_item_left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 15rem;
}
@media screen and (max-width: 767px) {
  .l-top__news_content_list_item_left {
    width: 30%;
    justify-content: flex-start;
  }
}
.l-top__news_content_list_item_left_icon {
  width: 3rem;
  height: 3rem;
  background-image: url(../img/common/icon_info.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-top__news_content_list_item_left_icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.5rem;
  }
}
.l-top__news_content_list_item_right {
  width: 37.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 767px) {
  .l-top__news_content_list_item_right {
    width: 70%;
  }
}
.l-top__news_content_list_item:hover {
  color: #3E3A39;
  opacity: 1;
}
.l-top__news_content_list_item:hover .l-top__news_content_list_item_left_icon {
  background-image: url(../img/common/icon_info_hover.png);
}
.l-top__guideline {
  margin-top: 3rem;
  position: relative;
  z-index: 1001;
}
@media screen and (max-width: 767px) {
  .l-top__guideline {
    margin-top: 1rem;
  }
}
.l-top__guideline_head {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-top__guideline_head {
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
}
.l-top__guideline_head_color1 {
  color: #0072BF;
  font-size: 5.2rem;
}
@media screen and (max-width: 767px) {
  .l-top__guideline_head_color1 {
    font-size: 2.3rem;
  }
}
.l-top__guideline_head_small {
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .l-top__guideline_head_small {
    font-size: 1.8rem;
  }
}
.l-top__guideline_head_color2 {
  color: #E8385A;
  font-size: 5.2rem;
}
@media screen and (max-width: 767px) {
  .l-top__guideline_head_color2 {
    font-size: 2.3rem;
  }
}
.l-top__guideline_content {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-top__guideline_content {
    flex-direction: column;
    row-gap: 1rem;
    align-items: center;
  }
}
.l-top__guideline_content_item {
  width: calc((100% - 7rem) / 2);
  padding: 2rem;
  border-radius: 1.5rem;
}
.l-top__guideline_content_item:hover {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .l-top__guideline_content_item {
    width: 91%;
    padding: 1rem;
    border-radius: 0.7rem;
  }
}
.l-top__guideline_content_item:first-child:hover .l-top__guideline_content_item_inner {
  background-color: #F2F8FC;
}
.l-top__guideline_content_item:last-child:hover .l-top__guideline_content_item_inner {
  background-color: #FEF5F7;
}
.l-top__guideline_content_item.color1 {
  background: linear-gradient(180deg, #CCE3F2 0%, #CCE3F2 50%, transparent 50%, transparent 100%);
}
.l-top__guideline_content_item.color1 .l-top__guideline_content_item_head {
  color: #0072BF;
}
.l-top__guideline_content_item.color2 {
  background: linear-gradient(180deg, #FAD7DE 0%, #FAD7DE 50%, transparent 50%, transparent 100%);
}
.l-top__guideline_content_item.color2 .l-top__guideline_content_item_head {
  color: #E8385A;
}
.l-top__guideline_content_item_inner {
  padding: 2.5rem 2rem 4rem;
  border-radius: 1.5rem;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  transition: 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .l-top__guideline_content_item_inner {
    padding: 1rem 1rem 2rem;
    border-radius: 0.7rem;
  }
}
.l-top__guideline_content_item_head {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-top__guideline_content_item_head {
  font-size: 1.7rem;
  line-height: 1.2;
  }
}
.l-top__guideline_content_item_text {
  margin-top: 1.5rem;
  font-size: 1.8rem;
  line-height: 1.7222222222;
}
@media screen and (max-width: 767px) {
  .l-top__guideline_content_item_text {
    font-size: 1rem;
    line-height: 1.7777777778;
    margin-top: 1rem;
  }
}
.l-top__guideline_content_item_link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .l-top__guideline_content_item_link {
    margin-top: 1.5rem;
  }
}
.l-top__guideline_content_item_link_text {
  transition: 0.3s ease;
  font-size: 0;
}
@media screen and (max-width: 767px) {
  .l-top__guideline_content_item_link_text {
    font-size: 1rem;
    margin-right: 0.5rem;
  }
}
.l-top__guideline_content_item_link_text.color1 {
  color: #0072BF;
}
.l-top__guideline_content_item_link_text.color2 {
  color: #E8385A;
}
.l-top__guideline_content_item_link_icon {
  width: 2rem;
}
@media screen and (max-width: 767px) {
  .l-top__guideline_content_item_link_icon {
    width: 1rem;
  }
}
.l-top__guideline_content_item:hover .l-top__guideline_content_item_link_text {
  font-size: 1.5rem;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .l-top__guideline_content_item:hover .l-top__guideline_content_item_link_text {
    font-size: 1rem;
    margin-right: 0.5rem;
  }
}
.l-top__links {
  padding: 4.5rem 0 5rem;
  background-color: #D4EFEA;
  position: relative;
  z-index: 1001;
}
@media screen and (max-width: 767px) {
  .l-top__links {
    padding: 2.3rem 0 2.8rem;
  }
}
.l-top__links_list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-top__links_list {
    flex-wrap: wrap;
    gap: 2.5rem 1.5rem;
    justify-content: center;
  }
}
.l-top__links_list_item {
  background-color: #fff;
  width: calc((100% - 10.5rem) / 4);
  border-radius: 5rem 0;
  position: relative;
  padding: 3.5rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .l-top__links_list_item {
    width: calc((100% - 1.5rem) / 2);
    border-radius: 2.5rem 0;
    padding: 2rem 0 1.5rem;
  }
}
.l-top__links_list_item::before {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 62.5%;
  height: 0.8rem;
  background-color: #AAE0D5;
}
@media screen and (max-width: 767px) {
  .l-top__links_list_item::before {
    height: 0.4rem;
    width: 62.1%;
  }
}
.l-top__links_list_item_head {
  font-size: 3.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-top__links_list_item_head {
    font-size: 1.7rem;
  }
}
.l-top__links_list_item_icon {
  width: 12rem;
  height: 9.5rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .l-top__links_list_item_icon {
    width: 5.9rem;
    height: 4.7rem;
  }
}
.l-top__links_list_item_icon_img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}
.l-top__links_list_item_bottom {
  margin-top: 5rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-top__links_list_item_bottom {
    margin-top: 3rem;
  }
}
.l-top__links_list_item_bottom_text {
  font-size: 0;
  transition: 0.3s ease;
  color: #64D2DC;
}
@media screen and (max-width: 767px) {
  .l-top__links_list_item_bottom_text {
    font-size: 1rem;
    margin-right: 0.5rem;
  }
}
.l-top__links_list_item_bottom_icon {
  width: 2rem;
}
@media screen and (max-width: 767px) {
  .l-top__links_list_item_bottom_icon {
    width: 1rem;
  }
}
.l-top__links_list_item:hover {
  opacity: 1;
  background-color: #EAF7F4;
}
.l-top__links_list_item:hover .l-top__links_list_item_bottom_text {
  font-size: 1.5rem;
  margin-right: 1rem;
}
.l-top__business {
  margin-top: 8.5rem;
}
@media screen and (max-width: 767px) {
  .l-top__business {
    margin-top: 3rem;
  }
}
.l-top__business_content {
  background-color: #E9F0F2;
  padding: 4rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-top__business_content {
    padding: 2rem 2.5rem 2.5rem;
  }
}
.l-top__business_content_table {
  display: flex;
  flex-wrap: wrap;
  font-size: 2.3rem;
  line-height: 1.7391304348;
  row-gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-top__business_content_table {
    font-size: 1.1rem;
    line-height: 1.8181818182;
    row-gap: 0;
  }
}
.l-top__business_content_table_head {
  width: 17.5rem;
  display: flex;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-top__business_content_table_head {
    width: 9.8rem;
  }
}
.l-top__business_content_table_head::before {
  content: "";
  width: 0.8rem;
  height: 3rem;
  background-color: #0072BF;
  margin-right: 1.5rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .l-top__business_content_table_head::before {
    width: 0.4rem;
    height: 1.5rem;
    margin-right: 0.7rem;
    margin-top: 0.35rem;
  }
}
.l-top__business_content_table_desc {
  width: calc(100% - 17.5rem);
}
@media screen and (max-width: 767px) {
  .l-top__business_content_table_desc {
    width: calc(100% - 9.8rem);
  }
  .l-top__business_content_table_desc:first-of-type {
    width: 100%;
    padding-left: 1.1rem;
    margin-bottom: 0.7rem;
  }
}
.l-top__business_content_table_desc table th {
  font-weight: 400;
  padding-right: 5rem;
}
@media screen and (max-width: 767px) {
  .l-top__business_content_table_desc table th {
    padding-right: 1rem;
  }
}
.l-top__business_content_reserve {
  margin: 2.5rem auto 0;
  display: table;
}
@media screen and (max-width: 767px) {
  .l-top__business_content_reserve {
    margin-top: 2rem;
    display: block;
  }
}
.l-top__business_content_reserve_head {
  text-align: center;
  position: relative;
  font-size: 2.3rem;
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-top__business_content_reserve_head {
    font-size: 1.1rem;
    padding-bottom: 1rem;
    margin-bottom: 1.8rem;
  }
}
.l-top__business_content_reserve_head::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #fff;
  height: 0.2rem;
  width: 44rem;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .l-top__business_content_reserve_head::before {
    height: 0.1rem;
    width: 22rem;
  }
}
.l-top__business_content_reserve_head::after {
  content: "";
  position: absolute;
  display: block;
  background-color: #0072BF;
  height: 0.8rem;
  width: 5rem;
  bottom: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .l-top__business_content_reserve_head::after {
    height: 0.4rem;
    width: 2.5rem;
    bottom: -0.15rem;
  }
}
.l-top__business_content_reserve_tel {
  color: #0072BF;
  font-size: 6rem;
  margin-top: 2.5rem;
}
.l-top__business_content_reserve_tel + .l-top__business_content_reserve_tel {
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .l-top__business_content_reserve_tel {
    font-size: 2.7rem;
  }
  .l-top__business_content_reserve_tel + .l-top__business_content_reserve_tel {
    margin-top: 1.5rem;
  }
}
.l-top__business_content_reserve_tel_text {
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .l-top__business_content_reserve_tel_text {
    font-size: 1.8rem;
  }
}
.l-top__business_content_reserve_tel_num {
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .l-top__business_content_reserve_tel_num {
    letter-spacing: 0.05em;
  }
}
.l-top__business_content_reserve_tel_num rt {
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.22em;
}
@media screen and (max-width: 767px) {
  .l-top__business_content_reserve_tel_num rt {
    font-size: 0.7rem;
  }
}
.l-top__business_content_reserve_text {
  margin-top: 3rem;
  text-align: center;
  font-size: 3rem;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
  .l-top__business_content_reserve_text {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.6666666667;
  }
}
.l-top__business_content_reserve_text_color {
  color: #0072BF;
  font-weight: 700;
}
.l-top__post_head {
  display: flex;
  justify-content: space-between;
}
.l-top__post_head_main {
  color: #0072BF;
  display: flex;
  align-items: baseline;
}
.l-top__post_head_main_en {
  font-size: 4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-top__post_head_main_en {
    font-size: 2rem;
  }
}
.l-top__post_head_main_ja {
  font-size: 1.5rem;
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .l-top__post_head_main_ja {
    font-size: 1rem;
    margin-left: 1rem;
  }
}
.l-top__post_head_link {
  font-size: 1.3rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-top__post_head_link {
    font-size: 1rem;
  }
}
.l-top__post_head_link::after {
  content: "";
  width: 0.7rem;
  height: 1.2rem;
  background-image: url(../img/top/icon_arrow_post.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 0.8rem;
}
@media screen and (max-width: 767px) {
  .l-top__post_head_link::after {
    width: 0.5rem;
    height: 0.9rem;
  }
}
.l-top__post_list {
  margin-top: 1.7rem;
}
.l-top__post_list_item {
  border-top: 0.1rem dashed #C9CACA;
  display: flex;
  padding: 2.5rem 2rem 2rem 2.5rem;
  color: #0072BF;
}
@media screen and (max-width: 767px) {
  .l-top__post_list_item {
    padding: 1rem 0 0.7rem;
    flex-direction: column;
  }
}
.l-top__post_list_item:last-child {
  border-bottom: 0.1rem dashed #C9CACA;
}
.l-top__post_list_item:hover {
  color: #3E3A39;
  opacity: 1;
}
.l-top__post_list_item_left {
  width: 20%;
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-top__post_list_item_left {
    width: 100%;
  }
}
.l-top__post_list_item_left_icon {
  width: 2.5rem;
  height: 2.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-top__post_list_item_left_icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.l-top__post_list_item_left_info {
  font-weight: 500;
  padding-top: 0.5rem;
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .l-top__post_list_item_left_info {
    padding-top: 0.2rem;
    margin-left: 1rem;
  }
}
.l-top__post_list_item_left_info_date {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .l-top__post_list_item_left_info_date {
    font-size: 1rem;
  }
}
.l-top__post_list_item_left_info_cat {
  font-size: 1.2rem;
  margin-top: 1rem;
  text-align: center;
  border: 0.1rem solid;
  border-radius: 1.25rem;
  line-height: 2.5rem;
  padding: 0 1rem;
}
@media screen and (max-width: 767px) {
  .l-top__post_list_item_left_info_cat {
    font-size: 0.75rem;
    line-height: 1.5rem;
    border-radius: 1rem;
    margin-top: 0.5rem;
    min-width: 4.5rem;
  }
}
.l-top__post_list_item_right {
  width: 80%;
  line-height: 1.7857142857;
  font-size: 1.4rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767px) {
  .l-top__post_list_item_right {
    width: auto;
    font-size: 1rem;
    -webkit-line-clamp: 4;
    line-height: 1.5555555556;
    margin-top: 0.5rem;
    margin-left: 2.3rem;
  }
}
.l-top__info {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .l-top__info {
    margin-top: 2.5rem;
  }
}
.l-top__info .l-top__post_list_item_left_icon {
  background-image: url(../img/common/icon_info.png);
}
.l-top__info .l-top__post_list_item:hover .l-top__post_list_item_left_icon {
  background-image: url(../img/common/icon_info_hover.png);
}
.l-top__media {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .l-top__media {
    margin-top: 2.5rem;
  }
}
.l-top__media .l-top__post_list_item_left_icon {
  background-image: url(../img/common/icon_media.png);
}
.l-top__media .l-top__post_list_item:hover .l-top__post_list_item_left_icon {
  background-image: url(../img/common/icon_media_hover.png);
}

@keyframes floating-x {
  0% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(2%);
  }
}
@keyframes floating-y {
  0% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(2%);
  }
}
/* ------------------------------------------
  お問い合わせ
------------------------------------------ */
.l-contact__head {
  display: flex;
  align-items: center;
}
.l-contact__head_icon {
  width: 8rem;
}
@media screen and (max-width: 767px) {
  .l-contact__head_icon {
    width: 2.2rem;
  }
}
.l-contact__head_text {
  font-size: 3.7rem;
  font-weight: 500;
  margin-left: 1.5rem;
  color: #0072BF;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-contact__head_text {
    font-size: 1.2rem;
    margin-left: 0.5rem;
  }
}
.l-contact__content .l-top__business_content_reserve_tel {
  text-align: center;
  display: block;
}
@media screen and (max-width: 767px) {
  .l-contact__content .l-top__business_content_reserve_tel {
    margin-top: 0.5rem;
  }
}
.l-contact__content .l-top__business_content_reserve_tel_num {
  font-size: 7.8rem;
}
@media screen and (max-width: 767px) {
  .l-contact__content .l-top__business_content_reserve_tel_num {
    font-size: 2.1rem;
  }
}
.l-contact__content .l-top__business_content_reserve_tel_num rt {
  font-size: 1.95rem;
}
@media screen and (max-width: 767px) {
  .l-contact__content .l-top__business_content_reserve_tel_num rt {
    font-size: 0.6rem;
  }
}
.l-contact__content .l-top__business_content_reserve_tel_text {
  font-size: 4.7rem;
}
@media screen and (max-width: 767px) {
  .l-contact__content .l-top__business_content_reserve_tel_text {
    font-size: 1.3rem;
  }
}
.l-contact__sec_inner {
  background-color: #E5F1F9;
  padding: 2.5rem 3rem 3rem;
}
@media screen and (max-width: 767px) {
  .l-contact__sec_inner {
    padding: 1rem 1rem 1.5rem;
  }
}
.l-contact__sec_inner .l-top__business_content_table {
  width: 62%;
  margin: 3rem auto 0;
  row-gap: 0;
}
@media screen and (max-width: 767px) {
  .l-contact__sec_inner .l-top__business_content_table {
    font-size: 1rem;
    width: 82%;
    margin: 1rem auto 0;
  }
  .l-contact__sec_inner .l-top__business_content_table .l-top__business_content_table_head {
    width: 9rem;
  }
}
.l-contact__sec_inner .l-top__business_content_table_desc table th {
  padding-right: 1rem;
  width: auto;
}
.l-contact__tel {
  margin-top: 11rem;
}
@media screen and (max-width: 767px) {
  .l-contact__tel {
    margin-top: 2rem;
  }
}
.l-contact__fax {
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .l-contact__fax {
    margin-top: 2rem;
  }
}
.l-contact__fax .l-top__business_content_reserve_tel {
  margin-top: 6rem;
  margin-bottom: 11rem;
}
@media screen and (max-width: 767px) {
  .l-contact__fax .l-top__business_content_reserve_tel {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }
}
.l-contact__mail {
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .l-contact__mail {
    margin-top: 2rem;
  }
}
.l-contact__mail .l-contact__sec_inner {
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .l-contact__mail .l-contact__sec_inner {
    padding-bottom: 1.5rem;
  }
}
.l-contact__mail_remark {
  padding-left: 10rem;
  font-size: 1.5rem;
  line-height: 1.8666666667;
}
@media screen and (max-width: 767px) {
  .l-contact__mail_remark {
    padding-left: 2.5rem;
    font-size: 1rem;
    line-height: 1.5714285714;
  }
}
.l-contact__mail_form_sec {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .l-contact__mail_form_sec {
    margin-top: 2rem;
  }
}
.l-contact__mail_form_sec + .l-contact__mail_form_sec {
  margin-top: 6rem;
  padding-top: 2.5rem;
  border-top: 0.1rem solid #C9CACA;
}
@media screen and (max-width: 767px) {
  .l-contact__mail_form_sec + .l-contact__mail_form_sec {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }
}
.l-contact__mail_form_sec_head {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-contact__mail_form_sec_head {
    font-size: 1.1rem;
  }
}
.l-contact__mail_form_sec_table {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .l-contact__mail_form_sec_table {
    margin-top: 1.5rem;
  }
}
.l-contact__mail_form_sec_table input::-moz-placeholder {
  color: #C9CACA;
}
.l-contact__mail_form_sec_table input::placeholder {
  color: #C9CACA;
}
.l-contact__mail_form_sec_table_row {
  display: flex;
  font-size: 1.8rem;
  font-weight: 500;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .l-contact__mail_form_sec_table_row {
    font-size: 1rem;
    flex-direction: column;
  }
}
.l-contact__mail_form_sec_table_row + .l-contact__mail_form_sec_table_row {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .l-contact__mail_form_sec_table_row + .l-contact__mail_form_sec_table_row {
    margin-top: 1rem;
  }
}
.l-contact__mail_form_sec_table_row_head {
  width: 25%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-contact__mail_form_sec_table_row_head {
    width: auto;
  }
}
.l-contact__mail_form_sec_table_row_head_label {
  background-color: #0072BF;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.8rem;
  border-radius: 0.3rem;
  margin-left: 1rem;
  padding: 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .l-contact__mail_form_sec_table_row_head_label {
    font-size: 0.7rem;
    line-height: 1.1rem;
    border-radius: 0.2rem;
    margin-left: 0.5rem;
    padding: 0 0.2rem;
  }
}
.l-contact__mail_form_sec_table_row_desc {
  width: 75%;
}
@media screen and (max-width: 767px) {
  .l-contact__mail_form_sec_table_row_desc {
    width: 100%;
    margin-top: 0.7rem;
  }
}
.l-contact__mail_form_sec_table_row_desc .wpcf7-radio {
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-contact__mail_form_sec_table_row_desc .wpcf7-radio {
    flex-wrap: wrap;
    gap: 1rem 2rem;
    padding-bottom: 1rem;
  }
}
.l-contact__mail_form_sec_table_row_desc .wpcf7-radio .wpcf7-list-item {
  margin-left: 3.5rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-contact__mail_form_sec_table_row_desc .wpcf7-radio .wpcf7-list-item {
    margin-left: 0;
  }
}
.l-contact__mail_form_sec_table_row_desc .wpcf7-radio .wpcf7-list-item.first {
  margin-left: 0;
}
.l-contact__mail_form_sec_table_row_desc .wpcf7-radio .wpcf7-list-item input {
  margin-right: 0.5rem;
}
@media screen and (max-width: 767px) {
  .l-contact__mail_form_sec_table_row_desc .wpcf7-radio .wpcf7-list-item input {
    margin-right: 0.2rem;
  }
}
.l-contact__mail_form_sec_table_row_desc .wpcf7-textarea {
  background-color: #fff;
  width: 100%;
  resize: none;
  border-radius: 0.3rem;
  height: 28rem;
  line-height: 1.5;
  padding: 1rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-contact__mail_form_sec_table_row_desc .wpcf7-textarea {
    height: 14rem;
    padding: 1rem;
    border-radius: 0.15rem;
  }
}
.l-contact__mail_form_sec_table_row_desc .wpcf7-text {
  background-color: #fff;
  line-height: 5rem;
  border-radius: 0.3rem;
  padding: 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-contact__mail_form_sec_table_row_desc .wpcf7-text {
    padding: 0 1rem;
    border-radius: 0.15rem;
    line-height: 2.5rem;
  }
}
.l-contact__mail_form_sec_table_row_desc.w10 .wpcf7-text {
  width: 10rem;
}
@media screen and (max-width: 767px) {
  .l-contact__mail_form_sec_table_row_desc.w10 .wpcf7-text {
    width: 5rem;
  }
}
.l-contact__mail_form_sec_table_row_desc.w15 .wpcf7-text {
  width: 15rem;
}
@media screen and (max-width: 767px) {
  .l-contact__mail_form_sec_table_row_desc.w15 .wpcf7-text {
    width: 7.5rem;
  }
}
.l-contact__mail_form_sec_table_row_desc.w40 .wpcf7-text {
  width: 40rem;
}
@media screen and (max-width: 767px) {
  .l-contact__mail_form_sec_table_row_desc.w40 .wpcf7-text {
    width: 20rem;
  }
}
.l-contact__mail_form_sec_table_row_desc.w100 .wpcf7-text {
  width: 100%;
}
.l-contact__mail_form_agreement {
  margin-top: 5.5rem;
  padding-left: 25%;
  line-height: 1.8666666667;
}
@media screen and (max-width: 767px) {
  .l-contact__mail_form_agreement {
    margin-top: 2.5rem;
    line-height: 1.8571428571;
    padding-left: 0;
    font-size: 1rem;
  }
}
.l-contact__mail_form_agreement_link {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .l-contact__mail_form_agreement_link {
    font-size: 1rem;
  }
}
.l-contact__mail_form_agreement_check {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
.l-contact__mail_form_agreement_check .wpcf7-list-item {
  display: flex;
  align-items: center;
}
.l-contact__mail_form_agreement_check .wpcf7-list-item input {
  margin-right: 0.5rem;
}
.l-contact__mail_form_agreement_check .wpcf7-list-item::after {
  content: "必須";
  background-color: #0072BF;
  color: #fff;
  font-size: 1.3rem;
  line-height: 2rem;
  border-radius: 0.3rem;
  margin-left: 0.5rem;
  padding: 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .l-contact__mail_form_agreement_check .wpcf7-list-item::after {
    font-size: 0.9rem;
    line-height: 1.2rem;
    padding: 0 0.2rem;
    margin-left: 0.3rem;
  }
}
.l-contact__mail_form_agreement label {
  display: flex;
  align-items: center;
}
.l-contact__mail_form_submit {
  display: block;
  width: 15rem;
  line-height: 5rem;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  border-radius: 2.5rem;
  margin: 5rem auto 0;
  background-color: #0072BF;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-contact__mail_form_submit {
    font-size: 1rem;
    line-height: 3rem;
    width: 10rem;
    margin: 2.5rem auto 0;
  }
}
.l-contact__mail_form .wpcf7-not-valid-tip {
  margin-top: 1rem;
}
.l-contact__mail_form .wpcf7 form .wpcf7-response-output {
  margin: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-contact__mail_form .wpcf7 form .wpcf7-response-output {
    font-size: 1rem;
  }
}

/* ------------------------------------------
  投稿ページ
------------------------------------------ */
.l-postlist__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .l-postlist__filter {
    gap: 1.5rem;
  }
}
.l-postlist__filter_item {
  min-width: 7.3rem;
  text-align: center;
  color: #0072BF;
  font-size: 1.2rem;
  line-height: 2.5rem;
  border-radius: 1.25rem;
  border: 0.1rem solid;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .l-postlist__filter_item {
    min-width: 5.7rem;
    line-height: 1.9rem;
    font-size: 1rem;
  }
}
.l-postlist__filter_item.active {
  border: none;
  min-width: unset;
}
.l-postlist__list {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .l-postlist__list {
    margin-top: 2.5rem;
  }
}
.l-postlist__list_item {
  display: flex;
  padding: 2.5rem;
  border-top: 0.1rem dashed #C9CACA;
  color: #0072BF;
}
@media screen and (max-width: 767px) {
  .l-postlist__list_item {
    padding: 1rem 0;
    flex-direction: column;
  }
}
.l-postlist__list_item:last-child {
  border-bottom: 0.1rem dashed #C9CACA;
}
@media screen and (min-width: 768px) {
  .l-postlist__list_item {
    transition: 0.3s ease;
  }
  .l-postlist__list_item:hover {
    opacity: 1;
    color: #3E3A39;
  }
}
.l-postlist__list_item_left {
  display: flex;
  width: 20%;
}
@media screen and (max-width: 767px) {
  .l-postlist__list_item_left {
    width: auto;
  }
}
.l-postlist__list_item_left_icon {
  width: 2.5rem;
  height: 2.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .l-postlist__list_item_left_icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.l-postlist__list_item_left_info {
  font-weight: 500;
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .l-postlist__list_item_left_info {
    margin-left: 1rem;
  }
}
.l-postlist__list_item_left_info_date {
  font-size: 1.4rem;
  line-height: 1.6428571429;
}
@media screen and (max-width: 767px) {
  .l-postlist__list_item_left_info_date {
    font-size: 1rem;
    line-height: 1.5555555556;
  }
}
.l-postlist__list_item_left_info_cat {
  font-size: 1.2rem;
  min-width: 7.3rem;
  line-height: 2.5rem;
  border-radius: 1.25rem;
  border: 0.1rem solid;
  text-align: center;
  margin-top: 1rem;
  padding: 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .l-postlist__list_item_left_info_cat {
    font-size: 1rem;
    min-width: 4.4rem;
    line-height: 1.5rem;
    margin-top: 0.5rem;
  }
}
.l-postlist__list_item_right {
  width: 80%;
  line-height: 1.6428571429;
}
@media screen and (max-width: 767px) {
  .l-postlist__list_item_right {
    width: auto;
    line-height: 1.5555555556;
    margin-top: 0.5rem;
    font-size: 1rem;
    padding-left: 2.7rem;
  }
}

.l-infolist .l-postlist__list_item_left_icon {
  background-image: url(../img/common/icon_info.png);
}
@media screen and (min-width: 768px) {
  .l-infolist .l-postlist__list_item:hover .l-postlist__list_item_left_icon {
    background-image: url(../img/common/icon_info_hover.png);
  }
}

.l-medialist .l-postlist__list_item_left_icon {
  background-image: url(../img/common/icon_media.png);
}
@media screen and (min-width: 768px) {
  .l-medialist .l-postlist__list_item:hover .l-postlist__list_item_left_icon {
    background-image: url(../img/common/icon_media_hover.png);
  }
}

.l-postdetail__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}
.l-postdetail__head_cat {
  min-width: 7.3rem;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  border-radius: 1.25rem;
  line-height: 2.5rem;
  text-align: center;
  color: #0072BF;
  border: 0.1rem solid;
}
.l-postdetail__head_date {
  font-size: 1.4rem;
}

/* ------------------------------------------
  共通
------------------------------------------ */
.c-scroll_top {
  position: fixed;
  width: 12.8rem;
  right: 0;
  bottom: 10rem;
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 1002;
}
@media screen and (max-width: 767px) {
  .c-scroll_top {
    width: 10.6rem;
    bottom: -1rem;
    right: -2rem;
  }
}
.c-scroll_top:hover {
  opacity: 0.5;
  transform: translateY(-3rem);
}

.c-breadbrumb {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .c-breadbrumb {
    margin-bottom: 1.5rem;
  }
}
.c-breadbrumb ol {
  display: flex;
}
.c-breadbrumb ol li:not(:first-child) {
  font-size: 1.3rem;
  color: #9FA0A0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-breadbrumb ol li:not(:first-child) {
    font-size: 1rem;
  }
}
.c-breadbrumb ol li:not(:first-child)::before {
  content: "";
  width: 3rem;
  height: 0.1rem;
  background-color: #3E3A39;
  margin: 0 1rem;
}
@media screen and (max-width: 767px) {
  .c-breadbrumb ol li:not(:first-child)::before {
    width: 1.5rem;
    margin: 0 0.5rem;
  }
}
.c-breadbrumb ol li a {
  font-size: 1.3rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-breadbrumb ol li a {
    font-size: 1rem;
  }
}

.c-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    gap: 1rem;
  }
}
.c-pagination li.this {
  color: #fff;
  background-color: #0072BF;
  font-size: 1.8rem;
  width: 3rem;
  border-radius: 50%;
  height: 3rem;
  border: 0.1rem solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-pagination li.this {
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}
.c-pagination li a {
  color: #303030;
  font-size: 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .c-pagination li a {
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}
.c-pagination li a.prev {
  border: none;
  border-radius: 0;
  background-image: url(../img/common/icon_pagination_prev.png);
  background-repeat: no-repeat;
  background-size: 2rem 2rem;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .c-pagination li a.prev {
    background-size: 1.5rem 1.5rem;
  }
}
.c-pagination li a.next {
  border: none;
  border-radius: 0;
  background-image: url(../img/common/icon_pagination_next.png);
  background-repeat: no-repeat;
  background-size: 2rem 2rem;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .c-pagination li a.next {
    background-size: 1.5rem 1.5rem;
  }
}

.c-submv {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .c-submv {
    margin-bottom: 1rem;
  }
}
.c-submv.u-ptn1 {
  position: relative;
  overflow: hidden;
}
.c-submv.u-ptn1 .c-submv__figure {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(90deg, rgb(183, 204, 212) 30%, rgba(183, 204, 212, 0) 100%);
}
.c-submv.u-ptn1 .c-submv__figure_img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-submv.u-ptn1 .c-submv__inner {
  height: 60rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 64rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-submv.u-ptn1 .c-submv__inner {
    height: 30rem;
    width: 26rem;
    padding-bottom: 3rem;
    justify-content: flex-end;
  }
}
.c-submv.u-ptn1 .c-submv__inner .c-submv__title_sub {
  margin-top: 4.5rem;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .c-submv.u-ptn1 .c-submv__inner .c-submv__title_sub {
    margin-top: 2rem;
    line-height: 1.8888888889;
    width: 20rem;
  }
}
.c-submv.u-ptn2 {
  background-image: url(../img/common/bg_submv_ptn2.jpg);
}
.c-submv.u-ptn2 .c-submv__inner {
  height: 22.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-submv.u-ptn2 .c-submv__inner {
    height: 11rem;
  }
}
.c-submv.u-ptn2 .c-submv__inner .c-submv__title {
  color: #fff;
}
.c-submv.u-ptn3 {
  background-color: #E9F0F2;
}
.c-submv.u-ptn3 .c-submv__inner {
  height: 22.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-submv.u-ptn3 .c-submv__inner {
    height: 11rem;
  }
}
.c-submv.u-ptn3 .c-submv__inner .c-submv__title {
  color: #0072BF;
}
.c-submv__title_main {
  font-size: 5.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .c-submv__title_main {
    font-size: 2.1rem;
  }
}
.c-submv__title_sub {
  font-size: 2rem;
  line-height: 1.3;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-submv__title_sub {
    font-size: 1rem;
  }
}

/* ------------------------------------------
  テンプレートパーツ
------------------------------------------ */
.l-page__content p {
  margin-top: 3rem;
  margin-bottom: 3rem;
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .l-page__content p {
    font-size: 1rem;
  }
}
.l-page__content p.u-aligncenter {
  text-align: center;
}
.l-page__content p.u-alignright {
  text-align: right;
}
.l-page__content h2 {
  margin-top: 3rem;
  margin-bottom: 3rem;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #0072BF;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .l-page__content h2 {
    font-size: 2rem;
  }
}
.l-page__content h3 {
  margin-top: 3rem;
  margin-bottom: 3rem;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .l-page__content h3 {
    font-size: 1.4rem;
  }
}
.l-page__content h4 {
  margin-top: 3rem;
  margin-bottom: 3rem;
  color: #fff;
  text-align: center;
  min-width: 29rem;
  background-color: #4C9CD2;
  display: table;
  padding: 0.9rem 3rem;
  border-radius: 2.5rem;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .l-page__content h4 {
    font-size: 1.25rem;
    min-width: 14rem;
    padding: 0.4rem 2rem;
    border-radius: 1.2rem;
  }
}
.l-page__content h5 {
  font-size: 2.5rem;
  font-weight: 500;
  color: #0072BF;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .l-page__content h5 {
    font-size: 1.25rem;
  }
}
.l-page__content ul {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.l-page__content ul li {
  line-height: 2;
  position: relative;
  padding-left: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-page__content ul li {
    font-size: 1rem;
    padding-left: 0.8rem;
  }
}
.l-page__content ul li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: #3E3A39;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 1.5rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .l-page__content ul li::before {
    width: 0.3rem;
    height: 0.3rem;
    top: 0.8rem;
  }
}
.l-page__content a {
  text-decoration: underline;
  color: #4C9CD2;
}
@media screen and (max-width: 767px) {
  .l-page__content a {
    font-size: 1rem;
  }
}
.l-page__content a.l-page__link_button {
  display: table;
  margin: 3rem auto;
  text-decoration: none;
  border-radius: 2.7rem;
  font-size: 2rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding: 1.3rem 2.5rem;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .l-page__content a.l-page__link_button {
    font-size: 1.3rem;
    padding: 0.8rem 1.5rem;
    border-radius: 1.7rem;
  }
}
.l-page__content a.l-page__link_button.u-bg_white {
  color: #0072BF;
  border: 0.1rem solid #0072BF;
  padding: 1.1rem 2.5rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .l-page__content a.l-page__link_button.u-bg_white {
    padding: 0.6rem 1.5rem;
  }
}
.l-page__content a.l-page__link_button.u-bg_blue {
  background-color: #4C9CD2;
  color: #fff;
}
.l-page__content .table_scroll_sp {
  margin: 3rem auto;
}
@media screen and (max-width: 767px) {
  .l-page__content .table_scroll_sp {
    width: 100%;
    overflow-x: scroll;
    padding-bottom: 1rem;
  }
  .l-page__content .table_scroll_sp table {
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .l-page__content table {
    white-space: normal;
  }
}
.l-page__content table tr {
  border-top: 0.1rem solid #B5B5B6;
}
.l-page__content table tr:last-child {
  border-bottom: 0.1rem solid #B5B5B6;
}
.l-page__content table tr th {
  background-color: #b7ccd4;
  color: #fff;
  font-weight: 500;
  text-align: center;
  padding: 1.5rem;
  letter-spacing: 0.05em;
  font-size: 1.7rem;
  line-height: 1.3;
  border-right: 0.1rem solid #B5B5B6;
}
@media screen and (max-width: 767px) {
  .l-page__content table tr th {
    font-size: 1rem;
    padding: 1rem;
  }
}
.l-page__content table tr th:last-child {
  border-right: none;
}
.l-page__content table tr td {
  text-align: center;
  padding: 1.5rem;
  letter-spacing: 0.05em;
  font-size: 1.7rem;
  line-height: 1.3;
  border-right: 0.1rem solid #B5B5B6;
}
@media screen and (max-width: 767px) {
  .l-page__content table tr td {
    font-size: 1rem;
    padding: 1rem;
  }
  .l-page__content table tr td * {
    font-size: 1rem !important;
  }
}
.l-page__content table tr td:last-child {
  border-right: none;
}
.l-page__section {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .l-page__section {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
.l-page__section.u-bg_white > *:first-child {
  margin-top: 0;
}
.l-page__section.u-bg_white > *:last-child {
  margin-bottom: 0;
}
.l-page__section.u-bg_blue {
  padding: 6.5rem 0;
  background-color: #E5F1F9;
}
@media screen and (max-width: 767px) {
  .l-page__section.u-bg_blue {
    padding: 2.5rem 0;
  }
}
.l-page__section.u-bg_blue > *:first-child {
  margin-top: 0;
}
.l-page__section.u-bg_blue > *:last-child {
  margin-bottom: 0;
}
.l-page__row {
  display: flex;
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
  margin: 3rem 0;
}
@media screen and (max-width: 767px) {
  .l-page__row {
    flex-direction: column;
    gap: 3rem 0;
  }
  .l-page__row.u-reverse {
    flex-direction: column-reverse;
  }
}
.l-page__row_col {
  width: calc((100% - 3.5rem) / 2);
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .l-page__row_col {
    width: auto;
  }
}
.l-page__row_col > *:first-child {
  margin-top: 0;
}
.l-page__row_col > *:last-child {
  margin-bottom: 0;
}
.l-page__row_col img {
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .l-page__row_col img {
    border-radius: 1rem;
  }
}
.l-page__frame {
  border: 0.1rem solid #0072BF;
  background-color: #fff;
  border-radius: 2rem;
  padding: 3rem 3.5rem;
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .l-page__frame {
    border-radius: 1rem;
    padding: 1rem 1.5rem;
  }
}
.l-page__frame > *:first-child {
  margin-top: 0;
}
.l-page__frame > *:last-child {
  margin-bottom: 0;
}
.l-page__link2 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem auto;
}
@media screen and (max-width: 767px) {
  .l-page__link2 {
    flex-direction: column;
    align-items: center;
    gap: 2rem 0;
  }
}
.l-page__link2_item {
  width: calc((100% - 7rem) / 2);
  border-right: 0.1rem solid #C9CACA;
  border-bottom: 0.1rem solid #C9CACA;
  padding-right: 5rem;
  height: 9rem;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s ease;
  background-image: url(../img/page/icon_link2.png);
  background-repeat: no-repeat;
  background-size: 2rem 2rem;
  background-position: right 2rem center;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: #0072BF !important;
}
@media screen and (max-width: 767px) {
  .l-page__link2_item {
    width: 29rem;
    height: 4.5rem;
    font-size: 1rem;
    background-size: 1rem 1rem;
    background-position: right 1.5rem center;
  }
}
.l-page__link2_item:hover {
  background-image: url(../img/page/icon_link2_hover.png);
  color: #3E3A39 !important;
  opacity: 1;
}
.l-page__iframe_content {
  aspect-ratio: 1225/650;
  margin: 3rem auto;
}
.l-page__iframe_content iframe {
  width: 100%;
  height: 100%;
}
.l-page__gallery {
  display: flex;
}
.l-page__gallery.u-col2 {
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .l-page__gallery.u-col2 {
    gap: 1.5rem 0;
    flex-direction: column;
  }
}
.l-page__gallery.u-col2 .l-page__gallery_item {
  width: calc((100% - 3.5rem) / 2);
}
@media screen and (max-width: 767px) {
  .l-page__gallery.u-col2 .l-page__gallery_item {
    width: 100%;
    border-radius: 0.8rem;
  }
}
.l-page__gallery.u-col2 .l-page__gallery_item_fig {
  aspect-ratio: 595/425;
}
@media screen and (max-width: 767px) {
  .l-page__gallery.u-col2 .l-page__gallery_item_fig {
    width: 100%;
    border-radius: 0.8rem;
    aspect-ratio: 400/240;
  }
}
.l-page__gallery.u-col2 .l-page__gallery_item_fig_cap {
  padding: 0 1.5rem 1.5rem;
  font-size: 1.1rem;
}
.l-page__gallery.u-col3 {
  -moz-column-gap: 1.2rem;
       column-gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .l-page__gallery.u-col3 {
    gap: 1.3rem 0;
    flex-direction: column;
    align-items: center;
  }
}
.l-page__gallery.u-col3 .l-page__gallery_item {
  width: calc((100% - 2.4rem) / 3);
}
@media screen and (max-width: 767px) {
  .l-page__gallery.u-col3 .l-page__gallery_item {
    width: 60%;
    border-radius: 0.7rem;
  }
}
.l-page__gallery.u-col3 .l-page__gallery_item_fig {
  aspect-ratio: 400/285;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-page__gallery.u-col3 .l-page__gallery_item_fig {
    aspect-ratio: 200/140;
  }
}
.l-page__gallery.u-col3 .l-page__gallery_item_fig_cap {
  padding: 0 1rem 1rem;
}
.l-page__gallery.u-col4 {
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .l-page__gallery.u-col4 {
    gap: 1.3rem 2rem;
    flex-wrap: wrap;
  }
}
.l-page__gallery.u-col4 .l-page__gallery_item {
  width: calc((100% - 10.5rem) / 4);
}
@media screen and (max-width: 767px) {
  .l-page__gallery.u-col4 .l-page__gallery_item {
    width: calc((100% - 2rem) / 2);
    border-radius: 0.8rem;
  }
}
.l-page__gallery.u-col4 .l-page__gallery_item_fig {
  aspect-ratio: 280/200;
}
@media screen and (max-width: 767px) {
  .l-page__gallery.u-col4 .l-page__gallery_item_fig {
    aspect-ratio: 155/110;
  }
}
.l-page__gallery.u-col4 .l-page__gallery_item_fig_cap {
  padding: 0 0.5rem 0.8rem;
}
.l-page__gallery_item {
  border-radius: 1.5rem;
  overflow: hidden;
}
.l-page__gallery_item_fig {
  position: relative;
  overflow: hidden;
}
.l-page__gallery_item_fig::after {
  display: block;
  position: absolute;
  content: "";
  bottom: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(35, 24, 21, 0) 50%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 0;
}
.l-page__gallery_item_fig_img {
  transition: 0.3s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-page__gallery_item_fig_cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  line-height: 1.3;
  color: #fff;
  font-size: 1.5rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-page__gallery_item_fig_cap {
    font-size: 1rem;
  }
}
.l-page__gallery_item:hover {
  opacity: 1;
}
.l-page__gallery_item:hover .l-page__gallery_item_fig_img {
  transform: scale(1.3, 1.3);
}

/* ------------------------------------------
ここから下は初期CSSのカスタマイズ用
------------------------------------------ */

/* News下のタイトル改行調整 */

@media screen and (max-width: 767px) {
  .l-top__guideline_head {
    display: block;
    white-space: normal;
    text-align: center;
  }
  .l-top__guideline_head_color1,
  .l-top__guideline_head_small {
    display: inline;
  }
  .l-top__guideline_head_color2 {
    display: block;
    margin-top: 0.2em;
  }
}

/* スライドショーのテキスト位置調整 */

@media screen and (max-width: 767px) {
  .l-mv__text {
    top: 50%;
    transform: translateY(-50%);
  }
}

/* News下のボックスの色を統一 */

.l-top__guideline_content_item.color1:hover .l-top__guideline_content_item_inner {
  background-color: #F2F8FC;
}
.l-top__guideline_content_item.color2:hover .l-top__guideline_content_item_inner {
  background-color: #FEF5F7;
}

/* ギャラリーが連続する際の余白を訂正 */

.l-page__gallery.u-col2 {
  row-gap: 1.5rem;
}

.l-page__gallery.u-col3 {
  row-gap: 1.2rem;
}

.l-page__gallery.u-col4 {
  row-gap: 3.5rem;
}

.l-page__gallery + .l-page__gallery {
  margin-top: 2rem;
}

@media screen and (max-width: 767px) {
  .l-page__gallery.u-col2 {
    row-gap: 1.5rem;
  }

  .l-page__gallery.u-col3 {
    gap: 1.3rem 0;
  }

  .l-page__gallery.u-col4 {
    row-gap: 1.3rem;
  }

  .l-page__gallery + .l-page__gallery {
    margin-top: 1.5rem;
  }
}

/* 箇条書きリストの太字強制を解除 */

.l-page__content ul li {
  font-weight: normal;
}

/* スマホ表示の際のハンバーガーメニュー開始位置調整 */

@media screen and (max-width: 767px) {
  .l-header__nav {
    top: 9rem;
    height: calc(100dvh - 9rem);
  }
}

/* フッター右リンク：PCは3列で折り返し */

@media screen and (min-width: 768px) {
  .l-footer__content {
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 4rem;
  }

  .l-footer__content_right {
    margin-left: 0;
    padding-bottom: 1.5rem;
    flex: 0 0 clamp(520px, 45vw, 680px);
  }

  .l-footer__content_right_link {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 5rem;
    row-gap: 1.2rem;
  }

  .l-footer__content_right_link_item {
    width: 100%;
  }

  .l-footer__content_right_link_item { 
    word-break: break-word;
  }
}

/* 各まとまりの“最初の”ギャラリーにだけ上余白を追加（2個目以降は対象外） */

.l-page__gallery:not(.l-page__gallery + .l-page__gallery) {
  margin-top: 6rem;
}

@media screen and (max-width: 767px) {
  .l-page__gallery:not(.l-page__gallery + .l-page__gallery) {
    margin-top: 3rem;
  }
}

/* ギャラリー画像のホバー拡大を無効化 */

.l-page__gallery_item:hover .l-page__gallery_item_fig_img {
  transform: none !important;
}

/* h5 / h6 の下に共通の余白を付与 */

.l-page__content h5,
.l-page__content h6 {
  margin: 4rem 0 1.5rem;
  line-height: 1.3;
}

/* h6の基本スタイル（未定義だったので作成） */

.l-page__content h6 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #0072BF;
}

/* 数字の箇条書き（ol） */

.l-page__content ol {
  margin-top: 3rem;
  margin-bottom: 3rem;
  counter-reset: cnt;
}

.l-page__content ol li {
  position: relative;
  line-height: 2;
  padding-left: 2rem;
  font-weight: normal;
  list-style: none;
}

.l-page__content ol li::before {
  counter-increment: cnt;
  content: counter(cnt) ".";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 2;
  color: #3E3A39;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .l-page__content ol li {
    font-size: 1rem;
    padding-left: 1.2rem;
  }
  .l-page__content ol li::before {
    line-height: 1.6;
  }
}

/* テーブル縦罫の安定描画：内部は出す／左右外枠は消す */

.l-page__content table {
  border-collapse: separate !important;
  border-spacing: 0 !important;

  position: relative;

  --table-bg: #fff;
}

.l-page__content table tr { border: none !important; }

.l-page__content table th,
.l-page__content table td {
  border: none !important;
  border-left: 0.1rem solid #B5B5B6 !important;
  border-top:  0.1rem solid #B5B5B6 !important;
}

.l-page__content table tr:last-child > * {
  border-bottom: 0.1rem solid #B5B5B6 !important;
}

.l-page__content table::before,
.l-page__content table::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--table-bg);
  pointer-events: none;
}
.l-page__content table::before { left: 0; }
.l-page__content table::after  { right: 0; }

/* rowspanで最下段の罫線が抜ける対策 */

.l-page__content table {
  border-bottom: 0.1rem solid #B5B5B6 !important;
}

.l-page__content table tr:last-child > * {
  border-bottom: none !important;
}

/* インラインリンクの文字サイズを親から継承させる（ボタン風リンクは除外） */

.l-page__content :where(p, li, h1, h2, h3, h4, h5, h6)
  a:not(.l-page__link_button):not(.l-page__link2_item) {
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: inherit;
  letter-spacing: inherit;
  /* 必要なら色も本文に揃える場合は下行を有効化 */
  /* color: inherit; */
}

@media screen and (max-width: 767px) {
  .l-page__content a:not(.l-page__link_button):not(.l-page__link2_item) {
    font-size: inherit !important;
    line-height: inherit !important;
  }
}

/* class="table-customize" 追加で記事内テーブルの“テーマ装飾”を個別に無効化する */

.l-page__content table.table-customize,
.l-page__content table.table-customize :is(caption, thead, tbody, tfoot, tr, th, td) {
  all: revert !important;
}

.l-page__content table.table-customize::before,
.l-page__content table.table-customize::after {
  content: none !important;
}

.l-page__content table.table-customize {
  border-collapse: revert !important;
  border-spacing: revert !important;
}

.l-page__content table.table-customize :is(th, td) {
  vertical-align: revert !important;
}

/* ヘッダーロゴ：small2（= small の 1.2倍） */
.l-header__inner_logo_text_bottom_small2 {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: var(--logo-small2-line-height, 1.26);
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .l-header__inner_logo_text_bottom_small2 {
    --logo-small2-nudge-sp: -0.25em;
    font-size: 0.9rem;
    line-height: var(--logo-small2-line-height-sp, 1.26);
    transform: translateY(var(--logo-small2-nudge-sp));
    margin-bottom: calc(var(--logo-small2-nudge-sp) * -1);
    will-change: transform;
  }
}

/* ギャラリー画像の黒グラデーションを下30%だけ、やや薄めに */

.l-page__gallery_item_fig::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 75%,
    rgba(0, 0, 0, 0.5) 100%
  ) !important;
}

/* 画像のスクロールパン */

.l-page__gallery_item_fig_img {
  will-change: object-position;
}

.l-page__gallery_item_fig.js-pan > .l-page__gallery_item_fig_img {
  object-position: center 100% !important;
}

/* PC：グローバルメニューの文字を一回り大きく＆ボールド、折り返し防止 */

@media screen and (min-width: 768px) {
  .l-header__nav_menu_item_link,
  .l-header__nav.active_menu_item_link {
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    white-space: nowrap;
  }
}

/* SP：グローバルメニュー（上位項目）を一回り大きく＆ボールド、基本は折り返しなし */

@media screen and (max-width: 767px) {
  .l-header__nav_menu_item_link {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* カテゴリーバッジの楕円が文字より小さい問題を修正 */

.l-postdetail__head_cat,
.l-top__post_list_item_left_info_cat,
.l-postlist__list_item_left_info_cat {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 .9em !important;
  white-space: nowrap !important;
  border-radius: 9999px !important;
}

@media screen and (max-width: 767px) {
  .l-top__post_list_item_left_info_cat,
  .l-postlist__list_item_left_info_cat {
    padding: 0 .7em !important;
  }
}

/* フッターリンク：2行時の読みやすさ改善 */

.l-footer__content_right_link_item {
  line-height: 1.4; /
}
@supports (text-wrap: balance) {
  .l-footer__content_right_link_item {
    text-wrap: balance;
  }
}

.l-footer__content_right_link_item::after {
  bottom: -0.1rem;
}

@media screen and (min-width: 1024px) {
  .l-footer__content_right {
    flex: 0 0 clamp(560px, 50vw, 760px);
  }

  .l-footer__content_right_link {
    column-gap: 3.6rem;
  }
}

.l-footer__content_right_link_item {
  hyphens: auto;
  overflow-wrap: anywhere;
}

/* スマホで電話番号やFAX番号が拡大されないようにする */

.l-footer__content_left_address {
  -webkit-text-size-adjust: 100%;
}

.l-footer__content_left_address a[href^="tel"] {
  color: inherit;
  text-decoration: none;
  font-size: inherit;
  pointer-events: none;
}

/* 見出しの階層の逆転解消（SP向け） */

@media screen and (max-width: 767px) {
  .l-page__content h6 {
    font-size: 1.1rem;
  }
}

/* 表が原因でページ幅が縮むのを防止し、横スクロール可能にする */

@media screen and (max-width: 767px) {
  .l-page__content table {
    display: block;
    width: 100% !important;
    max-width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }

  .l-page__content table th,
  .l-page__content table td {
    white-space: nowrap;
    word-break: keep-all;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
  }

  .l-page__content table img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
  }
}
