@charset "UTF-8";
/*
 * Fonts
 * -------------------------------------------------------------------
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  display: block;
  width: 100%;
}

html {
  font-size: 10px;
}

html.no-scroll {
  overflow: hidden !important;
  height: 100vh;
}

@media (max-width: 1500px) {
  html {
    font-size: 0.7vw;
  }
}

@media (max-width: 900px) {
  html {
    font-size: 10px;
  }
}

body {
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, 游ゴシック体, "ヒラギノ角ゴ Pro W3", メイリオ, sans-serif;
  color: #111111;
  background-color: #f5f4f1;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  letter-spacing: .04em;
  font-weight: 400;
  position: relative;
}

@media (max-width: 900px) {
  body {
    font-size: 1.4rem;
    font-weight: 400;
  }
}

body.no-scroll {
  overflow: hidden;
  height: 100%;
}

.pc {
  display: block;
}

@media (max-width: 900px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none;
}

@media (max-width: 900px) {
  .sp {
    display: block !important;
  }
}

sup {
  font-size: 0.6em;
}

.scroll-target {
  scroll-margin-top: 20.0rem;
}

@media (max-width: 900px) {
  .scroll-target {
    scroll-margin-top: 8.0rem;
  }
}

a {
  text-decoration: none;
  transition: all .4s ease;
  color: #111111;
  overflow-wrap: anywhere;
  word-break: break-word;
}

a.external {
  position: relative;
  display: flex;
  align-items: center;
}

a.external::after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 0.4rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/common/icon-external.png");
}

.palt {
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .palt {
    letter-spacing: 0.03em;
  }
}

/*フロートバナー*/
/*ヘッダー*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  background-color: transparent;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .header.is-nav-open {
    background-color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }
}

.header .sp-menu__icon {
  display: none;
}

@media (max-width: 900px) {
  .header .sp-menu__icon {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.8rem;
    width: 8.0rem;
    height: 4.0rem;
    cursor: pointer;
    border: 0.1rem solid transparent;
    border-radius: 0.6rem;
    padding: 1.2rem 1.9rem;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #ff7f32, #ffa956) border-box;
  }
}

@media (max-width: 900px) {
  .header .sp-menu__icon .sp-menu__bar {
    width: 100%;
    height: 2px;
    background-color: #111111;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .header .sp-menu__icon .sp-menu__bar:nth-child(1) {
    width: 4.0rem;
  }
  .header .sp-menu__icon .sp-menu__bar:nth-child(2) {
    width: 3.0rem;
  }
}

@media (max-width: 900px) {
  .header .sp-menu__icon.is-active .sp-menu__bar:nth-child(1) {
    width: 4.0rem;
    transform: translateY(5px) rotate(18deg);
  }
  .header .sp-menu__icon.is-active .sp-menu__bar:nth-child(2) {
    width: 4.0rem;
    transform: translateY(-5px) rotate(-18deg);
  }
}

.header .inner {
  max-width: 1500px;
  width: 95%;
  margin: 0 auto;
  padding: 2.0rem 0;
}

@media (max-width: 900px) {
  .header .inner {
    padding: 1.3rem 0;
    width: 90%;
  }
}

.header .inner .header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .inner .site_logo a {
  display: block;
}

.header .inner .site_logo a img {
  width: 17.0rem;
  height: auto;
}

@media (max-width: 900px) {
  .header .inner .site_logo a img {
    width: 13.0rem;
  }
}

.header .inner .gnav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .header .inner .gnav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 1.6rem 5% 2.4rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    overflow: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }
}

.header .inner .gnav-list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .header .inner .gnav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }
}

.header .inner .gnav-list_item {
  position: relative;
}

@media (max-width: 900px) {
  .header .inner .gnav-list_item {
    width: 100%;
  }
}

.header .inner .gnav-list_item .item_link {
  color: #111111;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .header .inner .gnav-list_item .item_link {
    display: block;
    width: 100%;
    padding: 0.8rem 0;
  }
}

.header .inner .gnav-list_item .dropdown_nav {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.8rem);
  transform: translateX(-50%);
  min-width: 18rem;
  padding: 1.2rem 1.6rem;
  background-color: #fff;
  border-radius: 0.8rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.header .inner .gnav-list_item .dropdown_nav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1.0rem;
  height: 0.8rem;
}

@media (max-width: 900px) {
  .header .inner .gnav-list_item .dropdown_nav::before {
    content: none;
  }
}

@media (max-width: 900px) {
  .header .inner .gnav-list_item .dropdown_nav {
    position: static;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 1.6rem;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
  }
}

.header .inner .gnav-list_item .dropdown_nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.header .inner .gnav-list_item .dropdown_nav a {
  display: block;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #111111;
  white-space: nowrap;
}

@media (min-width: 901px) {
  .header .inner .gnav-list_item:hover > .dropdown_nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0.2rem);
  }
}

@media (max-width: 900px) {
  .header .inner .gnav-list_item.is-open > .dropdown_nav {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 900px) {
  .header .inner .gnav .btn_box {
    margin-top: 5.0rem;
  }
}

.header .inner .gnav .btn_box_link {
  border-radius: 2.5rem;
}

.header .inner .gnav .btn_box_link .wrap {
  gap: 1.0rem;
  border-radius: 2.5rem;
  padding: 0.8rem 1.8rem 0.8rem 1.0rem;
}

.header .inner .gnav .btn_box_link .mail_icon {
  width: 3.0rem;
  height: 3.0rem;
}

.header .inner .gnav .btn_box_link .mail_icon img {
  width: 1.6rem;
  height: auto;
}

.header .inner .gnav .btn_box_link .text {
  color: #1e1e1e;
  font-size: 1.6rem;
}

@media (max-width: 900px) {
  .header.is-nav-open .gnav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/*フッター*/
.footer {
  background-color: #171717;
  color: #fff;
}

.footer .top-nav {
  max-width: 1352px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 4.0rem;
}

