@charset "UTF-8";
* {
  box-sizing: border-box; }

html, body {
  height: 100%; }

html {
  scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Noto Sans JP', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #1a1a1a;
  background: #faf8f7;
  line-height: 1.75;
  text-size-adjust: 100%; }

.no-scroll {
  overflow: hidden; }

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle; }

a:link {
  color: #0B62BC; }

a:visited {
  color: #0B62BC; }

a:hover {
  color: #A5C8ED; }

a:active {
  color: #0B62BC; }

a:hover img {
  opacity: 0.8; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden; }
  .skip-link:focus {
    position: fixed;
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 8px 12px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08); }

.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  transition-duration: .3s;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(10px); }
  .site-header .header-inner {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px; }
  .site-header .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 700; }
  .site-header .brand__mark {
    width: 110px;
    height: auto; }
    .site-header .brand__mark img {
      width: 100%;
      height: auto; }
  .site-header .brand__text {
    font-size: 16px;
    letter-spacing: .02em; }

.hamburger {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  border-radius: 12px; }
  .hamburger:focus-visible {
    outline: 2px solid rgba(4, 60, 120, 0.6);
    outline-offset: 2px; }
  .hamburger__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #1a1a1a;
    position: relative; }
    .hamburger__bar:not(:last-child) {
      margin-bottom: 4px; }

