﻿@charset "UTF-8";

:root {
  --bg: #eaf6ff;
  --white: #fff;
  --black: #0b3656;
  --text: #113a5a;
  --muted: #557189;
  --green: #f39a1f;
  --line: #cfe6f4;
  --brand-deep: #0f5a8e;
  --container: 992px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

@font-face {
  font-family: "CA Sans";
  src: url("https://d5jbsor3m9rwa.cloudfront.net/files/user/font/ca_sans.woff") format("woff"),
       url("https://d5jbsor3m9rwa.cloudfront.net/files/user/font/ca_sans.ttf") format("truetype");
  font-display: swap;
}

.font-ca {
  font-family: "CA Sans", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s cubic-bezier(0.23, 1, 0.58, 1);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

.m-container {
  padding: 0 20px;
}

@media print, screen and (min-width: 768px) {
  .m-container {
    padding: 0 30px;
  }
}

@media print, screen and (min-width: 1032px) {
  .m-container {
    margin: 0 auto;
    max-width: var(--container);
    padding: 0;
  }
}

.l-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.l-main {
  flex: 1 0 auto;
}

.l-header {
  position: absolute;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.58, 1);
}

.l-header.is-fixed {
  position: fixed;
}

.l-header.is-hidden {
  transform: translateY(-100%);
}

@media print, screen and (max-width: 1031px) {
  .l-header {
    position: fixed;
  }
}

@media print, screen and (min-width: 1032px) {
  .l-header {
    height: 112px;
  }
}

.l-header_bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 15px;
  right: 15px;
  left: 15px;
  padding: 0 14px;
  border-radius: 45px;
  height: 45px;
  background: #fff;
  transition: box-shadow 0.5s;
}

.has-shadow .l-header_bar {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
}

@media print, screen and (min-width: 1032px) {
  .l-header_bar {
    top: 20px;
    right: 20px;
    left: 20px;
    padding: 0 20px;
    height: 72px;
  }
}

.l-header_logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  white-space: nowrap;
}

.l-header_logo a {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.l-header_logo_image {
  display: block;
  width: auto;
  height: 28px;
  max-width: min(42vw, 200px);
  object-fit: contain;
}

@media print, screen and (min-width: 1032px) {
  .l-header_logo_image {
    height: 38px;
    max-width: 250px;
  }
}

.l-header_logo_mark {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--brand-deep);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.l-header_logo_text {
  color: var(--brand-deep);
  font-size: 1.8rem;
  font-weight: 700;
}

@media print, screen and (min-width: 1032px) {
  .l-header_logo_mark {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .l-header_logo_text {
    font-size: 2.1rem;
  }
}

.l-header_function {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.l-header_nav {
  display: none;
}

@media print, screen and (min-width: 1032px) {
  .l-header_nav {
    display: flex;
    align-items: center;
  }
}

.l-header_nav_items {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  padding-right: 2.4rem;
}

.l-header_nav_item {
  font-size: 1.4rem;
  font-weight: 700;
}

.l-header_nav_item a {
  position: relative;
  display: inline-flex;
  align-items: center;
  transform: translateY(0);
  transition: color 0.28s cubic-bezier(0.23, 1, 0.58, 1), transform 0.28s cubic-bezier(0.23, 1, 0.58, 1);
}

.l-header_nav_item a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  margin: auto;
  border-radius: 2px;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.58, 1);
  background: var(--green);
}

.l-header_nav_item a:hover,
.l-header_nav_item a[aria-current="page"] {
  color: var(--green);
}

.l-header_nav_item a.is-mega-current {
  color: var(--green);
  transform: translateY(-2px);
}

.l-header_nav_item a:hover {
  transform: translateY(-2px);
}

.l-header_nav_item a:hover::after,
.l-header_nav_item a[aria-current="page"]::after,
.l-header_nav_item a.is-mega-current::after {
  transform: scaleX(1);
}

.l-header_action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  padding: 0 1.1em;
  border: 1px solid transparent;
  border-radius: 999px;
  height: 32px;
  background: var(--green);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.l-header_lang {
  display: none;
}

.l-header_lang_select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  height: 34px;
  padding: 0 2.2em 0 1em;
  border: 2px solid var(--brand-deep);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-deep);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand-deep) 50%),
    linear-gradient(135deg, var(--brand-deep) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) calc(50% + 1px),
    calc(100% - 11px) calc(50% + 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  transition: all 0.24s ease;
}

.l-header_lang_select:hover {
  background-color: rgba(15, 90, 142, 0.06);
}

.l-header_lang_select:focus-visible {
  outline: 2px solid rgba(15, 90, 142, 0.35);
  outline-offset: 2px;
}

@media print, screen and (max-width: 1031px) {
  .l-header_action:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  }
}