@media (max-width: 900px) {
  .footer .top-nav {
    padding-bottom: 5.0rem;
  }
}

.footer .top-nav__main {
  display: flex;
  margin-bottom: 10.0rem;
  padding-top: 10.0rem;
}

@media (max-width: 900px) {
  .footer .top-nav__main {
    flex-direction: column;
    width: 90%;
    margin: 0 auto 8.0rem;
    padding-top: 4.0rem;
  }
}

.footer .top-nav__main .nav_item {
  width: calc(100% / 5);
  padding-top: 2.2rem;
}

@media (max-width: 900px) {
  .footer .top-nav__main .nav_item {
    width: 100%;
    padding-top: 1.5rem;
    padding-bottom: 1.7rem;
  }
}

.footer .top-nav__main .nav_item:not(:last-child) {
  border-right: 0.1rem solid rgba(244, 244, 239, 0.2);
}

@media (max-width: 900px) {
  .footer .top-nav__main .nav_item:not(:last-child) {
    border-right: none;
    border-bottom: 0.1rem solid rgba(244, 244, 239, 0.2);
  }
}

.footer .top-nav__main .nav_item:not(:first-child) {
  padding-left: 2.5rem;
}

@media (max-width: 900px) {
  .footer .top-nav__main .nav_item:not(:first-child) {
    padding-left: 0;
  }
}

.footer .top-nav__main .nav_item .parent-link a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  line-height: 1;
  display: block;
}

@media (max-width: 900px) {
  .footer .top-nav__main .nav_item .parent-link a {
    font-size: 1.6rem;
    letter-spacing: 0.03em;
  }
}

.footer .top-nav__main .nav_item .child-link {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin-top: 1.8rem;
}

@media (max-width: 900px) {
  .footer .top-nav__main .nav_item .child-link {
    gap: 2.0rem;
  }
}

.footer .top-nav__main .nav_item .child-link a {
  color: #b6b6b6;
  font-size: 1.3rem;
  line-height: 1;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 0.3rem;
}

@media (max-width: 900px) {
  .footer .top-nav__main .nav_item .child-link a {
    font-size: 1.3rem;
    letter-spacing: 0.035rem;
  }
}

.footer .top-nav__main .nav_item .child-link a::before {
  content: "";
  position: relative;
  width: 0.6rem;
  height: 0.6rem;
  border-left: 0.095rem solid currentColor;
  border-bottom: 0.095rem solid currentColor;
  transform: translateY(-50%);
}

.footer .top-nav__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer .top-nav__info .info_box {
  display: flex;
  flex-direction: column;
  gap: 4.0rem;
}

@media (max-width: 900px) {
  .footer .top-nav__info .info_box {
    gap: 1.7rem;
  }
}

.footer .top-nav__info .info_box .site_name {
  font-size: 4.0rem;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .footer .top-nav__info .info_box .site_name {
    font-size: 2.6rem;
  }
}

.footer .bottom-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1352px;
  width: 90%;
  margin: 0 auto;
  padding: 3.0rem 0;
  position: relative;
}

@media (max-width: 900px) {
  .footer .bottom-nav {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 4.0rem;
    padding: 2.7rem 0;
  }
}

