@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #0e0e0e;
  background-image: repeating-linear-gradient(90deg, #e8e8e8, #e8e8e8 1px, transparent 1px, transparent 145px);
  background-size: 145px 100%;
  background-position: center top;
  background-color: #f7f6f3;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.246105919vw;
  }
}
@media (min-width: 1284px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
img {
  max-width: 100%;
  display: block;
  width: 100%;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1.05" /><feFuncG type="linear" slope="1.05" /><feFuncB type="linear" slope="1.05" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.under-slider-wrapper {
  z-index: -1;
  position: relative;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .under-slider-wrapper {
    margin-top: 0;
  }
}

.slider-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  line-height: 1;
}

.slider {
  -webkit-animation: scroll-right 150s infinite linear 0.5s both;
          animation: scroll-right 150s infinite linear 0.5s both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  gap: 3.75rem;
}
@media screen and (min-width: 768px) {
  .slider {
    -webkit-animation: scroll-right 85s infinite linear 0.5s both;
            animation: scroll-right 85s infinite linear 0.5s both;
  }
}

.slide {
  width: 406vw;
  color: #eae8e3;
}
@media screen and (min-width: 768px) {
  .slide {
    width: 153vw;
  }
}

.top-slider .slider {
  -webkit-animation: scroll-left 150s infinite linear 0.5s both;
          animation: scroll-left 150s infinite linear 0.5s both;
}
@media screen and (min-width: 768px) {
  .top-slider .slider {
    -webkit-animation: scroll-left 85s infinite linear 0.5s both;
            animation: scroll-left 85s infinite linear 0.5s both;
  }
}

@-webkit-keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes scroll-right {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes scroll-right {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes u-fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes u-fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes u-fadeLeft {
  0% {
    opacity: 0;
    -webkit-clip-path: inset(0% 100% 0% 0%);
            clip-path: inset(0% 100% 0% 0%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0% 0% 0% 0%);
            clip-path: inset(0% 0% 0% 0%);
  }
}
@keyframes u-fadeLeft {
  0% {
    opacity: 0;
    -webkit-clip-path: inset(0% 100% 0% 0%);
            clip-path: inset(0% 100% 0% 0%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0% 0% 0% 0%);
            clip-path: inset(0% 0% 0% 0%);
  }
}
.banner-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  bottom: 20px;
  bottom: 1.25rem;
  right: 24px;
  right: 1.5rem;
  z-index: 100;
  border: 1px solid #e96e48;
  border-radius: 0.25rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .banner-btn {
    width: 22.5rem;
    bottom: 3.125rem;
  }
}
.banner-btn.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.banner-btn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.btn__link.btn__link--orange {
  background: #e96e48;
  white-space: nowrap;
  width: 100%;
  -webkit-transition: all 0.3s, color 0.3s, border 0.3s;
  transition: all 0.3s, color 0.3s, border 0.3s;
}
.btn__link.btn__link--orange:hover {
  background: #FFFFFF;
  color: #e96e48;
}

.breadcrumbs {
  font-size: 13px;
  font-size: 0.8125rem;
}

.breadcrumbs .home {
  color: #222;
  text-decoration: underline;
}

.breadcrumbs a {
  padding: 3px 3px;
  padding: 0.1875rem 0.1875rem;
}

.breadcrumbs .current-item {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .breadcrumbs .current-item {
    font-size: 0.8125rem;
  }
}

.btn {
  border-radius: 0.375rem;
}

.btn__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  gap: 2.5rem;
  background: #0e0e0e;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  padding: 10px 10px 7px 25px;
  padding: 0.625rem 0.625rem 0.4375rem 1.5625rem;
  border-radius: 0.25rem;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 97%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .btn__link {
    padding: 0.75rem 1rem 0.75rem 2rem;
  }
  .btn__link:hover {
    opacity: 1;
    background-color: #FFFFFF;
    color: #0e0e0e;
  }
}
.btn__link span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.btn__link svg {
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  display: block;
}

.card-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  border-bottom: 1px solid #afafaf;
  position: relative;
  padding-bottom: 32px;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .card-item {
    gap: 1.0625rem;
  }
}

.card-item:hover .card-item__image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.card-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 13%;
  height: 1px;
  background: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .card-item::before {
    width: 8%;
  }
}

.card-item__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .card-item__image {
    width: auto;
  }
}
.card-item__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  aspect-ratio: 253/175;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) {
  .card-item__image img {
    aspect-ratio: 383/260;
  }
}

.card-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.card-item__category {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
}

.card-item__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  gap: 0.3125rem;
}

.card-item__title {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 12px;
  margin-top: 0.75rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (min-width: 768px) {
  .card-item__title {
    margin-top: 1.0625rem;
  }
}

.card-item__link {
  color: inherit;
  text-decoration: none;
}
.card-item__link::after {
  content: "";
  position: absolute;
  inset: 0;
}

.card-item__description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #696969;
}

.card-item__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
}

.card-item__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1px 8px;
  padding: 0.0625rem 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.6;
  color: inherit;
  text-decoration: none;
  position: relative;
  z-index: 1;
  border-right: 1px solid #afafaf;
}
@media screen and (min-width: 768px) {
  .card-item__tag {
    padding-inline: 0.75rem;
  }
}

.card-item__tag:last-child,
.card-item__tag:only-child {
  border-right: none;
}

.card-item__tag:first-child {
  padding-left: 0;
}

.card-item__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
}

.card-item__date-text {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #454545;
}

.card-item__date-update {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2px 0 0;
  padding: 0.125rem 0 0;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #c3461f;
}

.card-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: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .card-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
  }
}

.construction-steps {
  gap: 60px;
  gap: 3.75rem;
  grid-template-columns: repeat(1, 1fr) !important;
}
@media screen and (min-width: 768px) {
  .construction-steps {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

.construction-steps__item {
  position: relative;
  padding: 18px 26px;
  padding: 1.125rem 1.625rem;
}
@media screen and (min-width: 768px) {
  .construction-steps__item {
    padding: 1.5rem 1.25rem;
  }
}
.construction-steps__item:not(:last-child):after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40px;
  bottom: -2.5rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-left: 0.75rem solid transparent;
  border-right: 12px solid transparent;
  border-right: 0.75rem solid transparent;
  border-top: 20px solid #0e0e0e;
  border-top: 1.25rem solid #0e0e0e;
}
@media screen and (min-width: 768px) {
  .construction-steps__item:not(:last-child):after {
    content: "";
    position: absolute;
    left: auto;
    bottom: auto;
    right: -2.6875rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 1.25rem solid #0e0e0e;
    border-top: 0.75rem solid transparent;
    border-bottom: 0.75rem solid transparent;
    border-right: 0;
  }
}

.service-detail-content .construction-steps__item-number {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1 !important;
}
@media screen and (min-width: 768px) {
  .service-detail-content .construction-steps__item-number {
    font-size: 2.5625rem !important;
  }
}

.service-detail-content .construction-steps__item .wp-block-group {
  gap: 0;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .service-detail-content .construction-steps__item .wp-block-group {
    -webkit-column-gap: 0.8125rem;
       -moz-column-gap: 0.8125rem;
            column-gap: 0.8125rem;
  }
}

.construction-steps__item-heading {
  padding-right: 16px;
  padding-right: 1rem;
  border-right: 1px solid #d3d3d3;
}

.service-detail-content .construction-steps__item .wp-block-group h3 {
  margin-block: 0;
}
@media screen and (min-width: 768px) {
  .service-detail-content .construction-steps__item .wp-block-group h3 {
    gap: 1.75rem;
    font-size: 1.4375rem;
  }
}

.service-detail-content .construction-steps__item p {
  margin-bottom: 0;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .service-detail-content .construction-steps__item p {
    font-size: 1.0625rem;
    line-height: 1;
  }
}

.service-detail-content .construction-steps__item .construction-steps__item-text {
  margin-top: 16px;
  margin-top: 1rem;
  font-weight: 400;
  border-top: 1px dashed #8c8c8c;
  padding-top: 16px;
  padding-top: 1rem;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .service-detail-content .construction-steps__item .construction-steps__item-text {
    line-height: 1.7;
    margin-top: 1.1875rem;
    padding-top: 0.875rem;
  }
}

.category-attention_section-flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .category-attention_section-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .category-attention_section-flex .wp-block-group {
    width: 60%;
  }
}

/*======================================
        category-voice_section
=======================================*/
.category-voice_section {
  border-radius: 0.5rem;
  margin-top: 32px;
  margin-top: 2rem;
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .category-voice_section {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 1441px) {
  .category-voice_section {
    margin-right: 0;
  }
}

.category-voice_section-list {
  margin-top: 27px;
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .category-voice_section-list {
    margin-top: 2.9375rem;
  }
}

.category-voice_section-item {
  background-color: #FFFFFF;
  padding: 24px 20px;
  padding: 1.5rem 1.25rem;
}

.category-voice_section-item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
}

.category-voice_section-title {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  margin: 0 0 4px;
  margin: 0 0 0.25rem;
  color: #e96e48;
}
@media screen and (min-width: 768px) {
  .category-voice_section-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
}

.category-voice_section-subtitle {
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .category-voice_section-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
}

.category-voice_section-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .category-voice_section-body {
    gap: 1.25rem;
  }
}

.category-voice_section-avatar {
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .category-voice_section-avatar {
    width: 4.375rem;
    height: 4.375rem;
  }
}
.category-voice_section-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.category-voice_section-body p {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.85;
  font-weight: 400;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .category-voice_section-body p {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.service-detail__voice-slider-buttons {
  position: relative;
  width: 85px;
  width: 5.3125rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .service-detail__voice-slider-buttons {
    width: 7.125rem;
    margin-top: 2.625rem;
  }
}
.service-detail__voice-slider-buttons .swiper-button-prev,
.service-detail__voice-slider-buttons .swiper-button-next {
  width: 32px;
  width: 2rem;
}
@media screen and (min-width: 768px) {
  .service-detail__voice-slider-buttons .swiper-button-prev,
  .service-detail__voice-slider-buttons .swiper-button-next {
    width: 2.5rem;
  }
}

/*======================================
          before/after-
=======================================*/
.service-detail__comparison-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 56px;
  margin-top: 3.5rem;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .service-detail__comparison-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3rem;
  }
}

.service-detail__comparison-item {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .service-detail__comparison-item {
    width: 50%;
  }
}
.service-detail__comparison-item img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  aspect-ratio: 375/273;
}
@media screen and (min-width: 768px) {
  .service-detail__comparison-item img {
    aspect-ratio: 720/504;
  }
}

.service-detail__comparison-label {
  position: absolute;
  top: -21px;
  top: -1.3125rem;
  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: 61px;
  width: 3.8125rem;
  height: 61px;
  height: 3.8125rem;
  background: #FFFFFF;
  border: 2px solid #0e0e0e;
  border: 0.125rem solid #0e0e0e;
  border-radius: 50%;
  background-color: transparent;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .service-detail__comparison-label {
    width: 5.375rem;
    height: 5.375rem;
    border: 0.1875rem solid #0e0e0e;
    top: -1.5rem;
  }
}

.service-detail__comparison-label-text {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .service-detail__comparison-label-text {
    font-size: 1.3125rem;
  }
}

.service-detail__comparison-item-text {
  margin-top: 16px !important;
  margin-top: 1rem !important;
}
@media screen and (min-width: 768px) {
  .service-detail__comparison-item-text {
    margin-top: 1.5rem;
  }
}

.service-detail__comparison-itemImg img {
  border-radius: 0.5rem !important;
  overflow: hidden;
  margin-bottom: 0 !important;
}

.service_overview {
  gap: 12px;
  gap: 0.75rem;
  margin-top: 32px;
  margin-top: 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .service_overview {
    margin-top: 5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.5rem;
  }
}
.service_overview h2 {
  margin-top: 0 !important;
}

.service_overview .wp-block-image {
  margin: 0 !important;
}
.service_overview .wp-block-image img {
  margin: 0 !important;
}

.service_overview .wp-block-group {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .service_overview .wp-block-group {
    width: 50%;
  }
}

/*======================================
            こんな方におすすめ
=======================================*/
.recommend_section-flex {
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .recommend_section-flex {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.recommend_section-flex .wp-block-image {
  margin: 0 !important;
}
.recommend_section-flex .wp-block-image img {
  margin: 0 !important;
}

/*======================================
        total_time_section
=======================================*/
.total_time_section {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .total_time_section {
    margin-top: 2.5rem;
  }
}

.total_time_section-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-color: #FFFFFF;
  border: 1px solid #d3d3d3;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .total_time_section-wrap {
    margin-top: 1.5rem;
  }
}

.total_time_section-label {
  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;
  padding: 14px 33px;
  padding: 0.875rem 2.0625rem;
  background-color: #696969;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .total_time_section-label {
    padding: 1.125rem 2rem;
    font-size: 1.25rem !important;
    min-width: 15.4375rem;
  }
}

.total_time_section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 15px;
  padding: 0.3125rem 0.9375rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .total_time_section-content {
    padding: 0.875rem 1.1875rem;
  }
}

.total_time_section-value {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700 !important;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 0 !important;
  font-size: 16px !important;
  font-size: 1rem !important;
}
@media screen and (min-width: 768px) {
  .total_time_section-value {
    font-size: 1.125rem !important;
    margin-bottom: 0.625rem !important;
  }
}

.total_time_section-note {
  font-size: 12px !important;
  font-size: 0.75rem !important;
  line-height: 1.6;
  color: #222;
  font-weight: 400;
  margin-bottom: 0 !important;
}
@media screen and (min-width: 768px) {
  .total_time_section-note {
    font-size: 0.75rem !important;
  }
}

/*======================================
            service-cta-section
=======================================*/
.service-cta-section {
  margin-top: 40px;
  margin-top: 2.5rem;
  background: url("../images/common/service-detail/bg_service01.jpg") center/cover no-repeat;
  padding: 36px 20px;
  padding: 2.25rem 1.25rem;
  text-align: center;
  margin: 0 calc(50% - 50vw);
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .service-cta-section {
    margin-top: 5rem;
    padding: 3.5rem 2.5rem;
  }
}

.service-cta-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  gap: 1.125rem;
  padding: 33px 30px 40px;
  padding: 2.0625rem 1.875rem 2.5rem;
  width: 95%;
  margin-inline: auto;
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .service-cta-section__inner {
    gap: 3.5625rem;
    width: 67%;
    padding: 3.8125rem 1.875rem 2.5rem;
  }
}

.service-cta-section__text {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 2;
  color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .service-cta-section__text {
    font-size: 1.6875rem;
    line-height: 1.6;
    gap: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .service-cta-section__footer {
    width: 60%;
  }
}
.service-cta-section__footer .btn__link.btn__link--orange {
  position: relative;
  border: 1px solid #e96e48;
  font-size: 16px;
  font-size: 1rem;
  padding-inline: 44px 18px;
  padding-inline: 2.75rem 1.125rem;
  padding-block: 6px 8px;
  padding-block: 0.375rem 0.5rem;
  max-width: 300px;
  display: block;
  text-align: left;
  width: 250px;
  width: 15.625rem;
}
@media screen and (min-width: 768px) {
  .service-cta-section__footer .btn__link.btn__link--orange {
    font-size: 1.25rem;
    padding-block: 1.375rem 1.625rem;
    max-width: 600px;
    text-align: center;
    width: 100%;
    padding-right: 2.5rem;
    margin-inline: auto;
  }
}
.service-cta-section__footer .btn__link span {
  position: absolute;
  right: 24px;
  right: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .service-cta-section__footer .btn__link span {
    right: 1.125rem;
  }
}
.service-cta-section__footer .btn__link.btn__link--orange svg {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
}
@media screen and (min-width: 768px) {
  .service-cta-section__footer .btn__link.btn__link--orange svg {
    width: 3rem;
    height: 3rem;
  }
}

/*======================================
        recommend-service_section
=======================================*/
.recommend-service_section {
  margin-block: 60px 56px;
  margin-block: 3.75rem 3.5rem;
}
@media screen and (min-width: 768px) {
  .recommend-service_section {
    margin-block: 5rem;
  }
}

.recommend-service_section-title {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .recommend-service_section-title {
    font-size: 1.75rem;
  }
}

.recommend-service_section-flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  gap: 1.25rem;
  row-gap: 18px;
  row-gap: 1.125rem;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .recommend-service_section-flex {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    row-gap: 2.5rem;
    margin-top: 2.5rem;
  }
}

.recommend-service_section-item-image {
  border-radius: 0.5rem;
  overflow: hidden;
}
.recommend-service_section-item-image img {
  aspect-ratio: 2/2.3;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .recommend-service_section-item-image img {
    aspect-ratio: 2/1.4;
  }
}

.recommend-service_section-item-title {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .recommend-service_section-item-title {
    font-size: 1.1875rem;
  }
}

.contact-cta {
  padding: 48px 0 56px;
  padding: 3rem 0 3.5rem;
  background-color: #FFFFFF;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-cta {
    padding: 4rem 0 5rem;
  }
}

.contact-cta__inner {
  max-width: 1284px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media screen and (min-width: 768px) {
  .contact-cta__inner {
    padding-inline: 25px;
  }
}

.contact-cta__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.2;
  color: #0e0e0e;
  margin: 0 0 16px;
  margin: 0 0 1rem;
}
@media screen and (min-width: 768px) {
  .contact-cta__title {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
  }
}

.contact-cta__desc {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #0e0e0e;
  margin: 0 0 32px;
  margin: 0 0 2rem;
  max-width: 520px;
  max-width: 32.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .contact-cta__desc {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}

.contact-cta__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .contact-cta__buttons {
    -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;
    gap: 1.5rem;
  }
}

.contact-cta__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  gap: 0.75rem;
  padding: 16px 28px;
  padding: 1rem 1.75rem;
  border-radius: 0.5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  min-width: 280px;
  min-width: 17.5rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .contact-cta__btn {
    padding: 1.125rem 2rem;
    font-size: 1.0625rem;
    min-width: 16.25rem;
  }
}
.contact-cta__btn:hover {
  opacity: 0.9;
}