@media print, screen and (min-width: 1032px) {
  .l-header_nav_items {
    padding-right: 1.6rem;
  }

  .l-header_action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    height: auto;
    padding: 0.6em 1.4em;
    border: 2px solid var(--brand-deep);
    border-radius: 30px;
    background: #fff;
    color: var(--brand-deep);
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.25s;
  }

  .l-header_action:hover {
    background: var(--brand-deep);
    color: #fff;
  }

  .l-header_lang {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
    margin-right: 8px;
  }
}

.l-header_toggleDrawer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 90, 142, 0.4);
  border-radius: 999px;
  background: #fff;
}

@media print, screen and (min-width: 1032px) {
  .l-header_toggleDrawer {
    display: none;
  }
}

.l-header_toggleDrawer_line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-deep);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.l-header_toggleDrawer_line + .l-header_toggleDrawer_line {
  margin-top: 0;
}

.view-drawer .l-header_toggleDrawer_line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.view-drawer .l-header_toggleDrawer_line:nth-child(2) {
  opacity: 0;
}

.view-drawer .l-header_toggleDrawer_line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media print, screen and (max-width: 380px) {
  .l-header_bar {
    padding: 0 10px;
  }

  .l-header_logo_image {
    height: 24px;
    max-width: min(35vw, 160px);
  }

  .l-header_action {
    margin-right: 6px;
    padding: 0 1em;
    height: 30px;
    font-size: 1.1rem;
  }

  .l-header_toggleDrawer {
    width: 40px;
    height: 40px;
  }

  .l-header_toggleDrawer_line {
    width: 18px;
  }
}

.l-header_drawer_overlay {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(0, 0, 0, 0.45);
  transition: opacity 0.3s ease;
}

.l-header_drawer {
  position: fixed;
  z-index: 9991;
  top: 0;
  right: -100%;
  width: min(360px, 86vw);
  height: 100vh;
  padding: 95px 26px 30px;
  background: #fff;
  overflow: auto;
  transition: right 0.42s cubic-bezier(0.23, 1, 0.58, 1);
}

.l-header_drawer_close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(15, 90, 142, 0.35);
  border-radius: 50%;
  background: #fff;
  color: var(--brand-deep);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

@media print, screen and (min-width: 1032px) {
  .l-header_drawer_close {
    display: none;
  }
}

.view-drawer .l-header_drawer_overlay {
  opacity: 1;
  pointer-events: auto;
}

.view-drawer .l-header_drawer {
  right: 0;
}

.l-header_drawer_nav li + li {
  margin-top: 1.2rem;
}

.l-header_drawer_nav > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.6rem;
  font-weight: 700;
  transform: translateX(0);
  transition: color 0.24s cubic-bezier(0.23, 1, 0.58, 1), transform 0.24s cubic-bezier(0.23, 1, 0.58, 1);
}

.l-header_drawer_nav > li > a::after {
  content: "→";
  color: var(--green);
  font-size: 1.6rem;
  transform: translateX(0);
  transition: transform 0.24s cubic-bezier(0.23, 1, 0.58, 1);
}

.l-header_drawer_nav > li > a:hover {
  color: var(--green);
  transform: translateX(4px);
}

.l-header_drawer_nav > li > a:hover::after {
  transform: translateX(5px);
}

