@charset "UTF-8";
@import '../style.css';
html {
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  word-break: break-all;
  font-size: 10px;
}
@media (min-width: 768px) and (max-width: 1260px) {
  html {
    font-size: 0.7936507937vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 auto;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

/* PC、SPの非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
img {
  width: 100%;
}

#container {
  width: 100%;
  overflow: hidden;
}

.inner {
  width: 124rem;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .inner {
    width: 100%;
  }
}

/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: 500;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

.l-header {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding-inline: min(1.3888888889vw, 20px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #fff;
}
@media (max-width: 767px) {
  .l-header {
    padding-inline: 2rem;
    height: 6.5rem;
  }
}

.l-header__logo {
  width: min(17.3611111111vw, 250px);
  font-weight: 500;
  height: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .l-header__logo {
    width: 13.6rem;
  }
}
.l-header__logo img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .l-header__logo img {
    height: 100%;
  }
}
.l-header__logo:hover img {
  opacity: 0.6;
}

@media (max-width: 767px) {
  .l-header__contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 2.8rem;
       -moz-column-gap: 2.8rem;
            column-gap: 2.8rem;
  }
}

.l-header__hb-btn {
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 500;
}
@media (max-width: 767px) {
  .l-header__hb-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.l-header__hb-inner {
  width: 2.2rem;
  height: 2.2rem;
  position: relative;
}
.l-header__hb-inner span {
  width: 100%;
  height: 5px;
  background: #868686;
  position: absolute;
  left: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.l-header__hb-inner span:nth-of-type(1) {
  top: 0;
}
.l-header__hb-inner span:nth-of-type(2) {
  top: 0.9rem;
}
.l-header__hb-inner span:nth-of-type(3) {
  top: 1.8rem;
}

.l-header__hb-btn.active span:nth-of-type(1) {
  top: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #fff;
}
.l-header__hb-btn.active span:nth-of-type(2) {
  display: none;
}
.l-header__hb-btn.active span:nth-of-type(3) {
  top: 5px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #fff;
}

.l-header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (min-width: 768px) {
  .l-header__nav {
    position: static;
    width: auto;
    background: transparent;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (max-width: 767px) {
  .l-header__nav {
    margin: initial;
    width: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    color: #ffffff;
    height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 1;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-top: 5rem;
    background: -webkit-gradient(linear, right top, left top, from(#19c0ff), to(#0098ec));
    background: -webkit-linear-gradient(right, #19c0ff, #0098ec);
    background: linear-gradient(to left, #19c0ff, #0098ec);
  }
  .l-header__nav.active {
    right: 0;
  }
}

.l-header__nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: min(0.6944444444vw, 10px);
     -moz-column-gap: min(0.6944444444vw, 10px);
          column-gap: min(0.6944444444vw, 10px);
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
@media (max-width: 767px) {
  .l-header__nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 767px) {
  .menu-item {
    width: 100%;
  }
  .l-header__nav.active .menu-item {
    border-bottom: 1px solid #fff;
  }
  .l-header__nav.active .menu-item:last-child {
    border-bottom: none;
  }
}

.menu-item a {
  height: 10rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: min(1.25vw, 18px);
  font-weight: 700;
  padding-inline: min(1.0416666667vw, 15px);
  position: relative;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
  color: #0082ff;
  background: transparent;
}
@media (max-width: 767px) {
  .menu-item a {
    width: 100%;
    height: 5rem;
    padding-left: 2.2rem;
    font-size: 1.7rem;
    padding: 2.9rem 3.2rem;
    color: #fff;
  }
}
.menu-item a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  background: -webkit-gradient(linear, left top, right top, from(#19c0ff), to(#0098ec));
  background: -webkit-linear-gradient(left, #19c0ff, #0098ec);
  background: linear-gradient(to right, #19c0ff, #0098ec);
  pointer-events: none;
  border-radius: inherit; /* 親の角丸を継承 */
}
@media (min-width: 768px) {
  .menu-item a:hover {
    color: #ffffff;
  }
  .menu-item a:hover::before {
    opacity: 1;
  }
}

/* お問い合わせメニュー項目のボタンスタイル */
@media (max-width: 767px) {
  #menu-item-281 {
    margin-top: 4rem;
    width: 80%;
  }
}

