@charset "UTF-8";

/* Template & Designed by Orihashi Ren */
/* http://kerry.php.xdomain.jp/ */

/* webフォント */
@import url('https://fonts.googleapis.com/css2?family=Hind+Madurai:wght@400;700&family=Noto+Sans+JP:wght@300&display=swap');

/* 全体設定 */
* {
    padding: 0;
    margin: 0;
}
*, *::after, *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
* {
    -ms-overflow-style: none;    /* IE, Edge 対応 */
    scrollbar-width: none;       /* Firefox 対応 */
}
*::-webkit-scrollbar{  /* Chrome, Safari 対応 */
    display: none;
}
@-ms-viewport {
    width: device-width;
}

/* 基本設定 */

html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;} 
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;}
html,body {
    padding:0; 
    margin:0; 
    height: 100%;
}
html {
    font-size: 12.5px;
}
@media screen and (min-width: 768px) {
    html {
        font-size: 12.5px;
    }
}
@media screen and (min-width: 1280px) {
    html {
        font-size: 13.5px;
    }
}

body {
    width: 100%;
    text-align: justify;
    word-wrap: break-word; /* 禁則処理 */
    overflow-wrap: break-word;
    -webkit-text-size-adjust: 100%; /* Safari横向き対策 */
    background-color: var(--bg);
    color: var(--dark);
    font-family: 'Hind Madurai', 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 480px) {
    html, body {
        min-width: 320px;
    }
}
body, input, select, textarea, p {
    font-weight: 400;
    font-size: var(--s_n);
    line-height: 2rem; /*行間*/
    letter-spacing: 0.075em; /*文字間隔*/
}
@media screen and (min-width: 768px) {
    body, input, select, textarea, p {
        font-size: var(--s_n);
    }
}

/* リンク */
a {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    border-bottom: solid 1px var(--shadow);
    text-decoration: none;
    outline: none;
    color: var(--shadow);
}
a:hover {
    border-bottom-color: transparent;
    color: var(--dark);
}

/* 文字装飾 */
strong, b, .b {
    font-weight: 700; /*太字*/
}
strong {
    color: #E20613;
}
em, i {
    font-style: italic; /*斜体*/
}
em {
    border-bottom: 1px dashed #E20613;
}

/* text */
p {
    text-align: justify;
    margin: 0 0;
    padding: 0rem 0;
}
h1, h2, h3, h4, h5, h6 {
    text-align: center;
    margin: 1.5rem 0;
    font-weight: 400;
    line-height: 2rem;
    letter-spacing: 0.075em; 
    font-family: 'Hind Madurai','Noto Sans JP', sans-serif !important;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    border-bottom: 0;
    color: inherit;
    text-decoration: none;
}
h1 {
    font-size: 2.5rem;
}
h2 {
    font-size: 1.5rem;
}
h3 {
    font-size: 1.3rem;
}
h4 {
    font-size: 1.2rem;
}
h5 {
    font-size: 1.1rem;
}
h6 {
    font-size: 1.05rem;
}

/* 上付き */
sub {
    font-size: 0.6rem;
    position: relative;
    top: 0.5rem;
}
/* 下付き */
sup {
    font-size: 0.6rem;
    position: relative;
    top: -0.5rem;
}

/* マーカー */
mark {
    display: inline-block;
    padding: 0rem .5rem;
    margin: 0rem 0;
    background: linear-gradient(transparent 10%, var(--shadow) 10%);
    color: #fff;
    text-shadow: none;
}

/* 引用 */
blockquote {
    position: relative;
    padding: 5px 15px 5px 55px;
    box-sizing: border-box;
    font-style: italic;
    border-radius: 0px;
    border: 1px solid var(--dark-blue);
    color: var(--dark-blue);
    background: transparent;
}
blockquote:before{
    display: inline-block;
    position: absolute;
    top: 0;
    left: 8px;
    width: 38px;
    height: 30px;
    text-align: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    background: transparent;
    font-weight: 900;
}
blockquote:after{
    content: '';
    position: absolute;
    left: 8px;
    top: 30px;
    height: 0;
    width: 0;
    border-bottom: 10px solid transparent;
}
blockquote p {
    position: relative;
    padding: 0;
    margin: 10px 0;
    z-index: 3;
    line-height: 1.7;
}
blockquote cite {
    display: block;
    text-align: right;
    font-size: 0.9em;
    color: var(--blue);
    opacity: .8;
}