.global-nav {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: .25s ease;
  z-index: 50; }
  .global-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none; }
  .global-nav .nav-close {
    position: absolute;
    top: max(env(safe-area-inset-top), 12px);
    right: 12px;
    width: 44px;
    height: 44px;
    border: 0;
    background: #fff;
    border-radius: 12px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08); }
    .global-nav .nav-close:focus-visible {
      outline: 2px solid rgba(4, 60, 120, 0.6);
      outline-offset: 2px; }
  .global-nav .nav-list {
    list-style: none;
    margin: 0;
    padding: 96px 24px 24px;
    background: #fff;
    height: 100%;
    width: min(100%, 420px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 0 24px; }
    .global-nav .nav-list li {
      border-bottom: 1px solid #f0eaea; }
    .global-nav .nav-list a {
      display: block;
      padding: 18px 8px;
      font-weight: 700;
      text-decoration: none;
      color: #1a1a1a;
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
      font-size: 18px; }
      .global-nav .nav-list a:active {
        background: #f7f4f3; }

.side-menu {
  position: fixed;
  inset: 0 auto 0 0;
  width: 240px;
  padding: 24px;
  display: none; }
  .side-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px; }
  .side-menu li a {
    display: block;
    padding: 10px 12px;
    text-decoration: none;
    color: #1a1a1a;
    border-radius: 10px;
    font-weight: 600; }
    .side-menu li a:hover {
      background: #f3edeb; }
  .side-menu .btn {
    text-align: center;
    color: #ffffff; }
  .side-menu p {
    margin: 0 auto 20px; }
    .side-menu p img {
      width: 100%;
      height: auto; }

.side-portrait {
  position: fixed;
  inset: 0 0 0 auto;
  width: clamp(260px, 28vw, 420px);
  display: none;
  padding: 24px; }
  .side-portrait figure {
    position: sticky;
    top: 24px; }
  .side-portrait img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    object-fit: cover; }

.content {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

.hero {
  padding: 56px 0 0;
  position: relative;
  background-image: url("../img/bg.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; }
  .hero__inner {
    height: 70vh;
    padding: 15px 0;
    background-image: url("../img/main.webp");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto; }
  .hero h1 {
    font-size: clamp(50px, 6.5vw, 60px);
    line-height: 1.2;
    font-family: mode-mincho-a-large-std, sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0 0 15px;
    letter-spacing: .02em;
    color: #ffffff;
    text-align: center;
    text-shadow: 0px 0px 10px #1a1a1a; }
    .hero h1 span {
      font-size: 88%; }
  .hero .lead {
    font-size: clamp(30px, 6.5vw, 40px);
    font-family: mode-mincho-a-large-std, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    margin: 0 0 16px;
    text-align: center;
    text-shadow: 0px 0px 10px #1a1a1a; }
  @media screen and (max-height: 670px) {
    .hero__cta {
      /* 縦幅が680px以下の画面に適用するスタイル */
      height: calc(100vh - 65px); } }
  @media (min-width: 768px) {
    .hero__cta {
      height: 680px; } }

.section {
  padding: 48px 2rem;
  clear: both; }
  .section p {
    margin: 0;
    color: #1a1a1a; }

.section__head {
  margin: 32px 0; }
  .section__head h1, .section__head h2 {
    font-size: 20px;
    margin: 0 0 6px; }
  .section__head p {
    margin: 0;
    color: #6b6b6b;
    text-align: center; }

.section--profile {
  margin: 0 0 2rem;
  padding: 0 1.5rem 0 30px;
  clear: both; }
  .section--profile .profile {
    margin-top: 30px;
    display: grid;
    gap: 16px; }
  .section--profile .timeline {
    margin: 0;
    padding-left: 10px;
    list-style: none;
    border-left: 3px solid rgba(4, 60, 120, 0.2); }
    .section--profile .timeline li {
      margin: 10px 0;
      font-size: 14.5px; }
      @media (min-width: 768px) {
        .section--profile .timeline li {
          font-size: 16px; } }
    .section--profile .timeline time {
      display: inline-block;
      min-width: 64px;
      color: #043c78;
      font-weight: 700; }

.profile_name {
  margin: 32px 0;
  padding: 0;
  padding-right: 30px; }
  .profile_name h3 {
    margin: 0 auto;
    padding: 0;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 1; }
  .profile_name h2 {
    margin: 0 auto;
    padding: 0;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    color: #043c78;
    letter-spacing: 2px; }
  .profile_name p {
    margin: 0 auto;
    padding: 0;
    font-size: 1rem;
    font-weight: bold;
    text-align: center; }

.pillars {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 12px; }
  .pillars li {
    padding: 16px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    text-align: center; }
  .pillars h3 {
    margin: 0 0 6px;
    font-size: 16px; }

.section--cards .cards {
  display: grid;
  gap: 12px; }
.section--cards .card {
  display: grid;
  gap: 0;
  grid-template-columns: 58px auto;
  position: relative;
  background: #043c78;
  border-radius: 12px; }
  @media (min-width: 768px) {
    .section--cards .card {
      grid-template-columns: 85px auto; } }
  .section--cards .card .card_text {
    padding: 10px; }
    .section--cards .card .card_text h3 {
      margin: 0px 0 7px;
      padding: 0;
      border-bottom: 1px solid #ffffff;
      color: #ffffff;
      text-align: left;
      font-weight: 700;
      font-size: clamp(14px, calc((92vw - 100px) / 15), 20px); }
    .section--cards .card .card_text p {
      color: #ffffff;
      font-size: 14px; }
  .section--cards .card .card_icon {
    margin: 0 auto;
    text-align: center;
    padding: 0;
    padding-left: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    vertical-align: middle; }
    .section--cards .card .card_icon img {
      width: 100%;
      height: auto;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat; }

.section--youtube {
  position: relative;
  overflow: hidden; }
  .section--youtube .youtube-slider {
    display: flex;
    transition: transform .5s ease; }
  .section--youtube .youtube-slide {
    min-width: 100%;
    padding: 0 4px;
    box-sizing: border-box; }
  .section--youtube .youtube__ratio {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    background: #000; }
  .section--youtube iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%; }
  .section--youtube .youtube-controls {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none; }
  .section--youtube .youtube-controls button {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer; }

@media (min-width: 768px) {
  .section--youtube .youtube-slide {
    padding: 0 12px; } }
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 8px 0 0; }
  .badges li {
    background: rgba(4, 60, 120, 0.1);
    color: #043c78;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px; }

.split {
  display: grid;
  gap: 16px; }

.stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px; }
  .stats strong {
    font-size: 20px;
    color: #043c78;
    display: inline-block;
    min-width: 3ch; }

.split_card {
  padding: 15px;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: lighten;
  background-color: #043c78; }
  .split_card h3 {
    color: #ffffff;
    border-bottom: 3px solid #ffffff;
    padding: 0.3em;
    margin-bottom: 15px;
    position: relative; }
  .split_card h3::before {
    content: '';
    background-color: #043c78;
    width: 15px;
    height: 3px;
    position: absolute;
    left: 30px;
    bottom: -3px; }
  .split_card h3::after {
    content: '';
    background-color: #ffffff;
    width: 15px;
    height: 3px;
    transform: rotate(50deg);
    position: absolute;
    left: 27px;
    bottom: -9px; }
  .split_card ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    .split_card ul > li {
      padding: 0 0 0.4em 1em;
      position: relative;
      color: #ffffff; }
      .split_card ul > li::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #ffffff;
        position: absolute;
        top: 11px;
        left: 0; }

.post {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden; }

.post__link {
  display: block;
  padding: 16px;
  text-decoration: none;
  color: #1a1a1a; }

.post__title {
  margin: 0 0 6px;
  font-size: 16px; }

.post__meta {
  margin: 0 0 6px;
  color: #6b6b6b;
  font-size: 12px; }

.post__excerpt {
  margin: 0;
  color: #3a3a3a; }

.section--support .support {
  display: grid;
  grid-auto-flow: row;
  gap: 8px; }

.site-footer {
  padding: 36px 0;
  background-color: #043c78;
  text-align: center;
  color: #ffffff;
  font-size: 12px; }

.btn {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  text-align: center;
  min-width: 44px; }
  .btn--primary {
    background: #043c78;
    color: #fff; }
  .btn--outline {
    background: transparent;
    color: #043c78;
    border-color: rgba(4, 60, 120, 0.35); }
  .btn--lg {
    padding: 14px 20px;
    font-size: 16px; }

/* タブレットレイアウト */
@media (min-width: 768px) {
  body {
    background-image: url("../img/bg.webp");
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed; }

  .content {
    max-width: 450px;
    margin: 0 auto;
    background: #ffffff; } }
/* PCレイアウト */
@media (min-width: 1080px) {
  body {
    background-image: url("../img/bg.webp");
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed; }

  .site-header {
    display: none; }

  .side-menu {
    display: block; }

  .side-portrait {
    display: block; }

  .content {
    max-width: 450px;
    margin: 0 auto;
    background: #ffffff; }

  .hero {
    padding-top: 0; }
    .hero__cta {
      height: 700px; } }
.modal {
  display: none;
  position: fixed;
  z-index: 4;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.3s; }

.modal img {
  max-width: 90%;
  /* 画像の最大幅を親要素(modal)の90%に制限し、画面内に収まるようにする */
  max-height: 100vh;
  /* 画像の最大高さをビューポートの高さ(100vh)に制限し、画面内に収まるようにする  */
  object-fit: contain;
  /* 画像の比率を保持しつつ、指定された高さと幅に収める */ }

.clickable-image:hover {
  cursor: zoom-in;
  /* ホバー時にカーソルをズームインのアイコンに変更 */ }

.modal img:hover {
  cursor: zoom-out;
  /* モーダル内の画像にホバー時にカーソルをズームアウトのアイコンに変更 */ }

@keyframes modalFadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes modalFadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
.jisseki10 {
  margin: 0 auto 50px;
  padding: 0; }
  .jisseki10 .midashi + p {
    margin: 0 0 32px; }

.jisseki_image {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 12px; }
  .jisseki_image li {
    list-style: none; }
  .jisseki_image li img {
    width: 100%;
    height: auto; }
  .jisseki_image p {
    margin: 6px 0 10px;
    font-size: 14px;
    line-height: 1.2; }

@media screen and (max-width: 460px) {
  .lum-lightbox-inner img {
    max-width: 100% !important;
    /* 軽くスワイプで左端から右端まで動かせる量 */
    max-height: 85vh !important;
    /* 上下に適度に余白 */ } }
@media (min-width: 1080px) {
  .lum-lightbox-inner img {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); } }
.lum-gallery-button {
  display: none !important; }

.midashi {
  position: relative;
  display: block;
  font-weight: bold;
  border-bottom: solid 3px #d5d5d5;
  margin: 0 auto 10px;
  padding: 5px 0 5px 0; }

.midashi::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #043c78;
  bottom: -3px;
  width: 20%; }

.page-title,
.midashi01 {
  position: relative;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 50px; }

.page-title span,
.midashi01 span {
  position: relative;
  z-index: 2;
  color: #043c78;
  font-size: 32px;
  line-height: 1.2; }

.page-title::before,
.midashi01::before {
  content: attr(data-en);
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(26, 26, 26, 0.2);
  font-size: 58px;
  font-style: italic; }

.midashi02 {
  font-weight: bold;
  font-size: 30px;
  width: fit-content;
  margin: auto;
  padding: 0.5em 1em;
  margin-bottom: 0.3em;
  text-align: center;
  position: relative; }

.midashi02::before, .midashi02::after {
  content: '';
  background-color: #043c78;
  width: 50%;
  height: 3px;
  position: absolute; }

.midashi02::before {
  top: 0;
  left: 0; }

.midashi02::after {
  bottom: 0;
  right: 0; }

.midashi03 {
  position: relative;
  padding: 8px 32px;
  font-size: 24px;
  letter-spacing: 0.1em;
  font-weight: 700;
  display: block;
  box-sizing: border-box;
  width: fit-content;
  text-align: center;
  margin: 24px;
  margin-inline: auto; }

.midashi03::before, .midashi03::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #043c78;
  width: 40px;
  height: 3px;
  rotate: -25deg;
  display: inline-block; }

.midashi03::before {
  top: -8px; }

.midashi03::after {
  bottom: 8px; }

.midashi04 {
  font-weight: bold;
  font-size: 24px;
  border-bottom: 3px solid #043c78;
  padding: 0.3em;
  margin-bottom: 10px;
  position: relative; }

.midashi04::before {
  content: '';
  background-color: #ffffff;
  width: 20px;
  height: 3px;
  position: absolute;
  left: 30px;
  bottom: -3px; }

.midashi04::after {
  content: '';
  background-color: #043c78;
  width: 20px;
  height: 3px;
  transform: rotate(50deg);
  position: absolute;
  left: 25px;
  bottom: -10px; }

.midashi05 {
  position: relative;
  text-align: center;
  color: #1a1a1a;
  /* 文字色（黒）*/
  padding-bottom: 0.5rem;
  /*見出し下の余白調整 */
  margin-bottom: 32px;
  font-size: 28px; }

.midashi05:before {
  content: '';
  position: absolute;
  bottom: 0;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 50px;
  /*線の幅*/
  background: #043c78;
  /*線の色 */ }

.midashi06 {
  position: relative;
  display: block;
  font-weight: bold;
  border-bottom: solid 3px #d5d5d5;
  margin: 0 auto 10px;
  padding: 5px 0 5px 0;
  font-size: 24px; }

.midashi06::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #043c78;
  bottom: -3px;
  width: 20%; }

.midashi07 {
  position: relative;
  padding: 1em 2em;
  text-align: center;
  font-size: 32px;
  font-family: mode-mincho-a-large-std, sans-serif;
  font-weight: 400;
  font-style: normal; }

.midashi07:before,
.midashi07:after {
  position: absolute;
  content: ''; }

.midashi07:after {
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-top: 2px solid #000;
  border-left: 2px solid #000; }

.midashi07:before {
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000; }

.midashi08 {
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-size: 24px;
  font-weight: 700;
  padding: 5px;
  line-height: 2.3;
  background: rgba(165, 200, 237, 0.8); }

.ttl_center5 {
  font-weight: bold;
  width: fit-content;
  margin: auto;
  padding: 0.5em 1em;
  margin-bottom: 0.3em;
  text-align: center;
  position: relative; }

.ttl_center5::before, .ttl_center5::after {
  content: '';
  background-color: #4A89CD;
  width: 50%;
  height: 3px;
  position: absolute; }

.ttl_center5::before {
  top: 0;
  left: 0; }

.ttl_center5::after {
  bottom: 0;
  right: 0; }

.title-32 {
  position: relative;
  padding: 8px 32px;
  font-family: 'Noto Sans JP', serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: #333;
  font-weight: 700;
  display: block;
  box-sizing: border-box;
  max-width: 520px;
  text-align: center;
  margin: 24px;
  margin-inline: auto; }

.title-32::before, .title-32::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #043c78;
  width: 40px;
  height: 3px;
  rotate: -25deg;
  display: inline-block; }

.title-32::before {
  top: -8px; }

.title-32::after {
  bottom: 8px; }

.title-21 {
  position: relative;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 48px; }
  .fullArea > .section__head > .title-21 {
    margin-top: 48px; }

.title-21 span {
  position: relative;
  z-index: 2;
  color: #043c78;
  font-size: 32px;
  line-height: 1; }

.title-21::before {
  content: attr(data-en);
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(26, 26, 26, 0.2);
  font-size: 58px;
  font-style: italic; }

.title-21.name {
  position: relative;
  font-weight: bold;
  text-align: center;
  margin: 0 auto; }

.title-21.name span {
  position: relative;
  z-index: 2;
  color: #043c78;
  font-size: 42px; }

.title-21.name::before {
  content: attr(data-en);
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  color: #1a1a1a;
  font-size: 20px; }

.title-21 + p {
  font-size: 24px;
  font-weight: bold;
  color: #1a1a1a; }

.ttl_balloon5 {
  font-weight: bold;
  border-bottom: 3px solid #043c78;
  padding: 0.3em;
  margin-bottom: 10px;
  position: relative; }
  #belief-posture .ttl_balloon5 {
    color: #043c78; }

.ttl_balloon5::before {
  content: '';
  background-color: #ffffff;
  width: 20px;
  height: 3px;
  position: absolute;
  left: 30px;
  bottom: -3px; }
  #belief-posture .ttl_balloon5::before {
    background-color: #B2D7FF; }

.ttl_balloon5::after {
  content: '';
  background-color: #043c78;
  width: 20px;
  height: 3px;
  transform: rotate(50deg);
  position: absolute;
  left: 25px;
  bottom: -10px; }

.title-22 {
  position: relative;
  text-align: center;
  color: #333;
  /* 文字色（黒）*/
  padding-bottom: 0.5rem;
  /*見出し下の余白調整 */
  margin-bottom: 32px; }

.title-22:before {
  content: '';
  position: absolute;
  bottom: 0;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 50px;
  /*線の幅*/
  background: #043c78;
  /*線の色 */ }

.title-23 {
  position: relative;
  padding: 1em 2em;
  text-align: center; }

.title-23:before,
.title-23:after {
  position: absolute;
  content: ''; }

.title-23:after {
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-top: 2px solid #000;
  border-left: 2px solid #000; }

.title-23:before {
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000; }

.fullArea {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  overflow-x: hidden; }
  .fullArea.gray {
    background: #e9e9e9; }
  .fullArea.orange {
    background: linear-gradient(to bottom, #018be9 50%, #ff9e17 50% 100%); }
  .fullArea.blue {
    background: #A5C8ED; }
  .fullArea.white {
    background: #ffffff; }

.innerArea {
  margin: 0 auto;
  padding: 65px 2rem 60px;
  width: 100%;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .innerArea {
      padding: 65px 2rem 140px; } }

.nanameshita {
  clip-path: polygon(0 0, 100% 10vw, 100% 100%, 0 calc(100% - 10vw)); }
  @media (min-width: 768px) {
    .nanameshita {
      clip-path: polygon(0 0, 100% 5vw, 100% 100%, 0 calc(100% - 5vw)); } }

.nanameyuru {
  clip-path: polygon(0 5vw, 100% 0, 100% calc(100% - 5vw), 0 100%); }

.nanameue {
  clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 50px), 0 100%); }
  @media (min-width: 768px) {
    .nanameue .innerArea {
      padding: 65px 2rem 65px; } }

.nanameue2 {
  clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%); }
  @media (min-width: 768px) {
    .nanameue2 .innerArea {
      padding: 65px 2rem 65px; } }

.detail {
  margin: 30px auto 0;
  padding: 0;
  text-align: center;
  display: block;
  width: 100%; }

a.detail-button {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  border-radius: 5px;
  width: 100%;
  height: 60px;
  position: relative;
  transition: 0.3s;
  background-color: [object object];
  background-image: linear-gradient(180deg, #3171b4, #0e58a4); }

a.detail-button::before,
a.detail-button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform-origin: 100% 50%;
  height: 1px;
  width: 11px;
  background-color: #ffffff;
  border-radius: 2px;
  will-change: transform;
  transition: .3s; }

a.detail-button::before {
  transform: translateY(-50%) rotate(30deg); }

a.detail-button::after {
  transform: translateY(-50%) rotate(-30deg); }

a.detail-button:hover::before {
  transform: translate(5px, -50%) rotate(30deg); }

a.detail-button:hover::after {
  transform: translate(5px, -50%) rotate(-30deg); }

.rinen_card {
  padding: 15px;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  background-color: white; }
  .rinen_card h3 {
    position: relative;
    margin-bottom: 24px;
    padding: 1em 2em;
    text-align: center; }
  .rinen_card h3:before,
  .rinen_card h3:after {
    position: absolute;
    content: ''; }
  .rinen_card h3:after {
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-top: 2px solid #000;
    border-left: 2px solid #000; }
  .rinen_card h3:before {
    right: 0;
    bottom: 0;
    width: 40px;
    height: 40px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000; }
  .rinen_card ul {
    list-style-type: disc;
    list-style-position: inside;
    margin: 0;
    padding: 0; }
    .rinen_card ul li {
      padding: 0 0 0 0; }
      .rinen_card ul li::marker {
        color: #043c78;
        font-size: 1.1em; }

.plist_type_circle {
  margin: 0;
  padding: 0;
  list-style: none; }
  .plist_type_circle > li {
    padding: 0 0 0.4em 1em;
    position: relative; }
    .plist_type_circle > li::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #4A89CD;
      position: absolute;
      top: 11px;
      left: 0; }

.editor_text p {
  margin-bottom: 1rem; }