.contact-cta__btn--tel {
  background-color: #0e0e0e;
  color: #FFFFFF;
}
.contact-cta__btn--tel .contact-cta__btn-icon {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
}

.contact-cta__btn--mail {
  background-color: #e8c547;
  color: #0e0e0e;
}
.contact-cta__btn--mail .contact-cta__btn-icon {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
}

.contact-cta__btn-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cta-small {
  border-top: 2px dotted #8c8c8c;
  border-top: 0.125rem dotted #8c8c8c;
  border-bottom: 2px dotted #8c8c8c;
  border-bottom: 0.125rem dotted #8c8c8c;
  gap: 17px;
  gap: 1.0625rem;
}
.cta-small .wp-block-image {
  margin: 0 !important;
  width: 32px;
  width: 2rem;
}
@media screen and (min-width: 768px) {
  .cta-small .wp-block-image {
    width: 2rem;
  }
}
.cta-small img {
  margin-bottom: 0 !important;
}
.cta-small a {
  color: inherit !important;
  padding-left: 0 !important;
  font-size: 15px !important;
  font-size: 0.9375rem !important;
  text-decoration: none !important;
  font-weight: 700 !important;
}
.cta-small p {
  padding-block: 13px 15px;
  padding-block: 0.8125rem 0.9375rem;
}

.cta-big {
  border: 1px dotted #0e0e0e;
  padding-block: 46px;
  padding-block: 2.875rem;
  padding-inline: 16px;
  padding-inline: 1rem;
}

.cta-big p {
  font-size: 18px !important;
  font-size: 1.125rem !important;
}
@media screen and (min-width: 768px) {
  .cta-big p {
    font-size: 1.5rem !important;
  }
}

.cta-button {
  margin-top: 10px !important;
  margin-top: 0.625rem !important;
}

.cta-button a {
  text-decoration: none !important;
  color: #FFFFFF !important;
  width: 250px !important;
  display: inline-block;
  text-align: left;
  padding-left: 34px !important;
  padding-left: 2.125rem !important;
  padding-block: 15px !important;
  padding-block: 0.9375rem !important;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cta-button a {
    padding-block: 1.5625rem !important;
  }
}

.cta-button a:after {
  content: "";
  position: absolute;
  right: 20px;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/common/icon_arrow-og-wt.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 46px;
  height: 2.875rem;
  width: 46px;
  width: 2.875rem;
}

.cta-small p {
  margin-bottom: 0 !important;
}

body.active,
body.is-drawer-open {
  height: 100%;
  overflow: hidden;
}

.header__drawer {
  display: none;
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100vh;
  margin-inline: auto;
  background-color: #FFFFFF;
  overflow-y: scroll;
  scrollbar-width: none;
  background-color: #f7f6f3;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer.is-open {
  display: block;
}

.header__drawer-inner {
  width: 100%;
  margin: 0 auto;
  width: 330px;
  width: 20.625rem;
  margin-top: 153px;
  margin-top: 9.5625rem;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}

.header__drawer-close {
  text-align: right;
}

.header__drawer-close-btn {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  text-align: right;
  color: #0e0e0e;
  cursor: pointer;
}

.header__drawer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  gap: 34px;
  gap: 2.125rem;
  margin-top: 62px;
  margin-top: 3.875rem;
}

.header__drawer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  gap: 2rem;
  list-style: none;
}

.header__drawer-item {
  width: 45%;
}

.header__drawer-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 700;
}

.header__drawer-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.header__drawer-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  text-align: left;
  color: #0e0e0e;
}

.header__drawer-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.6;
  text-align: left;
  color: #181818;
}

.header__drawer-arrow {
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  color: #fff;
  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;
  border: 1px solid #FFFFFF;
  border: 0.0625rem solid #FFFFFF;
  border-radius: 50%;
  background-color: #0e0e0e;
  font-size: 6px;
  font-size: 0.375rem;
  padding-top: 2px;
  padding-top: 0.125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__drawer-contact {
  padding: 16px 24px;
  padding: 1rem 1.5rem;
  background-color: #e96e48;
  border-radius: 0.25rem;
}

.header__drawer-contact-btn {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
  text-align: right;
  color: #FFFFFF;
  text-decoration: none;
  width: 100%;
  display: inline-block;
  text-align: center;
}

.header__drawer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  gap: 4px;
  gap: 0.25rem;
  margin-top: 57px;
  margin-top: 3.5625rem;
}

.header__drawer-info-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  text-align: left;
  color: #0e0e0e;
  margin: 0;
}

.header__drawer-info-tel {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.2;
  text-align: left;
  margin-top: 4px;
  margin-top: 0.25rem;
}

.header__drawer-info-time {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  text-align: left;
  color: #0e0e0e;
  margin: 0;
}

.header__drawer-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  gap: 16px;
  gap: 1rem;
  margin-top: 56px;
  margin-top: 3.5rem;
}

.header__drawer-footer-logo a {
  width: 160px;
  width: 10rem;
  display: inline-block;
}

.header__drawer-footer-company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  gap: 0.25rem;
}

.header__drawer-footer-company-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  text-align: left;
  color: #0e0e0e;
  margin: 0;
}

.header__drawer-footer-company-address {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  text-align: left;
  color: #0e0e0e;
}

.header__drawer-footer-company-address span {
  text-decoration: underline;
}

.header__drawer-footer-privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  gap: 0.75rem;
}

.header__drawer-footer-privacy a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.6;
  text-align: left;
  color: #0e0e0e;
  text-decoration: underline;
}

.flow-section {
  padding: 48px 0 56px;
  padding: 3rem 0 3.5rem;
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .flow-section {
    padding: 5rem 0 6rem;
  }
}

.flow-section__inner {
  max-width: 1284px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media screen and (min-width: 768px) {
  .flow-section__inner {
    padding-inline: 25px;
  }
}

.flow-section__head {
  text-align: center;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .flow-section__head {
    margin-bottom: 3.5rem;
  }
}

.flow-section__badge {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  color: #e96e48;
  margin: 0 0 8px;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .flow-section__badge {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }
}

.flow-section__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.2;
  color: #0e0e0e;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .flow-section__title {
    font-size: 2.5rem;
  }
}

.flow-section__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .flow-section__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}

.flow-section__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .flow-section__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 17.5rem;
  }
}

.flow-section__step {
  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;
  gap: 8px;
  gap: 0.5rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .flow-section__step {
    margin-bottom: 1.25rem;
  }
}

.flow-section__number {
  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: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  background-color: #0e0e0e;
  color: #FFFFFF;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .flow-section__number {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.75rem;
  }
}

.flow-section__arrow {
  display: none;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 18l6-6-6-6' stroke='%23e96e48' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .flow-section__arrow {
    display: block;
  }
}

.flow-section__item:last-child .flow-section__arrow {
  display: none;
}

.flow-section__item-title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #0e0e0e;
  margin: 0 0 8px;
  margin: 0 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .flow-section__item-title {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
  }
}

.flow-section__item-desc {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #696969;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .flow-section__item-desc {
    font-size: 0.875rem;
  }
}

.footer {
  background-color: #866e5e;
  color: #FFFFFF;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 64px 0 48px;
  padding: 4rem 0 3rem;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding: 4rem 0 4rem;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  gap: 33px;
  gap: 2.0625rem;
  padding: 0 16px;
  padding: 0 1rem;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    -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: 9rem;
  }
}

.footer__logo {
  width: 44%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 17.1875rem;
    margin-inline: unset;
  }
}

.footer__logo img {
  width: auto;
}

.footer__nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .footer__nav-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
  }
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  gap: 1rem;
  row-gap: 20px;
  row-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer__nav-list {
    gap: 0;
  }
}

.footer__nav-item a {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: left;
  color: #FFFFFF;
  text-decoration: none;
  padding: 6px 8px;
  padding: 0.375rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .footer__nav-item a {
    font-size: 1rem;
    padding: 0.625rem 0.6875rem;
  }
}

.footer__nav-item.footer__nav-item--contact {
  color: #866e5e;
  display: none;
  line-height: 1.2;
}
.footer__nav-item.footer__nav-item--contact a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #FFFFFF;
  background-color: #FFFFFF;
  color: #866e5e;
  font-weight: 700;
  line-height: 1.2;
  padding: 7px 24px;
  padding: 0.4375rem 1.5rem;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .footer__nav-item.footer__nav-item--contact a {
    padding-block: 0.5rem 0.3125rem;
  }
}
.footer__nav-item.footer__nav-item--contact a:hover {
  background-color: #866e5e;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .footer__nav-item.footer__nav-item--contact {
    margin-left: 0.625rem;
    display: block;
  }
}

.footer__nav-contact {
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 0.25rem;
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .footer__nav-contact {
    padding: 0.3125rem 1.5rem;
  }
}

.footer__nav-contact-btn {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 15px 24px 13px;
  padding: 0.9375rem 1.5rem 0.8125rem;
  width: 100%;
  text-align: center;
  display: inline-block;
  line-height: 1.6;
  color: #866e5e;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .footer__nav-contact-btn {
    font-size: 1.0625rem;
    padding: 0.75rem 1.5rem;
  }
}

.footer__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding: 40px 16px;
  padding: 2.5rem 1rem;
}
@media screen and (min-width: 768px) {
  .footer__contact {
    padding: 2.5rem 17.625rem;
  }
}

.footer__contact-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  gap: 17px;
  gap: 1.0625rem;
  padding: 24px 8px;
  padding: 1.5rem 0.5rem;
  border: 1px solid #FFFFFF;
}
@media screen and (min-width: 768px) {
  .footer__contact-inner {
    padding: 1.875rem 0 1.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 876px;
    gap: 0.8125rem;
  }
}
@media screen and (min-width: 1440px) {
  .footer__contact-inner {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.footer__contact-header {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer__contact-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    -ms-flex-item-align: stretch;
        align-self: stretch;
    width: 14%;
  }
}

.footer__contact-title {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer__contact-title {
    display: block;
  }
}

.footer__contact-heading {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.6;
  text-align: left;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .footer__contact-heading {
    font-size: 1.0625rem;
    white-space: nowrap;
  }
}

.footer__contact-line {
  display: none;
  width: 1px;
  width: 0.0625rem;
  height: auto;
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .footer__contact-line {
    display: block;
    height: 5rem;
    margin: 0 2rem;
  }
}
@media screen and (min-width: 1440px) {
  .footer__contact-line {
    margin: 0 4rem;
  }
}

.footer__contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .footer__contact-info {
    gap: 0.3125rem;
  }
}

.footer__contact-text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  text-align: left;
  color: #FFFFFF;
}

.footer__contact-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (min-width: 768px) {
  .footer__contact-tel {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 0.8125rem;
  }
}

.footer__contact-tel-number {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 31px;
  font-size: 1.9375rem;
  line-height: 1.2;
  text-align: center;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .footer__contact-tel-number {
    font-size: 3rem;
  }
}

.footer__contact-tel-time-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  text-align: center;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .footer__contact-tel-time-text {
    margin-bottom: 0.625rem;
  }
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding: 0 16px;
  padding: 0 1rem;
}
@media screen and (min-width: 768px) {
  .footer__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: self-end;
        -ms-flex-align: self-end;
            align-items: self-end;
    padding: 0 5rem;
  }
}

.footer__company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer__company {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__company-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  gap: 5px;
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .footer__company-info {
    gap: 0.25rem;
  }
}

.footer__company-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  text-align: left;
  color: #FFFFFF;
  margin: 0;
}

.footer__company-address {
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  text-align: left;
  color: #FFFFFF;
}

.footer__privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  gap: 0.75rem;
}

.footer__privacy a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.6;
  text-align: left;
  color: #FFFFFF;
  text-decoration: underline;
}

.footer__copyright {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 0;
  }
}

.footer__copyright-text {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.6;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .footer__copyright-text {
    text-align: right;
  }
}

.header {
  height: 52px;
  height: 3.25rem;
  font-family: "Bebas Neue", sans-serif;
}
@media screen and (min-width: 768px) {
  .header {
    height: 9.125rem;
  }
}
.header.is-scrolled {
  background-color: rgba(255, 255, 255, .9);
  top: 11px;
  top: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .header.is-scrolled {
    height: 6.25rem;
    background-color: rgba(255, 255, 255, .8);
    top: 0;
  }
}

.header__inner {
  padding-left: 19px;
  padding-left: 1.1875rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 19px;
  padding-right: 1.1875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0 2.5rem;
  }
}

.header__logo {
  max-width: 238px;
  max-width: 14.875rem;
  width: 100%;
  height: inherit;
}

.header__logo a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 148px;
  width: 9.25rem;
}
@media screen and (min-width: 768px) {
  .header__logo a {
    width: auto;
  }
}

.header__logo p {
  margin: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 64px;
  width: 4rem;
}
@media screen and (min-width: 768px) {
  .header__logo p {
    width: 5.625rem;
  }
}

.header__logo img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}
.header__nav-item.current {
  color: #afafaf;
}

.header__nav-item.header__nav-item--contact {
  margin-left: 15px;
  margin-left: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav-item a {
  padding: 0 15px;
  padding: 0 0.9375rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__nav-item a:hover {
  color: #e96e48;
  opacity: 1;
}

.header__nav-item.header__nav-item--contact a {
  padding: 11px 24px 8px 24px;
  padding: 0.6875rem 1.5rem 0.5rem 1.5rem;
  position: relative;
  height: auto;
  height: initial;
  color: #fff;
  background-color: #e96e48;
  border-radius: 0.25rem;
  line-height: 1.2;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
  border: 1px solid #e96e48;
}
.header__nav-item.header__nav-item--contact a:hover {
  color: #e96e48;
  background-color: #FFFFFF;
  opacity: 1;
}

.header__hamburger {
  position: relative;
  z-index: 999;
  width: 37px;
  width: 2.3125rem;
  height: 34px;
  height: 2.125rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #0e0e0e;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger.is-open {
  background-color: #FFFFFF;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  background-color: #FFFFFF;
  width: 21px;
  width: 1.3125rem;
  height: 2px;
  height: 0.125rem;
  border-radius: 0.25rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
  font-size: 1.25rem;
}

.header__hamburger span:nth-of-type(1) {
  top: -6px;
  top: -0.375rem;
}

.header__hamburger span:nth-of-type(2) {
  top: -1px;
  top: -0.0625rem;
}

.header__hamburger span:nth-of-type(3) {
  top: 5px;
  top: 0.3125rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 2px;
  top: 0.125rem;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  background-color: #0e0e0e;
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -2px;
  top: -0.125rem;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  background-color: #0e0e0e;
}

.inner {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1334px;
    padding-right: 25px;
    padding-left: 25px;
    max-width: 1334px;
  }
}

.intro-section {
  padding-bottom: 80px;
  padding-bottom: 5rem;
  margin-top: 84px;
  margin-top: 5.25rem;
}
@media screen and (min-width: 768px) {
  .intro-section {
    padding-bottom: 5rem;
    margin-top: 6.4375rem;
  }
}

.intro-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .intro-section__inner {
    -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: 2rem;
  }
}

.intro-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .intro-section__content {
    gap: 1.625rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.intro-section__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .intro-section__text {
    gap: 1.8125rem;
  }
}

.intro-section__title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1px;
  gap: 0.0625rem;
}

.intro-section__title-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1px;
  gap: 0.0625rem;
}

.intro-section__title-prefix {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 108px;
  font-size: 6.75rem;
  line-height: 1;
  color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .intro-section__title-prefix {
    font-size: 9.375rem;
  }
}

.intro-section__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .intro-section__title {
    font-size: 2.0625rem;
  }
}

.intro-section__description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .intro-section__description {
    font-size: 1rem;
  }
}

.intro-section__btn {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.intro-section__btn-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  gap: 2.5rem;
  background: #0e0e0e;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
  padding: 6px 16px 6px 32px;
  padding: 0.375rem 1rem 0.375rem 2rem;
  border-radius: 0.25rem;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .intro-section__btn-link {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0.5625rem 1rem 0.5625rem 2rem;
  }
}
.intro-section__btn-link:hover {
  opacity: 0.7;
}
.intro-section__btn-link svg {
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .intro-section__btn-link svg {
    width: 3rem;
    height: 3rem;
  }
}

.intro-section__image {
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .intro-section__image {
    width: 37%;
  }
}
.intro-section__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 343/323;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .intro-section__image img {
    aspect-ratio: 475/444;
  }
}

.layout-header {
  position: fixed;
  z-index: 900;
  top: 11px;
  top: 0.6875rem;
  right: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .layout-header {
    top: 0;
  }
}

.layout-fv {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .layout-fv {
    margin-top: 9.125rem;
  }
}

.layout-service {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .layout-service {
    margin-top: 4rem;
  }
}

.layout-works {
  margin-top: 79px;
  margin-top: 4.9375rem;
}
@media screen and (min-width: 768px) {
  .layout-works {
    margin-top: 7.4375rem;
  }
}

.layout-page-hero {
  margin-top: 141px;
  margin-top: 8.8125rem;
}
@media screen and (min-width: 768px) {
  .layout-page-hero {
    margin-top: 11.875rem;
  }
}

.layout-articles-page {
  margin-top: 136px;
  margin-top: 8.5rem;
}
@media screen and (min-width: 768px) {
  .layout-articles-page {
    margin-top: 11.125rem;
  }
}

.page-hero-title {
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#f56f46), color-stop(73.56%, #a483c8), to(#3d44c6));
  background: linear-gradient(to right, #f56f46 0%, #a483c8 73.56%, #3d44c6 100%);
  color: #FFFFFF;
  padding: 1px 16px;
  padding: 0.0625rem 1rem;
  margin-inline: auto;
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 29px;
  margin-top: 1.8125rem;
  max-width: 420px;
}
@media screen and (min-width: 768px) {
  .page-hero-title {
    font-size: 2.5rem;
    margin-top: 1.875rem;
    padding: 0.1875rem 1rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: none;
  }
}

.page-hero {
  overflow-x: clip;
}
.page-hero__inner {
  position: relative;
}

.page-hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 38px;
  gap: 2.375rem;
  overflow: hidden;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .page-hero__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 4.75rem;
    margin-top: 0;
  }
}