/* コード */
code {
    border: none;
    font-family: "Courier New", monospace !important;
    margin: 0 .25rem;
    padding: .25rem .65rem;
    background: rgba(255, 255, 255, .7);
    border: solid 1px #eeeeee;
    color: var(--dark);
}
pre {
    width :100% !important;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    text-align: left;
    font-family: "Courier New", monospace !important;
    margin: .5rem 0;
}
pre code {
    width: 100% !important;
    overflow-x: auto;
    display: block;
    padding: .25rem 1.5rem;
    box-sizing: border-box !important;
}

/* 区分線 */
hr {
    border: 0;
    border-bottom: solid 2px;
    margin: 3rem 0rem;
    border-bottom-color: var(--pure-blue);
}

/* 文字揃え */
/*  <span class="align-center">例</span> 等と使用してください  */
.align-left {
    text-align: left;
}
.align-center,
.align-center p {
    text-align: center;
}
.align-right {
    text-align: right;
}

/* Box */
.box {
    position: relative;
    text-align: left;
    width: 100%;
    height: auto;
    margin: 3rem 0rem;
    padding: 1.5rem;
    border-radius: 0px;
}
.box-1 {
    border: 1px solid var(--shadow);
    background: var(--shadow);
    color: #fff;
}
.box-2 {
    border: 1px solid var(--pure-blue);
    background: var(--pure-blue);
    color: #fff;
}
.box > p {
    padding: 0 0;
    text-shadow: none;
}
.box a {
    color: #fff;
}

/* lists */
ol, ul {
    margin: .5rem 0;
    list-style: none;
}
ul li,
ol li {
    text-align: left;
}
.list_no {
    list-style: none;
}
.list_un {
    list-style: disc;
}
.list_or {
    list-style: decimal;
}
.list_or-2 {
    list-style: decimal-leading-zero;
}
.list_no > li,
.list_un > li,
.list_or > li,
.list_or-2 > li {
    margin-left: .5rem;
    padding-left: .5rem;
}
.list_or > li,
.list_un > li,
.list_or-2 > li {
    margin-left: 3rem;
}
.float li {
    float: left;
    padding-left: .5rem;
}
.float:after {
    display: block;
    content: '';
     clear: both
}
.list_or.float li,
.list_or-2.float li {
    margin-left: 3rem;
}
.list_border li:not(:first-of-type) {
    border-left: 1px solid var(--dark);
    padding-left: .5rem;
}

/* dl */
dl {
    text-align: left;
}
.dltype1 {
    text-align: left;
    margin: 0 1rem 1rem;
}
.dltype1 > dt a,
.dltype1 > dt {
    color: var(--dark-blue);
    border-bottom: none;
    margin-bottom: .3rem;
}
.dltype1 > dd {
    margin: 0 0 1rem 1.3rem;
    font-size: var(--s_m);
    line-height: 1.3rem;
    opacity: .8;
}

/* table */
.table_div {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    margin: 0 0rem;
}
table {
    margin: 0rem 0rem;
    width: 100%;
}
table thead {
    border-bottom: solid 2px #fff;
}
table tbody tr {
    border: solid 1px;
    border-left: 0;
    border-right: 0;
    border-color: #231d25;
}
table tbody tr:nth-child(odd) {
    background-color: rgba(255,255,255, .7);
    color: var(--dark);
}
table td {
    padding: 0.75rem 0.75rem;
}
table th {
    font-family: 'Hind Madurai','Noto Sans JP', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 1.5;
    padding: 0 0.75rem 0.75rem 0.75rem;
    text-align: left;
}
table tfoot {
    border-top: solid 2px;
    border-top-color: #eeeeee;
}
@media screen and (max-width: 980px) {
    table th {
        font-size: 0.9rem;
    }
}

