@charset "UTF-8";

/* ====================
  変数
==================== */
/* ====================
  Reset / Base
==================== */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    color: #777;
    background: url("../img/washi-txillust5.png");
    line-height: 1.7;
    margin: 0;
}

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

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ====================
  共通
==================== */
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #e54747;
    margin-bottom: 48px;
}

main section {
    padding: 80px 20px;
}

[class$=__inner] {
    max-width: 1080px;
    margin: 0 auto;
}

body {
    padding-top: 80px;
    /* ヘッダーの高さ分 */
}

/* ====================
  Header
==================== */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: url("../img/washi-txillust5.png");
}
.header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 0;
}

.header__inner {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}

.header_head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.header__logo {
    font-size: 22px;
    font-weight: bold;
    z-index: 1;
}

.header__logoImg {
    width: 32px;
    z-index: 1;
}

.header__navList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    z-index: 1;
}

.header__navList a {
    font-size: 14px;
    z-index: 1;
}

.header__navList a:hover {
    color: #e54747;
    z-index: 1;
}

html {
    scroll-behavior: smooth;
}

.page-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    background: rgba(229, 71, 71, 0.9);
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 9999;
}



/* ====================
  Hamburger
==================== */
.hamburger {
    display: none;
    width: 32px;
    height: 24px;
    position: relative;
    border: none;
    background: none;
    cursor: pointer;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e54747;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 11px;
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

/* 開いた状態 */
.hamburger.is-open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 11px;
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 11px;
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1100;
    }

    .header__nav {
        position: fixed;
        inset: 0;
        background: rgba(255, 253, 242, 0.95);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        opacity: 0;
        pointer-events: none;
        -webkit-transition: opacity 0.3s;
        transition: opacity 0.3s;
        z-index: 1000;
    }

    .header__nav.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .header__navList {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 24px;
        font-size: 20px;
        text-align: center;
        padding: 0;
        width: 100%;
        height: 100%;
    }
}

/* ====================
  First View
==================== */
.fv {
    position: relative;
    background: url("../img/washi-txillust5.png");
    min-height: 83vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 140px;
    overflow: visible;
}

.fv::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 0;
}

.fv__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.fv__copy {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 24px;
    letter-spacing: 0.2em;
    color: #e54747;
    margin: 0 auto 32px;
}

.fv__line {
    position: relative;
    width: 100vw;
    height: 60px;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    overflow: hidden;
}

