/**********************************************
 * 変数
 **********************************************/
:root {
    --sand-color: #b5a188;
    --yellow-color: #fbe116;
}

/**********************************************
 * ベース／リセット
 **********************************************/
body {
    font-family: "Shippori Mincho", serif !important;
    font-weight: 500;
    font-style: normal;
    color: #333;
    margin: 0;
    padding: 0;
    font-size: 1.2em !important;
}

a {
    text-decoration: none !important;
    color: #333 !important;
}

img {
    width: 100%;
}

/**********************************************
 * 共通レイアウトヘルパー
 **********************************************/
.container.main-container {
    width: 80%;
}

.div-definer {
    width: 75%;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    padding: 5%;
}

.div-definer-nobg {
    width: 75%;
    margin: 0 auto;
    box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.1);
}

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

.breakline {
    margin: 3rem 0;
    border-bottom: dotted 7px var(--sand-color);
}

/**********************************************
 * ヘッダー／トップメニュー／メインビジュアル
 **********************************************/
.top-menu {
    width: 100%;
    display: flex;
    justify-content: start;
    position: fixed;
    top: 0;
    z-index: 1;
}

.top-menu #new {
    width: 80px;
    background-color: #9F7251;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
}

.top-menu #new span {
    color: #fff;
    font-size: 1.2em;
    font-weight: bolder;
}

.catcher {
    flex-grow: 1;
    text-align: center;
    height: 56px;
    text-align: left;
    padding: 0.8rem 0 0 2rem;
    background: #fff;
    opacity: 0.9;
}

.catcher h1 {
    font-size: 1.3rem;
}

.catcher a {
    text-decoration: none;
    color: #333;
}

.catcher a:hover {
    text-decoration: none;
    color: inherit;
    background: none;
}

.hamburger-icon {
    width: 80px;
    background-color: var(--sand-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 56px;
}

.hamburger {
    z-index: 2;
}

.hamburger img {
    width: 32px;
}

.main-visual {
    margin-top: 56px;
}

.mv-text {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/**********************************************
 * メインラッパー
 **********************************************/
main {
    background: url(../images/manga/pc/pattern.png) repeat;
}

.main-container {
    margin-top: 0 !important;
    margin: 20px 0 0 0;
}

.main-title-content {
    width: 90%;
    margin: 0 auto;
}

.main-title-text {
    padding-top: 5%;
    padding-bottom: 2rem;
    line-height: 2.4rem;
}

/**********************************************
 * セクション：3つの魅力
 **********************************************/
.charm-header {
    width: 35%;
    margin: 10% auto 0;
}

.charm-content {
    margin-top: 2rem;
}

.charm-content img:not(:first-child) {
    margin-top: 3rem;
}

.line {
    margin: 10% 0 5%;
    text-align: center;
}

.line img {
    width: 30%;
}

/**********************************************
 * セクション：プラン
 **********************************************/
.plan-title {
    padding: 7% 8% 6%;
    background: #fff;
}

.plan-title div {
    width: 95%;
    margin: 0 auto;
}

.plan-title p {
    margin: 2rem 2rem 0;
    line-height: 2.4rem;
}

.free-plan {
    padding: 8% 8% 4%;
    background: #fff;
}

.free-plan:first-child {
    width: 80%;
    margin: 0 auto;
}

/**********************************************
 * セクション：先輩の声
 **********************************************/
#voice {
    background-color: #EBF1F5;
    padding: 4em 0 2em 0;
}

.voice-title {
    width: 30%;
    margin: 0 auto;
}

.girl-photo {
    width: 60%;
    margin: 0 auto;
    margin-top: 2rem;
}

.girl-profile {
    width: 80%;
    margin: 0 auto;
    margin-top: 3rem;
}

.girl-profile ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: bolder;
}

.girl-profile ul li {
    position: relative;
    padding-left: 1em;
}

.girl-profile li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 11px;
    height: 11px;
    background-color: var(--sand-color);
    transform: rotate(45deg);
}

.girl-profile p {
    line-height: 2.4rem;
}

.profile-breakline {
    margin: 1rem 0;
    border-bottom: dotted 6px var(--sand-color);
}