#menu-item-281.menu-item a {
  overflow: hidden; /* 角丸クリッピング */
  position: relative; /* Safariバグ対策 */
  background: -webkit-gradient(linear, left top, right top, from(#19c0ff), to(#0098ec));
  background: -webkit-linear-gradient(left, #19c0ff, #0098ec);
  background: linear-gradient(to right, #19c0ff, #0098ec);
  color: #fff;
  font-size: min(1.3888888889vw, 20px);
  border-radius: min(3.4722222222vw, 50px);
  padding-inline: min(3.4722222222vw, 50px);
  font-weight: 700;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  border: min(0.1388888889vw, 2px) solid #29b6f6;
  height: min(4.1666666667vw, 60px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  #menu-item-281.menu-item a:hover {
    background: -webkit-gradient(linear, left top, right top, from(rgba(25, 192, 255, 0.7)), to(rgba(0, 152, 236, 0.7)));
    background: -webkit-linear-gradient(left, rgba(25, 192, 255, 0.7), rgba(0, 152, 236, 0.7));
    background: linear-gradient(to right, rgba(25, 192, 255, 0.7), rgba(0, 152, 236, 0.7));
    color: #fff;
    border-radius: min(3.4722222222vw, 50px); /* ホバー時も明示的に指定 */
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  #menu-item-281.menu-item a {
    text-align: center;
    display: grid;
    place-content: center;
    height: 4.2rem;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffa726), to(#ef6c00));
    background: -webkit-linear-gradient(top, #ffa726, #ef6c00);
    background: linear-gradient(to bottom, #ffa726, #ef6c00);
    color: #fff;
    border-radius: 4rem;
    font-size: 1.5rem;
    font-weight: 700;
    -webkit-transition: background 0.8s ease;
    transition: background 0.8s ease;
  }
  #menu-item-281.menu-item a:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 167, 38, 0.7)), to(rgba(239, 108, 0, 0.7)));
    background: -webkit-linear-gradient(top, rgba(255, 167, 38, 0.7), rgba(239, 108, 0, 0.7));
    background: linear-gradient(to bottom, rgba(255, 167, 38, 0.7), rgba(239, 108, 0, 0.7));
  }
}

.l-wrapper {
  position: relative;
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .l-wrapper {
    margin-top: 5rem;
  }
}

.l-header__contact-btn {
  display: none;
}
@media (max-width: 767px) {
  .l-header__contact-btn {
    display: block;
  }
  .l-header__contact-btn .c-button--head {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  body.menu-open {
    overflow: hidden;
  }
}

.l-footer {
  padding: 7.5rem 2rem 9rem;
  background: #fff;
}
@media (max-width: 767px) {
  .l-footer {
    padding: 2.5rem 2rem 5rem;
  }
}

.l-footer__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: flex;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.l-footer__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.9411764706;
  color: #ffffff;
  display: flex;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media (max-width: 767px) {
  .l-footer__nav-list {
    font-size: 1.7rem;
  }
}

.l-footer__nav .menu-item a {
  padding: 1.65rem;
  -webkit-transition: 1s;
  transition: 1s;
}
.l-footer__nav .menu-item a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .l-footer__nav .menu-item a:hover {
    background: #00b9ff;
    color: #ffffff;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
}
@media (max-width: 767px) {
  .l-footer__nav .menu-item a {
    padding: 1.5rem;
  }
}

.l-footer__nav .menu-item a::after {
  display: none;
}

.l-footer__logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0rem;
}
@media (max-width: 767px) {
  .l-footer__logo {
    margin-top: 1rem;
  }
}
.l-footer__logo img {
  width: 26rem;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.l-footer__logo img:hover {
  opacity: 0.5;
}

.l-footer__copyright {
  text-align: center;
  margin-top: 4rem;
}
.l-footer__copyright .footer-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2b4e74;
  line-height: 1.4;
  display: block;
  margin-bottom: 0.2em;
}
@media (max-width: 767px) {
  .l-footer__copyright .footer-title {
    font-size: 1.6rem;
  }
}
.l-footer__copyright .footer-company {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2b4e74;
  display: block;
  margin-bottom: 1.5em;
}
@media (max-width: 767px) {
  .l-footer__copyright .footer-company {
    font-size: 1.2rem;
  }
}
.l-footer__copyright .footer-copy {
  font-size: 1.3rem;
  color: #2b4e74;
  margin-top: 0.5em;
}
@media (max-width: 767px) {
  .l-footer__copyright .footer-copy {
    font-size: 1.2rem;
  }
}

.c-button {
  background: #00b9ff;
  border: 1px solid #00b9ff;
  color: #fff;
  display: grid;
  place-content: center;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition: background-color 1s ease, color 1s ease, border 1s ease;
  transition: background-color 1s ease, color 1s ease, border 1s ease;
}

/* ヘッダーボタン */
.c-button--head {
  font-size: 2rem;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, right top, from(#19c0ff), to(#0098ec));
  background: -webkit-linear-gradient(left, #19c0ff, #0098ec);
  background: linear-gradient(to right, #19c0ff, #0098ec);
  color: #fff;
  padding: 1.5rem 9rem 1.5rem 2rem;
  border-radius: 5px;
  -webkit-transition-property: background, color, border;
  transition-property: background, color, border;
  position: relative;
}
@media (max-width: 767px) {
  .c-button--head {
    font-size: 1.6rem;
    font-weight: 500;
    padding: 0.6rem 2.8rem 0.6rem 1rem;
    margin: 0 auto;
    text-align: left;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.c-button--head::after {
  position: absolute;
  content: "";
  background-image: url(../img/common/arrow-small.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3rem;
  height: 3rem;
  right: 1rem;
  top: 1rem;
}
@media (max-width: 767px) {
  .c-button--head::after {
    width: 2rem;
    height: 2rem;
    right: 0.5rem;
    top: 0.5rem;
    background-image: url(../img/common/arrow-small-sp.svg);
  }
}
.c-button--head:hover {
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.c-button--header {
  font-size: 1.5rem;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#19c0ff), to(#0098ec));
  background: -webkit-linear-gradient(left, #19c0ff, #0098ec);
  background: linear-gradient(to right, #19c0ff, #0098ec);
  color: #fff;
  padding: 1.5rem 9rem 1.5rem 2rem;
  -webkit-transition-property: background, color, border;
  transition-property: background, color, border;
  position: relative;
}
@media (max-width: 767px) {
  .c-button--header {
    width: 12rem;
    height: 4rem;
    border-radius: 2.4rem;
    padding: 0;
    display: grid;
    place-content: center;
  }
}

.c-button--header:hover {
  background-color: #ffffff;
  color: #00b9ff;
  border: 1px solid #00b9ff;
}

.c-button--link {
  font-size: 2rem;
  font-weight: 500;
  background: -webkit-gradient(linear, left top, right top, from(#19c0ff), to(#0098ec));
  background: -webkit-linear-gradient(left, #19c0ff, #0098ec);
  background: linear-gradient(to right, #19c0ff, #0098ec);
  color: #fff;
  padding: 1.5rem 9rem 1.5rem 2rem;
}

.js-button-wrapper {
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 99;
  display: none;
}
@media (max-width: 767px) {
  .js-button-wrapper {
    right: 2rem;
    z-index: 99;
  }
}

.js-arrow-wrapper {
  position: fixed;
  bottom: 0;
  z-index: 99;
  display: none;
  right: 10rem;
}
@media (max-width: 767px) {
  .js-arrow-wrapper {
    right: 2rem;
    z-index: 99;
  }
}

@media (max-width: 767px) {
  .page-contact .js-arrow-wrapper {
    right: 3rem;
  }
}

.contact-btn {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#19c0ff), color-stop(90%, #19c0ff), to(#fff));
  background: -webkit-linear-gradient(left, #19c0ff 0%, #19c0ff 90%, #fff 100%);
  background: linear-gradient(90deg, #19c0ff 0%, #19c0ff 90%, #fff 100%);
  color: white;
  padding: 16px 48px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  border: none;
  font-size: 1.2rem;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.c-tag {
  text-align: center;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #557190;
  overflow: hidden;
  display: inline-block;
  border-radius: 30px/30px;
}
.c-tag:hover {
  visibility: visible;
  opacity: 1;
}

.tag--small {
  top: 0;
  left: 0;
  min-width: 8rem;
  max-width: 100%;
  height: 3rem;
  font-size: 1.5rem;
  line-height: 2.3;
  font-weight: 500;
  padding: 0 0.3rem;
}
@media (max-width: 767px) {
  .tag--small {
    min-width: 8rem;
  }
}

.tag--large {
  top: 0;
  left: 0;
  min-width: 10rem;
  max-width: 100%;
  height: 3rem;
  font-size: 1.5rem;
  line-height: 2.3;
  font-weight: 500;
}
@media (max-width: 767px) {
  .tag--large {
    min-width: 10rem;
  }
}

.tag--result {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 10rem;
  max-width: 100%;
  height: 3rem;
  font-size: 1.5rem;
  line-height: 2.3;
  font-weight: 500;
  padding: 0 0.3rem;
}
@media (max-width: 767px) {
  .tag--result {
    min-width: 8rem;
  }
}

.tag--blog {
  font-size: 1.4rem;
  line-height: 2.3;
  font-weight: 500;
  padding: 0rem 3rem;
}
.c-topic-cate {
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
  line-height: 1;
  background: #557190;
  color: #fff;
  font-weight: 500;
  border-radius: 1.8rem;
  display: inline-block;
}
@media (max-width: 767px) {
  .c-topic-cate {
    font-size: 1.2rem;
    padding: 0.6rem 0.8rem;
    border-radius: 3vw;
  }
}
.c-topic-cate[data-mod=hot-topics] {
  padding: 0.5555555556vw 1.1111111111vw;
  font-size: 0.9722222222vw;
  border-radius: 1.25vw;
}
@media (max-width: 767px) {
  .c-topic-cate[data-mod=hot-topics] {
    font-size: 1.2rem;
    padding: 0.6rem 1.2rem;
    border-radius: 3vw;
  }
}

.c-topic-tag {
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
  line-height: 1;
  border: 0.1rem solid #557190;
  color: #557190;
  font-weight: 500;
  border-radius: 1.8rem;
  display: inline-block;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .c-topic-tag {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 3vw;
  }
}
.c-topic-tag[data-mod=hot-topics] {
  padding: 0.5555555556vw 1.1111111111vw;
  font-size: 0.9722222222vw;
  border-radius: 1.25vw;
}
@media (max-width: 767px) {
  .c-topic-tag[data-mod=hot-topics] {
    font-size: 1.2rem;
    padding: 0.6rem 1.2rem;
    border-radius: 3vw;
  }
}

.c-topic-tag[data-mod=hot-topics] {
  padding: 0.5555555556vw 1.1111111111vw;
  font-size: 0.9722222222vw;
  border-radius: 1.25vw;
  letter-spacing: 0.01em;
}

@media (max-width: 767px) {
  .c-topic-tag[data-mod=hot-topics] {
    font-size: 1.2rem;
    padding: 0.6rem 1.2rem;
    border-radius: 3vw;
  }
}
.c-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

.c-title--large {
  display: grid;
  place-items: center;
  /* テキストにグラデーションをかける */
  background: -webkit-gradient(linear, left top, right top, from(#0098ec), to(#19c0ff));
  background: -webkit-linear-gradient(left, #0098ec, #19c0ff);
  background: linear-gradient(to right, #0098ec, #19c0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 6rem;
  font-weight: 900;
}
@media (max-width: 767px) {
  .c-title--large {
    font-size: 3rem;
  }
}

.c-title--small {
  display: grid;
  place-items: center;
  color: #0098ec;
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .c-title--small {
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}

.c-pagination {
  display: inline-block;
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .c-pagination {
    width: 100%;
    white-space: nowrap;
  }
}
.c-pagination .page-numbers {
  display: inline-block;
  width: 5rem;
  height: 5rem;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 2.8;
  text-decoration: none;
  color: #000;
  border: 1px solid #000;
  margin-right: 0.4rem;
  margin-bottom: 0.1rem;
  -webkit-transition: 1s;
  transition: 1s;
}
@media (max-width: 767px) {
  .c-pagination .page-numbers {
    margin-right: 0.3rem;
    margin-bottom: 0.8rem;
  }
}
.c-pagination .page-numbers:hover {
  background-color: #000;
  color: #fff;
}
.c-pagination :last-child {
  margin-right: 0;
}
.c-pagination .current {
  color: #fff;
  background: #000;
}
.c-pagination .dots {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  margin-right: 0px;
  border: none;
  pointer-events: none;
}
@media (max-width: 767px) {
  .c-pagination .dots {
    margin-right: 0;
  }
}

/* メイン背景 */
.p-front-page {
  background-image: url("../img/front-page/bg-top.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .p-front-page {
    background-image: url("../img/front-page/bg-top-sp.webp");
  }
}

.p-mv {
  position: relative;
}

.p-mv__title {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.p-mv__img {
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-mv__img-deco {
  position: absolute;
  top: -0.2rem;
  left: 0;
  width: 60%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 767px) {
  .p-mv__img-deco {
    display: none;
  }
}
.p-mv__img-deco img {
  width: 100%;
  height: auto;
  display: block;
}

.p-mv__text {
  position: absolute;
  top: 65%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
  min-width: 80rem;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-mv__text {
    top: 35rem;
    min-width: 50rem;
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .p-mv__text {
    top: 36rem;
    left: 17rem;
    width: 100%;
    max-width: 31rem;
    min-width: auto;
  }
}
.p-mv__text img {
  width: 100%;
  height: auto;
  display: block;
}

/* ボタンスタイル */
.c-btn--secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #0288d1;
  border: 2px solid white;
}
.c-btn--secondary:hover {
  background: white;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

/* NEWSセクション */
.p-news {
  padding: 0 0 0 0;
}
@media (max-width: 767px) {
  .p-news {
    padding: 2rem 0 4rem;
  }
}

.p-news__container {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 767px) {
  .p-news__container {
    padding: 0;
  }
}

.p-news__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-bottom: 7rem;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 767px) {
  .p-news__header {
    display: contents;
  }
}

.p-news-list__header-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
}

.p-news-list__meta {
  min-width: 100px;
  margin-right: 16px;
}
@media (max-width: 767px) {
  .p-news-list__meta {
    min-width: auto;
    margin-right: 0;
    margin-bottom: 8px;
  }
}

.p-news-list__date {
  font-size: 1.9rem;
  font-weight: 500;
  color: #666;
}
@media (max-width: 767px) {
  .p-news-list__date {
    font-size: 1.6rem;
  }
}

.p-news-list__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 16px;
}
@media (max-width: 767px) {
  .p-news-list__body {
    margin-right: 0;
    margin-bottom: 8px;
    width: 100%;
  }
}

.p-news-list__title {
  color: #121a29;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  display: block;
  margin-bottom: 8px;
  max-width: 80rem;
}
@media (max-width: 767px) {
  .p-news-list__title {
    font-size: 1.4rem;
  }
}
.p-news-list__title:hover {
  color: #0066cc;
}

.p-news-list__tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 767px) {
  .p-news-list__tags {
    margin-top: 0px;
  }
}

.c-tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  border-radius: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.p-news-list__arrow {
  margin-left: auto;
  position: relative;
}
@media (max-width: 767px) {
  .p-news-list__arrow {
    margin-left: 0;
    -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
            align-self: flex-end;
  }
}

/* スマートフォン表示時は1つの記事のみ表示 */
@media (max-width: 767px) {
  .p-news-list__items .p-news-list__item:nth-child(n+2) {
    display: none !important;
  }
  /* NEWSセクションでも同様に1つの記事のみ表示 */
  .p-news .p-news-list__items .p-news-list__item:nth-child(n+2) {
    display: none !important;
  }
  /* より具体的なセレクタで確実に非表示にする */
  .p-news .p-news-list .p-news-list__items .p-news-list__item:nth-child(n+2) {
    display: none !important;
  }
  .p-news__link {
    margin-left: 0;
  }
  /* より具体的にaタグをターゲット */
  .p-news .p-news-list .p-news-list__items .p-news-list__item-link:nth-child(n+2) {
    display: none !important;
  }
  .p-news__category {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }
  .p-news__title {
    font-size: 1.1rem;
  }
}
.p-news__topics {
  padding: 6rem 0;
  background: white;
}

.p-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .p-news__grid {
    grid-template-columns: 1fr;
  }
}

.p-news__card {
  display: block;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-news__card:hover {
  opacity: 0.7;
}

.p-news__icon {
  width: 100%;
  height: auto;
}

/* キーワード検索タイトル */
.p-keyword-search__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin: 5rem 0 3rem;
  color: #2b4e74;
  line-height: 1.4;
  position: relative;
}
@media (max-width: 767px) {
  .p-keyword-search__title {
    font-size: 1.8rem;
    margin: 3rem 0 1rem;
  }
}

.p-keyword-search__tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .p-keyword-search__tags {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

/* 各タグボタン */
.p-keyword-search__tag {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #fff;
  color: #557190;
  font-size: 2rem;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.p-keyword-search__tag:hover {
  background: #4fc3f7;
  color: #fff;
}
@media (max-width: 767px) {
  .p-keyword-search__tag {
    font-size: 1.5rem;
    padding: 0.5rem 2.2rem;
  }
}

.p-hot-topics {
  padding-block: 13rem 14rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-hot-topics {
    padding-block: 5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-hot-topics__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 767px) {
  .p-hot-topics__header {
    display: contents;
  }
}

.p-hot-topics__header-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
}
@media (max-width: 767px) {
  .p-hot-topics__header-title {
    padding-inline: 3rem;
  }
}

.p-hot-topics__contents {
  position: relative;
  margin-top: 4rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-hot-topics__contents {
    margin-top: 2rem;
  }
}

.p-hot-topics__items .slick-arrow {
  width: 4.8611111111vw;
  height: 4.8611111111vw;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  z-index: 100;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
  display: grid;
  place-content: center;
  cursor: pointer;
}
@media (max-width: 767px) {
  .p-hot-topics__items .slick-arrow {
    width: 3.7rem;
    height: 3.7rem;
  }
}
.p-hot-topics__items .slick-arrow::before {
  content: "";
  display: block;
  width: 1.6666666667vw;
  height: 1.6666666667vw;
  border-top: 0.2rem solid #00b9ff;
  border-right: 0.2rem solid #00b9ff;
}
@media (max-width: 767px) {
  .p-hot-topics__items .slick-arrow::before {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.p-hot-topics__items .slick-prev {
  left: calc(50% - 36.1111111111vw);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .p-hot-topics__items .slick-prev {
    padding-left: 1rem;
    left: calc(50% - 16rem);
  }
}
.p-hot-topics__items .slick-prev::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.p-hot-topics__items .slick-next {
  left: calc(50% + 36.1111111111vw);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding-right: 2rem;
}
@media (max-width: 767px) {
  .p-hot-topics__items .slick-next {
    padding-right: 1rem;
    left: calc(50% + 16rem);
  }
}
.p-hot-topics__items .slick-next::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-hot-topics__items .slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-hot-topics__items.is-slider .c-topics-item:not(.slick-active) {
  opacity: 0.5;
  pointer-events: none;
}

.c-topics-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 1.1111111111vw;
  overflow: hidden;
  background: #fff;
  margin-inline: 0.6944444444vw;
  height: auto !important;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .c-topics-item {
    margin-inline: 15px;
    max-width: 350px;
    border-radius: 12px;
  }
}
@media (max-width: 767px) {
  .c-topics-item {
    margin-inline: 3rem;
    padding: 2rem;
  }
}
.c-topics-item__img {
  overflow: hidden;
  aspect-ratio: 16/9;
  display:none;
}
.c-topics-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.c-topics-item__textarea {
  padding: 0.9722222222vw 1.3888888889vw 2.0833333333vw;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .c-topics-item__textarea {
    padding: 14px 20px 30px;
  }
}
@media (max-width: 767px) {
  .c-topics-item__textarea {
    padding: 0;
    margin-top: 1rem;
  }
}
.c-topics-item__date {
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .c-topics-item__date {
    font-size: 1.3rem;
  }
}
.c-topics-item__title {
  margin-top: 1.8055555556vw;
  height: 6.9444444444vw;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .c-topics-item__title {
    margin-top: 20px;
    height: 60px;
  }
}
@media (max-width: 767px) {
  .c-topics-item__title {
    height: 6.3rem;
    margin-top: 1.8rem;
  }
}
.c-topics-item__title h3 {
  font-size: 1.3888888889vw;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .c-topics-item__title h3 {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .c-topics-item__title h3 {
    font-size: 1.6rem;
    border-bottom: 1px solid #222;
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
  }
}
.c-topics-item__terms {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.5555555556vw;
  margin-top: 1.3888888889vw;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .c-topics-item__terms {
    row-gap: 8px;
    margin-top: 16px;
  }
}
@media (max-width: 767px) {
  .c-topics-item__terms {
    margin-top: 3rem;
    gap: 1rem;
  }
}
.c-topics-item__tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.6944444444vw;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .c-topics-item__tags {
    gap: 8px;
  }
}
@media (any-hover: hover) {
  .c-topics-item:hover .c-topics-item__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@media (max-width: 767px) {
  .p-keyword-search {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
}

.p-about {
  padding: 10rem 0 0 0;
  background: #fff;
}
@media (max-width: 767px) {
  .p-about {
    padding: 3.3rem 0 3.3rem 0;
  }
}

.p-about__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .p-about__header {
    margin-bottom: 3rem;
  }
}

.p-about__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4rem;
  max-height: 34rem;
}
@media (max-width: 767px) {
  .p-about__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-height: none !important;
  }
}

.p-about__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media (max-width: 767px) {
  .p-about__text {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}

.p-about__image {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  top: -20rem;
}
@media (max-width: 767px) {
  .p-about__image {
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    top: 0;
  }
}

.p-about__description {
  width: 99%;
  display: block;
  margin-bottom: 1em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  color: #121a29;
}
@media (max-width: 767px) {
  .p-about__description {
    margin-bottom: 0rem;
  }
}

.highlight {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2b4e74;
  line-height: 2;
  margin-bottom: 1rem;
}

/* お問い合わせセクション */
.p-contact {
  padding: 9rem 0rem 6rem;
  text-align: center;
}
@media (max-width: 767px) {
  .p-contact {
    padding: 4rem 0rem;
  }
}
.p-contact__copy {
  font-size: 1.8rem;
  font-weight: 700;
  color: #121a29;
  text-align: left;
}
@media (max-width: 767px) {
  .p-contact__copy {
    font-size: 1.6rem;
    letter-spacing: -0.01em;
  }
}
.p-contact__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  margin-top: 7rem;
  padding: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .p-contact__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
  }
}
.p-contact__item {
  border-radius: 30px;
  background: -webkit-linear-gradient(135deg, #80dcff 0%, #28a8ef 100%);
  background: linear-gradient(315deg, #80dcff 0%, #28a8ef 100%);
  width: 100%;
  max-width: 57.8rem;
  height: auto;
  padding: 8rem 2rem 6rem;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .p-contact__item {
    padding: 5.6rem 2rem 5rem;
  }
}
.p-contact__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}
@media (max-width: 767px) {
  .p-contact__title {
    font-size: 1.8rem;
    margin-bottom: 3.6rem;
  }
}
.p-contact__desc {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 3rem;
  text-align: center;
}
.p-contact__desc br {
  display: block;
  content: "";
}
@media (max-width: 767px) {
  .p-contact__desc {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
.p-contact__button {
  text-align: center;
}
.p-contact__button a {
  display: inline-block;
  padding: 2.4rem 10rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffa726), to(#ef6c00));
  background: -webkit-linear-gradient(top, #ffa726, #ef6c00);
  background: linear-gradient(to bottom, #ffa726, #ef6c00);
  color: #fff;
  border-radius: 15px;
  text-decoration: none;
  font-size: 2.4rem;
  font-weight: 700;
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s ease;
}
.p-contact__button a:hover {
  background: -webkit-gradient(linear, left top, right top, from(#ff8800), to(#ff4d00));
  background: -webkit-linear-gradient(left, #ff8800, #ff4d00);
  background: linear-gradient(to right, #ff8800, #ff4d00);
}
@media (max-width: 767px) {
  .p-contact__button a {
    padding: 1.8rem 6rem;
    font-size: 1.5rem;
    border-radius: 50px;
  }
}

.p-contact__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .p-contact__header {
    margin-bottom: 2rem;
  }
}

/* NEWSセクション */
.p-news-list {
  padding: 0 0 8rem 0;
}
@media (max-width: 767px) {
  .p-news-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 0 0 0;
  }
}

@media (max-width: 767px) {
  .p-button__link {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-news-list__items {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .p-news-list__items {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 2rem;
  }
}

.p-news-list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 1.6rem 0;
  border-bottom: 0.1rem solid #00b9ff;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .p-news-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 1.2rem 0;
  }
}
@media (max-width: 767px) {
  .p-news-list__item:first-of-type {
    border-top: 0.1rem solid #00b9ff;
  }
}

.p-news-list__date {
  width: 14.8rem;
  font-weight: 700;
  margin-top: 0.4rem;
}
@media (max-width: 767px) {
  .p-news-list__date {
    margin-right: 0;
    margin-bottom: 0.8rem;
  }
}
.p-news-list__date time {
  font-size: 1.9rem;
  color: #121a29;
}
@media (max-width: 767px) {
  .p-news-list__date time {
    font-size: 1.6rem;
  }
}

.p-news-list__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 16px;
  position: relative;
  padding-right: 6rem;
}
@media (max-width: 767px) {
  .p-news-list__body {
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 0.8rem;
    width: 100%;
  }
}

.p-news-list__title {
  color: #121a29;
  text-decoration: none;
  font-size: 2rem;
  line-height: 1.5;
  display: block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-weight: 700;
}
@media (max-width: 767px) {
  .p-news-list__title {
    font-size: 1.4rem;
  }
}

.p-news-list__terms {
  margin-top: 3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
}
@media (max-width: 767px) {
  .p-news-list__terms {
    row-gap: 0.8rem;
    padding-left: 0;
    margin-top: 1.6rem;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }
}

.p-news-list__category {
  width: 15rem;
}
@media (max-width: 767px) {
  .p-news-list__category {
    width: 100%;
    max-width: 10rem;
  }
}

.p-news-list__tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.2rem;
}
@media (max-width: 767px) {
  .p-news-list__tags {
    gap: 2vw;
  }
}

.p-news-list__arrow {
  width: 4rem;
  height: 4rem;
  background: -webkit-gradient(linear, left top, right top, from(#19c0ff), to(#0098ec));
  background: -webkit-linear-gradient(left, #19c0ff, #0098ec);
  background: linear-gradient(to right, #19c0ff, #0098ec);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding-right: 0.6rem;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-btn--arrow {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  border-top: 0.4rem solid #fff;
  border-right: 0.4rem solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-contact__button {
  margin-top: auto;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .p-news-list__items .p-news-list__item:nth-child(n+2) {
    display: none;
  }
}

@media (any-hover: hover) {
  .p-news-list__item:hover {
    background: #fff;
  }
  .p-news-list__item:hover .p-news-list__title {
    color: #0066cc;
  }
}
.p-blog-list {
  padding: 14rem 0 20rem;
  background-image: url(../img/common/bg-subpage.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .p-blog-list {
    padding: 4.7rem 0 4.2rem;
    background-image: url(../img/common/bg-sp.webp);
    background-position: top center;
  }
}
.p-blog-list__container {
  margin: 0 auto;
  padding: 0;
}

/* 検索フォーム */
.p-search-form {
  max-width: 65rem;
  margin: 0 auto 3rem auto;
  position: relative;
  z-index: 2;
}
.p-search-form form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  border: 0.2rem solid #00b9ff;
}
.p-search-form input[type=text] {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  padding: 1.8rem 2.5rem;
  font-size: 2rem;
  outline: none;
  background: transparent;
  color: #333;
}
.p-search-form input[type=text]::-webkit-input-placeholder {
  color: #999;
  font-weight: 400;
}
.p-search-form input[type=text]::-moz-placeholder {
  color: #999;
  font-weight: 400;
}
.p-search-form input[type=text]:-ms-input-placeholder {
  color: #999;
  font-weight: 400;
}
.p-search-form input[type=text]::-ms-input-placeholder {
  color: #999;
  font-weight: 400;
}
.p-search-form input[type=text]::placeholder {
  color: #999;
  font-weight: 400;
}
.p-search-form button {
  background: #00bfff;
  border: none;
  padding: 1.8rem 4rem;
  color: white;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 8rem;
}
@media (max-width: 767px) {
  .p-search-form button {
    min-width: 5.3rem;
  }
}
.p-search-form button:hover {
  background: #0099cc;
}
.p-search-form button img {
  width: 3rem;
  height: 3rem;
  display: block;
}
@media (max-width: 767px) {
  .p-search-form {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .p-search-form input[type=text] {
    padding: 1.2rem 1.5rem;
    font-size: 1.4rem;
  }
  .p-search-form button {
    padding: 1.2rem 2rem;
  }
}

/* カテゴリータブ */
.p-category-tabs {
  margin-bottom: 7rem;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (max-width: 767px) {
  .p-category-tabs {
    gap: 0.5rem;
    margin-bottom: 3rem;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-category-tabs {
    gap: 0.8rem;
  }
}
.p-category-tabs__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .p-category-tabs__items {
    gap: 1rem;
  }
}
.p-category-tabs .tab-item {
  background: white;
  color: #557190;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  font-size: 2rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 0.2rem solid transparent;
}
@media (max-width: 767px) {
  .p-category-tabs .tab-item {
    padding: 0.5rem 1rem;
    font-size: 1.3rem;
    border-radius: 0;
  }
}
.p-category-tabs .tab-item:hover, .p-category-tabs .tab-item.active {
  background: #0066cc;
  color: white;
  -webkit-transform: translateY(-0.2rem);
          transform: translateY(-0.2rem);
}

.p-blog-list__contents {
  z-index: 2;
}
/* 通常のブログリスト */
.p-blog-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 3rem;
}
.p-blog-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 5rem 3rem;
  background-color: #fff;
  border-radius: 1.6rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 0.2rem solid transparent;
}
@media (max-width: 767px) {
  .p-blog-block {
    padding: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (any-hover: hover) {
  .p-blog-block:hover {
    border-color: #00b9ff;
  }
  .p-blog-block:hover .p-blog-block__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.p-blog-block__img-area {
  width: 32.6rem;
}
@media (max-width: 767px) {
  .p-blog-block__img-area {
    max-width: 33.5rem;
    width: 100%;
  }
}

.p-blog-block__img {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.p-blog-block__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media (max-width: 767px) {
  .p-blog-block__img img {
    max-width: 33.5rem;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 335/200;
  }
}

.p-blog-block__text-area {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 767px) {
  .p-blog-block__text-area {
    width: 100%;
  }
}

.p-blog-block__title {
  font-size: 2.3rem;
  line-height: 1.2;
  font-weight: 700;
  margin-top: 2rem;
  position: relative;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .p-blog-block__title {
    line-height: 1.5;
    margin-top: 1rem;
    padding-left: 0;
    font-size: 1.6rem;
  }
}

.p-blog-block__date-list {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7785714286;
  text-align: left;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .p-blog-block__date-list {
    margin-top: 0.7rem;
    padding-left: 0;
  }
}

.p-blog-list__terms {
  padding-left: 2rem;
  margin-top: 2rem;
  padding-top: 3.4rem;
  border-top: 0.1rem solid #000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 7.6rem;
     -moz-column-gap: 7.6rem;
          column-gap: 7.6rem;
}
@media (max-width: 767px) {
  .p-blog-list__terms {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1rem;
    padding-left: 0;
    padding-top: 2rem;
  }
}

.p-blog-list__tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.2rem;
}

.p-blog-block__text {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  margin-top: 1rem;
  text-align: left;
}
@media (max-width: 767px) {
  .p-blog-block__text {
    font-size: 1.6rem;
    line-height: 1.875;
    margin-top: -3.1rem;
  }
}

/* もっと見るボタン */
.p-blog-list__more {
  margin-top: 6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .p-blog-list__more {
    margin-top: 4.8rem;
  }
}

.p-blog-list__more-btn {
  width: 40rem;
  height: 8rem;
  border-radius: 1rem;
  font-size: 2.4rem;
  font-weight: 700;
  border: 0.2rem solid #2b4e74;
  color: #2b4e74;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  cursor: pointer;
  background-color: transparent;
}
@media (max-width: 767px) {
  .p-blog-list__more-btn {
    width: 33rem;
    height: 6.6rem;
    font-size: 1.4rem;
  }
}
.p-blog-list__more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.3)), to(transparent));
  background: -webkit-linear-gradient(left, transparent, rgba(255, 255, 255, 0.3), transparent);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}
.p-blog-list__more-btn:hover {
  background: #0066cc;
  color: white;
  -webkit-transform: translateY(-0.3rem);
          transform: translateY(-0.3rem);
}
.p-blog-list__more-btn:hover::before {
  left: 100%;
}
.p-blog-list__more-btn:active {
  -webkit-transform: translateY(-0.1rem);
          transform: translateY(-0.1rem);
}

@media (max-width: 767px) {
  .p-blog-list .p-blog-list__contents .p-news__header .c-title.c-title--small {
    border-bottom: none;
  }
}

.p-blog-list .p-blog-list__contents .p-ll__header .ll-c-title.ll-c-title--small {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.p-blog-details {
  padding: 7rem 0 15.4rem;
  position: relative;
}
@media (max-width: 767px) {
  .p-blog-details {
    padding: 5rem 0 19.3rem;
  }
}

.p-blog-details__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .p-blog-details__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-blog-details__contents {
  width: 68%;
}
@media (max-width: 767px) {
  .p-blog-details__contents {
    width: 100%;
  }
}

.p-blog-details__l-sidebar {
  width: 29%;
}
@media (max-width: 767px) {
  .p-blog-details__l-sidebar {
    width: 100%;
  }
}

.p-blog-details-item__image-area {
  max-width: 60rem;
  position: relative;
}
@media (max-width: 767px) {
  .p-blog-details-item__image-area {
    max-width: 16rem;
  }
}

.p-blog-details-item__image {
  max-width: 60rem;
  height: 100%;
}
@media (max-width: 767px) {
  .p-blog-details-item__image {
    max-width: 33.5rem;
    height: 100%;
  }
}
.p-blog-details-item__image img {
  display: block;
  aspect-ratio: 500/350;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .p-blog-details-item__image img {
    aspect-ratio: 335/200;
    -o-object-fit: cover;
       object-fit: cover;
    width: 33.5rem;
    height: 20rem;
  }
}

.p-blog-details__title-top {
  margin-top: 4.6rem;
  max-width: 60rem;
}
@media (max-width: 767px) {
  .p-blog-details__title-top {
    margin-top: 3.1rem;
  }
}
.p-blog-details__title-top h1 {
  font-size: 2.5rem;
  line-height: 1.6;
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-blog-details__title-top h1 {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: -0.05rem;
  }
}
.p-blog-details__title-top p {
  font-size: 1.7rem;
  line-height: 1.7647058824;
  margin-top: 0.5rem;
  text-align: left;
}

.p-blog-details__sns-area {
  max-width: 47rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.4rem;
  margin-top: 2.1rem;
  margin-bottom: 3.3rem;
}
@media (max-width: 767px) {
  .p-blog-details__sns-area {
    max-width: 100%;
    gap: 0.2rem;
    margin-bottom: -2rem;
  }
}

.p-blog-details__sns-share__item {
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.p-blog-details__sns-share__item:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  .p-blog-details__sns-share__item {
    width: 100%;
  }
}

.p-blog-details__sns-share__icon {
  width: 100%;
}

.p-blog-details__sns-share__item--facebook img,
.p-blog-details__sns-share__item--twitter img,
.p-blog-details__sns-share__item--hatena img,
.p-blog-details__sns-share__item--line img,
.p-blog-details__sns-share__item--pocket img {
  width: 100%;
  max-height: 4rem;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: auto;
}
@media (max-width: 767px) {
  .p-blog-details__sns-share__item--facebook img,
  .p-blog-details__sns-share__item--twitter img,
  .p-blog-details__sns-share__item--hatena img,
  .p-blog-details__sns-share__item--line img,
  .p-blog-details__sns-share__item--pocket img {
    width: 100%;
    height: auto;
    aspect-ratio: 65/40;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-blog-details-body {
  max-width: 60rem;
  margin-top: 4.6rem;
  margin-bottom: 5.2rem;
}
@media (max-width: 767px) {
  .p-blog-details-body {
    margin-top: 4.2rem;
    margin-bottom: 4.3rem;
  }
}
.p-blog-details-body p {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 3.3rem;
  text-align: left;
}
@media (max-width: 767px) {
  .p-blog-details-body p {
    font-size: 1.6rem;
    line-height: 1.875;
  }
}
.p-blog-details-body h2 {
  font-size: 2rem;
  line-height: 2;
  font-weight: 500;
  margin-top: 3.2rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .p-blog-details-body h2 {
    font-size: 2rem;
    line-height: 1.5;
    margin-top: 4rem;
    margin-bottom: 1.7rem;
  }
}
.p-blog-details-body h3 {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 5rem;
  margin-bottom: 2.8rem;
  padding-left: 1.1rem;
  position: relative;
}
@media (max-width: 767px) {
  .p-blog-details-body h3 {
    width: 100%;
    font-size: 2rem;
    line-height: 1.5;
    margin-top: 5.2rem;
  }
}
.p-blog-details-body h3 ::before {
  content: "";
  width: 0.3rem;
  height: 100%;
  background: #000;
  position: absolute;
  left: 0.1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  z-index: 999;
}
@media (max-width: 767px) {
  .p-blog-details-body h3 ::before {
    height: 85%;
    top: 16%;
    -webkit-transform: translateY(-20%);
            transform: translateY(-20%);
  }
}
.p-blog-details-body br {
  content: "";
}
.p-blog-details-body br::before {
  content: "";
}
.p-blog-details-body figure {
  width: 100%;
  height: 100%;
  max-width: 30rem;
  max-height: 20rem;
  margin-top: 1.7rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .p-blog-details-body figure {
    max-width: 33.5rem;
    height: auto;
    margin-top: 5.7rem;
    margin-bottom: 2.5rem;
  }
}
.p-blog-details-body figure img {
  display: block;
  aspect-ratio: 300/200;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
  margin-top: -1.7rem;
}
@media (max-width: 767px) {
  .p-blog-details-body figure img {
    aspect-ratio: 335/200;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: auto;
  }
}
.p-blog-details-body ul {
  list-style-type: disc;
  margin-bottom: 3.9rem;
  margin-left: 1.8rem;
}
.p-blog-details-body ul li {
  font-size: 1.8rem;
  line-height: 1.6666666667;
}
@media (max-width: 767px) {
  .p-blog-details-body ul li {
    font-size: 1.6rem;
    line-height: 1.875;
  }
}
.p-blog-details-body .wp-block-separator {
  border-top: 0.5px solid;
}
.p-blog-details-body blockquote {
  height: auto;
  background: #E8E8E8;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 1.8rem 3rem 1rem;
  margin-top: 1.6rem;
  margin-bottom: 2.7rem;
}
@media (max-width: 767px) {
  .p-blog-details-body blockquote {
    margin-top: -1rem;
    padding: 1.6rem 2rem 4rem 2.5rem;
  }
}
.p-blog-details-body blockquote::before {
  width: 100%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 1rem;
}
.p-blog-details-body blockquote p {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  background: #E8E8E8;
  margin-bottom: 0;
  padding-left: 3.7rem;
  position: relative;
  margin-top: 0.1rem;
}
@media (max-width: 767px) {
  .p-blog-details-body blockquote p {
    font-size: 1.6rem;
    line-height: 1.875;
    padding-left: 4.5rem;
    margin-top: 0;
  }
}
.p-blog-details-body blockquote p::before {
  content: "";
  width: 3rem;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  aspect-ratio: 27/23;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/icon-blockquote.svg);
}
@media (max-width: 767px) {
  .p-blog-details-body blockquote p::before {
    width: 3rem;
    aspect-ratio: 27/29;
  }
}
.p-blog-details-body a {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.65;
  color: #00b9ff;
  border-bottom: 0.5px solid #00b9ff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.p-blog-details-body a:hover {
  opacity: 0.6;
}

.blog.c-col-main--arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 13%;
  margin-bottom: 11rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .blog.c-col-main--arrow {
    width: 100%;
    gap: 7%;
    padding-top: 0.3rem;
    margin-bottom: 6.5rem;
  }
}

.c-arrow-block.blog {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
}
@media (max-width: 767px) {
  .c-arrow-block.blog {
    display: block;
  }
}

.c-arrow-block__img-area {
  width: 100%;
  max-width: 9.8rem;
  margin-top: 1.6rem;
  max-height: 6.8rem;
}
@media (max-width: 767px) {
  .c-arrow-block__img-area {
    margin-right: 0;
  }
}

.c-arrow-block__text-area {
  width: 100%;
  margin-top: 1.6rem;
  height: auto;
}

.c-col-main--arrow-blog {
  width: 100%;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.c-col-main--arrow-blog:hover {
  opacity: 0.6;
}

.c-blog-section-name {
  background: #000;
  color: #ffffff;
  max-width: 100%;
  height: 3.7rem;
  font-size: 1.7rem;
  line-height: 1.7647058824;
}

.c-blog-section-name.c-blog-section-name--arrow-prev.blog {
  padding: 0.6rem 2rem;
}
@media (max-width: 767px) {
  .c-blog-section-name.c-blog-section-name--arrow-prev.blog {
    width: 15.6rem;
    padding: 0.6rem 0.5rem 0.6rem 2rem;
  }
}

.c-blog-section-name.c-blog-section-name--arrow-next {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  padding-right: 2rem;
  text-align: right;
}
@media (max-width: 767px) {
  .c-blog-section-name.c-blog-section-name--arrow-next {
    width: 15.6rem;
    padding: 0.6rem 2rem 0.1rem 0rem;
  }
}

.c-arrow-block__img {
  width: 100%;
  height: auto;
}
.c-arrow-block__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 98/68;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .c-arrow-block__img img {
    display: none;
  }
}

.c-arrow-block__title {
  font-size: 1.6rem;
  line-height: 1.5625;
  font-weight: 500;
  text-align: left;
  max-height: 6.8rem;
}

.c-blog-section-name--related {
  background: #000;
  color: #ffffff;
  max-width: 100%;
  height: 5rem;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 1.2rem 48.8rem 1.2rem 3rem;
  margin-bottom: 3rem;
  margin-top: -1.2rem;
}
@media (max-width: 767px) {
  .c-blog-section-name--related {
    max-width: 33.5rem;
    height: 5rem;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 500;
    padding: 1.2rem 12.2rem 1.2rem 13.1rem;
    margin-top: 0rem;
  }
}

.c-blog-block.c-blog-block--related.blog-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  gap: 3rem;
  margin-bottom: 5.2%;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .c-blog-block.c-blog-block--related.blog-block {
    margin-bottom: 6.2%;
    gap: 2rem;
  }
}
.c-blog-block.c-blog-block--related.blog-block:hover {
  opacity: 0.6;
}

.c-blog-block__img-area.c-blog-block__img-area--related.blog-block {
  position: relative;
  width: 100%;
  max-width: 20rem;
}
@media (max-width: 767px) {
  .c-blog-block__img-area.c-blog-block__img-area--related.blog-block {
    max-width: 16rem;
    max-height: 11rem;
  }
}

.c-blog-block__img.c-blog-block__img--related.blog-block {
  width: 100%;
  height: auto;
  max-width: 20rem;
}
@media (max-width: 767px) {
  .c-blog-block__img.c-blog-block__img--related.blog-block {
    width: 16rem;
  }
}
.c-blog-block__img.c-blog-block__img--related.blog-block img {
  display: block;
  aspect-ratio: 200/140;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .c-blog-block__img.c-blog-block__img--related.blog-block img {
    aspect-ratio: 160/110;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.c-blog-block__text-area.blog {
  width: 100%;
  max-width: 35.9rem;
  height: auto;
}
@media (max-width: 767px) {
  .c-blog-block__text-area.blog {
    width: 15.5rem;
  }
}

.c-blog-block__title--related.blog {
  max-width: 100%;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 1.7rem;
}
@media (max-width: 767px) {
  .c-blog-block__title--related.blog {
    text-align: left;
    font-size: 1.7rem;
    line-height: 1.6470588235;
    margin-bottom: 1rem;
    max-width: 15.5rem;
    height: auto;
    padding-top: 0.8rem;
  }
}
.c-blog-block__title--related.blog .c-blog-block__date--related {
  font-size: 1.7rem;
  line-height: 1.7647058824;
  padding-top: 1.4rem;
}
@media (max-width: 767px) {
  .c-blog-block__title--related.blog .c-blog-block__date--related {
    padding-top: 0.3rem;
  }
}

.c-blog-block__img--related.blog {
  max-width: 100%;
}

.p-contact-send {
  position: relative;
  padding: 6.5rem 0 3.6rem;
}
@media (max-width: 767px) {
  .p-contact-send {
    padding: 4.3rem 0 5rem;
  }
}

.p-contact-send__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: -1.4rem;
}
.p-contact-send__title h2 {
  font-size: 1.8rem;
  line-height: 1.6666666667;
}
@media (max-width: 767px) {
  .p-contact-send__title h2 {
    font-size: 1.6rem;
    line-height: 1.875;
    text-align: left;
  }
}

.p-contact-send__button {
  padding: 5.5rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .p-contact-send__button {
    padding: 0;
    padding-top: 5.3rem;
  }
}

.p-error {
  position: relative;
  padding: 6.8rem 0 5.2rem;
}
@media (max-width: 767px) {
  .p-error {
    padding: 4.7rem 0 4.2rem;
  }
}

.p-error__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.p-error__title h2 {
  font-size: min(0.9375vw, 18px);
  line-height: 1.6666666667;
}
@media (max-width: 767px) {
  .p-error__title h2 {
    font-size: 1.6rem;
    line-height: 1.875;
    text-align: left;
  }
}

.p-error__button {
  padding: 3.9rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .p-error__button {
    padding: 0.8rem 0;
  }
}

.search-error-text {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .p-search-list__contents {
    margin-bottom: 5.4rem;
  }
}

.p-search-list {
  padding: 6rem 0 21rem;
  position: relative;
}
@media (max-width: 767px) {
  .p-search-list {
    padding: 3.4rem 0 18.9rem;
  }
}

.p-search-list-keyword {
  font-size: 1.8rem;
  padding: 1rem 0 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .p-search-list-keyword {
    padding: 0.6rem 0 0.8rem;
  }
}

.left-text {
  position: relative;
  left: 0;
}

.right-text {
  position: absolute;
  right: 0;
}
@media (max-width: 767px) {
  .right-text {
    right: 2rem;
  }
}

.p-search-list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3.8rem;
  margin-bottom: 6.6rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.p-search-list-item:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  .p-search-list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 3.9rem;
    margin-bottom: 3.3rem;
  }
}

.p-search-list-image-area {
  max-width: 26rem;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .p-search-list-image-area {
    max-width: 33.5rem;
    width: 100%;
  }
}

.p-search-list-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 260/184;
}
@media (max-width: 767px) {
  .p-search-list-image img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 335/200;
  }
}

.p-search-list-text-area {
  width: 57rem;
  margin-left: 5rem;
}
@media (max-width: 767px) {
  .p-search-list-text-area {
    width: 100%;
    margin-top: 2.6rem;
    margin-left: 0;
  }
}

.p-search__list-title {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .p-search__list-title {
    line-height: 1.5;
    letter-spacing: -0.03em;
  }
}

.p-search__list-list {
  font-size: 1.7rem;
  line-height: 1.7647058824;
}
@media (max-width: 767px) {
  .p-search__list-list {
    text-align: right;
    margin-top: 0.6rem;
  }
}

.p-search__list-text {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  margin-top: 1.2rem;
}
@media (max-width: 767px) {
  .p-search__list-text {
    font-size: 1.6rem;
    line-height: 1.875;
    margin-top: 0.9rem;
    text-align: left;
  }
}

.search.current-item {
  padding: 0rem;
}

.p-policy {
  padding: 14rem 0 20rem;
  position: relative;
  background-image: url(../img/common/bg-subpage.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .p-policy {
    padding: 4.7rem 0 4.2rem;
    background-image: url(../img/common/bg-sp.webp);
    background-position: top center;
  }
}
.p-policy__container {
  margin: 0 auto;
  padding: 0;
}

.p-policy__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3.6rem;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 767px) {
  .p-policy__flex {
    gap: 1.5rem;
  }
}

.p-policy__image {
  width: 7.6rem;
}
@media (max-width: 767px) {
  .p-policy__image {
    width: 5.35rem;
  }
}
.p-policy__image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-policy__items {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10rem;
}
@media (max-width: 767px) {
  .p-policy__items {
    gap: 5rem;
  }
}

.p-policy__item {
  padding: 0;
}

.p-policy__description {
  font-size: 2rem;
  color: #000;
  font-weight: 700;
  margin-bottom: 1em;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .p-policy__description {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
  }
}

.p-policy__text {
  font-size: 1.8rem;
  color: #000;
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .p-policy__text {
    font-size: 1.4rem;
  }
}

.p-policy__item-image {
  margin-top: 0.8em;
}
.p-policy__item-image img {
  width: 22rem;
  height: auto;
  border-radius: 0.8rem;
  -webkit-box-shadow: 0 0.1rem 0.6rem rgba(0, 185, 255, 0.1);
          box-shadow: 0 0.1rem 0.6rem rgba(0, 185, 255, 0.1);
}
@media (max-width: 767px) {
  .p-policy__item-image img {
    width: 26rem;
  }
}

.highlight1 {
  font-size: 2rem;
  font-weight: bold;
  color: #2b4e74;
}
@media (max-width: 767px) {
  .highlight1 {
    font-size: 1.6rem;
  }
}

/*----------------------
下層ページのコンポーネント
----------------------*/
.ll-c-title {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
}

.ll-c-title--large {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#0098ec), to(#19c0ff));
  background: -webkit-linear-gradient(left, #0098ec, #19c0ff);
  background: linear-gradient(to right, #0098ec, #19c0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 6rem;
  font-weight: bold;
  margin-bottom: 1.8rem;
  text-align: left;
}
@media (max-width: 767px) {
  .ll-c-title--large {
    font-size: 3rem;
    font-weight: 900;
  }
}

.ll-c-title--small {
  text-align: left;
  display: block;
  width: 100%;
  color: #0098ec;
  font-size: 2rem;
  border-bottom: solid 0.1rem #0098ec;
  margin-bottom: 7.9rem;
  font-weight: 700;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .ll-c-title--small {
    font-size: 1.6rem;
    letter-spacing: 0;
    text-align: left;
    border-bottom: none;
    margin-bottom: 2rem;
    line-height: 1.8;
  }
}
.ll-c-title--small .none-border {
  border-bottom: none;
}

.d-font-blue {
  color: #00b9ff;
}

.d-left-margin {
  margin-left: -1.5rem;
  letter-spacing: -1px;
}
@media (max-width: 767px) {
  .d-left-margin {
    margin-left: -1rem;
  }
}

.d-right-margin {
  margin-right: -1rem;
}
@media (max-width: 767px) {
  .d-right-margin {
    margin-right: -0.5rem;
  }
}

.d-font-navy {
  color: #2b4e74;
  font-weight: bold;
}

.gradient-text {
  background: -webkit-gradient(linear, left top, right top, from(#19c0ff), to(#0098ec));
  background: -webkit-linear-gradient(left, #19c0ff, #0098ec);
  background: linear-gradient(to right, #19c0ff, #0098ec);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-problem {
  background-image: url(../img/common/bg-subpage.webp);
  background-size: cover;
  background-position: top center;
  padding: 14rem 0 12rem;
}
@media (max-width: 767px) {
  .p-problem {
    padding-block: 5.4rem 4.4rem;
    background-image: url(../img/common/bg-sp.webp);
    background-position: top center;
    background-repeat: no-repeat;
  }
}
.p-problem__container {
  max-width: 120rem;
  margin: 0 auto;
}
.p-problem__title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #00b9ff;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .p-problem__title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
}
.p-problem__description {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 0rem;
  font-weight: 700;
}
.p-problem__text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #121a29;
  margin-bottom: 6.8rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .p-problem__text {
    margin-bottom: 5rem;
  }
}
.p-problem__text span {
  font-weight: bold;
}
.p-problem__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
  margin: 5rem 0;
}
@media (max-width: 768px) {
  .p-problem__stats {
    grid-template-columns: 1fr;
  }
}
.p-problem__stats-card {
  background: -webkit-linear-gradient(315deg, #4fc3f7 0%, #29b6f6 100%);
  background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-problem__stats-card:hover {
  -webkit-transform: translateY(-0.5rem);
          transform: translateY(-0.5rem);
}
.p-problem__stats-card__icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}
.p-problem__stats-card__number {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .p-problem__stats-card__number {
    font-size: 2.8rem;
  }
}
.p-problem__stats-card__label {
  font-size: 1.4rem;
  font-weight: 700;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}
.p-problem__stats-card__description {
  font-size: 1.2rem;
  opacity: 0.8;
  line-height: 1.4;
}
.p-problem__process {
  margin: 6rem 0;
  text-align: center;
}
.p-problem__process-title {
  font-size: 2rem;
  color: #00b9ff;
  margin-bottom: 3rem;
  font-weight: bold;
}
.p-problem__process-flow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 768px) {
  .p-problem__process-flow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}
.p-problem__process-step {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.p-problem__process-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -3rem;
  top: 2rem;
  font-size: 2rem;
  color: #00b9ff;
  font-weight: bold;
}
@media (max-width: 768px) {
  .p-problem__process-step:not(:last-child)::after {
    right: auto;
    top: auto;
    bottom: -2.5rem;
    content: "↓";
  }
}
.p-problem__process-step__icon {
  width: 6rem;
  height: 6rem;
  background: #00b9ff;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  -webkit-box-shadow: 0 0.3rem 1rem rgba(0, 123, 186, 0.3);
          box-shadow: 0 0.3rem 1rem rgba(0, 123, 186, 0.3);
}
.p-problem__process-step__label {
  font-size: 1.4rem;
  color: #000000;
  font-weight: 700;
  text-align: center;
  max-width: 8rem;
}
.p-problem__list-title {
  font-size: 1.6rem;
  color: #000;
  margin: 1rem 0 0.8rem;
  text-indent: 0.5em;
}
@media (max-width: 767px) {
  .p-problem__list-title {
    margin-block: 0.5rem;
    text-indent: 0;
  }
}
.p-problem__list {
  padding: 0;
  margin-bottom: 5rem;
  text-indent: 0.5em;
}
@media (max-width: 767px) {
  .p-problem__list {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-indent: 0;
  }
}
.p-problem__list-item {
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #2b4e74;
  display: block;
}
.p-problem__list-item .risk-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #2b4e74;
  display: block;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .p-problem__list-item {
    display: inline;
    font-size: 1.6rem;
  }
}
.p-problem__cta {
  text-align: center;
  background: -webkit-linear-gradient(315deg, #00b9ff, #0082ff);
  background: linear-gradient(135deg, #00b9ff, #0082ff);
  border-radius: 2rem;
  padding: 5rem 3rem;
  color: #ffffff;
  margin-top: 6rem;
}
.p-problem__cta-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.p-problem__cta-description {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.9;
}
.p-problem__cta-button {
  display: inline-block;
  background: #ffffff;
  color: #00b9ff;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 2rem 4rem;
  border-radius: 5rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
}
.p-problem__cta-button:hover {
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: translateY(-0.3rem);
          transform: translateY(-0.3rem);
  -webkit-box-shadow: 0 0.8rem 3rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 0.8rem 3rem rgba(0, 0, 0, 0.3);
}

.p-problem__images {
  width: 81.3rem;
  margin: 0 auto 4.8rem;
}
@media (max-width: 767px) {
  .p-problem__images {
    width: 100%;
    margin-bottom: 3.8rem;
  }
}

.p-problem__image {
  text-align: center;
}
.p-problem__image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  display: block;
}

.p-problem__item-image {
  text-align: center;
}
.p-problem__item-image img {
  max-width: 80rem;
  height: auto;
}

.p-survey {
  padding: 14rem 0 20rem;
  position: relative;
  background-image: url(../img/common/bg-subpage.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .p-survey {
    padding-block: 5.4rem 4.4rem;
    background-image: url(../img/common/bg-sp.webp);
  }
}
.p-survey__container {
  margin: 0 auto;
  padding: 0 2rem;
}

.p-ll__header {
  text-align: left;
}

.p-survey__container {
  margin: 0 auto;
  padding: 0 0rem;
}

.p-hot-topics__header {
  margin-bottom: 2rem;
  text-align: center;
}

.p-survey__title {
  margin: 2.5rem 0 1rem 0;
  font-size: 2.5rem;
  font-weight: bold;
  color: #00b9ff;
}
@media (max-width: 767px) {
  .p-survey__title {
    font-size: 1.6rem;
    line-height: 1.6;
    letter-spacing: -0.01em;
  }
}

.p-survey__description {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #222;
  line-height: 1.7;
}

.p-survey__images {
  gap: 1rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 81.3rem;
  margin: 4rem auto 1rem;
}
@media (max-width: 767px) {
  .p-survey__images {
    width: 100%;
  }
}

.p-survey__image {
  display: inline-block;
  margin: 0 0.5rem 1rem 0;
  vertical-align: top;
  position: relative;
}
.p-survey__image img {
  max-width: 25.6rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  background: #e6f6fd;
}

.p-survey__text-top {
  font-size: 1.4rem;
  width: 81.3rem;
  margin: 0 auto;
  margin-bottom: 10rem;
  color: #222;
}
@media (max-width: 767px) {
  .p-survey__text-top {
    width: 100%;
    margin-bottom: 4rem;
    line-height: 1.6;
  }
}

.p-survey__text-bottom {
  font-size: 1.4rem;
  width: 81.3rem;
  margin: 0 auto;
  margin-top: 1rem;
  margin-bottom: 10rem;
  color: #222;
}
@media (max-width: 767px) {
  .p-survey__text-bottom {
    width: 100%;
    margin-bottom: 4rem;
  }
}

.p-survey__images-bottom {
  width: 81.3rem;
  margin: 4rem auto 0;
}
@media (max-width: 767px) {
  .p-survey__images-bottom {
    width: 100%;
  }
}

.p-survey-bottom__image {
  width: 50%;
}

.p-survey-bottom__image img {
  max-width: 25rem;
  height: auto;
}

.p-survey-bottom__image.left {
  position: absolute;
  top: 50%;
  left: 15%;
}

.p-survey-bottom__image.right {
  position: absolute;
  top: 50%;
  right: 15%;
}

.p-survey__ranking {
  margin-top: 2rem;
  margin-bottom: 10rem;
  padding: 1.5rem 1rem;
  border-radius: 0.5rem;
}
@media (max-width: 767px) {
  .p-survey__ranking {
    margin-bottom: 2rem;
  }
}
.p-survey__ranking h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #009fe8;
}
.p-survey__ranking-img {
  width: 79rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-survey__ranking-img {
    width: 100%;
  }
}

.p-survey-slide-title {
  text-align: center;
  font-size: 2.7rem;
  font-weight: bold;
  color: #222;
}
@media (max-width: 767px) {
  .p-survey-slide-title {
    font-size: 1.8rem;
    text-align: left;
    margin-top: 4rem;
  }
}

.p-survey .p-hot-topics {
  padding-block: 12rem 14rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-survey .p-hot-topics {
    padding-block: 5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-survey .p-hot-topics__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .p-survey .p-hot-topics__header {
    display: contents;
  }
}
.p-survey .p-hot-topics__header-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 767px) {
  .p-survey .p-hot-topics__header-title {
    padding-inline: 3rem;
  }
}
.p-survey .p-hot-topics__contents {
  position: relative;
  margin-top: 6rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-survey .p-hot-topics__contents {
    margin-top: 2rem;
  }
}
.p-survey .p-hot-topics__items .slick-arrow {
  width: 4.8611111111vw;
  height: 4.8611111111vw;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  z-index: 100;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
  display: grid;
  place-content: center;
  cursor: pointer;
}
@media (max-width: 767px) {
  .p-survey .p-hot-topics__items .slick-arrow {
    width: 3.7rem;
    height: 3.7rem;
  }
}
.p-survey .p-hot-topics__items .slick-arrow::before {
  content: "";
  display: block;
  width: 1.6666666667vw;
  height: 1.6666666667vw;
  border-top: 0.2rem solid #00b9ff;
  border-right: 0.2rem solid #00b9ff;
}
@media (max-width: 767px) {
  .p-survey .p-hot-topics__items .slick-arrow::before {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.p-survey .p-hot-topics__items .slick-prev {
  left: calc(50% - 36.1111111111vw);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .p-survey .p-hot-topics__items .slick-prev {
    padding-left: 1rem;
    left: calc(50% - 16rem);
  }
}
.p-survey .p-hot-topics__items .slick-prev::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.p-survey .p-hot-topics__items .slick-next {
  left: calc(50% + 36.1111111111vw);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding-right: 2rem;
}
@media (max-width: 767px) {
  .p-survey .p-hot-topics__items .slick-next {
    padding-right: 1rem;
    left: calc(50% + 16rem);
  }
}
.p-survey .p-hot-topics__items .slick-next::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-survey .p-hot-topics__items .slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-survey .p-hot-topics__items.is-slider .c-topics-item:not(.slick-active) {
  opacity: 0.5;
  pointer-events: none;
}
.p-survey .c-topics-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 1.1111111111vw;
  overflow: hidden;
  background: #fff;
  margin-inline: 0.6944444444vw;
  height: auto !important;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media (max-width: 767px) {
  .p-survey .c-topics-item {
    margin-inline: 3rem;
    padding: 2rem;
  }
}
.p-survey .c-topics-item__img {
  overflow: hidden;
}
.p-survey .c-topics-item__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 400/225;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.p-survey .c-topics-item__textarea {
  padding: 0.9722222222vw 1.3888888889vw 2.0833333333vw;
}
@media (max-width: 767px) {
  .p-survey .c-topics-item__textarea {
    padding: 0;
    margin-top: 1rem;
  }
}
.p-survey .c-topics-item__date {
  font-size: 1.4rem;
  font-weight: 500;
}
.p-survey .c-topics-item .ll-c-topics-item__title {
  margin-top: 1.8055555556vw;
  height: 5.5555555556vw;
  font-weight: 700;
}
@media (max-width: 767px) {
  .p-survey .c-topics-item .ll-c-topics-item__title {
    height: 6.3rem;
    margin-top: 1.8rem;
  }
}
.p-survey .c-topics-item .ll-c-topics-item__title h3 {
  font-size: 1.3888888889vw;
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .p-survey .c-topics-item .ll-c-topics-item__title h3 {
    font-size: 1.6rem;
  }
}
.p-survey .c-topics-item__terms {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.5555555556vw;
  margin-top: 1.3888888889vw;
}
@media (max-width: 767px) {
  .p-survey .c-topics-item__terms {
    margin-top: 1rem;
  }
}
.p-survey .c-topics-item__tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5555555556vw;
}
@media (any-hover: hover) {
  .p-survey .c-topics-item:hover .c-topics-item__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media (max-width: 767px) {
  .p-survey .p-keyword-search {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
}

#survey .p-hot-topics__contents {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  #survey .p-hot-topics__contents {
    margin-top: 2rem;
  }
}
#survey .p-hot-topics__items .slick-arrow {
  width: 4.8611111111vw;
  height: 4.8611111111vw;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  z-index: 100;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
  display: grid;
  place-content: center;
  cursor: pointer;
}
@media (max-width: 767px) {
  #survey .p-hot-topics__items .slick-arrow {
    width: 3.7rem;
    height: 3.7rem;
    top: 94%;
  }
}
#survey .p-hot-topics__items .slick-arrow::before {
  content: "";
  display: block;
  width: 1.6666666667vw;
  height: 1.6666666667vw;
}
@media (max-width: 767px) {
  #survey .p-hot-topics__items .slick-arrow::before {
    width: 1.4rem;
    height: 1.4rem;
  }
}
#survey .p-hot-topics__items .slick-prev {
  left: calc(50% - 36.1111111111vw);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding-left: 2rem;
}
@media (max-width: 767px) {
  #survey .p-hot-topics__items .slick-prev {
    padding-left: 1rem;
    left: 40%;
  }
}
#survey .p-hot-topics__items .slick-prev::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
#survey .p-hot-topics__items .slick-next {
  left: calc(50% + 36.1111111111vw);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding-right: 2rem;
}
@media (max-width: 767px) {
  #survey .p-hot-topics__items .slick-next {
    padding-right: 1rem;
    left: 60%;
  }
}
#survey .p-hot-topics__items .slick-next::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#survey .p-hot-topics__items .slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
#survey .p-hot-topics__items.is-slider .c-topics-item:not(.slick-active) {
  opacity: 0.5;
  pointer-events: none;
}
#survey .c-topics-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 1.1111111111vw;
  overflow: hidden;
  background: #fff;
  margin-inline: 0.6944444444vw;
  height: auto !important;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  border-radius: 2rem 2rem 2rem 2rem;
}
@media (max-width: 767px) {
  #survey .c-topics-item {
    margin-inline: 3rem;
    padding: 0rem;
    padding-bottom: 2rem;
    margin-bottom: 6rem;
  }
}
#survey .c-topics-item__img {
  overflow: hidden;
  border-radius: 2rem 2rem 0 0;
}
#survey .c-topics-item__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 400/225;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#survey .c-topics-item__textarea {
  padding: 0.9722222222vw 1.3888888889vw 2.0833333333vw;
}
@media (max-width: 767px) {
  #survey .c-topics-item__textarea {
    padding: 2rem;
    margin-top: 1rem;
  }
}
#survey .c-topics-item__date {
  font-size: 1.4rem;
  font-weight: 500;
}
#survey .c-topics-item__title {
  margin-top: 1.8055555556vw;
  height: 5.5555555556vw;
  font-weight: 500;
}
@media (max-width: 767px) {
  #survey .c-topics-item__title {
    height: 6.3rem;
    margin-top: 1.8rem;
  }
}
#survey .c-topics-item__title h3 {
  font-size: 1.3888888889vw;
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 767px) {
  #survey .c-topics-item__title h3 {
    font-size: 1.6rem;
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
  }
}
#survey .c-topics-item__terms {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.5555555556vw;
  margin-top: 1.3888888889vw;
}
@media (max-width: 767px) {
  #survey .c-topics-item__terms {
    margin-top: 1rem;
    gap: 0.5rem;
  }
}
#survey .c-topics-item__tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5555555556vw;
}
@media (any-hover: hover) {
  #survey .c-topics-item:hover .c-topics-item__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.p-process {
  background-image: url(../img/process/bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 14rem 18rem;
}
@media (max-width: 767px) {
  .p-process {
    padding-block: 5.4rem 4.4rem;
    background-image: url(../img/common/bg-sp.webp);
    background-position: top center;
  }
}
.p-process__title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #00b9ff;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .p-process__title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
}
.p-process .p-process__subtitle {
  color: #fff;
  background-color: #00b9ff;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 1rem 1.5rem;
}
.p-process .p-process__description {
  font-size: 1.6rem;
  font-weight: bold;
  color: #00b9ff;
  margin-block: 2rem 1rem;
}
.p-process .p-process__text {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4rem;
  letter-spacing: -0.03em;
}
@media (max-width: 767px) {
  .p-process .p-process__text {
    line-height: 1.6;
  }
}
.p-process .p-process__list {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
}
.p-process .font-color-d-blue {
  color: #2b4e74;
  font-weight: bold;
}
.p-process .p-process__list-item {
  margin-bottom: 0.5rem;
}
.p-process .risk-title {
  display: block;
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.p-process__pdf {
  margin-block: 7.8rem 7.8rem;
}
@media (max-width: 767px) {
  .p-process__pdf {
    margin-block: 3rem 5rem;
  }
}
.p-process__pdf .p-process__pdf-title {
  color: #9d9dad;
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}
.p-process__pdf .p-process-btn {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#19c0ff), to(#0098ec));
  background: -webkit-linear-gradient(left, #19c0ff, #0098ec);
  background: linear-gradient(to right, #19c0ff, #0098ec);
  font-weight: bold;
  height: 11.5rem;
  width: 43rem;
  border-radius: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.4;
  margin: 0 auto;
  cursor: pointer;
  -webkit-transition: all 0.4s, color 0.4s, opacity 0.4s;
  transition: all 0.4s, color 0.4s, opacity 0.4s;
  opacity: 1;
}
@media (max-width: 767px) {
  .p-process__pdf .p-process-btn {
    width: 32.8rem;
    height: 8.8rem;
  }
}
.p-process__pdf .p-process__pdf-link-text01 {
  font-size: 1.5rem;
}
.p-process__pdf .p-process__pdf-link-text02 {
  font-size: 2.6rem;
}

/* disabled時のスタイル */
.p-process-btn:disabled {
  background: #9d9dad;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.7;
}

/* ホバー時（有効な場合だけ） */
.p-process-btn:not(:disabled):hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

/********************
コンタクトフォーム
********************/
.download-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: -webkit-gradient(linear, left top, right top, from(#19c0ff), to(#0098ec));
  background: -webkit-linear-gradient(left, #19c0ff 0%, #0098ec 100%);
  background: linear-gradient(to right, #19c0ff 0%, #0098ec 100%);
  padding: 3rem;
  border-radius: 20px;
  color: #fff;
  gap: 7rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 65rem;
}
@media (max-width: 767px) {
  .download-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    gap: 0;
  }
  .download-area .download-title {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .download-area .download-left {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .download-area .download-right {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}

.download-left {
  color: #222;
  padding: 2rem;
  width: 32.9rem;
  max-width: 480px;
}
@media (max-width: 767px) {
  .download-left {
    width: 100%;
    padding: 0;
  }
}
.download-left h2 {
  font-weight: bold;
  color: #fff;
  margin-bottom: 2.7rem;
}
.download-left h2 .download-title01 {
  font-size: 1.6rem;
  display: block;
}
.download-left h2 .download-title02 {
  font-size: 2.8rem;
  display: block;
}
.download-left .download-list {
  background: #fff;
  border-radius: 12px;
  width: 33rem;
  height: 47rem;
  padding: 2.5rem 3.5rem;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .download-left .download-list {
    height: auto;
    padding: 2.4rem 1.3rem;
    width: 100%;
  }
}
.download-left .download-list h3 {
  font-size: 1.6rem;
  margin-bottom: 4.5rem;
}
@media (max-width: 767px) {
  .download-left .download-list h3 {
    margin-bottom: 1rem;
  }
}
.download-left .download-list ul li {
  font-size: 1.6rem;
}

.download-title03 {
  font-size: 1.6rem;
  display: block;
  font-weight: bold;
}

.download-title04 {
  font-size: 2.4rem;
  display: block;
  font-weight: bold;
}

/* エラー表示部分のスペースを常に確保 */
.error-space {
  display: block;
  min-height: 1.5em;
  font-size: 0.9rem;
  color: red;
}

/* Contact Form 7 が出すエラーメッセージをこの中に表示させたい場合 */
.wpcf7-not-valid- {
  display: block;
  position: absolute;
  font-size: 0.9rem;
  color: red;
  margin-top: 0.3rem;
}

/* フォーム側 */
.download-right {
  width: 32.1rem;
  background: transparent;
  font-size: 1.4rem;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .download-right {
    width: 100%;
    margin-top: 1rem;
  }
}
.download-right label {
  margin-bottom: 0.4rem;
}
@media (max-width: 767px) {
  .download-right label {
    margin-bottom: -2px;
  }
}
.download-right label p {
  margin-bottom: 0.5rem;
}

.download-right .wpcf7-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (max-width: 767px) {
  .download-right .wpcf7-form {
    gap: 0.5rem;
  }
}

.download-right input[type=text],
.download-right input[type=email],
.download-right input[type=tel],
.download-right textarea {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 6px;
  font-size: 1.6rem;
  background-color: rgba(255, 255, 255, 0.5);
}

.download-right input[type=checkbox] {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  margin-right: 0.5rem;
}

.download-right .wpcf7-submit {
  background: #ffa142;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 1rem 2rem;
  font-weight: bold;
  font-size: 2rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.download-right .wpcf7-submit:hover {
  background: #ff8c00;
}

@media (max-width: 768px) {
  .download-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.contact-privacy {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .contact-privacy {
    margin-top: 0;
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  background: transparent; /* 背景なしに */
  z-index: 10000;
  border-radius: 2px; /* 角丸もなしに */
  padding: 0; /* パディングも不要なら */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-height: 90vh;
  overflow-y: auto;
}

.download-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 3rem;
  cursor: pointer;
  color: #fff;
}
@media (max-width: 767px) {
  .close-modal {
    top: 0.5rem;
    right: 0.5rem;
  }
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0px 0 0 0em;
}

.download-right input[type=checkbox] {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  margin-right: 0.5rem;
}

/* アーカイブページ */
.p-archive {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* メインビジュアル */
.c-mv {
  background: -webkit-linear-gradient(315deg, #19c0ff 0%, #0288D1 100%);
  background: linear-gradient(135deg, #19c0ff 0%, #0288D1 100%);
  padding: 60px 0;
  text-align: center;
  margin-bottom: 40px;
}

.c-mv__hdl {
  color: white;
  font-size: 2.5rem;
  font-weight: 500;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* カテゴリーフィルター */
.p-archive__category {
  margin-bottom: 40px;
}

.p-archive__categoryList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.p-archive__categoryItem {
  margin: 0;
}

.p-archive__categoryItem a {
  display: inline-block;
  padding: 12px 24px;
  background: #f8f9fa;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.p-archive__categoryItem a:hover {
  background: #e9ecef;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.p-archive__categoryItem.is-active a {
  background: #19c0ff;
  color: white;
  border-color: #19c0ff;
}

/* 記事一覧 */
.c-news__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.c-news__item {
  background: white;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.c-news__item:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.c-news__itemLink {
  display: block;
  padding: 24px;
  text-decoration: none;
  color: inherit;
}

.c-news__category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.c-news__date {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.c-news__tag {
  background: #E3F2FD;
  color: #0288D1;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin: 0;
}

.c-news__title {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

/* ページネーション */
.p-archive__pager {
  text-align: center;
  margin-top: 40px;
}

.p-archive__pagerList {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}

.page-numbers {
  display: inline-block;
  padding: 12px 16px;
  background: #f8f9fa;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.page-numbers:hover {
  background: #e9ecef;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.page-numbers.current {
  background: #19c0ff;
  color: white;
  border-color: #19c0ff;
}

.page-numbers.prev,
.page-numbers.next {
  font-weight: 500;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .p-archive {
    padding: 0 16px;
  }
  .c-mv {
    padding: 40px 0;
  }
  .c-mv__hdl {
    font-size: 2rem;
  }
  .p-archive__categoryList {
    gap: 12px;
  }
  .p-archive__categoryItem a {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .c-news__itemLink {
    padding: 20px;
  }
  .c-news__category {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }
  .c-news__title {
    font-size: 1.1rem;
  }
}
.p-support {
  background-image: url(../img/common/bg-subpage.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 14rem 0 12rem;
}
@media (max-width: 767px) {
  .p-support {
    padding-block: 5.4rem 4.4rem;
    background-image: url(../img/common/bg-sp.webp);
    background-position: top center;
  }
}

.p-support__text {
  margin: 2.5rem 0 1rem 0;
  font-size: 2.5rem;
  font-weight: bold;
  color: #00b9ff;
}
@media (max-width: 767px) {
  .p-support__text {
    font-size: 1.6rem;
  }
  .p-support__text .font-space {
    letter-spacing: -1px;
  }
  .p-support__text .left-margin {
    margin-left: -0.6rem;
  }
  .p-support__text .right-margin {
    margin-right: -0.6rem;
  }
}

.p-support__text2 {
  margin: 2.5rem 0 3rem 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .p-support__text2 {
    margin: 1.5rem 0 3rem 0;
  }
}

.font-color-orange {
  color: #ff9238;
  font-weight: bold;
}

.p-support__text-list01 {
  color: #2b4e74;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.p-support__text-list02 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.p-support__list02 {
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.6rem;
     -moz-column-gap: 2.6rem;
          column-gap: 2.6rem;
  margin-block: 6.9rem 10.3rem;
}
@media (max-width: 767px) {
  .p-support__list02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2rem;
    margin-block: 2.7rem 6.4rem;
  }
}
.p-support__list02 li {
  width: 23.2rem;
}
@media (max-width: 767px) {
  .p-support__list02 li {
    width: 100%;
  }
}

.p-support-teacher {
  background-color: #fff;
}
.p-support-teacher-title {
  background: -webkit-gradient(linear, left top, right top, from(#19c0ff), to(#0098ec));
  background: -webkit-linear-gradient(left, #19c0ff, #0098ec);
  background: linear-gradient(to right, #19c0ff, #0098ec);
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
}
.p-support-teacher-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 5.5rem;
     -moz-column-gap: 5.5rem;
          column-gap: 5.5rem;
  padding-block: 5rem 6rem;
  padding-inline: 7.5rem 4rem;
  border-bottom: #00b9ff solid 1px;
}
@media (max-width: 767px) {
  .p-support-teacher-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: 1.5rem;
    padding-block: 3rem;
    border: #00b9ff solid 2px;
  }
}
.p-support-teacher .p-support-teacher-list-sp {
  border-bottom: none;
}
@media (max-width: 767px) {
  .p-support-teacher .p-support-teacher-list-sp {
    border-bottom: #00b9ff solid 2px;
  }
}
.p-support-teacher .p-teacher-name {
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: -0.5rem;
}
.p-support-teacher .p-teacher-img {
  width: 17.7rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media (max-width: 767px) {
  .p-support-teacher .p-teacher-img {
    width: 15.6rem;
    margin: 0 auto 2rem;
  }
}
.p-support-teacher .p-teacher-name {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 1.6rem;
}
@media (max-width: 767px) {
  .p-support-teacher .p-teacher-name {
    font-size: 3rem;
  }
}
.p-support-teacher .p-teacher-position {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1.6rem;
}
@media (max-width: 767px) {
  .p-support-teacher .p-teacher-position {
    font-size: 1.6rem;
  }
}
.p-support-teacher .p-teacher-bio {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}

.single-topic {
  background-image: url(../img/common/bg-subpage.webp);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding-block: 14rem 18rem;
}
@media (max-width: 768px) {
  .single-topic {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    background-image: url(../img/support/sp-bg.webp);
    padding: 4.7rem 0 4.2rem;
  }
}
.single-topic h2 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-block: 0.8rem;
  color: #00b9ff;
}
.single-topic h3 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-block: 0.8rem;
  color: #00b9ff;
}
.single-topic p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}

.article-header {
  margin-bottom: 4rem;
}
.article-header h1 {
  font-size: 4rem;
  font-weight: bold;
  color: #00b9ff;
}
@media (max-width: 767px) {
  .article-header h1 {
    font-size: 2.4rem;
  }
}

.single-topic-image {
  width: 80rem;
  margin: 0 auto;
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .single-topic-image {
    width: 100%;
    height: auto;
  }
}
.single-topic-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 335/200;
  display: block;
}

.single-topic-image__text {
  margin-top: 2rem;
  width: 100%;
  text-align: right;
}
.single-topic-image__text .article-mate {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
}
.single-topic-image__text .article-category {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  height: 3rem;
  border-radius: 9999px;
  border: #222 solid 1px;
  background-color: #fff;
  margin-top: 0.5rem;
  padding: 0.7em 2em;
  margin-left: 1rem;
}

.return-list {
  margin: 5rem auto;
  height: 8rem;
  width: 24rem;
  border-radius: 4rem;
  background-color: #00b9ff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
.return-list p {
  font-size: 2.6rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .return-list {
    margin-top: 1rem;
  }
}
.return-list:hover {
  opacity: 0.8;
}/*# sourceMappingURL=style.css.map */