@charset "utf-8";

/*==================================================
    全体共通設定
===================================*/

body {
    font-size: 14px;
    font-family: "Noto Sans JP", sans-serif !important;
    font-weight: 500;
    color: #595757 !important;
    overflow-x: hidden;
    background-color: #fff;
}

/* 英字フォント */
.font-en {
    font-family: "Montserrat", sans-serif;
}

/* テキスト */
.text {
    line-height: 1.7;
    letter-spacing: .05em;
}

/* 画像 */
img {
    width: 100%;
    vertical-align: bottom;
}

/* コンテンツ幅の指定 */
.inner {
    padding: 60px 4%;
    max-width: 1200px;
    margin: 0 auto;
}

/* スマホの時のみ表示 */
.sp {
    display: block;
}

.pc {
    display: none;
}

/* ボタン */
.more-btn {
    display: flex;
    align-items: center;
    width: 160px;
    color: #595757;
    font-weight: bold;
}

.more-btn .iconarrow {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    background-color: #FFE6EE;
    border-radius: 1000px;
    overflow: hidden;
    text-indent: -9999px;
    transition: all .5s ease;
}

.more-btn .iconarrow::after {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../images/arrow_b.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    text-indent: -9999px;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: "";
}

.more-btn .iconarrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #d93f8a;
    border-radius: 1000px;
    transform: scale(0);
    transition: all 300ms 0s ease;
}

.more-btn span {
    text-transform: uppercase;
    font-size: 14px;
    margin-right: 10px;
    white-space: nowrap;
}

.more-btn:hover .iconarrow::before {
    transform: scale(1.05);
}

.more-btn:hover .iconarrow:after {
    animation: 400ms ease-in-out 0s 1 normal forwards running overarrow_w;
}
@keyframes overarrow_w {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(40px);
    }
    51% {
        display: block;
        width: 20px;
        height: 20px;
        background-image: url("../images/arrow_w.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
        text-indent: -9999px;
        overflow: hidden;
        transform: translateX(-40px);
    }
    100% {
        display: block;
        width: 20px;
        height: 20px;
        background-image: url("../images/arrow_w.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
        text-indent: -9999px;
        overflow: hidden;
        transform: translateX(0px);
    }
}

/* コンテンツタイトル */

.content-title p {
    position: relative;
    margin-bottom: 5px;
    padding-left: 23px;
    color: #d93f8a;
    font-weight: bold;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.content-title p::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "";
    width: 13px;
    height: 13px;
    background-color: #d93f8a;
    border-radius: 20px;
}

.content-title h2 {
    font-size: 2em;
    letter-spacing: .05em;
    line-height: 1.7;
}

@media(max-width: 600px) {
    .content-title h2 {
        font-size: 1.5em;
    }

    .content-title p {
        font-size: .85em;
        margin-bottom: 0;
    }

    .content-title p::before {
        width: 11px;
        height: 11px;
    }
}

/* ページヘッダー */
.page-header {
    margin-top: 70px;
}

.page-header .page-header-inner {
    position: relative;
    background-color: #d93f8a;
    width: 92%;
    height: 32vh;
    margin: 0 auto;
    border-radius: 10px;
}

.page-header-inner .main-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.page-header-inner .main-content h1 {
    color: #fff;
    letter-spacing: .05em;
    margin-bottom: 5px;
    font-size: 2em;
}

.page-header-inner .main-content p {
    color: #fff;
    font-weight: bold;
    letter-spacing: .1em;
    text-align: center;
    font-family: "Montserrat", sans-serif;
}

@media(max-width: 600px) {
    .page-header-inner .main-content {
        width: 100%;
        text-align: center;
    }
}

/* パンくずリスト */
.breadcrumb .inner {
    margin-top: 10px;
    padding: 0 4%;
}

.breadcrumb ul {
    display: flex;
}

.breadcrumb ul li {
    position: relative;
    margin-right: 30px;
    font-size: .85em;
    color: #999;
}

.breadcrumb ul li:last-child {
    margin-right: 0;
}

.breadcrumb ul li::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    content: "";
    width: 8px;
    height: 8px;
    background-color: #FFADC6;
    border-radius: 30px;
}

.breadcrumb ul li:last-child::before {
    content: none;
}

.breadcrumb ul li a {
    color: #999;
    text-decoration: none;
}

@media(min-width: 1025px) {
    .breadcrumb .inner {
        padding: 0;
    }
}

/*==================================================
    タブレットCSS
===================================*/

@media(min-width:600px) {
    body {
        font-size: 15px;
    }
}

/*==================================================
    デスクトップCSS
===================================*/

@media(min-width:1025px) {
    body {
        font-size: 16px;
    }

    .inner {
        padding: 90px 0;
    }

    /* パソコンの時は非表示 */
    .sp {
        display: none !important;
    }

    .pc {
        display: block;
    }

    .page-header {
        margin-top: 0;
    }

    .page-header .page-header-inner {
        border-radius: 25px;
    }

    .page-header .page-header-inner::before {
        position: absolute;
        top: 70px;
        left: 0;
        content: "";
        width: 50px;
        height: 50px;
        background-image: url(../images/radius_top_left.svg);
        background-repeat: no-repeat;
    }
}