@charset "UTF-8";

/*---------------------------------

  基本設定

---------------------------------*/

body {
    font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
    background-color: #e9eae3;
}

p {
    font-size: 14px;
    line-height: 1.7;
    color: #504b4c;
}

img {
    width: 100%;
}

h1 {
    width: 180px;
}

.wrapper {
    max-width: 1660px;
    margin: 0 auto;
    padding-left: 12px;
    padding-right: 12px;
    width: 100%;
}

/*---------------------------------

  表示／非表示を切り替え

---------------------------------*/

.br-pc {
    display: none;
}

.show-sp {
    display: block;
}

.show-pc {
    display: none;
}

/*---------------------------------

  ヘッダー

---------------------------------*/

header {
    /* headerに背景色を設定しないと背景が投下するため、設定。 */
    background-color: #e9eae4;
    /* ハンバーガーメニューが右上固定されているため、ヘッダーを上部に固定。 */
    position: fixed;
    width: 100%;
    /* スクロールした際にヘッダーが後ろに隠れないようにz-index:100を指定 */
    z-index: 100;
    /* ロゴとPC用のメニューを横並びにするために設定。 */
    display: flex;
}

/*
  ロゴ周りの余白の設定
---------------------------------*/

header h1 {
    padding: 10px 0px 3px 18px;
}

/*---------------------------------

  メイン

---------------------------------*/

main {
    /* ヘッダーを固定するとmain以下が上に上がるため、headerの高さ分だけ上に余白をつける。 */
    padding: 61.06px 0 0 0;
}

/*
  位置調整のための設定
---------------------------------*/

/* 同一ページ内リンク遷移のためのダミーアンカーの設定 */
.scroll-anchor {
    display: block;
    position: relative;
    height: 0;
    top: -61px;
}

/* スマホ版においてメニューから各セクションに遷移した際、
表示がずれないように設定 */
.section-anchor {
    scroll-margin-top: 61px;
}

/*
  アニメーションのための設定
---------------------------------*/

.fadein {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fadein.fadein-active {
    opacity: 1;
    transform: translateY(0);
}

/*
  メニュー
---------------------------------*/

/* 線の色 */
.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
    background: #a78759;
}

/* ×ボタン位置の調整 */
.drawer--right.drawer-open .drawer-hamburger {
    right: 0px;
}

/* アイコン位置の調整　*/
.drawer-hamburger {
    padding-top: 15px;
    padding-right: 15px;
}

/* メニューの背景色 */
.drawer-nav {
    background-color: #e9eae3;
    /* メニュー画面が横いっぱいに広がるように指定 */
    width: 100vw;
    max-width: 100vw;
}

/* メニュー画面を閉じる時に閉じ切るように指定 */
.drawer--right .drawer-nav {
    right: -100vw;
}

/* メニュー内のロゴ位置調整 */
.drawer-menu li img {
    padding: 10px 65px 35px 65px;
}

.drawer-menu li a {
    position: relative;
    display: block;
    padding: 15px 25px;
    text-decoration: none;
    color: #a78658;
}

/*
  イントロダクション
---------------------------------*/

/* テキストを中央揃えに設定 */
.Introduction__text {
    text-align: center;
    padding: 28px 0px;
}

/* どこで誰とどんな時間を過ごしたいか */
.Introduction__text h2 {
    color: #504b4c;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 12px;
}

/* そんな想いに寄り添うのが フリーのウェディングプランナーです */
.Introduction__text h3 {
    border-bottom: 1px solid #a68454;
    color: #504b4c;
    /* 文字のみに線を引くため、displayにinlineを設定。 */
    display: inline;
    font-size: 14px;
    line-height: 1.7;
    padding-bottom: 2px;
}

/* 本文 */
.Introduction__detail {
    padding-top: 14px;
}

/*
  グリッド画像の設定
---------------------------------*/

/* PC版のグリッド画像は非表示 */
.grid_pc {
    display: none;
}

.grid_sp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 4px;
}

