@charset "UTF-8";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
address {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
address {
    display: block;
}

nav ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    display: block;
    border: 0;
    margin: 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

img {
    vertical-align: bottom;
}


/*--------------------------------------------------------------
　全体共通コンポーネント
--------------------------------------------------------------*/

html {
    font-size: 62.5%;
}

body {
    background: #ececec;
    color: #404040;
    font-size: 1.6em;
    line-height: 1.6;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-text-size-adjust: 100%;
}


/* タブレット / ポートレート表示のみ */

@media screen and (min-width: 768px) and (max-width: 1023px) {
    body {
        font-size: 1.4em;
    }
}


/* スマートフォン表示 */

@media screen and (max-width: 767px) {
    body {
        font-size: 1.4em;
    }
}


/*
　表示・非表示用クラス
--------------------------------------------------------------*/

.is-pc {
    display: block;
}

.is-sp {
    display: none;
}


/* スマートフォン表示 */

@media only screen and (max-width: 767px) {
    .is-pc {
        display: none;
    }
    .is-sp {
        display: block;
    }
}


/*--------------------------------------------------------------
　ページスタイル
--------------------------------------------------------------*/

.page-wrapper-inner {
    margin: auto;
    padding: 53px 8px;
}

@media only screen and (max-width: 767px) {
    .page-wrapper-inner {
        padding: 53px 23px;
    }
}

.page-title {
    max-width: 50vw;
    margin: 0 auto 34px;
}

@media only screen and (max-width: 767px) {
    .page-title {
        max-width: 600px;
        margin: 0 auto 17px;
    }
}

.page-title-image {
    width: 100%;
}

.page-lead {
    margin-bottom: 43px;
    font-size: 1.33333vw;
    text-align: center;
    letter-spacing: 0.08em;
    line-height: 1.8;
}

@media only screen and (max-width: 767px) {
    .page-lead {
        margin-bottom: 20px;
        font-size: 1.36rem;
        text-align: left;
        letter-spacing: .04em;
    }
}

.page-link-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 76.5vw;
    margin: 0 auto 4.41667vw;
}

@media only screen and (max-width: 767px) {
    .page-link-area {
        max-width: 918px;
        margin: 0 auto 53px;
    }
}

.page-link-area-item {
    max-width: 31.5vw;
}

@media only screen and (max-width: 767px) {
    .page-link-area-item {
        max-width: 378px;
    }
}

.page-link-area-item:first-of-type {
    padding-right: 9.259%;
    border-right: 1px solid #000000;
}

.page-link-area-item:nth-of-type(2) {
    padding-left: 9.259%;
}

@media only screen and (max-width: 767px) {
    .page-link-area-item:first-of-type {
        border-right: 1px dotted #000000;
    }
}

.page-link-area-item:hover {
    opacity: .7;
}

.page-link-area-btn {
    width: 100%;
    margin-bottom: 12px;
}

.page-link-area-image {
    -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.12);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.12);
    width: 100%;
    border-radius: 2px;
}

.page-logo {
    display: block;
    width: 5vw;
    height: auto;
    margin: auto;
}

@media only screen and (max-width: 767px) {
    .page-logo {
        width: 60px;
    }
}

.publish-date {
    text-align: right;
    padding: 0 3vw 0 0;
    margin-top: -2em;
}

.publish-date img {
    width: 4vw;
    height: auto;
}

@media only screen and (max-width: 767px) {
    .publish-date {
        text-align: right;
        padding: 0 0 0 0;
        margin-top: -1.6em;
    }
    .publish-date img {
        width: 50px;
        height: auto;
    }
}