/* **************************************************************
theme全体のwrap
headerを固定にしているので、ヘッダーの高さ分を下げるために必要
************************************************************** */
/* .theme-container {
  margin-top: 125px;
} */

@media (max-width: 768px) {
  .theme-container {
    margin-top: 0;
  }
}
/* 上付き・下付き */
sup.sup {
  font-size: 0.6em;
  vertical-align: inherit;
}

/* **************************************************************
MV
************************************************************** */
.mv__container {
  background-image: url("../../../theme/cmn/img/bg.jpg");
  background-size: cover;
  background-attachment: fixed;
  padding-top: 10rem;
  padding-left: 2%;
  padding-right: 2%;
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .mv__container {
    background-attachment: scroll;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
  .mv__container img.sp_only {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
    height: auto;
  }
}

.mv__container::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.mv__inner {
  background-color: transparent;
}

.mv__contents {
  flex-basis: 50%;
  padding: 7rem 3rem 7rem 11rem;
  /* background-color: var(--bg-color-white);    */
}

.mv__grid {
  position: relative;
  background: var(--bg-color-white);
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 3px 8px 15px rgba(0, 0, 0, 0.4);
}

.mv__img {
  flex-basis: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.mv__headline-sub {
  color: var(--ft-color-main);
  font-weight: var(--weight-b);
  /* font-size: clamp(1.6rem, 1.5625vw, 2rem); */
  font-size: var(--fz-txt-md);
}

.mv__headline-sub::after {
  content: "";
  display: block;
  width: 2.5em;
  height: 4px;
  background-color: var(--color-main1);
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.mv__headlines--text {
  margin-bottom: 3.5rem;
  /* color: var(--color-support1); */
  line-height: var(--lh-sm);
  font-size: var(--fz-headline-sm);
  /* font-weight: var(--weight-b); */
  /* font-size: clamp(1.6rem, 1.5625vw, 2rem); */
  font-size: var(--fz-txt-md);
}

.mv__headlines--title {
  margin-bottom: 5rem;
  line-height: var(--lh-sm);
  /* font-size: clamp(2.4rem, 2.734vw, 3.8rem); */
  /* font-size: clamp(2.4rem, 2vw, 3.8rem); */
  font-size: var(--theme-headline-xxl);
  font-weight: var(--weight-b);
  font-family: var(--font-mincho);
}

:lang(en) .mv__headlines--title .sup {
    font-family: var(--font-mincho);
}

.mv__text--caution {
  font-weight: 700;
  font-size: var(--fz-headline-xs);
  color: var(--ft-color-main);
  /* text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 3px; */
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .mv__headlines .btn {
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.mv__btn {
  max-width: 300px;
  margin: 0;
}

.mv__arrow {
  position: relative !important;
  max-width: fit-content;
  margin-top: 5rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--bg-color-white);
  align-items: center;
  gap: 1rem;
  left: 0;
  bottom: 0;
  z-index: 1;
  font-size: var(--fz-txt-sm);
  writing-mode: horizontal-tb;
  display: grid;
  justify-content: center;
}

.mv__arrow span {
  height: 300px;
  display: block;
}

.mv__arrow span::before {
  content: "";
  display: block;
  width: 1px;
  background-color: var(--bg-color-white);
  margin-left: auto;
  margin-right: auto;
  animation: scrollDown 2s infinite;
  writing-mode: horizontal-tb;
}

@keyframes scrollDown {
  0% {
    height: 0;
  }

  100% {
    height: 100%;
  }
}

@media (max-width: 768px) {
  @keyframes scrollDown {
    0% {
      height: 0;
    }

    100% {
      height: 50px;
    }
  }
}

@media (max-width: 1250px) {
  .mv__contents {
    padding: 5rem 3rem 5rem 6rem;
  }

  .mv__headlines--text {
    margin-bottom: 2.5rem;
  }

  .mv__headlines--title {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768.9px) {
  .mv__container {
    padding-top: 7rem;
  }

  .mv__arrow span {
    height: 100px;
  }
}

@media (max-width: 768.9px) {
  .mv__container {
    padding-top: 3rem;
  }

  .mv__contents {
    padding: 2.4rem 1.8rem;
  }

  .mv__grid {
    display: block;
  }

  .mv__img {
    display: none;
  }

  .mv__headlines--text {
    margin-bottom: 2rem;
  }

  .mv__headlines--title {
    margin-bottom: 1rem;
  }

  .mv__headline-sub::after {
    margin-bottom: 2.5rem;
  }

  .mv__arrow {
    margin-top: 2rem;
  }

  .mv__arrow span {
    height: 50px;
    overflow: hidden;
  }

  .mv__btn {
    margin: 3rem auto 0;
    padding: 14px;
    max-width: 300px;
  }
}

/* **************************************************************
title
************************************************************** */
.test-main-on-white {
  background-color: #cc0000;
  color: var(--bg-color-white);
  content: "Ratio: 5.8865182797";
}

.test-support-on-white {
  background-color: #0055aa;
  color: var(--bg-color-white);
  content: "Ratio: 7.2920318991";
}

.test-white-on-main {
  background-color: var(--bg-color-white);
  color: #cc0000;
  content: "Ratio: 5.8865182797";
}

.test-white-on-support {
  background-color: var(--bg-color-white);
  color: #0055aa;
  content: "Ratio: 7.2920318991";
}

.test-white-on-gray {
  background-color: var(--bg-color-white);
  color: #767676;
  content: "Ratio: 4.5422249596";
}

.test-white-on-dark {
  background-color: var(--bg-color-white);
  color: #333333;
  content: "Ratio: 12.6346543445";
}

.test-gray-on-white {
  background-color: #767676;
  color: var(--bg-color-white);
  content: "Ratio: 4.5422249596";
}

.test-dark-on-white {
  background-color: #333333;
  color: var(--bg-color-white);
  content: "Ratio: 12.6346543445";
}

.title {
  font-size: var(--fz-headline-xl);
  position: relative;
  z-index: 1;
  font-family: var(--font-mincho);
  font-weight: var(--weight-b);
  margin-bottom: 1.4em;
}

.title-bdl {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 32px;
  border-left: 5px solid var(--color-main1);
  padding-left: 15px;
}

.backets {
  display: grid;
  grid-template-columns: 10% 5% 1fr 5% 10%;
  grid-template-rows: 30% 10% 20% 10% 30%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.backets::before,
.backets::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 1em;
}

.backets::before {
  border-top: 2px solid var(--color-support1);
  border-left: 2px solid var(--color-main1);
  grid-column: 1/2;
  grid-row: 1/4;
  margin-right: auto;
  margin-bottom: auto;
}

.backets::after {
  border-bottom: 2px solid var(--color-support1);
  border-right: 2px solid var(--color-main1);
  grid-column: 5/6;
  grid-row: 3/6;
  margin-left: auto;
  margin-top: auto;
}

.backets span {
  grid-column: 1/6;
  grid-row: 1/6;
  display: block;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.upDown {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.upDown span {
  grid-column: 1/3;
  grid-row: 1/3;
}

.upDown::before,
.upDown::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
}

.upDown::before {
  background-color: var(--color-main1);
  grid-column: 1/2;
  grid-row: 1/2;
}

.upDown::after {
  background-color: var(--color-support1);
  grid-column: 2/3;
  grid-row: 2/3;
  margin-left: auto;
  margin-top: auto;
}

.bottomDubble {
  display: grid;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.bottomDubble::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--color-support1)),
    color-stop(50%, var(--color-support1)),
    color-stop(50%, var(--color-main1)),
    to(var(--color-main1))
  );
  background-image: linear-gradient(
    to right,
    var(--color-support1) 0%,
    var(--color-support1) 50%,
    var(--color-main1) 50%,
    var(--color-main1) 100%
  );
}

.leftRight {
  display: grid;
  grid-template-columns: auto 1fr auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  gap: 1rem;
}

.leftRight::before,
.leftRight::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
}

.leftRight::before {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--color-support1)),
    color-stop(50%, var(--color-support1)),
    color-stop(50%, var(--color-main1)),
    to(var(--color-main1))
  );
  background-image: linear-gradient(
    to right,
    var(--color-support1) 0%,
    var(--color-support1) 50%,
    var(--color-main1) 50%,
    var(--color-main1) 100%
  );
}