.page-hero__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 45px;
  gap: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .page-hero__left {
    gap: 1.625rem;
    width: 50%;
  }
}

.page-hero__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  gap: 0.125rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page-hero__title {
    height: auto;
    gap: 1.6875rem;
  }
}

.page-hero__title-main {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .page-hero__title-main {
    font-size: 4.5rem;
    line-height: 1.6;
  }
}

.page-hero__title-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #454545;
}
@media screen and (min-width: 768px) {
  .page-hero__title-sub {
    font-size: 1.5rem;
  }
}

.page-hero__description {
  gap: 32px;
  gap: 2rem;
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .page-hero__description {
    margin-top: 1.125rem;
    max-width: none;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

.page-hero__description-box {
  gap: 10px;
  gap: 0.625rem;
  background: -webkit-gradient(linear, left top, right top, from(#f56f46), color-stop(73.56%, #a483c8), to(#3d44c6));
  background: linear-gradient(to right, #f56f46 0%, #a483c8 73.56%, #3d44c6 100%);
  padding-block: 8px;
  padding-block: 0.5rem;
  padding-inline: 13px 10px;
  padding-inline: 0.8125rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .page-hero__description-box {
    padding-block: 0 0.125rem;
  }
}

.page-hero__description-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #FFFFFF;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page-hero__description-text {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

.page-hero__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page-hero__right {
    padding-top: 1.5rem;
    width: 44%;
  }
}

.page-hero__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.9;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .page-hero__text {
    font-size: 1rem;
  }
}

.page-hero__img-text {
  position: absolute;
  width: 172px;
  width: 10.75rem;
  right: -11px;
  right: -0.6875rem;
  top: 160px;
  top: 10rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .page-hero__img-text {
    display: block;
    z-index: -1;
    top: 25rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: -1.1875rem;
    width: 23.0625rem;
  }
}

.page-hero__comparison {
  margin-top: 51px;
  margin-top: 3.1875rem;
}
@media screen and (min-width: 768px) {
  .page-hero__comparison {
    margin-top: 9.125rem;
  }
}

.page-hero__comparison-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: 21px;
  gap: 1.3125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-hero__comparison-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}

.page-hero__comparison-item {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-hero__comparison-item {
    width: 50%;
  }
}
.page-hero__comparison-item img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  aspect-ratio: 375/273;
}
@media screen and (min-width: 768px) {
  .page-hero__comparison-item img {
    aspect-ratio: 720/504;
  }
}

.page-hero__comparison-label {
  position: absolute;
  top: -21px;
  top: -1.3125rem;
  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: 61px;
  width: 3.8125rem;
  height: 61px;
  height: 3.8125rem;
  background: #FFFFFF;
  border: 2px solid #0e0e0e;
  border: 0.125rem solid #0e0e0e;
  border-radius: 50%;
  background-color: transparent;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .page-hero__comparison-label {
    width: 5.375rem;
    height: 5.375rem;
    border: 0.1875rem solid #0e0e0e;
    top: -1.5rem;
  }
}

.page-hero__comparison-label-text {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .page-hero__comparison-label-text {
    font-size: 1.3125rem;
  }
}

.page-hero__gallery {
  margin-top: 34px;
  margin-top: 2.125rem;
}
@media screen and (min-width: 768px) {
  .page-hero__gallery {
    margin-top: 4.3125rem;
  }
}

.page-hero__gallery-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
  gap: 0.6875rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .page-hero__gallery-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.875rem;
    width: 76%;
  }
}

.page-hero__gallery-item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-hero__gallery-item {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.page-hero__gallery-image {
  width: 100%;
  overflow: hidden;
  background: #d9d9d9;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .page-hero__gallery-image {
    width: 100%;
  }
}
.page-hero__gallery-image img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 107/133;
}
@media screen and (min-width: 768px) {
  .page-hero__gallery-image img {
    aspect-ratio: 301/368;
  }
}

@media screen and (min-width: 768px) {
  .page-hero__message {
    margin-top: 0.9375rem;
  }
}

.page-hero__message-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .page-hero__message-inner {
    gap: 2rem;
  }
}

.page-hero__message-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 23px;
  font-size: 1.4375rem;
  line-height: 1.6;
  color: #0e0e0e;
  text-align: center;
  margin-top: -47px;
  margin-top: -2.9375rem;
}
@media screen and (min-width: 768px) {
  .page-hero__message-title {
    font-size: 2rem;
    margin-top: 0;
  }
}

.page-hero__message-line {
  width: 50px;
  width: 3.125rem;
  height: 2px;
  height: 0.125rem;
  background-color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .page-hero__message-line {
    width: 3.75rem;
  }
}

.page-hero__message-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.9;
  color: #222222;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-hero__message-text {
    font-size: 1rem;
    width: 50%;
    text-align: center;
  }
}

.page-feature__message {
  margin-top: 55px;
  margin-top: 3.4375rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .page-feature__message {
    margin-top: 5.375rem;
    padding-bottom: 5rem;
  }
}

.page-feature__message-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .page-feature__message-inner {
    gap: 2rem;
  }
}

.page-feature__message-title {
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-feature__message-title {
    font-size: 2rem;
  }
}

.page-feature__message-title.waterarea {
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .page-feature__message-title.waterarea {
    white-space: normal;
  }
}

.page-feature__message-line {
  width: 48px;
  width: 3rem;
  height: 2px;
  height: 0.125rem;
  background-color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .page-feature__message-line {
    width: 3.75rem;
  }
}

.page-feature__message-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.9;
  color: #222222;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-feature__message-text {
    font-size: 1rem;
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .floor .page-feature__message-text {
    width: 53%;
  }
}

.page-feature__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 28px;
  gap: 1.75rem;
  margin-top: 9px;
  margin-top: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .page-feature__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 1.5rem;
    width: 82%;
    gap: 2.875rem;
    row-gap: 1.5rem;
  }
}

.page-feature__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  gap: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .page-feature__list-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 47.6%;
    gap: 2rem;
  }
}

.page-feature__list-item-content {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .page-feature__list-item-content {
    margin-top: 0;
    width: 60%;
  }
}

.page-feature__list-item-image {
  border-radius: 0.5rem;
  overflow: hidden;
  width: 35%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .page-feature__list-item-image {
    width: 33%;
  }
}
.page-feature__list-item-image img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 149/174;
}
@media screen and (min-width: 768px) {
  .page-feature__list-item-image img {
    aspect-ratio: 1/1;
  }
}

.page-feature__list-item-title {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.84;
}
@media screen and (min-width: 768px) {
  .page-feature__list-item-title {
    line-height: 1.8;
    font-size: 1.125rem;
  }
}

.page-feature__list-item-text {
  margin-top: 13px;
  margin-top: 0.8125rem;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8;
  color: #222;
}
@media screen and (min-width: 768px) {
  .page-feature__list-item-text {
    margin-top: 0.9375rem;
    line-height: 1.7;
    font-size: 1rem;
  }
}

.page-hero__services {
  background-color: #eae8e3;
  padding-block: 55px;
  padding-block: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .page-hero__services {
    padding-block: 3.75rem;
  }
}

.page-hero__services-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.9;
  color: #0e0e0e;
}
.page-hero__services-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 19px;
  gap: 1.1875rem;
  row-gap: 15px;
  row-gap: 0.9375rem;
  margin-top: 36px;
  margin-top: 2.25rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .page-hero__services-items {
    gap: 2rem;
    margin-top: 2.75rem;
  }
}

.page-hero__services-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
  width: 47%;
}
@media screen and (min-width: 768px) {
  .page-hero__services-item {
    width: 23%;
    gap: 1.1875rem;
  }
}

.page-hero__services-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #d9d9d9;
  border-radius: 0.5rem;
}
.page-hero__services-image img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 172/118;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .page-hero__services-image img {
    aspect-ratio: 312/213;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.page-hero__services-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .7)), to(rgba(0, 0, 0, .2)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .2) 100%);
  border-radius: 0.5rem;
  pointer-events: none;
}

.page-hero__services-item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .page-hero__services-item-title {
    font-size: 1rem;
  }
}

.page-mv-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .page-mv-header {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 2.1875rem;
  }
}

.page-mv-header__title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page-mv-header__title {
    width: 40%;
  }
}

.page-mv-header__title-en {
  font-size: 31px;
  font-size: 1.9375rem;
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page-mv-header__title-en {
    font-size: 3.9375rem;
    line-height: 1.3;
  }
}

.page-mv-header__title-ja {
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.2;
  color: #fff;
  background-color: #0e0e0e;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 5px;
  padding: 0.125rem 0.3125rem;
}
@media screen and (min-width: 768px) {
  .page-mv-header__title-ja {
    line-height: 1.6;
    font-size: 0.8125rem;
    padding: 0.1875rem 0.5rem;
    margin-top: -0.8125rem;
  }
}

.page-mv-header__description-text {
  margin-top: 32px;
  margin-top: 2rem;
  font-weight: 700;
  line-height: 1.9;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #222;
}
@media screen and (min-width: 768px) {
  .page-mv-header__description-text {
    margin-top: 1.125rem;
    width: 49%;
    font-size: 1.125rem;
    line-height: 1.9;
  }
}

.page-here-header {
  position: relative;
}

.page-title {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .page-title {
    margin-top: 2.8125rem;
    position: relative;
  }
}

.page-title__main {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.2;
  text-align: left;
  width: 100%;
  line-height: 1.1;
  overflow: hidden;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page-title__main {
    font-size: 4rem;
    margin-top: 0;
    line-height: 1.4;
  }
}
.page-title__main span {
  display: inline-block;
}

.page-title__badge {
  margin-bottom: 0;
}

.page-title__sub {
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6;
  text-align: left;
  color: #FFFFFF;
  padding: 2px 8px 3px;
  padding: 0.125rem 0.5rem 0.1875rem;
  background-color: #0e0e0e;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .page-title__sub {
    font-size: 0.8125rem;
  }
}

.page-hero-title_img-text {
  position: absolute;
  z-index: -1;
  width: 171px;
  width: 10.6875rem;
  top: 29%;
  right: 0;
}
@media screen and (min-width: 768px) {
  .page-hero-title_img-text {
    display: block;
    top: 17.8125rem;
    -webkit-transform: translateY(-36%);
            transform: translateY(-36%);
    right: 0;
    width: 27rem;
  }
}
.sec-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  gap: 1.75rem;
}
@media screen and (min-width: 768px) {
  .sec-head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}
.sec-head svg {
  width: 32px;
  width: 2rem;
}

.sec-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.sec-title__badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 10px;
  gap: 0.625rem;
  padding: 2px 8px 3px;
  padding: 0.125rem 0.5rem 0.1875rem;
  background-color: #0e0e0e;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0;
}

.sec-title__badge-text {
  font-weight: 700;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.6;
  text-align: left;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .sec-title__badge-text {
    font-size: 0.8125rem;
  }
}

.sec-title__main {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.2;
  text-align: left;
  color: #0e0e0e;
  width: 100%;
  margin-top: 4px;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .sec-title__main {
    font-size: 3rem;
    margin-top: 0;
  }
}

.sec-title__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  gap: 10px;
  gap: 0.625rem;
  position: relative;
  margin-left: auto;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .sec-title__button {
    margin-left: 0;
    font-size: 1rem;
  }
}
.sec-title__button svg {
  width: 32px;
  width: 2rem;
}

.sec-title__button::before {
  content: "";
  position: absolute;
  bottom: -3px;
  bottom: -0.1875rem;
  left: 0;
  width: 100%;
  height: 2px;
  height: 0.125rem;
  background-color: #0e0e0e;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.6, 0, 0, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.6, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.6, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.6, 0, 0, 1), -webkit-transform 0.3s cubic-bezier(0.6, 0, 0, 1);
}

@media (any-hover: hover) {
  .sec-title__button:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
.sec-title__button-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.service-detail-content .service-features__section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #0e0e0e;
  margin: 0 0 20px 0;
  margin: 0 0 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .service-detail-content .service-features__section-title {
    font-size: 2rem;
    margin: 0 0 1.25rem 0;
    text-align: left;
  }
}
.service-detail-content .service-features__grid {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  gap: 21px;
  gap: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .service-detail-content .service-features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 1.375rem;
  }
}
.service-detail-content .service-features__grid:last-child {
  margin-bottom: 0;
}
.service-detail-content .service-features__column {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media screen and (min-width: 768px) {
  .service-detail-content .service-features__column {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}
.service-detail-content .service-features__item {
  background: #FFFFFF;
  border-radius: 0.5rem;
  padding: 22px 16px 17px;
  padding: 1.375rem 1rem 1.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  gap: 0.75rem;
  height: 100%;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}
@media screen and (min-width: 768px) {
  .service-detail-content .service-features__item {
    padding: 2rem 1.75rem;
    gap: 1rem;
  }
}
.service-detail-content .service-features__number {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 39px !important;
  font-size: 2.4375rem !important;
  line-height: 1.2;
  color: #e96e48;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .service-detail-content .service-features__number {
    font-size: 3.5rem !important;
  }
}
.service-detail-content .service-features__point {
  font-weight: 700;
  color: #e96e48;
  font-family: "Roboto", sans-serif;
  font-size: 19px;
  font-size: 1.1875rem;
  margin-right: -4px;
  margin-right: -0.25rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .service-detail-content .service-features__point {
    font-size: 1.375rem;
    margin-right: -0.5625rem;
  }
}
.service-detail-content .service-features__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-top: 16px;
  margin-top: 1rem;
  margin-bottom: 13px;
  margin-bottom: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .service-detail-content .service-features__title {
    font-size: 1.5rem;
  }
}
.service-detail-content .service-features__description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8;
  color: #696969;
}
@media screen and (min-width: 768px) {
  .service-detail-content .service-features__description {
    font-size: 0.9375rem;
  }
}

.service-grid {
  background: #eae8e3;
  padding-block: 53px;
  padding-block: 3.3125rem;
}
@media screen and (min-width: 768px) {
  .service-grid {
    padding: 3.75rem 0;
  }
}

.service-grid__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  gap: 1.75rem;
}
@media screen and (min-width: 768px) {
  .service-grid__inner {
    gap: 1.5rem;
  }
}

.service-grid__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.9;
  color: #0e0e0e;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .service-grid__title {
    font-size: 1.125rem;
  }
}

.service-grid__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  gap: 1.125rem;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .service-grid__items {
    gap: 1.5rem;
  }
}

.service-grid__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: relative;
  width: 47%;
}
@media screen and (min-width: 768px) {
  .service-grid__item {
    width: 23.5%;
  }
}
.service-grid__item:hover .service-grid__item-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.service-grid__item-image {
  position: relative;
  border-radius: 0.375rem;
  overflow: hidden;
  background: #d9d9d9;
}
.service-grid__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  aspect-ratio: 161/182;
}
@media screen and (min-width: 768px) {
  .service-grid__item-image img {
    aspect-ratio: 280/320;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.service-grid__item-image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, .3);
  height: 100%;
  width: 100%;
  z-index: 10;
}

.service-grid__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  gap: 0.5625rem;
  padding: 16px 0;
  padding: 1rem 0;
  width: 179px;
  width: 11.1875rem;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 20;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 768px) {
  .service-grid__item-content {
    gap: 1rem;
  }
}

.service-grid__item-title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #FFFFFF;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service-grid__item-title {
    font-size: 1.75rem;
  }
}

.service-grid__item-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
  color: #FFFFFF;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service-grid__item-subtitle {
    font-size: 0.8125rem;
  }
}

.js-swiper {
  position: relative;
  width: 100%;
  overflow: unset;
}

@media screen and (min-width: 768px) {
  .js-swiper .swiper-wrapper {
    height: auto;
  }
}

.swiper-button-next {
  background-image: url(../images/common/swiper-arrow-next.svg);
}

@media screen and (min-width: 768px) {
  .js-journal-swiper .swiper-wrapper {
    -webkit-transform: translateX(-148px);
            transform: translateX(-148px);
  }
}

.journal-slider .swiper-button-prev,
.journal-slider .swiper-button-next {
  width: 60px;
  width: 3.75rem;
  height: 54px;
  height: 3.375rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .journal-slider .swiper-button-prev,
  .journal-slider .swiper-button-next {
    top: 54%;
    width: 7.6875rem;
    height: 7.6875rem;
  }
}
.journal-slider .swiper-button-prev {
  left: -38px;
  left: -2.375rem;
}
@media screen and (min-width: 768px) {
  .journal-slider .swiper-button-prev {
    left: -1.5625rem;
  }
}
@media screen and (min-width: 768px) {
  .journal-slider .swiper-button-prev {
    left: 1.4375rem;
  }
}

.journal-slider .swiper-button-next {
  right: -38px;
  right: -2.375rem;
}
@media screen and (min-width: 768px) {
  .journal-slider .swiper-button-next {
    right: 1.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .article-detail__content #toc_container li + li {
    margin-top: 0.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .article-detail__content #toc_container a {
    font-size: 1rem;
  }
}

.articles-page {
  overflow-x: clip;
}

.articles-filter {
  margin-top: 42px;
  margin-top: 2.625rem;
}
@media screen and (min-width: 768px) {
  .articles-filter {
    margin-top: 2.8125rem;
  }
}

.articles-filter__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 35px;
  gap: 2.1875rem;
  row-gap: 16px;
  row-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .articles-filter__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.8125rem;
  }
}

.articles-filter__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  gap: 0.4375rem;
  text-decoration: none;
  color: #0e0e0e;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .articles-filter__item {
    margin-top: 0;
  }
  .articles-filter__item:hover {
    opacity: 0.7;
  }
}

.articles-filter__item--active .articles-filter__item-name {
  color: #afafaf;
}

.articles-filter__item-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
  color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .articles-filter__item-name {
    font-size: 1.5rem;
  }
}

.articles-filter__item-count {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.6;
  color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .articles-filter__item-count {
    font-size: 0.8125rem;
  }
}

.articles-tags {
  margin-top: 23px;
  margin-top: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .articles-tags {
    margin-top: 2.125rem;
  }
}

.articles-tags__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  margin-bottom: 11px;
  margin-bottom: 0.6875rem;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .articles-tags__header {
    margin-bottom: 0.4375rem;
  }
}