/**********************************************
 * セクション：ステップ
 **********************************************/
#steps {
    padding: 5em 2em;
    background: #fff;
}

.step-title {
    width: 82%;
    margin: 0 auto 10%;
}

.step-content {
    margin-top: 3rem;
}

/**********************************************
 * セクション：LINE（QR付き）
 **********************************************/
#lineqr {
    position: relative;
}

.line-button {
    position: absolute;
    left: 18%;
    top: 46%;
    width: 30%;
}

/**********************************************
 * フッター
 **********************************************/
footer {
    text-align: center;
    background-color: var(--pink-color);
}

footer p {
    margin: 0;
    padding: 1.9rem 0;
}

/**********************************************
 * ナビゲーションドロワー（右スライドメニュー）
 **********************************************/
.show {
    transform: translate3d(-50%, 0, 0);
}

#nav {
    top: 56px;
    width: 50%;
    height: 100%;
    position: fixed;
    right: -50%;
    transition: transform 0.3s;
    background: #fff;
}

#nav div {
    color: var(--pink-color);
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    padding: 0.4em 2.5em;
    border-bottom: solid 1px #fff;
}

#nav ul {
    list-style: none;
}

#nav ul li {
    padding: 1em 3em;
    position: relative;
}

#nav ul li:not(:last-child) {
    border-bottom: solid 1px #000;
}

#nav ul li a {
    color: #333;
    text-decoration: none;
}

#nav ul li a:hover {
    text-decoration: underline;
    color: var(--pink-color);
}

#nav li::before {
    content: '';
    position: absolute;
    left: 36px;
    top: 1.8rem;
    width: 11px;
    height: 11px;
    background-color: var(--sand-color);
    transform: rotate(45deg);
}

/**********************************************
 * レスポンシブ（600px以下）
 **********************************************/
@media screen and (max-width:600px) {

    /* SP */
    body {
        font-size: 1em !important;
    }

    #nav {
        top: 40px;
        width: 100%;
        right: -100%;
    }

    #nav ul {
        margin: 0;
        padding: .5rem;
    }

    #nav ul li {
        text-align: left;
        padding: 1.4em 3em 0 3.6rem;
    }

    .show {
        transform: translate3d(-100%, 0, 0);
    }

    .top-menu {
        align-items: center;
    }

    .top-menu #new {
        width: 50px;
        height: 40px;
    }

    .catcher {
        height: 40px;
        display: flex;
        align-items: center;
        padding: 0 0 0 1rem;
    }

    .catcher h1 {
        font-size: 1rem;
        margin: 0;
    }

    .top-menu #new span {
        font-size: 1rem;
    }

    .hamburger-icon {
        width: 50px;
        height: 40px;
    }

    .main-visual {
        margin-top: 40px;
    }

    .mv-text {
        left: unset;
        right: 5%;
        transform: none;
    }

    .main-title-text {
        padding-bottom: 0;
        line-height: 2rem;
    }

    .container.main-container {
        width: 100%;
        padding: 0;
    }

    .main-title-content {
        width: 100%;
    }

    .div-definer,
    .div-definer-nobg {
        width: 100%;
    }

    .line img {
        width: 50%;
    }

    .charm-content img:not(:first-child) {
        margin-top: 1.5rem;
    }

    .charm-header {
        width: 60%;
        margin: 10% auto 0;
    }

    .plan-title {
        padding: 6% 0% 8%;
    }

    .plan-title div {
        width: 90%;
    }

    .plan-title p {
        line-height: 2rem;
    }

    .plan-details {
        padding: 0 .5em;
    }

    .voice-title {
        width: 50%;
    }

    .girl-photo {
        width: 80%;
    }

    .girl-profile {
        width: 90%;
    }

    .girl-profile {
        margin-top: 1rem;
    }

    .girl-profile p {
        line-height: 2rem;
    }

    .profile-breakline {
        margin: 1.5rem 0;
    }

    #steps {
        padding: 2em .5em;
    }

    .step-title {
        width: 95%;
    }

    .line-button {
        left: 6%;
        top: 48%;
        width: 45%;
    }

    footer p {
        font-size: 0.7rem;
        padding: 1rem 0;
    }
}