.grid_sp img {
    border-radius: 3px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.grid_sp .item_ringChanging {
    grid-row: span 2 / span 2;
    grid-column-start: 1;
}

.grid_sp .item_table {
    grid-row: 1 / span 2;
    grid-column: 2;
}

.grid_sp .item_chairs {
    grid-column: 2;
    grid-row: 3;
}

/*
  CTA部分の設定
---------------------------------*/

/* CTA共通の設定 */
.cta {
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
}

/* 2個目のCTAの設定 */
.cta2 {
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 0 0;
}

.cta__logo {
    padding: 10px 6px 10px 3px;
    width: 180px;
}

.cta__button {
    margin: 15px 10px 12px 0;
}

/* 「お問い合わせはこちらから」ボタンの設定 */
.cta__button {
    color: #a78759;
    display: inline-block;
    font-size: 10px;
    width: 90px;
    height: 60px;
    border: 1px solid #a78759;
    border-top: none;
    border-radius: 0 0 70px 70px;
    position: relative;
    text-align: center;
    padding-top: 10px;
    line-height: 1.6;
}

/* 上の横線 */
.cta__button::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    width: 110%;
    height: 1px;
    background: #a78759;
}

/* 上の斜め線 */
.cta__button::after {
    content: "";
    position: absolute;
    top: -7px;
    right: -11px;
    width: 10px;
    height: 0;
    border-top: 1px solid #a78a59;
    transform: rotate(45deg);
}

/* 下線付きの上の文 */
.cta__button__line {
    display: inline-block;
    border-bottom: 1px solid #a78a59;
}

/*
  フリープランナーが選ばれる理由
---------------------------------*/

.reason {
    text-align: center;
}

/* 見出し */
.reason__title {
    color: #504b4c;
    font-size: 20px;
    padding-bottom: 20px;
}

/* PC版のメニューを非表示 */
.reason__menu-pc {
    display: none;
}

/* 左に写真、右にテキスト */
.reason__freedom,
.reason__pets {
    display: flex;
    align-items: center;
}

/* 左にテキスト、右に写真 */
.reason__professional,
.reason__style {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    padding-bottom: 75px;
}

/* 写真と文章を1対1で配置。 */
.reason__img {
    flex: 1;
}

.reason__detail {
    flex: 1;
}

.reason__detail h3 {
    color: #504b4c;
    font-size: 18px;
    line-height: 1.4;
    /* 架線を引くために擬似要素を使うため、positionにrelativeを指定。 */
    position: relative;
}

/* プロフェッショナルな仲間が〜の部分だけ、見出しサイズを変更。 */
.reason__detail .reason__detail-professional {
    font-size: 16px;
}

/* 見出しの後の直線 */
.reason__detail h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    display: inline-block;
    width: 120px;
    /*線の太さ*/
    height: 1px;
    -webkit-transform: translateX(-50%);
    /*位置調整*/
    transform: translateX(-50%);
    /*線の色*/
    background-color: #504b4c;
    /*線の丸み*/
    border-radius: 2px;
}

/* 本文の内容 */
.reason__detail p {
    font-size: 12px;
    padding-top: 35px;
}

/* 写真を並べているエリア(SP版) */
.reason__photoarea {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
}

/* 各写真の設定 */
.hands {
    margin-bottom: -60px;
    margin-left: -50px;
    width: 280px;
    z-index: 1;
}

.glasses {
    margin-bottom: -90px;
    margin-left: 110px;
    width: 198px;
    z-index: 4;
}

.children {
    margin-bottom: -30px;
    margin-left: -50px;
    width: 280px;
    z-index: 2;
}

.woods {
    margin-left: 50px;
    width: 280px;
    z-index: 3;
}

/*
  フリープランナーになった理由
---------------------------------*/

.story {
    background: url('../images/dress.jpg') no-repeat center center;
    background-size: cover;
    /* 擬似要素で白いカバーをつけるため、positionにrelativeを指定。*/
    position: relative;
}

.story::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
    /* ふんわり明るさを調整したい場合 */
    z-index: 0;
}