.fv__ornament {
    position: absolute;
    top: 50%;
    width: 100vw;
    max-width: none;
    min-width: 280px;
    height: 100px;
    background: url("../img/image 1.png") no-repeat center/contain;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.section-divider--fv {
    display: block;
    position: absolute;
    bottom: -70px;

    width: 100vw;
    /* ← 画面幅いっぱい */
    max-width: none;

    left: 50%;
    transform: translateX(-50%);
    /* ← 常に中央 */

    height: auto;
    z-index: 2;
    pointer-events: none;
}

.section-divider path {
    fill: none;
    stroke: #e54747;
    stroke-width: 2;
    stroke-linecap: round;
    opacity: 0.7;

    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    transition: stroke-dashoffset 4s ease-out;
}


@media screen and (max-width: 768px) {
    .fv {
        padding-bottom: 80px;
    }

    .fv__ornament {
        width: 100%;
    }
}

.fv__catch {
    position: absolute;
    left: 35%;
    -webkit-transform: translateX(-160%);
    transform: translateX(-160%);
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    white-space: nowrap;
    font-size: 14px;
    color: #333;
}

.fv__catch p {
    margin-bottom: 6px;
}

.fv__link {
    color: #e54747;
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px solid #f36c21;
    padding-bottom: 2px;
}

.fv__link:hover {
    opacity: 0.7;
}

@media screen and (max-width: 480px) {
    .fv__copy {
        writing-mode: vertical-rl;
        font-size: 20px;
        letter-spacing: 0.15em;
        margin-bottom: 24px;
    }

    .fv__line {
        height: 32px;
    }

    .fv__catch {
        position: static;
        -webkit-transform: none;
        transform: none;
        margin-top: 24px;
        text-align: center;
    }

    .fv__catch p {
        font-size: 14px;
        line-height: 1.8;
    }

    .fv__link {
        font-size: 14px;
    }
}

.page-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    border: 2px solid #e54747;
    text-decoration: none;
    font-size: 14px;
    background: transparent;
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.page-top:hover {
    opacity: 0.7;
    transform: translateY(-3px);
}

/* 最初は非表示 */
.page-top {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

/* スクロール後に表示 */
.page-top.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* ====================
/* ====================
  About
==================== */
.about {
    position: relative;
    overflow: visible;
    padding-top: 120px;
    /* ← divider分 */
    padding-bottom: 140px;
}


.about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 0;  
}

.about__inner {
    position: relative;
    z-index: 2;
}

.about__content {
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 40px;
}

.btn-about {
    display: inline-block;
    position: relative;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 500;
    color: #777;
    /* 文字色 */
    text-decoration: none;
    border: 2px solid #e54747;
    /* 外枠 */
    overflow: visible;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* 二重枠のための ::before */
.btn-about::before {
    content: "";
    position: absolute;
    top: 4px;
    /* 外枠より少しずらす */
    left: 4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #e54747;
    z-index: -1;
    /* テキストの背面 */
    transform: rotate(-2deg);
    /* 斜めにずらす */
}

/* ホバー時の演出 */
.btn-about:hover {
    color: #e54747;
    /* 文字色変化でアクセント */
    transform: translateY(-2px);
    /* 軽く浮かせる */
}

.btn-about:hover::before {
    transform: rotate(-2deg) scale(1.05);
    /* 少し大きくして立体感 */
}

.section-divider--about {
    display: block;
    position: absolute;
    bottom: -80px;

    width: 100vw;
    /* ← 画面幅いっぱい */
    max-width: none;

    left: 50%;
    transform: translateX(-50%) scaleX(-1);
    /* ← 常に中央 */

    height: auto;
    z-index: 1;
    pointer-events: none;
}

.section-divider path {
    fill: none;
    stroke: #e54747;
    stroke-width: 2;
    stroke-linecap: round;
    opacity: 0.7;

    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    transition: stroke-dashoffset 4s ease-out;
}


/* ====================
  プロフィール（写真＋文章）
==================== */
.about__profile {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.about__img {
    width: 140px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.about__text h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

/* ====================
  経歴 / スキル
==================== */
.about__columns {
    display: flex;
    gap: 40px;
    margin-top: 48px;
}

.about__career,
.about__skills {
    flex: 1;
}

.about__columns h2 {
    font-size: 20px;
    margin-bottom: 16px;
}

.about__skills ul {
    padding-left: 20px;
}

.about__skills li {
    margin-bottom: 8px;
}

/* ====================
  PC（1024px〜）
==================== */
@media screen and (min-width: 1024px) {
    .about__profile {
        align-items: flex-start;
        gap: 16px;
    }

    .about__img {
        width: 100px;
        opacity: 0.85;
    }

    .about__img img {
        filter: saturate(0.9);
    }
}

/* ====================
  SP（〜768px）
==================== */
@media screen and (max-width: 768px) {
    .about__profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about__img {
        width: 140px;
        margin-bottom: 24px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

    .about__columns {
        flex-direction: column;
        gap: 24px;
    }
}

/* ABOUT内のプロフィール画像だけ小さくする */
.about .wp-block-image {
    width: 70%;
    margin: 0;
    flex-shrink: 0;
}

.about .wp-block-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.about__profile .wp-block-column {
    flex: unset;
    width: auto;
}

.about__profile .wp-block-column:first-child {
    max-width: 120px;
}

/* ====================
  Service
==================== */
.service {
    position: relative;
    padding-bottom: 140px;
}

.service::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
}

.service__inner {
    position: relative;
    z-index: 1;
}

.service__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service__item {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
}

.service__item img {
    margin: 0 auto 16px;
    max-height: 120px;
}

.service__item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.service__item p {
    font-size: 14px;
    color: #777;
}

.section-divider--service {
    display: block;
    position: absolute;
    bottom: -80px;

    width: 100vw;
    /* ← 画面幅いっぱい */
    max-width: none;

    left: 50%;
    transform: translateX(-50%) ;
    /* ← 常に中央 */

    height: auto;
    z-index: 1;
    pointer-events: none;
}

.section-divider path {
    fill: none;
    stroke: #e54747;
    stroke-width: 2;
    stroke-linecap: round;
    opacity: 0.7;

    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    transition: stroke-dashoffset 4s ease-out;
}
/* ====================
  Works-topPage
==================== */
.works--top {
    position: relative;
    padding-bottom: 140px;
}

.works::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
}

.works__inner {
    position: relative;
    z-index: 1;
}

.works__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.works__item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.works__item img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.works__category {
    text-align: center;
    padding: 8px;
    font-size: 14px;
    background: #f5f5f5;
}

.works__linkP {
    color: #e54747;
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px solid #f36c21;
}

.works__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

/* ====================
  Works-secondPage
==================== */
.works--archive {
    position: relative;
    text-align: center;
    padding: 120px 20px;
    background: url("../img/washi-txillust5.png") no-repeat center/cover;
    overflow: hidden;
}

.works::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
}

.section-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 12px;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 60px;
    color: #e54747;
    letter-spacing: 0.1em;
}

.section-title__icon {
    width: 80px !important;
    height: auto !important;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
}

.works__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.works__bird img {
    width: 40px;
}

.works__lead {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

.works__category {
    display: inline-block;
    margin: 30px 0 15px;
    padding: 6px 20px;
    background: #d9f07f;
    border-radius: 20px;
    font-size: 16px;
}

.works__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.works__item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}


.works__name {
    margin-top: 12px;
    font-weight: bold;
}

.works__link {
    display: inline-block;
    margin-top: 6px;
    font-size: 13px;
    color: #f26a1b;
}

.works__other {
    margin-top: 40px;
    font-size: 14px;
}

.works__btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #f26a1b;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

.works {
    padding: 80px 0;
}

.works-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.work-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}