.l-header_drawer_lang {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.l-header_drawer_lang_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.l-header_drawer_lang_select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  padding: 0 2.4em 0 1em;
  border: 1px solid rgba(15, 90, 142, 0.35);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-deep);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand-deep) 50%),
    linear-gradient(135deg, var(--brand-deep) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% + 1px),
    calc(100% - 13px) calc(50% + 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.l-header_drawer_lang_select:hover {
  background-color: rgba(15, 90, 142, 0.06);
}

.l-header_drawer_lang_select:focus-visible {
  outline: 2px solid rgba(15, 90, 142, 0.35);
  outline-offset: 2px;
}

.l-header_mega {
  display: none;
}

@media print, screen and (min-width: 1032px) {
  .l-header_mega {
    display: block;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    z-index: 9996;
    top: 0;
    left: 0;
    width: min(640px, calc(100vw - 40px));
    transition: opacity 0.28s cubic-bezier(0.23, 1, 0.58, 1), transform 0.28s cubic-bezier(0.23, 1, 0.58, 1);
    transform-origin: top left;
    transform: translateY(-10px) scale(0.985);
  }

  .l-header_mega.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .l-header_mega_inner {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  }

  .l-header_mega_head {
    padding: 10px 4px 10px 6px;
    border-right: 1px solid #ecece8;
  }

  .l-header_mega_title {
    font-size: 2.8rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
  }

  .l-header_mega_sub {
    margin-top: 8px;
    color: #4b4b4b;
    font-size: 1.4rem;
    font-weight: 700;
  }

  .l-header_mega_list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .l-header_mega_link {
    display: block;
    overflow: hidden;
    position: relative;
    padding: 12px 38px 12px 14px;
    border-radius: 12px;
    background: #f8f8f6;
    border: 1px solid #ecece8;
    transition: background-color 0.25s cubic-bezier(0.23, 1, 0.58, 1), transform 0.25s cubic-bezier(0.23, 1, 0.58, 1), border-color 0.25s cubic-bezier(0.23, 1, 0.58, 1);
  }

  .l-header_mega_link::after {
    content: "→";
    position: absolute;
    top: 0;
    right: 14px;
    bottom: 0;
    margin: auto;
    height: 1em;
    color: var(--green);
    font-size: 1.7rem;
    transform: translateX(0);
    transition: transform 0.25s cubic-bezier(0.23, 1, 0.58, 1);
  }

  .l-header_mega_link_label {
    display: block;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.5;
  }

  .l-header_mega_link_desc {
    display: block;
    margin-top: 5px;
    color: #5c5c5c;
    font-size: 1.24rem;
    line-height: 1.6;
  }

  .l-header_mega_link:hover {
    border-color: #ffd6a6;
    background: #fff3e2;
    transform: translateY(-2px);
  }

  .l-header_mega_link:hover::after {
    transform: translateX(4px);
  }

  body.view-drawer .l-header_mega {
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

.hero {
  overflow: hidden;
  position: relative;
  height: 100vh;
  min-height: 620px;
  background: #00AFEC;
}

@media print, screen and (max-width: 375px) {
  .hero {
    max-height: 635px;
  }
}

.hero_carousel {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.hero_carousel_item {
  visibility: visible;
  position: absolute;
  z-index: 1;
  inset: 0;
}

.hero_carousel_item a {
  display: block;
  height: 100%;
}

.hero_carousel_item.is-current,
.hero_carousel_item.is-prev,
.hero_carousel_item.is-next,
.hero_carousel_item.is-ready-next,
.hero_carousel_item.is-ready-prev {
  visibility: visible;
}

.hero_carousel_item.is-current {
  z-index: 2;
}

.hero_carousel_item.is-prev {
  z-index: 1;
}

.hero_carousel_item.is-next {
  z-index: 1;
}

.hero_carousel_item.is-ready {
  visibility: hidden;
}

.hero_carousel_item.is-ready-next,
.hero_carousel_item.is-ready-prev {
  z-index: 2;
}

.hero_carousel_img {
  position: absolute;
  inset: 0;
  transition: transform 1.1s 0.35s cubic-bezier(0.4, 0, 0.22, 1);
  transform: translateX(0);
}

.hero_carousel_img::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  background: linear-gradient(transparent, rgba(8, 61, 97, 0.58));
}

@media print, screen and (min-width: 768px) {
  .hero_carousel_img {
    transition: transform 1.1s 0.6s cubic-bezier(0.4, 0, 0.22, 1);
  }

  .hero_carousel_img::after {
    height: 320px;
  }
}

.hero_carousel_mask {
  overflow: hidden;
  position: absolute;
  inset: 0;
  border-radius: 0;
  transform: scale(1);
  transition: border-radius 0.4s 1.4s cubic-bezier(0.4, 0, 0.22, 1), transform 0.4s 1.4s cubic-bezier(0.4, 0, 0.22, 1);
}

@media print, screen and (min-width: 768px) {
  .hero_carousel_mask {
    transition: border-radius 0.6s 1.6s cubic-bezier(0.4, 0, 0.22, 1), transform 0.6s 1.6s cubic-bezier(0.4, 0, 0.22, 1);
  }
}

.hero_carousel_bg {
  position: absolute;
  inset: 0;
  transform: scale(1);
  transition: transform 0.4s 1.4s cubic-bezier(0.4, 0, 0.22, 1);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media print, screen and (min-width: 768px) {
  .hero_carousel_bg {
    transition: transform 0.6s 1.6s cubic-bezier(0.4, 0, 0.22, 1);
  }
}

.hero_carousel_text {
  position: absolute;
  inset: 0;
  transition: transform 1.05s 0.3s cubic-bezier(0.4, 0, 0.22, 1);
  transform: translateX(0);
  color: #fff;
}

@media print, screen and (min-width: 768px) {
  .hero_carousel_text {
    transition: transform 1.1s 0.5s cubic-bezier(0.4, 0, 0.22, 1);
  }
}

.hero_carousel_textInner {
  position: absolute;
  right: 20px;
  bottom: 60px;
  left: 20px;
}

@media print, screen and (min-width: 768px) {
  .hero_carousel_textInner {
    right: 94px;
    bottom: 90px;
    left: 94px;
  }
}

.hero_carousel_title {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.25);
}

.hero_carousel_textInner-type1 .hero_carousel_title {
  font-size: 3.6rem;
  line-height: 1.05;
}

@media print, screen and (min-width: 768px) {
  .hero_carousel_textInner-type1 .hero_carousel_title {
    font-size: 6rem;
  }
}

.hero_carousel_textInner-type2 .hero_carousel_title {
  font-size: 2.4rem;
  line-height: 1.5;
}

@media print, screen and (min-width: 768px) {
  .hero_carousel_textInner-type2 .hero_carousel_title {
    font-size: 4.6rem;
  }
}

.hero_carousel_lead {
  margin-top: 0.45em;
  font-size: 1.8rem;
  font-weight: 700;
}

@media print, screen and (min-width: 768px) {
  .hero_carousel_lead {
    font-size: 2.2rem;
  }
}

.hero_carousel_item.is-prev .hero_carousel_mask,
.hero_carousel_item.is-next .hero_carousel_mask {
  border-radius: 30px;
  transition: border-radius 0.4s cubic-bezier(0.4, 0, 0.22, 1), transform 0.4s cubic-bezier(0.4, 0, 0.22, 1);
  transform: scale(0.55);
}

@media print, screen and (min-width: 768px) {
  .hero_carousel_item.is-prev .hero_carousel_mask,
  .hero_carousel_item.is-next .hero_carousel_mask {
    transition: border-radius 0.7s cubic-bezier(0.4, 0, 0.22, 1), transform 0.7s cubic-bezier(0.4, 0, 0.22, 1);
  }
}

.hero_carousel_item.is-prev .hero_carousel_bg,
.hero_carousel_item.is-next .hero_carousel_bg {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.22, 1);
  transform: scale(1.26);
}

@media print, screen and (min-width: 768px) {
  .hero_carousel_item.is-prev .hero_carousel_bg,
  .hero_carousel_item.is-next .hero_carousel_bg {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.22, 1);
  }
}

.hero_carousel_item.is-next .hero_carousel_img,
.hero_carousel_item.is-ready-next .hero_carousel_img {
  transform: translateX(100%);
}

.hero_carousel_item.is-prev .hero_carousel_img,
.hero_carousel_item.is-ready-prev .hero_carousel_img {
  transform: translateX(-100%);
}

.hero_carousel_item.is-next .hero_carousel_text,
.hero_carousel_item.is-ready-next .hero_carousel_text {
  transform: translateX(100%);
}

.hero_carousel_item.is-prev .hero_carousel_text,
.hero_carousel_item.is-ready-prev .hero_carousel_text {
  transform: translateX(-100%);
}

.hero_carousel_item.is-ready-next .hero_carousel_img,
.hero_carousel_item.is-ready-next .hero_carousel_text,
.hero_carousel_item.is-ready-prev .hero_carousel_img,
.hero_carousel_item.is-ready-prev .hero_carousel_text {
  transition-delay: 0s;
  transition-duration: 0s;
}

.hero_carousel_item.is-ready-next .hero_carousel_mask,
.hero_carousel_item.is-ready-prev .hero_carousel_mask {
  border-radius: 30px;
  transition-delay: 0s;
  transition-duration: 0s;
  transform: scale(0.55);
}

.hero_carousel_item.is-ready-next .hero_carousel_bg,
.hero_carousel_item.is-ready-prev .hero_carousel_bg {
  transition-delay: 0s;
  transition-duration: 0s;
  transform: scale(1.26);
}

.hero_carousel_control {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 13px;
  left: 20px;
  height: 44px;
}

@media print, screen and (min-width: 768px) {
  .hero_carousel_control {
    right: 140px;
    bottom: 30px;
    left: 140px;
  }
}

.hero_carousel_toggleSwitch {
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  width: 24px;
  height: 44px;
  background: none;
}

.hero_carousel_toggleIcon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 14px;
  height: 14px;
}