.leftRight::after {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--color-main1)),
    color-stop(50%, var(--color-main1)),
    color-stop(50%, var(--color-support1)),
    to(var(--color-support1))
  );
  background-image: linear-gradient(
    to right,
    var(--color-main1) 0%,
    var(--color-main1) 50%,
    var(--color-support1) 50%,
    var(--color-support1) 100%
  );
}

.leftRight.left::before {
  width: 20px;
}

.leftRight.left::after {
  display: none;
}

.leftRight.right::after {
  width: 20px;
}

.leftRight.right::before {
  display: none;
}

.theme-title {
  font-size: var(--theme-headline-xl);
  font-weight: var(--weight-b);
  letter-spacing: 0.01em;
  line-height: var(--lh-sm);
  font-family: var(--font-mincho);
  margin-bottom: 1.5em;
}

.theme-title .sup,
.theme-title .sub {
  font-family: var(--font-mincho);
}

.theme-title::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 0.5em;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--color-main1)),
    color-stop(1.8em, var(--color-main1)),
    color-stop(1.8em, var(--color-support5)),
    to(var(--color-support5))
  );
  background-image: linear-gradient(
    to right,
    var(--color-main1) 0%,
    var(--color-main1) 1.8em,
    var(--color-support5) 1.8em,
    var(--color-support5) 100%
  );
}