.articles-tags__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.9;
  color: #0e0e0e;
  margin: 0;
  padding: 5px 8px 5px 0;
  padding: 0.3125rem 0.5rem 0.3125rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .articles-tags__title {
    font-size: 1.125rem;
  }
}

.articles-tag__toggle-icon {
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  display: inline-block;
  background-color: #0e0e0e;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 9px;
  margin-left: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .articles-tag__toggle-icon {
    width: 1.375rem;
    height: 1.375rem;
  }
}

.articles-tag__toggle-icon::before {
  content: "";
  position: absolute;
  width: 10px;
  width: 0.625rem;
  height: 1px;
  height: 0.0625rem;
  background-color: #fff;
  border-radius: 0.0625rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .articles-tag__toggle-icon::before {
    width: 0.875rem;
    height: 0.125rem;
  }
}

.articles-tag__toggle-icon::after {
  content: "";
  position: absolute;
  width: 1px;
  width: 0.0625rem;
  height: 10px;
  height: 0.625rem;
  background-color: #fff;
  border-radius: 0.0625rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) {
  .articles-tag__toggle-icon::after {
    width: 0.125rem;
    height: 0.875rem;
  }
}
.is-open .articles-tag__toggle-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}

.articles-tags__toggle {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  background: #FFFFFF;
  border: none;
  cursor: pointer;
  padding: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.articles-tags__toggle svg {
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.articles-tags__toggle[aria-expanded=true] svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.articles-tags__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .articles-tags__items {
    gap: 0.625rem;
  }
}

.articles-tags__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6px 10px;
  padding: 0.375rem 0.625rem;
  border: 1px solid #0e0e0e;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #0e0e0e;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .articles-tags__item {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
  }
}
.articles-tags__item:hover {
  opacity: 1;
  color: #FFFFFF;
  background-color: #0e0e0e;
}

.articles-count {
  border-bottom: 1px solid #afafaf;
  margin-top: 29px;
  margin-top: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .articles-count {
    margin-top: 2.3125rem;
  }
}

.articles-count__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  gap: 0.1875rem;
}

.articles-count__number {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 1.6;
  color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .articles-count__number {
    font-size: 2rem;
  }
}

.articles-count__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px 0 0;
  padding: 0.25rem 0 0;
  width: 14px;
  width: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.9;
  color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .articles-count__unit {
    font-size: 1.125rem;
    width: 1.125rem;
  }
}

.pagination {
  padding: 8px 0;
  padding: 0.5rem 0;
}
@media screen and (min-width: 768px) {
  .pagination {
    padding: 4.75rem 0;
  }
}

.pagination__items {
  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;
  gap: 6px;
  gap: 0.375rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .pagination__items {
    gap: 1.25rem;
  }
}

.pagination__item {
  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: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .pagination__item {
    width: 3.125rem;
    height: 3.125rem;
  }
}
.pagination__item:hover {
  opacity: 0.7;
}

.pagination__item-number {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .pagination__item-number {
    font-size: 1rem;
  }
}

.pagination__item--active {
  border: 1px solid #0e0e0e;
  border-radius: 50%;
}
.pagination__item--active .pagination__item-number {
  color: #0e0e0e;
}

.pagination__item--next {
  width: auto;
  padding: 0 8px;
  padding: 0 0.5rem;
}

.pagination__item-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #0e0e0e;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .pagination__item-text {
    font-size: 1rem;
  }
}

.article-detail {
  overflow-x: clip;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(60%, #fadcd3));
  background: linear-gradient(transparent 70%, #fadcd3 60%);
  padding: 0 2px;
  padding: 0 0.125rem;
}

.article-detail-header {
  position: relative;
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .article-detail-header {
    margin-top: 0;
  }
}

.article-detail__title-text {
  background: -webkit-gradient(linear, left top, right top, from(#f56f46), color-stop(74%, #a483c8), to(#3d44c6));
  background: linear-gradient(to right, #f56f46 0%, #a483c8 74%, #3d44c6 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-inline: auto;
  padding-inline: 19px;
  padding-inline: 1.1875rem;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  width: 100%;
  text-align: center;
  max-width: 500px;
}
@media screen and (min-width: 768px) {
  .article-detail__title-text {
    padding: 0.25rem 0.4375rem 0rem 0.4375rem;
    right: 0;
    top: -1.6875rem;
    position: absolute;
    font-size: 1.125rem;
    padding: 0.1875rem 0.875rem;
    max-width: none;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

.article-detail__title-img-text {
  display: block;
  width: 58%;
  right: 0;
  top: 29%;
  z-index: -1;
  position: absolute;
  max-width: 200px;
}
@media screen and (min-width: 768px) {
  .article-detail__title-img-text {
    display: inline;
    display: initial;
    width: 23.625rem;
    -webkit-transform: translateY(-12%);
            transform: translateY(-12%);
    max-width: none;
    right: -4.875rem;
    right: clamp(-2.9375rem, -0.719914307rem + -4.6199701937vw, -4.875rem);
  }
}
@media screen and (min-width: 768px) {
  .article-detail__title-img-text {
    right: -4%;
    right: 0;
    top: 17.8125rem;
    width: 22.375rem;
  }
}

.article-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
  gap: 0.5625rem;
  width: 100%;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .article-header {
    gap: 0.5rem;
    width: 75%;
    margin-inline: auto;
    margin-top: 3.75rem;
  }
}

.article-header__category {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .article-header__category {
    font-size: 1rem;
  }
}

.article-header__title {
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.6;
  color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .article-header__title {
    font-size: 2.4375rem;
  }
}

.article-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 23px;
  gap: 1.4375rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .article-meta {
    gap: 1.5rem;
    margin-top: 1.75rem;
  }
}

.article-meta__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
}

.article-meta__date-text {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .article-meta__date-text {
    font-size: 1rem;
  }
}

.article-meta__update {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
}

.article-meta__update-label {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #696969;
}
@media screen and (min-width: 768px) {
  .article-meta__update-label {
    font-size: 0.8125rem;
  }
}

.article-meta__update-text {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .article-meta__update-text {
    font-size: 1rem;
  }
}

.article-meta__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.article-meta__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 12px 0 0;
  padding: 0 0.75rem 0 0;
  border-right: 1px solid #afafaf;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.6;
  color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .article-meta__tag {
    font-size: 0.8125rem;
    padding: 0 0.75rem 0 0;
  }
}
.article-meta__tag:last-child {
  border-right: none;
  padding-right: 0;
}

.article-detail__eyecatch-column {
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .article-detail__eyecatch-column {
    margin: 5px calc(50% - 44vw);
    max-width: 1267px;
  }
}

.article-detail__eyecatch {
  margin-top: 47px;
  margin-top: 2.9375rem;
  border-radius: 0.625rem;
  overflow: hidden;
}
.article-detail__eyecatch img {
  -o-object-fit: cover;
     object-fit: cover;
}
#toc_container {
  width: 100%;
  padding: 25px 19px;
  padding: 1.5625rem 1.1875rem;
  margin-top: 33px;
  margin-top: 2.0625rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  background-color: #f7f6f3;
}
@media screen and (min-width: 768px) {
  #toc_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6%;
    margin-top: 3.3125rem;
    padding: 2.0625rem 3.125rem;
    margin-bottom: 1rem;
  }
}

#toc_container p.toc_title {
  text-align: left !important;
  padding-left: 12px;
  padding-left: 0.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  #toc_container p.toc_title {
    padding-left: 0;
  }
}

#toc_container p.toc_title + ul.toc_list {
  margin-top: 12px;
  margin-top: 0.75rem;
  text-align: left !important;
}
@media screen and (min-width: 768px) {
  #toc_container p.toc_title + ul.toc_list {
    text-align: center;
    margin-top: 0;
  }
}

#toc_container a {
  margin-bottom: 0;
  color: #222;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  padding-block: 6px;
  padding-block: 0.375rem;
}
@media screen and (min-width: 768px) {
  #toc_container a {
    font-size: 1.1875rem;
    padding-block: 0;
  }
}

.article-detail__content {
  margin-top: 21px;
  margin-top: 1.3125rem;
  color: #222;
}
@media screen and (min-width: 768px) {
  .article-detail__content {
    width: 83%;
    max-width: 939px;
    margin-inline: auto;
    margin-top: 2.5625rem;
  }
}

.article-detail__content p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .article-detail__content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.125rem;
  }
}

.article-detail__content strong {
  font-weight: 700;
}

.article-detail__content .under-line span {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #fadcd3));
  background-image: linear-gradient(transparent 60%, #fadcd3 60%);
  text-decoration: none !important;
}

.article-detail__content .is-style-box {
  background-color: #efefef;
  padding: 20px 24px;
  padding: 1.25rem 1.5rem;
  line-height: 2;
  border-left: 1px solid #454545;
}
@media screen and (min-width: 768px) {
  .article-detail__content .is-style-box {
    padding: 1.5rem 2rem;
  }
}

.article-detail__content .is-style-rule-line {
  padding-left: 58px;
  padding-left: 3.625rem;
  position: relative;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .article-detail__content .is-style-rule-line {
    padding-left: 3.75rem;
  }
}
.article-detail__content .is-style-rule-line::before {
  content: "————";
  position: absolute;
  left: 0;
  top: 0;
  color: #333;
  letter-spacing: -0.1em;
}
@media screen and (min-width: 768px) {
  .article-detail__content .is-style-rule-line::before {
    content: "———";
  }
}

.article-detail__content h2 {
  line-height: 1.7;
  position: relative;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  margin-top: 14px;
  margin-top: 0.875rem;
  font-size: 23px;
  font-size: 1.4375rem;
  padding-bottom: 6px;
  padding-bottom: 0.375rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .article-detail__content h2 {
    margin-bottom: 1.25rem;
    margin-top: 2.5rem;
    font-size: 2.0625rem;
  }
}

.article-detail__content h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  margin-top: 32px;
  margin-top: 2rem;
  padding-top: 4px;
  padding-top: 0.25rem;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
  text-indent: -25px;
  text-indent: -1.5625rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .article-detail__content h3 {
    font-size: 1.375rem;
    margin-top: 2.5rem;
    margin-bottom: 1.125rem;
  }
}

.article-detail__content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
}

.article-detail__content h4 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  position: relative;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .article-detail__content h4 {
    font-size: 1.25rem;
    margin-bottom: 1.1875rem;
    margin-top: 2.625rem;
  }
}

.article-detail__content h4::before {
  content: "";
  position: absolute;
  left: 0%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 12px;
  height: 0.75rem;
  width: 12px;
  width: 0.75rem;
}
@media screen and (min-width: 768px) {
  .article-detail__content h4::before {
    height: 1rem;
    width: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .article-detail__content > figure.wp-block-image:first-of-type {
    margin: 5px calc(50% - 44vw);
    max-width: 1267px;
  }
}
@media screen and (min-width: 1441px) {
  .article-detail__content > figure.wp-block-image:first-of-type {
    margin-inline: auto;
  }
}

.article-detail__content img {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .article-detail__content img {
    margin-bottom: 2.375rem;
    border-radius: 1.25rem;
  }
}

.article-detail__content a {
  font-weight: 300;
  text-decoration: underline;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  color: #004780;
}
@media screen and (min-width: 768px) {
  .article-detail__content a {
    font-size: 1.1875rem;
  }
}

.article-detail__content p a {
  margin-bottom: 0;
  color: #004780;
}

.article-detail__content ul {
  margin-bottom: 27px;
  margin-bottom: 1.6875rem;
  padding-left: 17px;
  padding-left: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .article-detail__content ul {
    padding-left: 1.1875rem;
  }
}

.article-detail__content ul li {
  font-size: 16px;
  font-size: 1rem;
  position: relative;
  list-style: disc;
}
@media screen and (min-width: 768px) {
  .article-detail__content ul li {
    font-size: 1.125rem;
  }
}

.article-detail__content ul li:not(:first-child) {
  margin-top: 14px;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .article-detail__content ul li:not(:first-child) {
    margin-top: 0.6875rem;
  }
}

.article-detail__content ol {
  list-style-type: decimal;
  margin-bottom: 27px;
  margin-bottom: 1.6875rem;
  padding-left: 20px;
  padding-left: 1.25rem;
}
.article-detail__content ol li {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .article-detail__content ol li {
    font-size: 1.125rem;
  }
}

.article-detail__content ol li:not(:first-child) {
  margin-top: 6px;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .article-detail__content ol li:not(:first-child) {
    margin-top: 0.6875rem;
  }
}

.article-detail__content .wp-block-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  margin-top: 1.25rem;
}
.article-detail__content .wp-block-table tbody {
  background-color: #fff;
}
.article-detail__content .wp-block-table th {
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
}
.article-detail__content .wp-block-table td {
  border: solid 1px #f7f6f3;
  padding: 19px;
  padding: 1.1875rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .article-detail__content .wp-block-table td {
    padding: 0.875rem 1.1875rem;
  }
}
.article-detail__content .wp-block-table thead {
  border-bottom: none;
}
.article-detail__content .wp-block-table thead tr {
  color: white;
  text-align: left;
  background-color: #696969;
}
@media screen and (min-width: 768px) {
  .article-detail__content .wp-block-table {
    margin-top: 2.9375rem;
  }
}

.article-detail__content table {
  border-collapse: collapse;
  width: 100%;
  line-height: 2;
}

.is-style-underline-highlight {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #f3f0ea));
  background-image: linear-gradient(transparent 60%, #f3f0ea 60%);
}

.article-detail__content .wp-block-table tr:first-child td {
  background-color: #fff;
  color: #0e0e0e;
}

.article-detail__content .wp-block-table tr:not(:first-child) td:not(:first-child) {
  font-weight: 400;
}

/*======================================
        cta-note
=======================================*/
.article-note {
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 34px 33px;
  padding: 2.125rem 2.0625rem;
  border-radius: 0.5rem;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  gap: 0.9375rem;
  max-width: 939px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .article-note {
    width: 83%;
    padding: 2.5rem 3.125rem;
    gap: 0.375rem;
  }
}

.article-note__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .article-note__text {
    font-size: 1.125rem;
  }
}

.article-note__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  text-decoration: none;
}

.article-note__link-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: #004780;
}
@media screen and (min-width: 768px) {
  .article-note__link-text {
    font-size: 1.125rem;
  }
}

.article-note__link-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
}

/*======================================
        article-cta
=======================================*/
.article-cta {
  padding: 40px 14px;
  padding: 2.5rem 0.875rem;
  border: 1px dashed #0e0e0e;
  margin-top: 56px;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .article-cta {
    padding: 3rem 0;
    max-width: 939px;
    margin-inline: auto;
    margin-top: 5.5rem;
  }
}

.article-cta__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .article-cta__inner {
    gap: 0.625rem;
  }
}

.article-cta__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #222222;
  text-align: center;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .article-cta__text {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .article-cta__btn {
    width: 15.625rem !important;
  }
}
.article-cta__btn a {
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  gap: 17px;
  gap: 1.0625rem;
  border: 1px solid #e96e48;
  background-color: #e96e48;
  padding-block: 5px !important;
  padding-block: 0.3125rem !important;
  width: 250px !important;
  width: 15.625rem !important;
}
@media screen and (min-width: 768px) {
  .article-cta__btn a {
    padding-block: 1rem !important;
  }
}
.article-cta__btn a:hover {
  color: #e96e48;
}

/*======================================
        article-tags (bottom)
=======================================*/
.article-tags {
  padding-top: 32px;
  padding-top: 2rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .article-tags {
    padding-top: 2rem;
    padding-bottom: 5rem;
  }
}

.article-tags__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  gap: 0.75rem;
}

.article-tags__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
}

.article-tags__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.9;
  color: #0e0e0e;
}

.article-tags__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  gap: 0.625rem;
}

.article-tags__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6px 12px;
  padding: 0.375rem 0.75rem;
  border: 1px solid #0e0e0e;
  border-radius: 0.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #0e0e0e;
  text-decoration: none;
}

/*======================================
              著者
=======================================*/
.author {
  border-top: 1px solid #afafaf;
  border-top: 0.0625rem solid #afafaf;
  margin-top: 41px;
  margin-top: 2.5625rem;
}
@media screen and (min-width: 768px) {
  .author {
    width: 83%;
    max-width: 939px;
    margin-inline: auto;
  }
}

.author__inner {
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .author__inner {
    padding-block: 1.875rem;
    padding-top: 2rem;
  }
}

.author__header {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .author__header {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5rem;
  }
}

.author__label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .author__label {
    font-size: 1rem;
  }
}

.author__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
}

.author__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .author__profile {
    gap: 1.8125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.author__avatar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 87px;
  width: 5.4375rem;
  height: 87px;
  height: 5.4375rem;
  border-radius: 62.4375rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .author__avatar {
    width: 5.4375rem;
    height: 5.4375rem;
  }
}
.author__avatar img {
  height: 100%;
}

.author__avatar-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.author__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
}

.author__name {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .author__name {
    font-size: 1rem;
    text-align: left;
  }
}

.author__message {
  margin-top: 6px;
  margin-top: 0.375rem;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 9px;
  margin-top: 0.5625rem;
  line-height: 1.6;
  width: 84%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .author__message {
    text-align: left;
    margin-top: 1rem;
    line-height: 1.8;
    width: 100%;
  }
}

.author__sns {
  margin-top: 8px;
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  gap: 0.875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 34px;
  margin-top: 2.125rem;
}
@media screen and (min-width: 768px) {
  .author__sns {
    margin-top: 1.375rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.author__sns-item {
  list-style: none !important;
}

.author__sns-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
  border-radius: 0.375rem;
}
@media screen and (min-width: 768px) {
  .author__sns-link {
    width: 2rem;
    height: 2rem;
  }
}

.author__sns-link:hover {
  background-color: #f5f5f5;
}

.author__sns-icon {
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  display: block;
}

.author__footer {
  margin-top: 14px;
  margin-top: 0.875rem;
  padding-top: 32px;
  padding-top: 2rem;
  border-top: 1px solid #afafaf;
  border-top: 0.0625rem solid #afafaf;
  margin-top: 29px;
  margin-top: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .author__footer {
    margin-top: 1.6875rem;
    padding-top: 2.0625rem;
  }
}

.author__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 57px;
  gap: 3.5625rem;
}
@media screen and (min-width: 768px) {
  .author__tags {
    gap: 4.75rem;
  }
}