/* link button */
.link {
    display: inline-block;
    height: 25px;
    line-height: 2rem;
    margin: .5rem auto;
    padding: 0 .3rem;
    font-size: 1rem;
    border-radius: 0px;
    background: var(--pure-blue) !important;
    border: 1px solid var(--pure-blue) !important;
    color: #fff !important;
    transition: all .5s !important;
    -webkit-appearance: none;
}
.link:hover {
    background: transparent !important;
    color: var(--pure-blue) !important;
    border: 1px solid var(--pure-blue) !important;
}
.btn {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    position: relative;
    white-space: nowrap;
    cursor:pointer;
    border: none;
    margin: 1rem;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    line-height: 22px;
    letter-spacing: 0.1rem;
    border-radius: 8px;
    text-decoration: none;
    text-transform: capitalize;
    -webkit-appearance: none;
    -webkit-transition: all .5s  !important;
    transition: all .5s !important;
    -moz-transition: all .5s !important;
    font-family: 'Hind Madurai','Noto Sans JP', sans-serif !important;
}
.btn:hover {
    color: var(--shadow);
}
.btn-1 {
    border: none !important;
    color: var(--shadow) !important;
}
.btn-1:hover {
    border: none !important;
    color: var(--shadow) !important;
    box-shadow: var(--bs-3-hover);
    -moz-box-shadow: var(--bs-3-hover);
    -webkit-box-shadow: var(--bs-3-hover);
}
.btn-2 {
    box-shadow: var(--bs-4);
    -moz-box-shadow: var(--bs-4);
    -webkit-box-shadow: var(--bs-4);
    background: var(--pure-blue);
    border: none !important;
    color: #fff !important;
}
.btn-2:hover {
    box-shadow: none;
    background: var(--pure-blue);
    border: none !important;
    color: #fff !important;
}
.btn-3 {
    background: var(--bg);
    border: none!important;
    color: var(--shadow) !important;
}
.btn-3:hover {
    background: var(--bg);
    border: none !important;
    color: var(--shadow) !important;
    box-shadow: none;
}
.btn-1:hover svg {
    fill: var(--shadow);
}
.btn svg {
    position: relative;
    left: -4px;
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: top;
    font-weight: normal;
    margin: 2px 0;
    fill: var(--shadow);
    transition: all .5s !important;
}

/* form */
form {
    text-align: center;
}
.box-b {
    max-width: 340px;
    margin: 1rem auto;
    padding: 0rem;
}
.box-a {
    max-width: 340px;
    margin: 1rem auto;
    padding: 0rem;
}
input[type=text],
input[type=search],
textarea {
    outline: none;
    display: block;
    width: 100%;
    -webkit-appearance: none;
    border: 1px solid var(--bg);
    border-radius: 3px;
    padding: 8px 16px;
    line-height: 22px;
    color: var(--shadow);
}
input[type=text]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: var(--shadow);
}
input[type=text]::-moz-placeholder,
textarea::-moz-placeholder {
    color: var(--shadow);
}
input[type=text]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: var(--shadow);
}
input[type=text]::placeholder,
textarea::placeholder,
.cp_ipselect select::placeholder {
    color: var(--shadow);
}
input[type],
textarea,
.cp_ipselect select {
    -moz-transition: border-color .4s ease-in-out, box-shadow .4s ease-in-out, background-color .4s ease-in-out;
    -webkit-transition: border-color .4s ease-in-out, box-shadow .4s ease-in-out, background-color .4s ease-in-out;
    -ms-transition: border-color .4s ease-in-out, box-shadow .4s ease-in-out, background-color .4s ease-in-out;
    transition: border-color .4s ease-in-out, box-shadow .4s ease-in-out, background-color .4s ease-in-out;
    font-family: 'Hind Madurai','Noto Sans JP', sans-serif !important;
}
input[type=text]:focus,
textarea:focus,
.cp_ipselect select:focus {
    outline: none;
    border: var(--bg) 1px solid;
    background: transparent;
    color: var(--shadow) !Important;
}
input[type=text]:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder,
.cp_ipselect select:focus::-webkit-input-placeholder {
    color: var(--shadow);
}
input[type=text]:focus::-moz-placeholder,
textarea:focus::-moz-placeholder,
.cp_ipselect select:focus::-moz-placeholder {
    color: var(--shadow);
}
input[type=text]:focus:-ms-input-placeholder,
textarea:focus::-ms-input-placeholder,
.cp_ipselect select:focus::-ms-input-placeholder {
    color: var(--shadow);
}
input[type=text]:focus::placeholder,
textarea:focus::placeholder,
.cp_ipselect select:focus::placeholder {
    color: var(--shadow);
}
.form-element {
    margin-bottom: 20px;
}
form label {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: capitalize;
    font-family: 'Hind Madurai','Noto Sans JP', sans-serif
}
.cp_ipselect {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.cp_ipselect select {
    position: relative;
    width: 100%;
    padding-right: 1em;
    cursor: pointer;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
    border: var(--bg) 1px solid ;
    border-radius: 3px;
}
.cp_ipselect select::-ms-expand {
    display: none;
}
.cp_ipselect.cp_sl01 {
    position: relative;
}
.cp_ipselect.cp_sl01::before {
    position: absolute;
    top: 0.8em;
    right: 0.9em;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--shadow) !important;
    pointer-events: none;
}
.cp_ipselect.cp_sl01 select {
    padding: 8px 38px 8px 16px;
    color: var(--shadow);
}
.cp_ipselect select option{
    color: var(--dark);
}