/* **************************************************************
CONTENTS
************************************************************** */
.recom {
  background-color: var(--color-support7);
  padding: 2rem;
}

.recom__title {
  color: var(--ft-color-main);
  font-weight: var(--weight-b);
  font-size: var(--fz-headline-sm);
  margin-bottom: 1rem;
}

.recom__listitem {
  list-style-type: disc;
  /* translate: 2.5rem 0; */
  margin-left: 2.5rem;
}

.tech + .tech {
  margin-top: 4rem;
}

.tech-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tech-info figure {
  flex-shrink: 0;
  /* flex-basis: 400px; */
  /* max-width: 400px; */
  max-width: 42.37%;
  /* max-width: calc((400px / (1024px - 5rem)) * 100%); */
}

@media (max-width: 768px) {
  .tech-info figure {
    /* flex-basis: fit-content; */
    max-width: 400px;
  }
  .recom__listitem + .recom__listitem {
    margin-top: var(--space-8);
  }

}

.theme-contents {
  display: grid;
  gap: 15rem;
}

.sectionList dd + dd {
  margin-top: 5rem;
}

.sectionList-wrap {
  display: grid;
  gap: 6rem;
}

.sectionList__movie {
  max-width: 700px;
  margin: auto;
}

.sectionList__img {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4rem;
  box-sizing: border-box;
}

.sectionList__img img {
  object-fit: cover;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.sectionList__img--figure {
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.sectionList__headline {
  font-size: var(--theme-headline-md);
  font-weight: var(--weight-b);
  margin-bottom: 20px;
}

.sectionList__img--caption {
  font-weight: var(--weight-b);
  margin: 1rem auto 0.5rem;
  text-align: center;
}

.article-item__imgs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 4rem;
  row-gap: 1rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.article-item__caption {
  grid-column: 1 / 3;
  text-align: center;
  font-weight: var(--weight-b);
}

.devlop-img {
    margin-bottom: 2rem;
}
.devlop-img img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}
@media (max-width: 768px) {
    .devlop-img img {
        aspect-ratio: 4 / 3;
        object-fit: cover;
        object-position: center top; 
    }
}

.devlop-heding + .devlop-heding {
  margin-top: 5rem;
}
.devlop-txt,
.devlop-heding__headline {
  font-weight: var(--weight-b);
  font-size: var(--fz-txt-lg);
}

.devlop-heding__desc {
  margin-top: 2rem;
}

/* =========================================
   l-cv-block
========================================= */

.l-cv-block {
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.l-cv-block::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}
.cv__inner {
  margin-left: auto;
  margin-right: auto;
  background-color: var(--bg-color-white);
  padding: 3rem 2rem;
  position: relative;
  z-index: 1;
}

.cv__title {
  color: var(--ft-color-main);
  font-size: var(--theme-headline-xl);
  font-family: var(--font-mincho);
  text-align: center;
  font-weight: var(--weight-b);
}
.cv__text {
  text-align: center;
  margin: 1.5rem auto 3rem;
}
.cv__text p + p{
  margin-top: 0;
}
.l-cv-block.closed-theme .cv__inner {
  background-color: var(--color-main7);
}
.l-cv-block.closed-theme .cv__title {
  font-size: var(--fz-headline-sm);
  font-family: initial;
}
.l-cv-block.closed-theme .linkBtn-circle {
  max-width: fit-content;
}
@media (max-width: 768px) {
  .l-cv-block {
    background-attachment: scroll;
  }
  .sectionList-wrap {
    gap: 4rem;
  }
  .cv__title {
    font-size: var(--theme-headline-md);
  }
  .cv__text br {
    display: none;
  }
  .cv__text {
    text-align: left;
  }
  .cv__text p + p{
    margin-top: var(--space-8);
  }
  .devlop-heding + .devlop-heding {
    margin-top: 3rem;
  }
}
/* ----------------- アコーディオン（よくある質問） ----------------- */
details[open] summary::after {
  rotate: -135deg;
}

.accordion.is-open .accordion__head::after {
  rotate: -135deg;
}

.accordion summary {
  transition: all 0.8s;
}

.accordion button {
  appearance: none;
  text-align: left;
  background-color: transparent;
  color: var(--color-sub-black);
  border: none;
  outline: none;
}

.accordion summary:hover {
  cursor: pointer;
}

.accordion summary,
.accordion button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  /* color: var(--bg-color-white); */
}

