@charset "utf-8";

/*==================================================
    全体共通設定
===================================*/

body {
    font-size: 14px;
    font-family: "yu-mincho-pr6n", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-weight: 500;
    color: #655B46 !important;
    overflow-x: hidden;
    background-color: #FFFEF9;
}

/* 英字フォント */
.font-en {
    font-family: "linotype-sabon", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* 画像 */
img {
    width: 100%;
    vertical-align: bottom;
}

/* コンテンツ幅の指定 */
.inner {
    padding: 60px 4%;
    max-width: 1100px;
    margin: 0 auto;
	width: 100%;
}

/* スマホの時のみ表示 */
.sp {
    display: block;
}

.pc {
    display: none;
}

/* ページヘッダー */
.page-header {
    position: relative;
    margin-top: 70px;
    height: 40vh;
    background-color: #E6E0DE;
}

.page-header-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    width: 95%;
    height: 35vh;
    background-image: url(../images/page-header.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    z-index: 2;
}

.page-title {
    letter-spacing: .1em;
    font-size: 2em;
	margin-bottom: 10px !important;
	text-shadow: 0 0 5px #fff;
}

.page-title-wrap {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
}

.page-title-wrap p {
	margin-bottom: 0 !important;
	font-weight: bold;
	text-shadow: 0 0 5px #fff;
}

/* コンテンツタイトル */
.content-title {
    margin: 0 0 100px 0;
    position: relative;
    text-align: center;
    color: #C79E96;
    font-size: 3em;
    letter-spacing: .05em;
}

.content-title::before,
.content-title::after {
    position: absolute;
    left: 47%;
    content: "";
    width: 25px;
    height: 1px;
    background-color: #C79E96;
    transform: rotate(135deg);
}

.content-title::before {
    top: -20px;
}

.content-title::after {
    bottom: -20px;
}

/* moreボタン */
.more-btn {
    text-align: center;
}

.more-btn a {
    display: inline-block;
    padding: 15px 50px;
    color: #fff;
    border-radius: 50px;
    background-color: #C79E96;
    text-decoration: none;
    letter-spacing: .1em;
    transition: all .4s;
}

.more-btn a:hover {
    opacity: .6;
}

/*==================================================
    タブレットCSS
===================================*/

@media(min-width:600px) {
    body {
        font-size: 15px;
    }
}

/*==================================================
    デスクトップCSS
===================================*/

@media(min-width:1025px) {
    body {
        font-size: 16px;
    }

    .inner {
        padding: 120px 0;
    }

    /* パソコンの時は非表示 */
    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    /* ページヘッダー */
    .page-header {
        margin-top: 100px;
    }

    .content-title::before,
    .content-title::after {
        left: 49%;
    }

    /* more-btn */
    .more-btn a {
        padding: 20px 60px;
    }
}