.hero_carousel_toggleIcon::before,
.hero_carousel_toggleIcon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 4px;
  height: 14px;
  background: #fff;
}

.hero_carousel_toggleIcon::before {
  left: 2px;
}

.hero_carousel_toggleIcon::after {
  right: 2px;
}

.hero_carousel_toggleSwitch.is-paused .hero_carousel_toggleIcon::before {
  top: 1px;
  bottom: auto;
  left: 1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
  background: none;
}

.hero_carousel_toggleSwitch.is-paused .hero_carousel_toggleIcon::after {
  display: none;
}

.hero_carousel_pagerContainer {
  position: absolute;
  top: 0;
  right: 0;
  left: 38px;
}

.hero_carousel_pagerContainer::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
}

@media print, screen and (min-width: 768px) {
  .hero_carousel_pagerContainer {
    left: 50px;
  }
}

.hero_carousel_pager_progress {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  width: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--green);
}

.hero_carousel_pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  color: #fff;
}

.hero_carousel_pager_item {
  position: relative;
  width: 26px;
  height: 44px;
}

.hero_carousel_pager_item_dot {
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  border: 0;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  transform: scale(1);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.58, 1);
  background: #fff;
  font-size: 0;
  cursor: pointer;
}

@media print, screen and (min-width: 768px) {
  .hero_carousel_pager_item_dot {
    width: 13px;
    height: 13px;
  }
}

.hero_carousel_pager_item.is-current .hero_carousel_pager_item_dot {
  transform: scale(1.45);
  background: var(--green);
}

.hero_carousel_pager_item:hover .hero_carousel_pager_item_dot {
  transform: scale(1.22);
}

.hero_carousel_pager_thumb {
  display: none;
  pointer-events: none;
}