@media screen and (min-width: 768px) {
    .form {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .form > div {
        flex-basis: 48%;
    }
    .box-b {
        max-width: none;
    }
}

/*-------------------- index --------------------*/

:root {
    --bg: #F0F0F3;
    --shadow: #AEAEC0;
    --dark: #41444b;
    --blue: rgba(146, 156, 208, 1);
    --pure-blue: #9dabc0;

    --bs-1: 10px 10px 30px var(--shadow),-10px -10px 30px #fff;
    --bs-2: inset 8px 8px 8px rgba(174,174,192,.2), inset -8px -8px 8px #fff;
    --bs-3:inset 0 0 5px rgba(55, 84, 170, 0), inset 0 0 10px rgba(255, 255, 255, 0), 5px 5px 9px rgba(55, 84, 170, 0.15), -5px -5px 11px white, inset 0px 0px 2px rgba(255, 255, 255, 0.2);
    --bs-3-hover: inset 0 0 10px rgba(55, 84, 170, 0), inset 0 0 20px rgba(255, 255, 255, 0), 10px 10px 18px rgba(55, 84, 170, 0.15), -10px -10px 22px white, inset 0px 0px 4px rgba(255, 255, 255, 0.2);
    --bs-4: 0px 10px 15px rgba(55, 84, 170, 0.25);
    --bs-5: -12px -12px 20px rgba(255, 255, 255, 0.8), 10px 10px 20px rgba(166, 180, 200, 0.7);
    
    --bg-5: linear-gradient(134.17deg, #EEF0F5 4.98%, #E6E9EF 94.88%);
    
    --ts-1: 1px 7px 15px rgba(174, 174, 192, 1), 1px 4px 1px rgba(255,255,255,1);

    --transition: all 250ms ease-in-out;

    --s_s: .9rem;
    --s_m: .97rem;
    --s_n: 1rem;
    --s_b: 1.1rem;
    --s_bb: 1.2rem;

    --serif: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    --san-serif: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.bg-1 {
    background: var(--bg);
    box-shadow: var(--bs-1);
    -webkit-box-shadow: var(--bs-1);
    -moz-box-shadow: var(--bs-1);
    transition: var(--transition);
}
.bg-2 {
    background: var(--bg);
    box-shadow: var(--bs-2);
    -webkit-box-shadow: var(--bs-2);
    -moz-box-shadow: var(--bs-2);
    transition: var(--transition);
}
.bg-3 {
    background: var(--bg);
    box-shadow: var(--bs-3);
    -webkit-box-shadow: var(--bs-3);
    -moz-box-shadow: var(--bs-3);
    transition: var(--transition);
}
.bg-4 {
    background: var(--pure-blue);
    box-shadow: var(--bs-4);
    -moz-box-shadow: var(--bs-4);
    -webkit-box-shadow: var(--bs-4);
    transition: var(--transition);
}
.bg-5 {
    background: var(--bg-5);
    box-shadow: var(--bs-5);
    -webkit-box-shadow: var(--bs-5);
    -moz-box-shadow: var(--bs-5);
    transition: var(--transition);
}

/* wrapper */
.wrp {
    text-align: center;
    margin: 9rem 0;
    background: transparent;
}
main {
    margin: 0 auto;
    padding: 1rem 4rem;
}
section, .section {
    text-align: center;
    margin: 0 0 5rem;
    padding: 1rem 0rem;
}

/* footer */
footer {
    margin: 5rem auto 15rem;
    text-align: center;
    font-size: .9rem;
}

/* text */
h1,h2,h3,h4,h5,h6 {
    text-transform: capitalize;
}
h2,h3,h4,h5,h6 {
    position: relative;
    font-size: 1.35rem;
    letter-spacing: .25rem;
}
h2 {
    font-size: 1.45rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10rem;
}
h4,h5,h6 {
    font-size: 1.2rem;
}
h3 {
    display: block;
    margin-bottom: 3rem;
}
h4 {
    text-align: left;
    padding: 0 1rem;
    margin-top: 10rem;
    background: var(--shadow);
    color: #fff;
}
h5 {
    text-shadow: var(--ts-1);
}
h6 {
    text-align: left;
    padding-left: .5rem;
    border-left: 5px solid var(--shadow);
}
.sub,
.sub-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}
.sub::before,
.sub::after,
.center .sub-title::before,
.center .sub-title::after {
    content: "";
    display: block;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border-bottom: 1px solid var(--dark);
}
.sub::before,
.center .sub-title::before {
    margin-right: 1rem;
}
.sub::after,
.center .sub-title::after {
    margin-left: 1rem;
}
.sub::before,
.sub::after {
    border-bottom: 1px solid var(--shadow);
}
.left .sub-title::after,
.right .sub-title::before {
    content: "";
    display: block;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.left .sub-title::after {
    border-bottom: 1px solid var(--dark);
    margin-left: 1rem;
}
.right .sub-title::before {
    border-bottom: 1px solid var(--dark);
    margin-right: 1rem;
}
.article-title {
    text-align: left;
    display: inline-block;
}


/* line */
.line,
.line-2 {
    position: relative;
    display: block;
    width: 100%;
    left: 0;
    margin: 2rem auto 2rem;
    border-bottom: 1px solid var(--shadow);
}
.line-2 {
    border-bottom: 1px solid var(--dark);
}

/* aside */
aside {
    position: relative;
    text-align: left;
    margin: 1.5rem 0;
    padding: 1rem 1rem;
    border: none;
    font-size: var(--s_m);
}

/* scroll box */
.scroll {
    position: relative;
    overflow-y: scroll !important;
    height: 8rem;
    width: 100%;
    margin: 0 auto 0rem;
    padding: .5rem 1rem;
    font-size: var(--s_m);
    border-radius: 0px;
    border: 1px solid transparent;
    background: transparent;
    transform: translateZ(0);
    z-index: 100;
}
.scroll .list_no {
    margin: 0 !important;
}
.scroll .list_no li {
    margin: 0 0 !important;
    padding-left: 0rem !important;
}
.scroll mark {
    position: relative;
    z-index: -10;
}

/* new */
.new::after {
    content: "new";
    color: var(--shadow);
    margin-left: 0.5rem;
    opacity: .8;
    font-size: .9rem;
}

/* profile */
.pro {
    float: left;
    margin: 0 2rem 1rem 0;
}
.pro img {
    position: relative;
    display: inline-block;
    margin: .5rem 0;
    height: 15rem;
    width: 15rem;
    object-fit: cover;
    vertical-align: middle;
}
.pro-sen {
    display: block;
    vertical-align: middle;
}
.pro-sen span {
    margin-left: .5rem;
}
.pro-sen a {
    border-bottom: none;
    color:  var(--shadow)
}
.pro a i {
    margin: 0 0;
    padding: .5rem 1rem;
    border-radius: 10px;
    color: var(--shadow);
}   
.clear::after {
    display: block;
    content: '';
    clear: both;
}

/* margin */
.m_12r {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
}
.m_6r {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
}
.m_4r {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
}
.m_2r {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}
.m_1r {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}
.m_0 {
    margin: 0 !important;
}
.m_b_2r {
    margin-bottom: 2rem !important;
}
.m_b_1r {
    margin-bottom: 1rem !important;
}
.m_t_4r {
    margin-top: 4rem !important;
}
.m_t_2r {
    margin-top: 2rem !important;
}
.m_t_1r {
    margin-top: 1rem !important;
}

/*max width */
.max_620 {
    display: block;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}
.max_700 {
    display: block;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/*-------------------- main --------------------*/

/* breadcrumbs list */
.breadcrumbs {
    display: block;
    text-align: center;
    position: relative;
    overflow-x: scroll;
    white-space: nowrap;
    width: 100%;
    margin: 10rem auto 7rem;
    padding: 0 2rem;
}
.breadcrumbs li {
    display: inline-block;
    margin-right: .5rem;
    font-size: .97rem;
    color: var(--shadow);
    text-transform: capitalize;
    font-family: 'Overlock SC','Noto Sans JP', sans-serif​;
}
.breadcrumbs li:not(:first-of-type)::before {
    padding: 0 10px 0 0;
    content: "\f105";
    font-family:'Font Awesome 5 Free';
    font-weight: 900;
    font-size: .77rem;
    color: var(--shadow);
}

/* form */
.main form {
    display: inline-block;
    margin: 1rem auto;
    max-width: 370px;
}
.main input[type] {
    display: inline-block;
}
.main input[type=text],
.main input[type=password] {
    width: 40%;
    padding: .2rem .3rem;
}
.main input[type=submit],
#passCheckBtn {
    -webkit-appearance: none;
    transition: all .5s;
    padding: .1rem .3rem;
    line-height: 2rem;
    border-radius: 8px;
    border: none;
    color: var(--shadow) !important;
}
.main input[type=submit]:hover,
#passCheckBtn:hover {
    background: var(--bg);
    border: none;
    color: var(--shadow) !important;
    box-shadow: var(--bs-3-hover);
}

/*card */
.card a {
    border-bottom: none;
}
.card-1 img {
    display: flex;
    object-fit: cover;
    width: 200px;
    height: 40px;
    vertical-align: bottom;
    border: 1px solid var(--dark-blue);
}
.card-1 aside {
    margin: 0;
    padding: .5rem;
    text-align: left;
    border: none;
    background: transparent;
}
.card-1 a {
    color: var(--dark) !important;
}

.card dd::before {
    position: absolute;
    display: inline-block;
    content: '└';
    margin: 0 0 0 -2rem;
    font-size: 1.2rem;
}
.card dd{
    text-indent: 0rem;
    margin-left: 3rem;
}

/*-------------------- long --------------------*/

time, .time {
    display: block;
    font-size: var(--s_m) !important;
}

.right,
.right h6,
.right aside,
.right ul li,
.right ol li {
    text-align: right;
}
.right h6 {    
    border-left: none;
    border-right: 5px solid var(--shadow);
    padding-right: .5rem;
}
.right-img {
    display: flex;
    flex-direction: row-reverse;
}
.right-img img {
    display: block;
}

.center,
.center h6,
.center aside,
.center ul li,
.center ol li {
    text-align: center;
}
.center h6 {
    display: inline-block;
    border-right: 5px solid var(--shadow);
    padding-right: .5rem;
}
.center-img {
    display: inline-block;
    vertical-align: bottom;
}

/*-------------------- novel --------------------*/

.element {
    display: inline-block !important;
}
.element,
.pagination span,
.article-title span {
    position:relative;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    padding: 3px;
    border: 1px solid var(--bg);
    background: var(--bg);
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    box-shadow: var(--bs-3);
    -webkit-box-shadow: var(--bs-3);
    -moz-box-shadow: var(--bs-3);
    transition: var(--transition);
}
.article-title span {
    display: inline-block;
    margin-right: 1rem;
}

/* story */
.novel {
    text-align: center !important;
    padding: 1rem 0;
    margin: 2rem 0;
    background: transparent;
}
.novel > p {
    /*小説部分の段落に間隔を作りたくない場合はmargin-topに0を指定してください*/
    margin-top: 2rem;
    line-height: 2.5rem; /*小説部分の行間*/
    letter-spacing: 0.025rem; /*小説部分の文字間隔*/
}
.novel > p:first-of-type {
    margin-top: 0;
}

/* ruby */
[data-ruby] {
    display: inline-block;
    position: relative;
}
[data-ruby]::before {
    content: attr(data-ruby);
    display: inline-block;
    position: absolute;
    transform: translateX(-50%) scale(.5);
    white-space: nowrap;
    top: -1.2rem;
    left: calc(50%);
    text-align: center;
    letter-spacing: 0.25em;
    font-size: 1em;
    font-family: var(--san-serif) !important;
}
[data-ruby] rt {
    display: none;
}

/* pagination */
ul.pagination {
    display: inline-block;
    position: relative;
    text-align: center !important;
    margin: 1.5rem auto;
    padding: .3rem 1rem;
    line-height: 1.9rem;
    transition: all .5s;
    background: transparent;
}
ul.pagination > li {
    display: inline-block;
    margin: 0 5px 0 0;
}
ul.pagination > li a {
    border: none;
}
ul.pagination > li:last-child {
    margin: 0 0;
}
ul.pagination > li a span  {
    display: inline-block;
    margin: 0 1rem -.3rem;
}

/*-------------------- note --------------------*/

/* article */
article:not(:last-child), .article:not(:last-child) {
    margin-bottom: 12rem;
}
article .time, .article .time {
    margin: 1rem 0;
}

/* button */
.cta {
    display: inline-block;
    -webkit-appearance: none;
    -webkit-transition: all .5s  !important;
    transition: all .5s  !important;
    text-decoration: none;
    margin: 1.5rem 0;
    border: none;
    letter-spacing: .075rem;
    line-height: 2rem;
    padding: 5px 40px;
    border-radius: 25px;
    font-weight: 600;
    font-family: 'Hind Madurai','Noto Sans JP', sans-serif !important;
    font-size: var(--s_b);
    box-shadow: var(--bs-4);
    background: var(--pure-blue);
    color: #fff;
}
.cta:hover {
    color: #fff;
    box-shadow: none;
}

/* image */
.a-img img {
    display: inline-block;
    height: 15rem;
    width: auto;
    max-width: 90%;
    object-fit: cover;
    margin: 1rem auto 0;
    padding: 0;
    vertical-align: bottom;
}
.a-img,
[id^="figure"] a {
    border-bottom: none;
}
figure{
    margin: 0;
    display: none;
}
figure:target{
    display: block;
    position: fixed !important;
    top: 0 ;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000 !important;
}
figure:target [id^="overlay"]{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(57, 59, 68, .7);
    text-decoration: none;
    color: inherit;
    z-index: 1000 !important;
}
figure:target img{
    height: 20rem;
    max-width: none;
    max-height: none;
    width: auto;
    object-fit: fill;
    animation: fadein .3s;
    z-index: 1100;
}
[id^="overlay-"] .align-center {
    color: #fff;
}
.image.img-left {
    float: left;
    margin: 0 1rem 1rem 0;
    top: 0.75rem;
}
.ja .image.img-left {
    top: .3rem;
}
.image.img-left, .image.right {
    max-width: 60%;
    max-height: 40%;
}
.image {
    border: 0;
    display: inline-block;
    position: relative;
}
.image.img-left img, .image.right img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    vertical-align: middle;
    padding: 0;
    border: none ;
}
.image img {
    display: block;
}

@keyframes fadein{
    0%{
        transform: scale(0.2);
        opacity: 0.2;
    }
    100%{
        transform: scale(1);
        opacity: 1;
    }
}
@media screen and (min-width:768px) {
    figure:target img{
        height: 30rem;
    }
}
@media screen and (min-width:1280px) {
    figure:target img{
        height: 40rem;
    }
}

/*-------------------- elements --------------------*/

.box .sub::before,
.box .sub::after,
.box .line {
    border-bottom: 1px solid #fff;
}
.box h6 {
    border-left-color: #fff;
}
.article-title-2 {
    position: relative;
    display: block;
}
.article-title-2 span {
    position: relative;
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 1rem;
}
.article-title-2 span::before,
.article-title-2 span::after {
    position: absolute;
    content: '△';
    color: var(--shadow);
}
.article-title-2 span::before {
    font-size: 2.5rem;
    top: 0rem;
    left: -.1rem;
    transform: rotate(28deg)
}
.article-title-2 span::after {
    font-size: 2rem;
    top: -1rem;
    right: -.5rem;
    transform: rotate(42deg);
}
.box .article-title-2 {
    margin-left: 1rem;
}
.box .article-title-2 span::before,
.box .article-title-2 span::after {
    color: #fff;
}

/*-------------------- navigation --------------------*/

#nav-toggle > a {
    display: inline-block;
    font-size: 17px;
    color: var(--dark);
    border-bottom: none;
    position: fixed;
    text-align: left; 
    top: 1.5rem;
    left: 1rem;
    z-index: 10000;
}
#nav-toggle {
    top: 0;
    position: fixed;
    width: 100%;
    height: 0;
    z-index: 10000;
}
#nav-toggle div {
    display: block;
    position: fixed;
    right: 1rem;
    top: 1.5rem;
    margin:0;
    padding:0;
    width: 30px;
    height: 20px;
}
#nav-toggle span {
    position: absolute;
    right: 0;
    height: 1.5px;
    background: var(--dark);
    border-radius: 10px;
    transition: .5s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
    width: 100%;
}
#nav-toggle span:nth-child(2) {
    top: 10px;
    width: 70%;
}
#nav-toggle span:nth-child(3) {
    top: 20px;
    width: 40%;
}
.open #nav-toggle span:nth-child(1) {
    width: 40%;
    background: #fff !important;
}
.open #nav-toggle span:nth-child(2) {
    background: #fff !important;
}
.open #nav-toggle span:nth-child(3) {
    width: 100%;
    background: #fff !important;
}
.open #nav-toggle > a {
    color: #fff;
}
nav {
    text-align: center;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, .8);
    z-index: 1000;
}
nav ul {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    object-fit: cover;
    margin:0;
    padding:0;
}
nav ul li {
    display: list-item !important;
    text-align: center;
    font-size: 14px;
    margin: 2rem 0;
    text-transform: capitalize;
}
nav ul li a {
    color: #fff;
    margin: 1rem;
    border-bottom: none;
}
nav ul li a:hover {
    color: #fff;
}

