/*
Theme Name: GRADIF LP
Description: GRADIFのLP制作のLPです。
Version: 1.0
*/
body {
    margin: 0;
    font-family: "Zen Kaku Gothic New", sans-serif, "Shippori Mincho", serif;
    line-height: 1.7;
    color: #333;
    background: #fff;
}
/* --------------------
FV
--------------------- */
.first-view {
    width: 100%;
}
.first-view-inner {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}
.first-view-inner img {
    width: 100%;
    height: auto;
    display: block;
}
/* --------------------
CTA
--------------------- */
.cta-view {
    width: 100%;
}
.cta-view-inner {
    max-width: 1080px;
    margin: 0 auto;
    overflow: hidden;
}
.cta-view-inner img {
    width: 65%;
    height: auto;
    padding: 60px 0;
    margin: 0 auto;
    display: block;
}
.cta-btn {
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto;
    overflow: hidden;
}

/* 光の本体 */
.cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 30%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.5) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-20deg);
    animation: shine 3s infinite;
    pointer-events: none;
    z-index: 2;
}

/* 画像が下に来るように */
.cta-btn img {
    position: relative;
    z-index: 1;
}

/* アニメーション（ここ重要） */
@keyframes shine {
    0% {
        left: -150%;
    }
    20% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

@media screen and (max-width: 768px) {
    .cta-view-inner img {
        width: 90%;
        padding: 40px 0;
    }
}
/* --------------------
共通箇所
----------------------*/
.section-inner {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}
.section-inner img {
    max-width: 100%;
}
.section-title {
    font-family: "Shippori Mincho";
    font-size: 62px;
    line-height: 1.5;
    color: #9b984a;
    text-align: center;
    font-weight: normal;
    margin: 0;
    padding: 0 0 100px;
}
.section-text {
    margin: 0;
    font-size: 22px;
    text-align: center;
}
.sp {
    display: none;
}
@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    .section-inner {
        margin: 0 20px;
    }
    .section-title {
        font-size: 38px;
        padding: 0 0 30px;
    }
}
/* --------------------
オープニング
----------------------*/
.opening-section {
    width: 100%;
}
.opening-section .section-title {
    margin-top: 60px;
}
.line {
    width: 1px;
    height: 120px;
    background: #333;
    margin: 0 auto;
}
/* --------------------
problem
----------------------*/
.problem {
    margin-top: 150px;
}
.problem > img {
    width: 100%;
    margin: -90px 0;
}
@media screen and (max-width: 768px) {
    .problem {
        margin-top: 90px;
    }
    .problem > img {
        margin: 0;
    }
}
/* --------------------
problem before section
----------------------*/

.problem-before img {
    width: 100%;
    margin-top: 60px;
}
@media screen and (max-width: 768px) {
    .problem-before img {
        margin-top: 0px;
    }
}
/* --------------------
concept section
----------------------*/

.concept img {
    width: 100%;
}
.concept-img {
    margin: -60px 0;
}
@media screen and (max-width: 768px) {
    .concept-img {
        margin: 60px 0 30px;
    }
}
/* --------------------
planning section
----------------------*/
.planning {
    margin: 150px 0;
}
@media screen and (max-width: 768px) {
    .planning {
        margin: 90px 0 70px;
    }
}
/* --------------------
reason
----------------------*/
.reason {
    background-image: url(./images/reason-background.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    padding: 150px 0;
}
@media screen and (max-width: 768px) {
    .reason {
        background-image: url(./images/reason-background-sp.jpg);
        padding: 90px 0;
    }
}
/* --------------------
works
----------------------*/
.works {
    margin: 150px 0 60px;
}
@media screen and (max-width: 768px) {
    .works {
        margin: 90px 0 30px;
    }
}
/* --------------------
voice
----------------------*/
.voice {
    margin: 0;
}
.voice > .section-title {
    margin: 0;
    padding: 0 0 60px;
}
.voice-img {
    width: 100%;
    margin: 0 0 100px;
}
.voice .limited {
    background: #f5f4ed;
    padding: 90px 0 30px;
}
.limited-img {
    width: 80%;
    display: block;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
    .voice-img {
        margin: 0 0 90px;
    }
    .voice .limited {
        padding: 50px 0 0;
    }
    .limited-img {
        width: 100%;
    }
}
/* --------------------
flow
----------------------*/
.flow {
    margin: 150px 0;
}
@media screen and (max-width: 768px) {
    .flow {
        margin: 90px 0;
    }
}
/* --------------------
services
----------------------*/
.services {
    background: #f5f4ed;
    padding: 150px 0;
}
.service-item {
    max-width: 900px;
    border: 1px solid #9b984a;
    padding: 0;
    margin: 0 auto 20px;
}
.service-item :last-child {
    margin-bottom: 0;
}
.service-item h3 {
    color: #fff;
    text-align: center;
    background: #9b984a;
    padding: 20px;
    margin: 0;
    font-size: 24px;
    font-weight: normal;
    line-height: 1;
    letter-spacing: 1.75;
}
.service-item p {
    background: #fff;
    font-size: 18px;
    padding: 25px 50px;
    margin: 0;
}
.service-item p span {
    font-size: 14px;
}
@media screen and (max-width: 768px) {
    .services {
        padding: 90px 0 100px;
    }
    .service-item p {
        padding: 20px 35px;
        font-size: 16px;
    }
    .service-item p span {
        font-size: 12px;
    }
}
/* --------------------
このような方はご遠慮いただいております
----------------------*/
.not-for-you {
    background: #9b984a;
    color: #fff;
    padding: 150px 0;
}
.not-for-you > .section-inner > .section-title {
    color: #fff;
}
.not-for-you p {
    font-size: 24px;
    line-height: 2;
    text-align: center;
    letter-spacing: 0.15em;
}
.underline {
    margin: 0;
}
.underline span {
    position: relative;
    display: inline-block;
}
.underline span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: #fff;
}
.not-for-item-box {
    padding: 60px 20px;
}
.not-for-you-item {
    border: 1px solid #fff;
    padding: 30px 50px;
}
.ng-title {
    position: relative;
    display: inline-block;
    margin: 0;
}
.ng-title::before {
    content: "×";
    margin-right: 8px;
    font-weight: bold;
}
.ng-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 10px;
    background: #ffffff80;
}
.not-for-you h3 {
    font-size: 24px;
}
.not-for-you-item p {
    font-size: 21px;
    text-align: left;
    line-height: 1.5;
    margin: 20px 0 0;
}
@media screen and (max-width: 768px) {
    .not-for-you {
        padding: 90px 0;
    }
    .not-for-you > .section-inner > .section-title {
        font-size: 34px;
    }
    .not-for-you p {
        font-size: 16px;
    }
    .not-for-item-box {
        padding: 30px 0 0;
    }
    .not-for-you-item {
        padding: 20px 35px;
    }
    .not-for-you h3 {
        font-size: 21px;
    }
    .not-for-you-item p {
        font-size: 16px;
    }

}
/* --------------------
よくある質問
----------------------*/
.qa {
    margin: 150px 0;
}
.accordion-3 {
    max-width: 900px;
    margin: 0 auto 1em;
    background-color: #f5f4ed;
    border-radius: 5px;
}