.author__tags-label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 120px;
  width: 7.5rem;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .author__tags-label {
    font-size: 1.25rem;
    gap: 4.625rem;
  }
}

.author__tags-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  gap: 0.5rem;
}

.author__tags-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 7px 12px;
  padding: 0.4375rem 0.75rem;
  border: 1px solid #0e0e0e;
  border: 0.0625rem solid #0e0e0e;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.2;
  color: #333333;
}

.author__tags-link:hover {
  background-color: #f7f7f7;
}

@media screen and (min-width: 768px) {
  .recommend-article__head {
    margin-top: 10.625rem;
  }
}

.recommend-article__items {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .recommend-article__items {
    margin-top: 3.75rem;
    border-bottom: 1px solid #AFAFAF;
  }
}
@media screen and (min-width: 768px) {
  .recommend-article__items .card-item {
    border-bottom: none;
  }
}
.recommend-article__items .card-item::before {
  display: none;
}

.recommend-article-slider {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .recommend-article-slider {
    margin-top: 7.5rem;
  }
}

.about-page__inner {
  padding-bottom: 25px;
  padding-bottom: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .about-page__inner {
    padding-bottom: 0;
  }
}

.page-hero-title_img-text.page-about {
  top: 28%;
  right: 0;
}
@media screen and (min-width: 768px) {
  .page-hero-title_img-text.page-about {
    width: 24.0625rem;
  }
}

.about__mv-header {
  margin-top: 50px;
  margin-top: 3.125rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .about__mv-header {
    margin-top: 7.125rem;
  }
}

.about__mv-title {
  font-size: 30px;
  font-size: 1.875rem;
  text-align: left;
  font-weight: 700;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .about__mv-title {
    font-size: 3.5625rem;
    margin-top: 0;
    line-height: 1.4;
  }
}
.about__mv-title span {
  display: inline-block;
}

.about__mv-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .about__mv-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 5.0625rem;
  }
}

.about__mv-img {
  border-radius: 0.5rem;
  overflow: hidden;
  margin-top: 33px;
  margin-top: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .about__mv-img {
    width: 29%;
    margin-top: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 768px) {
  .about__mv-img img {
    aspect-ratio: 371/209;
  }
}

.about__mv-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 48px;
  margin-top: 3rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .about__mv-text {
    font-size: 1.25rem;
    margin-top: 0;
  }
}
.about__mv-text span {
  background: -webkit-gradient(linear, left top, right top, from(#f56f46), color-stop(92%, #a483c8), to(#3d44c6));
  background: linear-gradient(to right, #f56f46 0%, #a483c8 92%, #3d44c6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about__mission {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .about__mission {
    margin-top: 8.9375rem;
  }
}

.about__mission-label {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  color: #222;
}
@media screen and (min-width: 768px) {
  .about__mission-label {
    font-size: 0.8125rem;
  }
}

.about__mission-title {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 16px;
  margin-top: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__mission-title {
    font-size: 2.5rem;
    margin-top: 2rem;
  }
}
.about__mission-title span {
  display: block;
  background: -webkit-gradient(linear, left top, right top, color-stop(19%, #f56f46), color-stop(74%, #a483c8), to(#3d44c6));
  background: linear-gradient(to right, #f56f46 19%, #a483c8 74%, #3d44c6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about__mission-text {
  margin-top: 24px;
  margin-top: 1.5rem;
  line-height: 1.8;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .about__mission-text {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 1rem;
  }
}

.about__mission-img-wrap-wrapper {
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .about__mission-img-wrap-wrapper {
    margin-top: 4.5rem;
  }
}

.about__mission-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2.1875rem calc(50% - 63vw);
}
@media screen and (min-width: 768px) {
  .about__mission-img-wrap {
    margin: 0 calc(50% - 50vw) 0;
    gap: 0.5rem;
    max-width: 1440px;
    margin-inline: auto;
  }
}

@media screen and (min-width: 768px) {
  .about__mission-img-wrap.u-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.about__intro {
  margin-top: 94px;
  margin-top: 5.875rem;
}
@media screen and (min-width: 768px) {
  .about__intro {
    margin-top: 10.125rem;
  }
}

.about__intro-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .about__intro-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 15%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.about__intro-content {
  margin-top: 41px;
  margin-top: 2.5625rem;
}
@media screen and (min-width: 768px) {
  .about__intro-content {
    margin-top: 0;
  }
}

.about__intro-title {
  font-size: 26px;
  font-size: 1.625rem;
}
@media screen and (min-width: 768px) {
  .about__intro-title {
    font-size: 2.3125rem;
    line-height: 1.7;
  }
}

.about__intro-title span {
  background: -webkit-gradient(linear, left top, right top, from(#f56f46), color-stop(55%, #a483c8), to(#3d44c6));
  background: linear-gradient(to right, #f56f46 0%, #a483c8 55%, #3d44c6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: block;
}
.about__intro-text {
  margin-top: 38px;
  margin-top: 2.375rem;
  line-height: 1.9;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .about__intro-text {
    margin-top: 4.125rem;
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .about__intro-img {
    margin-left: calc(50% - 50vw);
    width: 44%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 1441px) {
  .about__intro-img {
    margin-left: 0;
  }
}

.about__value {
  margin-top: 52px;
  margin-top: 3.25rem;
}
@media screen and (min-width: 768px) {
  .about__value {
    margin-top: 9.8125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 8.125rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .about__value-header {
    width: 30%;
  }
}

.about__value-label {
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.6;
  color: #222;
}
@media screen and (min-width: 768px) {
  .about__value-label {
    font-size: 0.8125rem;
  }
}

.about__value-title {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 17px;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .about__value-title {
    font-size: 2.5rem;
    margin-top: 2rem;
  }
}
.about__value-title span {
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#f56f46), color-stop(74%, #a483c8), to(#3d44c6));
  background: linear-gradient(to right, #f56f46 0%, #a483c8 74%, #3d44c6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about__value-list {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .about__value-list {
    width: 59%;
    margin-top: 0;
  }
}

.about__value-item + .about__value-item {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .about__value-item + .about__value-item {
    gap: 2rem;
    margin-top: 4rem;
  }
}

.about__value-item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 28px;
  gap: 1.75rem;
}
@media screen and (min-width: 768px) {
  .about__value-item-head {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
  }
}

.about__value-item-num {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #e96e48;
  text-align: center;
  border-bottom: 2px solid #e96e48;
  border-bottom: 0.125rem solid #e96e48;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .about__value-item-num {
    margin-top: 0;
    line-height: 1.3;
  }
}

.about__value-item-line {
  display: inline-block;
  width: 24px;
  width: 1.5rem;
  height: 2px;
  height: 0.125rem;
  background-color: #e96e48;
}
@media screen and (min-width: 768px) {
  .about__value-item-line {
    width: 2.5rem;
  }
}

.about__value-item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .about__value-item-title {
    font-size: 1.5rem;
  }
}

.about__value-item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .about__value-item-body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.5rem;
    margin-top: 2rem;
  }
}

.about__value-item-img {
  border-radius: 0.5rem;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about__value-item-img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 28%;
  }
}
.about__value-item-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 213/120;
}

.about__value-item-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.9;
  margin-top: 8px;
  margin-top: 0.5rem;
  color: #222;
}
@media screen and (min-width: 768px) {
  .about__value-item-text {
    font-size: 1rem;
    margin-top: 0;
  }
}

.about__service {
  background-color: transparent;
  padding-block: 89px 80px;
  padding-block: 5.5625rem 5rem;
}
@media screen and (min-width: 768px) {
  .about__service {
    padding-block: 10.125rem 5rem;
  }
}

.about__service .service-grid__inner {
  padding-inline: 0;
  display: block;
}

.about__service-label {
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  color: #222;
}
@media screen and (min-width: 768px) {
  .about__service-label {
    font-size: 0.8125rem;
  }
}

.about__service .service-grid__title {
  text-align: center;
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.7;
  margin-top: 14px;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .about__service .service-grid__title {
    font-size: 2.5rem;
    margin-top: 1.625rem;
  }
}

.about__service .service-grid__items {
  margin-top: 46px;
  margin-top: 2.875rem;
}
@media screen and (min-width: 768px) {
  .about__service .service-grid__items {
    margin-top: 1.6875rem;
  }
}

.about__company {
  margin-top: 6px;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .about__company {
    margin-top: 4.4375rem;
  }
}

.about__company-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .about__company-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}

.about__company-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
}
@media screen and (min-width: 768px) {
  .about__company-title {
    font-size: 1.5rem;
  }
}

.about__company-list {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .about__company-list {
    margin-top: 0;
  }
}

.about__company-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-block: 23px 23px;
  padding-block: 1.4375rem 1.4375rem;
  border-bottom: 1px solid #d3d3d3;
}
@media screen and (min-width: 768px) {
  .about__company-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-block: 2rem;
    max-width: 60rem;
  }
}
.about__company-row:first-of-type {
  border-top: 1px solid #d3d3d3;
}

.about__company-label {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .about__company-label {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 14.875rem;
  }
}

.about__company-value {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.9;
  color: #0e0e0e;
  margin-top: 17px;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .about__company-value {
    margin-top: 0;
    font-size: 1rem;
    line-height: 1.6;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.about__company-value .about__company-address {
  display: block;
}
@media screen and (min-width: 768px) {
  .about__company-value .about__company-address {
    display: inline;
  }
}

.about__company-map-link:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 6px;
  margin-right: 0.375rem;
  border-top: 4px solid transparent;
  border-top: 0.25rem solid transparent;
  border-bottom: 4px solid transparent;
  border-bottom: 0.25rem solid transparent;
  border-left: 6px solid currentColor;
  border-left: 0.375rem solid currentColor;
  vertical-align: middle;
  margin-top: 6px;
  margin-top: 0.375rem;
}

.about__company-map-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  gap: 0.25rem;
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .about__company-map-link {
    margin-top: 0;
    margin-left: 2rem;
  }
}

.about-slider-wrapper {
  margin: 5.0625rem calc(50% - 50vw) 0;
}
@media screen and (min-width: 768px) {
  .about-slider-wrapper {
    margin-top: 11.0625rem;
  }
}
.about-slider-wrapper .slider {
  -webkit-animation: scroll-left 100s infinite linear 0.5s both;
          animation: scroll-left 100s infinite linear 0.5s both;
}
@media screen and (min-width: 768px) {
  .about-slider-wrapper .slider {
    -webkit-animation: scroll-left 90s infinite linear 0.5s both;
            animation: scroll-left 90s infinite linear 0.5s both;
  }
}
.about-slider-wrapper .slide {
  width: 418vw;
}
@media screen and (min-width: 768px) {
  .about-slider-wrapper .slide {
    width: 170vw;
  }
}

.page-about-slider {
  margin-top: 67px;
  margin-top: 4.1875rem;
  margin-bottom: 38px;
  margin-bottom: 2.375rem;
}
@media screen and (min-width: 768px) {
  .page-about-slider {
    margin-top: 11.375rem;
    margin-bottom: 2.4375rem;
  }
}

.articles-list {
  margin-top: 56px;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .articles-list {
    margin-top: 4.8125rem;
  }
}

.article__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: 24px;
  gap: 1.5rem;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .article__items .card-item {
    border-bottom: none;
  }
}
.article__items .card-item::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .article__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2.5rem;
    overflow: visible;
  }
}
@media screen and (min-width: 768px) {
  .article__items .card-item__content {
    gap: 0.375rem;
  }
}
.article__items .card-item__title {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .article__items .card-item__title {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .article__items .card-item__date-text {
    font-size: 0.6875rem;
  }
}
.article__items .card-item__tag {
  border: none;
  border-right: 1px solid #afafaf;
  border-radius: 0;
  gap: 2px;
  gap: 0.125rem;
}
@media screen and (min-width: 768px) {
  .article__items .card-item__tag {
    font-size: 0.75rem;
    padding-inline: 0.375rem;
    font-weight: 700;
  }
}
.article__items .card-item__tag:last-child,
.article__items .card-item__tag:only-child {
  border-right: none;
}
.article__items .card-item__tag:first-child {
  padding-left: 0;
}

.article__item {
  position: relative;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .article__item {
    width: 31.1%;
    padding-bottom: 2.625rem;
  }
}
.article__item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media screen and (min-width: 768px) {
  .article__item:not(:nth-child(3n))::after {
    content: "";
    position: absolute;
    right: -1.1875rem;
    top: 0;
    bottom: 0;
    background: #afafaf;
    height: 93%;
    width: 1px;
  }
}

.article__item:nth-child(3n+1) {
  position: relative;
}

@media screen and (min-width: 768px) {
  .article__items .article__item:nth-child(3n+1):not(:nth-last-child(-n+3))::before {
    content: "" !important;
    display: block !important;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 322%;
    height: 1px;
    background-color: #d9d9d9;
    z-index: 1;
  }
}

.article__item:last-child {
  border-bottom: none;
}

.article__item img {
  aspect-ratio: 1/1;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.articles-slider {
  margin-top: 38px;
  margin-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .articles-slider {
    margin-top: 4.0625rem;
  }
}

.p-contact__content {
  margin-top: 10px;
  margin-top: 0.625rem;
}
.p-contact__content .page-hero__title-main {
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .p-contact__content .page-hero__title-main {
    font-size: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .p-contact__content .page-hero__right {
    width: 49%;
  }
}
.p-contact__content .page-hero__text {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-contact__content .page-hero__text {
    font-size: 1.125rem;
  }
}
.p-contact__content .page-hero__img-text {
  right: 0;
  width: 172px;
  width: 10.75rem;
  top: 29%;
  display: block;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-contact__content .page-hero__img-text {
    right: 0;
    width: 23.0625rem;
    top: 17.8125rem;
  }
}

.p-contact__section {
  margin-top: 56px;
  margin-top: 3.5rem;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__section {
    margin-top: 7.9375rem;
    padding-bottom: 14.5rem;
  }
}

.p-contact__row {
  padding-bottom: 48px;
  padding-bottom: 3rem;
  border-bottom: 1px solid #d3d3d3;
}
@media screen and (min-width: 768px) {
  .p-contact__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3rem;
    max-width: 60rem;
    padding-bottom: 3rem;
    margin-inline: auto;
  }
}

.p-contact__row.p-contact-textarea {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .p-contact__row.p-contact-textarea {
    border-bottom: 1px solid #d3d3d3;
  }
}

.p-contact__row + .p-contact__row {
  margin-top: 49px;
  margin-top: 3.0625rem;
}
@media screen and (min-width: 768px) {
  .p-contact__row + .p-contact__row {
    margin-top: 2.3125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__row.p-contact__service {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-contact__label-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  gap: 1.5rem;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-contact__label-wrap {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 14.25rem;
    margin-bottom: 0;
  }
}

.p-contact__label {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .p-contact__label {
    font-size: 1.125rem;
  }
}

.p-contact__required {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px 8px;
  padding: 0.25rem 0.5rem;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.6;
  color: #FFFFFF;
  background-color: #0e0e0e;
}

.p-contact__row.tel .p-contact__field {
  max-width: 400px;
}

.p-contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__fields {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__fields--name .p-contact__field {
    width: 15.625rem;
  }
}

.p-contact__field {
  width: 100%;
}

.p-contact__input,
.p-contact__textarea {
  display: block;
  width: 100%;
  padding: 14px 20px;
  padding: 0.875rem 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: #0e0e0e;
  background-color: #FFFFFF;
  border: 1px solid #0e0e0e;
  border-radius: 0;
  background-color: #fff;
}
.p-contact__input::-webkit-input-placeholder,
.p-contact__textarea::-webkit-input-placeholder {
  color: #afafaf;
}
.p-contact__input::-moz-placeholder,
.p-contact__textarea::-moz-placeholder {
  color: #afafaf;
}
.p-contact__input::-ms-input-placeholder,
.p-contact__textarea::-ms-input-placeholder {
  color: #afafaf;
}
.p-contact__input::placeholder,
.p-contact__textarea::placeholder {
  color: #afafaf;
}
@media screen and (min-width: 768px) {
  .p-contact__input,
  .p-contact__textarea {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__row:has(.p-contact__input:only-of-type) .p-contact__input,
  .p-contact__row:has(.p-contact__textarea) .p-contact__input,
  .p-contact__row .p-contact__field .p-contact__input {
    max-width: none;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__fields--name + .p-contact__field .p-contact__input,
  .p-contact__row .p-contact__field .p-contact__input {
    max-width: none;
  }
}

.p-contact__textarea {
  min-height: 200px;
  min-height: 12.5rem;
  resize: vertical;
}
@media screen and (min-width: 768px) {
  .p-contact__textarea {
    max-height: 14.625rem;
  }
}

.p-contact__select {
  display: block;
  width: 100%;
  padding: 16px 20px;
  padding: 1rem 1.25rem;
  padding-right: 48px;
  padding-right: 3rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: #afafaf;
  background-color: #FFFFFF;
  border: 1px solid #0e0e0e;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230E0E0E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-position: right 1.25rem center;
  background-size: 1rem 1.125rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-contact__select {
    max-width: 25rem;
    font-size: 1rem;
  }
}

.p-contact__checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  gap: 1.5rem;
}

.p-contact__checkboxes .wpcf7-list-item {
  margin: 0;
  display: block;
}
.p-contact__checkboxes .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 14px;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__checkboxes .wpcf7-list-item + .wpcf7-list-item {
    margin-top: 1.5625rem;
  }
}

.p-contact__checkboxes .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-contact__checkboxes .wpcf7-list-item label {
    gap: 0.75rem;
  }
}

.p-contact__checkboxes input[type=checkbox] {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  margin: 0;
  border: 1px solid #0e0e0e;
  border-radius: 0;
  background-color: #FFFFFF;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.875rem 0.875rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-contact__checkboxes input[type=checkbox] {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.p-contact__checkboxes input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='none' stroke='%230E0E0E' stroke-width='2' d='M2 7l3 3 7-7'/%3E%3C/svg%3E");
}

.p-contact__checkboxes .wpcf7-list-item-label {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .p-contact__checkboxes .wpcf7-list-item-label {
    font-size: 1rem;
  }
}

.p-contact__submit-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26px;
  gap: 1.625rem;
  padding-top: 40px;
  padding-top: 2.5rem;
  max-width: 960px;
  max-width: 60rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-contact__submit-wrap {
    gap: 2.5rem;
  }
}

.p-contact__agree,
.p-contact__submit-wrap .wpcf7-form-control-wrap label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.p-contact__agree {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__agree {
    font-size: 1rem;
  }
}

.p-contact__agree a {
  margin-left: 30px;
  margin-left: 1.875rem;
  text-decoration: underline;
}

.p-contact__agree span {
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  margin-top: 2px;
  margin-top: 0.125rem;
}
@media screen and (min-width: 768px) {
  .p-contact__agree span {
    margin-top: 0;
  }
}

.p-contact__accept,
.p-contact__submit-wrap input[type=checkbox] {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  margin: 0;
  border: 1px solid #0e0e0e;
  border-radius: 0;
  background-color: #FFFFFF;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.875rem 0.875rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-contact__accept,
  .p-contact__submit-wrap input[type=checkbox] {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.p-contact__accept:checked,
.p-contact__submit-wrap input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='none' stroke='%230E0E0E' stroke-width='2' d='M2 7l3 3 7-7'/%3E%3C/svg%3E");
}

.p-contact__agree .wpcf7-list-item-label,
.p-contact__submit-wrap .wpcf7-form-control-wrap label {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #0e0e0e;
}

.p-contact__submit {
  width: 292px;
  width: 18.25rem;
  position: relative;
}
.p-contact__submit:after {
  content: "";
  position: absolute;
  right: 16px;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/common/icon_arrow-right.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 48px;
  height: 3rem;
  width: 48px;
  width: 3rem;
}
.p-contact__submit input {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  gap: 2.5rem;
  width: 100%;
  max-width: 292px;
  max-width: 18.25rem;
  padding: 21px 16px 24px 32px;
  padding: 1.3125rem 1rem 1.5rem 2rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  color: #FFFFFF;
  background-color: #0e0e0e;
  border: 1px solid #FFFFFF;
  border-radius: 0.25rem;
  cursor: pointer;
  text-decoration: none;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-contact__submit input {
    padding: 1.5625rem 1rem 1.5625rem 2rem;
  }
}

.p-contact__submit-wrap {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .p-contact__submit-wrap {
    padding-top: 2.375rem;
  }
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7-form:not(.invalid):not(.unaccepted) .wpcf7-not-valid-tip {
  display: none;
}

.wpcf7-form:not(.invalid):not(.unaccepted) .wpcf7-not-valid {
  border-color: transparent;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border: none;
  text-align: center;
  color: red;
}

.wpcf7 form.sent .wpcf7-response-output {
  text-align: center;
  border: none;
  color: #00a0d2;
}

.wpcf7-form {
  position: relative;
}

.wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 16px;
  right: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-contact__select {
  color: #0e0e0e;
}

.p-contact__select.is-placeholder {
  color: #afafaf;
}

.page-hero__img-text.page-hero__img-text--faq {
  display: block;
  position: absolute;
  width: 171px;
  width: 10.6875rem;
  top: 29%;
  right: -2px;
  right: -0.125rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .page-hero__img-text.page-hero__img-text--faq {
    top: 23.75rem;
    width: 26.0625rem;
    right: 0;
  }
}

.faq-category {
  margin-top: 31px;
  margin-top: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .faq-category {
    margin-top: 5rem;
  }
}

.faq-category__inner {
  max-width: 1200px;
  max-width: 75rem;
  margin: 0 auto;
}

.faq-category__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .faq-category__buttons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.625rem;
  }
}

.faq-category__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #0e0e0e;
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  padding: 16px 10px 16px 11px;
  padding: 1rem 0.625rem 1rem 0.6875rem;
  border-radius: 0.25rem;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 48.5%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .faq-category__button {
    width: 18rem;
    font-size: 1rem;
    padding: 1rem 0.75rem 1rem 2rem;
  }
}
.faq-category__button:hover {
  opacity: 0.8;
}
.faq-category__button:hover .faq-category__button-icon svg {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}

.faq-category__button-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.faq-category__button-icon {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30px;
  width: 1.875rem;
  height: 20px;
  height: 1.25rem;
  gap: 10px;
  gap: 0.625rem;
  border-left: 1px solid #696969;
}
@media screen and (min-width: 768px) {
  .faq-category__button-icon {
    height: 1.5625rem;
    width: 2.125rem;
  }
}
.faq-category__button-icon svg {
  width: 13px;
  width: 0.8125rem;
  height: 13px;
  height: 0.8125rem;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .faq-category__button-icon svg {
    width: 1rem;
    height: 1rem;
  }
}

.faq__section {
  margin-top: 56px;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .faq__section {
    margin-top: 5.25rem;
  }
}

.faq__title {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .faq__title {
    font-size: 1.5rem;
  }
}

.faq {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .faq {
    margin-top: 3.75rem;
  }
}

.faq__inner {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .faq__inner {
    max-width: 1080px;
  }
}

.faq-list {
  list-style: none;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .faq-list {
    margin-top: 1.75rem;
  }
}

.faq-list__item {
  background-color: #ffffff;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-inline: auto;
  padding-left: 32px;
  padding-left: 2rem;
}
@media screen and (min-width: 768px) {
  .faq-list__item {
    max-width: 1080px;
    padding-left: 2.9375rem;
  }
}

.faq-list__item + .faq-list__item {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .faq-list__item + .faq-list__item {
    margin-top: 0.625rem;
  }
}

.faq-list__item-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  gap: 1.875rem;
  cursor: pointer;
  width: 100%;
  position: relative;
  padding: 32px 31px 28px 0;
  padding: 2rem 1.9375rem 1.75rem 0;
}
@media screen and (min-width: 768px) {
  .faq-list__item-question {
    gap: 3rem;
    padding: 2rem 3rem 2rem 0;
  }
}