/* .accordion button{} */

.accordion summary::after {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 0.5em;
  border-bottom: 2px solid var(--color-main1);
  border-right: 2px solid var(--color-main1);
  rotate: 45deg;
  transition: all 0.6s;
}

.accordion[open] .accordion-content {
  display: block;
}

.accordion__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  gap: 2rem;
}
.accordion__head:hover {
  background-color: var(--color-support7);
}
.accordion__head::after {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 0.5em;
  border-bottom: 2px solid var(--color-main1);
  border-right: 2px solid var(--color-main1);
  rotate: 45deg;
  transition: all 0.6s;
  flex-shrink: 0;
}

.accordion__head:hover {
  cursor: pointer;
}
.accordion__head:focus,
.accordion__head:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}

.accordion__title {
  font-size: var(--fz-txt-md);
  margin: 0;
}

.accordion-content {
  display: none;
  padding: 1rem;
  overflow: hidden;
  /* transition: all .3s; */
}

.accordion-content__inner p {
  margin: 0;
}

.accordion-content__inner p + p {
  margin-top: 1.4em;
}

.faq__item.is-open .accordion__head {
  border-bottom: 1px solid var(--color-support5);
}

.faq__btn {
  margin-left: auto;
  display: block;
  max-width: fit-content;
  margin-bottom: 2rem;
  appearance: none;
  border: 1px solid var(--color-support5);
  color: var(--color-sub-black);
  background-color: transparent;
  padding: 0.5rem 1rem;
}

.faq__item {
  border: 1px solid var(--color-support5);
  padding: 0;
}

.faq__item + .faq__item {
  margin-top: 2rem;
}

.faq_q {
  padding: 1.5rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--color-sub-black);
  /* gap: 2rem; */
}

.faq_q::before {
  content: "Q.";
  display: inline-block;
  margin-right: 1rem;
  color: var(--color-main1);
  font-weight: var(--weight-b);
  font-size: 2.2rem;
  line-height: 1;
}

.faq_a {
  padding: 1.5rem;
  background-color: var(--color-support7);
}

.faq__item .accordion-content__inner::before {
  content: "A.";
  display: inline-block;
  margin-right: 1rem;
  color: var(--color-main1);
  font-weight: var(--weight-b);
  font-size: 2.2rem;
  line-height: 1;
}

.accordion .accordion-content__inner {
  display: flex;
  /* padding: 1rem; */
}

.faq__item[open] {
  padding: 0;
}

.faq__item[open] .faq_q {
  border-bottom: 1px solid var(--color-support5);
  padding: 1rem;
}

.faq__item[open] .accordion-content__inner {
  padding: 1rem;
}