@media print, screen and (min-width: 768px) {
  .hero_carousel_pager_thumb {
    display: block;
    overflow: hidden;
    opacity: 0;
    position: absolute;
    top: -54px;
    left: 0;
    border-radius: 10px;
    width: 90px;
    height: 50px;
    transition: opacity 0.25s cubic-bezier(0.23, 1, 0.58, 1), transform 0.3s cubic-bezier(0.23, 1, 0.58, 1);
    transform: translateX(0);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
  }

  .hero_carousel_pager_thumb.is-visible {
    opacity: 1;
  }
}

.hero_carousel_pager_thumb_list {
  display: flex;
  width: 450px;
  height: 50px;
  transform: translateX(0);
  transition: transform 0.32s cubic-bezier(0.23, 1, 0.58, 1);
}

.hero_carousel_pager_thumb_list li {
  width: 90px;
  height: 50px;
  background-position: center;
  background-size: cover;
  flex: 0 0 90px;
}

.hero_scroll {
  position: absolute;
  z-index: 4;
  right: 35px;
  bottom: 40px;
  transform: rotate(90deg);
  font-size: 1.4rem;
  line-height: 1;
}

@media print, screen and (max-width: 767px) {
  .hero_scroll {
    display: none;
  }
}

.hero_scroll a {
  color: #fff;
}

.hero_scroll_label {
  display: block;
}

.hero_scroll_bar {
  display: block;
  position: absolute;
  top: 0;
  right: -38px;
  bottom: 2px;
  margin: auto;
  width: 30px;
  height: 2px;
  background: #fff;
  animation: hero_scroll_bar 3s infinite cubic-bezier(0.23, 1, 0.58, 1);
}

@keyframes hero_scroll_bar {
  0% {
    opacity: 0;
    transform: translateX(-30%);
  }

  20% {
    opacity: 1;
  }

  75%,
  100% {
    opacity: 0;
    transform: translateX(70%);
  }
}

.m-categorySection {
  position: relative;
}

.m-categorySectionInner {
  padding-top: 56px;
  padding-bottom: 78px;
}

@media print, screen and (min-width: 768px) {
  .m-categorySectionInner {
    padding-top: 78px;
    padding-bottom: 126px;
  }
}

.p-section-white {
  background: #fff;
}

.p-section-line {
  border-top: 4px solid var(--line);
}

.m-categorySection_heading {
  margin: 0 0 24px;
  text-align: center;
  line-height: 1.2;
}

@media print, screen and (min-width: 768px) {
  .m-categorySection_heading {
    margin-bottom: 50px;
  }
}

.m-categorySection_heading_en {
  font-size: 3.2rem;
}

@media print, screen and (min-width: 768px) {
  .m-categorySection_heading_en {
    font-size: 5.2rem;
  }
}

.m-categorySection_heading_ja {
  margin-top: 6px;
  font-size: 1.3rem;
  font-weight: 700;
}

@media print, screen and (min-width: 768px) {
  .m-categorySection_heading_ja {
    font-size: 1.8rem;
  }
}

.m-categorySection_lead {
  margin: 22px auto 0;
  max-width: 720px;
  text-align: center;
  color: #4d4d4d;
  font-size: 1.6rem;
  text-wrap: balance;
}

@media print, screen and (min-width: 768px) {
  .m-categorySection_lead {
    font-size: 1.8rem;
  }
}

.m-categorySection_footBtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
  gap: 21px;
}

@media print, screen and (min-width: 768px) {
  .m-categorySection_footBtn {
    flex-direction: row;
    margin-top: 70px;
    gap: 24px;
  }
}

.m-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 0.6em 2.4em;
  border: 3px solid var(--green);
  border-radius: 50px;
  min-width: 206px;
  max-width: 100%;
  transition: background-color 0.1s 0.15s cubic-bezier(0.23, 1, 0.58, 1);
  background: #fff;
  color: var(--green);
  font-size: 1.5rem;
  font-weight: 700;
}

.m-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.58, 1);
  transform: scale(1);
  background: #fff;
}

.m-btn .m-icon {
  margin-left: 0.8rem;
  font-style: normal;
  line-height: 1;
  transform: translateX(0);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.58, 1);
}

.m-btn:hover {
  background: var(--green);
  color: #fff;
}

.m-btn:hover::before {
  opacity: 0;
  transform: scale(0);
}

.m-btn:hover .m-icon {
  transform: translateX(4px);
}

.m-btn.m-btn-black {
  border-color: var(--brand-deep);
  color: var(--brand-deep);
}

.m-btn.m-btn-black:hover {
  background: var(--brand-deep);
  color: #fff;
}

.m-cardGroup {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media print, screen and (min-width: 768px) {
  .m-cardGroup {
    justify-content: flex-start;
    gap: 31px;
    max-width: 651px;
    margin: 0 auto;
  }

  .m-cardGroup.m-cardGroup-3 {
    max-width: 100%;
  }
}

.m-card {
  position: relative;
  width: 100%;
  max-width: 400px;
}

@media print, screen and (min-width: 768px) {
  .m-card {
    width: 310px;
    max-width: none;
  }
}

.m-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.58, 1);
  background: #fff;
}