.faq-list__item-question-icon {
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  display: inline-block;
  background-color: #0e0e0e;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .faq-list__item-question-icon {
    width: 2.3125rem;
    height: 2.3125rem;
  }
}

.faq-list__item-question-icon::before {
  content: "";
  position: absolute;
  width: 10px;
  width: 0.625rem;
  height: 2px;
  height: 0.125rem;
  background-color: #fff;
  border-radius: 0.0625rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .faq-list__item-question-icon::before {
    width: 0.875rem;
    height: 0.125rem;
  }
}

.faq-list__item-question-icon::after {
  content: "";
  position: absolute;
  width: 2px;
  width: 0.125rem;
  height: 10px;
  height: 0.625rem;
  background-color: #fff;
  border-radius: 0.0625rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) {
  .faq-list__item-question-icon::after {
    width: 0.125rem;
    height: 0.875rem;
  }
}
.is-open .faq-list__item-question-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list__item-question.is-open .faq-list__item-question-icon svg .faq-list__item-question-icon-line-vertical {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.faq-list__item-question-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.9;
  color: #0e0e0e;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 66px;
  padding-left: 4.125rem;
}
@media screen and (min-width: 768px) {
  .faq-list__item-question-text {
    font-size: 1.125rem;
    padding-left: 5.25rem;
  }
}

.faq-list__item-answer {
  display: none;
  width: 100%;
  padding-bottom: 25px;
  padding-bottom: 1.5625rem;
  padding-right: 32px;
  padding-right: 2rem;
}
.faq-list__item-answer.is-open {
  display: block;
}

.faq-list__item-answer-text {
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.9;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .faq-list__item-answer-text {
    font-size: 1rem;
    padding-left: 5.3125rem;
  }
}

.page-faq-slider {
  margin-top: 24px;
  margin-top: 1.5rem;
  margin-bottom: 38px;
  margin-bottom: 2.375rem;
}
@media screen and (min-width: 768px) {
  .page-faq-slider {
    margin-top: 7.375rem;
    margin-bottom: 1.0625rem;
  }
}

.page-journal {
  overflow-x: clip;
}

.page-journal__inner {
  position: relative;
}

.page-journal__img-text {
  right: 0;
  width: 172px;
  width: 10.75rem;
  top: 29%;
  display: block;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .page-journal__img-text {
    right: -3.25rem;
    width: 23.4375rem;
    top: -6%;
    top: 8.875rem;
    right: clamp(-0.125rem, 4.8824515648rem + -10.4321907601vw, -4.5rem);
    right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .page-journal__img-text {
    right: -2.5rem;
    right: 0;
  }
}
@media screen and (min-width: 1440px) {
  .page-journal__img-text {
    right: -3.25rem;
    right: 0;
  }
}

@media screen and (min-width: 768px) {
  .new-article__head {
    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;
    padding-inline: 1.5625rem;
    width: 93%;
    margin-inline: auto;
  }
}

.journal-slider {
  position: relative;
  margin-top: 50px;
  margin-top: 3.125rem;
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .journal-slider {
    margin: 3.125rem calc(50% - 50vw);
    width: auto;
  }
}
.journal-slider__item {
  width: 60%;
}

.journal-slider__item-link:hover .journal-slider__item-img {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.journal-slider__item-link:hover .journal-slider__item-img::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  top: 14px;
  top: 0.875rem;
  height: 96%;
}

.journal-slider__item-img {
  width: 88%;
  margin-inline: auto;
  position: relative;
  padding-top: 14px;
  padding-top: 0.875rem;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.journal-slider__item-img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  top: 0.3125rem;
  background: -webkit-gradient(linear, left top, right top, from(#f56f46), color-stop(100%, #a483c8), to(#3d44c6));
  background: linear-gradient(to right, #f56f46 0%, #a483c8 100%, #3d44c6 100%);
  height: 100%;
  width: 100%;
  z-index: 0;
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
  border-radius: 0.625rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.journal-slider__item-img img {
  aspect-ratio: 300/365;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
  height: 100%;
}

.journal-slider__item-title {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  margin-top: 22px;
  margin-top: 1.375rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .journal-slider__item-title {
    margin-inline: auto;
    margin-left: 1.25rem;
    font-size: 1.125rem;
    margin-top: 2.125rem;
  }
}

@media screen and (min-width: 768px) {
  .journal-slider__item-date {
    margin-left: 1.25rem;
    display: inline-block;
  }
}

.journal-slider__item-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  gap: 1.125rem;
  margin-top: 9px;
  margin-top: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .journal-slider__item-tags {
    margin-inline: auto;
    margin-left: 1.25rem;
  }
}

.journal-slider__item-tag {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 768px) {
  .journal-slider__item-tag {
    font-size: 0.875rem;
  }
}

.journal-slider__item-tag::before {
  content: "";
  position: absolute;
  right: -9px;
  right: -0.5625rem;
  top: 0;
  background-color: #afafaf;
  height: 100%;
  width: 1px;
}

.new-article {
  margin-top: 47px;
  margin-top: 2.9375rem;
}
@media screen and (min-width: 768px) {
  .new-article {
    margin-top: 5rem;
  }
}

.new-article__inner {
  padding-inline: 16px;
  padding-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .new-article__inner {
    padding-inline: 0;
  }
}

.new-article__title {
  font-size: clamp(38px, 29.197px + 2.3474178404vw, 63px);
  font-size: clamp(2.375rem, 1.8248239437rem + 2.3474178404vw, 3.9375rem);
  font-weight: 700;
}

.journal-content__title-button {
  margin-top: 19px;
  margin-top: 1.1875rem;
  margin-right: 18px;
  margin-right: 1.125rem;
}

.new-article__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .new-article__list {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 2rem;
  }
}

.new-article__item {
  border: 1px solid #000;
}

.new-article__item + .new-article__item {
  border-top: none;
}
@media screen and (min-width: 768px) {
  .new-article__item + .new-article__item {
    border-top: 1px solid #000;
  }
}

@media screen and (min-width: 768px) {
  .new-article__item:not(:nth-child(4n+1)) {
    border-left: none;
  }
}

@media screen and (min-width: 768px) {
  .new-article__item:nth-child(n+5) {
    border-top: none;
  }
}

.new-article-card {
  position: relative;
  display: block;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 25px;
  padding-bottom: 1.5625rem;
  padding-top: 23px;
  padding-top: 1.4375rem;
  padding-inline: 15px;
  padding-inline: 0.9375rem;
  gap: 12px;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .new-article-card {
    padding-inline: 1.4375rem;
    gap: 0.6875rem;
    padding-top: 2.5rem;
    padding-bottom: 1.875rem;
  }
}
.new-article-card:hover .new-article-card__image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.new-article-card__header {
  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;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .new-article-card__header {
    gap: 0;
  }
}

.new-article-card__image {
  border-radius: 0.5rem;
  overflow: hidden;
}

.new-article-card__image img {
  aspect-ratio: 1/1;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .new-article-card__image img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.new-article-card__title {
  font-weight: bold;
  line-height: 1.7;
  padding-left: 10px;
  padding-left: 0.625rem;
  color: #222;
}
@media screen and (min-width: 768px) {
  .new-article-card__title {
    font-size: 1.125rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

.new-article-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  padding-left: 10px;
  padding-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .new-article-card__tags {
    gap: 1.5625rem;
  }
}

.new-article-card__tag {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 768px) {
  .new-article-card__tag {
    font-size: 0.875rem;
  }
}

.new-article-card__tag::before {
  content: "";
  position: absolute;
  right: -14px;
  right: -0.875rem;
  top: 0;
  background-color: #afafaf;
  height: 100%;
  width: 1px;
}

.new-article-card__tag:last-child::before {
  display: none;
}

.new-article-card__category {
  -webkit-writing-mode: sideways-lr;
      -ms-writing-mode: sideways-lr;
          writing-mode: sideways-lr;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
}

.new-article-card__date {
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  padding-left: 10px;
  padding-left: 0.625rem;
}

.journal-page-slider {
  margin-bottom: 84px;
  margin-bottom: 5.25rem;
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (min-width: 768px) {
  .journal-page-slider {
    margin-top: 0.625rem;
    margin-bottom: 7.9375rem;
  }
}

.journal-content + .journal-content {
  margin-top: 52px;
  margin-top: 3.25rem;
}
@media screen and (min-width: 768px) {
  .journal-content + .journal-content {
    margin-top: 5.9375rem;
  }
}

.journal-content__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .journal-content__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.journal-content__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .journal-content__head {
    width: 20%;
  }
}

.journal-content__title {
  font-size: clamp(38px, 34.478px + 0.9389671362vw, 48px);
  font-size: clamp(2.375rem, 2.1549295775rem + 0.9389671362vw, 3rem);
  font-weight: 700;
}

.journal-content__subtitle {
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 9px;
  margin-top: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .journal-content__subtitle {
    margin-top: 0.25rem;
  }
}

.journal-content__button {
  text-align: right;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .journal-content__button {
    text-align: left;
    text-align: initial;
    margin-top: 2.8125rem;
  }
}

.journal-content__button-link {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .journal-content__button-link {
    gap: 1.0625rem;
  }
}

.journal-content__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 27px;
  row-gap: 1.6875rem;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .journal-content__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2.8125rem 1.875rem;
  }
}

.journal-content__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .journal-content__item {
    width: 47%;
    gap: 1.5rem;
  }
}
.journal-content__item:hover .journal-content__item-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.journal-content__item-img {
  width: 35%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .journal-content__item-img {
    width: 36%;
    height: 100%;
  }
}

.journal-content__item-img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 120/140;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) {
  .journal-content__item-img img {
    aspect-ratio: 300/365;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.journal-content__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
}
.journal-content__item-category-text {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
}

.journal-content__item-title {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: #222;
}
@media screen and (min-width: 768px) {
  .journal-content__item-title {
    font-size: 1.125rem;
  }
}

.journal-content__item-time {
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.journal-content__item-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 19px;
  gap: 1.1875rem;
}

.journal-content__item-tag {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  position: relative;
  font-weight: 700;
}

.journal-content__item-tag::before {
  content: "";
  position: absolute;
  right: -10px;
  right: -0.625rem;
  top: 0;
  background-color: #afafaf;
  height: 100%;
  width: 1px;
}

.journal-content__item-tag:last-child::before,
.journal-content__item-tag:only-child::before {
  display: none;
}

.journal-page-bottom-slider {
  margin-top: 87px;
  margin-top: 5.4375rem;
}
@media screen and (min-width: 768px) {
  .journal-page-bottom-slider {
    margin-top: 6.0625rem;
  }
}

.page-journal__content {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.page-journal__title {
  font-size: clamp(18px, 10.253px + 2.0657276995vw, 40px);
  font-size: clamp(1.125rem, 0.6408450704rem + 2.0657276995vw, 2.5rem);
  color: #FFFFFF;
  background: -webkit-gradient(linear, left top, right top, from(#f56f46), color-stop(74%, #a483c8), to(#3d44c6));
  background: linear-gradient(to right, #f56f46 0%, #a483c8 74%, #3d44c6 100%);
  padding-inline: 12px;
  padding-inline: 0.75rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .page-journal__title {
    padding-block: 0.1875rem 0.25rem;
  }
}

.page-hero__img-text.page-hero__img-text--service {
  top: 36%;
}
@media screen and (min-width: 768px) {
  .page-hero__img-text.page-hero__img-text--service {
    top: 23.125rem;
    width: 23.0625rem;
  }
}

.page-service-list {
  padding: 21px 0;
  padding: 1.3125rem 0;
}
@media screen and (min-width: 768px) {
  .page-service-list {
    padding-block: 5.5625rem 3.75rem;
  }
}

.page-service-list__inner {
  width: 100%;
}

.page-service-list__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 14px;
  row-gap: 0.875rem;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .page-service-list__items {
    gap: 0;
  }
}

.page-service-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 25%;
  text-decoration: none;
  color: inherit;
  position: relative;
  cursor: pointer;
  row-gap: 10px;
  row-gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .page-service-list__item {
    width: 14.1%;
    row-gap: 1.375rem;
  }
}
.page-service-list__item:hover svg {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

.page-service-list__item::after {
  content: "";
  position: absolute;
  right: -2px;
  right: -0.125rem;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #222222;
}
@media screen and (min-width: 768px) {
  .page-service-list__item::after {
    right: 0;
  }
}

.page-service-list__item:last-child::after {
  content: none;
}

.page-service-list__item:nth-child(4)::after {
  content: none;
}
@media screen and (min-width: 768px) {
  .page-service-list__item:nth-child(4)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 0.125rem;
    background-color: #0e0e0e;
  }
}

.page-service-list__item-title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.6;
  text-align: center;
  color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .page-service-list__item-title {
    font-size: 1rem;
  }
}

.page-service-list__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .page-service-list__item-content {
    gap: 0.75rem;
  }
}

.page-service-list__item-subtitle {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
  text-align: left;
  color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .page-service-list__item-subtitle {
    font-size: 0.6875rem;
  }
}

.page-service-list__item-icon {
  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: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-service-list__item-icon svg {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .page-service-list__item-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.page-service-list__divider {
  width: 1px;
  height: 40px;
  height: 2.5rem;
  background-color: #222222;
  margin: 16px 0;
  margin: 1rem 0;
}
@media screen and (min-width: 768px) {
  .page-service-list__divider {
    width: 2.5rem;
    height: 1px;
    margin: 0;
  }
}

.service-detail {
  position: relative;
  overflow: hidden;
}

.service-detail + .service-detail {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .service-detail + .service-detail {
    margin-top: 0.875rem;
  }
}

.service-detail__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.service-detail__bg-image {
  width: 100%;
  height: 100%;
}
.service-detail__bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-detail__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .7)), to(rgba(0, 0, 0, .2)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .2) 100%);
}