/* =========================================
   お知らせ
========================================= */

.postswrap {
  height: 300px;
  overflow-y: auto;
  border: 1px solid var(--color-support5);
  padding: 2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #b3b3b3 #f5f5f5;
}
.postswrap::-webkit-scrollbar {
  width: 6px;
}
.postswrap::-webkit-scrollbar-track {
  background-color: #f5f5f5;
  border-radius: 4px;
}
.postswrap::-webkit-scrollbar-thumb {
  background-color: #b3b3b3;
  border-radius: 4px;
}
.postswrap::-webkit-scrollbar-thumb:hover,
.postswrap::-webkit-scrollbar-thumb:active {
  background-color: rgba(179, 179, 179, 1) !important;
}
.postswrap.scroll-none {
  height: auto;
  overflow-y: inherit;
}
.postswrap .post-single {
  border-bottom: none;
  padding-bottom: 0;
}
.postswrap .post:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.posts {
  display: grid;
  gap: 2rem;
}
.post {
  display: grid;
  gap: 1rem;
  border-bottom: 1px solid var(--color-support5);
  padding-bottom: 2rem;
}

.post .post__text a {
  text-decoration: underline;
}

.post .post__text a:hover {
  text-decoration: none;
}

.post__head {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 2rem;
}

.post__date {
  font-size: var(--fz-txt-sm);
  line-height: 1;
}

.post__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.post__category {
  font-size: var(--fz-txt-xs);
  border: 1px solid var(--color-main1);
  color: var(--ft-color-main);
  padding: 0.6rem;
  line-height: 1;
}

.fixed-contact {
  background-color: rgba(255, 255, 255, 0.7);
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-support2);
  transition: all 0.7s;
}

.fixed-contact.hide {
  opacity: 0;
  pointer-events: none;
}

.fixed-contact__btn--close {
  position: absolute;
  right: 2rem;
  top: 2rem;
}
@media (max-width: 786px) {
  .postswrap {
    height: 350px;
    padding: 1.5rem;
  }
  .posts {
    gap: 1.5rem;
  }
}
@media (min-width: 768.9px) {
  .theme-inner {
    padding-left: 60px;
    padding-right: 60px;
  }

  .recom {
    padding: 5rem;
  }

  .tech-row {
    flex-direction: row;
    gap: 5rem;
  }

  .tech-img {
    max-width: 400px;
    flex-basis: 1;
  }

  .toc__lists {
    grid-auto-flow: column;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
  }

  .cv__inner {
    background-color: var(--bg-color-white);
    padding: 6rem;
  }

}

.item-column {
  display: flex;
  /* justify-content: space-between; */
  margin-bottom: 64px;
}

.item-column > li {
  width: calc(100% / 3 - 30px);
  border: 1px solid var(--color-support6);
}

/* .item-column > li * {
  color: var(--ft-color-support);
} */

.item-column > li a {
  display: block;
  height: 100%;
  background-color: var(--bg-color-white);
  padding-bottom: 15px;
  transition: 0.3s ease-in-out;
}

.item-column > li a:hover {
  text-decoration: none;
  background-color: var(--color-main1);
}

.item-column > li a:hover * {
  color: var(--bg-color-white);
}

.item-column > li .item-thumb {
  width: 100%;
}

.item-column > li .item-txt-box {
  padding: 20px 25px 0 25px;
}
.item-column > li .item-txt-box .item-date .txt {
  font-weight: bold;
  /* color: #9f9f9f; */
  color: var(--color-support3);
  font-size: var(--fz-txt-sm);
}
.item-column > li a:hover .item-txt-box .item-date .txt {
  color: var(--bg-color-white);
}
.item-column > li .item-txt-box .item-ttl {
  font-weight: bold;
  font-size: var(--fz-headline-xs);
  margin-top: 5px;
  margin-bottom: 16px;
}
.item-column > li .item-txt-box .txt-box {
  margin-bottom: 0;
}

.item-column > li .item-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 24px auto;
}

.item-column > li .item-tag .tag {
  font-size: var(--fz-txt-xs);
  padding: 5px 10px;
  color: var(--color-main1);
  border: 1px solid var(--color-main1);
  white-space: nowrap;
}