.work-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

.section-divider--works {
    display: block;
    position: absolute;
    bottom: -80px;

    width: 100vw;
    /* ← 画面幅いっぱい */
    max-width: none;

    left: 50%;
    transform: translateX(-50%) scaleX(-1);
    /* ← 常に中央 */

    height: auto;
    z-index: 1;
    pointer-events: none;
}

.section-divider path {
    fill: none;
    stroke: #e54747;
    stroke-width: 2;
    stroke-linecap: round;
    opacity: 0.7;

    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    transition: stroke-dashoffset 4s ease-out;
}


/* スマホ対応 */
@media screen and (max-width: 768px) {
    .works__grid {
        grid-template-columns: 1fr;
    }
}

/* ====================
  Flow
==================== */
.flow {
    position: relative;
    padding-bottom: 140px;
}

.flow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
}

.flow__inner {
    position: relative;
    z-index: 1;
}

.flow__list {
    display: grid;
    gap: 64px;
    justify-items: center;
}

.flow__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.flow .flow__item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -48px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 2px;
    height: 32px;
    background: #e54747;
}

.flow .flow__item:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -64px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #e54747;
}

.flow_picture {
    width: 120px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.flow__text h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.flow__text p {
    font-size: 14px;
    color: #777;
}
.section-divider--flow {
    display: block;
    position: absolute;
    bottom: -80px;

    width: 100vw;
    /* ← 画面幅いっぱい */
    max-width: none;

    left: 50%;
    transform: translateX(-50%) scaleX(-1);
    /* ← 常に中央 */

    height: auto;
    z-index: 1;
    pointer-events: none;
}

.section-divider path {
    fill: none;
    stroke: #e54747;
    stroke-width: 2;
    stroke-linecap: round;
    opacity: 0.7;

    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    transition: stroke-dashoffset 4s ease-out;
}

/* ====================
  Responsive（SP）
==================== */
@media screen and (max-width: 768px) {
    .flow__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

    .flow_picture {
        width: 100px;
    }
}

/* ====================
  Price
==================== */
.price {
    position: relative;
    text-align: center;
}

.price::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
}

.price__inner {
    position: relative;
    z-index: 1;
}

.price__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.price__item {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    width: 260px;
    text-align: center;
}

.price__cost {
    margin-top: 16px;
    font-size: 20px;
    font-weight: bold;
    color: #e54747;
}

.inner_text {
    text-align: center;
    font-size: 14px;
    color: #777;
}

.section-divider--price {
    display: block;
    position: absolute;
    bottom: -80px;

    width: 100vw;
    /* ← 画面幅いっぱい */
    max-width: none;

    left: 50%;
    transform: translateX(-50%) ;
    /* ← 常に中央 */

    height: auto;
    z-index: 1;
    pointer-events: none;
}

.section-divider path {
    fill: none;
    stroke: #e54747;
    stroke-width: 2;
    stroke-linecap: round;
    opacity: 0.7;

    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    transition: stroke-dashoffset 4s ease-out;
}
/* ====================
  Contact
==================== */
.contact {
    position: relative;
    text-align: center;
    padding: 120px 20px;
    background: url("../img/washi-txillust5.png") no-repeat center/cover;
    overflow: hidden;
}

.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.contact__inner {
    position: relative;
    z-index: 2;
}

.contact .section-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 12px;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 60px;
    color: #e54747;
    letter-spacing: 0.1em;
}

.contact .section-title__icon {
    width: 80px !important;
    height: auto !important;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
}


.contact__text {
    color: #777;
    line-height: 2;
    margin-bottom: 32px;
}

.contact__btn {
    display: inline-block;
    background: #e54747;
    color: #fff;
    padding: 12px 32px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.contact__btn:hover {
    opacity: 0.8;
}

.contact__form-wrapper {
    max-width: 600px;
    /* フォーム最大幅 */
    margin: 0 auto;
    /* 中央寄せ */
    padding: 20px;
    box-sizing: border-box;
}

.contact__form-wrapper .wpcf7-form p {
    margin-bottom: 20px;
}

.contact__form-wrapper input[type="text"],
.contact__form-wrapper input[type="email"],
.contact__form-wrapper input[type="tel"],
.contact__form-wrapper textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 16px;
}