@media screen and (min-width: 768px) {
    #nav-toggle > a {
        left: 2rem;
    }
    #nav-toggle div {
        right: 2rem;
    }
}

/*-------------------- other --------------------*/

/* top */
#all {
    display: block;
    position: fixed;
    top: 0;
    height: 1rem;
    width: 100%;
    background: transparent;
}

/* pagetop button */
#page-top {
    position: fixed;
    bottom: 1%;
    left: 1rem;
    z-index: 100;
}
#page-top a {
    display: block;
    padding: 0;
    border-bottom: none;
    color: var(--dark);
    font-size: 1.8rem;
}
#page-top a:hover,
#page-top a:focus {
    color: var(--shadow);
}

/* loader */
.page-loader {
    display: inline-block;
    position: fixed;
    height: 100vh;
    width: 100%;
    background: var(--bg);
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    z-index: 100000000;
}
@keyframes spin {
    from {
        transform: rotate(0);
    }
    to{
        transform: rotate(359deg);
    }
}
.spinner-box {
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin:0;
    padding:0;
}
.circle-border {
    width: 150px;
    height: 150px;
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #fff;
    background: linear-gradient(0deg, rgba(255,255,255,0.1) 33%, rgba(255,255,255,1) 100%);
    animation: spin .8s linear 0s infinite;
}
.circle-core {
    width: 100%;
    height: 100%;
    background-color: var(--bg);
    border-radius: 50%;
}