.service-detail__inner {
  position: relative;
  z-index: 2;
  padding: 56px 16px;
  padding: 3.5rem 1rem;
}
@media screen and (min-width: 768px) {
  .service-detail__inner {
    padding: 1.5rem 4.625rem 2.1875rem 4.625rem;
    height: inherit;
    max-width: 1440px;
    margin-inline: auto;
  }
}

.service-detail__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .service-detail__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.1875rem;
  }
}

.service-detail__header {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .service-detail__header {
    width: 20.9375rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.service-detail__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.service-detail__title-main {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.6;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .service-detail__title-main {
    font-size: 2.5625rem;
  }
}

.service-detail__title-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
}

.service-detail__button {
  margin-top: 38px;
  margin-top: 2.375rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .service-detail__button {
    margin-top: 2.5rem;
    margin-left: 0;
    text-align: left;
  }
}

.service-detail__button-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  padding: 8px 10px 8px 20px;
  padding: 0.5rem 0.625rem 0.5rem 1.25rem;
  border: 1px solid #ffffff;
  border-radius: 0.25rem;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .service-detail__button-link {
    padding: 0.75rem 0.875rem 0.75rem 2rem;
    font-size: 1rem;
    width: 15rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.service-detail__button-link:hover {
  opacity: 0.8;
}

.service-detail__button-text {
  white-space: nowrap;
}

.service-detail__button-icon {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
}
@media screen and (min-width: 768px) {
  .service-detail__button-icon {
    width: 1.625rem;
    height: 1.625rem;
  }
}
.service-detail__button-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.service-detail__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .service-detail__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 72%;
  }
}

.service-detail__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #ffffff;
  border-radius: 0.375rem;
  -webkit-box-shadow: 0px 0px 0.4125rem 0px rgba(0, 0, 0, .25);
          box-shadow: 0px 0px 0.4125rem 0px rgba(0, 0, 0, .25);
  gap: 16px;
  gap: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .service-detail__item {
    border-radius: 0.5rem;
    -webkit-box-shadow: 0px 0px 0.75rem 0px rgba(0, 0, 0, .25);
            box-shadow: 0px 0px 0.75rem 0px rgba(0, 0, 0, .25);
    gap: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

.service-detail__item-image {
  width: 100%;
  aspect-ratio: 163/110;
  border-radius: 0.25rem 0.25rem 0 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .service-detail__item-image {
    aspect-ratio: 296/209;
    border-radius: 0.5rem 0.5rem 0 0;
  }
}
.service-detail__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-detail__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  gap: 0.25rem;
  padding: 0 8px;
  padding: 0 0.5rem;
  min-height: 55px;
  min-height: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .service-detail__item-content {
    padding: 0 0 0 1rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.service-detail__item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #0e0e0e;
  text-align: left;
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .service-detail__item-title {
    font-size: 1rem;
  }
}

.service-detail__item-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.4px;
  gap: 0.275rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .service-detail__item-price {
    gap: 0.5rem;
  }
}

.service-detail__item-price-value {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #c3461f;
}
@media screen and (min-width: 768px) {
  .service-detail__item-price-value {
    font-size: 1.125rem;
  }
}

.service-detail__item-price-note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.6;
  color: #0e0e0e;
}

.sd-title {
  margin-top: 2px;
  margin-top: 0.125rem;
}
@media screen and (min-width: 768px) {
  .sd-title {
    margin-top: 1.6875rem;
  }
}

.sd-title__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .sd-title__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .sd-title__left {
    width: 65%;
  }
}

.sd-title__head {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .sd-title__head {
    margin-bottom: 1rem;
  }
}

.sd-title__category {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #0e0e0e;
  margin-top: 44px;
  margin-top: 2.75rem;
}
@media screen and (min-width: 768px) {
  .sd-title__category {
    font-size: 1rem;
    margin-top: 1.5625rem;
  }
}

.sd-title__name {
  font-weight: 700;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.3;
  color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .sd-title__name {
    font-size: 3.5625rem;
    margin-top: -1.0625rem;
  }
}

.sd-title__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  gap: 0.5rem;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .sd-title__tags {
    margin-top: 0;
  }
}

.sd-title__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 10px;
  padding: 0.375rem 0.625rem;
  border: 1px solid #0e0e0e;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .sd-title__tag {
    font-size: 0.6875rem;
    padding: 0.3125rem 0.625rem;
  }
}

.sd-title__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  width: 100%;
  margin-top: 49px;
  margin-top: 3.0625rem;
}
@media screen and (min-width: 768px) {
  .sd-title__right {
    width: 19.5625rem;
    gap: 1.5rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 0;
  }
}

.sd-title__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border: 1px solid #d3d3d3;
}
@media screen and (min-width: 768px) {
  .sd-title__area {
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
}

.sd-title__area-label {
  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;
  padding: 12px 19px;
  padding: 0.75rem 1.1875rem;
  background-color: #181818;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .sd-title__area-label {
    padding: 1.25rem 1.1875rem;
    font-size: 0.875rem;
  }
}

.sd-title__area-value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 21px;
  padding: 0.75rem 1.3125rem;
  background-color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #0e0e0e;
  border-left: 1px solid #d3d3d3;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .sd-title__area-value {
    padding: 1rem 1.0625rem;
    font-size: 0.875rem;
  }
}

.sd-title__price {
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #0e0e0e;
  margin: 0;
  text-align: right;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sd-title__price {
    font-size: 1rem;
  }
}

.sd-title__price span {
  font-size: 19px;
  font-size: 1.1875rem;
  margin-left: 14px;
  margin-left: 0.875rem;
}
@media screen and (min-width: 768px) {
  .sd-title__price span {
    font-size: 1.5625rem;
    margin-left: 1.1875rem;
  }
}

.sd-title__price .yen {
  font-size: 14px;
  font-size: 0.875rem;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .sd-title__price .yen {
    font-size: 1.125rem;
  }
}

.service-detail-content {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .service-detail-content {
    margin-top: 5rem;
  }
}

.service-detail-content p {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .service-detail-content p {
    margin-bottom: 1.0625rem;
    line-height: 1.7;
    font-size: 1rem;
  }
}

.service-detail-content strong {
  font-weight: 700;
}

.service-detail-content .under-line span {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #c58e22));
  background-image: linear-gradient(transparent 60%, #c58e22 60%);
  text-decoration: none !important;
}

.service-detail-content h2 {
  line-height: 1.7;
  position: relative;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  margin-top: 34px;
  margin-top: 2.125rem;
  font-size: 23px;
  font-size: 1.4375rem;
  padding-bottom: 6px;
  padding-bottom: 0.375rem;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .service-detail-content h2 {
    margin-bottom: 1.25rem;
    margin-top: 4.5rem;
    font-size: 1.9375rem;
  }
}

.service-detail-content h3 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  margin-top: 32px;
  margin-top: 2rem;
  padding-top: 4px;
  padding-top: 0.25rem;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
  font-size: 19px;
  font-size: 1.1875rem;
  text-indent: -25px;
  text-indent: -1.5625rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .service-detail-content h3 {
    font-size: 1.375rem;
    margin-top: 2.5rem;
    margin-bottom: 1.125rem;
  }
}

.service-detail-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
}

.service-detail-content h4 {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5em;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .service-detail-content h4 {
    font-size: 1rem;
    padding-left: 1.9em;
    margin-bottom: 1.1875rem;
    margin-top: 2.625rem;
  }
}

.service-detail-content h4::before {
  content: "";
  position: absolute;
  left: 0%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 12px;
  height: 0.75rem;
  width: 12px;
  width: 0.75rem;
}
@media screen and (min-width: 768px) {
  .service-detail-content h4::before {
    height: 1rem;
    width: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .service-detail-content .wp-block-image {
    margin: 5px calc(50% - 44vw);
    max-width: 1267px;
  }
}
@media screen and (min-width: 1440px) {
  .service-detail-content .wp-block-image {
    margin-inline: auto;
  }
}

.service-detail-content img {
  margin-bottom: 54px;
  margin-bottom: 3.375rem;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .service-detail-content img {
    margin-bottom: 2.375rem;
    border-radius: 1.25rem;
  }
}

.service-detail-content a {
  font-weight: 300;
  text-decoration: underline;
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  padding-left: 12px;
  padding-left: 0.75rem;
  color: #004780;
}
@media screen and (min-width: 768px) {
  .service-detail-content a {
    font-size: 1.1875rem;
  }
}

.service-detail-content p a {
  margin-bottom: 0;
  color: #0739cd;
}

.service-detail-content ul {
  background-color: #FFFFFF;
  border-radius: 0.5rem;
  margin-bottom: 27px;
  margin-bottom: 1.6875rem;
  padding-left: 17px;
  padding-left: 1.0625rem;
  padding: 24px 16px 24px 35px;
  padding: 1.5rem 1rem 1.5rem 2.1875rem;
}
@media screen and (min-width: 768px) {
  .service-detail-content ul {
    padding: 2.9375rem 4.5625rem 2.8125rem;
  }
}

.service-detail-content ul li {
  font-size: 13px;
  font-size: 0.8125rem;
  position: relative;
  list-style: disc;
}
@media screen and (min-width: 768px) {
  .service-detail-content ul li {
    font-size: 1.0625rem;
  }
}

.service-detail-content ul li:not(:first-child) {
  margin-top: 14px;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .service-detail-content ul li:not(:first-child) {
    margin-top: 0.6875rem;
  }
}

.service-detail-content ol {
  list-style-type: decimal;
  margin-bottom: 27px;
  margin-bottom: 1.6875rem;
  padding-left: 20px;
  padding-left: 1.25rem;
}
.service-detail-content ol li {
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .service-detail-content ol li {
    font-size: 1rem;
  }
}

.service-detail-content ol li:not(:first-child) {
  margin-top: 6px;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .service-detail-content ol li:not(:first-child) {
    margin-top: 0.6875rem;
  }
}

.service-detail-content .wp-block-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
.service-detail-content .wp-block-table tbody {
  background-color: #fff;
}
.service-detail-content .wp-block-table tr:first-child td {
  color: #FFFFFF;
  background-color: #696969;
}
@media screen and (min-width: 768px) {
  .service-detail-content .wp-block-table tr:first-child td {
    font-size: 1.25rem;
    margin-bottom: 1.6875rem;
  }
}
.service-detail-content .wp-block-table tr:not(:first-child) td:not(:first-child) {
  font-weight: 700;
}
.service-detail-content .wp-block-table th {
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .service-detail-content .wp-block-table th {
    font-size: 1rem;
  }
}
.service-detail-content .wp-block-table td {
  border: solid 1px #f7f6f3;
  padding: 19px;
  padding: 1.1875rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .service-detail-content .wp-block-table td {
    padding: 1.125rem 1.25rem;
    font-size: 1.125rem;
  }
}
.service-detail-content .wp-block-table thead {
  border-bottom: none;
}
.service-detail-content .wp-block-table thead tr {
  color: white;
  text-align: left;
  background-color: #696969;
}
.service-detail-content table {
  border-collapse: collapse;
  width: 100%;
}

.service-detail__list-container {
  padding-bottom: 42px;
  padding-bottom: 2.625rem;
  border-bottom: 1px solid #afafaf;
}
@media screen and (min-width: 768px) {
  .service-detail__list-container {
    padding-bottom: 4.25rem;
  }
}

.service-detail__list-container + .service-detail__list-container {
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .service-detail__list-container + .service-detail__list-container {
    margin-top: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .service-detail__list-container h2 {
    font-size: 2rem;
  }
}

.service-detail__list-slider {
  margin-right: calc(50% - 50vw);
  margin-top: 27px;
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .service-detail__list-slider {
    margin-top: 2.9375rem;
  }
}
@media screen and (min-width: 1441px) {
  .service-detail__list-slider {
    margin-right: 0;
  }
}

.service-detail__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.service-detail__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 19px;
  gap: 1.1875rem;
}

.service-detail__list-item-image {
  width: 50%;
  border-radius: 0.375rem;
  overflow: hidden;
}
.service-detail__list-item-image img {
  aspect-ratio: 162/129;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.service-detail__list-item-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.service-detail__list-item-title {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.9;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (min-width: 768px) {
  .service-detail__list-item-title {
    font-size: 1.0625rem;
  }
}

.service-detail__list-item-category {
  border: 1px solid #222222;
  background-color: #FFFFFF;
  padding: 7px 14px;
  padding: 0.4375rem 0.875rem;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: #FFFFFF;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .service-detail__list-item-category {
    padding: 0.5rem 0.625rem;
    font-size: 0.9375rem;
  }
}

.service-detail__list-slider-buttons {
  position: relative;
  width: 85px;
  width: 5.3125rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .service-detail__list-slider-buttons {
    width: 7.125rem;
    margin-top: 2.625rem;
  }
}
.service-detail__list-slider-buttons .swiper-button-prev,
.service-detail__list-slider-buttons .swiper-button-next {
  width: 32px;
  width: 2rem;
}
@media screen and (min-width: 768px) {
  .service-detail__list-slider-buttons .swiper-button-prev,
  .service-detail__list-slider-buttons .swiper-button-next {
    width: 2.5rem;
  }
}

.service-detail-content__footer {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .service-detail-content__footer {
    margin-top: 5rem;
  }
}

/*======================================
        sd-faq
=======================================*/
.sd-faq {
  margin-top: 96px;
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .sd-faq {
    margin-top: 7.5rem;
  }
}

.sd-faq__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .sd-faq__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3%;
    margin-top: 2.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .sd-faq__wrap h2 {
    width: 30%;
  }
}

.sd-faq__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
  margin-top: 27px;
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .sd-faq__list {
    gap: 0.625rem;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-top: 0;
  }
}

.sd-faq__item {
  background-color: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
}

.sd-faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
  padding: 20px 16px;
  padding: 1.25rem 1rem;
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
@media screen and (min-width: 768px) {
  .sd-faq__question {
    padding: 1.5rem 2rem;
    gap: 1rem;
  }
}
.sd-faq__question:hover {
  background-color: #fafafa;
}

.sd-faq__question.is-open {
  background-color: #696969;
  color: #FFFFFF;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.sd-faq__question.is-open .sd-faq__icon--q {
  background-color: #FFFFFF;
  color: #696969;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.sd-faq__question.is-open .sd-faq__question-text {
  color: #FFFFFF;
}

.sd-faq__icon {
  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: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.sd-faq__icon .sd-faq__question:hover {
  background-color: #fafafa;
}
@media screen and (min-width: 768px) {
  .sd-faq__icon {
    width: 2rem;
    height: 2rem;
    font-size: 0.875rem;
  }
}

.sd-faq__icon--q {
  background-color: #0e0e0e;
  color: #ffffff;
  border-radius: 50px;
}

.sd-faq__icon--a {
  background-color: #0e0e0e;
  color: #FFFFFF;
  border: 2px solid #0e0e0e;
  border-radius: 50%;
}

.sd-faq__question-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #0e0e0e;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .sd-faq__question-text {
    font-size: 1rem;
  }
}

.sd-faq__toggle {
  position: relative;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .sd-faq__toggle {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.sd-faq__toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  width: 0.875rem;
  height: 2px;
  height: 0.125rem;
  background-color: #0e0e0e;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .sd-faq__toggle::before {
    width: 1.125rem;
  }
}
.sd-faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  width: 0.125rem;
  height: 14px;
  height: 0.875rem;
  background-color: #0e0e0e;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) {
  .sd-faq__toggle::after {
    height: 1.125rem;
  }
}
.is-open .sd-faq__toggle::before {
  background-color: #FFFFFF;
}
.is-open .sd-faq__toggle::after {
  background-color: #FFFFFF;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.sd-faq__answer {
  display: none;
  padding: 0 16px 20px;
  padding: 0 1rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .sd-faq__answer {
    padding: 0 2rem 1.75rem;
  }
}
.sd-faq__answer.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sd-faq .faq-list__item-answer {
  display: none;
  padding: 16px 16px 20px;
  padding: 1rem 1rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .sd-faq .faq-list__item-answer {
    padding: 1.75rem 2rem 1.75rem;
  }
}

.sd-faq__answer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .sd-faq__answer-inner {
    gap: 1rem;
  }
}

.sd-faq__answer-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8;
  color: #222222;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .sd-faq__answer-text {
    font-size: 0.9375rem;
  }
}

/*======================================
        attention_section（注意事項・アフターサービス）
=======================================*/
.attention_section {
  margin-top: 56px;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .attention_section {
    margin-top: 5rem;
  }
}

.attention_section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 13px;
  gap: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .attention_section__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 13%;
  }
}