.footer .bottom-nav::before {
  content: "";
  width: 100vw;
  height: 0.1rem;
  background-color: rgba(244, 244, 239, 0.2);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.footer .bottom-nav .copyright p {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .footer .bottom-nav .copyright p {
    font-size: 1.2rem;
  }
}

.footer .bottom-nav .other-link {
  flex-shrink: 0;
}

.footer .bottom-nav .other-link__list {
  display: flex;
  align-items: center;
  gap: 1.0rem 2.0rem;
}

@media (max-width: 900px) {
  .footer .bottom-nav .other-link__list {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1.5rem 3.0rem;
  }
}

@media (max-width: 900px) {
  .footer .bottom-nav .other-link__item {
    width: calc(100% / 2 - 1.5rem);
  }
}

.footer .bottom-nav .other-link__item .link {
  display: flex;
  color: #fff;
  font-size: 1.3rem;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .footer .bottom-nav .other-link__item .link {
    line-height: 1;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
  }
}

@media (hover: hover) and (pointer: fine) {
  .footer .bottom-nav .other-link__item .link:hover {
    opacity: 0.7;
  }
}

/*ページトップ*/
.page_top {
  display: flex;
  align-items: center;
  gap: 1.0rem;
  margin-right: -4rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .page_top {
    margin-right: 0;
    gap: 0.5rem;
  }
}

.page_top .text {
  color: #fff;
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .page_top .text {
    font-size: 1.5rem;
    letter-spacing: 0.02em;
  }
}

.page_top .emoji {
  font-family: "Noto Color Emoji", sans-serif;
  font-size: 3.0rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .page_top .emoji {
    font-size: 2.3rem;
  }
}

/*CAT エリア*/
.footer-cat {
  border-radius: 8.0rem 8.0rem 0 0;
  overflow: hidden;
  position: relative;
  background: url(../img/common/footer-cat-top_bg.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-color: #373737;
  background-blend-mode: overlay;
  height: 80.0rem;
}

@media (max-width: 900px) {
  .footer-cat {
    border-radius: 4.0rem 4.0rem 0 0;
    height: 45.0rem;
    background: url(../img/common/footer-cat-top_bg_sp.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-color: #373737;
    background-blend-mode: overlay;
  }
}

.footer-cat::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  background: linear-gradient(to top, #171717 0%, rgba(23, 23, 23, 0) 100%);
  pointer-events: none;
}

.footer-cat__inner {
  height: 100%;
}

.footer-cat__block {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

.footer-cat__block .catch-box {
  position: relative;
}

@media (max-width: 900px) {
  .footer-cat__block .catch-box {
    width: 90%;
    margin: 0 auto;
  }
}

.footer-cat__block .catch_txt {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

@media (max-width: 900px) {
  .footer-cat__block .catch_txt {
    font-size: 2.7rem;
    line-height: 1.6;
  }
}

.footer-cat__block .catch_subtxt {
  color: #fff;
  font-size: 2.1rem;
  line-height: 1.5;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .footer-cat__block .catch_subtxt {
    font-size: 1.4rem;
    margin-top: 1.0rem;
  }
}

.footer-cat__block .btn_box {
  margin-top: 5.0rem;
}

@media (max-width: 900px) {
  .footer-cat__block .btn_box {
    margin-top: 7.0rem;
  }
}

.footer-cat__block .btn_box_link {
  border-radius: 6.0rem;
  border: 0.4rem solid transparent;
}

@media (max-width: 900px) {
  .footer-cat__block .btn_box_link {
    border: 0.3rem solid transparent;
    border-radius: 3.2rem;
  }
}

.footer-cat__block .btn_box_link .wrap {
  border-radius: 5.0rem;
  padding: 1.6rem 4.2rem 1.6rem 1.6rem;
  gap: 1.7rem;
}

@media (max-width: 900px) {
  .footer-cat__block .btn_box_link .wrap {
    border-radius: 2.8rem;
    padding: 0.9rem 5.0rem 0.9rem 1.0rem;
    gap: 1.2rem;
  }
}

.footer-cat__block .btn_box_link .wrap .mail_icon {
  width: 6.0rem;
  height: 6.0rem;
}

@media (max-width: 900px) {
  .footer-cat__block .btn_box_link .wrap .mail_icon {
    width: 3.8rem;
    height: 3.8rem;
  }
}

.footer-cat__block .btn_box_link .wrap .mail_icon img {
  width: 3.2rem;
}

@media (max-width: 900px) {
  .footer-cat__block .btn_box_link .wrap .mail_icon img {
    width: 2.0rem;
  }
}

.footer-cat__block .btn_box_link .wrap .text {
  font-size: 2.0rem;
}

@media (max-width: 900px) {
  .footer-cat__block .btn_box_link .wrap .text {
    font-size: 1.6rem;
  }
}

.footer-cat__block .cat-svg {
  position: absolute;
  bottom: -5rem;
  right: -20rem;
  width: 64.0rem;
  height: 23.0rem;
}

@media (max-width: 900px) {
  .footer-cat__block .cat-svg {
    width: 17.8rem;
    height: auto;
    right: -1.3rem;
    top: 12.5rem;
    bottom: initial;
  }
}

.footer-cat__block #catsvg {
  max-width: 64.0rem;
  height: auto;
  transform: rotate(-8.888deg);
  transform-origin: 50% 50%;
}

/*下層 ページタイトル*/
/*パンくず*/
.breadcrumb {
  position: relative;
  padding: 2.0rem 8.0rem 0 8.0rem;
  z-index: 2;
}

@media (max-width: 900px) {
  .breadcrumb {
    padding: 1.5rem 3%;
  }
}

.breadcrumb_list {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

@media (max-width: 900px) {
  .breadcrumb_list {
    gap: 0.5rem 5px;
    flex-wrap: wrap;
  }
}

.breadcrumb_list_item {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 900px) {
  .breadcrumb_list_item {
    gap: 4px;
  }
}

.breadcrumb_list_item:not(:last-child)::after {
  content: "";
  width: 0.7rem;
  height: 1.1rem;
  margin-top: 1px;
  position: relative;
  background: #D1D1D1;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7 11"><path d="M0.876064 10.4965C0.622358 10.4965 0.377401 10.3916 0.202431 10.1816C-0.103765 9.81416 -0.060023 9.26301 0.316162 8.94806L4.76039 5.24745L0.316162 1.54685C-0.0512745 1.2319 -0.103765 0.680749 0.202431 0.313312C0.508628 -0.0541237 1.06853 -0.106615 1.43597 0.199582L6.68505 4.57382C6.88627 4.74004 7 4.985 7 5.24745C7 5.50991 6.88627 5.75487 6.68505 5.92109L1.43597 10.2953C1.26975 10.4353 1.07728 10.4965 0.876064 10.4965Z"/></svg>') no-repeat center/contain;
}

@media (max-width: 900px) {
  .breadcrumb_list_item:not(:last-child)::after {
    width: 0.4rem;
    height: 0.8rem;
    margin-top: 0;
  }
}

.breadcrumb_list_item .txt {
  font-size: 1.3rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .breadcrumb_list_item .txt {
    font-size: 0.8rem;
  }
}

.breadcrumb_list_item .txt.link_txt {
  color: #ff9c00;
}

.breadcrumb_list_item .txt.link_txt:hover {
  opacity: 0.6;
}

/*下層 ページネーション*/
.wp-pagenavi {
  margin-top: 6.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  font-family: "Outfit", sans-serif;
  font-size: 2.0rem;
  transition: all .4s ease;
}

@media (max-width: 900px) {
  .wp-pagenavi {
    margin-top: 3.4rem;
    font-size: 1.5rem;
    gap: 1.3rem;
  }
}

.wp-pagenavi .page {
  font-weight: 500;
  color: #fff;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  border: 0.1rem solid #fff;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-pagenavi .page:hover {
  opacity: 0.7;
}

@media (max-width: 900px) {
  .wp-pagenavi .page {
    width: 4.0rem;
    height: 4.0rem;
  }
}

.wp-pagenavi .current {
  font-weight: 700;
  background-color: #ff9c00;
  border: 0.1rem solid #ff9c00;
}

.wp-pagenavi .current:hover {
  opacity: 1;
}

.wp-pagenavi .extend {
  color: #fff;
}

.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  border: 0.1rem solid #fff;
  aspect-ratio: 1 / 1;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  transition: all .4s ease;
}

.wp-pagenavi .previouspostslink:hover, .wp-pagenavi .nextpostslink:hover {
  opacity: 0.7;
}

@media (max-width: 900px) {
  .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
    font-size: 1.2rem;
    padding: 0.6rem 1.0rem;
    width: 4.0rem;
    height: 4.0rem;
  }
}

.wp-pagenavi .previouspostslink .arrow_svg, .wp-pagenavi .nextpostslink .arrow_svg {
  stroke: #fff;
  width: 2.2rem;
  transition: all .4s ease;
}

@media (max-width: 900px) {
  .wp-pagenavi .previouspostslink .arrow_svg, .wp-pagenavi .nextpostslink .arrow_svg {
    width: 1.8rem;
  }
}

.wp-pagenavi .previouspostslink {
  margin-right: 1.0rem;
}

@media (max-width: 900px) {
  .wp-pagenavi .previouspostslink {
    margin-right: 0.5rem;
    flex-direction: column-reverse;
  }
}

.wp-pagenavi .nextpostslink {
  margin-left: 1.0rem;
}

@media (max-width: 900px) {
  .wp-pagenavi .nextpostslink {
    margin-left: 0.5rem;
    flex-direction: column;
  }
}

/*下層 追従サイドメニュー*/
.main_area {
  position: relative;
}

.main_area .side_navBox {
  padding-bottom: 10.0rem;
}

@media (max-width: 900px) {
  .main_area .side_navBox {
    display: block;
    position: fixed;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: #f1f4f9;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 900;
  }
  .main_area .side_navBox .side_navBox_wrap {
    position: relative;
    top: auto;
    padding: 2rem;
    overflow-y: auto;
    height: 100%;
  }
  .main_area .side_navBox.is-open {
    transform: translateX(0);
  }
}

.main_area .side_navBox .side_navBox_wrap {
  position: sticky;
  top: 20.0rem;
}

@media (max-width: 900px) {
  .main_area .side_navBox .side_navBox_wrap {
    padding: 10.0rem 2.8rem !important;
  }
}

/*ボタン パーツ*/
.btn_box_link {
  display: inline-flex;
  align-items: center;
  position: relative;
  border-radius: 4.0rem;
  border: 0.2rem solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(-45deg, #ff890b 0%, #ffbe34 100%) border-box;
}

@media (max-width: 900px) {
  .btn_box_link {
    border-radius: 3.5rem;
  }
}

.btn_box_link .wrap {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  border-radius: 3.0rem;
  background-color: #fff;
  padding: 0.8rem 3.0rem 0.8rem 1.0rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .btn_box_link .wrap {
    gap: 1.0rem;
    border-radius: 2.5rem;
    padding: 0.6rem 3.0rem 0.6rem 0.8rem;
  }
}

.btn_box_link .mail_icon {
  width: 4.0rem;
  height: 4.0rem;
  border-radius: 50%;
  background: linear-gradient(-45deg, #ff890b 0%, #ffbe34 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}

@media (max-width: 900px) {
  .btn_box_link .mail_icon {
    width: 3.4rem;
    height: 3.4rem;
  }
}

.btn_box_link .mail_icon img {
  width: 2.2rem;
  height: auto;
}

@media (max-width: 900px) {
  .btn_box_link .mail_icon img {
    width: 1.7rem;
  }
}

.btn_box_link .text {
  color: #1e1e1e;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .btn_box_link .text {
    font-size: 1.4rem;
    letter-spacing: 0.03em;
  }
}

.btn_box.default .btn_box_link {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 25.0rem;
  border-radius: 4.0rem;
  background: #000;
  border: 0.2rem solid #000;
}

.btn_box.default .btn_box_link .wrap {
  width: 100%;
  justify-content: space-between;
  background-color: transparent;
  padding: 1.3rem 1.5rem 1.3rem 3.0rem;
}

.btn_box.default .btn_box_link .wrap .text {
  color: #fff;
}

.btn_box.default .btn_box_link .wrap .arrow-icon {
  width: 3.4rem;
  height: 3.4rem;
  border: 0.1rem solid #7c7c7c;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}

/*アニメーション*/
@keyframes slideUpMasked {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.ani {
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.ani-up {
  transform: translateY(30px);
}

.ani-up.show {
  opacity: 1;
  transform: translateY(0);
}

.ani-down {
  transform: translateY(-30px);
}

.ani-down.show {
  opacity: 1;
  transform: translateY(0);
}

.ani-left {
  transform: translateX(-30px);
}

.ani-left.show {
  opacity: 1;
  transform: translateX(0);
}

.ani-right {
  transform: translateX(30px);
}

.ani-right.show {
  opacity: 1;
  transform: translateX(0);
}

.ani-zoom {
  transform: scale(0.9);
}

.ani-zoom.show {
  opacity: 1;
  transform: scale(1);
}

.ani-fade.show {
  opacity: 1;
}

.d1 {
  transition-delay: 0.2s;
}

.d2 {
  transition-delay: 0.4s;
}

.d3 {
  transition-delay: 0.6s;
}

.d4 {
  transition-delay: 0.8s;
}

/*エディタ*/
.editor_box {
  /*見出しタグ*/
}

.editor_box ul, .editor_box ol {
  margin-bottom: 2.5rem;
}

.editor_box ol {
  list-style: auto;
  margin-left: 1em;
}

.editor_box a {
  color: #ff9c00;
  text-decoration: underline;
}

.editor_box strong {
  font-weight: 600;
}

.editor_box h3, .editor_box h4, .editor_box h5 {
  font-weight: 600;
}

.editor_box h2 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  padding: 0.6rem 2.0rem;
  display: flex;
  align-items: center;
  border-radius: 3.0rem;
  background-color: #00BEC0;
}

@media (max-width: 900px) {
  .editor_box h2 {
    font-size: 1.6rem;
  }
}

.editor_box h2 + p {
  margin-top: 1.6rem;
}

.editor_box h3 {
  color: #00BEC0;
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 3.2rem;
  margin-bottom: 1.0rem;
}

@media (max-width: 900px) {
  .editor_box h3 {
    font-size: 1.4rem;
  }
}

.editor_box h3::before {
  content: "";
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 1.0rem;
  height: 1.0rem;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  background-color: #00BEC0;
}

.editor_box h4 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #00BEC0;
  margin-bottom: 1.0rem;
  border-bottom: 0.15rem solid;
}

.editor_box h5 {
  color: #00BEC0;
  font-weight: 700;
  margin-bottom: 1.0rem;
}

.editor_box p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 3.2rem;
}

@media (max-width: 900px) {
  .editor_box p {
    font-size: 1.3rem;
    margin-bottom: 2.2rem;
  }
}

.editor_box table th {
  background-color: rgba(0, 190, 192, 0.2);
}

.editor_box .wp-block-table {
  margin: 1.5rem 0;
}

.editor_box hr {
  border-bottom: 0.2rem solid #ddd;
  margin: 4.5rem 0;
}

.editor_box .wp-block-image {
  margin-top: 2.0rem;
  margin-bottom: 2.0rem;
}

.editor_box .wp-block-image figure img {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.editor_box .wp-block-image figure figcaption {
  font-size: 1.2rem;
}

@media (max-width: 900px) {
  .editor_box img {
    max-width: 100% !important;
  }
}

.editor_box .unify_list li {
  display: flex;
}

@media (max-width: 900px) {
  .editor_box .unify_list li {
    flex-direction: column;
  }
}

.editor_box .unify_list li span:first-child {
  width: 8.0rem;
}

.editor_box .wp-block-group {
  margin: 2.5rem 0;
}

.editor_box .wp-block-group.is-layout-flex {
  gap: 2.0rem 4.0rem;
}

@media (max-width: 900px) {
  .editor_box .wp-block-group.is-layout-flex {
    flex-direction: column;
  }
}

.editor_box .wp-block-group.is-layout-flex .wp-block-image {
  margin: 0;
  width: 25%;
}

@media (max-width: 900px) {
  .editor_box .wp-block-group.is-layout-flex .wp-block-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.editor_box .wp-block-group.is-layout-flex > :is(*, div) {
  width: 75%;
}

@media (max-width: 900px) {
  .editor_box .wp-block-group.is-layout-flex > :is(*, div) {
    width: 100%;
  }
}

.front-page {
  position: relative;
  /*共通*/
  /*セクション別*/
}

.front-page .sec-info {
  max-width: 1352px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media (max-width: 900px) {
  .front-page .sec-info {
    flex-direction: column;
    align-items: flex-start;
  }
}

.front-page .sec-info .sec-ttl {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

@media (max-width: 900px) {
  .front-page .sec-info .sec-ttl {
    gap: 1.0rem;
  }
}

.front-page .sec-info .sec-ttl .ja-txt {
  position: relative;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1.0rem;
}

@media (max-width: 900px) {
  .front-page .sec-info .sec-ttl .ja-txt {
    font-size: 1.3rem;
    gap: 0.5rem;
  }
}

.front-page .sec-info .sec-ttl .ja-txt::before {
  content: "";
  position: relative;
  margin-left: -1.3rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: linear-gradient(-45deg, #ff9c32, #ffd16e);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .front-page .sec-info .sec-ttl .ja-txt::before {
    margin-left: 0;
    width: 0.8rem;
    height: 0.8rem;
  }
}

.front-page .sec-info .sec-ttl .en-txt {
  font-family: "Outfit", sans-serif;
  font-size: 7.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

@media (max-width: 900px) {
  .front-page .sec-info .sec-ttl .en-txt {
    font-size: 4.0rem;
  }
}

.front-page .sec-info .archive-box .archive-link {
  display: flex;
  align-items: center;
  gap: 1.0rem;
}

.front-page .sec-info .archive-box .archive-link .txt {
  font-size: 1.7rem;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
}

.front-page .sec-info .archive-box .archive-link .arrow-icon {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background-color: #201f1e;
  border: 0.1rem solid #201f1e;
}

.front-page .mv {
  width: 100%;
  background-color: #fff;
  padding-top: calc(var(--header-height));
  top: 0;
  z-index: -1;
}

.front-page .mv .inner {
  position: relative;
}

.front-page .mv_slide_box {
  padding: 0 1.5%;
  overflow: hidden;
  height: calc(100vh - var(--header-height) - 5vw);
}

@media (max-width: 900px) {
  .front-page .mv_slide_box {
    height: calc(100vh - var(--header-height) - 30vw);
    padding: 0 4.5%;
  }
}

.front-page .seamless-slider {
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 3.2rem;
}

@media (max-width: 900px) {
  .front-page .seamless-slider {
    border-radius: 1.6rem;
  }
}

.front-page .slider-track {
  display: flex;
  width: max-content;
  animation: scrollLoop 160s linear infinite;
}

.front-page .slider-track img {
  width: auto;
  height: calc(100vh - var(--header-height) - 5vw);
  aspect-ratio: 930.01 / 650.02;
  object-fit: cover;
  margin: 0 1.0rem;
  border-radius: 3.2rem;
}

@media (max-width: 900px) {
  .front-page .slider-track img {
    height: calc(100vh - var(--header-height) - 30vw);
    border-radius: 1.6rem;
    margin: 0 0.5rem;
  }
}

@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.front-page .sec-message {
  width: 100%;
  padding-bottom: 19.5rem;
  background-color: #fff;
  position: relative;
  margin-top: 0;
  z-index: 1;
}

.front-page .sec-message .message_inner {
  margin: 0 auto;
}

.front-page .sec-message .catch-block {
  border-radius: 0 3.2rem 0 0;
  background-color: #fff;
  position: absolute;
  bottom: 100%;
  left: 1.5%;
  height: 12vw;
  width: 79.0rem;
}

@media (max-width: 900px) {
  .front-page .sec-message .catch-block {
    width: 90%;
    height: auto;
    left: 0;
    position: relative;
    margin: 0 auto;
    padding-top: 2.6rem;
  }
}

.front-page .sec-message .catch-block::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 3.2rem;
  height: 3.2rem;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32'><path fill-rule='evenodd' fill='rgb(255,255,255)' d='M-0.001,0.000 L-0.001,32.000 L31.999,32.000 C14.326,32.000 -0.001,17.672 -0.001,0.000 Z'/></svg>");
}

@media (max-width: 900px) {
  .front-page .sec-message .catch-block::before {
    content: none;
  }
}

.front-page .sec-message .catch-block::after {
  content: "";
  position: absolute;
  left: 100%;
  bottom: 0;
  width: 3.2rem;
  height: 3.2rem;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32'><path fill-rule='evenodd' fill='rgb(255,255,255)' d='M-0.001,-0.000 L-0.001,32.000 L31.999,32.000 C14.326,32.000 -0.001,17.673 -0.001,-0.000 Z'/></svg>");
}

@media (max-width: 900px) {
  .front-page .sec-message .catch-block::after {
    content: none;
  }
}

.front-page .sec-message .catch-block__txt {
  position: absolute;
  top: -1.8rem;
  right: 4.5rem;
  z-index: 2;
}

@media (max-width: 900px) {
  .front-page .sec-message .catch-block__txt {
    position: relative;
    inset: 0;
  }
}

.front-page .sec-message .catch-block__txt img {
  max-width: 96%;
  margin-right: 0;
  margin-left: auto;
}

@media (max-width: 900px) {
  .front-page .sec-message .catch-block__txt img {
    max-width: 100%;
    margin: 0 auto;
  }
}

.front-page .sec-message .catch-block__img {
  position: absolute;
  top: -11.8rem;
  left: -12.6rem;
  width: 100%;
  z-index: 1;
}

@media (max-width: 900px) {
  .front-page .sec-message .catch-block__img {
    top: -3.8rem;
    left: -8.6rem;
  }
}

.front-page .sec-message .catch-block__img img {
  max-width: 58%;
}

.front-page .sec-message .catch-block__img svg {
  max-width: 62%;
  overflow: visible;
}

.front-page .sec-message .message-block {
  padding-top: 25.0rem;
}

@media (max-width: 900px) {
  .front-page .sec-message .message-block {
    padding-top: 16.0rem;
  }
}

.front-page .sec-message .message-block_inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.front-page .sec-message .message-block .main-catch {
  position: relative;
}

@media (max-width: 900px) {
  .front-page .sec-message .message-block .main-catch {
    padding-bottom: 5.0rem;
  }
}

.front-page .sec-message .message-block .main-catch .text {
  font-size: 6.8rem;
  font-weight: 700;
  line-height: 1.4;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (max-width: 900px) {
  .front-page .sec-message .message-block .main-catch .text {
    font-size: 2.8rem;
  }
}

.front-page .sec-message .message-block .main-catch .text-img {
  max-width: 1014px;
  width: 100%;
  margin: 0 0 0 auto;
}

.front-page .sec-message .message-block .message-detail {
  max-width: 85.0rem;
  width: 100%;
  margin: 5.0rem 0 0 auto;
}

.front-page .sec-message .message-block .message-detail p {
  font-size: 2.0rem;
  line-height: 2.2;
  font-weight: 500;
  text-align: justify;
  margin-bottom: 4.0rem;
}

@media (max-width: 900px) {
  .front-page .sec-message .message-block .message-detail p {
    font-size: 1.6rem;
    line-height: 2;
  }
}

.front-page .sec-message .message-block .message-svg-text {
  position: absolute;
  bottom: -1rem;
  right: 26.3rem;
  opacity: 0.3;
}

@media (max-width: 900px) {
  .front-page .sec-message .message-block .message-svg-text {
    right: 8.0rem;
  }
}

.front-page .sec-message .message-block .message-svg-text svg {
  width: 30.0rem;
}

@media (max-width: 900px) {
  .front-page .sec-message .message-block .message-svg-text svg {
    width: 10.6rem;
  }
}

.front-page .sec-newsblog {
  background-color: #fff;
  position: relative;
  border-radius: 0 0 0 8.0rem;
  padding-bottom: 16.0rem;
  margin-bottom: 17.0rem;
  overflow: hidden;
}

.front-page .sec-newsblog .newsblog-block {
  margin: 9.0rem auto 0;
  padding-left: 14.0rem;
  max-width: 1352px;
  width: 90%;
}

@media (max-width: 900px) {
  .front-page .sec-newsblog .newsblog-block {
    padding-left: 0;
  }
}

.front-page .sec-newsblog .newsblog-block__inner {
  overflow: visible;
  padding-top: 6.0rem;
  background-image: linear-gradient(to right, #222222, #222222 0.1rem, transparent 0.1rem, transparent 0.3rem);
  background-size: 0.3rem 0.1rem;
  background-position: left top;
  background-repeat: repeat-x;
}

.front-page .sec-newsblog .newsblog-block .splide__track {
  margin-right: calc(50% - 50vw);
  padding-right: 10vw !important;
}

.front-page .sec-newsblog .newsblog-block__list {
  align-items: stretch;
}

.front-page .sec-newsblog .newsblog-block__item {
  max-width: 36.0rem;
}

.front-page .sec-newsblog .newsblog-block__item a {
  border-radius: 1.6rem;
  overflow: hidden;
  display: block;
  border: 0.1rem solid #cacaca;
  background-color: #fff;
  height: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .front-page .sec-newsblog .newsblog-block__item a:hover figure .main-img {
    transform: scale(1.06);
  }
}

.front-page .sec-newsblog .newsblog-block__item figure {
  aspect-ratio: 359.84 / 239.9;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
}

.front-page .sec-newsblog .newsblog-block__item figure .main-img {
  object-fit: cover;
  height: 100%;
  width: auto;
  position: relative;
  margin: 0 auto;
  z-index: 2;
  transition: all .3s ease;
}

.front-page .sec-newsblog .newsblog-block__item figure .bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(10px);
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.front-page .sec-newsblog .newsblog-block__item .item {
  padding: 2.0rem 2.0rem 4.0rem;
}

.front-page .sec-newsblog .newsblog-block__item .item-info {
  display: flex;
  align-items: center;
  gap: 1.0rem;
  margin-bottom: 1.2rem;
}

.front-page .sec-newsblog .newsblog-block__item .item-info .date {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.front-page .sec-newsblog .newsblog-block__item .item-info .newsblog-catLabel {
  border-radius: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.4rem 1.0rem 0.6rem 1.2rem;
  position: relative;
}

.front-page .sec-newsblog .newsblog-block__item .item-info .newsblog-catLabel .txt {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  line-height: 1;
}

.front-page .sec-newsblog .newsblog-block__item .item-info .newsblog-catLabel.news {
  background-color: #2c9dbe;
}

.front-page .sec-newsblog .newsblog-block__item .item-info .newsblog-catLabel.news::after {
  content: "\1F4F0";
  font-family: "Noto Color Emoji", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
}

.front-page .sec-newsblog .newsblog-block__item .item-info .newsblog-catLabel.blog {
  background-color: #6fc893;
}

.front-page .sec-newsblog .newsblog-block__item .item-info .newsblog-catLabel.blog::after {
  content: "\270F";
  font-family: "Noto Color Emoji", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
}

.front-page .sec-newsblog .newsblog-block__item .item .item-ttl {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.6;
}

.front-page .sec-newsblog .newsblog-block__controls {
  display: flex;
  align-items: center;
  gap: 3.0rem;
  margin-top: 6.0rem;
}

.front-page .sec-newsblog .newsblog-block__progress {
  position: relative;
  flex: 1;
  height: 0.6rem;
  border-radius: 9999px;
  background-color: #dfdfdf;
  overflow: hidden;
}

.front-page .sec-newsblog .newsblog-block__progress-bar {
  position: absolute;
  inset: 0;
  width: 0;
  border-radius: inherit;
  background-color: #f79515;
  transition: width 0.3s ease;
}

.front-page .sec-newsblog .newsblog-block__arrows {
  display: flex;
  align-items: center;
  gap: 1.0rem;
}

@media (max-width: 900px) {
  .front-page .sec-newsblog .newsblog-block__arrows {
    display: none;
  }
}

.front-page .sec-newsblog .newsblog-block__arrow {
  width: 5.0rem;
  height: 5.0rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 0.1rem solid #cacaca;
  background: #fff;
  font-size: 1.2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.front-page .sec-newsblog .newsblog-block__arrow::before {
  content: "";
  position: relative;
  transform: translateX(-0.2rem) rotate(45deg);
  width: 0.6rem;
  height: 0.6rem;
  border-top: 0.15rem solid #333;
  border-right: 0.15rem solid #333;
}

.front-page .sec-newsblog .newsblog-block__arrow--prev::before {
  transform: translateX(0.2rem) rotate(-136deg);
}

.front-page .sec-about {
  margin-bottom: 12.0rem;
}

.front-page .sec-about .about_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.0rem 14.0rem;
  max-width: 1352px;
  width: 90%;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .front-page .sec-about .about_inner {
    flex-direction: column;
  }
}

.front-page .sec-about .sec-info {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-shrink: 0;
  width: 35%;
}

@media (max-width: 900px) {
  .front-page .sec-about .sec-info {
    width: 100%;
  }
}

.front-page .sec-about .sec-info .sec-ttl {
  gap: 1.0rem;
  margin-bottom: 5.0rem;
}

.front-page .sec-about .sec-info .sec-ttl .en-txt {
  font-size: 11.0rem;
}

.front-page .sec-about .sec-info .sec-detail {
  font-size: 1.7rem;
  line-height: 2.2;
}

@media (max-width: 900px) {
  .front-page .sec-about .sec-info .sec-detail {
    font-size: 1.4rem;
    line-height: 2;
  }
}

.front-page .sec-about .about-block {
  width: 65%;
}

@media (max-width: 900px) {
  .front-page .sec-about .about-block {
    width: 100%;
  }
}

.front-page .sec-about .about-block__list {
  display: flex;
  flex-direction: column;
}

.front-page .sec-about .about-block__item {
  background-image: linear-gradient(to right, #222222, #222222 0.1rem, transparent 0.1rem, transparent 0.3rem);
  background-size: 0.3rem 0.1rem;
  background-position: left bottom;
  background-repeat: repeat-x;
}

.front-page .sec-about .about-block__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.0rem 1.8rem 2.0rem 2.4rem;
}

@media (max-width: 900px) {
  .front-page .sec-about .about-block__item a {
    padding: 1.5rem 0 1.5rem 0;
  }
}

.front-page .sec-about .about-block__item a .item-wrap {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .front-page .sec-about .about-block__item a .item-wrap {
    gap: 2.4rem;
  }
}

.front-page .sec-about .about-block__item a .item-wrap figure {
  border-radius: 0.6rem;
  overflow: hidden;
  width: 13.2rem;
  aspect-ratio: 132 / 80;
}

@media (max-width: 900px) {
  .front-page .sec-about .about-block__item a .item-wrap figure {
    width: 10.7rem;
    border-radius: 0.3rem;
  }
}

.front-page .sec-about .about-block__item a .item-wrap figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.front-page .sec-about .about-block__item a .item-wrap .item-ttl {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.front-page .sec-about .about-block__item a .item-wrap .item-ttl .en-txt {
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}

@media (max-width: 900px) {
  .front-page .sec-about .about-block__item a .item-wrap .item-ttl .en-txt {
    font-size: 1.3rem;
  }
}

.front-page .sec-about .about-block__item a .item-wrap .item-ttl .ja-txt {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 600;
}

@media (max-width: 900px) {
  .front-page .sec-about .about-block__item a .item-wrap .item-ttl .ja-txt {
    font-size: 1.8rem;
  }
}

.front-page .sec-about .about-block__item a .arrow-icon {
  width: 3.4rem;
  height: 3.4rem;
  background-color: #201f1e;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}

@media (max-width: 900px) {
  .front-page .sec-about .about-block__item a .arrow-icon {
    width: 2.6rem;
    height: 2.6rem;
  }
}

.front-page .scroll_txt {
  width: 100vw;
  position: relative;
  overflow: hidden;
  padding-bottom: 13.8rem;
}

.front-page .scroll_txt .txt {
  font-family: "Outfit", sans-serif;
  font-size: 20.0rem;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  position: sticky;
  top: 40%;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  white-space: nowrap;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
  display: inline-block;
}

@media (max-width: 900px) {
  .front-page .scroll_txt .txt {
    font-size: 10.0rem;
  }
}

.front-page .sec_recruit {
  width: 100%;
  padding-bottom: 18.0rem;
}

.front-page .sec_recruit .inner {
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.front-page .sec_recruit .inner_box {
  width: 100%;
  background-color: #f26101;
  position: relative;
  border-radius: 0 3.2rem 3.2rem;
  overflow: hidden;
}

.front-page .sec_recruit .inner_box .bg_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.97;
}

.front-page .sec_recruit .inner_box .bg_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.front-page .sec_recruit .inner_box .ttl {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(1143px / 2);
  height: auto;
}

.front-page .sec_recruit .recruit_block {
  position: relative;
  z-index: 2;
  padding-bottom: 15.0rem;
}

.front-page .sec_recruit .recruit_block .box_intro {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 4.0rem;
  margin-left: 10.0rem;
}

.front-page .sec_recruit .recruit_block .box_intro .text {
  width: 47.5rem;
  flex-shrink: 0;
}

.front-page .sec_recruit .recruit_block .box_intro .text img {
  width: 100%;
}

.front-page .sec_recruit .recruit_block .box_intro .imggroup {
  width: 75.7rem;
  padding-right: 4.5rem;
  padding-top: 5.0rem;
}

.front-page .sec_recruit .recruit_block .box_intro .imggroup img {
  width: 100%;
}

.front-page .sec_recruit .recruit_block .box_list {
  width: 86%;
  margin: 0 auto;
  padding-top: 8.0rem;
  margin-top: 8.0rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.front-page .sec_recruit .recruit_block .box_list img {
  width: 100%;
}

.front-page .custom-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.front-page .custom-arrows .splide__arrow {
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  pointer-events: auto;
  cursor: pointer;
  z-index: 10;
}

.front-page .custom-arrows .splide__arrow--prev::before {
  content: '◀';
  color: #fff;
  font-size: 1.3rem;
}

.front-page .custom-arrows .splide__arrow--next::before {
  content: '▶';
  color: #fff;
  font-size: 1.3rem;
}

.policy .main_area {
  position: relative;
  z-index: 3;
  margin-bottom: 12.0rem;
}

@media (max-width: 900px) {
  .policy .main_area {
    margin-bottom: 6.0rem;
  }
}

.policy .main_area .inner {
  max-width: 1312px;
  width: 90%;
  margin: 0 auto 6.0rem;
}

@media (max-width: 900px) {
  .policy .main_area .inner {
    width: 90%;
    margin: 0 auto 4.0rem;
  }
}

.policy .policy_block {
  border-radius: 5.0rem;
  background-color: #fff;
  padding: 9.6rem 11.2rem;
}

.policy .policy_block:not(:last-child) {
  margin-bottom: 6.0rem;
}

@media (max-width: 900px) {
  .policy .policy_block {
    border-radius: 2.0rem;
    padding: 2.6rem 2.2rem;
  }
}

.policy .policy_block .block_intro {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 8.0rem;
  text-align: justify;
}

@media (max-width: 900px) {
  .policy .policy_block .block_intro {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 5.0rem;
  }
}

.policy .policy_block .policy_block__box:not(:last-child) {
  margin-bottom: 4.2rem;
}

@media (max-width: 900px) {
  .policy .policy_block .policy_block__box:not(:last-child) {
    margin-bottom: 3.2rem;
  }
}

.policy .policy_block .policy_block__box .box_ttl {
  color: #00BEC0;
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.6rem;
}

@media (max-width: 900px) {
  .policy .policy_block .policy_block__box .box_ttl {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}

.policy .policy_block .policy_block__box .box_body {
  font-size: 1.6rem;
  line-height: 1.8;
}

.policy .policy_block .policy_block__box .box_body.right {
  text-align: right;
}

@media (max-width: 900px) {
  .policy .policy_block .policy_block__box .box_body {
    font-size: 1.4rem;
  }
}

.policy .policy_block .policy_block__box .box_body .emphasis {
  font-weight: 600;
  font-size: 1.8rem;
}

@media (max-width: 900px) {
  .policy .policy_block .policy_block__box .box_body .emphasis {
    font-size: 1.5rem;
  }
}

.policy .policy_block .policy_block__box .box_body ul {
  margin-top: 1.6rem;
  margin-left: 1.0rem;
}

@media (max-width: 900px) {
  .policy .policy_block .policy_block__box .box_body ul {
    margin-left: 0.5rem;
  }
}

.policy .policy_block .policy_block__box .box_body ul li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.0rem;
}

@media (max-width: 900px) {
  .policy .policy_block .policy_block__box .box_body ul li {
    align-items: baseline;
  }
}

.policy .policy_block .policy_block__box .box_body ul li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: currentColor;
  border-radius: 50%;
  position: relative;
  display: block;
  margin-top: 0.2rem;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
}

.policy .policy_block .policy_block__box .box_body a {
  color: #003278;
  font-weight: 500;
  text-decoration: underline;
}

.policy .policy_block .policy_block__box .box_body a:hover {
  opacity: 0.8;
}
/*# sourceMappingURL=style.css.map */