.m-card > a {
  display: block;
  position: relative;
  height: 100%;
}

.m-card_img {
  overflow: hidden;
  position: relative;
  border-radius: 20px 20px 0 0;
}

.m-card_imgWrapper {
  overflow: hidden;
  transform: scale(1) translateY(0);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.58, 1);
}

.m-card_imgWrapper img {
  width: 100%;
  border-radius: 20px 20px 0 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.58, 1);
}

.m-card_imgWrapper::after {
  content: "";
  opacity: 0;
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: var(--brand-deep);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.58, 1);
}

.m-card_body {
  position: relative;
  padding: 25px 25px 30px;
}

@media print, screen and (min-width: 768px) {
  .m-card_body {
    padding: 30px 30px 45px;
  }
}

.m-card_meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

@media print, screen and (min-width: 768px) {
  .m-card_meta {
    margin-bottom: 16px;
  }
}

.m-card_badge {
  display: inline-block;
  padding: 0 0.65em;
  border-radius: 20px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.m-card_date {
  color: #777;
  font-weight: 700;
}

.m-card_text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.7;
}

@media print, screen and (min-width: 768px) {
  .m-card_text {
    font-size: 1.8rem;
  }
}

.m-card_sub {
  margin-top: 0.8rem;
  color: #555;
  font-size: 1.4rem;
  line-height: 1.8;
}

.m-card:hover::before {
  top: 3.2%;
  right: 2.5%;
  bottom: 3.2%;
  left: 2.5%;
  transition: all 0.55s cubic-bezier(0.175, 0.885, 0.47, 1.26);
}

.m-card:hover .m-card_imgWrapper {
  transform: scale(0.68) translateY(13%);
  transition: all 0.55s cubic-bezier(0.175, 0.885, 0.47, 1.26);
}

.m-card:hover .m-card_imgWrapper img {
  border-radius: 30px;
  transition: all 0.55s cubic-bezier(0.175, 0.885, 0.47, 1.26);
}

.m-card:hover .m-card_imgWrapper::after {
  opacity: 0.15;
  border-radius: 30px;
  transition: all 0.55s cubic-bezier(0.175, 0.885, 0.47, 1.26);
}

.js-inview .m-card {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.58, 1), transform 0.5s cubic-bezier(0.23, 1, 0.58, 1);
}

.js-inview .m-card.is-inview {
  opacity: 1;
  transform: scale(1);
}

.js-inview .m-card:nth-child(2) {
  transition-delay: 0.12s;
}

.js-inview .m-card:nth-child(3) {
  transition-delay: 0.24s;
}

.js-inview .m-card:nth-child(4) {
  transition-delay: 0.36s;
}

@media print, screen and (max-width: 767px) {
  .js-inview .m-card {
    opacity: 1;
    transform: none;
  }
}

.p-note {
  margin: 2rem auto 0;
  max-width: 44em;
  padding: 1.6rem 1.8rem;
  border-left: 4px solid var(--green);
  background: #fff;
  font-weight: 700;
  text-wrap: balance;
}

.p-problemList {
  margin: 0 auto;
  max-width: 980px;
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.p-problemItem {
  display: flex;
  align-items: center;
  gap: 14px;
}

.p-problemItem_icon {
  position: relative;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #d7e8f8;
}

.p-problemItem_icon::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1266a6;
  transform: translateX(-50%);
}

.p-problemItem_icon::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 50%;
  width: 18px;
  height: 10px;
  border-radius: 11px 11px 4px 4px;
  background: #1266a6;
  transform: translateX(-50%);
}

.p-problemItem_text {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 1.3rem 1.8rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e7ecef;
  font-weight: 700;
  line-height: 1.6;
  color: #003b73;
}

.p-problemItem_text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-left: 1px solid #e7ecef;
  border-bottom: 1px solid #e7ecef;
  transform: translateY(-50%) rotate(45deg);
}

@media print, screen and (min-width: 900px) {
  .p-problemList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
    row-gap: 16px;
  }

  .p-problemList.p-problemList-5 .p-problemItem:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 56%;
    justify-self: center;
  }
}

.p-flow {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

@media print, screen and (min-width: 768px) {
  .p-flow {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
  }
}

.p-flow_item {
  padding: 18px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #ecece8;
}

.p-flow_item_num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #003b73;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
}

.p-flow_item h3 {
  margin-top: 10px;
  font-size: 1.6rem;
}

.p-flow_item p {
  margin-top: 6px;
  color: #5d5d5d;
  font-size: 1.4rem;
  line-height: 1.7;
}

.p-companyPanel {
  margin: 0 auto;
  max-width: 860px;
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #ecece8;
  text-align: center;
}

.p-companyPanel p {
  margin: 0 auto;
  max-width: 34em;
  font-size: 1.7rem;
  line-height: 1.9;
  text-wrap: balance;
}

