@charset "utf-8";
/* CSS Document */

/* ―――――――――――トップページ共通部分――――――――――――― */
html {
  scroll-behavior: smooth; /* スムーズスクロールを有効化 */
}

[id] {
  scroll-margin-top: 100px; /* 必要な余白を設定 */
}

body {
  margin: 0px !important;
  font-family: "Inter", sans-serif;
}
.t-h2-title {
  font-weight: bold;
  font-size: 20px;
  color: #1e73be;
  display: block;
  text-align: center;
  font-family: "Geologica", sans-serif;
}

.t-h2 {
  text-align: center;
  color: #3e3e3e;
  font-family: "Inter", sans-serif;
  letter-spacing: 1px;
  font-size: 24px;
}
.h-white {
  color: white;
}

.h2-line {
  display: block;
  margin-inline: auto;
  width: clamp(130px, 30%, 320px);
  margin-bottom: 32px;
}
a:visited {
  color: unset !important;
}
@media screen and (min-width: 1024px) {
  .t-h2 {
    font-size: 32px;
  }
}
/* ボタン */
.t-content-button {
  background: #007bff;
  color: white;
  text-align: center;
  display: block;
  margin-inline: auto;
  width: clamp(280px, 60%, 300px);
  padding: 16px 0;
  border-radius: 32px;
  margin-top: 56px;
  text-decoration: none;
  background: linear-gradient(50deg, #1e73be 50%, #309cd7);
  position: relative;
  font-weight: 800;
  letter-spacing: 1px;
  &::after {
    content: "▶";
    position: absolute;
    right: 20px;
  }
}
/* アコーディオン */
.accordion {
  background: #fff;
  border-radius: 5px;
  margin-bottom: 24px;
}
.accordion-header {
  padding: 15px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.accordion-content {
  padding: 15px;
  display: none;
  font-size: 14px;
  line-height: 1.5;
  background: #ffffff !important;
}
.accordion-header:hover {
  background-color: #ffffff;
}
.accordion.open .accordion-content {
  display: block;
}
.accordion.open .accordion-header {
  background-color: #e8e8e8;
  flex-direction: column;
}
.arrow {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.accordion.open .arrow {
  transform: rotate(180deg);
}
/* リンク色消し */
a:visited {
  color: transparent;
}
/* ―――――――――――ヘッダー――――――――――――― */
.header-new {
  position: fixed;
  width: 100%;
  background-color: white;
  top: 0px;
  z-index: 9999;
  color: #1e73be;
  .header-headline {
    background-color: #1e73be;
    color: white;

    p {
      font-size: 14px;
      margin: 0px;
      padding-left: 5%;
    }
  }
  .head-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    > img {
      width: 24px;
    }
    span {
      display: inline-block !important;
    }
  }
  .title-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    a {
      text-decoration: none;
      color: unset;
    }
  }

  .new-sp-menu {
    z-index: 999;
    display: none;
    @media screen and (max-width: 1000px) {
      display: inline;
    }
  }

  .new-sp-menu img {
    width: 24px;
    height: 24px;
    cursor: pointer;
  }

  .burger-close {
    display: none; /* 初期状態で非表示 */
  }
  .head-menu-wrap {
    position: relative;
  }
  .sp-menu-child {
    display: none; /* 初期状態で非表示 */
    position: absolute;
    top: 50px;
    left: 10vw;
    width: 90vw;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 998;
    height: 200vh;
    padding-top: 30px;
    opacity: 0.9;
  }

  .sp-menu-child ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .sp-menu-child ul a {
    text-decoration: none;
  }

  .sp-menu-child ul li {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    text-align: center;
    font-size: 16px;
    color: #1e73be;
  }

  .sp-menu-child ul li:hover {
    background-color: #f4f4f4;
  }

  .new-sp-menu.active .burger-open {
    display: none; /* メニューオープンアイコン非表示 */
  }

  .new-sp-menu.active .burger-close {
    display: block; /* メニュークローズアイコン表示 */
  }

  .new-sp-menu.active .sp-menu-child {
    display: block; /* メニューを表示 */
  }
}
.t-scrolled {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 800px) {
  .header-new {
    .title-info {
      padding: 12px 24px 0px 24px;
      justify-content: space-between;
      gap: 20px;
    }
    .header-headline {
      text-align: center;
      p {
        padding-left: 0px;
      }
    }
    .head-title {
      > div {
        display: flex;
        flex-direction: column;
        p {
          margin-top: 0px;
          margin-bottom: 0px;
        }
        span {
          font-size: 24px;
        }
      }
      > img {
        width: 48px;
      }
    }
    .pc-menu-link {
      ul {
        display: flex;
        justify-content: flex-end;
        list-style: none;
        gap: 2.2%;
        margin-bottom: 0px;
        padding-left: 0px;
        margin-right: 32px;
      }
      a {
        color: #1e73be !important;
        text-decoration: none;
        font-weight: 700;
        border-bottom: solid 2px transparent;
        transition: border-color 0.3s ease;
        &:hover {
          border-bottom: solid 2px #1e73be;
        }
      }
    }
    .new-pc-menu {
      flex: 1;
    }
    .pc-menu-button {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 20px;
      a {
        text-decoration: none;
        color: white;
        padding: 12px;
        width: 270px;
        text-align: center;
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0.2, 0.2);
        gap: 20px;
        &:nth-of-type(1) {
          background-color: #f29702;
          span {
            font-family: Noto Sans JP;
            font-weight: bold;
            letter-spacing: 1.2px;
          }
        }
        &:nth-of-type(2) {
          background-color: #30bddb;
          line-height: 20px;
        }
        &:hover {
          opacity: 0.8;
        }
      }
      img {
        width: 30px;
      }
    }
  }
}
@media screen and (max-width: 1000px) {
  .new-pc-menu,
  .pc-menu-link {
    display: none;
  }
}
/* ―――――――――――アイキャッチ――――――――――――― */
.bread-navi {
  margin-top: 76px;
  font-size: 12px;
  text-decoration: none;
  span,
  a {
    color: #1e73be !important;
    text-decoration: none;
  }
}
.t-eyecatch {
  padding: 32px 5.5%;
  aspect-ratio: 1609/1525;
  background-color: #ccc;
  color: white;
  margin-top: 0px;
  background-image: url(/common/t-img/eye-sp.webp);
  background-size: cover;
  background-repeat: no-repeat;
  .t-eyacatch-wrap {
    max-width: 1600px;
    margin-inline: auto;
    height: 95%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    > p {
      text-align: center;
    }
  }
  .t-eyecatch-heading {
    display: flex;
  }
  h2 {
    font-size: 16px;
    padding-left: 8px;
  }
  .t-eyecatch-content {
    h3 {
      font-size: clamp(32px, 7vw, 68px);
      margin: 0px;
      margin-bottom: 24px;
      &:nth-of-type(3) {
        background: linear-gradient(to right, #66b2ff, #88caff);
        background-size: 100% 10px !important;
        width: fit-content;
        background-position: 0 85%;
        background-repeat: no-repeat;
      }
      .t-pc-exept1 {
        /* background: linear-gradient(90deg, #66b2ff, #88caff); 
		   -webkit-background-clip: text; 
		   -webkit-text-fill-color: transparent;  */
        color: #1e73be;
        text-align: center;
        position: relative;
        z-index: 0;
        font-size: clamp(20px, 8vw, 76px);
        &::after {
          content: "";
          background-color: white;
          position: absolute;
          width: 100%;
          height: 100%;
          left: 0px;
          top: 0px;
          z-index: -1;
          margin-right: 8px;
        }
      }
    }
  }
  .eyecatch-price-wrap {
    text-decoration: none;
    background: linear-gradient(50deg, #e6652d 50%, #ffa400);
    box-shadow: 0px 5px 0px #6f4003;
    transition: background 0.3s ease;
    border-radius: 80px;
    display: block;
    &:hover {
      transform: translateY(6px);
      transition: transform 0.3s ease;
      box-shadow: none;
    }
  }
  .t-eyecatch-price {
    border-radius: 8px;
    padding: 8px;
    margin-top: 16px;
    border-radius: 80px;
    div > span {
      font-size: clamp(24px, 4.5vw, 68px);
      color: white;
      display: block;
      margin-inline: auto;
      text-align: center;
      font-weight: 700;
    }
    p {
      margin-bottom: 4px;
      margin-top: 4px;
      padding-left: 6%;
      font-weight: 600;
      span {
        font-size: 14px;
        &:nth-of-type(1) {
          background: linear-gradient(180deg, #ffa400, #e6652d);
          background: white;
          color: #e6652d;
          padding: 2px 8px;
          border-radius: 32px;
        }
        &:nth-of-type(2) {
          color: #ffffff;
          padding-left: 4px;
        }
      }
    }
    .m-br {
      display: none;
    }
  }
  .t-eyecatch-price:not(.eyecatch-pc-content) {
    border-radius: 80px;
  }
  .top-eye-mark {
    display: flex;
    img {
      width: clamp(60px, 30%, 240px);
    }
  }
}
@media screen and (min-width: 1024px) {
  .bread-navi {
    margin-top: 143px;
    font-size: 16px;
  }
  .t-eyecatch {
    background-image: url(/common/t-img/eyecatch-pc-back.webp);
    background-size: cover;
    aspect-ratio: 1600/620;
    box-sizing: border-box;
    margin-top: 0px;
    padding: 80px 20px 40px 20px;
    .pc-eye-wrap {
      display: flex;
      justify-content: space-around;
      height: 100%;
    }
    .t-eyecatch-heading {
      display: none;
    }
    .eyecatch-pc-right {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 50%;
    }
    .t-eyecatch-content {
      max-width: 50%;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      gap: 3%;
      h3 {
        font-size: clamp(18px, 4vw, 68px);
        .t-pc-exept1 {
          font-size: clamp(20px, 4.8vw, 76px);
        }
      }
    }
    .t-eyecatch-price {
      p {
        span {
          font-size: 18px;
          font-weight: 600;
        }
      }
    }
    .eyecatch-pc-content {
      text-align: center;
      font-size: 32px;
      img {
        width: clamp(50px, 38%, 256px);
      }
      > div {
        position: relative;
        &::after {
          content: "手動・自動\00000aどちらも\00000a対応可能";
          white-space: pre-wrap;
          position: absolute;
          font-size: clamp(16px, 7%, 20px);
          top: 0px;
          background-color: red;
          border-radius: 100%;
          padding: 22px;
        }
      }

      span {
        font-size: 40px;
      }
      > p {
        margin-top: 0px;
        margin-bottom: 8px;
        position: relative;
        font-size: 30px;
        width: fit-content;
        margin-inline: auto;
      }
    }
    .t-pc-exept2 {
      font-size: clamp(18px, 8vw, 90px);
    }
    .top-last-headline {
      font-size: 32px;
    }
    .t-eyecatch-price {
      color: white;
      /* &:before{
		content: "";
		position: absolute;
		background-image: url(/common/t-img/slash-left.webp);
		background-size: cover;
		width: 70px;
        height: 70px;
        display: inline-block;
		left: 0px;
        top: -80px;
	  } */
      /* &:after{
		content: "";
		position: absolute;
		background-image: url(/common/t-img/slash-right.webp);
		background-size: cover;
		width: 70px;
        height: 70px;
        display: inline-block;
        top: -80px;
        right: 0px;
	  } */
      div > p {
        margin-top: 0px;
        text-align: center;
        padding-left: 0%;
        span:nth-child(1) {
          -webkit-background-clip: text;
          background-clip: text;
          color: transparent;
          background: white;
          color: #e6652d;
        }
        span:nth-child(2) {
          color: white !important;
        }
      }
      div > span {
        font-size: clamp(16px, 2.8vw, 60px);
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;
        color: white;
        font-weight: 900;
        background: unset;
      }
    }
    .eye-area-name {
      text-shadow:
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.4);
    }
  }
}
@media (min-width: 600px) and (max-width: 1023px) {
  .t-eyecatch {
    aspect-ratio: 1591 / 1313;
    .t-eyecatch-price {
      p {
        margin-bottom: 4px;
        text-align: center;
      }
    }
  }
}
@media screen and (max-width: 600px) {
  .t-eyecatch {
    aspect-ratio: 1541 / 1525 !important;
  }
  .t-eyecatch-price p {
    text-align: center;
    > span {
      font-size: 12px !important;
    }
  }
}
/* ―――――――――――お見積り――――――――――――― */
.t-visit {
  background-color: #1e73be;
  text-align: center;
  padding: 36px 0 36px 0;
  h2 {
    color: white;
    font-size: 16px;
  }
  .visit-button {
    position: relative;
    margin-inline: auto;
    &:has(.line) {
      > span {
        color: #08c656;
      }
    }
    &:has(.tel) {
      > span {
        color: #e6652d;
      }
    }
    &:has(.web) {
      > span {
        color: #309cd7;
      }
    }
    button {
      width: clamp(300px, 90%, 560px);
      padding: 22px 40px;
      text-align: center;
      color: white;
      margin-top: 32px;
      border-radius: 32px;
      border: none;
      position: relative;
      font-weight: 700;
      letter-spacing: 0.5px;
      font-size: 16px;
      border-radius: 40px;
      &:hover {
        cursor: pointer;
        transform: translateY(6px);
        transition: transform 0.3s ease;
        box-shadow: none;
      }
      &::after {
        position: absolute;
        content: "";
        background-image: url("/wp-content/webp-express/webp-images/uploads/2024/11/right-ungle.png.webp");
        width: 20px;
        height: 20px;
        background-size: contain;
        background-repeat: no-repeat;
        right: 10px;
      }
      &::before {
        position: absolute;
        content: "";
        width: 36px;
        height: 36px;
        background-size: contain;
        background-repeat: no-repeat;
        left: 20px;
        bottom: 16px;
      }
    }
    .line {
      background-color: #08c656;
      box-shadow: 0px 5px 0px #30693f;
      &::before {
        background-image: url("/common/t-img/line-icon.webp");
      }
    }
    .tel {
      background: linear-gradient(50deg, #e6652d 50%, #ffa400);
      box-shadow: 0px 5px 0px #6f4003;
      &::before {
        background-image: url("/common/t-img/tel.webp");
      }
    }
    .web {
      background: linear-gradient(50deg, #309cd7 50%, #30b9d7);
      box-shadow: 0px 5px 0px #024059;
      &::before {
        background-image: url("/common/t-img/web.webp");
      }
    }
    span {
      position: absolute;
      width: 200px;
      left: calc(50% - 100px);
      background-color: white;
      top: 20px;
      border-radius: 6px;
      z-index: 1;
    }
    hr {
      position: absolute;
      width: 20px;
      height: 18px;
      clip-path: polygon(50% 55%, 0 0, 100% 0);
      background-color: white;
      bottom: 35px;
      left: calc(50% - 10px);
      z-index: 1;
      border: none;
      color: white;
    }
  }
}
@media screen and (min-width: 1024px) {
  .t-visit {
    .visit-button-wrap {
      display: flex;
    }
    .visit-button {
      width: 100%;
    }
  }
}
/* ―――――――――――目次――――――――――――― */

.t-toc {
  background-color: #edf4fa;
  padding: 36px 0 36px 0;
  .toc-wrap {
    width: 88%;
    margin-inline: auto;
  }
  .toc-pc-line1,
  .toc-pc-line2 {
    display: contents;
  }
  .t-toc-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    &:nth-of-type(5) {
      > div:last-child {
        &::after {
          content: "";
        }
      }
    }
    .toc-inwrap {
      position: relative;
      width: clamp(150px, 45%, 300px);
      &:hover {
        a {
          background-color: white;
          color: #1e73be;
          border: solid 2px #1e73be;
        }
        &::after {
          color: #1e73be;
        }
      }
      &::after {
        position: absolute;
        content: "▼";
        right: 10px;
        top: 12px;
        color: white;
      }
    }
    .toc-null {
      &::after {
        position: absolute;
        content: "";
      }
    }
    a {
      background-color: #1e73be;
      padding: 12px 24px;
      color: white;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0.2, 0.2);
      padding: 12px 40px 12px 10px;
      display: block;
      text-decoration: none;
      border-radius: 4px;
      border: 2px solid transparent;
      transition: border-color 0.3s ease;
      @media (max-width: 360px) {
        a {
          font-size: 14px;
          padding: 12px 20px 12px 10px;
        }
      }
    }
  }
}

@media screen and (min-width: 1024px) {
  .t-toc {
    .toc-wrap {
      display: flex;
    }
    .t-toc-inner {
      display: contents;
    }
    .toc-pc-line1,
    .toc-pc-line2 {
      display: flex;
      justify-content: center;
      width: 100%;
      gap: 20px;
    }
    .t-toc-inner {
      display: flex;
      justify-content: center;
      gap: 16px 16px;
      flex-wrap: wrap;
      margin-bottom: 0px !important;
      .toc-inwrap {
        position: relative;
        width: clamp(150px, 14vw, 300px);
      }
      .toc-null {
        display: none;
      }
    }
  }
}
@media screen and (max-width: 380px) {
  .t-toc {
    .t-toc-inner {
      .toc-inwrap {
        width: clamp(130px, 43%, 300px);
      }
      a {
        font-size: 14px;
        padding: 12px 8px;
      }
    }
  }
}
/* ―――――――――――特色――――――――――――― */
.t-feature {
  padding: 32px 0;
  h3 {
    text-align: center;
  }
  .features-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    font-weight: bold;
    gap: 1%;
  }
  .feature-headline {
    background-color: #1e73be;
    width: fit-content;
    margin-inline: auto;
    padding: 6px;
    font-size: 24px;
    color: white;
  }
  .f-tab-wrap {
    display: contents;
  }
  .feature-item {
    text-align: center;
    padding: 10px;
    background-image: url(/common/t-img/crown.webp);
    background-size: contain;
    background-repeat: no-repeat;
    aspect-ratio: 43 / 30;
    width: 16.5%;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    padding-top: 16px;
  }

  .feature-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
  }

  .feature-text {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .feature-subtitle {
    font-size: 14px;
    color: #333;
  }

  .highlight {
    color: #0066cc;
    font-weight: bold;
  }
}

@media screen and (max-width: 768px) {
  .t-feature {
    .feature-headline {
      line-height: 50px;
      font-size: 5.6vw;
    }
    .pc-only {
      display: none !important;
    }
    .feature-item {
      width: 30%;
      line-height: 15px;
    }
    .feature-text {
      font-size: 15px;
    }
    .feature-subtitle,
    .feature-title {
      font-size: 14px;
    }
  }
}
@media (min-width: 600px) and (max-width: 1023px) {
  .t-feature {
    .f-tab-wrap {
      display: flex;
      display: flex !important;
      width: 100%;
      justify-content: space-evenly;
    }
    .features-container {
      flex-direction: column;
    }
    .feature-item {
      min-width: 168px;
    }
  }
}
/* ―――――――――――お困りではありませんか――――――――――――― */
.t-problem {
  text-align: center;
  h2 {
    font-size: 16px;
    margin-bottom: 0px;
  }
  .heading-content {
    font-weight: bold;
    font-size: 18px;
    margin-top: 4px;
    span {
      color: #1e72be;
      border-bottom: solid 2px;
    }
  }
  .t-problem-ec {
    color: white;
    background-color: #1e72be;
    padding: 20px 0;
    position: relative;
    font-weight: 700;
    font-size: 22px;
    &::before {
      position: absolute;
      content: "▲";
      color: #1e72be;
      width: 60px;
      height: 28px;
      top: -35px;
      font-size: 40px;
      right: calc(50% - 30px);
      z-index: -1;
    }
  }
  .t-problem-content {
    background-image: url(/common/t-img/komarigoto-man.webp);
    aspect-ratio: 440 / 271;
    background-repeat: no-repeat;
    position: relative;
    color: #1e73be;
    background-size: 36%;
    background-position: bottom;
  }

  .t-problem-content span {
    text-align: center;
    width: clamp(90px, 20vw, 200px);
    height: clamp(90px, 20vw, 200px);
    line-height: 1.2;
    font-size: clamp(12px, 2vw, 24px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    border: solid 3px;
    font-weight: 700;
  }
  .problem-content-colum {
    display: flex;
    &:nth-child(1) {
      justify-content: center;
      gap: 5%;
    }
    &:nth-child(2) {
      justify-content: center;
      gap: 40%;
      margin-top: -12px;
    }
  }
}
@media screen and (max-width: 360px) {
  .t-toc-test {
    .t-toc-inner {
      > div {
        width: clamp(130px, 43%, 300px);
      }
      a {
        font-size: 14px;
        padding: 12px 8px;
      }
    }
  }
}
@media screen and (min-width: 1024px) {
  .t-problem {
    h2 {
      font-size: 30px;
    }
    .heading-content {
      font-size: 40px;
    }
    .t-problem-content {
      background-image: url(/common/t-img/komarigoto-pc.webp);
      background-size: 46%;
      background-position: bottom;
      max-width: 900px;
      aspect-ratio: 95 / 54;
      display: block;
      margin-inline: auto;
      .problem-content-colum {
        > span {
          line-height: 36px;
        }
        &:nth-child(2) {
          justify-content: space-evenly;
          gap: 40%;
          margin-top: -12px;
        }
      }
    }
    .t-problem-ec {
      font-size: 36px !important;
    }
  }
}
/* ―――――――――――選ばれる理由――――――――――――― */
.t-reason {
  .reason-pcwrap {
    display: contents;
  }
  .reason-content-wrap {
    background: linear-gradient(138deg, #1e72be, #6cb9ff) no-repeat;
    background-size: 100% 80%;
    color: white;
    .reason-content-headline {
      font-size: 40px;
      opacity: 0.7;
      transform: skewX(346deg);
      display: inline-block;
      margin-left: -16px;
      line-height: 38px;
      font-weight: 800;
      color: #ffffffcc;
      white-space: nowrap;
    }
    h3 {
      margin-top: 0px;
      font-size: 24px;
      margin-bottom: 0px;
    }
    img {
      display: block;
      margin-inline: auto;
      width: 100%;
    }
    p {
      color: #ffffff;
    }
  }
  .reason-content-wrap:not(.reason-content-headline) {
    padding: 0px 6% 20px 6%;
  }
  .reason-s-headline {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .t-reason {
    .reason-content-wrap {
      display: flex;
      flex-direction: row-reverse;
      gap: 40px;
      background-size: 100% 100%; /* 背景を要素全体に広げる */
      background: #ffffff; /* 左側を白 */
      background-image: none; /* グラデーションなし */
      background: linear-gradient(
        to right,
        #ffffff 40%,
        #1e72be 40%
      ); /* 左白、右青 */
      margin-top: 40px;
      justify-content: center;
      img {
        width: clamp(200px, 40%, 500px);
        margin: unset;
      }
      h3 {
        font-size: 30px;
      }
      .reason-content-headline {
        order: 99;
        font-size: 70px;
        margin-bottom: -24px;
      }
    }
    .reason-content-wrap:not(.reason-content-headline) {
      padding: 30px 6% 30px 6%;
    }
    .reason-content-wrap:nth-of-type(even) {
      flex-direction: row;
      background: linear-gradient(
        to left,
        #ffffff 40%,
        #1e72be 40%
      ); /* 左白、右青 */
    }
    .reason-pcwrap {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      width: 400px;
      gap: 12px;
    }
  }
}
/* ―――――――――――どんなシャッターにも対応――――――――――――― */
.t-kinds {
  .t-kinds-wrap {
    width: clamp(300px, 90%, 560px);
    margin-inline: auto;
  }
  .t-kinds-pc-wrap {
    display: contents;
    gap: 15px;
  }
  .kinds-inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    gap: 16px;
    h3 {
      color: #1e73be;
      margin-top: 0px;
      text-align: center;
    }
    img {
      width: 134px;
      height: 134px;
    }
  }
}

@media screen and (min-width: 1024px) {
  .t-kinds {
    margin-top: 60px;
    margin-bottom: 60px;
    .t-kinds-pc-wrap {
      display: flex;
    }
    .t-kinds-wrap {
      width: clamp(300px, 90%, 900px);
      margin-inline: auto;
    }
    .kinds-inner {
      flex-direction: column-reverse;
      justify-content: space-around;
      justify-content: flex-end;
      gap: 16px;
      width: 25%;
      align-items: center;
    }
  }
}
/* ―――――――――――対応メーカー――――――――――――― */
.t-maker {
  .t-maker-wrap {
    background: linear-gradient(to bottom, #1e72be 45%, transparent 40%);
    margin-bottom: 36px;
    h2 {
      color: white;
    }
  }
  .t-maker-logo-wrap {
    background-color: white;
    width: clamp(300px, 80%, 800px);
    margin-inline: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0.2, 0.2);
  }
  .maker-pc-wrap {
    display: contents;
  }
  .t-maker-logo-wrap-inner {
    display: flex;
    justify-content: space-around;
    text-align: center;
    width: 100%;
    img {
      width: clamp(100px, 30%, 300px);
    }
  }
}
@media screen and (min-width: 1024px) {
  .t-maker {
    background: linear-gradient(to bottom, #1e72be 70%, transparent 40%);
    .maker-pc-wrap {
      display: flex;
    }

    .t-maker-wrap {
      margin-bottom: 70px;
      padding-top: 40px;
    }
    .t-maker-logo-wrap {
      padding: 24px;
    }
    .t-maker-logo-wrap-inner {
      img {
        width: 120px;
      }
    }
  }
}

/* ―――――――――――料金案内――――――――――――― */
.t-price {
  background-color: #2477bf1f;
  padding: 40px 0 0 0;
  h3 {
    text-align: center;
    > span {
      padding-right: 16px;
      color: #1e73be;
    }
  }
  h4 {
    width: clamp(280px, 80%, 320px);
    text-align: center !important;
    border-radius: 32px;
    color: white;
    display: block;
    margin-inline: auto;
    padding: 8px 0;
    margin-top: 8px;
    margin-bottom: 38px;
  }
  .price-pc-wrap {
    display: contents;
  }
  .price-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    align-items: center;
    div:not(.price-pc-wrap) {
      background-color: white;
      display: flex;
      width: clamp(280px, 90%, 600px);
      padding: 16px 8px;
      justify-content: space-between;
      font-weight: bold;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0.2, 0.2);
      align-items: center;
    }
  }
  .p-in {
    padding: 20px 0 20px 0;
  }
  .price-img {
    width: 80px;
    display: block;
    margin-inline: auto;
  }
  .manual-symptoms {
    img {
      display: block;
      margin-inline: auto;
    }
    h4 {
      background-color: #0173c3;
    }
    .price-table {
      span:last-of-type {
        color: #0173c3;
      }
    }
  }
  .manual-change {
    h4 {
      background-color: #30bddb;
    }
    .price-table {
      span:last-of-type {
        color: #30bddb;
      }
    }
  }
  .auto-syptoms {
    background-color: #fff7e8;
    padding-top: 32px;
    h4 {
      background-color: #ffa601;
    }
    .price-table {
      span:last-of-type {
        color: #ffa601;
      }
    }
    img {
      display: block;
      margin-inline: auto;
    }
  }
  .auto-change {
    background-color: #fff7e8;
    h4 {
      background-color: #ff7f06;
    }
    .price-table {
      span:last-of-type {
        color: #ff7f06;
      }
    }
  }
  .price-oversride {
    background-color: #f4f8ee;
    h4 {
      background-color: #91bb54;
      margin-top: 20px;
    }
    .price-table {
      span:last-of-type {
        color: #91bb54;
      }
    }
  }
  .price-wrap {
    padding-bottom: 32px;
  }
}
.price-reason-wrap {
  padding: 16px;
  background-image: url(/common/t-img/price-back.webp);
  background-size: cover;
  background-repeat: no-repeat;
  box-sizing: border-box;
  &:has(.open) {
    background-image: url(/common/t-img/accrdion-after.webp);
  }
  .price-reazon-inner {
    max-width: 800px;
    margin-inline: auto;
    p {
      color: white;
      font-size: 20px;
    }
  }

  .price-reason-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    width: 100%;
  }
  .accordion.open {
    background: #ffffff00;
    .price-reason-heading {
      color: white;
    }
    .accordion-header {
      background: #ffffff00;
    }
  }
  .open {
    .accordion-content {
      color: #1e73be;
    }
  }
}

@media screen and (min-width: 1024px) {
  .t-price {
    background-color: #f6f6f6;
    .price-table {
      flex-direction: row;
      justify-content: center;
    }
    .price-pc-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 20px;
      width: 440px;
      > div {
        height: 30px;
        padding-left: 28px !important;
      }
    }

    .price-reason-heading {
      h3 {
        span {
          font-size: 28px;
          padding-left: 20px;
          padding-right: 60px;
        }
      }
    }
    .auto-syptoms,
    .price-oversride {
      background-color: #ffffff00;
    }
    .accordion-header {
      padding: 10px;
    }
  }
}
/* ―――――――――――依頼の流れ――――――――――――― */
.t-flow {
  padding: 40px 0 36px 0;
  .flow-content-wrap {
    background-color: #1e73be;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    width: clamp(300px, 90%, 560px);
    margin-inline: auto;
    border-radius: 8px;
    &::after {
      position: absolute;
      content: "";
      width: 14%;
      height: 67%;
      right: 15px;
      background-size: contain;
      background-repeat: no-repeat;
    }
    .pc-flow-wrap {
      display: contents;
    }
    &:nth-of-type(1) {
      &::after {
        background-image: url(/common/t-img/m-step1.webp);
      }
    }
    &:nth-of-type(2) {
      &::after {
        background-image: url(/common/t-img/m-step2.webp);
      }
    }
    &:nth-of-type(3) {
      &::after {
        background-image: url(/common/t-img/m-step3.webp);
      }
    }
    &:nth-of-type(4) {
      &::after {
        background-image: url(/common/t-img/m-step4.webp);
      }
    }
    &:nth-of-type(5) {
      &::after {
        background-image: url(/common/t-img/m-step5.webp);
      }
    }
    &:nth-of-type(6) {
      &::after {
        background-image: url(/common/t-img/m-step6.webp);
      }
    }
  }
  .flow-content-heading {
    display: flex !important;
    align-items: center;
    span:first-of-type {
      transform: rotate(90deg);
      font-size: 22px;
      opacity: 0.7;
      height: 6px;
    }
    span:nth-of-type(2) {
      font-size: 78px;
      line-height: 1vw;
      padding-top: 2px;
      margin-left: -28px;
    }
  }
  .step-allow {
    width: clamp(22px, 7%, 36px);
    display: block;
    margin-inline: auto;
  }
  .flow-content-inner {
    padding-left: 16px;
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .t-flow {
    .pc-flow-wrap {
      display: flex;
      align-items: center;
      width: 80%;
      margin-inline: auto;
    }
    .step-allow {
      transform: rotate(270deg);
      width: 30px;
      height: 30px;
      z-index: 4;
      margin-top: 36px;
      &:nth-of-type(3) {
        display: none;
      }
    }
    .flow-content-wrap {
      background-color: #ffffff;
      display: flex;
      flex-direction: column;
      &::after {
        display: none !important;
      }
    }
    .flow-content-heading {
      display: flex !important;
      align-items: center;
      width: 100%;
      transform: skewX(333deg);
      margin-bottom: -8px;
      padding-left: 9px;
      span {
        color: #1e73be;
        font-weight: 900;
        &:first-of-type {
          transform: rotate(0deg);
          font-size: 30px;
          height: auto;
          opacity: 1;
        }
        &:nth-of-type(2) {
          font-size: 30px;
          margin-left: 0px;
        }
      }
    }
    .flow-content-inner {
      width: 100%;
      padding-left: 0px;
      box-shadow: 0 4px 6px rgba(0, 0, 0.2, 0.2);
      margin-bottom: 40px;
      p {
        text-align: center;
        background-color: #1e73be;
        margin: 0px;
        padding: 12px 0;
      }
      img {
        width: 100px;
        margin-inline: auto;
        display: block !important;
        padding: 18px;
      }
    }
  }
}
/* ―――――――――――ご確認ください――――――――――――― */
.t-confirmation {
  color: white;
  background-image: url(/common/t-img/comfomation-background-sp.webp);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 24px 0;
  .t-h2 {
    color: white;
  }
  span.t-h2-title {
    color: white;
  }
  .confirm-content {
    display: flex;
    align-content: center;
    gap: 16px;
    padding: 0 16px;
    min-height: 82px;
    margin-bottom: 12px;
    p {
      > span {
        border-bottom: 2px solid #ffa700;
      }
    }
  }
  .t-confirmation-inner {
    margin-top: 32px;
  }

  .confirm-up-head {
    font-size: 56px;
    background: linear-gradient(to bottom, #ffffff97, #ffffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-align: center;
    display: block;
    margin-bottom: -24px;
    letter-spacing: 12px;
    font-weight: 600;
  }
  .t-company-p-heading.confirm-up-headline {
    text-align: center;
    margin-top: 4px;
    letter-spacing: 1px;
  }
  .confirm-content-left {
    display: flex;
    color: #1e73be;
    background-color: white;
    border-radius: 100%;
    width: clamp(30px, 50%, 50px);
    height: clamp(30px, 50%, 50px);
    padding: 13px;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
    font-weight: 600;
    > span:last-of-type {
      font-size: 24px;
    }
  }
  .confirm-text {
    background-color: #ffa700;
    width: clamp(300px, 70%, 600px);
    margin-inline: auto;
    border-radius: 8px;
    p {
      display: flex;
      flex-direction: column;
      text-align: center;
      position: relative;
      width: fit-content;
      margin-inline: auto;
      padding: 8px 0;
      &::after {
        right: -22px;
        position: absolute;
        content: "/";
        font-size: 20px;
        font-weight: 200 !important;
        transform: scale(2);
        font-family: monospace;
        top: 20px;
      }
      &::before {
        position: absolute;
        content: "/";
        font-size: 40px;
        font-weight: 200 !important;
        transform: scale(2);
        left: -26px;
        font-family: monospace;
        bottom: 14px;
        transform: rotate(134deg);
      }
    }
    span:nth-of-type(2) {
      background-color: white;
      color: #ffa700;
      padding: 0 4px;
      border-radius: 4px;
    }
  }

  .t-kinds-inner {
    width: clamp(300px, 95%, 900px);
    margin-inline: auto;
    margin-bottom: 40px;
    .comparison-table-repair {
      background-color: white;
      color: #1e73be;
      border-radius: 8px;
      text-align: center;
      display: block;
      padding: 9px 4px;
      font-size: 18px;
      border-radius: 24px;
    }
    .comparison-table {
      margin: 0 auto;
      max-width: 1200px;
      border-radius: 8px;
      overflow: unset;
    }
    /* table {
		width: 100%;
		text-align: center;
		border-collapse: separate; 
    	border-spacing: 3px; 
    	background-color: transparent; 
	}	
	thead {
		background-color: transparent;
		color: #fff;
		th:not(:nth-of-type(1)){
		 background-color: #ffffff;
		 color: #1E73BE;
		 border-top-left-radius: 20px;
         border-top-right-radius: 20px;
		}
		th:nth-of-type(2){
		color: white;
        background-color: #1E73BE;
		min-width: 64px;
		 >P{
			max-width: 240px;
			margin-inline: auto;
		 }
		}
		span{
		 color: #000;
		 margin-top: 4px;
         display: block;
		}
	}	 */
    /* tr,th{
	 border-color: #1E73BE;
	}
	th:nth-of-type(1){
	 display: inline;
	}
	th, td {
		padding: 15px;
		font-size: 14px;
		text-align: center;
		font-weight: 700;
	}
	tbody{
	 tr{
		background-color: white;
	   td:not(:nth-of-type(4)){
		color: #242425;
		background-color: white;
	   }
	   td:nth-of-type(2){
		color: #1E73BE;
        background-color: #e8f2fa;
	   }
	   td:nth-of-type(2),td:nth-of-type(3),td:nth-of-type(4){
		font-size: 28px;
	   }
	 }
	}	
	td {
	 text-align: center;
	 color: #050505;
	 span{
	  font-size: 24px;
	 }	
	} */
    /* .c-table-headline {
	padding: 9px 4px;
	font-size: 18px;
	border-radius: 24px;
	background-color: #f0f0f0;
	}
	.c-table-left{
		border-top-left-radius: 20px;
	}
	.comparison-table-content {
	font-size: 14px;
	background-color: #1E73BE;
	color: white;
	border-radius: 8px;
	}
	.sticky-column {
		position: sticky;
		left: 0;
		z-index: 1;
		-webkit-position: sticky;
	}
	@media (max-width: 768px) {
		th, td {
			font-size: 12px;
			padding: 10px;
		}
	} */
  }
  .table-alert {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .t-confirmation {
    .t-kinds-inner {
      width: clamp(600px, 70%, 1000px);
      margin-top: 40px;
    }
  }

  .t-confirmation {
    background-image: url(/common/t-img/company-info-pc.webp);
    .confirm-text {
      border-radius: 4px;
      width: fit-content;
      padding: 0px 8px;
      box-sizing: border-box;
      font-size: 28px;
      gap: 10px;
      p {
        flex-direction: row;
        gap: 10px;
        &::after,
        &::before {
          display: none;
        }
      }
    }
    .t-confirmation-inner {
      background-image: url(/common/t-img/cta-circle.webp);
      background-repeat: no-repeat;
      background-size: contain;
      aspect-ratio: 1007/456;
      box-sizing: border-box;
    }
    .confirm-content {
      margin-bottom: 0px;
      height: 20%;
      box-sizing: border-box;
      align-items: center;
      width: 100%;
      gap: 40px;
      &:nth-child(1) {
        padding-left: 9%;
      }
      &:nth-child(2) {
        padding-left: 17%;
      }
      &:nth-child(3) {
        padding-left: 19%;
      }
      &:nth-child(4) {
        padding-left: 17%;
      }
      &:nth-child(5) {
        padding-left: 9%;
      }
      p {
        font-size: clamp(16px, 2vw, 32px);
        font-weight: bold;
        letter-spacing: 1.2px;
        > span {
          border-bottom: none;
          :first-of-type {
            font-size: 32px;
          }
          :last-of-type {
            font-size: 28px;
          }
        }
      }
    }
    .confirm-content-left {
      width: clamp(40px, 6.5vw, 80px);
      height: clamp(40px, 6.5vw, 80px);
      justify-content: center;
      padding: 1%;
    }
    .t-kinds-inner {
      .comparison-table-content {
        padding: 4px 12px;
      }
    }
  }
}
@media screen and (max-width: 880px) {
  .t-confirmation {
    .t-kinds-inner {
      margin-bottom: 10px;
      width: 100%;
      .table-alert {
        display: inline-block;
        color: white;
        font-size: 14px;
      }
    }
    .comparison-table {
      border-collapse: separate;
    }
    .sticky-column:not(.stf) {
      box-shadow: 4px 0 5px rgba(0, 0, 0, 0.1);
    }
  }
}
/* ―――――――――――エリア――――――――――――― */
.t-area {
  background-color: #e9f1f9;
  padding: 32px 24px 32px 24px;
  h2 {
    font-size: 20px;
  }
  .h2-line {
    margin-bottom: 0px;
  }
  .t-area-inner {
    max-width: 560px;
    margin-inline: auto;
    span.area-headline {
      display: block;
      text-align: center;
      font-size: 20px;
      color: black;
      font-weight: 700;
      margin-bottom: 16px;
    }
    span {
      line-height: 28px;
    }
    a:visited {
      color: #0000ee !important;
    }
    ul {
      padding-left: 0px;
    }
  }
  .area-prefecture {
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .t-area {
    .t-area-inner {
      width: clamp(600px, 70%, 800px);
      padding: 24px;
      border-radius: 24px;
      margin-inline: auto;
      margin-top: 16px;
    }
    .t-h2 {
      font-size: 28px;
    }
  }
}
/* ―――――――――――交換したお客様――――――――――――― */
.t-voice {
  background-color: #f9f9f9;
  padding: 48px 0;
  .t-h2-title {
    + span {
      text-align: center;
      display: block;
      font-weight: bold;
      margin-top: 8px;
    }
  }
  h2 {
    margin-top: 8px;
  }
  .voice-content-inner {
    width: clamp(300px, 85%, 560px);
    margin-inline: auto;
    background-color: white;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0.2, 0.2);
    display: block;
    img {
      width: 90%;
      display: block;
      margin-inline: auto;
    }
    h3 {
      color: #1e73be;
      margin-left: 5%;
      padding-top: 24px;
    }
  }
  .voice-under {
    padding: 5%;
    background-color: #1e73be;
    color: white;
    margin-top: 24px;
    span {
      font-size: 20px;
      padding-top: 24px;
    }
  }
}
@media screen and (min-width: 1024px) {
  .t-voice {
    .voice-content-wrap {
      display: block;
      max-width: 90%;
      margin-inline: auto;
    }
    .voice-content-inner {
      display: flex;
      flex-direction: column;
      margin-left: 10px;
      margin-right: 10px;
      aspect-ratio: 400 / 600;
    }
    .voice-up {
      aspect-ratio: 462 / 349;
    }
    .voice-under {
      aspect-ratio: 374 / 345;
      flex: 1;
    }
    .v-sp-only {
      display: none;
    }
  }
}
@media screen and (max-width: 1440px) {
  .t-voice {
    .voice-content-inner {
      aspect-ratio: 400 / 680;
    }
  }
}
@media screen and (max-width: 1280px) {
  .t-voice {
    .voice-under {
      font-size: 14px;
      span {
        font-size: 16px;
        padding-top: 12px;
      }
    }
  }
}
@media screen and (max-width: 1080px) {
  .t-voice {
    .voice-up {
      aspect-ratio: 462 / 307;
    }
    .voice-under {
      aspect-ratio: 374 / 380;
      flex: 1;
    }
  }
}
@media screen and (max-width: 1024px) {
  .t-voice {
    .voice-content-wrap {
      max-width: 90%;
      margin-inline: auto;
    }
    .voice-content-inner {
      aspect-ratio: unset;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      height: 620px;
    }
    .voice-up {
      aspect-ratio: unset;
    }
    .voice-under {
      aspect-ratio: unset;
      flex: 1;
    }
    .v-t-wrap {
      display: flex;
      flex-direction: column;
      height: 100%;
    }
  }
}
@media screen and (max-width: 600px) {
  .t-voice {
    .voice-content-wrap {
      position: relative;
    }
    .voice-content-inner {
      height: 680px;
    }
    .slick-next:before {
      position: absolute;
      top: -60px;
      right: -12px;
    }
    .slick-prev:before {
      position: absolute;
      top: -60px;
      left: -12px;
    }
  }
}
@media screen and (max-width: 480px) {
  .t-voice {
    .voice-content-inner {
      height: 580px;
      margin-bottom: 20px;
    }
  }
}
/* ―――――――――――よくある質問――――――――――――― */
.t-question {
  background-color: #e9f1f9;
  padding: 24px;
  .t-h2-title {
    + span {
      display: block;
      text-align: center;
      font-weight: bold;
      + h2 {
        margin-top: 0px;
      }
    }
  }
  .question-content .accordion-header {
    box-shadow: 0 4px 6px rgba(0, 0, 0.2, 0.2);
    padding: 0px;
  }
  .accordion-header {
    padding: 0px;
  }
  .question-content-heading {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    h3 {
      padding-left: 8px;
    }
  }
  .question-q-a {
    color: #1e73be;
    padding-right: 8px;
    font-size: 18px;
  }
  .arrow {
    padding-right: 16px;
  }
  .accordion.open .accordion-content {
    display: flex;
    flex-direction: row;
    img {
      width: 100%;
    }
    p {
      margin-top: 0px;
      color: #1e73be;
    }
  }
  .open {
    .question-content-heading {
      background-color: #1e72be;
      color: white;
      .question-q-a {
        color: #fff;
      }
      .arrow {
        padding-left: 16px !important;
        transform-origin: center;
      }
    }
  }
  a:visited {
    color: #0d01fb;
  }
}
@media screen and (min-width: 1024px) {
  .t-question {
    .question-content-wrap {
      width: clamp(600px, 70%, 900px);
      margin-inline: auto;
    }
    .t-h2-title {
      + span {
        font-size: 24px;
        + h2 {
          margin-top: 0px;
          font-size: 32px;
        }
      }
    }
  }
}

/* ―――――――――――施行事例――――――――――――― */
.t-case {
  padding: 36px 0;
  .case-content-wrap {
    width: clamp(300px, 90%, 560px);
    padding: 12px;
  }
  img:not(.h2-line) {
    width: 100%;
  }
  .case-content-in-up {
    position: relative;
    span {
      position: absolute;
      left: 3px;
      top: 3px;
      color: white;
      font-weight: 700;
    }
    h3 {
      position: absolute;
      right: -4px;
      bottom: -24px;
      background-color: #1e73be;
      padding: 2px 4px;
      color: white;
    }
  }
}

.case-slider {
  width: 90%;
  margin: 0 auto;
}

.case-content-wrap {
  padding: 15px;
  margin: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.case-content-in-up {
  position: relative;
}

.case-content-in-up img {
  width: 100%;
  height: auto;
  display: block;
}

.case-content-in-up span {
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
  padding: 5px 10px;
  border-radius: 3px;
}
.case-content-in-down {
  margin-top: 20px;
}
.case-content-in-up h3 {
  margin: 10px 0;
  font-size: 1.2em;
}

.case-content-in-down p {
  margin: 0;
  line-height: 1.6;
}
a:visited {
  color: white;
}

/* スライダーの矢印カスタマイズ */
.slick-prev,
.slick-next {
  z-index: 1;
  width: 32px;
  height: 32px;
}

.slick-prev {
  left: 0px;
}

.slick-next {
  right: 0px;
}

/* レスポンシブ設定 */
@media (max-width: 768px) {
  .case-slider {
    width: 95%;
  }

  .slick-prev {
    left: 0px !important;
  }

  .slick-next {
    right: 6px !important;
  }
}

.slick-next:before,
.slick-prev:before {
  color: #4a2f2f;
}
.slick-next:before {
  content: "▶" !important;
  background-color: #aaaaaa;
  padding: 6px;
  border-radius: 100%;
  color: white;
}
.slick-prev:before {
  content: "◀" !important;
  background-color: #aaaaaa;
  padding: 6px;
  border-radius: 100%;
  color: white;
}

/* ―――――――――――会社概要――――――――――――― */
.t-company {
  background-image: url(/common/t-img/company-background-sp.webp);
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  padding: 24px 8px 80px 8px;
  .t-h2-title,
  .t-h2 {
    color: white;
  }
  .company-pc-wrap {
    display: contents;
  }
  .t-company-lead {
    padding: 0 24px;
  }
  .company-promise {
    font-size: 56px;
    background: linear-gradient(to bottom, #ffffff97, #ffffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-align: center;
    display: block;
    margin-bottom: -40px;
    letter-spacing: 4px;
    font-weight: 600;
  }
  h3 {
    color: white;
    text-align: center;
    margin-top: 10px;
    letter-spacing: 1px;
  }
  .company-p-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .company-p-content {
    width: 40%;
    padding: 0 12px;
  }
  .cpc1,
  .cpc3,
  .cpc5 {
    border-right: solid 1px white;
  }
  .cpc1,
  .cpc2,
  .cpc3,
  .cpc4 {
    border-bottom: solid 1px white;
  }
  .company-p-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 12px;
    span:nth-of-type(1) {
      line-height: 16px;
    }
    span:nth-of-type(2) {
      font-size: 24px;
      font-weight: 700;
    }
  }
}

/* ―――――――――――会社情報――――――――――――― */
.t-company-info {
  width: clamp(300px, 92%, 900px);
  margin-inline: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: -32px;
  position: relative;
  z-index: 1;
  background-color: white;
  padding: 24px 0;
  .about-company-info-inner {
    > span {
      + h2 {
        color: #1e73be;
        margin-top: -32px;
        text-align: center;
        border-bottom: solid 1px;
      }
    }
  }
  .about-company-profile {
    font-size: 56px;
    background: linear-gradient(to bottom, #1e73be7a, #1e73be00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-align: center;
    display: block;
    margin-bottom: -24px;
    letter-spacing: 8px;
    font-weight: 600;
  }
  .about-company-info-heading {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-left: 8px;
    margin-right: 8px;
    &:nth-of-type(3) {
      span {
        min-width: 100px;
      }
    }
    &:nth-of-type(6) {
      span {
        min-width: 80px;
      }
    }
    &:not(:last-of-type) {
      border-bottom: solid 1px #e9e9e9;
    }
    span {
      color: #1e73be;
      font-weight: 700;
    }
  }
}
@media screen and (min-width: 1024px) {
  .t-company {
    background-image: url(/common/t-img/company-pc.webp);
    background-size: cover;
    background-position: center;
    margin-bottom: 40px;
    .company-p-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      flex-direction: column;
      align-content: space-around;
      .company-p-content {
        border: none !important;
        width: 220px;
      }
      .company-pc-wrap {
        display: flex !important;
        justify-content: space-around;
        width: 70%;
      }
    }
    .t-company-lead {
      width: 60%;
      margin-inline: auto;
      font-size: 18px;
      text-align: center;
    }
    .company-p-left {
      span:nth-of-type(1) {
        font-size: 22px;
        margin-bottom: 10px;
      }
      span:nth-of-type(2) {
        font-size: 40px;
        font-weight: 700;
        text-align: center;
      }
    }
    .company-promise {
      letter-spacing: 8px;
    }
  }
  .t-company-info {
    .t-company-info-wrap {
      margin-top: -110px;
      z-index: 999;
      position: relative;
      background-color: white;
      padding: 30px;
    }
    .about-company-info-heading {
      span {
        min-width: 300px !important;
      }
    }
  }
}
/* ―――――――――――ブログ――――――――――――― */
.t-blog {
  background-color: #e9f1f9;
  padding: 32px 0;
  margin-top: 60px;
  h4 {
    margin: 4px 0;
    font-size: 20px;
  }
  .t-b-data {
    color: #0d0d0d;
    font-weight: bold;
  }
  .t-blogcard-wrap {
    display: flex;
    margin-inline: auto;
    padding: 12px;
    width: clamp(300px, 70%, 900px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: white;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 32px;
    color: #0d0d0d;
    &:hover {
      opacity: 0.7;
    }
    img {
      width: 100%;
      height: 100%;
    }
  }
  h4 {
    color: #0202e0 !important;
  }
  .t-b-img,
  .t-b-content-wrap {
    pointer-events: none; /* 子要素がホバーの影響を受けないように */
  }
  .t-b-text,
  .t-b-data {
    color: black;
  }
  .t-b-p-wrap {
    display: flex;
    align-items: flex-end;
    img {
      width: 32px;
    }
  }
  a.case-more.t-content-button:visited {
    color: white !important;
  }
}
@media screen and (max-width: 600px) {
  .t-blog {
    margin-top: 32px;
    .t-blogcard-wrap {
      flex-direction: column;
    }
  }
}
/* ―――――――――――お問合せ――――――――――――― */
.contact-wrap {
  width: clamp(300px, 80%, 560px);
  margin-inline: auto;
  padding: 32px 0;
  .ct-heading {
    color: #1e73be;
    display: block;
    text-align: center;
  }
  .ct-heading {
    font-weight: bold;
  }
  .ct-h2 {
    text-align: center;
    font-size: 20px;
  }
  table.formTbl {
    width: 100%;
  }
  th {
    span:first-of-type {
      background-color: #ffa700 !important;
      padding: 4px;
      color: white;
      border-radius: 4px;
    }
    span:last-of-type {
      padding-left: 12px;
      color: #4c4c4c;
    }
  }
  tr {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 28px;
  }
  td {
    margin-top: 16px;
  }
  td,
  input,
  textarea {
    width: 100%;
  }
  textarea {
    height: 280px;
    background-color: #eeeeee;
    border: none;
    border-radius: 4px;
  }
  .btnForm {
    position: relative;
    margin-top: 36px;
    text-align: center;
    width: clamp(280px, 60%, 300px);
    margin-inline: auto;
    &::after {
      position: absolute;
      content: "▶︎";
      width: 10px;
      height: 10px;
      bottom: 25px;
      right: 26px;
      color: white !important;
    }
  }
  input.btnCheck {
    background-color: #fb9a09;
    background: linear-gradient(50deg, #fb9a09 50%, #ff8209);
    border: none;
    padding: 16px 0;
    border-radius: 36px;
    color: white;
    font-weight: bold;
    margin-inline: auto;
    &:hover {
      opacity: 0.7;
      cursor: pointer;
    }
  }
  input {
    height: 48px;
    background-color: #eeeeee;
    border: none;
    border-radius: 4px;
  }
}
/* ―――――――――――地域の特徴――――――――――――― */
.region {
  color: white;
  text-align: center;
  padding: 80px;
  background-size: cover;
  .region-wrap {
    width: clamp(300px, 90%, 700px);
    margin-inline: auto;
    background-color: #00000017;
    padding: 16px;
  }
}
@media screen and (max-width: 600px) {
  .region {
    padding: 16px;
    box-sizing: border-box;
  }
}
/* ―――――――――――フッターバー――――――――――――― */
.t-foot-bar {
  background-color: #0066cc;
  position: fixed;
  width: 100%;
  bottom: 0px;
  z-index: 999;
  display: none;
  a {
    display: flex;
    flex-direction: column;
    width: 33.333%;
    text-decoration: none;
    color: white;
    text-align: center;
    padding: 4px;
    justify-content: space-around;
  }
  img {
    width: clamp(32px, 20%, 150px);
    margin-inline: auto;
    display: block;
  }
  .foot-bar-wrap {
    display: flex;
    justify-content: space-around;
  }
  .f-tel {
    background: linear-gradient(50deg, #fb9a09 50%, #ff8209);
    span {
      font-size: 13px;
    }
  }
  .f-mail {
    background: linear-gradient(50deg, #1e73be 50%, #309cd7);
  }
  .f-line {
    background-color: #08c656;
  }
  span {
    color: white;
  }
}
@media screen and (max-width: 1024px) {
  .t-foot-bar {
    display: block;
  }
}
/* フッター― */
#f-new {
  margin-bottom: 87px;
  color: white;
  ul {
    list-style: none;
    margin: 0px;
    padding: 12px;
    text-align: center;
    background-color: #309cd7;
  }
  a {
    color: white;
    text-decoration: none;
    padding-right: 24px;
  }
  p {
    margin: 0px;
    padding: 12px;
    background-color: #1e73be;
    text-align: center;
  }
}
/* PC用 (デスクトップ) */
@media screen and (min-width: 1024px) {
  #f-new {
    margin-bottom: 0px;
  }
}
/* デフォルトは全て非表示 */
.sp-only,
.tablet-only,
.pc-only {
  display: none;
}

/* モバイル用 (スマホサイズ) */
@media screen and (max-width: 768px) {
  .sp-only {
    display: inline;
  }
}

/* タブレット用 (横向き含む) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .tablet-only {
    display: inline;
  }
}

/* PC用 (デスクトップ) */
@media screen and (min-width: 1024px) {
  .pc-only {
    display: inline;
  }
}

/* 比較表部分 */
.t-confirmation {
  .comparison-table {
    @media screen and (max-width: 767px) {
      .tbl01 {
        width: 100%;
      }
      .tbl01 th {
        width: 16%;
        background: #f0f0f0;
        padding: 2% 0;
        text-align: center;
      }
      .tbl01 td {
        width: 28%;
        background: #f0f0f0;
        padding: 2% 0;
        text-align: center;
        font-size: 24px;
        vertical-align: middle;
      }
      .tbl01 td.tbl_maru {
        border-right: none;
        color: #1e73be;
      }
      .tbl_ttl01 {
        border: #bec2b9 3px solid;
        padding: 2% 0;
        color: #888a85;
        font-size: 15px;
        font-weight: bold;
        margin: 0 2% 5px;
        background: #fff;
        height: 48px;
      }
      .tbl_ttl02 {
        border: #1e73be 3px solid;
        padding: 2% 0;
        color: #fff;
        font-size: 15px;
        font-weight: bold;
        margin: 0 2% 5px;
        background: #1e73be;
        height: 48px;
      }
      .tbl_ttl_text {
        margin: 0 1%;
        text-align: left;
        font-size: 12px;
        color: #000;
      }
      .tbl_fff {
        background: #ffffff00 !important;
        padding: 5px 2% !important;
      }
      .orange {
        font-size: 14px;
        padding: 1%;
        border-radius: 4px;
        color: #fff;
        margin: 0 1%;
        background: #1e73be;
        position: relative;
      }
      .orange:before {
        position: absolute;
        content: "";
        top: -15px;
        left: 30px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 7.5px 15px 7.5px;
        border-color: transparent transparent #1e73be transparent;
      }
      .tbl_ttl_vl {
        vertical-align: top !important;
      }
    }
    @media screen and (min-width: 768px) {
      .tbl01 {
        width: 100%;
      }
      .tbl01 th {
        width: 16%;
        background: #f0f0f0;
        padding: 20px 0;
        text-align: center;
        color: #0d0d0d;
      }
      .tbl01 td {
        width: 28%;
        background: #f0f0f0;
        padding: 20px 0;
        text-align: center;
        font-size: 24px;
      }
      .tbl01 td.tbl_maru {
        border-right: none;
        color: #1e73be;
      }
      .tbl_ttl01 {
        border: #bec2b9 3px solid;
        padding: 20px 0;
        color: #888a85;
        font-size: 16px;
        font-weight: bold;
        margin: 0 20px 10px;
        background: #fff;
      }
      .tbl_ttl02 {
        border: #1e73be 3px solid;
        padding: 20px 0;
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        margin: 0 20px 10px;
        background: #1e73be;
      }
      .tbl_ttl_text {
        margin: 0 20px;
        text-align: left;
        font-size: 14px;
        color: #000;
      }
      .tbl_fff {
        background: #ffffff00 !important;
        padding: 5px 20px !important;
        padding-left: 0px !important;
      }
      .orange {
        font-size: 14px;
        padding: 10px;
        border-radius: 4px;
        color: #fff;
        margin: 0 20px;
        margin-left: 0px;
        background: #1e73be;
        position: relative;
        text-align: left;
        box-shadow: 0 4px 6px rgb(174 171 171 / 20%);
      }
    }
    @media screen and (min-width: 768px) and (max-width: 960px) {
      .orange:before {
        position: absolute;
        content: "";
        top: -15px;
        left: 55px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 7.5px 15px 7.5px;
        border-color: transparent transparent #1e73be transparent;
      }
    }
    @media screen and (min-width: 961px) and (max-width: 1024px) {
      .orange:before {
        position: absolute;
        content: "";
        top: -15px;
        left: 88px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 7.5px 15px 7.5px;
        border-color: transparent transparent #1e73be transparent;
      }
    }
    @media screen and (min-width: 1025px) {
      .orange:before {
        position: absolute;
        content: "";
        top: -15px;
        left: 92px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 7.5px 15px 7.5px;
        border-color: transparent transparent #1e73be transparent;
      }
    }
    .tbl_ttl_vl p:first-child {
      border-radius: 24px;
      border: none;
      padding: 12px;
    }
    p.tbl_ttl01 {
      color: #050505;
      background: #e5e5e5;
    }
    .tbl01 th,
    .tbl01 td {
      background-color: white;
      color: black;
    }
    .bl {
      background-color: #f8f8ff !important;
    }
    @media screen and (max-width: 600px) {
      th.tbl_fff,
      .pc {
        display: none !important;
      }
      .sp {
        td {
          width: 100%;
        }
        p {
          margin: 4px 0;
          font-size: 16px;
          font-weight: 700;
        }
      }
    }
    @media screen and (min-width: 600px) {
      .sp {
        display: none !important;
        td {
          width: 100%;
        }
      }
    }
  }
}

.pn-f {
  display: flex;
  white-space: nowrap;
  flex-wrap: wrap;
  justify-content: center;
}

.attention {
  background-color: #ff9a29;
  color: white;
  padding: 48px 24px;
  text-align: center;
  @media screen and (max-width: 768px) {
    padding: 24px;
  }
  p {
    font-size: clamp(14px, 3.2vw, 24px);
    margin: 0px;
    line-height: clamp(20px, 4.444vw, 40px);
    .pc {
      display: none;
    }
    @media screen and (max-width: 480px) {
      .pc {
        display: inline;
      }
      .sp {
        display: none;
      }
    }
  }
}

.new-reason {
  background-color: #e9f1f9;
  background-size: cover;
  background-repeat: no-repeat;
  .inner {
    @media screen and (max-width: 430px) {
      padding: 48px 24px !important;
    }
  }
  .t-h2-title {
    font-size: clamp(20px, 2.222vw, 32px);
  }
  @media screen and (max-width: 430px) {
    background-size: cover;
    background-repeat: no-repeat;
  }
  .inner {
    max-width: 900px;
    margin-inline: auto;
    padding: 72px 24px;
    box-sizing: content-box;
  }
  .nr2 {
    color: white;
    font-size: clamp(20px, 4vw, 32px) !important;
    position: relative;
    width: fit-content;
    margin-inline: auto;
    padding-bottom: 28px;
    margin-bottom: 48px;
    text-align: center;
    font-weight: 700;
    @media screen and (max-width: 768px) {
      letter-spacing: 0px;
      margin-bottom: 28px;
    }
    &::after {
      content: "";
      position: absolute;
      width: 98%;
      height: 5px;
      background-color: white;
      bottom: 0px;
      right: 1%;
    }
    &.n1 {
      margin-top: 0px;
    }
    &.n3 {
      .sp {
        display: none;
      }
      @media screen and (max-width: 768px) {
        margin-top: 0px;
        .pc {
          display: none;
        }
        .sp {
          display: inline;
        }
      }
      &::after {
        content: "";
        width: 64%;
        right: 18%;
      }
    }
  }
  .lead {
    color: white;
    text-align: center;
    max-width: 800px;
    margin-inline: auto;
    .lp {
      color: #434343;
      font-size: clamp(14px, 3.467vw, 26px);
      text-align: center;
      margin-bottom: 0px;
      font-weight: 700;
    }
    .lp2 {
      font-size: clamp(14px, 2.933vw, 22px);
      margin-top: 36px;
      margin-bottom: 36px;
      font-weight: 700;
      color: #434343;
      br:not(.pc) {
        display: none;
      }
      @media screen and (max-width: 768px) {
        br:not(pc) {
          display: inline !important;
        }
        br.pc {
          display: none !important;
        }
      }
    }
  }
  .item-list {
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
    max-width: 724px;
    margin-inline: auto;
    gap: 30px;
    flex-wrap: wrap;
    @media screen and (max-width: 768px) {
      justify-content: center;
      gap: 20px 24px;
      max-width: calc(100% - 40px);
    }
    .i {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: nowrap;
      border-radius: 5px;
      width: calc((100% - 90px) / 4);
      height: 80px;
      align-content: center;
      flex-wrap: wrap;
      min-width: 120px;
      @media screen and (max-width: 768px) {
        height: 60px;
      }
      p {
        text-align: center;
        margin: 0px;
        font-size: clamp(14px, 2.222vw, 20px);
        font-weight: 700;
        letter-spacing: 1px;
        color: #2b73bd;
      }
      &.w {
        background-color: white;
        color: #023568;
      }
      &.o {
        background-color: #ff9a29;
        p {
          color: white !important;
        }
      }
      &.i2 {
        span {
          display: block;
        }
        .up {
          line-height: 20px;
          margin-bottom: 12px;
          @media screen and (max-width: 768px) {
            margin-bottom: 0px;
          }
        }
        .down {
          font-size: clamp(11px, 1.444vw, 13px);
          @media screen and (max-width: 768px) {
            letter-spacing: 0px;
          }
        }
      }
    }
  }
  .example-wrap {
    max-width: 900px;
    padding: 32px 64px;
    padding-bottom: 44px;
    background-color: white;
    margin-inline: auto;
    border-radius: 5px;
    @media screen and (max-width: 768px) {
      padding: 18px 24px;
      padding-bottom: 24px;
    }
    .rh3 {
      display: flex;
      margin-top: 0px;
      justify-content: space-between;
      gap: 30px;
      @media screen and (max-width: 768px) {
        flex-direction: column;
        gap: 16px;
      }
      br {
        display: none;
        @media screen and (max-width: 768px) {
          display: inline;
        }
      }
      .a {
        background-color: #2b73bd;
        color: white;
        font-size: 24px;
        font-weight: 700;
        padding: 4px;
        width: 84px;
        min-width: 84px;
        text-align: center;
        border-radius: 5px;
        margin-left: -30px;
        @media screen and (max-width: 768px) {
          font-size: 14px;
          margin-left: 0px;
          width: 50px;
          min-width: 50px;
        }
      }
      .b {
        font-size: 26px;
        font-weight: 700;
        margin-right: 9%;
        white-space: nowrap;
        @media screen and (max-width: 768px) {
          text-align: center;
          margin-right: 0px;
          font-size: 20px;
        }
      }
    }
    .eg {
      font-size: clamp(14px, 2.667vw, 20px);
      text-align: center;
      font-weight: 700;
      margin-bottom: 48px;
      @media screen and (max-width: 768px) {
        margin-bottom: 32px;
      }
    }
    .illust {
      display: flex;
      gap: 32px;
      @media screen and (max-width: 768px) {
        flex-direction: column;
      }
      .rh4 {
        font-size: clamp(16px, 2.222vw, 20px);
        margin-bottom: 12px;
        margin-top: 0px;
        font-weight: 700;
        display: flex;
        align-items: center;
        span {
          font-size: clamp(20px, 2.444vw, 24px);
        }
        &.r2 {
          margin-top: 40px;
        }
      }
      .left {
        min-width: 320px;
      }
      .right {
        flex-grow: 1;
        .image {
          img {
            width: 100%;
          }
        }
      }
      @media screen and (max-width: 768px) {
        .left,
        .right {
          display: contents;
        }
      }
      .content {
        border: solid 2px;
        padding: 24px 16px;
        font-size: clamp(16px, 1.8vw, 18px);
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
        p {
          font-weight: 700;
          margin: 0px;
        }
        span {
          display: block;
        }
      }
      .slat {
        .rh4 {
          color: #ff9a29;
        }
        .content {
          border: solid 2px #ff9a29;
        }
      }
      .guide {
        .rh4 {
          color: #0995ac;
        }
        .content {
          border: solid 2px #0995ac;
        }
      }
      .a-case {
        .rh4 {
          color: #28b765;
        }
        .content {
          border: solid 2px #28b765;
          margin-bottom: 24px;
        }
      }
    }
    @media screen and (max-width: 768px) {
      .image {
        order: 1;
      }
      .slat {
        order: 2;
      }
      .guide {
        order: 3;
        .r2 {
          margin-top: 0px !important;
        }
      }
      .a-case {
        order: 4;
        .content {
          margin-bottom: 0px !important;
        }
      }
    }
    .rh5 {
      color: #023568;
      font-weight: 700;
      font-size: clamp(16px, 20vw, 20px);
      margin-bottom: 20px;
      display: block;
      margin-top: 24px;
      @media screen and (max-width: 768px) {
        font-size: 16px;
      }
    }
    .other {
      padding: 24px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
      @media screen and (max-width: 768px) {
        padding: 12px;
      }
      p {
        margin: 0px;
        font-weight: 700;
      }
      p,
      span {
        font-size: clamp(16px, 20vw, 20px);
        @media screen and (max-width: 768px) {
          font-size: 16px;
        }
      }
    }
    .lc {
      background-color: #2b73bd;
      color: white;
      font-size: clamp(16px, 24vw, 23px);
      text-align: center;
      padding: 12px 0px;
      border-radius: 5px;
      margin-top: 48px;
      margin-bottom: 0px;
      @media screen and (max-width: 768px) {
        font-size: 16px;
        margin-top: 32px;
      }
      br {
        display: none;
        @media screen and (max-width: 768px) {
          display: inline;
        }
      }
    }
  }
  .cont2 {
    .ch-wrap {
      margin-bottom: 32px;
      img {
        width: 100%;
      }
    }
  }
  .c2p {
    color: #434343;
    text-align: center;
    font-size: clamp(14px, 2.889vw, 26px);
    margin: 4px 0px;
    font-weight: 700;
    br {
      display: none;
      @media screen and (max-width: 768px) {
        display: inline;
      }
    }
    span {
      color: #fff;
      background-color: #ff9a29;
      padding: 4px;
    }
  }
  .up-image {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: -56px;
    padding: 0px 12px;
    @media screen and (max-width: 768px) {
      margin-bottom: -32px;
    }
    .uip {
      color: #323232;
      width: clamp(300px, 56.444vw, 508px);
      background-color: white;
      border-radius: 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 254px;
      p {
        font-size: clamp(14px, 2.222vw, 20px);
        margin: 0px;
        font-weight: 700;
      }
    }
    img {
      width: 100%;
    }
  }
  .go-case-wrap {
    background-image: url(/wp-content/uploads/2025/07/scta.webp);
    padding-top: 80px;
    padding-bottom: 36px;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    font-weight: 700;
    @media screen and (max-width: 768px) {
      margin-bottom: 72px;
      background-image: url(/wp-content/uploads/2025/07/ctsp.webp);
    }
    br {
      display: none;
      @media screen and (max-width: 430px) {
        display: inline;
      }
    }
    p {
      font-size: clamp(14px, 2.444vw, 22px);
      margin: 0px;
    }
    .wrap-btn {
      max-width: 360px;
      box-sizing: border-box;
    }
  }

  .m-image {
    margin-inline: auto;
    text-align: center;
    margin-top: 32px;
    margin-bottom: 32px;
    img {
      width: 100%;
    }
    .sp {
      display: none;
    }
    @media screen and (max-width: 768px) {
      .pc {
        display: none;
      }
      .sp {
        display: block;
        margin-inline: auto;
        width: clamp(300px, 90vw, 560px);
      }
    }
  }
  .m-at-wrap {
    @media screen and (max-width: 768px) {
      margin-top: 36px;
    }
    .m-a {
      text-align: center;
      color: #434343;
      font-size: clamp(16px, 3.111vw, 28px);
      display: block;
      font-weight: 700;
    }
  }
  .m-at {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px 14px;
    @media screen and (max-width: 768px) {
      padding: 24px;
    }
    &.m-at1 {
      margin-bottom: 32px;
      margin-top: 32px;
      .l4 {
        font-size: 14px;
      }
      .right {
        .sp {
          display: none;
        }
        @media screen and (max-width: 768px) {
          .pc {
            display: none;
          }
          .sp {
            display: inline-block;
          }
        }
      }
    }
    .left {
      width: 58%;
      font-weight: 800;
      .left-in {
        padding: 12px 36px;
        @media screen and (max-width: 768px) {
          padding: 0px;
        }
      }
      @media screen and (max-width: 768px) {
        width: 100%;
      }
    }
    .right {
      display: flex;
      align-items: center;
      flex-direction: column;
      justify-content: center;
      @media screen and (max-width: 768px) {
        justify-content: center;
        flex: 1;
        max-width: 560px;
      }
      .s-share {
        text-align: left;
        font-weight: 700;
        width: 100%;
        color: #0073bf;
        font-size: clamp(14px, 1.389vw, 20px);
      }
      img {
        width: 100%;
        max-width: 330px;
      }
    }
    .l1 {
      display: flex;
      align-content: center;
      align-items: center;
      gap: 24px;
      @media screen and (max-width: 768px) {
        gap: 12px;
        flex-wrap: wrap;
      }
      .ls {
        background-color: #2b73bd;
        color: white;
        font-size: 16px;
        min-width: 120px;
        display: block;
        text-align: center;
        border-radius: 5px;
        padding: 8px 0px;
        font-weight: 700;
        letter-spacing: 1px;
      }
      .lp {
        margin: 0px;
        font-size: 20px;
        color: #2b73bd;
        word-break: keep-all;
        white-space: nowrap;
        @media screen and (max-width: 768px) {
          word-break: unset;
          white-space: unset;
        }
      }
    }
    .l3 {
      color: #ff9a29;
      font-size: 20px;
      font-weight: 700;
    }
    .l4 {
      span {
        text-decoration: underline;
      }
    }
    .m-at-inner {
      display: flex;
      @media screen and (max-width: 768px) {
        flex-direction: column;
      }
    }
  }
  .at-o {
    background-color: #ff9a29;
    color: white;
    padding: 16px 0px;
    border-radius: 5px;
    margin-top: 64px;
    max-width: 750px;
    margin-inline: auto;
    @media screen and (max-width: 768px) {
      margin-top: 32px;
    }
    p {
      margin: 0px;
      text-align: center;
      font-weight: 700;
    }
    .up {
      font-size: clamp(14px, 2.667vw, 24px);
    }
    .down {
      font-size: clamp(14px, 3.556vw, 32px);
    }
  }
  .gen {
    background:
      linear-gradient(to top left, transparent 50%, #eef8ff 50%) top left / 50%
        50% no-repeat,
      linear-gradient(to bottom right, transparent 50%, #ddf1f9 48%) bottom
        right / 26% 120% no-repeat,
      #eef8ff;
    padding: 28px 24px;
    border-radius: 5px;
    .g-in {
      max-width: 700px;
      margin-inline: auto;
      .gt {
        background-color: #023568;
        color: white;
        display: block;
        text-align: center;
        font-size: 20px;
        border-radius: 5px;
        padding: 8px 0px;
        font-weight: 700;
        letter-spacing: 1px;
        font-size: clamp(16px, 2.222vw, 20px);
        br {
          display: none;
          @media screen and (max-width: 768px) {
            display: inline;
          }
        }
      }
      p {
        font-weight: 500;
        text-align: justify;
        font-size: clamp(14px, 1.778vw, 16px);
      }
    }
    &.g-1 {
      margin-bottom: 48px;
    }
    &.g-2 {
      margin-bottom: 24px;
    }
  }
  .ar {
    display: block;
    margin-inline: auto;
    width: clamp(64px, 10.222vw, 92px);
  }
  .unser {
    background-image: url(/wp-content/uploads/2025/07/db2-scaled.webp);
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    padding: 48px;
    margin-top: 48px;
    @media screen and (max-width: 768px) {
      padding: 24px;
    }
    .u-in {
      .uih {
        text-align: center;
        color: white;
        margin: 0px;
        font-size: clamp(20px, 3.778vw, 34px);
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        margin-bottom: 48px;
        gap: 12px;
        @media screen and (max-width: 768px) {
          flex-wrap: wrap;
          gap: 4px;
          margin-bottom: 36px;
        }
        br {
          display: none;
          @media screen and (max-width: 768px) {
            display: inline;
          }
        }
        img {
          max-width: 300px;
          @media screen and (max-width: 768px) {
            width: clamp(212px, 56.533vw, 300px);
          }
        }
      }
      .uihe {
        font-size: clamp(18px, 2.667vw, 24px);
        text-align: center;
        color: white;
        font-weight: 700;
      }
    }
    .uip {
      color: white;
      font-size: clamp(14px, 2vw, 18px);
      text-align: justify;
      margin-bottom: 20px;
      @media screen and (max-width: 768px) {
        text-align: center;
      }
      .o {
        color: #ff9a29;
      }
      a {
        text-decoration: underline;
      }
    }
    .uil {
      color: white;
      text-align: center;
      font-weight: 800;
      font-size: clamp(18px, 2.667vw, 24px);
      margin: 0px;
      .sp {
        display: none;
      }
      @media screen and (max-width: 768px) {
        .sp {
          display: inline;
        }
        .pc {
          display: none;
        }
      }
    }
  }
}