/*-------------------- color --------------------*/
/* white */
.white {
    color: #fff !important;
}
/* dark */
.dark {
    color: var(--dark) !important;
}
/* gray */
.gray {
    color: var(--shadow) !important;
}
/* blue */
.blue {
  color: var(--blue) !important;
}
.pure-blue {
    color: var(--pure-blue) !important;
}

/* white */
.bg-white {
    background: #fff !important;
}
/* dark */
.bg-dark {
    background: var(--dark) !important;
}
/* gray */
.bg-gray {
    background: var(--shadow) !important;
}
.bg-blue {
    background: var(--blue) !important;
}
.bg-pure-blue {
    background: var(--pure-blue) !important;
}

/*-------------------- font size --------------------*/
.inline {
    display: inline;
}
.s_s {
    font-size: var(--s_s) !important;
}
.s_m {
    font-size: var(--s_m) !important;
}
.s_n {
    font-size: var(--s_n) !important;
}
.s_b {
    font-size: var(--s_b) !important;
}
.s_bb {
    font-size: var(--s_bb) !important;
}

/*-------------------- font family --------------------*/
.serif {
    font-family: var(--serif);
}

/*-------------------- other --------------------*/
.o_8 {
    opacity: .8;
}
.bg_trans {
    background: transparent;
}

