@charset "utf-8";
@media screen and (min-width: 960px) {
    /* 960px以上に適用されるCSS（PC用） */

    /* 全体 */
    html {}

    :root {
        --max: 1200px;
        --gutter: clamp(70px, 4vw, 0px);
    }

    * {
        box-sizing: border-box;
    }

    html,
    body {
        font-family: 'Yu Gothic', '遊ゴシック', 'ヒラギノ角ゴシック', 'MSゴシック', sans-serif;
        margin: 0;
    }

    .band {
        width: 100%;
    }

    .wrap {
        max-width: var(--max);
        margin-inline: auto;
        text-align: center;
        padding-inline: var(--gutter);
    }

    .wrap a {
        display: block;
        width: max-content;
        margin-inline: auto;
    }

    h1 {
        font-size: 38px;
        margin: 0;
    }

    h2 {
        font-size: 21px;
        margin: 0;
    }

    h3 {
        color: #2C3E50;
        font-size: 16px;
        margin: 0;
    }

    p {
        font-size: 16px;
        font-weight: bold;
        margin: 0;
    }

    ul {
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    li {
        font-weight: bold;
    }

    .br-mb {
        display: none;
    }

    .br-pc {
        display: block;
    }

    img {
        display: block;
        max-width: 60%;
        height: auto;
    }

    /* ///////////////////////共通部品/////////////////// */
    /* ボタン */

    .button {
        font-size: 32px;
        text-decoration: none;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin-inline: auto;
        padding: 1em 2.5em;
        border-radius: 10px;
        font-size: 1em;
        font-weight: bold;
        box-shadow: 0 2px 3px rgb(0 0 0 / 25%), 0 2px 3px -2px rgb(0 0 0 / 15%);
    }

    .button::after {
        transform: rotate(45deg);
        width: 5px;
        height: 5px;
        margin-left: 10px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        content: '';
        display: inline-block;
    }

    /* 見出し */

    .sub-title {
        font-size: 34px;
        margin-top: 150px;
        margin-bottom: 90px;
        position: relative;
        text-align: center;
    }

    .sub-title::before {
        background-color: #2C3E50;
        border-radius: 5px;
        bottom: -20px;
        content: "";
        height: 2px;
        left: 50%;
        position: absolute;
        transform: translateX(-50%);
        width: 60px;
    }




    /* 吹き出し */
    .item-right,
    .item-left {
        position: relative;
        display: inline-block;
        margin: 1.5em 15px 1.5em 0;
        padding: 30px 24px;
        min-width: 120px;
        max-width: 100%;
        color: #3C3C3C;
        font-size: 16px;
        background: #DED7C8;
        border-radius: 10px;
    }

    .item-right:before,
    .item-left:before {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-top: -0px;
        border: 15px solid transparent;
        border-top: 15px solid #DED7C8;
    }

    .item-right p,
    .item-left p {
        margin: 0;
        padding: 0;
    }

    /* ////////////////////////実際のページ////////////////////// */

    /* ヘッダー */

    header {
        height: 60px;
        padding: 0;
        text-align: left;
        background-color: #DED7C8;
    }

    .header-inner {
        min-width: 0;
        min-height: 0;
        overflow: hidden;
        max-width: var(--max-width);
        height: 60px;
        /* padding: 0.5em 25px; */
        padding-left: 0;
        margin: 0 auto;
        display: flex;
        align-items: left;
        position: relative;
    }

    .header-inner img {
        object-fit: contain;
    }


    /* //////////////////ヒーローセクション //////////////////////// */


    .band--hero {
        height: 700px;
        padding-top: 54px;
        padding-bottom: 60px;
        background-size: cover;
        background-position: center;
        background-image: url(img/KeyVisual.jpeg);
        background-color: rgba(90, 90, 90, 0.8);
        background-blend-mode: lighten;
    }

    .band--hero h1,
    .band--hero h2,
    .band--hero a {
        color: rgb(255, 255, 255);
        text-align: left;
        text-shadow: 0 3px 6px #0C215B;

    }

    .band--hero .main-copy {
        margin-top: 100px;
    }

    .sub-copy {
        margin-top: 17px;
    }

    .band--hero .button {
        margin-top: 120px;
        background-color: #0F121B;
        font-size: 1.2em;
        border: 2px solid #fff;
    }

    /* ////////////////////問いかけセクション///////////////////// */

    .band--problem .sub-title {
        margin-bottom: 130px;
    }

    .band--problem .copy-problem {
        margin-top: 60px;
        font-size: 24px;
    }

    .band--problem ul {
        display: flex;
        justify-content: space-between;
    }

    .band--problem .item-right,
    .band--problem .item-left {
        width: 300px;
        padding: 40px 24px;
        margin-top: 0;
        margin-bottom: 40px;
        min-height: 89px;
        display: inline-block;
        text-align: justify;
    }

    .band--problem .item-right,
    .band--problem .item-left {
        width: 300px;
        padding: 40px 24px;
        margin-top: 0;
        margin-bottom: 40px;
        min-height: 89px;
        display: inline-block;
        text-align: justify;
    }

    .band--problem .item-right:before,
    .band--problem .item-left:before {
        transform: translateX(-50%);

    }

    .band--problem .button {
        font-size: 1.2em;
        color: #ffffff;
        border: 2px solid #ffffff;
        justify-content: center;
        margin-top: 40px;
        background-color: #6C7B95;
    }

    .band--problem .button::after {
        border-top: 2px solid #ffffff;
        border-right: 2px solid #ffffff;
    }

    /* ////////////////////munyセクション/////////////////// */

    .band--muny {
        height: 700px;
    }

    .container {
        display: flex;
    }

    .img-muny {
        max-width: 100%;
        height: 350px;
        object-fit: cover;
    }

    .band--muny .container-inneer {
        padding-left: 70px;
    }

    .band--muny p {
        text-align: justify;
        padding: 18px 0;

    }

    .band--muny .button {
        margin-right: 0;
    }

    .band--muny a {
        color: #ffffff;
        border: 2px solid #ffffff;
        justify-content: center;
        margin-top: 40px;
        background-color: #C29F3A;
    }

    .band--muny a::after {
        border-top: 2px solid #ffffff;
        border-right: 2px solid #ffffff;
    }

    /* ////////////////////特徴セクション//////////////////// */

    .diver {
        position: relative;
    }

    .custom-shape-divider-top-1755828804 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
    }

    .custom-shape-divider-top-1755828804 svg {
        position: relative;
        display: block;
        width: calc(146% + 1.3px);
        height: 49px;
    }

    .custom-shape-divider-top-1755828804 .shape-fill {
        fill: #FAF7F2;
    }

    .band--point {
        background-color: #FAF7F2;
        padding-bottom: 80px;
    }

    .band--point .sub-title {
        padding-top: 140px;
        margin-top: 0;
        margin-bottom: 110px;
    }

    .point-title {
        color: #3C3C3C;
        padding-top: 20px;
        margin-bottom: 0px;
        height: 60px;
    }



    .point-inner {
        padding: 15px 30px 26px;
        display: inline-block;
        color: #3C3C3C;
        text-align: justify;
    }


    .point-count h3 {

        color: #C29F3A;
        font-size: 2em;
        padding-top: 20px;
        margin: 0 auto 0;
        height: 40px;
        position: relative;
        text-align: center;
    }

    .point-count::before {
        background-color: #707070;
        bottom: -10px;
        width: 15px;
        border-radius: 5px;
        content: "";
        height: 2px;
        left: 50%;
        position: absolute;
        transform: translateX(-50%);
    }

    .band--point ol {
        display: flex;
        list-style: none;
        padding: 0;
        justify-content: space-between;
    }

    .band--point li {
        width: 330px;
        height: 450px;
        justify-content: space-between;
        background-color: #fff;
        border-radius: 10px;
    }

    .band--point a {
        color: #2C3E50;
        border: 2px solid #2C3E50;
        justify-content: center;
        margin-top: 40px;
    }

    .band--point a::after {
        border-top: 2px solid #2C3E50;
        border-right: 2px solid #2C3E50;
    }

    img .img-point {
        width: 130px;
        height: 220px;
    }

    .band--point a {
        font-size: 1.2em;
        color: #ffffff;
        border: 2px solid #ffffff;
        justify-content: center;
        margin-top: 40px;
        background-color: #0C215B;
    }

    .band--point a::after {
        border-top: 2px solid #ffffff;
        border-right: 2px solid #ffffff;
    }

    /* //////////////////作家の声セクション/////////////// */

    .band--voice {
        background-color: #DED7C8;
        padding-bottom: 30px;
        height: 600px;
    }

    .band--voice .sub-title {
        color: #3C3C3C;
        padding-top: 100px;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .band--voice .sub-title::before {
        width: 0px;
    }

    .band--voice ul {
        justify-content: space-between;
        text-align: center;
        margin-top: 100px;
    }

    .band--voice .item-right,
    .band--voice .item-left {
        background: #ffffff;
        border-radius: 10px;
        padding: 30px;
        width: 340px;
        margin-right: 0;

    }

    .band--voice .item-right,
    .band--voice .item-left {
        background: #ffffff;
        border-radius: 10px;
        padding: 30px;
        width: 340px;
        margin-right: 0;

    }

    .band--voice .item-who {
        margin-right: 0;
        width: 100%;
        font-size: 14px;
    }

    .band--voice .introduction {
        color: #3C3C3C;
        text-align: center;
        margin-bottom: 60px;
    }

    .band--voice .item-right h2,
    .band--voice .item-left h2 {
        font-size: 16px;
        color: #3C3C3C;
        text-align: justify;
        display: inline-block;
    }

    .band--voice .item-right .item-who,
    .band--voice .item-left .item-who {
        text-align: right;
    }

    .band--voice .item-right:before,
    .band--voice .item-left:before {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-top: -0px;
        border: 15px solid transparent;
        border-top: 15px solid #ffffff;
    }

    /* //////////////////////締めセクション/////////////////// */

    .band--finally {
        height: 360px;
    }

    .band--finally h3 {
        font-size: 38px;
    }

    .band--finally h2 {
        color: #2C3E50;
        text-align: center;
    }

    .band--finally .sub-title {
        margin-bottom: 25px;
    }

    .band--finally .sub-title::before {
        width: 0px;
    }


    .band--finally a {
        font-size: 1.2em;
        color: #ffffff;
        border: 2px solid #ffffff;
        justify-content: center;
        margin-top: 80px;
        background-color: #E74C3C;
    }

    .band--finally a::after {
        border-top: 2px solid #ffffff;
        border-right: 2px solid #ffffff;
    }

    /* //////////////////////フッター/////////////////// */

    footer {
        color: #fff;
        height: 2%;
    }

    footer p {
        background-color: #2C3E50;
        font-size: 9px;
        text-align: center;
    }

    /* //////////////////////フォーム/////////////////// */

.form_area .sub-title {
    padding-top: 1em;
    margin-bottom: 2em;
    margin-top: 2em;
}

    .wrap .form_area {
        font-weight: 800;
        background-color: #FAF7F2;
        padding: 3em 10em;
        text-align: left;
    }

    .Request_form {
        width: 50%;
        margin: 0 auto;
    }

    .form_area .button {
        width: 40%;
        min-width: 250px;
    }

    /* //////////////送信しました//////////// */


    .Request_commit {
        text-align: center;
        padding: 2em;
    }

    .Request_commitList {
        margin: 3em 0;
        padding: 5em 8em;
        text-align: left;
    }



}