.item-column > li a:hover .item-tag .tag {
  color: var(--bg-color-white);
  border: 1px solid var(--bg-color-white);
}

.item-column > li .item-more {
  text-align: right;
  padding: 0px 45px 0 15px;
  font-size: var(--fz-txt-sm);
  position: relative;
}

.item-column > li .item-more::before,
.item-column > li .item-more::after {
  display: block;
  content: "";
  position: absolute;
}

.item-column > li .item-more::before {
  width: 15px;
  height: 2px;
  background-color: var(--color-main1);
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.item-column > li .item-more::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-main1);
  border-right: 2px solid var(--color-main1);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 20px;
}

.item-column > li a:hover .item-more::before {
  background-color: var(--bg-color-white);
}

.item-column > li a:hover .item-more::after {
  border-top: 2px solid var(--bg-color-white);
  border-right: 2px solid var(--bg-color-white);
}
@media screen and (max-width: 768px) {
  .item-column {
    margin-bottom: 32px;
  }
  .item-column > li {
    width: 100%;
  }
}

.fixed-contact-box {
  position: fixed;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 0;
  background: rgba(255, 255, 255, 0.7);
  border-top: 1px solid var(--color-support2);
  transition: all 0.3s;
  /* display: none; */
}

.fixed-contact-box.hide {
  opacity: 0;
  pointer-events: none;
}

.fixed-contact-box .close {
  position: absolute;
  z-index: 1;
  right: 5.5rem;
  top: 3rem;
  background-color: #fff;
  border-radius: 50px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s all;
}
.fixed-contact-box .close img {
  display: block;
  width: 20px;
  height: 20px;
}

.fixed-contact-box .close:hover {
  cursor: pointer;
  background-color: #efefef;
}

@media screen and (max-width: 768px) {
  .fixed-contact-box .close {
    right: 2rem;
    top: 2.75rem;
    background-color: #fff;
    border-radius: 50px;
    width: 25px;
    height: 25px;
  }
  .fixed-contact-box .close img {
    width: 16px;
    height: 16px;
  }
}


@media screen and (max-width: 767.9px) {
  .fixed-contact-box .btn {
    max-width: 260px;
  }
}


/* スマホ時はみ出しコンテンツ用スクロール */
.swipe_annotation {
  display: none;
}

.swipe_annotation::before,
.swipe_annotation::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  top: -4px;
  z-index: 10;
}

.swipe_annotation::before {
  border-width: 10px 12px 10px 0;
  border-color: #fff #ccc #fff #fff;
  left: 0;
  z-index: 1;
}

.swipe_annotation::after {
  border-width: 10px 0 10px 12px;
  border-color: #fff #fff #fff #ccc;
  right: 0;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .other-contents {
    gap: 5rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .swipe {
    overflow-y: hidden;
    overflow-x: auto;
    position: relative;
    margin-left: -10px;
    margin-bottom: 8px;
    padding-left: 10px;
    padding-bottom: 16px;
  }
  .swipe_annotation {
    display: block;
    font-size: var(--fz-txt-xs);
    text-align: center;
    margin: 4px 0 14px;
    line-height: 1;
    position: relative;
    top: 0;
    left: 0;
    background: #ccc;
  }
}

/* 特長コンテンツ */
.fortes {
  display: grid;
  gap: 7rem;
}

.forte {
  counter-increment: num;
}
.forte__head {
  display: flex;
  gap: 1rem;
  align-items: center;
  min-width: 0;
  margin-bottom: 3rem;
}
.forte__head span {
  background-color: var(--color-main1);
  color: var(--bg-color-white);
  display: flex;
  flex-direction: column;
  line-height: 1;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  padding: 1.164rem;
  font-size: 0.85em;
  font-family: var(--font-en-R);
  flex-shrink: 0;
  height: 100%;
}
.forte__head span::after {
  content: counter(num, decimal-leading-zero);
  font-size: 1.6em;
  font-weight: var(--weight-b);
}
.forte__headline {
  font-size: var(--fz-headline-md);
  font-weight: var(--weight-b);
}
.forte__imgs {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .fortes {
    gap: 4rem;
  }
  .forte__head span {
    padding: 1rem;
  }
}

.modal-overlay {
  display: none;
}