.contact__form-wrapper input[type="checkbox"] {
    margin-right: 10px;
}

.contact__form-wrapper .wpcf7-submit {
    display: block;
    width: 50%;
    min-width: 150px;
    max-width: 300px;
    margin: 20px auto 0 auto;
    padding: 12px;
    background-color: #333;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
}

.contact__form-wrapper .wpcf7-submit:hover {
    background-color: #555;
}

/* スマホ対応 */
@media screen and (max-width: 480px) {
    .contact__form-wrapper {
        padding: 15px;
    }

    .contact__form-wrapper .wpcf7-submit {
        width: 80%;
    }
}



/* ====================
  Responsive（SP）
==================== */
@media screen and (max-width: 768px) {
    .about__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .about__img,
    .about__text {
        width: 100%;
    }

    .service__list {
        grid-template-columns: 1fr;
    }

    .works__list {
        grid-template-columns: 1fr;
    }

    .price__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .flow__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }
}

/* ====================
privacy
==================== */
.privacy {
    padding: 60px 20px;
    background: url("../img/washi-txillust5.png") no-repeat center/cover;
}

.privacy::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
}

.privacy__inner {
    margin: 0 auto;
    padding: 40px;
    border-radius: 12px
}

.privacy__title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #e54747;
}

.privacy h2 {
    font-size: 18px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.privacy p {
    line-height: 1.8;
    font-size: 15px;
}

.privacy__btn {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 40px auto 0;
    background: #e54747;
    color: #fff;
    padding: 12px 32px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: bold;
}

.privacy__btn:hover {
    opacity: 0.8;
}

.privacy__contact-text {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
}

.privacy__contact-btn {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 16px auto 0;
    background: #e54747;
    color: #fff;
    padding: 12px 36px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.privacy__contact-btn:hover {
    opacity: 0.8;
}

/* ====================
コンタクトフォーム
==================== */
/* 入力欄 共通 */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    /* iOS拡大防止 */
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #e54747;
    box-shadow: 0 0 0 3px rgba(229, 71, 71, 0.15);
}

.wpcf7-form textarea {
    min-height: 160px;
    resize: vertical;
}

.wpcf7-not-valid-tip {
    color: #e54747;
    font-size: 13px;
    margin-top: 6px;
    display: block;
}

.wpcf7-response-output {
    border: none;
    background: #fff5f5;
    color: #e54747;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 24px;
}

.contact__agree {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    margin-top: 10px;
}

.contact__agree input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.wpcf7-submit {
    display: block;
    width: 60%;
    max-width: 280px;
    margin: 32px auto 0;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    background: #e54747;
    color: #fff;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: opacity .2s, transform .1s;
}

.wpcf7-submit:hover {
    opacity: 0.85;
}

.wpcf7-submit:active {
    transform: translateY(1px);
}

.wpcf7-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media screen and (max-width: 480px) {
    .wpcf7-submit {
        width: 80%;
    }
}

/* ====================
thanksPage
==================== */

.thanks {
    position: relative;
    min-height: 100vh;
    padding: 120px 20px 120px;
    background: url("../img/washi-txillust5.png") no-repeat center / cover;
    overflow: hidden;
}

/* ★背景を薄くするための白レイヤー */
.thanks::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
    /* ← ここで薄さ調整 */
    z-index: 1;
}

.thanks__contents {
    display: flex;
    justify-content: center;
}

.thanks-topImage {
    width: 80px;
    /* ←ここを調整 */
    height: auto;
    max-width: 100%;
}

/* 中身は必ず前面に */
.thanks__inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.thanks__btn {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 40px auto 0;
    background: #e54747;
    color: #fff;
    padding: 12px 32px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: bold;
}

/* プライバシーポリシー */
.privacy {
    position: relative;
    min-height: 100vh;
    padding: 120px 20px 120px;
    background: url("../img/washi-txillust5.png") no-repeat center / cover;
    overflow: hidden;
}


/* ★背景を薄くするための白レイヤー */
.privacy::before {
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.5);
    padding: 40px;
    border-radius: 12px;
}

.privacy__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}


.privacy__title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #e54747;
}

.privacy h2 {
    font-size: 18px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.privacy p {
    line-height: 1.8;
    font-size: 15px;
}

.privacy__btn {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 40px auto 0;
    background: #e54747;
    color: #fff;
    padding: 12px 32px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: bold;
}

.privacy__btn:hover {
    opacity: 0.8;
}

.privacy__contact-text {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
}

.privacy__contact-btn {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 16px auto 0;
    background: #e54747;
    color: #fff;
    padding: 12px 36px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.privacy__contact-text,
.privacy__contact-btn,
.privacy__btn {
    position: relative;
    z-index: 10;
}


.footer {
    position: relative;
    text-align: center;
    background: #fff;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.footer * {
    position: relative;
    z-index: 2;
}