.p-companyPanel .m-btn {
  margin-top: 24px;
}

.p-cta {
  margin: 0 auto;
  max-width: 900px;
  border-radius: 24px;
  padding: 38px 30px;
  background: var(--brand-deep);
  color: #fff;
  text-align: center;
}

.p-cta h2 {
  font-size: 3rem;
  line-height: 1.4;
}

.p-cta p {
  margin-top: 12px;
  margin-right: auto;
  margin-left: auto;
  max-width: 40em;
  color: rgba(255, 255, 255, 0.84);
  text-wrap: balance;
}

.p-cta_actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.p-cta .m-btn {
  border-color: #fff;
  background: var(--brand-deep);
  color: #fff;
}

.p-cta .m-btn::before {
  background: var(--brand-deep);
}

.p-cta .m-btn:hover {
  background: #fff;
  color: var(--brand-deep);
}

.contentsNav_section {
  overflow: hidden;
  position: relative;
  border-top: 4px solid var(--line);
}

.contentsNav_section > ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2px;
}

.contentsNav_item {
  overflow: hidden;
  position: relative;
  border-top: 2px solid var(--line);
  border-left: 2px solid var(--line);
  width: 50%;
  height: 140px;
  transition: border-color 0.3s cubic-bezier(0.23, 1, 0.58, 1);
}

.contentsNav_item.contentsNav_item-fluid {
  width: 100%;
}

@media print, screen and (min-width: 768px) {
  .contentsNav_item {
    height: 218px;
  }

  .contentsNav_list-col-3 .contentsNav_item:not(.contentsNav_item-fluid) {
    width: 33.333%;
  }

  .contentsNav_item.contentsNav_item-fluid {
    height: 340px;
    border-top: 0;
  }
}

.contentsNav_item_bg {
  position: absolute;
  inset: 0;
  transform: scale(1);
  transition: transform 8s linear;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.contentsNav_item_mask {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.58, 1);
}

.contentsNav_item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  padding: 10px;
  height: 100%;
  color: var(--text);
}

.contentsNav_item_heading_en {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  line-height: 1.15;
}

.contentsNav_item_heading_ja {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
}

@media print, screen and (min-width: 768px) {
  .contentsNav_item_heading_en {
    font-size: 3.4rem;
  }

  .contentsNav_item_heading_ja {
    font-size: 1.4rem;
  }

  .contentsNav_item-fluid .contentsNav_item_heading_en {
    font-size: 5rem;
  }

  .contentsNav_item-fluid .contentsNav_item_heading_ja {
    font-size: 1.6rem;
  }
}

.contentsNav_item_arrow {
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  margin: auto;
  height: 1em;
  font-size: 1.8rem;
  transform: translateX(0);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.58, 1);
}

@media print, screen and (min-width: 768px) {
  .contentsNav_item_arrow {
    right: 14px;
    font-size: 2.6rem;
  }
}

.contentsNav_item:hover {
  border-color: transparent;
}

.contentsNav_item:hover .contentsNav_item_mask {
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
}

@media print, screen and (min-width: 768px) {
  .contentsNav_item:hover .contentsNav_item_mask {
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
  }
}

.contentsNav_item:hover .contentsNav_item_arrow {
  transform: translateX(-16px);
}

.contentsNav_item:hover .contentsNav_item_bg {
  transform: scale(1.25);
}

.l-footer {
  background: var(--brand-deep);
  color: #fff;
  text-align: center;
}

.l-footer_logo {
  padding-top: 42px;
}

@media print, screen and (min-width: 768px) {
  .l-footer_logo {
    padding-top: 75px;
  }
}

.l-footer_logo_image {
  display: block;
  margin: 0 auto;
  width: auto;
  height: 46px;
  max-width: min(72vw, 340px);
  object-fit: contain;
}

@media print, screen and (min-width: 768px) {
  .l-footer_logo_image {
    height: 62px;
  }
}

.l-footer_logo_mark {
  display: inline-grid;
  place-items: center;
  margin: 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.l-footer_logo_text {
  margin-top: 10px;
  color: #fff;
  font-size: 2rem;
}

.l-footer_function {
  display: flex;
  flex-direction: column;
  margin: 28px 0 0;
}

@media print, screen and (min-width: 768px) {
  .l-footer_function {
    margin-top: 30px;
  }
}

.l-footer_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 2.4rem;
  font-size: 1.4rem;
}

.l-footer_nav a:hover {
  color: var(--green);
}

.l-footer_service {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.l-footer_service a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-deep);
  font-size: 1.4rem;
  font-weight: 700;
}

@media print, screen and (min-width: 768px) {
  .l-footer_service a {
    width: 40px;
    height: 40px;
  }
}

.l-footer_lang {
  margin-top: 20px;
  font-size: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.l-footer_lang a,
.l-footer_lang_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 2px solid #fff;
  border-radius: 30px;
}

.l-footer_lang a:hover,
.l-footer_lang_link:hover {
  background: #fff;
  color: var(--brand-deep);
}