.accordion-3 summary {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 20px 50px;
    color: #8f834d;
    font-weight: 600;
    cursor: pointer;
    font-size: 24px;
    font-family: "Shippori Mincho";
    font-weight: normal;
}

.accordion-3 summary::-webkit-details-marker {
    display: none;
}

.accordion-3 summary::after {
    width: 14px;
    height: 14px;
    margin-left: auto;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11 11V5H13V11H19V13H13V19H11V13H5V11H11Z' fill='%23333333'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    content: '';
    transition: transform .3s;
    opacity: 0.7;
}

.accordion-3[open] summary::after {
    transform: rotate(180deg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 11H19V13H5V11Z' fill='%23333333'%3E%3C/path%3E%3C/svg%3E");
}

.accordion-3 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 10px 50px 30px;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-3[open] p {
    transform: none;
    opacity: 1;
}

.accordion-3 summary::before {
    content: "Q";
    flex-shrink: 0;
    font-size: 32px;
    color: #8f834d;
    font-family: serif;
}
@media screen and (max-width: 768px) {
    .qa {
        margin: 90px 0;
    }
    .accordion-3 summary {
        padding: 20px 25px;
        font-size: 18px;
    }
    .accordion-3 p {
        font-size: 14px;
        padding: 0 25px 20px;
    }
}

/* --------------------
フッター
----------------------*/
.site-footer {
    padding: 24px;
    background: #9b984a;
    color: #fff;
    text-align: center;
}
.site-footer p {
    margin: 0;
}
.site-footer small {
    font-size: 12px;
}
.form {
    max-width: 600px;
    margin: 0 auto 100px;
}

.form-item {
    display: block;
}
.form-name {
    font-weight: bold;
}
.form-item label {
    font-size: 18px;
    font-weight: 800;
}
.form-check .wpcf7-list-item{
    width:100%;
    margin-bottom: 20px;
}

.form-check .wpcf7-list-item label{
    display:flex;
    align-items:flex-start;
    width:100%;
    font-size: 16px;
    font-weight: 400;
}

.form-check input[type="checkbox"]{
    flex:0 0 18px;
    margin:4px 12px 0 0;
}

.form-check .wpcf7-list-item-label{
    width:calc(100% - 30px);
}

.required {
    background: #9b984a;
    color: #fff;
    font-size: 14px;
    padding: 2px 6px;
    border-radius: 5px;
    margin: 0 0 0 10px;
}


.form-item input {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 10px 0 30px;
}
.form-item textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 10px 0 60px;
}


.form-btn input {
    display: block;
    width: 50%;
    margin: 0 auto;
    padding: 18px;
    cursor: pointer;
    background: linear-gradient(0deg, #ce1d5c, #f974a2);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.05em;
    border-radius: 7px;
}
.wpcf7 input[type="submit"] {
    background: linear-gradient(0deg, #ce1d5c, #f974a2);
    color: #fff;
    border: none;
    border-radius: 8px;

    /* 立体感の核心 */
    box-shadow: 0 4px 0 #8a1240;
    /* 押せそう感 */
    transform: translateY(0);
    transition: all 0.15s ease;
}

.wpcf7 input[type="submit"]:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #8a1240;
}

@media screen and (max-width: 768px) {
    .form {
        margin: 30px 10px;
    }

    .form-item input {
        width: 90%;
    }
    .form-item textarea {
        width: 90%;
        margin: 0 0 40px;
    }
    .form-check .wpcf7-list-item {
        width: 100%;
        margin: 0 0 20px;
    }
}