@media screen and (min-width: 768px) {
  .attention_section__head {
    width: 33%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.attention_section__title {
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.6;
  color: #0e0e0e;
  margin: 0 0 8px;
  margin: 0 0 0.5rem;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .attention_section__title {
    font-size: 2rem;
    margin-bottom: 2.75rem;
  }
}

.attention_section__subtitle {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .attention_section__subtitle {
    font-size: 1.25rem;
    width: 33%;
  }
}

.attention_section__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.attention_section__lead {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
  color: #0e0e0e;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .attention_section__lead {
    font-size: 1.25rem;
    margin-bottom: 1.0625rem;
  }
}

.attention_section__text {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 38px;
  margin-bottom: 2.375rem;
}
@media screen and (min-width: 768px) {
  .attention_section__text {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.75rem;
  }
}

.attention_section__warranty {
  background-color: #FFFFFF;
  border-radius: 0.5rem;
  padding: 27px 19px;
  padding: 1.6875rem 1.1875rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .attention_section__warranty {
    padding: 2.4375rem 1.75rem;
    margin-bottom: 1.75rem;
    font-size: 1rem;
  }
}

.attention_section__warranty-title {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  color: #0e0e0e;
  margin: 0 0 16px;
  margin: 0 0 1rem;
}
@media screen and (min-width: 768px) {
  .attention_section__warranty-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}

.attention_section__warranty-list {
  list-style: disc;
  padding-left: 20px;
  padding-left: 1.25rem;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .attention_section__warranty-list {
    padding-left: 1.5rem;
  }
}
.attention_section__warranty-list li {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.8;
  color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .attention_section__warranty-list li {
    font-size: 1rem;
  }
}
.attention_section__warranty-list li:not(:last-child) {
  margin-bottom: 9px;
  margin-bottom: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .attention_section__warranty-list li:not(:last-child) {
    margin-bottom: 0.5rem;
  }
}

.service-interior {
  position: relative;
  padding: 47px 16px 38px;
  padding: 2.9375rem 1rem 2.375rem;
  overflow: hidden;
  margin-top: 92px;
  margin-top: 5.75rem;
}
@media screen and (min-width: 768px) {
  .service-interior {
    border-radius: 1rem;
    padding: 2rem 4rem 2.8125rem;
    margin-top: 2rem;
  }
}

.service-interior + .service-interior {
  margin-top: 13px;
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .service-interior + .service-interior {
    margin-top: 0.9375rem;
  }
}

.service-interior__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .service-interior__bg {
    border-radius: 1rem;
  }
}

.service-interior__bg-image {
  width: 100%;
  height: 100%;
}
.service-interior__bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*======================================
            とりあえず消さない
=======================================*/
.service-interior__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .7)), to(rgba(0, 0, 0, .2)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .2) 100%);
}

.service-interior__content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .service-interior__content {
    gap: 1.0625rem;
  }
}

.service-interior__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 31px;
  gap: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .service-interior__header {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3.75rem;
  }
}

.service-interior__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .service-interior__title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.5rem;
  }
}

.service-interior__title-main {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .service-interior__title-main {
    font-size: 1.8125rem;
  }
}

.service-interior__title-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
}

.service-interior__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  padding: 6px 15px 6px 22px;
  padding: 0.375rem 0.9375rem 0.375rem 1.375rem;
  border: 1px solid #ffffff;
  border-radius: 0.25rem;
  color: #ffffff;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .service-interior__button {
    padding: 0.4375rem 0.5625rem 0.4375rem 1.9375rem;
    font-size: 1rem;
    -ms-flex-item-align: auto;
        align-self: auto;
  }
  .service-interior__button:hover {
    opacity: 0.8;
    color: #0e0e0e;
    background-color: #FFFFFF;
    border: 1px solid #0e0e0e;
    opacity: 1;
  }
}

.service-interior__button-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-flex;
  width: 20px;
  width: 1.25rem;
}
@media screen and (min-width: 768px) {
  .service-interior__button-icon {
    width: 1.8125rem;
  }
}
.service-interior__button-icon.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .service-interior__button-icon.u-desktop {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.service-interior__button-icon.u-mobile {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media screen and (min-width: 768px) {
  .service-interior__button-icon.u-mobile {
    display: none;
  }
}

.service-interior__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 17px;
  gap: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .service-interior__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
  }
}

.service-interior__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #ffffff;
  border-radius: 0.5rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, .25);
          box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, .25);
  width: 163px;
  width: 10.1875rem;
  gap: 10px;
  gap: 0.625rem;
  min-height: 202px;
  min-height: 12.625rem;
}
@media screen and (min-width: 768px) {
  .service-interior__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.0625rem;
    padding-right: 1rem;
    padding-bottom: 0;
    width: 31.8%;
    min-height: 7.9375rem;
  }
}

.service-interior__item-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: auto;
  border-radius: 0.5rem 0.5rem 0 0;
  overflow: hidden;
}
.service-interior__item-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 163/96;
}
@media screen and (min-width: 768px) {
  .service-interior__item-image {
    width: 40%;
    height: 100%;
    border-radius: 0.5rem 0 0 0.5rem;
  }
  .service-interior__item-image img {
    height: 100%;
    aspect-ratio: 163/120;
  }
}

.service-interior__item-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .service-interior__item-detail {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-block: 1.4375rem;
    min-height: 8rem;
  }
}

.service-interior__item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #0e0e0e;
  padding-inline: 10px;
  padding-inline: 0.625rem;
}
@media screen and (min-width: 768px) {
  .service-interior__item-title {
    font-size: 1rem;
    padding-inline: 0;
  }
}

.service-interior__item-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  padding-inline: 10px;
  padding-inline: 0.625rem;
  margin-top: auto;
}
@media screen and (min-width: 768px) {
  .service-interior__item-price {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
    padding-inline: 0;
    margin-top: auto;
  }
}

.service-interior__item-price-value {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
  color: #c3461f;
}
@media screen and (min-width: 768px) {
  .service-interior__item-price-value {
    font-size: 1.125rem;
    line-height: 1.6;
  }
}

.service-interior__item-price-note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.6;
  color: #0e0e0e;
}

.fv {
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv {
    max-height: 38rem;
  }
}

.fv::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(44%, rgba(242, 240, 235, .45)), to(rgba(242, 240, 235, 0)));
  background: linear-gradient(to right, rgba(242, 240, 235, .45) 44%, rgba(242, 240, 235, 0) 100%);
  height: 100%;
  width: 50%;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .fv,
  .fv__imgs,
  .fv__img,
  .fv__img img {
    max-height: 38rem;
  }
}

.fv__imgs,
.fv__img,
.fv__img img {
  max-height: 265px;
  max-height: 16.5625rem;
}
@media screen and (min-width: 768px) {
  .fv__imgs,
  .fv__img,
  .fv__img img {
    max-height: 38rem;
  }
}

.fv__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  gap: 16px;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .fv__slider {
    gap: 1.5rem;
  }
}

.fv__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 20px;
  gap: 1.25rem;
  height: 265px;
  height: 16.5625rem;
  -webkit-animation: fv-scroll 40s infinite linear both;
          animation: fv-scroll 40s infinite linear both;
}
@media screen and (min-width: 768px) {
  .fv__imgs {
    height: 38rem;
    -webkit-animation: fv-scroll 55s infinite linear both;
            animation: fv-scroll 55s infinite linear both;
    gap: 1.5rem;
  }
}

@-webkit-keyframes fv-scroll {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes fv-scroll {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.fv__img {
  height: 100%;
  width: 49%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .fv__img {
    width: 50vw;
  }
}
.fv__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv__img {
  position: relative;
  border-radius: 0.5rem;
}

.fv__img:nth-child(2) {
  position: relative;
  border-radius: 0.5rem 0 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .fv__img:nth-child(2) {
    border-radius: 0.5rem;
  }
}

@media screen and (min-width: 768px) {
  .fv__img:nth-child(3) {
    border-radius: 0.5rem 0 0 0.5rem;
  }
}

.fv__content {
  margin-top: -49px;
  margin-top: -3.0625rem;
  margin-left: 16px;
  margin-left: 1rem;
  position: relative;
  z-index: 30;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .fv__content {
    position: absolute;
    left: 4.5%;
    top: 26%;
    width: auto;
    width: 32%;
    max-width: 460px;
  }
}

.fv__content-logo {
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 800;
  color: #181818;
  margin-bottom: 1px;
  margin-bottom: 0.0625rem;
  margin-top: 6px;
  margin-top: 0.375rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .fv__content-logo {
    font-size: clamp(2rem, 1.6411483254rem + 1.5311004785vw, 3rem);
    font-weight: 700;
    color: inherit;
    margin-bottom: 0;
  }
}

.fv__content-title {
  background: -webkit-gradient(linear, left top, right top, from(#f56f46), color-stop(73.56%, #a483c8), to(#3d44c6));
  background: linear-gradient(to right, #f56f46 0%, #a483c8 73.56%, #3d44c6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  margin-left: -2px;
  margin-left: -0.125rem;
}
@media screen and (min-width: 768px) {
  .fv__content-title {
    font-size: 1.5rem;
  }
}

.fv__content-text {
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.9;
  margin-top: 33px;
  margin-top: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .fv__content-text {
    font-size: inherit;
    line-height: inherit;
    margin-top: 1.75rem;
  }
}

.fv__content-btn {
  margin-top: 49px;
  margin-top: 3.0625rem;
  max-width: 350px;
}
@media screen and (min-width: 768px) {
  .fv__content-btn {
    margin-top: 3.4375rem;
    max-width: none;
  }
}

.fv__content-btn-link {
  border: 1px solid #0e0e0e;
}

.top-slider {
  margin-top: 93px;
  margin-top: 5.8125rem;
}
@media screen and (min-width: 768px) {
  .top-slider {
    margin-top: 0.5625rem;
  }
}

.journal-pickup {
  display: none;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) {
  .journal-pickup {
    display: block;
    position: absolute;
    right: 2%;
    bottom: 10%;
    width: 36%;
    max-width: 32.1875rem;
  }
}
.journal-pickup:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.journal-pickup__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .25);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .25);
  border-radius: 0.5rem;
  padding: 17px 25px;
  padding: 1.0625rem 1.5625rem;
}

.journal-pickup__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  gap: 0.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.journal-pickup__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 15px;
  padding: 0 0.9375rem;
  background: -webkit-gradient(linear, left top, right top, from(#f56f46), color-stop(73.56%, #a483c8), to(#3d44c6));
  background: linear-gradient(to right, #f56f46 0%, #a483c8 73.56%, #3d44c6 100%);
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.6;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.journal-pickup__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.journal-pickup__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: #0e0e0e;
  margin: 0;
}

.journal-pickup__description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.6;
  color: #696969;
  margin: 0;
}

.journal-pickup__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  gap: 0.125rem;
}

.journal-pickup__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1px 8px;
  padding: 0.0625rem 0.5rem;
  border: 1px solid #222222;
  border-radius: 1.375rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.6;
  color: #222222;
}

.journal-pickup__date {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 7px;
  font-size: 0.4375rem;
  line-height: 1.6;
  color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .journal-pickup__date {
    font-size: 0.6875rem;
  }
}

.journal-pickup__new {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 7px;
  font-size: 0.4375rem;
  line-height: 1.6;
  color: #0e0e0e;
}
@media screen and (min-width: 768px) {
  .journal-pickup__new {
    font-size: 0.6875rem;
  }
}

.journal-pickup__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: auto;
}
@media screen and (min-width: 768px) {
  .journal-pickup__image {
    width: 34%;
  }
}
.journal-pickup__image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 210/144;
}

/*======================================
                   Service
=======================================*/
.service {
  position: relative;
}
@media screen and (min-width: 768px) {
  .service {
    padding-bottom: 7.1875rem;
  }
}

.service__head {
  padding-inline: 16px;
  padding-inline: 1rem;
  row-gap: 26px;
  row-gap: 1.625rem;
}
@media screen and (min-width: 768px) {
  .service__head {
    padding-inline: 0;
    gap: 0;
  }
}

.service__img-text {
  position: absolute;
  width: 169px;
  width: 10.5625rem;
  top: 52px;
  top: 3.25rem;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .service__img-text {
    display: block;
    top: -8.8125rem;
    right: 0;
    width: 27%;
  }
}

.service__inner {
  padding-inline: 0;
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
}
@media screen and (min-width: 768px) {
  .service__inner {
    padding-inline: 25px;
  }
}

.service__sub-titleWrap {
  margin-top: 59px;
  margin-top: 3.6875rem;
  padding-inline: 16px;
  padding-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .service__sub-titleWrap {
    margin-top: 2.25rem;
    padding-inline: 0;
  }
}

.service__sub-title {
  background: -webkit-gradient(linear, left top, right top, from(#f56f46), color-stop(74%, #a483c8), to(#3d44c6));
  background: linear-gradient(to right, #f56f46 0%, #a483c8 74%, #3d44c6 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  padding: 4px 7px 4px 7px;
  padding: 0.25rem 0.4375rem 0.25rem 0.4375rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 768px) {
  .service__sub-title {
    font-size: 1.5rem;
    padding: 0.1875rem 0.625rem;
  }
}

.service__sub-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.9;
  color: #0e0e0e;
  margin-top: 27px;
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .service__sub-text {
    font-size: 1rem;
    margin-top: 0.75rem;
  }
}

/*======================================
            works
=======================================*/
.works {
  background-color: #fff;
  overflow-x: clip;
}
.works__inner {
  padding-top: 62px;
  padding-top: 3.875rem;
  -webkit-clip-path: inset(0% 0% 0% 3%);
          clip-path: inset(0% 0% 0% 3%);
}
@media screen and (min-width: 768px) {
  .works__inner {
    padding-top: 6.25rem;
    -webkit-clip-path: inset(0% -4% 0% 0%);
            clip-path: inset(0% -4% 0% 0%);
  }
}

.works__items {
  margin-top: 64px;
  margin-top: 4rem;
  padding-bottom: 54px;
  padding-bottom: 3.375rem;
}
@media screen and (min-width: 768px) {
  .works__items {
    margin-top: 1.5rem;
    padding-bottom: 3.5rem;
  }
}

@media screen and (min-width: 768px) {
  .works__item {
    width: 31.9%;
  }
}

@media screen and (min-width: 768px) {
  .works__item:nth-child(even) {
    margin-top: 3.8125rem;
  }
}

.works__items .card-item {
  min-height: 293px;
  min-height: 18.3125rem;
}
@media screen and (min-width: 768px) {
  .works__items .card-item {
    min-height: unset;
  }
}

/*======================================
            links
=======================================*/
.links {
  padding: 55px 0;
  padding: 3.4375rem 0;
  background-color: #f7f6f3;
}
@media screen and (min-width: 768px) {
  .links {
    padding: 5.125rem 0;
  }
}

.links__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: 24px;
  gap: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 91%;
  max-width: 350px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .links__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.75rem;
    width: 100%;
    max-width: none;
  }
}

.links__item {
  position: relative;
  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: 100%;
  padding: 18px 16px 16px 23px;
  padding: 1.125rem 1rem 1rem 1.4375rem;
  background: #0e0e0e;
  border-radius: 0.5rem;
  text-decoration: none;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .links__item {
    width: 28.375rem;
    padding: 1.625rem 1rem 1.5625rem 2rem;
  }
}
.links__item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.links__item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.44;
}
.links__item-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.links__item-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(39%, rgba(0, 0, 0, .67)), color-stop(46%, rgba(0, 0, 0, .1)));
  background: linear-gradient(to right, rgba(0, 0, 0, .67) 39%, rgba(0, 0, 0, .1) 46%);
}

.links__item-content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  gap: 16px;
  gap: 1rem;
}

.links__item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.links__item-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1;
  color: #FFFFFF;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .links__item-title {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

.links__item-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.6;
  color: #FFFFFF;
  text-transform: uppercase;
}

.links__item-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
}
.links__item-icon svg {
  width: 100%;
  height: 100%;
}

/*======================================
        journal
=======================================*/
.journal {
  background-color: #fff;
  overflow-x: clip;
}
.journal__inner {
  padding-block: 62px 60px;
  padding-block: 3.875rem 3.75rem;
  -webkit-clip-path: inset(0% 0% 0% 3%);
          clip-path: inset(0% 0% 0% 3%);
}
@media screen and (min-width: 768px) {
  .journal__inner {
    padding-block: 5.25rem 7.6875rem;
    -webkit-clip-path: inset(0% -4% 0% 0%);
            clip-path: inset(0% -4% 0% 0%);
  }
}

.journal__head {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 27px;
  row-gap: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .journal__head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    row-gap: 1.25rem;
  }
}
.journal__head svg {
  width: 32px;
  width: 2rem;
}

.journal__items {
  margin-top: 65px;
  margin-top: 4.0625rem;
}
@media screen and (min-width: 768px) {
  .journal__items {
    margin-top: 2.375rem;
  }
}

@media screen and (min-width: 768px) {
  .journal__item {
    width: 31.9%;
  }
}

@media screen and (min-width: 768px) {
  .journal__item:nth-child(even) {
    margin-top: 3.8125rem;
  }
}

.journal__item .card-item__tags {
  gap: 6px;
  gap: 0.375rem;
}

.journal__item .card-item__tag:first-child {
  padding-left: 0;
}

.journal__item .card-item__tag {
  border: none;
  border-right: 1px solid #afafaf;
  border-radius: 0;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .journal__item .card-item__tag {
    font-size: 0.8125rem;
    padding-inline: 0.6875rem;
  }
}

.journal__item .card-item__tag:last-child {
  border: none;
}

.works-detail__inner {
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .works-detail__inner {
    padding-bottom: 7.5rem;
  }
}

.page-title.page-title--works {
  margin-top: 13px;
  margin-top: 0.8125rem;
}

.works-slider-wrapper {
  margin-top: 80px;
  margin-top: 5rem;
  margin-bottom: 95px;
  margin-bottom: 5.9375rem;
}
@media screen and (min-width: 768px) {
  .works-slider-wrapper {
    margin-top: 3.5rem;
    margin-bottom: 7.625rem;
  }
}
/*# sourceMappingURL=styles.css.map */