/*-------------------- uberline --------------------*/
.dot {
    border-bottom: dotted 1px var(--shadow);
    display: inline;
}
.none {
    border-bottom: none;
}

/*-------------------- marker --------------------*/
.marker {
    padding: 0;
}
.marker1 {
    background: linear-gradient(transparent 60%, rgba(174, 174, 192, .48) 60%);
    color: var(--dark);
}
.marker2 {
    background: linear-gradient(transparent 60%, #fff 60%);
    color: var(--dark);
}
.marker4 {
    display: inline-block;
    padding: 0 .5rem;
    background: linear-gradient(transparent 10%, var(--pure-blue) 10%);
    color: #fff;
}

/*-------------------- line --------------------*/

.border-b-1 {
    border-bottom: 1px solid var(--shadow) !important;
}

.border-r-1,
.border-r-2,
.border-r-3,
.border-r-4 {
    padding-right: .5rem;
    margin-right: .5rem;
}
.border-r-1 {
    border-right: 5px solid var(--shadow);
}
.border-r-2 {
    border-right: 5px solid #fff;
}
.border-r-3 {
    border-right: 5px solid var(--pure-blue);
}
.border-l-1,
.border-l-2,
.border-l-3,
.border-l-4 {
    padding-left: .5rem;
}
.border-l-1 {
    border-left: 5px solid var(--shadow);
}
.border-l-2 {
    border-left: 5px solid #fff;
}
.border-l-3 {
    border-left: 5px solid var(--pure-blue);
}
.border-a {
    position: relative;
    margin-right: 4.5rem;
}
.border-a::after {
    position: absolute;
    display: block;
    content: '';
    top: 50%;
    left: 115%;
    width: 3rem;
    height: 1px;
    background: var(--dark);
}