.story__content {
    color: #504b4c;
    display: flex;
    flex-direction: column;
    /* flex-directionをcolumnにした場合、
    flex-box全体が縦と横で切り替わるため、右揃えにしたい場合は
    align-itemsで指定する。 */
    align-items: flex-end;
    max-width: 400px;
    padding-top: 60px;
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* タイトル */
.story__heading {
    font-size: 15px;
    line-height: 1.7;
}

/* タイトル下の下線 */
.story__line {
    background: #a78759;
    border: none;
    height: 1px;
    margin-top: 3px;
    width: 250px;
}

/* 本文の文字サイズの指定 */
.story__description {
    font-size: 12px;
    margin-top: 21px;
}

/* 文字間の調整（鉤括弧の部分) */
.story__description .letter_spacing_qb {
    letter-spacing: -0.4em;
}

.story__description .letter_spacing_qe {
    letter-spacing: -0.3em;
}

/* 箇条書き部分の指定 */
.story__detail {
    font-size: 12px;
    line-height: 1.6;
    margin-top: 15px;
}

/* 箇条書きの点の設定 */
.story__detail li:before {
    /* 空の要素作成 */
    content: "";
    /* 背景色指定 */
    background-color: #504b4c;
    /* 丸くする */
    border-radius: 50%;
    /* インラインブロックにする */
    display: inline-block;
    /* 位置調整のため、positionをrelativeに指定 */
    position: relative;
    height: 2px;
    /* 点の右に余白を設定 */
    margin-right: 3px;
    top: -3px;
    width: 2px;
}

/* 「そんな想いを込めてプランニングを行っています」の指定 */
.story__conclusion {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.5;
}

/* 「お二人だけの『STORY』を〜」以降の設定 */
.story__message {
    align-self: center;
    text-align: center;
    /* 光彩の設定 */
    text-shadow:
        /* 1つ目：全体にシャドウをつける */
        0 0 10px rgba(255, 255, 255, 1),
        /* 2つ目：下方向 */
        0 5px 10px rgba(255, 255, 255, 1),
        /* 3つ目：右方向 */
        5px 0px 10px rgba(255, 255, 255, 1),
        /* 4つ目：上方向 */
        0 -5px 10px rgba(255, 255, 255, 1),
        /* 5つ目：左方向 */
        -5px 0px 10px rgba(255, 255, 255, 1);
    font-size: 16px;
    margin-top: 22px;
}

/*
  お問い合わせ
---------------------------------*/

.contact {
    margin-top: 24px;
    margin-bottom: 20px;
}

/* 周りの色の設定 */
.contact__frame {
    background-color: #d5b88d;
}

.contact__form {
    padding: 38px 20px;
}

/*
フォームの項目ごとの設定
---------------------------------*/

.contact__form-label {
    color: #504b4c;
}

.contact__form-label::after {
    content: "※";
    color: red;
    font-size: 14px;
    margin-left: 6px;
}

/* 入力欄の設定 */
.contact__form-input {
    background: #fbfdf6;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
    display: block;
    font-size: 16px;
    margin-bottom: 22px;
    margin-top: 12px;
    max-width: 400px;
    padding: 10px;
    width: 100%;
}

.contact__form-textarea {
    height: 110px;
    margin-bottom: 28px;
}

/* プライバシーポリシーの設定 */
.contact__form .contact__form-item--policy {
    /* 全体を中央揃えにするため、display:flexを設定 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

/* 従来のチェックボックスを消去 */
/* 描画したチェックボックスと重ね、エラーチェックの吹き出し位置調整 */
.contact__form .contact__form-item--policy input[type=checkbox] {
    opacity: 0;
    position: absolute;
    height: 20px;
    left: 7%;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    z-index: 2;
}

/* 新しいチェックボックスの描画 */
.contact__form .contact__form-item--policy input[type=checkbox]+label::before {
    background-color: #fbfdf6;
    border-radius: 2px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    content: "";
    display: inline-block;
    height: 20px;
    /* チェックボックスの右側に空間をあける */
    margin-right: 5px;
    /* 見た目を中央揃えにするために微調整 */
    margin-bottom: 2px;
    position: relative;
    /* 中央揃えにするために記載 */
    vertical-align: middle;
    width: 20px;
    z-index: 1;
}

/* チェックボックス押下後のチェックマーク描画のための設定 */
.contact__form-item--policy label {
    position: relative;
}

/* チェックボックス押下後の描画 */
.contact__form .contact__form-item--policy input[type=checkbox]:checked+label::after {
    border-bottom: 2px solid #504b4c;
    border-right: 2px solid #504b4c;
    content: "";
    height: 15px;
    left: 6px;
    position: absolute;
    top: 40%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    z-index: 3;
}

/* プライバシーポリシーに同意するの文言の設定 */
.contact__form-agreement-label {
    color: #504b4c;
}

/* リンクの設定 */
.contact__form-agreement-label a {
    color: inherit;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact__form-item--policy a:hover {
    color: #7c6340;
    /* ブランドカラーなどに変更 */
}

.contact__btn-wrap {
    text-align: center;
}

/* フォームのボタンの設定 */
.contact__button {
    background-color: #fbfdf6;
    border: none;
    color: #504b4c;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    transition: background-color 0.3s ease;
    text-align: center;
    padding: 8px 24px;
}

/*
  トップページへ遷移するリンク
---------------------------------*/

.goTop {
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
}

/*
  リンクのカード(スマホ内共通設定）
---------------------------------*/

.link.show-sp {
    margin-top: 36px;
}

.link__card {
    display: flex;
    /* 横幅が余った時に中央寄せ */
    align-self: center;
    margin-bottom: 40px;
    /* 各カードの横幅を固定し、横位置を揃える */
    min-width: 350px;
    width: 90%;
}

.link__img {
    align-items: flex-start;
}

.link__img img {
    border-radius: 5px;
}

/*
  リンクのカード(Instagramのリンク）
---------------------------------*/

.img__instagram {
    flex-basis: 40%;
    padding: 0 20px 0 20px;
}

/* リンクのタイトル */
.link__sns-text p {
    font-size: 17px;
    color: #504b4c;
}

.link__instagram p {
    margin-bottom: 20px;
}

/* リンクの文字 */
.link__sns-text a {
    font-size: 17px;
    color: #504b4c;
}

.link.show-sp .link__instagram {
    margin-left: 20px;
}

/*
  左写真＋右テキストのカードの設定(共通）
---------------------------------*/

.link__description {
    text-align: center;
    margin-left: 20px;
}

.link__card-tag {
    font-size: 16px;
    font-weight: 600;
}

.link__card-copy {
    line-height: 1.5;
    margin-bottom: 7px;
}

.link__card-title {
    margin-bottom: 6px;
}

/* ボタンの調整 */
.link__card-button {
    display: inline-block;
    background-color: #fbfdf6;
    color: #504b4c;
    font-family: inherit;
    font-size: 16px;
    padding: 6px 30px;
    text-decoration: none;

    border-top-left-radius: 2em;
    border-bottom-left-radius: 0em;
    border-top-right-radius: 0;
    border-bottom-right-radius: 2em;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* ボタンホバー時の処理 */
.link__card-button:hover {
    box-shadow: unset;
    transform: translate(4px, 4px);
}

/*
  式場見学同行サービスのリンク
---------------------------------*/

.img__service {
    flex-basis: 35%;
    margin-left: 10px;
}

/* チームウェディングのロゴは画像で設定。 */
.description__service img {
    width: 160px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* produced by piaryの文字 */
.description__service span {
    font-family: 'Libre Baskerville', serif;
    font-size: 12px;
}

/*
  フリープランナー掲載サイトのリンク
---------------------------------*/

.img__site {
    flex-basis: 35%;
    margin-left: 10px;
}

.tag__site {
    font-size: 14px;
}

/* シンデレラプランのロゴは画像で設定。 */
.description__site img {
    width: 170px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.title__site {
    margin-bottom: 13px;
}

/*---------------------------------

    レスポンシブデザインの設定  
    タブレット向けのレイアウト

---------------------------------*/

@media screen and (min-width:768px) {
    h1 {
        width: 225px;
    }

    .wrapper {
        padding-left: 30px;
        padding-right: 30px;
        width: 100%;
    }

    /*
    メインの調整
    ---------------------------------*/

    main {
        /* ヘッダーを固定するとmain以下が上に上がるため、headerの高さ分だけ上に余白をつける。 */
        padding: 74.5px 0 0 0;
    }

    /*
    位置調整のための設定
    ---------------------------------*/

    .scroll-anchor {
        top: -74.5px;
    }

    /* スマホ版においてメニューから各セクションに遷移した際、
    表示がずれないように設定 */
    .section-anchor {
        scroll-margin-top: 74.5px;
    }

    /*
    メニュー
    ---------------------------------*/

    /* アイコン位置の調整　*/
    .drawer-hamburger {
        padding-top: 20px;
        padding-right: 20px;
    }

    /* メニュー内を中央揃えに設定 */
    .drawer-menu {
        text-align: center;
    }

    /* メニュー内のロゴ位置調整 */
    .drawer-menu li img {
        padding: 20px 70px 20px 30px;
        width: 70%;
    }

    .drawer-menu li a {
        padding: 20px 25px;
        font-size: 22px;
    }

    /*
    イントロダクション
    ---------------------------------*/

    /* テキストを中央揃えに設定 */
    .Introduction__text {
        padding: 40px 0px;
    }

    /* どこで誰とどんな時間を過ごしたいか */
    .Introduction__text h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    /* そんな想いに寄り添うのが フリーのウェディングプランナーです */
    .Introduction__text h3 {
        font-size: 16px;
        line-height: 1.7;
        padding-bottom: 2px;
    }

    /* 本文 */
    .Introduction__detail {
        font-size: 16px;
        padding-top: 20px;
    }

    /*
    CTA部分の設定
    ---------------------------------*/

    /* CTA共通の設定 */
    .cta {
        margin: 30px 0;
    }

    /* 2個目のCTAの設定 */
    .cta2 {
        margin: 30px 0 0 0;
    }

    .cta__logo {
        padding: 10px 29px 10px 0;
        width: 225px;
    }

    /*
    フリープランナーが選ばれる理由
    ---------------------------------*/

    /* 見出し */
    .reason__title span {
        font-size: 25px;
    }

    .reason__detail h3 {
        font-size: 22px;
    }

    /* プロフェッショナルな仲間が〜の部分だけ、見出しサイズを変更。 */
    .reason__detail .reason__detail-professional {
        font-size: 22px;
    }

    /* 見出しの後の直線 */
    .reason__detail h3::after {
        width: 210px;
    }

    /* 本文の内容 */
    .reason__detail p {
        font-size: 17px;
        line-height: 1.6;
        padding-top: 40px;
    }

    /* 写真を並べているエリア(タブレット版) */
    /* 各写真の設定 */
    .hands {
        margin-bottom: -160px;
        margin-left: -180px;
        width: 500px;
    }

    .glasses {
        margin-bottom: -190px;
        margin-left: 280px;
        width: 350px;
    }

    .children {
        margin-bottom: -60px;
        margin-left: -160px;
        width: 500px;
    }

    .woods {
        margin-left: 150px;
        width: 500px;
    }

    /*
    フリープランナーになった理由
    ---------------------------------*/

    .story__content {
        max-width: 1660px;
        padding-bottom: 30px;
    }

    /* タイトル */
    .story__heading {
        font-size: 21px;
        line-height: 1.5;
    }

    /* タイトル下の下線 */
    .story__line {
        width: 375px;
    }

    /* 本文の文字サイズの指定 */
    .story__description {
        font-size: 17px;
        line-height: 1.5;
        margin-top: 29px;
    }

    /* 箇条書き部分の指定 */
    .story__detail {
        font-size: 17px;
        line-height: 1.5;
        margin-top: 30px;
    }

    /* 箇条書きの点の設定 */
    .story__detail li:before {
        height: 3px;
        /* 点の右に余白を設定 */
        margin-right: 4px;
        top: -5px;
        width: 3px;
    }

    /* 「そんな想いを込めてプランニングを行っています」の指定 */
    .story__conclusion {
        margin-top: 30px;
        font-size: 17px;
    }

    /* 「お二人だけの『STORY』を〜」以降の設定 */
    .story__message {
        font-size: 17px;
        margin-top: 30px;
    }

    .story__message-text {
        font-size: 17px;
    }

    /*
    お問い合わせ
    ---------------------------------*/

    .contact {
        margin-bottom: 25px;
    }

    .contact__frame {
        max-width: 1660px;
    }

    .contact__form {
        box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
        padding: 38px 20px;
    }

    /*
    フォームの項目ごとの設定
    ---------------------------------*/

    /* 入力ラベルの設定 */
    .contact__form-label {
        font-size: 17px;
    }

    /* 必須を示す※のサイズ変更 */
    .contact__form-label::after {
        font-size: 15px;
    }

    /* 入力欄の設定 */
    .contact__form-input {
        margin-bottom: 15px;
        margin-top: 5px;
        max-width: 1620px;
    }

    .contact__form-textarea {
        height: 70px;
        margin-bottom: 28px;
    }

    .contact__form-agreement-label {
        font-size: 17px;
    }

    /* 従来のチェックボックスを消去 */
    /* 描画したチェックボックスと重ね、エラーチェックの吹き出し位置調整 */
    .contact__form .contact__form-item--policy input[type=checkbox] {
        left: 32.5%;
        top: 52.5%;
    }

    /* フォームのボタンの設定 */
    .contact__button {
        font-size: 16px;
    }

    /*
    リンクのカード(タブレット内の共通設定）
    ---------------------------------*/

    .link.show-sp {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 30px;
    }

    .link__card {
        margin-bottom: 30px;
        /* 各カードの横幅を固定し、横位置を揃える */
        width: 80%;
    }

    /*
リンクのカード(Instagramのリンク）
---------------------------------*/

    .img__instagram {
        flex-basis: 35%;
        padding: 20px 0 20px 30px;
    }

    .img__instagram img {
        width: 80%;
    }

    /* リンクのタイトル */
    .link__sns-text p {
        font-size: 25px;
    }

    .link__instagram p {
        margin-bottom: 5px;
    }

    /* リンクの文字 */
    .link__sns-text a {
        font-size: 22px;
    }

    /*
左写真＋右テキストのカードの設定(共通）
---------------------------------*/

    .link__description {
        margin-left: 30px;
    }

    .link__card-tag {
        font-size: 21px;
    }

    .link__card-copy {
        font-size: 17px;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .link__card-title {
        margin-bottom: 20px;
    }

    /* ボタンの調整 */
    .link__card-button {
        font-size: 17px;
        padding: 6px 30px;
    }

    /*
式場見学同行サービスのリンク
---------------------------------*/

    .img__service {
        margin-left: 0;
        margin-bottom: 30px;
    }

    /* チームウェディングのロゴは画像で設定。 */
    .description__service img {
        margin-bottom: 4px;
        width: 200px;
    }

    /* produced by piaryの文字 */
    .description__service span {
        font-size: 15px;
    }

    /*
フリープランナー掲載サイトのリンク
---------------------------------*/

    .img__site {
        margin-left: 0;
        margin-bottom: 30px;
    }

    .tag__site {
        font-size: 21px;
    }

    /* シンデレラプランのロゴは画像で設定。 */
    .description__site img {
        width: 230px;
    }

    .title__site {
        margin-bottom: 25px;
    }

}

/*---------------------------------

    PC向けのレイアウト

---------------------------------*/

@media screen and (min-width:1024px) {

    h1 {
        width: 280px;
    }

    p {
        font-size: 20px;
    }

    .wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }

    /*---------------------------------
        
        表示／非表示を切り替え
        
    ---------------------------------*/

    .br-sp {
        display: none;
    }

    .br-pc {
        display: block;
    }

    .show-sp {
        display: none;
    }

    .show-pc {
        display: block;
    }

    /*
      アニメーションのための設定
    ---------------------------------*/

    .fadein-left {
        opacity: 0;
        transform: translateX(-50px);
        transition: all 1s ease;
    }

    .fadein-left.is-visible {
        opacity: 1;
        transform: translateX(0);
    }

    .fadein-right {
        opacity: 0;
        transform: translateX(50px);
        transition: all 1s ease;
    }

    .fadein-right.is-visible {
        opacity: 1;
        transform: translateX(0);
    }

    /*
    　メニュー
    ---------------------------------*/

    .drawer-hamburger,
    .drawer-nav {
        /* スマホ用のメニューを隠す */
        display: none;
    }

    /*
    メインの調整
    ---------------------------------*/
    main {
        /* ヘッダーを固定するとmain以下が上に上がるため、headerの高さ分だけ上に余白をつける。 */
        padding: 84px 0 0 0;
    }

    /*
    　背景の設定
    ---------------------------------*/

    .bg-section {
        background: url('../images/backgroundImage_PC.png') no-repeat center center;
        background-size: cover;
    }

    /*
     イントロダクション
    ---------------------------------*/

    .Introduction__text {
        padding: 50px 0px;
    }

    /* どこで誰とどんな時間を過ごしたいか */
    .Introduction__text h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    /* そんな想いに寄り添うのが フリーのウェディングプランナーです */
    .Introduction__text h3 {
        font-size: 24px;
    }

    /* 本文 */
    .Introduction__detail {
        font-size: 22px;
        padding-top: 35px;
    }

    /*
    　グリッド画像の設定
    ---------------------------------*/

    /* SP版のグリッド画像は非表示 */
    .grid_sp {
        display: none;
    }

    .grid_pc {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: repeat(5, 1fr);
        gap: 7px;
    }

    .grid_pc img {
        border-radius: 8px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .grid_pc .item_beach {
        grid-column: span 2 / span 2;
    }

    .grid_pc .item_bike {
        grid-row: span 2 / span 2;
        grid-row-start: 2;
    }

    .grid_pc .item_ringChanging {
        grid-row-start: 2;
    }

    .grid_pc .item_woods {
        grid-column-start: 2;
        grid-row-start: 3;
    }

    .grid_pc .item_hands {
        grid-row-start: 4;
    }

    .grid_pc .item_table {
        grid-column-start: 1;
        grid-row-start: 5;
    }

    .grid_pc .item_sunglasses {
        grid-row: span 2 / span 2;
        grid-column-start: 2;
        grid-row-start: 4;
    }

    /*
    　フリープランナーが選ばれる理由
    ---------------------------------*/

    .reason {
        margin-top: 60px;
    }

    /* 見出し */
    .reason__title span {
        background: linear-gradient(transparent 70%, #cdc1ab 70%);
        font-size: 28px;
    }

    /* PC版のみで表示するメニューの設定 */
    .reason__list-pc {
        display: flex;
        gap: 25px;
        margin-top: 44px;
    }

    .reason__list-item {
        margin-bottom: 48px;
    }

    .reason__list-item img {
        margin-bottom: 30px;
    }

    .reason__list-item p {
        font-size: 22px;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    /* 矢印の描画 */
    .arrow-wrapper {
        padding-top: 18px;
    }

    .arrow-down {
        position: relative;
        width: 20px;
        height: 20px;
    }

    .arrow-down::before,
    .arrow-down::after {
        content: "";
        position: absolute;
        width: 10px;
        height: 2px;
        background-color: #504b4c;
        bottom: 8px;
    }

    .arrow-down::before {
        left: 0;
        transform: rotate(-45deg);
        transform-origin: left bottom;
    }

    .arrow-down::after {
        right: 0;
        transform: rotate(45deg);
        transform-origin: right bottom;
    }

    /* 左にテキスト、右に写真のレイアウト下の余白を調整 */
    .reason__professional,
    .reason__style {
        padding-bottom: 0;
    }

    .reason__detail h3 {
        font-size: 28px;
    }

    /* プロフェッショナルな仲間が〜の部分だけ、見出しサイズを変更。 */
    .reason__detail .reason__detail-professional {
        font-size: 28px;
    }

    /* 見出しの後の直線 */
    .reason__detail h3::after {
        width: 250px;
        /*線の色*/
        background-color: #a78759;
    }

    /* 本文の内容 */
    .reason__detail p {
        font-size: 22px;
        line-height: 1.6;
        padding-top: 40px;
    }

    /*
    フリープランナーになった理由
    ---------------------------------*/

    .story {
        /* 画像の表示位置を調整*/
        background-position: 0 -300px;
        /* 文頭調整のため空要素と横並びにするため、flexを設定 */
        display: flex;
    }

    /* 空要素に横幅を設定 */
    .spacer__column {
        flex: 1;
        width: 50%;
    }

    .story__content {
        /* SP、タブレットでは右寄せのものを左寄せに修正 */
        align-items: flex-start;
        flex: 1;
        padding-bottom: 70px;
        width: 50%;
    }

    /* タイトル */
    .story__heading {
        border-bottom: 1px solid #a78759;
        font-size: 28px;
        line-height: 1.5;
        text-align: center;
    }

    /* PC版では中央揃えになっているため、線は非表示 */
    .story__line {
        display: none;
    }

    /* 本文の文字サイズの指定 */
    .story__description {
        font-size: 22px;
        line-height: 1.5;
        margin-top: 29px;
    }

    /* 箇条書き部分の指定 */
    .story__detail {
        font-size: 22px;
        line-height: 1.5;
        margin-top: 30px;
    }

    /* 箇条書きの点の設定 */
    .story__detail li:before {
        height: 4px;
        /* 点の右に余白を設定 */
        margin-right: 5px;
        top: -6px;
        width: 4px;
    }

    /* 「そんな想いを込めてプランニングを行っています」の指定 */
    .story__conclusion {
        margin-top: 30px;
        font-size: 22px;
        line-height: 1.5;
    }

    /* 「お二人だけの『STORY』を〜」以降の設定 */
    .story__message {
        /* algin-selfを左寄せに修正 */
        align-self: flex-start;
        text-align: left;
        /* 光彩の設定 */
        text-shadow: none;
        font-size: 22px;
        margin-top: 30px;
        margin-right: 15px;
    }

    .story__message-text {
        font-size: 22px;
    }

    /*
    フォーム全体の構成
    ---------------------------------*/

    .contact {
        margin-top: 33px;
        margin-bottom: 23px;
    }

    .contact__form {
        box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
        padding: 17px 30px;
    }

    /*
    フォームの項目ごとの設定
    ---------------------------------*/

    /* 入力ラベルの設定 */
    .contact__form-label {
        font-size: 17px;
    }

    /* 入力欄の設定 */
    .contact__form-input {
        margin-bottom: 15px;
        margin-top: 5px;
    }

    .contact__form-textarea {
        height: 70px;
        margin-bottom: 13px;
    }

    /* プライバシーポリシーの設定 */
    .contact__form .contact__form-item--policy {
        margin: 30px 0;
        position: relative;
        text-align: center;
    }

    /* 従来のチェックボックスを消去 */
    /* 描画したチェックボックスと重ね、エラーチェックの吹き出し位置調整 */
    .contact__form .contact__form-item--policy input[type=checkbox] {
        left: 37.5%;
    }

    /* フォームのボタンの設定 */
    .contact__button {
        font-size: 16px;
        transition: background-color 0.3s ease;
        padding: 8px 24px;
    }

    /*
    リンクのカード(PC内の共通設定）
    ---------------------------------*/

    /* sp用のクラスを明示的に非表示にする */
    .link.show-sp {
        display: none;
    }

    /* show-pcのクラスを明示的に指定 */
    .link.show-pc {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-top: 60px;
    }

    .link__card {
        display: block;
        flex: 1;
        /* PC版は横並びにした時に上揃えにする */
        align-self: first baseline;
        justify-content: start;
        margin-bottom: 65px;
        text-align: center;
    }

    .link__card-tag {
        font-size: 25px;
        margin-bottom: 12px;
    }

    .link__img img {
        border-radius: 20px;
        width: 70%;
    }

    /*
    リンクのカード(Instagramのリンク）
    ---------------------------------*/

    /* タイトルが1行になるように、左端の要素だけ少し狭くする */
    .link__card-instagram {
        flex: 0.8;
    }

    .img__instagram {
        padding: 28px 0 40px 0;
    }

    /* リンクのタイトル */
    .link__sns-text p {
        font-size: 25px;
    }

    .link__instagram p {
        margin-bottom: 5px;
    }

    /*
    上写真＋下ボタンのカードの設定(共通）
    ---------------------------------*/

    /* ボタンの調整 */
    .link__card-button {
        font-size: 20px;
        padding: 6px 30px;
    }

    /*
    式場見学同行サービスのリンク
    ---------------------------------*/

    .img__service {
        margin-left: 0;
        margin-bottom: 30px;
    }

    /*
    フリープランナー掲載サイトのリンク
    ---------------------------------*/

    .img__site {
        margin-left: 0;
        margin-bottom: 30px;
    }

    .tag__site {
        font-size: 25px;
    }
}