.l-footer_lang_link.is-current {
  background: #fff;
  color: var(--brand-deep);
}

.l-footer_copyright {
  padding: 24px 0 26px;
  color: #c4c4c4;
  font-size: 1.2rem;
}

.p-pageHero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 80px;
  background: var(--brand-deep);
  color: #fff;
}

.p-pageHero_bg {
  position: absolute;
  inset: 0;
  transform: scale(1.06);
  opacity: 0.55;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-pageHero_mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 73, 114, 0.56), rgba(8, 48, 76, 0.82));
}

.p-pageHero_inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.p-pageHero_kicker {
  display: inline-block;
  padding: 0.34em 0.9em;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.p-pageHero h1 {
  margin-top: 14px;
  font-size: 4.2rem;
  line-height: 1.2;
}

.p-pageHero p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.9);
}

@media print, screen and (max-width: 767px) {
  .p-pageHero {
    padding-top: 120px;
    padding-bottom: 64px;
  }

  .p-pageHero h1 {
    font-size: 3.2rem;
  }
}

.p-section {
  padding: 56px 0;
}

@media print, screen and (min-width: 768px) {
  .p-section {
    padding: 84px 0;
  }
}

.p-section_head {
  margin-bottom: 28px;
  text-align: center;
}

@media print, screen and (min-width: 768px) {
  .p-section_head {
    margin-bottom: 42px;
  }
}

.p-section_head h2 {
  font-size: 3rem;
  line-height: 1.35;
}

.p-section_head p {
  margin: 12px auto 0;
  max-width: 760px;
  color: #505050;
}

.p-grid {
  display: grid;
  gap: 18px;
}

@media print, screen and (min-width: 768px) {
  .p-grid.p-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .p-grid.p-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.p-card {
  padding: 26px 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #ecece8;
}

.p-card h3 {
  font-size: 2rem;
  line-height: 1.45;
}

.p-card p {
  margin-top: 10px;
  color: #505050;
}

.p-card_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  padding: 0;
  list-style: none;
}

.p-card_tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1f2f3;
  color: #4a4a4a;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.p-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.p-list li {
  position: relative;
  padding-left: 1.3em;
  color: #3f3f3f;
}

.p-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 0.42em;
  height: 0.42em;
  border-radius: 50%;
  background: var(--green);
}

.p-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.p-table th,
.p-table td {
  padding: 16px;
  border-bottom: 1px solid #ecece8;
  text-align: left;
  vertical-align: top;
}

.p-table th {
  width: 180px;
  background: #fafaf8;
  font-weight: 700;
}

.p-table tr:last-child th,
.p-table tr:last-child td {
  border-bottom: 0;
}

.p-caseList {
  display: grid;
  gap: 14px;
}

.p-case {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #ecece8;
}

.p-case h3 {
  font-size: 2.1rem;
  line-height: 1.5;
}

.p-case_meta {
  margin-top: 8px;
  color: #626262;
  font-size: 1.3rem;
}

.p-contactWrap {
  display: grid;
  gap: 16px;
}

@media print, screen and (min-width: 900px) {
  .p-contactWrap {
    grid-template-columns: 1fr 1fr;
  }
}

.p-form {
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #ecece8;
}

.p-field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.p-field label {
  color: #4b4b4b;
  font-size: 1.3rem;
  font-weight: 700;
}

.p-field input,
.p-field select,
.p-field textarea {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid #d6d6d2;
  background: #fff;
}

.p-field textarea {
  min-height: 160px;
  resize: vertical;
}

.p-field-hp {
  display: none !important;
}

.p-contact_mail {
  margin-bottom: 12px;
  color: #3f3f3f;
  font-size: 1.3rem;
}

.p-contact_mail a {
  color: var(--green);
  font-weight: 700;
}

.p-form_status {
  display: none;
  margin-top: 12px;
  font-size: 1.3rem;
  font-weight: 700;
}

.p-form_status.is-visible {
  display: block;
}

.p-form_status.is-sending {
  color: #616161;
}

.p-form_status.is-success {
  color: #1f7a42;
}

.p-form_status.is-error {
  color: #a23a32;
}

.p-form_note {
  margin-top: 12px;
  color: #6a6a6a;
  font-size: 1.2rem;
}

.p-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.p-alert {
  margin-top: 16px;
  padding: 14px 16px;
  border-left: 4px solid var(--green);
  background: #fff;
  font-weight: 700;
}

.p-linkArrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--text);
  font-weight: 700;
}

.p-linkArrow::after {
  content: "→";
  color: var(--green);
  transition: transform 0.2s ease;
}

.p-linkArrow:hover::after {
  transform: translateX(3px);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: all 0.65s cubic-bezier(0.23, 1, 0.58, 1);
}

.reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

@media print, screen and (max-width: 767px) {
  .m-categorySection_footBtn {
    gap: 12px;
  }

  .m-btn {
    width: 100%;
  }

  .p-actions .m-btn {
    width: 100%;
  }

  .p-table th {
    width: 120px;
  }

}
