/* ページ全体 */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    background-color: #f2f2f2;
    font-family: "Noto Sans JP", sans-serif;
    margin:0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
}

.sp-only{
  display: none;
}

.sp-hide{
  display: inline;
}

/* ヘッダー */
.site-header {
    width: 100%;
    height: 130px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    background: transparent;
    backdrop-filter: none;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 【ヘッダー】ロゴ */
.header-logo {
    width: 800px;
}

.logo-img {
    max-width: 320px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* 【ヘッダー】営業時間 */
.header-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-pill {
    width: 30px;
    background: #ff0099;
    padding: 4px 10px;
    border-radius: 5px;
    text-align: center;
}

.contact-pill-text {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
}

.contact-value-tel,
.contact-value-mail {
    color: #ff0099;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow:
        -1px -1px #ffffff,
        1px -1px #ffffff,
        -1px  1px #ffffff,
        1px  1px     #ffffff;
}

.contact-value-tel {
    text-decoration: none;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

    .contact-value-tel:hover {
    transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
}

.business-hours {
    color: #333;
    font-size: 12px;
    font-weight: 700;
}

/* 【ヘッダー】バナー */
.header-banner-img {
    max-width: 170px;
    max-height: 80px;
    border-radius: 4px;
    object-fit: contain;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

.header-banner-img:hover {
    transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
}

/* 【メイン】ヒーローバナー */
.hero {
    width: 100%;
}

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

.sp-hero {
    display: none;
}

/* 【メイン】フォントサイズ */
.small-heading {
    color: #232323;
    font-size: 2.5rem;
}

.medium-heading {
    color: #232323;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 10px auto;
    text-align: center;
}

.parallelogram-text {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    display: inline-block;
    transform: skewX(20deg);
}

.section-desc-wrapper {
    margin-bottom: 20px; 
}

.section-desc {
    font-size: 1.8rem;
    line-height: 1.8;
    text-align: center;
}

.five-card-text {
    font-size: 1.8rem;
    font-weight: 700;
    padding: 10px 0;
    text-align: center;
}

.five-card-desc {
    font-size: 1.3rem;
    width: 100%;
    text-align: left;
}

.tel-box-heading {
    color: #74afbf;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 10px 0;
}

.tel-box-text {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 10px 0;
}

.tel-box-hour {
    font-size: 1.6rem;
}

.tel-number-text {
    cursor: pointer;
    color: #ff751f;
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(100, 50, 0, 0.3);
}

/* 【メイン】セクションごとの共通設定 */
.worry-section,
.seat-section,
.qa-section {
    padding: 40px 0;
}

.service-section,
.case-section,
.flow-section,
.contact-section {
    background: #fff;
    padding: 40px 0;
}

.strong-section {
    background: #004aad;
    padding: 40px 0;
}

.strong-section .medium-heading {
    color: #fff;
}

/* 【メイン】共通素材 */
.parallelogram-box {
    width: 100%;
    max-width: 220px;
    background: #039fe9;
    padding: 10px 20px;
    margin: 10px auto;
    text-align: center;
    transform: skewX(-20deg);
}

.marker-yellowline {
    font-weight: 700;
    background: linear-gradient(transparent 50%, #fff200 50%);
}

.cta-btn {
    display: grid;
    grid-template-columns: 45px 1fr 45px;
    align-items: center;
    justify-content: flex-start;

    width: 400px;
    background:linear-gradient(to bottom, #ffde59 0%, #ffbd32 40%, #ff751f 100%);
    padding: 15px 24px;
    margin: 0 auto;
    border-radius: 50px;

    text-decoration: none;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: all 0.4s ease;
    -webkit-transition: transform 0.4s ease;
}

.cta-btn:hover {
    background: #fff;
    outline: 2px solid #ff751f;
    outline-offset: -2px;
    color: #ff751f;
    transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
}

.cta-btn-text {
    grid-column: 2;
    font-size: 2.5rem;
    text-align: center;
    white-space: nowrap;
}

.cta-btn-arrow {
    grid-column: 3;
    font-size: 1.8rem;
    justify-self: end;
}

/* 【メイン】二重線ボックス */
.double-box-wrapper {
    position: relative;
    margin: 0;
}

.double-box {
    z-index: 9999;

    width: 100%;
    max-width: 800px;
    height: auto;
    background: #fff;
    margin: -120px auto 0;
    padding: 40px 20px;
    border: 6px double #232323;
    box-sizing: border-box;
    text-align: center;
}

.mitumori-img {
    position: absolute;
    z-index: 10001;
    pointer-events: none;

    display: block;
    object-fit: contain;
    width: 80px;
    height: 80px;
    left: 380px;
    top: 20px;
}

.manager-img {
    position: absolute;
    z-index: 10000;
    pointer-events: none;

    display: block;
    object-fit: contain;
    width: 200px;
    height: 280px;
    right: 265px;
    bottom: -2.5px;
}

/* 【メイン】見積ボタン */
.navy-btn {
    display: grid;
    grid-template-columns: 45px 1fr 45px;
    align-items: center;
    justify-content: flex-start;

    width: 400px;
    background: #1b005d;
    padding: 15px 24px;
    margin: 0 auto;
    border-radius: 4px;

    text-decoration: none;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: all 0.4s ease;
    -webkit-transition: transform 0.4s ease;
}

.navy-btn:hover {
    background: #fff;
    outline: 2px solid #1b005d;
    outline-offset: -2px;
    color: #1b005d;
    transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
}

.navy-btn-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.navy-btn-text {
    font-size: 2.5rem;
    text-align: center;
    white-space: nowrap;
}

.navy-btn-arrow {
    justify-self: end;
    font-size: 1.8rem;
}

/* 【メイン】ターゲットセクション */
.blue-box {
    width: 100%;
    max-width: 1200px;
    background: #86ccfe;
    padding: 20px 10px;
    margin: 20px auto;
    border-radius: 5px;
    box-sizing: border-box;
}

.persona-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.persona-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    background: #fff;
    border-radius: 10px;
    padding: 20px 10px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.orange-pill {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100px;
    height: 24px;
    background: #ff751f;
    border-radius: 12px;
    padding: 5px auto;
    margin: 0;
    align-items: center;
}

.orange-pill-text {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.persona-icon {
    display: block;
    object-fit: contain;
    width: 100%;
    max-width: 150px;
    height: auto;
    margin: 20px 0 5px;
}

.persona-underline {
    width: 60%;
    height: 2px;
    background: #ff751f;
    margin: 5px 0;
}

.persona-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.persona-list li {
    position: relative;
    width: 300px;
    font-size: 1.8rem;
    line-height: 1.5;
    padding-left: 10px;
    margin: 10px 0;
    text-align: center;
    box-sizing: border-box;
}

.persona-list li::before {
    content: "✔";
    position: absolute;
    color: #ff751f;
    font-size: 1.8rem;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.persona-list-marker {
    color: #ff751f;
    font-weight: 700;
}

/* 【メイン】サービスセクション */
.five-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
    justify-content: center;
    align-items: center;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 210px;
    background: #fff;
    border: 2px solid #039fe9;
    border-radius: 10px;
    padding: 20px 10px;
    margin: 10px 0;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.service-icon {
    display: block;
    object-fit: contain;
    width: 150px;
    height: 150px;
    padding: 10px;
    box-sizing: border-box;
}

.notes-container {
    position: absolute;
    bottom: 7px;
    left: 15px;
}

.notes-container .notes-text {
    font-size: 0.8rem;
}

/* 【メイン】強みセクション */
.strong-card-container {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
    align-items: center;
}

.strong-card-upper,
.strong-card-under {
    display: flex;
    width: 100%;
    max-width: 1100px;
    justify-content: center;
    box-sizing: border-box;
}

.strong-card-large,
.strong-card-small {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 520px;
    background: #fff;
    border-radius: 10px;
    padding: 20px 10px;
    margin: 10px;
    box-sizing: border-box;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.strong-card-large {
    width: 600px;
    height: 220px;
    box-sizing: border-box;
}

.strong-card-small {
    width: 100%;
    max-width: 350px;
    box-sizing: border-box;
}

.strong-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.strong-card-icon {
    display: block;
    object-fit: contain;
    width: 50px;
    height: 50px;
    margin-left: 30px;
}

.strong-point {
    color: #004aad;
    font-size: 1.8rem;
    font-weight: 700;
}

.strong-card-underline {
    border-bottom: 4px #004aad dotted;
    height: 0;
    margin: 5px auto;
}

.strong-card-upper .strong-card-underline {
    width: 90%;
}

.strong-card-under .strong-card-underline {
    width: 85%;
}

.strong-desc {
    font-size: 1.4rem;
    margin: 5px 30px;
}

.gray-btn {
    display: inline-flex;
    width: 300px;
    background: #f2f2f2;
    padding: 10px 20px;
    margin: 10px auto 0;
    border-radius: 4px;

    text-decoration: none;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    box-shadow: 0 4px 5px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    -webkit-transition: transform 0.3s ease;
}

.gray-btn:hover {
    opacity: calc(0.8);
}

.gray-btn-text {
    color: #004aad;
    font-size: 1.4rem;
    width: 100%;
}

/* 【メイン】事例セクション */
.example-carousel {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    margin: 20px 0;
    justify-content: center;
    align-items: center;
}

.example-viewport {
    overflow: hidden;
    max-width: calc(360px * 3 + 20px * 2 + 40px);
    padding: 10px 20px;
    box-sizing: border-box;
}

.example-track {
    display: inline-flex;
    gap: 20px;
    transition: transform 0.8s ease;
    -webkit-transition: transform 0.8s ease;
    will-change: transform;
}

.example-nav {
    cursor: pointer;
    border: none;
    background: #f2f2f2;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    box-sizing: border-box;
}

.example-nav:disabled {
    cursor: default;
    opacity: 0.35;
}

.example-card {
    position: relative;
    display: flex;
    flex: 0 0 360px;
    flex-direction: column;
    width: 360px;
    padding-bottom: 20px;
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.example-card-img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 240px;
    margin: -20px 0 0;
}

.example-card-text {
    font-size: 1.8rem;
    font-weight: 700;
    padding: 10px 0;
}

.example-card-desc {
    font-size: 1.4rem;
    width: 100%;
    text-align: left;
    padding: 0 10px;
    box-sizing: border-box;
}

.example-track.no-transition {
  transition: none !important;
  -webkit-transition: none !important;
}

/* 【メイン】シート・加工セクション */
.seat-section {
    padding-bottom: 0;
}

.shuturyoku-item-list {
    width: 100%;
    padding: 20px;
    background: #d6f0f7;
    box-sizing: border-box;
}

.shuturyoku-item-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    width: 100%;
    padding: 10px 20px;
    gap: 10px;
    box-sizing: border-box;
}

.shuturyoku-item-card {
    width: 250px;
    height: 400px;
    background: #fff;
    border: 1px double #a6a6a6;
    border-radius: 20px;
    padding: 10px;
    box-sizing: border-box;
}

.shuturyoku-category {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.category-text {
    flex: 1;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
}

.category-icon-img {
    display: block;
    width: 50px;
    height: 50px;
    padding: 5px;
    margin-right: 10px;
    margin-left: auto;
    box-sizing: border-box;
    object-fit: cover;
}

.item-card-hr {
    width: 80%;
    height: 2px;
    background: #d9d9d9;
    border-radius: 10px;
    box-sizing: border-box;
}

.shuturyoku-item-viewport {
    width: 100%;
    height: 310px;
    padding: 2px 4px 0 0;
    margin: 10px 0;
    box-sizing: border-box;
    overflow-y :auto;
    -webkit-overflow-scrolling: touch;
}

.viewport-card:focus,
.viewport-card:focus-visible {
    outline: none;
}

.viewport-card {
    display: flex;
    flex-direction: column;
    width: 95%;
    max-width: 200px;
    border-radius: 10px;
    padding: 8px;
    margin: 0 auto 10px;
    box-sizing: border-box;
    box-shadow: 0 2px 5px rgba(0,0,0,0.25);
    cursor: pointer;
}

.viewport-card.is-hidden {
    display: none;
}

.viewport-card:has(.option-radio:checked) {
    border: 2px solid #039fe9;
    background-color: #e7f6ff;
    box-shadow: 0 0 0 3px rgba(3, 159, 233, 0.20);
}

.viewport-option {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.option-title {
    font-size: 1.2rem;
    font-weight: 700;
}

.option-desc {
    font-size: 1.1rem;
    margin: 5px;
}

.viewport-pill-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.viewport-pill-short,
.viewport-pill-middle,
.viewport-pill-long,
.viewport-pill-outdoor,
.viewport-pill-indoor,
.viewport-pill-triangul,
.viewport-pill-uv {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 5px;
    border-radius: 999px;
    box-sizing: border-box;
    box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

.viewport-pill-short {
    background: #fcf235;
}

.viewport-pill-middle {
    background: #ffbd32;
}

.viewport-pill-long {
    background: #f573ca;
}

.viewport-pill-outdoor {
    background: #86ccfe;
}

.viewport-pill-indoor {
    background: #d9d9d9;
}

.viewport-pill-triangul {
    background: #ffde59;
}

.viewport-pill-uv {
    background: #adff8a;
}

.viewport-pill-text {
    font-size: 0.9rem;
    font-weight: 700;
}

.combination-icon-img {
    display: block;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    object-fit: cover;
}

.recomand-notes-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 5px;
}

.recomand-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 30px;
}

.recomand-search-btn,
.recomand-estimate-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 300px;
    height: 40px;
    border-radius: 9999px;
    padding: 10px 20px;
    margin: 10px 0;
    box-sizing: border-box;
    text-decoration: none;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

.recomand-search-btn {
    background: #a6a6a6;
}

.recomand-estimate-btn {
    background: #e60382;
}

.recomand-estimate-text {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
}

.recomand-estimate-arrow {
    position: absolute;
    right: 20px;
    color: #fff;
    font-size: 1.4rem;
}

.recomand-estimate-btn:hover,
.recomand-search-btn:hover {
    transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
}

.recomand-search-btn:hover {
    background: #fff;
    border: 1px solid #a6a6a6;
    color: #a6a6a6;
}

.recomand-search-btn:hover .recomand-estimate-text,
.recomand-search-btn:hover .recomand-estimate-arrow {
    color: #a6a6a6;
}

.recomand-estimate-btn:hover {
    background: #fff;
    border: 1px solid #e60382;
    color: #e60382;
}

.recomand-estimate-btn:hover .recomand-estimate-text,
.recomand-estimate-btn:hover .recomand-estimate-arrow {
    color: #e60382;
}

.recommend_overlay {
    position: fixed;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.recommend_overlay.is-open {
    display: flex;
}

.recommend_box {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: #fff;

    border-radius: 10px;
    padding: 20px;
    margin: 10px auto;
    box-sizing: border-box;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.recommend_close_btn {
    position: absolute;
    cursor: pointer;
    top: 10px;
    right: 15px;
    border: none;
    background: transparent;
    font-size: 2.4rem;
}

body.is-modal-open {
    overflow: hidden;
}

.recommend_heading {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 700;
}

.recommend_form {
    display: flex;
    flex-direction: column;
}

.recommend_field {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: center;
    justify-items: center;
    box-sizing: border-box;
}

.recommend_label {
    font-size: 1.6rem;
    font-weight: 700;
}

.recommend_input {
    width: 100%;
    margin: 10px;
    box-sizing: border-box;
}

.recommend_select {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    font-size: 1.6rem;
}

.fild-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 60px;
}

.recommend_fild_btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.recommend_btn,
.reset_btn {
    width: 200px;
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 10px 20px;
    margin-top: 10px;
    box-sizing: border-box;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);

    color: #fff;
    font-size: 1.4rem;

    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

.recommend_btn {
    background: #039fe9;
}

.reset_btn {
    background: #a6a6a6;
}

.recommend_btn:hover {
    background: #fff;
    border: 1px solid #1b005d;
    color: #1b005d;
    transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
}

.reset_btn:hover {
    background: #fff;
    border: 1px solid #a6a6a6;
    color: #a6a6a6;
    transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
}

/* 【メイン】フローセクション */
.flow-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 210px;
    background: #fff;
    border: 4px solid #86ccfe;
    border-radius: 10px;
    padding: 20px 10px;
    margin: 10px 0;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);

    opacity: 0;
    transform: translateY(80px);
    transition: all 0.6s ease-out;
}

.flow-card.show {
    opacity: 1;
     transform: translateY(0);
}

.flow-card[data-step="1"] { transition-delay: 0.0s; }
.flow-card[data-step="2"] { transition-delay: 0.1s; }
.flow-card[data-step="3"] { transition-delay: 0.2s; }
.flow-card[data-step="4"] { transition-delay: 0.3s; }
.flow-card[data-step="5"] { transition-delay: 0.4s; }

.flow-card::before {
    content: attr(data-step);
    position: absolute;
    display: flex;
    top: -10px;
    left: -10px;

    width: 60px;
    height: 40px;
    background: #86ccfe;
    border-radius: 10px;
    padding: 5px 0 0 5px;
    box-sizing: border-box;

    color: #fff;
    font-size: 2.0rem;
    font-weight: 700;
    align-items: center;
    justify-content: center;
}

.flow-section .persona-underline {
    width: 80%;
    height: 1px;
}

.flow-icon {
    display: block;
    object-fit: contain;
    width: 130px;
    height: 110px;
    padding: 10px;
}

/* 【メイン】Q＆Aセクション */
.qa-container {
    display: flex;
    width: 100%;
    max-width: 1100px;
    background: #d6f0f7;
    border-radius: 10px;
    padding: 10px;
    margin: 10px auto;
    gap: 20px;
}

.qa-left {
    display: flex;
    margin: 0;
}

.qa-icon {
    display: block;
    object-fit: contain;
    width: 70px;
    height: 70px;
}

.qa-right {
    width: 100%;
}

.qa-right-question {
    cursor: pointer;
    display: flex;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 20px 0;
    margin: 0;
    align-items: center;
    justify-content: space-between;
}

.qa-right-toggle {
    cursor: pointer;
    color: #a6a6a6;
    font-size: 2.0rem;
    font-weight: 700;
    background: none;
    border: none;
}

.qa-answer-box {
    width: 1000px;
    max-height: 0;
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    overflow: hidden;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
}

.qa-answer-box.is-open {
    max-height: 500px;
    padding: 10px;
}

.qa-answer {
    font-size: 1.4rem;
}

.qa-display-btn,
.qa-hide-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 300px;
    background: #000;
    border-radius: 999px;
    padding: 10px 20px;
    margin: 20px auto 0;
    box-sizing: border-box;
}

.qa-hide-btn,
.qa-extra {
    display: none;
}

.qa-btn-text {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
}

.qa-btn-arrow {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 999px;
    box-sizing: border-box;

    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    right: 40px;
}

.qa-display-btn:hover,
.qa-hide-btn:hover {
    cursor: pointer;
    background: #fff;
    outline: 1px solid #000;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

.qa-display-btn:hover .qa-btn-text,
.qa-hide-btn:hover .qa-btn-text {
    color: #000;
}

.qa-display-btn:hover .qa-btn-arrow,
.qa-hide-btn:hover .qa-btn-arrow {
    color: #fff;
    background: #000;
}

/* 【メイン】問い合わせセクション */
.contact-section .parallelogram-box {
    background: #1b005d;
}

.two-btn-container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin: 40px auto;
    align-items: center;
    justify-content: center;
}

.two-btn-desc {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 3px 0;
    text-align: center;
}

.pink-btn,
.green-btn {
    position: relative;
    display: flex;
    width: 400px;
    border-radius: 10px;
    padding: 15px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

.pink-btn {
    background:linear-gradient(to bottom, #e60382 0%, #f573ca 40%, #ffaeff 100%);
}

.green-btn {
    background:linear-gradient(to bottom, #007e50 0%, #40b603 40%, #7ed957 100%);
}

.pink-btn:hover,
.green-btn:hover {
    cursor: pointer;
    transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
}

.two-btn-text {
    flex: 1;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
}

.two-btn-arrow {
    position: relative;
    right: 20px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
}

.btn-guid {
    width: 900px;
    margin: 0 auto;
    table-layout: fixed;
    border-collapse: collapse;
}

.btn-guid th,
.btn-guid td {
    border: 1px solid #333;
    padding: 10px;
    box-sizing: border-box;
    font-size: 1.3rem;
}

.btn-guid th:nth-child(1),
.btn-guid td:nth-child(1) {
    width: 120px;
    background: #bfe5f0;
    font-weight: 700;
    text-align: center;
}

.btn-guid th:nth-child(2),
.btn-guid td:nth-child(2),
.btn-guid th:nth-child(3),
.btn-guid td:nth-child(3) {
    width: 390px;
}

.btn-guid th:nth-child(2),
.btn-guid th:nth-child(3) {
    color: #fff;
}

.btn-guid th:nth-child(1) {
    background: #d9d9d9;
}

.btn-guid td:nth-child(1) {
    background: #f2f2f2;
}

.btn-guid th:nth-child(2) {
    background: #e60382;
}

.btn-guid th:nth-child(3) {
    background: #007e50;
}

.tel-box {
    width: 100%;
    max-width: 1100px;
    background: #fff;
    border: 10px #74afbf solid;
    padding: 10px;
    margin: 40px auto 0;
    box-sizing: border-box;
    text-align: center;
}

.tel-number-container {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 400px;
    margin: 0 auto;
    gap: 10px;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    -webkit-transition: transform 0.4s ease;
}

.tel-number-container:hover {
    transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
}

.tel-number-icon {
    display: block;
    object-fit: contain;
    width: 50px;
    height: 50px;
}

/* フッター */
.adv-name {
    font-size: 2.0rem;
    font-weight: 700;
}

.site-footer {
    margin: 20px 0;
    text-align: center;
}

.adv-adress {
    font-size: 1.5rem;
}

.adv-adress a {
    color: #232323;
    text-decoration: none;
}

.blog-link {
    font-size: 2.0rem;
    margin: 10px 0;
}

.hp-link a{
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
}

.footer-logo {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.adv-logo {
    display: block;
    object-fit: contain;
    width: 200px;
    height: 50px;
}

.footer-link {
    margin: 10px 0;
}

.footer-link:hover {
    opacity: calc(0.7);
}

.footer-bottom {
    display: flex;
    width: 100%;
    height: 40px;
    background: #74afbf;
    align-items: center;
}

.footer-bottom-left,
.scroll-top-btn {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.footer-bottom-center {
    flex: 1;
    text-align: center;
}

.scroll-top-btn {
    background: #000;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
}

/* ===== レスポンシブ（タブレット）===== */
@media screen and (max-width: 1025px) {
  .tel-number-text {
    font-size: 2.5rem;
  }

  .medium-heading,
  .cta-btn-text,
  .two-btn-text,
  .two-btn-arrow,
  .tel-box-heading {
    font-size: 1.8rem;
  }

  .strong-point,
  .example-card-text,
  .step-text,
  .qa-right-question {
    font-size: 1.6rem;
  }

  .parallelogram-text,
  .small-heading,
  .navy-btn-text,
  .navy-btn-arrow,
  .persona-list li,
  .section-desc,
  .example-card-desc,
  .step-desc,
  .tel-box-text {
    font-size: 1.4rem;
  }

  .two-btn-desc,
  .tel-box-hour {
    font-size: 1.2rem;
  }

  .five-card-text {
    font-size: 1.1rem;
  }

  .site-header {
    height: auto;
    padding: 10px 0;
  }

  .header-inner {
    width: 95%;
    padding: 10px 12px;
    flex-direction: row;
    align-items: center;
    margin: 0;
  }

  .header-logo {
    width: auto;
  }

  .logo-img {
    width: auto;
    height: 50px;
  }

  .hero-img {
    display: block;
    width: 100%;
    margin: 0;
  }

  .double-box {
    max-width: 600px;
  }

  .mitumori-img,
  .manager-img {
    display: none;
  }

  .blue-box {
    max-width: 990px;
}

  .persona-card-container {
    gap: 20px;
  }

  .persona-card {
    max-width: 300px;
  }


  .persona-icon {
    width: 110px;
  }

  .persona-list li::before {
    left: 20px;
  }

  .five-card-container {
    gap: 20px;
  }

  .service-icon {
    width: 120px;
    height: 120px;
  }

  .service-card {
    max-width: 150px;
    padding: 10px 0;
  }

  .strong-card-large {
    max-width: 480px;
    padding: 20px 0;
  }

  .strong-card-small {
    max-width: 312px;
    padding: 20px 0;
  }

  .strong-desc {
    margin: 5px 17px;
  }

  .example-card {
    max-width: 285px;
  }

  .example-card-img {
    max-width: 285px;
    height: 200px;
    margin-top: -30px;
  }

  .shuturyoku-item-card {
    height: 300px;
  }

  .shuturyoku-item-viewport {
    height: 210px;
  }

  .viewport-pill-text {
    font-size: 0.8rem;
  }

  .recomand-notes-wrapper {
    width: 930px;
  }

  .flow-section .five-card-container {
    gap: 10px;
  }

  .flow-card {
    max-width: 190px;
  }

  .flow-icon {
    max-width: 130px;
    max-height: 110px;
  }

  .five-card-text {
    font-size: 1.4rem;
  }

  .five-card-desc {
    font-size: 1.1rem;
  }

  .qa-container {
    max-width: 900px;
  }

  .qa-right-question {
    max-width: 800px;
  }

  .tel-box {
    max-width: 900px;
  }
}

/* ===== レスポンシブ（スマホ）===== */
@media screen and (max-width: 767px) {
  .sp-only {
    display: inline;
  }

  .sp-hide {
    display: none !important;
  }

  .tel-number-text {
    font-size: 2.5rem;
  }

  .medium-heading,
  .cta-btn-text,
  .two-btn-text,
  .two-btn-arrow,
  .tel-box-heading {
    font-size: 1.8rem;
  }

  .strong-point,
  .example-card-text,
  .step-text,
  .qa-right-question {
    font-size: 1.6rem;
  }

  .parallelogram-text,
  .small-heading,
  .navy-btn-text,
  .navy-btn-arrow,
  .persona-list li,
  .section-desc,
  .example-card-desc,
  .step-desc,
  .tel-box-text {
    font-size: 1.4rem;
  }

  .two-btn-desc,
  .tel-box-hour {
    font-size: 1.2rem;
  }

  .five-card-text {
    font-size: 1.1rem;
  }

  /* ヘッダー：高さ固定をやめる */
  .site-header {
    height: auto;
    padding: 10px 0;
  }

  .header-inner {
    width: 90%;
    padding: 10px 12px;
    flex-direction: row;
    align-items: center;
    margin: 0;
  }

  .header-logo {
    width: auto;
  }

  .logo-img {
    width: auto;
    height: 50px;
  }

  /* 連絡先：中央寄せ＋折り返し */
  .header-contact {
    align-items: center;
    text-align: center;
  }

  .contact-item,
  .business-hours {
    display: none;
  }

  .header-banner-img {
    width: auto;
    height: 50px;
  }

  .double-box-wrapper{
    padding: 0 12px;
  }

  .double-box{
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: -100px auto 0;
    padding: 10px;
  }

  .medium-heading{
    margin: 8px auto;
  }

  /*ヒーローバナー*/
  .hero {
    display: none;
  }

  .sp-hero {
    display: block;
    width: 100%;
    margin: 0;
  }

  .sp-hero-img {
    display: block;
    object-fit: cover;
    width: 100%;
    transform: translateY(-10px);
  }

  /* 見積ボタン */
  .navy-btn {
    width:  250px;
    padding: 4px 10px;
    grid-template-columns: 36px 1fr 24px;
  }

  .navy-btn-icon {
    width: 30px;
    height: 30px;
  }

  .mitumori-img,
  .manager-img {
    display: none;
  }

  .parallelogram-box {
    max-width: 200px;
    padding: 5px 15px;
  }

  .blue-box {
    width: 95%;
    max-width: 360px;
    padding: 15px 15px;
  }

  .persona-card-container {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 15px;
  }

  .persona-card{
    width: 100%;
    max-width: 320px;
    padding: 10px 5px
  }

  .persona-icon {
    width: 100px;
    height: 100px;
  }

  .persona-list li {
    width: 250px;
    margin: 5px;
  }

  .persona-list li::before {
    left: 0px;
}

/* 5枚を 上3・下2（中央配置）に固定 */
  .five-card-container{
    width: 95%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    margin: 10px;
    justify-items: center;
  }

/* 上3枚 */
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3) {
    grid-column: span 2;
  }

/* 下2枚（中央寄せ） */
  .service-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .service-card:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .service-card {
    width: 110px;
    padding: 0;
    margin: 5px 0;
  }

  .service-icon {
    width: 95px;
    height: 95px;
    box-sizing: border-box;
  }

  .cta-btn {
    width: 100%;
    max-width: 270px;
  }

  .strong-card-upper,
  .strong-card-under {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .strong-card-large,
  .strong-card-small {
    width: 100%;
    max-width: 330px;
    height: auto;
    padding: 20px 0;
  }

.example-carousel {
    gap: 5px;
    margin: 20px 10px 0;
    align-items: center;
}

  .example-viewport {
    width: 100%;
    height: 360px;
    margin-left: 0 auto;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
  }

  .example-track {
    display: flex;
    gap: 10px;
  }

  .example-card {
    flex: 0 0 280px;
    width: 280px;
    margin-left: 1px;
  }

 .example-nav {
    width: 30px;
    height: 30px;
 }

  .example-card-img {
    display: block;
    width: 280px;
    height: 200px;
    object-fit: cover;
    box-sizing: border-box;
   }

  .sp-flow-container {
    width: 100%;
  }

  .sp-flow-card {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 8px;
    gap: 10px;
    margin: 20px auto;
    width: 95%;
    border: solid 4px #86ccfe;
    border-radius: 4px;
    box-sizing: border-box;
  }

  .flow-step-img {
    display: block;
    width: 38px;
    height: 38px;
    margin-left:5px ;
    box-sizing: border-box;
    object-fit: cover;
  }

  .step-detail {
    flex: 1;
  }

  .step-text {
    color: #86ccfe;
    font-weight: 700;
    margin: 0;
  }

  .sp-flow-card{
    position: relative;
  }

  .sp-flow-card:not(:last-child)::before,
  .sp-flow-card:not(:last-child)::after{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
  }

  .sp-flow-card:not(:last-child)::before{
    bottom: -17px;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 16px solid #86ccfe;
  }

  .sp-flow-card:not(:last-child)::after{
    bottom: -10px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #ffffff;
  }

  .qa-container {
    width: 100%;
    max-width: 340px;
    gap: 5px;
  }

  .qa-icon {
    margin-top: 10px;
  }

  .qa-right {
    max-width: 260px;
  }

  .qa-answer-box {
    max-width: 260px;
  }

  .two-btn-container {
    flex-direction: column;
    margin: 10px auto;
    gap: 5px;
  }

  .pink-btn,
  .green-btn {
    width: 300px;
    padding: 10px 15px;
    margin: 0 auto;
  }

  .btn-guid {
    display: none;
  }

  .tel-box {
    width: 100%;
    max-width: 340px;
  }

  .tel-number-container {
    width: 100%;
    max-width: 320px;
  }

  .tel-number-icon {
    width: 36px;
    height: 36px;
  }

/* 【メイン】シート・加工セクション*/
  .shuturyoku-item-container {
    flex-direction: column;
    width: 100%;
    padding: 10px 0;
  }

  .shuturyoku-item-card {
    width: 100%;
    height: 190px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .shuturyoku-item-viewport {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 95%;
    height: 120px;
    padding: 2px 4px 0;
    margin: 5px auto;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .viewport-card {
    flex: 0 0 275px;
    max-width: 275px;
    height: 100px;
    margin: 0 auto;
  }

  .item-card-hr {
    width: 90%;
    margin: 0 auto;
  }

  .recomand-btn-wrapper{
    width: 100%;
    flex-direction: column;
    gap: 0;
  }

  .recomand-notes-text {
    font-size: 0.8rem;
  }

  .recommend_heading {
    font-size: 1.6rem;
  }

  .category-text {
    font-size: 1.4rem;
    margin-left: 80px;
  }

  .category-icon-img {
    margin-right: 20px;
  }

  /*フッター*/
  .site-footer {
    width: 100%;
  }

  .footer-logo {
    gap: 5px;
  }

  .adv-logo {
    width: 100px;
  }

  .adv-name {
    font-size: 1.6rem;
  }

  .adv-adress {
    font-size: 1.2rem;
  }

  .blog-link {
    font-size: 1.6rem;
  }
}
