@charset "UTF-8";
/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu,
summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

html {
  font-size: 62.5%;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
  word-break: break-all;
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
  overflow-x: hidden;
  interpolate-size: allow-keywords;
}
@media (min-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }
}
@media (min-width: 768px) and (max-width: 940px) {
  html {
    font-size: 1.0638297872vw;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #000000;
  line-height: 1.875;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* PC,SPの非表示 */
.pc {
  display: none !important;
}
@media (min-width: 768px) {
  .pc {
    display: block !important;
  }
}

.sp {
  display: block !important;
}
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

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

a {
  text-decoration: none;
  display: inline-block;
}

ul {
  list-style: none;
}

.section-bg {
  background-color: #cb0000;
}

.fade-in {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.fade-in.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.l-inner {
  margin-inline: auto;
  padding-inline: 2rem;
}
@media (min-width: 768px) {
  .l-inner {
    max-width: 92rem;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  height: 5rem;
  background-color: #fff;
}
@media (min-width: 768px) {
  .l-header {
    height: 8rem;
  }
}
@media (min-width: 768px) {
  .l-header .l-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-header__title {
  font-size: 1.3rem;
  line-height: 1.0769230769;
  font-weight: 700;
}
@media (min-width: 768px) {
  .l-header__title {
    font-size: 1.5rem;
    line-height: 1.5333333333;
  }
}
@media (min-width: 768px) {
  .l-header__title-main {
    font-size: 2rem;
  }
}
.l-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.6rem;
     -moz-column-gap: 0.6rem;
          column-gap: 0.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 5rem;
}
@media (min-width: 768px) {
  .l-header__logo a {
    height: 8rem;
    -webkit-column-gap: 0.9rem;
       -moz-column-gap: 0.9rem;
            column-gap: 0.9rem;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
}
@media (any-hover: hover) {
  .l-header__logo a:hover {
    opacity: 0.7;
  }
}
.l-header__logo img {
  width: 2rem;
}
@media (min-width: 768px) {
  .l-header__logo img {
    width: 3.2rem;
  }
}
.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.3rem;
     -moz-column-gap: 3.3rem;
          column-gap: 3.3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.l-header__nav-item {
  font-size: 1.7rem;
  line-height: 1.9411764706;
  font-weight: bold;
  height: 8rem;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.l-header__nav-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 8rem;
  position: relative;
}
.l-header__nav-item a::after {
  content: "";
  position: absolute;
  bottom: 24.5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000000;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (any-hover: hover) {
  .l-header__nav-item a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.l-header__nav-item-btn {
  font-size: 1.5rem;
  line-height: 2.2;
  width: 15rem;
  height: 4.5rem;
  text-align: center;
  color: #fff;
  border: 1px solid #cb0000;
  background-color: #cb0000;
  -webkit-transition: background-color 0.4s, color 0.4s;
  transition: background-color 0.4s, color 0.4s;
}
@media (min-width: 768px) {
  .l-header__nav-item-btn {
    -webkit-transition: background-color 0.4s, color 0.4s, opacity 0.4s;
    transition: background-color 0.4s, color 0.4s, opacity 0.4s;
  }
}
@media (any-hover: hover) {
  .l-header__nav-item-btn:hover {
    background-color: #fff;
    color: #cb0000;
  }
}
.l-header__nav-item-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 4.5rem;
}
.l-header__hamburger {
  position: absolute;
  top: 0;
  right: 0;
  width: 7.1rem;
  height: 5rem;
  background-color: #cb0000;
}
@media (min-width: 768px) {
  .l-header__hamburger {
    display: none;
  }
}
.l-header__hamburger.is-active span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.l-header__hamburger.is-active span:nth-of-type(2) {
  display: none;
}
.l-header__hamburger.is-active span:nth-of-type(3) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.l-header__nav-menu.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.l-header__nav-menu {
  position: fixed;
  width: 30rem;
  height: 17.4rem;
  top: 5rem;
  right: 0;
  background-color: #cb0000;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.l-header__nav-menu-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 5.8rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  padding-left: 2rem;
}
@media (any-hover: hover) {
  .l-header__nav-menu-item a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.l-header__drawer-icon-bar {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 3.2rem;
  height: 0.4rem;
  border-radius: 0.6rem;
  background: #fff;
}
.l-header__drawer-icon-bar:nth-of-type(1) {
  top: 1.3rem;
}
.l-header__drawer-icon-bar:nth-of-type(2) {
  top: 2.5rem;
}
.l-header__drawer-icon-bar:nth-of-type(3) {
  top: 3.7rem;
}

.l-footer {
  padding-block: 4.7rem 5.2rem;
}
@media (min-width: 768px) {
  .l-footer {
    padding-block: 4.4rem 4.2rem;
  }
}
.l-footer__nav {
  margin-inline: 2rem;
  display: grid;
  place-items: center;
}
.l-footer__nav-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
}
@media (min-width: 768px) {
  .l-footer__nav-lists {
    -webkit-column-gap: 3.3rem;
       -moz-column-gap: 3.3rem;
            column-gap: 3.3rem;
  }
}
.l-footer__nav-link {
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.7647058824;
  font-weight: 700;
}
@media (min-width: 768px) {
  .l-footer__nav-link {
    line-height: 1.9411764706;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
}
@media (any-hover: hover) {
  .l-footer__nav-link:hover {
    opacity: 0.7;
  }
}
.l-footer__logo {
  display: grid;
  place-items: center;
  margin-top: 1.8rem;
  margin-bottom: 2.8rem;
}
@media (min-width: 768px) {
  .l-footer__logo {
    margin-top: 2.1rem;
    margin-bottom: 3.2rem;
  }
}
@media (min-width: 768px) {
  .l-footer__logo a {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
}
@media (any-hover: hover) {
  .l-footer__logo a:hover {
    opacity: 0.7;
  }
}
.l-footer__copyright {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.3333333333;
  color: #fff;
}
.l-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.3rem;
     -moz-column-gap: 1.3rem;
          column-gap: 1.3rem;
  margin-top: 1.7rem;
}
@media (min-width: 768px) {
  .l-footer__sns {
    margin-top: 0.5rem;
  }
}
.l-footer__sns-link {
  display: block;
  width: 2.2rem;
  height: auto;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
@media (any-hover: hover) {
  .l-footer__sns-link:hover {
    opacity: 0.7;
  }
}

.l-two-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.9rem;
}
@media (min-width: 768px) {
  .l-two-column {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.1rem;
  }
}

@media (min-width: 768px) {
  .l-two-column__main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
}

@media (min-width: 768px) {
  .l-two-column__side {
    width: 28.4090909091%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    min-width: 0;
  }
}

.main {
  padding-top: 5rem;
}
@media (min-width: 768px) {
  .main {
    padding-top: 8rem;
  }
}

.c-section-title {
  text-align: center;
  color: #000000;
  font-size: 2.5rem;
  line-height: 1.6;
  font-weight: 700;
}
.c-section-title--red {
  color: #cb0000;
}
.c-section-title--white {
  color: #ffffff;
}
@media (min-width: 768px) {
  .c-section-title {
    font-size: 3rem;
    line-height: 1.6666666667;
  }
}

.c-contact-btn {
  position: fixed;
  right: 2rem;
  bottom: 30.4rem;
  border: 0.1rem solid #cb0000;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s, visibility 0.4s, background-color 0.4s, color 0.4s;
  transition: opacity 0.4s, visibility 0.4s, background-color 0.4s, color 0.4s;
  width: 33.5rem;
  height: 6rem;
  background-color: #cb0000;
  font-size: 2rem;
  line-height: 1.65;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3rem;
  display: grid;
  place-items: center;
}
@media (min-width: 768px) {
  .c-contact-btn {
    width: 30rem;
    bottom: 26.8rem;
    letter-spacing: 0.4rem;
    right: 0;
    cursor: pointer;
  }
}
.c-contact-btn.is-show {
  opacity: 1;
  visibility: visible;
}
@media (any-hover: hover) {
  .c-contact-btn.is-show:hover {
    background-color: #fff;
    color: #cb0000;
  }
}

.c-back-to-top {
  position: fixed;
  right: 2rem;
  bottom: 38.1rem;
  z-index: 100;
  width: 68px;
  height: 68px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s, visibility 0.4s;
  transition: opacity 0.4s, visibility 0.4s;
  clip-path: circle(50%);
}
@media (min-width: 768px) {
  .c-back-to-top {
    right: 11.5rem;
    bottom: 36.1rem;
  }
}
.c-back-to-top.is-show {
  opacity: 1;
  visibility: visible;
}
@media (any-hover: hover) {
  .c-back-to-top.is-show:hover {
    opacity: 0.7;
  }
}

.c-breadcrumbs {
  background-color: #E8E8E8;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-breadcrumbs ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 3.6rem;
}
@media (min-width: 768px) {
  .c-breadcrumbs ol {
    -webkit-column-gap: 1.9rem;
       -moz-column-gap: 1.9rem;
            column-gap: 1.9rem;
    height: 5rem;
  }
}
.c-breadcrumbs a {
  display: inline-block;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .c-breadcrumbs a {
    padding-block: 1rem;
  }
}
.c-breadcrumbs .c-breadcrumbs__arrow {
  margin-left: 1.2rem;
}

.c-kv {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 375/300;
}
@media (min-width: 768px) {
  .c-kv {
    width: 100%;
    aspect-ratio: 1080/200;
  }
}
.c-kv__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(80, 80, 80, 0.4863);
}
.c-kv__catch {
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translate(-50%, -52%);
          transform: translate(-50%, -52%);
  z-index: 1;
}
.c-kv__catch h2 {
  font-size: 2.5rem;
  line-height: 2.4;
  color: #fff;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.c-heading {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #000000;
}

.c-heading--white {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
}

.c-heading--red {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #cb0000;
}

.c-heading--sm {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #000000;
}

.c-heading--lg {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #000000;
}
@media (min-width: 768px) {
  .c-heading--lg {
    font-size: 2.5rem;
    line-height: 1.6;
  }
}

.c-text {
  font-size: 1.6rem;
  line-height: 1.875;
}
@media (min-width: 768px) {
  .c-text {
    font-size: 1.8rem;
    line-height: 1.8333333333;
  }
}

.c-category {
  background-color: #cb0000;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  width: 9rem;
  height: 3rem;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 768px) {
  .c-category {
    width: 8rem;
  }
}

.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .c-pagination {
    gap: 1rem;
  }
}

.c-pagination__link {
  width: 4.4rem;
  height: 4.4rem;
  text-align: center;
  place-content: center;
  color: #000000;
  font-weight: 700;
  border: 0.1rem solid #000000;
}
@media (min-width: 768px) {
  .c-pagination__link {
    font-size: 1.8rem;
    line-height: 1.6666666667;
    width: 5rem;
    height: 5rem;
  }
}

.c-pagination__item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  place-content: center;
}

.c-pagination__item.is-active .c-pagination__link {
  background-color: #000000;
  color: #fff;
  border-color: #000000;
}

.c-pagination__ellipsis {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: 1.1rem;
  gap: 0.3rem;
  height: 4.4rem;
}
@media (min-width: 768px) {
  .c-pagination__ellipsis {
    height: 5rem;
  }
}
.c-pagination__ellipsis span {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background-color: #000000;
}

.c-sns-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-sns-share__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 6.5rem;
  height: 4rem;
}
.c-sns-share__link--facebook {
  background-color: #425893;
}
.c-sns-share__link--twitter {
  background-color: #4a9feb;
}
.c-sns-share__link--hatena {
  background-color: #4eacd5;
}
.c-sns-share__link--line {
  background-color: #52b534;
}
.c-sns-share__link--pocket {
  background-color: #dc4f5a;
}
@media (min-width: 768px) {
  .c-sns-share__link {
    gap: 0.8rem;
    width: auto;
    padding-inline: 1.5rem;
  }
}

.c-sns-share__link img {
  display: block;
  width: 2rem;
  height: 2rem;
}

.c-sns-share__text {
  display: none;
}
@media (min-width: 768px) {
  .c-sns-share__text {
    display: inline;
    font-size: 1rem;
    line-height: 3.3;
    font-weight: 700;
    color: #fff;
  }
}

.c-category--sm {
  background-color: #cb0000;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  width: 8rem;
  height: 3rem;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 768px) {
  .c-category--sm {
    width: 8rem;
  }
}

.c-category--lg {
  background-color: #cb0000;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  width: 10rem;
  height: 3rem;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
}

.c-side-title {
  background-color: #000;
  width: 100%;
  font-size: 1.8rem;
  line-height: 1.8333333333;
  font-weight: 700;
  display: grid;
  place-items: center;
  color: #fff;
  height: 5rem;
}
.c-submit {
  width: 100%;
  max-width: 33.5rem;
  height: 5rem;
  background-color: #cb0000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  border: 0.1rem solid #cb0000;
  -webkit-transition: opacity 0.4s, visibility 0.4s, background-color 0.4s, color 0.4s;
  transition: opacity 0.4s, visibility 0.4s, background-color 0.4s, color 0.4s;
}
@media (min-width: 768px) {
  .c-submit {
    width: 25rem;
    cursor: pointer;
    font-size: 2.5rem;
    line-height: 1.32;
  }
}
@media (any-hover: hover) {
  .c-submit:hover {
    background-color: #fff;
    color: #cb0000;
  }
}

.c-submit__btn {
  -webkit-transition: opacity 0.4s, visibility 0.4s, background-color 0.4s, color 0.4s;
  transition: opacity 0.4s, visibility 0.4s, background-color 0.4s, color 0.4s;
}

.p-mv {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 375/550;
}
@media (min-width: 768px) {
  .p-mv {
    width: 100%;
    aspect-ratio: 1080/470;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-mv__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(80, 80, 80, 0.502);
}
.p-mv__catch {
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translate(-50%, -52%);
          transform: translate(-50%, -52%);
  z-index: 1;
}
.p-mv__catch h2 {
  font-size: 3rem;
  line-height: 1.6666666667;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  text-align: center;
}
@media (min-width: 768px) {
  .p-mv__catch h2 {
    font-size: 4rem;
    line-height: 1.5;
  }
}

.p-concept {
  padding-block: 4.6rem 1.8rem;
}
@media (min-width: 768px) {
  .p-concept {
    padding-block: 6.6rem 4rem;
  }
}
@media (min-width: 768px) {
  .p-concept .c-section-title {
    font-size: 3.5rem;
    line-height: 1.4285714286;
  }
}
.p-concept__text {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  text-align: left;
  margin-top: 0.7rem;
}
.p-concept__text span {
  display: inline-block;
}
@media (min-width: 768px) {
  .p-concept__text {
    text-align: center;
    margin-top: 1.7rem;
  }
}
.p-concept__contents {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .p-concept__contents {
    margin-top: 3.4rem;
  }
}
.p-concept__contents-semicircle {
  width: 100%;
}
.p-concept__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -1rem;
}
@media (min-width: 768px) {
  .p-concept__steps {
    margin-top: -0.6rem;
    margin-left: -2.5rem;
  }
}
.p-concept__step-en {
  margin-top: 3.5rem;
}
@media (min-width: 768px) {
  .p-concept__step-en {
    margin-top: 2.5rem;
  }
}
.p-concept__step-en-item {
  font-size: 2rem;
  line-height: 2.5;
  font-weight: 700;
  color: #cb0000;
  text-align: right;
  margin-bottom: 1.7rem;
}
@media (min-width: 768px) {
  .p-concept__step-en-item {
    font-size: 2.5rem;
    line-height: 2;
  }
}
.p-concept__step-arrow {
  width: 3.5rem;
  height: 22rem;
}
.p-concept__step-ja {
  margin-top: 3.5rem;
}
@media (min-width: 768px) {
  .p-concept__step-ja {
    margin-top: 2.5rem;
  }
}
.p-concept__step-ja-item {
  font-size: 2rem;
  line-height: 2.5;
  margin-bottom: 1.7rem;
}
@media (min-width: 768px) {
  .p-concept__step-ja-item {
    font-size: 2.3rem;
    line-height: 2.1739130435;
  }
}

.p-about {
  padding-block: 4.9rem 4rem;
}
@media (min-width: 768px) {
  .p-about {
    padding-block: 7rem 6.3rem;
  }
}
.p-about__text {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  text-align: center;
  color: #ffffff;
  margin-top: 1.4rem;
}
@media (min-width: 768px) {
  .p-about__text {
    margin-top: 2.5rem;
  }
}

.p-reason {
  padding-block: 4.9rem 3.7rem;
}
@media (min-width: 768px) {
  .p-reason {
    padding-block: 6.4rem 9rem;
  }
}
.p-reason__contents {
  margin-top: 3.5rem;
  display: grid;
  gap: 3.6rem;
}
@media (min-width: 768px) {
  .p-reason__contents {
    margin-top: 2.8rem;
    gap: 5rem;
  }
}
@media (min-width: 768px) {
  .p-reason__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-reason__item-img {
  width: 100%;
}
@media (min-width: 768px) {
  .p-reason__item-img {
    aspect-ratio: auto;
    width: 39.7727272727%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.p-reason__item-img img {
  width: 100%;
  aspect-ratio: 335/200;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .p-reason__item-img img {
    width: 100%;
    aspect-ratio: 350/247;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-reason__item-textarea {
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .p-reason__item-textarea {
    margin-top: 0rem;
  }
}
.p-reason__bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #cb0000;
  margin-top: 0.8rem;
  margin-bottom: 2rem;
}
.p-reason__heading {
  text-align: left;
}
@media (min-width: 768px) {
  .p-reason__heading {
    font-size: 2.2rem;
    line-height: 1.5;
    padding-left: 5rem;
  }
}
@media (min-width: 768px) {
  .p-reason__body-text {
    padding-left: 5rem;
    margin-top: 3.8rem;
  }
}

.p-voice {
  padding-block: 4.6rem 5rem;
}
@media (min-width: 768px) {
  .p-voice {
    padding-block: 4.4rem 7rem;
  }
}
.p-voice__contents {
  margin-top: 3.9rem;
}
@media (min-width: 768px) {
  .p-voice__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 3.6rem;
  }
}
.p-voice .gallery__slide {
  position: relative;
}
@media (min-width: 768px) {
  .p-voice .gallery__slide {
    width: 89.8148148148vw;
    padding-inline: 4.1666666667vw;
  }
}
.p-voice__item-textarea {
  margin-top: 2.7rem;
}
@media (min-width: 768px) {
  .p-voice__item-textarea {
    margin-top: 1.7rem;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    cursor: pointer;
  }
}
@media (any-hover: hover) {
  .p-voice__item-textarea:hover {
    opacity: 0.7;
  }
}
.p-voice__heading {
  text-align: center;
}
@media (min-width: 768px) {
  .p-voice__heading {
    font-size: 2.037037037vw;
  }
}
@media (min-width: 1080px) {
  .p-voice__heading {
    font-size: 2.2rem;
  }
}
.p-voice__body-text {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  color: #fff;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .p-voice__body-text {
    font-size: 1.8rem;
    line-height: 1.8333333333;
  }
}
.p-voice .gallery__prev,
.p-voice .gallery__next {
  position: absolute;
  width: 3rem;
  height: auto;
  z-index: 10;
}
@media (min-width: 768px) {
  .p-voice .gallery__prev,
  .p-voice .gallery__next {
    top: 13.5185185185vw;
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
}
.p-voice .gallery__prev::after,
.p-voice .gallery__next::after {
  display: none;
}
.p-voice .gallery__prev {
  top: 42%;
}
@media (min-width: 768px) {
  .p-voice .gallery__prev {
    left: 0;
  }
}
.p-voice .gallery__next {
  top: 42%;
}
@media (min-width: 768px) {
  .p-voice .gallery__next {
    right: 0;
  }
}
.p-voice__item-img {
  width: 100%;
  aspect-ratio: 335/200;
}
@media (min-width: 768px) {
  .p-voice__item-img {
    aspect-ratio: 270/190;
    -o-object-fit: cover;
       object-fit: cover;
    cursor: pointer;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }
}
@media (any-hover: hover) {
  .p-voice__item-img:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media (min-width: 1080px) {
  .p-voice .gallery__slide {
    width: 970px;
    padding-inline: 45px;
  }
  .p-voice .gallery__prev,
  .p-voice .gallery__next {
    top: 146px;
  }
  .p-voice .gallery__prev {
    left: 0;
  }
  .p-voice .gallery__next {
    right: 0;
  }
}

.p-flow {
  padding-block: 4.6rem 3rem;
}
@media (min-width: 768px) {
  .p-flow {
    padding-block: 3.4rem 5rem;
  }
}
.p-flow__contents {
  margin-top: 5rem;
}
@media (min-width: 768px) {
  .p-flow__contents {
    margin-top: 6.5rem;
  }
}
.p-flow__items {
  position: relative;
}
.p-flow__img-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 3.5rem;
  height: 100%;
}
.p-flow__img-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}
@media (min-width: 768px) {
  .p-flow__img-item {
    margin-left: 4.5rem;
    margin-top: 0.7rem;
    height: auto;
  }
}
.p-flow__textarea {
  margin-left: 4.8rem;
  margin-top: -1rem;
  display: grid;
  gap: 3.6rem;
}
@media (min-width: 768px) {
  .p-flow__textarea {
    gap: 5.5rem;
  }
}
@media (min-width: 768px) {
  .p-flow__textarea-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 7.3rem;
  }
}
.p-flow__heading {
  width: 19.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-flow__body-text {
  font-size: 1.6rem;
  line-height: 1.875;
  margin-top: 0.8rem;
}
@media (min-width: 768px) {
  .p-flow__body-text {
    font-size: 1.8rem;
    line-height: 1.8333333333;
    margin-top: -0.3rem;
  }
}

.p-qa {
  padding-block: 2.8rem 3rem;
}
@media (min-width: 768px) {
  .p-qa {
    padding-block: 5.2rem 4rem;
  }
}
.p-qa__contents {
  margin-top: 3.5rem;
}
@media (min-width: 768px) {
  .p-qa__contents {
    margin-top: 3.6rem;
  }
}
.p-qa__box {
  border-top: #000 solid 0.5px;
}
.p-qa__box:last-child {
  border-bottom: #000 solid 0.5px;
}
.p-qa__box.is-open .p-qa__item-head::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.p-qa__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-block: 1.7rem 0.78rem;
  list-style: none;
  cursor: pointer;
}
.p-qa__item-head::-webkit-details-marker {
  display: none;
}
@media (min-width: 768px) {
  .p-qa__item-head {
    padding-left: 1.9rem;
    padding-block: 1.7rem 0.9rem;
    gap: 1rem;
  }
}
.p-qa__item-head::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
  right: 1.5rem;
  width: 1.36rem;
  height: 0.924rem;
  background: url(../img/faq-arrow.svg) no-repeat center center/contain;
}
@media (min-width: 768px) {
  .p-qa__item-head::after {
    right: 2.9rem;
    height: 1.3rem;
  }
}
.p-qa__item-head-icon {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  background-color: #000;
  border-radius: 50%;
}
.p-qa__item-head-text {
  font-size: 1.6rem;
  line-height: 1.875;
  width: 23.3rem;
}
@media (min-width: 768px) {
  .p-qa__item-head-text {
    width: auto;
    font-size: 17px;
    line-height: 1.7647058824;
  }
}
.p-qa__a-box {
  display: none;
  background-color: rgba(203, 0, 0, 0.102);
}
@media (min-width: 768px) {
  .p-qa__a-box {
    padding-left: 1.9rem;
    padding-block: 2rem 0.9rem;
  }
}
.p-qa__a-box-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1.7rem;
  padding-bottom: 0.8rem;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
@media (min-width: 768px) {
  .p-qa__a-box-item {
    gap: 1rem;
    padding-top: 0;
  }
}
.p-qa__item-a-icon {
  display: grid;
  place-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  background-color: #cb0000;
  border-radius: 50%;
}
.p-qa__item-a-text {
  font-weight: 700;
  color: #cb0000;
  width: 23.3rem;
}
@media (min-width: 768px) {
  .p-qa__item-a-text {
    width: auto;
    font-size: 1.7rem;
    line-height: 1.7647058824;
  }
}

.p-blog {
  padding-block: 2rem 19.2rem;
}
@media (min-width: 768px) {
  .p-blog {
    padding-block: 3.4rem 20.5rem;
  }
}
.p-blog__contents {
  margin-top: 3.5rem;
  display: grid;
  gap: 3.7rem;
}
@media (min-width: 768px) {
  .p-blog__contents {
    margin-top: 3.6rem;
    margin-bottom: 3.7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5rem;
  }
}
.p-blog__date {
  display: grid;
  place-items: end;
  padding-top: 1rem;
  font-size: 1.7rem;
  line-height: 1.7647058824;
}
.p-blog__heading {
  padding-top: 3rem;
}
@media (min-width: 768px) {
  .p-blog__heading {
    padding-top: 2rem;
    font-size: 2rem;
    line-height: 1.25;
  }
}
.p-blog .p-blog__item-img {
  position: relative;
}
.p-blog .p-blog__category {
  position: absolute;
  top: 0;
  left: 0;
}
.p-blog .p-blog__thumb img {
  aspect-ratio: 335/200;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .p-blog .p-blog__thumb img {
    width: 100%;
    aspect-ratio: 260/200;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-blog .p-blog__link {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  display: grid;
  place-items: center;
  margin-top: 3.5rem;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.p-blog .p-blog__link a {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .p-blog .p-blog__link {
    display: block;
    text-align: right;
  }
}
@media (any-hover: hover) {
  .p-blog .p-blog__link:hover {
    opacity: 0.7;
  }
}

.p-price {
  padding-top: 4.6rem;
}
@media (min-width: 768px) {
  .p-price {
    padding-top: 6.7rem;
  }
}
.p-price__contents {
  margin-top: 3.9rem;
}
@media (min-width: 768px) {
  .p-price__contents {
    margin-top: 4rem;
  }
}
.p-price__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .p-price__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3rem;
  }
}
.p-price__item {
  font-size: 2rem;
  line-height: 1.65;
  font-weight: 700;
  width: 21rem;
  height: 6rem;
  background-color: #cb0000;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-price__textarea {
  margin-top: 4.7rem;
  font-size: 1.6rem;
  line-height: 1.875;
}
@media (min-width: 768px) {
  .p-price__textarea {
    font-size: 1.8rem;
    line-height: 1.6666666667;
  }
}

.p-plan {
  padding-top: 3.8rem;
  padding-bottom: 18.6rem;
}
@media (min-width: 768px) {
  .p-plan {
    padding-top: 5.8rem;
    padding-bottom: 22.1rem;
  }
}
.p-plan__font-s {
  font-size: 1.7rem;
  line-height: 1.9411764706;
}
.p-plan__contents {
  overflow-x: scroll;
  padding-top: 3.5rem;
}
@media (min-width: 768px) {
  .p-plan__contents {
    padding-top: 7.9rem;
    overflow: hidden;
  }
}
.p-plan__contents::-webkit-scrollbar {
  height: 2.5rem;
}
.p-plan__contents::-webkit-scrollbar-track {
  background: rgba(80, 80, 80, 0.149);
}
.p-plan__contents::-webkit-scrollbar-thumb {
  background: rgba(80, 80, 80, 0.251);
}
.p-plan__section-title {
  font-size: 2.5rem;
  line-height: 1.52;
}
.p-plan__price-table {
  white-space: nowrap;
  width: 67rem;
  table-layout: fixed;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .p-plan__price-table {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-plan__price-table th,
.p-plan__price-table td {
  border: none;
  width: 16.8rem;
}
@media (min-width: 768px) {
  .p-plan__price-table th,
  .p-plan__price-table td {
    width: auto;
  }
}
.p-plan__price-table thead th:nth-child(2),
.p-plan__price-table thead th:nth-child(4) {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
  background-color: #000;
  height: 6.6rem;
  text-align: center;
  display: block;
  padding: 0.8rem 3.4rem;
}
@media (min-width: 768px) {
  .p-plan__price-table thead th:nth-child(2),
  .p-plan__price-table thead th:nth-child(4) {
    height: 5rem;
    padding: 1.3rem 3.4rem;
  }
}
.p-plan__price-table thead th:nth-child(3) {
  position: relative;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  background-color: #cb0000;
  z-index: 10;
}
@media (min-width: 768px) {
  .p-plan__price-table thead th:nth-child(3) {
    padding: 0;
  }
}
.p-plan__price-table thead th:nth-child(3)::before {
  content: "";
  position: absolute;
  top: -3rem;
  left: 0;
  width: 100%;
  height: 3rem;
  background-color: #cb0000;
}
.p-plan__price-table .p-plan__outstand-ttl {
  position: relative;
  display: block;
  margin-top: -3rem;
  z-index: 10;
}
.p-plan__price-table tbody {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.p-plan__price-table tbody td:not(:first-child) {
  border-left: 1px solid #000;
}
.p-plan__price-table tbody td:nth-child(1) {
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: 700;
  padding-left: 1rem;
  padding-top: 3rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .p-plan__price-table tbody td:nth-child(1) {
    font-size: 1.7rem;
    line-height: 1.7647058824;
    padding-left: 2rem;
    padding-top: 2.9rem;
  }
}
.p-plan__price-table tbody td:nth-child(2),
.p-plan__price-table tbody td:nth-child(4) {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  padding-top: 1rem;
}
.p-plan__price-table tbody td:nth-child(3) {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #cb0000;
  text-align: center;
  vertical-align: middle;
  padding-top: 1rem;
}
.p-plan__price-table tbody th {
  font-size: 1.6rem;
  line-height: 1.5625;
  height: 8.5rem;
  text-align: center;
  vertical-align: middle;
  padding-left: 1rem;
  padding-top: 1rem;
}
@media (min-width: 768px) {
  .p-plan__price-table tbody th {
    font-size: 1.7rem;
    line-height: 1.4705882353;
    padding-left: 2rem;
  }
}
.p-plan__price-table tbody td img {
  width: 1.5rem;
  height: 1.5rem;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 0.8rem;
}
.p-plan__price-table tbody tr:not(:first-child) td {
  font-size: 1.7rem;
  line-height: 1.4705882353;
  font-weight: 500;
  place-items: center;
}
.p-plan__price-table tbody tr:not(:first-child) th {
  padding-left: 1rem;
  text-align: left;
}
@media (min-width: 768px) {
  .p-plan__price-table tbody tr:not(:first-child) th {
    font-size: 1.7rem;
    line-height: 1.4705882353;
    padding-left: 2rem;
  }
}
.p-plan__price-table tbody tr:nth-child(even) {
  background-color: rgba(80, 80, 80, 0.149);
}
.p-plan__bar {
  display: inline-block;
  width: 3rem;
  height: 0.1rem;
  background-color: #707070;
  vertical-align: middle;
  margin-bottom: 1rem;
}
.p-plan__attention {
  font-size: 1.6rem;
  line-height: 1.875;
  margin-top: 1.95rem;
}
@media (min-width: 768px) {
  .p-plan__attention {
    font-size: 1.7rem;
    line-height: 1.4705882353;
    margin-top: 1.5rem;
  }
}

.p-blog-list {
  padding-top: 4.6rem;
  padding-bottom: 20.5rem;
}
@media (min-width: 768px) {
  .p-blog-list {
    padding-top: 6.7rem;
    padding-bottom: 21rem;
  }
}

@media (min-width: 768px) {
  .p-blog-list__section-title {
    font-size: 2.5rem;
    line-height: 1.52;
  }
}

.p-blog-list__contents {
  margin-top: 3.9rem;
  display: grid;
  gap: 3.9rem;
}
@media (min-width: 768px) {
  .p-blog-list__contents {
    margin-top: 4rem;
    gap: 7rem;
  }
}

@media (min-width: 768px) {
  .blog-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5rem;
  }
}

.blog-card__image {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .blog-card__image {
    aspect-ratio: auto;
    width: 29.5454545455%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.blog-card__image img {
  width: 100%;
  aspect-ratio: 335/200;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .blog-card__image img {
    aspect-ratio: 260/184;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-blog-list__category {
  position: absolute;
  top: 0;
  left: 0;
}

.blog-card__textarea {
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .blog-card__textarea {
    margin-top: -0.5rem;
  }
}

.blog-card__heading {
  margin-top: 0.3rem;
}
@media (min-width: 768px) {
  .blog-card__heading {
    margin-top: 0rem;
  }
}

.blog-card__date {
  font-size: 1.7rem;
  line-height: 1.7647058824;
  text-align: right;
  margin-top: 0.6rem;
}
@media (min-width: 768px) {
  .blog-card__date {
    margin-top: 0.3rem;
    text-align: left;
  }
}

.blog-card__text {
  margin-top: 0.8rem;
}
@media (min-width: 768px) {
  .blog-card__text {
    font-size: 1.8rem;
    line-height: 1.6666666667;
    margin-top: 0.8rem;
  }
}

.p-pagination-container {
  margin-top: 5.9rem;
}
@media (min-width: 768px) {
  .p-pagination-container {
    margin-top: 6.9rem;
  }
}

.p-blog-details__contents {
  margin-top: 5rem;
  margin-bottom: 18.2rem;
}
@media (min-width: 768px) {
  .p-blog-details__contents {
    margin-top: 7rem;
    margin-bottom: 18.7rem;
  }
}

.p-blog-details__breadcrumbs {
  height: 5.9rem;
}
@media (min-width: 768px) {
  .p-blog-details__breadcrumbs {
    height: 5rem;
  }
}
.p-blog-details__breadcrumbs ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  white-space: nowrap;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  row-gap: 0;
}

@media (min-width: 768px) {
  .p-blog-details__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (min-width: 768px) {
  .details-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5.5rem;
  }
}

.details-card__image {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .details-card__image {
    aspect-ratio: auto;
    width: 100%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.details-card__image img {
  width: 100%;
  aspect-ratio: 335/200;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .details-card__image img {
    aspect-ratio: 600/350;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.details__category {
  position: absolute;
  top: 0;
  left: 0;
}

.details-card__textarea {
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .details-card__textarea {
    margin-top: -0.5rem;
  }
}

@media (min-width: 768px) {
  .details-card__heading {
    margin-top: 0rem;
  }
}

.details-card__date {
  font-size: 1.7rem;
  line-height: 1.7647058824;
  text-align: left;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .details-card__date {
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.details-card__text {
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .details-card__text {
    font-size: 1.8rem;
    line-height: 1.6666666667;
  }
}

.p-blog-details__text--lg-margin {
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .p-blog-details__text--lg-margin {
    margin-top: 4.5rem;
  }
}

.p-sns-share {
  margin-top: 2.1rem;
}
@media (min-width: 768px) {
  .p-sns-share {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.p-blog-details__textarea--sm-margin {
  margin-top: 3.9rem;
}
@media (min-width: 768px) {
  .p-blog-details__textarea--sm-margin {
    margin-top: 2.9rem;
  }
}

.p-blog-details__text--sm-margin {
  margin-top: 1.7rem;
}

.p-blog-details__image {
  margin-top: 6.9rem;
  width: 100%;
}
@media (min-width: 768px) {
  .p-blog-details__image {
    margin-top: 1rem;
  }
}

@media (min-width: 768px) {
  .p-blog-details__thumb img {
    width: 33.5rem;
    aspect-ratio: 335/200;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-blog-details__list {
  margin-top: 2.7rem;
}
.p-blog-details__list li {
  font-size: 1.6rem;
  line-height: 1.875;
}
@media (min-width: 768px) {
  .p-blog-details__list li {
    font-size: 1.8rem;
    line-height: 1.6666666667;
  }
}

.p-blog-details__border {
  margin-top: 3.85rem;
  border: #000 solid 0.05rem;
  width: 100%;
}
@media (min-width: 768px) {
  .p-blog-details__border {
    margin-top: 4.05rem;
  }
}

.p-blog-details__textarea--lg-margin {
  margin-top: 4.5rem;
}
@media (min-width: 768px) {
  .p-blog-details__textarea--lg-margin {
    margin-top: 4.5rem;
  }
}

.p-blog-details__border-heading {
  border-left: 0.3rem solid #000;
  padding-left: 1rem;
}

.p-blog-details__quote-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4rem;
  margin-top: 2.95rem;
  background-color: #e8e8e8;
  padding: 1.7rem 2rem 1.1rem 2.5rem;
}
@media (min-width: 768px) {
  .p-blog-details__quote-area {
    margin-top: 3rem;
    padding: 1.7rem 2rem 1.2rem 2.5rem;
  }
}

.p-blog-details__quote {
  width: 16rem;
  max-width: 100%;
}
@media (min-width: 768px) {
  .p-blog-details__quote {
    width: 8rem;
  }
}

.p-blog-details__quote-text {
  line-height: 1.8333333333;
}
@media (min-width: 768px) {
  .p-blog-details__quote-text {
    line-height: 1.5555555556;
  }
}

.p-blog-details__textlink {
  color: #cb0000;
  font-size: 2rem;
  line-height: 1.65;
  font-weight: 700;
  text-decoration: underline;
  margin-top: 2.7rem;
}

.p-post-nav {
  margin-top: 4.5rem;
}
@media (min-width: 768px) {
  .p-post-nav {
    margin-top: 5.6rem;
  }
}

.p-post-nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.2rem;
}
@media (min-width: 768px) {
  .p-post-nav__items {
    gap: 7.9rem;
  }
}

.p-post-nav__item {
  width: 100%;
}

.p-post-nav__label--prev {
  background-color: #000000;
  display: inline-block;
  width: 100%;
  padding: 0.4rem 0 0.3rem 2rem;
  color: #fff;
}

.p-post-nav__label--next {
  background-color: #000000;
  display: inline-block;
  padding: 0.4rem 2rem 0.3rem 0;
  width: 100%;
  color: #fff;
  text-align: right;
}

.p-post-nav__text {
  margin-top: 1.5rem;
  font-size: 1.6rem;
  line-height: 1.5625;
  font-weight: 700;
}

@media (min-width: 768px) {
  .post-nav__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.6rem;
  }
  .post-nav__content img {
    width: 9.8rem;
    height: 6.8rem;
    aspect-ratio: 98/68;
    -o-object-fit: cover;
       object-fit: cover;
    margin-top: 1.6rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.p-related__contents {
  margin-top: 6.4rem;
}
@media (min-width: 768px) {
  .p-related__contents {
    margin-top: 9.4rem;
  }
}

.p-related__posts {
  background-color: #000;
  color: #fff;
  width: 100%;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  font-weight: 700;
  display: grid;
  place-items: center;
  height: 5rem;
}
@media (min-width: 768px) {
  .p-related__posts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    padding-left: 3rem;
  }
}

.p-related__items {
  margin-top: 2.1rem;
  display: grid;
  row-gap: 2.1rem;
}
@media (min-width: 768px) {
  .p-related__items {
    margin-top: 3rem;
    row-gap: 3rem;
  }
}

.related-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
@media (min-width: 768px) {
  .related-item {
    gap: 3rem;
  }
}

.related-item__image {
  position: relative;
  width: 16rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 768px) {
  .related-item__image {
    width: 20rem;
  }
}

.related-item__thumb {
  width: 100%;
}
.related-item__thumb img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 160/110;
}
@media (min-width: 768px) {
  .related-item__thumb img {
    width: 24rem;
    height: 14rem;
    aspect-ratio: 240/140;
  }
}

.p-related__category {
  position: absolute;
  top: 0;
  left: 0;
}

.related-item__title {
  margin-top: 0.84rem;
  font-size: 1.7rem;
  line-height: 1.6470588235;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (min-width: 768px) {
  .related-item__title {
    font-size: 2rem;
    line-height: 1.25;
    margin-top: 0;
  }
}

.related-item__date {
  margin-top: 0.4rem;
  text-align: left;
  font-size: 1.7rem;
  line-height: 1.7647058824;
}
@media (min-width: 768px) {
  .related-item__date {
    margin-top: 1.4rem;
  }
}

.p-side-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.8rem;
}
@media (min-width: 768px) {
  .p-side-nav {
    gap: 3rem;
  }
}

.p-side-nav__block--border {
  border: 0.05rem solid #000;
}

.p-side-nav__banner-area {
  padding: 2rem;
}
@media (min-width: 768px) {
  .p-side-nav__banner-area {
    padding: 1.5rem;
  }
}

.p-side-nav__banner {
  height: 22.8rem;
  background-color: #e8e8e8;
  display: grid;
  place-items: center;
}
@media (min-width: 768px) {
  .p-side-nav__banner {
    height: 17rem;
  }
}

.p-side-nav__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 5.4rem;
  margin: 2rem;
  background-color: #e8e8e8;
}
@media (min-width: 768px) {
  .p-side-nav__search {
    height: 4rem;
    margin: 1.5rem;
  }
}

.p-side-nav__search button {
  display: block;
  place-items: center;
  width: 5.4rem;
  height: 5.4rem;
  background-color: #000;
  text-align: right;
}
@media (min-width: 768px) {
  .p-side-nav__search button {
    cursor: pointer;
    width: 4rem;
    height: 4rem;
  }
}

.p-side-nav__search img {
  width: 2.6rem;
  height: auto;
}

.p-side-nav__search input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 2rem;
  color: #858585;
  min-width: 0;
}

.p-side-nav__recommend {
  margin-top: 2.1rem;
  display: grid;
  row-gap: 2.1rem;
}
@media (min-width: 768px) {
  .p-side-nav__recommend {
    row-gap: 1.1rem;
  }
}

.p-side-nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.recommend-item__image {
  position: relative;
  width: 16rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 768px) {
  .recommend-item__image {
    width: 9.5rem;
  }
}

.recommend-item__thumb {
  width: 100%;
}
.recommend-item__thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 160/110;
}
@media (min-width: 768px) {
  .recommend-item__thumb img {
    aspect-ratio: 95/75;
  }
}

.recommend-item__category {
  position: absolute;
  top: 0;
  left: 0;
}

.recommend-item__title {
  margin-top: 0.84rem;
  font-size: 1.7rem;
  line-height: 1.6470588235;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (min-width: 768px) {
  .recommend-item__title {
    margin-top: 0;
  }
}

.recommend-item__date {
  margin-top: 0.4rem;
}

.p-side-nav__category {
  margin-top: 1.6rem;
  margin-bottom: 1.8rem;
  border-bottom: 0.05rem solid #000;
}
@media (min-width: 768px) {
  .p-side-nav__category {
    margin-top: 1.5rem;
    margin-bottom: 1.8rem;
  }
}

.category-item__text {
  font-size: 1.7rem;
  line-height: 1.6470588235;
}

.p-contact-form__contents {
  margin-top: 4.7rem;
  margin-bottom: 10.8rem;
}
@media (min-width: 768px) {
  .p-contact-form__contents {
    margin-top: 6.8rem;
    margin-bottom: 10rem;
  }
}

.p-contact-form__heading {
  font-size: 1.6rem;
  line-height: 1.875;
}
@media (min-width: 768px) {
  .p-contact-form__heading {
    font-size: 1.8rem;
    line-height: 1.6666666667;
    text-align: center;
  }
}

.p-contact-form__block {
  margin-top: 3.2rem;
}
@media (min-width: 768px) {
  .p-contact-form__block {
    margin-top: 6.5rem;
  }
}

.p-contact-form__area {
  margin-top: 1rem;
  display: block;
}
@media (min-width: 768px) {
  .p-contact-form__area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-contact-form__area label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  line-height: 2.0625;
}
@media (min-width: 768px) {
  .p-contact-form__area label {
    font-size: 2rem;
    line-height: 1.65;
    width: 16.9rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0.5rem;
  }
}
.p-contact-form__area dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-contact-form__area:not(:last-of-type) {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .p-contact-form__area:not(:last-of-type) {
    margin-bottom: 3rem;
  }
}

@media (min-width: 768px) {
  .p-contact-form__checkbox-area {
    margin-bottom: 1.6rem;
    margin-top: -0.5rem;
  }
}

@media (min-width: 768px) {
  .form-item__checkbox {
    cursor: pointer;
  }
}

@media (min-width: 768px) {
  .p-contact-form__purpose {
    font-size: 2rem;
    line-height: 1.5;
  }
}

@media (min-width: 768px) {
  .p-contact-form__purpose-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5.3rem;
  }
}

.form-control {
  width: 100%;
  height: 4rem;
  border: 0.05rem solid #000;
  font-size: 1.5rem;
  line-height: 2.2;
  padding-inline: 2rem;
  color: #000000;
}
.form-control::-webkit-input-placeholder {
  color: #b2b2b2;
}
.form-control::-moz-placeholder {
  color: #b2b2b2;
}
.form-control:-ms-input-placeholder {
  color: #b2b2b2;
}
.form-control::-ms-input-placeholder {
  color: #b2b2b2;
}
.form-control::placeholder {
  color: #b2b2b2;
}
@media (min-width: 768px) {
  .form-control {
    cursor: pointer;
  }
}

.content-form {
  display: block;
  height: 19rem;
  padding-top: 1.2rem;
  resize: none;
}
@media (min-width: 768px) {
  .content-form {
    height: 30rem;
    cursor: pointer;
  }
}

.form-item:not(:last-of-type) {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .form-item:not(:last-of-type) {
    margin-bottom: 1rem;
  }
}

.form-item__text {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.875;
  padding-left: 2.5rem;
}
@media (min-width: 768px) {
  .form-item__text {
    font-size: 1.8rem;
    line-height: 1.6666666667;
    padding-left: 3.5rem;
  }
}
.form-item__text::before, .form-item__text::after {
  content: "";
  position: absolute;
  left: -0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-item__text::before {
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border: 0.05rem solid #000;
}
.form-item__text::after {
  width: 18px;
  height: 18px;
  left: 2px;
  background: url(../img/check.svg) no-repeat center center/contain;
  opacity: 0;
}

.form-item__input:checked ~ .form-item__text::after {
  opacity: 1;
}

.p-contact-form__submit {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-contact-form__btn {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .p-contact-form__btn {
    margin-top: 0.5rem;
  }
}

.p-contact-send__text {
  margin-top: 4.7rem;
  margin-bottom: 3.9rem;
}
@media (min-width: 768px) {
  .p-contact-send__text {
    margin-top: 6.7rem;
    font-size: 1.8rem;
    line-height: 1.6666666667;
    text-align: center;
  }
}

.p-contact-form__submit {
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .p-contact-form__submit {
    margin-bottom: 9rem;
  }
}

.p-notfound__text {
  margin-top: 4.7rem;
  margin-bottom: 0.9rem;
}
@media (min-width: 768px) {
  .p-notfound__text {
    margin-top: 6.8rem;
    margin-bottom: 4rem;
    font-size: 1.8rem;
    line-height: 1.6666666667;
    text-align: center;
  }
}

.p-notfound__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .p-notfound__submit {
    margin-bottom: 9rem;
  }
}

.p-search__breadcrumbs {
  height: 3.6rem;
}
@media (min-width: 768px) {
  .p-search__breadcrumbs {
    height: 5rem;
  }
}

.p-search__contents {
  margin-top: 3.6rem;
  margin-bottom: 20.3rem;
}
@media (min-width: 768px) {
  .p-search__contents {
    margin-top: 6.8rem;
    margin-bottom: 21rem;
  }
}

.p-search-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.8rem;
  line-height: 1.6666666667;
}

.text-bold {
  font-weight: 700;
}

.search__items {
  margin-top: 4.2rem;
  display: grid;
  gap: 3.9rem;
}
@media (min-width: 768px) {
  .search__items {
    margin-top: 4rem;
    gap: 7rem;
  }
}

@media (min-width: 768px) {
  .search-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5rem;
  }
}

.search-card__image {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .search-card__image {
    aspect-ratio: auto;
    width: 29.5454545455%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.search-card__image img {
  width: 100%;
  aspect-ratio: 335/200;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .search-card__image img {
    aspect-ratio: 260/184;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-search__category {
  position: absolute;
  top: 0;
  left: 0;
}

.search-card__textarea {
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .search-card__textarea {
    margin-top: -0.5rem;
  }
}

.search-card__heading {
  margin-top: 0.3rem;
}
@media (min-width: 768px) {
  .search-card__heading {
    margin-top: 0rem;
  }
}

.search-card__date {
  font-size: 1.7rem;
  line-height: 1.7647058824;
  text-align: right;
  margin-top: 0.6rem;
}
@media (min-width: 768px) {
  .search-card__date {
    margin-top: 0.3rem;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.search-card__text {
  margin-top: 0.8rem;
}
@media (min-width: 768px) {
  .search-card__text {
    font-size: 1.8rem;
    line-height: 1.6666666667;
    margin-top: 0.8rem;
  }
}

.p-search-pagination__container {
  margin-top: 5.9rem;
}
@media (min-width: 768px) {
  .p-search-pagination__container {
    margin-top: 6.9rem;
  }
}

.p-result-list {
  padding-top: 4.6rem;
  padding-bottom: 20.5rem;
}
@media (min-width: 768px) {
  .p-result-list {
    padding-top: 6.7rem;
    padding-bottom: 21rem;
  }
}

@media (min-width: 768px) {
  .p-result-list__section-title {
    font-size: 2.5rem;
    line-height: 1.52;
  }
}

.p-result-list__contents {
  margin-top: 3.9rem;
  display: grid;
  gap: 3.9rem;
}
@media (min-width: 768px) {
  .p-result-list__contents {
    margin-top: 4rem;
    grid-template-columns: 1fr 1fr;
    gap: 7.1rem 10.6rem;
  }
}

.result-list-card__image {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .result-list-card__image {
    aspect-ratio: auto;
  }
}
.result-list-card__image img {
  width: 100%;
  aspect-ratio: 335/200;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .result-list-card__image img {
    aspect-ratio: 387/273;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.result-list-card__thumb {
  width: 100%;
}

.result-list-card__image-link {
  display: block;
  width: 100%;
}

.p-result-list__category {
  position: absolute;
  top: 0;
  left: 0;
}

.result-list-card__textarea {
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .result-list-card__textarea {
    margin-top: 1.8rem;
  }
}

.result-list-card__date {
  font-size: 1.7rem;
  line-height: 1.7647058824;
  text-align: right;
  margin-top: 0.6rem;
}
@media (min-width: 768px) {
  .result-list-card__date {
    margin-top: 1rem;
  }
}

.p-result-list__pagination-container {
  margin-top: 5.9rem;
}
@media (min-width: 768px) {
  .p-result-list__pagination-container {
    margin-top: 7.1rem;
  }
}

.p-result-details__breadcrumbs {
  height: 7.7rem;
  padding-top: 1rem;
}
@media (min-width: 768px) {
  .p-result-details__breadcrumbs {
    height: 5rem;
    padding-top: 0;
  }
}
.p-result-details__breadcrumbs ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  white-space: wrap;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  row-gap: 0;
}
.p-result-details__breadcrumbs nav {
  line-height: 2rem;
}

.p-result-details__contents {
  margin-top: 5rem;
  margin-bottom: 20.2rem;
}
@media (min-width: 768px) {
  .p-result-details__contents {
    margin-top: 7rem;
    margin-bottom: 15.4rem;
  }
}

.p-result-details_img {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .p-result-details_img {
    aspect-ratio: auto;
    width: 100%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.p-result-details_img img {
  width: 100%;
  aspect-ratio: 335/236;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .p-result-details_img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (min-width: 768px) {
  .p-result-details_thmb img {
    width: 33.5rem;
    aspect-ratio: 335/200;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.result-card__image {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .result-card__image {
    aspect-ratio: auto;
    width: 100%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.result-card__image img {
  width: 100%;
  aspect-ratio: 335/236;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .result-card__image img {
    aspect-ratio: 880/400;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-result-details__card-textarea {
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .p-result-details__card-textarea {
    margin-top: 5rem;
  }
}

.p-result-details__card-date {
  margin-top: 0.6rem;
}
@media (min-width: 768px) {
  .p-result-details__card-date {
    margin-top: 1.5rem;
  }
}

.p-result-details__category {
  position: absolute;
  top: 0;
  left: 0;
}

.result-card__date {
  -moz-text-align-last: left;
       text-align-last: left;
}

.p-result-details__textarea {
  margin-top: 2.1rem;
}
@media (min-width: 768px) {
  .p-result-details__textarea {
    margin-top: 5.7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4rem;
  }
}

.profile-item {
  width: 100%;
  border-collapse: collapse;
  border: 0.05rem solid #707070;
}
@media (min-width: 768px) {
  .profile-item {
    width: 40rem;
    table-layout: fixed;
  }
}

.profile-item__title {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  font-weight: 700;
  width: 12rem;
  background-color: #e5e5e5;
  padding-top: 0.7rem;
  padding-left: 1rem;
  border-collapse: collapse;
  border: 0.05rem solid #707070;
}
@media (min-width: 768px) {
  .profile-item__title {
    width: 14rem;
    padding-top: 0.7rem;
    padding-left: 2rem;
  }
}

.profile-item__text {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  font-weight: 500;
  padding-top: 0.7rem;
  padding-left: 1rem;
  border-collapse: collapse;
  border: 0.05rem solid #707070;
}
@media (min-width: 768px) {
  .profile-item__text {
    width: 26rem;
    padding-top: 0.7rem;
    padding-left: 2rem;
  }
}

.p-result-details__text {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .p-result-details__text {
    margin-top: 0;
  }
}

.p-result-details__related-contents {
  margin-top: 7.1rem;
}
@media (min-width: 768px) {
  .p-result-details__related-contents {
    margin-top: 10rem;
  }
}

.p-result-related-item__image {
  position: relative;
  width: 16rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 768px) {
  .p-result-related-item__image {
    width: 26rem;
  }
}

.p-result-related-item__thumb {
  width: 100%;
}
.p-result-related-item__thumb img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 160/110;
}
@media (min-width: 768px) {
  .p-result-related-item__thumb img {
    width: 26rem;
    height: 18.4rem;
    aspect-ratio: 260/184;
  }
}

.p-result-nav {
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .p-result-nav {
    margin-top: 6rem;
  }
}

.p-result-nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.2rem;
}
@media (min-width: 768px) {
  .p-result-nav__items {
    gap: 19.9rem;
  }
}

.p-result-nav__item {
  width: 100%;
}
@media (min-width: 768px) {
  .p-result-nav__item {
    width: 34rem;
  }
}

.p-result-nav__label--prev {
  background-color: #000000;
  display: inline-block;
  width: 100%;
  padding: 0.4rem 0 0.3rem 2rem;
  color: #fff;
}

.p-result-nav__label--next {
  background-color: #000000;
  display: inline-block;
  padding: 0.4rem 2rem 0.3rem 0;
  width: 100%;
  color: #fff;
  text-align: right;
}

.p-result-nav__text {
  margin-top: 1.5rem;
  font-size: 1.6rem;
  line-height: 1.5625;
  font-weight: 700;
}

@media (min-width: 768px) {
  .p-result-nav__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.6rem;
  }
  .p-result-nav__content img {
    width: 9.8rem;
    height: 6.8rem;
    aspect-ratio: 98/68;
    -o-object-fit: cover;
       object-fit: cover;
    margin-top: 1.6rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.p-result-related__contents {
  margin-top: 6.5rem;
}
@media (min-width: 768px) {
  .p-result-related__contents {
    margin-top: 10rem;
  }
}

.p-result-related__posts {
  background-color: #000;
  color: #fff;
  width: 100%;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  font-weight: 700;
  display: grid;
  place-items: center;
  height: 5rem;
}
@media (min-width: 768px) {
  .p-result-related__posts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    padding-left: 3rem;
  }
}

.p-result-related__items {
  margin-top: 2.1rem;
  display: grid;
  row-gap: 2.1rem;
}
@media (min-width: 768px) {
  .p-result-related__items {
    margin-top: 3rem;
    row-gap: 3rem;
  }
}

.p-result-related__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
@media (min-width: 768px) {
  .p-result-related__item {
    gap: 3rem;
  }
}

.p-result-related__image {
  position: relative;
  width: 16rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 768px) {
  .p-result-related__image {
    width: 26rem;
  }
}

.p-result-related__thumb {
  width: 100%;
}
.p-result-related__thumb img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 160/110;
}
@media (min-width: 768px) {
  .p-result-related__thumb img {
    width: 26rem;
    height: 18.4rem;
    aspect-ratio: 260/184;
  }
}

.p-result-related__category {
  position: absolute;
  top: 0;
  left: 0;
}

.p-result-related__title {
  font-size: 1.7rem;
  line-height: 1.6470588235;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-result-related__title {
    font-size: 2rem;
    line-height: 1.25;
    margin-top: 0;
  }
}

.p-result-related__date {
  margin-top: 0.4rem;
  text-align: left;
  font-size: 1.7rem;
  line-height: 1.7647058824;
}
@media (min-width: 768px) {
  .p-result-related__date {
    margin-top: 1.4rem;
  }
}/*# sourceMappingURL=style.css.map */