@charset "UTF-8";

/* Template & Designed by Orihashi Ren */
/* http://kerry.php.xdomain.jp/ */

/* webフォント */
@import url('https://fonts.googleapis.com/css2?family=IM+Fell+DW+Pica+SC&family=IM+Fell+DW+Pica:ital@0;1&family=Noto+Serif+JP&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: 12px;
}
@media screen and (min-width: 768px) {
    html {
        font-size: 12.5px;
    }
}
@media screen and (min-width: 1280px) {
    html {
        font-size: 12.5px;
    }
}

body {
    width: 100%;
    text-align: justify;
    word-wrap: break-word; /* 禁則処理 */
    overflow-wrap: break-word;
    -webkit-text-size-adjust: 100%; /* Safari横向き対策 */
    background-color: #fff;
    color: var(--dark-gray);
    font-family: 'Noto Serif JP', serif;
}
@media screen and (max-width: 480px) {
    html, body {
        min-width: 320px;
    }
}
body, input, select, textarea, p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 2rem; /*行間*/
    letter-spacing: 0.075em; /*文字間隔*/
}
@media screen and (min-width: 768px) {
    body, input, select, textarea, p {
        font-size: 1rem
    }
}

/* リンク */
a {
    -moz-transition: color .8s ease-in-out, background-color .8s ease-in-out, border-bottom-color .8s ease-in-out;
    -webkit-transition: color .8s ease-in-out, background-color .8s ease-in-out, border-bottom-color .8s ease-in-out;
    -ms-transition: color .8s ease-in-out, background-color .8s ease-in-out, border-bottom-color .8s ease-in-out;
    transition: color .8s ease-in-out, background-color .8s ease-in-out, border-bottom-color .8s ease-in-out;
    border-bottom: solid 1px var(--pure-purple);
    text-decoration: none;
    outline: none;
    color: var(--more-purple);
}
a:hover {
    border-bottom-color: transparent;
    color: var(--blue);
}

/* 文字装飾 */
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;
    font-weight: 400;
    line-height: 1.7rem;
    letter-spacing: 0.075em;
    margin: 1.5rem 0;
    font-family: 'IM Fell DW Pica SC','Noto Serif JP', serif;
}
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(--more-purple) 10%);
    color: #fff;
    text-shadow: none;
}

/* 引用 */
blockquote {
    position: relative;
    padding: 5px 15px 5px 55px;
    box-sizing: border-box;
    font-style: italic;
    border-radius: 0px;
    color: #fff;
    background: var(--pure-blue);
}
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: var();*/
    font-weight: 900;
}
blockquote:after{
    content: '';
    position: absolute;
    left: 8px;
    top: 30px;
    height: 0;
    width: 0;
/*
    border-left: 19px solid var();
    border-right: 19px solid var();
*/
    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: #fff;
    opacity: .8;
}

/* コード */
code {
    border: none;
    font-family: "Courier New", monospace !important;
    margin: 0 .25rem;
    padding: .25rem .65rem;
    background: rgba(238, 238, 238, .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 {
    text-align: left;
    width: 100%;
    height: auto;
    margin: 3rem 0rem;
    padding: 1.5rem;
    border-radius: 0px;
}
.box-1 {
    border: 1px solid var(--light-blue);
    background: var(--light-blue);
    color: #fff;
}
.box-2 {
    border: 1px solid var(--pure-white);
    background: var(--pure-white);
}
.box > p {
    padding: 0 0;
    text-shadow: none;
}
.box a {
    color: #fff;
}

/* lists */
ol, ul {
    text-align: left;
    margin: .5rem 0;
    list-style: none;
}
.list_no {
    list-style: none;
}
.list_un {
    list-style: disc;
}
.list_or {
    list-style: decimal;
}
.list_no > li,
.list_un > li,
.list_or > li {
    margin-left: .5rem;
    padding-left: .5rem;
    text-align: left;
}
.list_or > li,
.list_un > li {
    margin-left: 2rem;
}
.float li {
    float: left;
    padding-left: .5rem;
}
.float:after {
    display: block;
    content: '';
    clear: both
}
.list_no.float li {
    margin-left: .5rem;
    padding-left: .5rem;
}
.list_or.float li {
    margin-left: 2rem;
}
.list_border li:not(:first-of-type) {
    border-left: 1px solid var(--dark-gray);
    padding-left: .5rem;
}

/* dl */
dl {
    text-align: left;
}
.dltype1 {
    text-align: left;
    margin: 0 1rem;
}
.dltype1 > dt a,
.dltype1 > dt {
    color: var(--dark);
    border-bottom: none;
    margin-bottom: .3rem;
}
.dltype1 > dd {
    margin-left: 1.3rem;
    font-size: .77rem;
    line-height: 1.3rem;
}

/* 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 var(--dark);
}
table tbody tr {
    border: solid 1px;
    border-left: 0;
    border-right: 0;
    border-color: #231d25;
}
table tbody tr:nth-child(odd) {
    background-color: rgba(238, 238, 238, .7);
}
table td {
    padding: 0.75rem 0.75rem;
}
table th {
    font-family: 'IM Fell DW Pica SC','Noto Serif JP', 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: 22px;
    margin: .5rem auto;
    padding: 0 .3rem;
    font-size: .7rem;
    border-radius: 0px;
    background: var(--more-blue) !important;
    border: 1px solid var(--more-blue) !important;
    color: #fff !important;
    transition: all .5s;
}
.link:hover {
    background: #fff !important;
    color: var(--more-blue) !important;
}
.btn {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    position: relative;
    white-space: nowrap;
    border: none;
    margin: 1rem;
    padding: 9px 24px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.1rem;
    font-weight: 300;
    border-radius: 0 0 0 0;
    text-decoration: none;
    -webkit-appearance: none;
    -webkit-transition: all .5s  !important;
    transition: all .5s !important;
    -moz-transition: all .5s !important;
    font-family: 'IM Fell DW Pica SC','Noto Serif JP', serif !important;
}
.btn-1 {
    background: var(--purple);
    border: 1px solid var(--purple) !important;
    color: #fff !important;
}
.btn-1:hover {
    background: var(--blue);
    border: 1px solid var(--blue) !important;
    color: #fff !important;
}
.btn-2 {
    background: #fff;
    border: 1px solid var(--blue) !important;
    color: var(--blue) !important;
}
.btn-2:hover {
    background: var(--pure-blue);
    border: 1px solid var(--pure-blue) !important;
    color: #fff !important;
}
.btn-3 {
    background: var(--pure-blue);
    border: 1px solid var(--pure-blue) !important;
    color: #fff !important;
}
.btn-3:hover {
    background: var(--pure-blown);
    border: 1px solid var(--pure-blown) !important;
    color: #fff !important;
}
.btn-1:hover svg {
    fill: #fff;
}
.btn svg {
    position: relative;
    left: -4px;
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: top;
    font-weight: normal;
    margin: 2px 0;
    fill: #fff;
    transition: all .5s;
}

/* form */
form {
    text-align: center;
}
.box-a {
    max-width: 340px;
    margin: 1rem auto;
    padding: 0rem;
    border: 1px solid transparent;
    background: transparent;
}
input[type=text],
input[type=search],
textarea {
    outline: none;
    display: block;
    width: 100%;
    -webkit-appearance: none;
    background: var(--pure-purple);
    border: 1px solid var(--pure-purple);
    border-radius: 0 0 0 0;
    padding: 8px 16px;
    line-height: 22px;
    color: #fff;
}
input[type=text]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #fff;
}
input[type=text]::-moz-placeholder,
textarea::-moz-placeholder {
    color: #fff;
}
input[type=text]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #fff;
}
input[type=text]::placeholder,
textarea::placeholder,
.cp_ipselect select::placeholder {
    color: #fff;
}
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: 'IM Fell DW Pica','Noto Serif JP', serif !important;
}
input[type=text]:focus,
textarea:focus,
.cp_ipselect select:focus {
    outline: none;
    border: var(--more-purple) 1px solid;
    background: var(--more-purple);
    color: #fff;
}
input[type=text]:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder,
.cp_ipselect select:focus::-webkit-input-placeholder {
    color: #fff;
}
input[type=text]:focus::-moz-placeholder,
textarea:focus::-moz-placeholder,
.cp_ipselect select:focus::-moz-placeholder {
    color: #fff;
}
input[type=text]:focus:-ms-input-placeholder,
textarea:focus::-ms-input-placeholder,
.cp_ipselect select:focus::-ms-input-placeholder {
    color: #fff;
}
input[type=text]:focus::placeholder,
textarea:focus::placeholder,
.cp_ipselect select:focus::placeholder {
    color: #fff;
}
.form-element {
    margin-bottom: 20px;
}
form label {
    display: block;
    margin-bottom: 4px;
    color: var(--dark-gray);
    font-weight: 500;
    text-transform: uppercase;
}
.cp_ipselect {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.cp_ipselect select {
    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;
}
.cp_ipselect select::-ms-expand {
    display: none;
}
.cp_ipselect.cp_sl01 {
    position: relative;
    border: 1px solid var(--pure-purple);
    border-radius: 0 0 0 0;
    background: var(--pure-purple);
}
.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 #999;
    pointer-events: none;
}
.cp_ipselect.cp_sl01 select {
    padding: 8px 38px 8px 16px;
    color: #fff
}
.cp_ipselect select option{
    background-color: var(--pure-gray);
    color: #888;
}

/*-------------------- index --------------------*/

/* color */
:root {
    --dark: #29323c;
    --dark-gray: #393a3e;
    --gray: #384854;
    --pure-gray: #f5f5f5;
    --pure-blown: #c9b2b4;
    --blown: #a47c73;
    --dark-blown: #6a5050;
    --purple: #826a7f;
    --more-purple: #9e9aab;
    --pure-purple: #b4b8c6;
    --blue: #585e7a;
    --red: #675464;

    --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;
}
body::before,
body::after,
.wrp::before,
.slideshow::before {
    position: fixed;
    display: block;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none; /* ← これを追加するだけ */
}

body::before {
    z-index: -1000;
    background: url('../../images/1.jpg') no-repeat center/cover;
}
body::after {
    z-index: -900;
    background: rgba(255,255,255,.1);
}

/* nav */
nav {
    position: relative;
    text-align: center;
    background: rgba(255,255,255,.8);
    width: 100%;
    font-family: 'BlackletterHandRegular', serif;
    font-weight: 900;
    font-style: italic;
    z-index: 1000;
}
nav.m_fixed {
    text-align: center;
    position: fixed;
    top: 0;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
    box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
    background: #fff;
}
nav ul {
    display: inline-block;
    margin: .5rem auto;
}
nav ul li {
    display: inline-block;
    margin: 0 1rem;
}
nav a {
    position: relative;
    border-bottom: none;
    color: var(--dark);
    font-size: 2rem;
    z-index: 1000;
}

/* header */
header {
    position: fixed;
    inset: 0;               /* 画面全体 */
    display: flex;
    flex-direction: column;
    justify-content: center; /* 縦中央 */
    align-items: center;     /* 横中央 */

    z-index: -500;
    color: #fff;

    /* transform は絶対に書かない */
}

header h1 {
    position: relative;
    font-size: 3.7rem;
  font-family: 'BlackletterHandRegular', serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 0;
    z-index: -100;
}
header aside {
    text-align: center;
    color: #fff;
    background: transparent;
}
header aside a {
    color: #fff;
}

/* wrapper */
.wrp {
    display: block;
    position: relative;
    margin: calc(100vh - 2.5rem) auto;
    min-height: 60vh;
    left: 0;
    bottom: 0;
    overflow: hidden;
    text-align: center;
    padding: 0 0 0;
    z-index: 1;
    background: url('../../images/bg.jpg') repeat center/ 47rem;
}
.wrp::before {
    position: absolute;
    z-index: 2;
    background: rgba(255,255,255,.85);
}
main {
    position: relative;
    margin: 0 auto;
    padding: 4rem 3.5rem;
    background: rgba(255,255,255,.5);
    z-index: 3;
}
section {
    position: relative;
    text-align: center;
    margin: 0 0 7rem;
}

/* footer */
footer {
    position: relative;
    margin: 1rem auto;
    text-align: center;
    font-size: .77rem;
    color: #888;
    z-index: 3;
}

/* text */
h2,h3,h4,h5,h6 {
    position: relative;
    letter-spacing: .2rem;
    color: var(--dark);
}

h2 {
    margin: 3rem 0;
    background: var(--red);
    color: #fff;
}
h4,
.sub {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}
h4::before,
h4::after,
.sub::before,
.sub::after {
    content: "";
    display: block;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border-bottom: 1px solid var(--more-purple);
}
h4::before,
.sub::before {
    margin-right: 1rem;
}
h4::after,
.sub::after {
    margin-left: 1rem;
}
.sub::before,
.sub::after {
    border-bottom: 1px dotted var(--more-blue);
}
h4 b {
    font-weight: 400;
    font-size: 1.1rem;
}

/* line */
.line,
.line-2 {
    display: block;
    width: 100%;
    left: 0;
    margin: 2rem auto 2rem;
    border-bottom: 1px solid var(--pure-purple);
}
.line-2 {
    border-bottom: 1px dotted var(--more-blue);
}

/* aside */
aside {
    position: relative;
    text-align: left;
    margin: 1rem 0;
    padding: .5rem 1rem;
    border: none;
    background: #fff;
    color: #888;
}

/* 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: #fff;
    transform: translateZ(0);
    z-index: 100;
}
.scroll .list_no {
    margin: 0;
}
.scroll .list_no li {
    margin: 0 0;
    padding-left: 0rem;
}

/* new */
.new::after {
    content: "new";
    color: #c00;
    margin-left: 0.5rem;
    opacity: 1;
    font-size: .7rem;
    font-family: 'IM Fell DW Pica','Noto Serif JP', serif;
}

/* asterisk：リンク外に表示 */
.asterisk {
    position: relative;
    display: inline-block;
}

/* クリック範囲を確保するため少し余白を出す */
.asterisk > a {
    padding-right: 0.3rem;
}

/* アスタリスク本体 */
.asterisk::after {
    content: "*";
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(100%, 0.35em); /* ← Yを増やす */
    margin-left: 0.2rem;

    color: #c00;
    font-size: 1rem;
    font-family: 'Noto Serif JP', serif;
    line-height: 1;
}

/* asterisk：リンク外に表示 */
.asterisk {
    position: relative;
    display: inline-block;
}

/* クリック範囲を確保するため少し余白を出す */
.asterisk > a {
    padding-right: 0.3rem;
}

/* 更新new */
.textnew::after {
    content: "new";
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(130%, 0.6em); /* ← ここだけ調整 */
    color: #c00;
    font-size: 0.7rem;
    line-height: 1;
}

/* textnew：リンク外に表示 */
.textnew {
    position: relative;
    display: inline-block;
}

/* クリック範囲を確保するため少し余白を出す */
.textnew > a {
    padding-right: 0.3rem;
}

.note {
    font-size: 0.85em; /* 少し小さく */
}

/* margin */
.m_4r {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
}
.m_b_1r {
    margin-bottom: 1rem !important;
}
.m_t_2r {
    margin-top: 2rem !important;
}

.max_600 {
    display: block;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/*-------------------- other --------------------*/

/* pagetop button */
#page-top {
    position: fixed;
    bottom: 1%;
    left: 1%;
    z-index: 100;
}
#page-top a {
    display: block;
    padding: .1rem .4rem;
    border-bottom: none;
    width: 1.5rem;
    height: 1.5rem;
    padding: 3px;
    transform: rotate(-45deg);
    background: var(--purple);
}

/* loader */
.page-loader {
    display: inline-block;
    position: fixed;
    height: 100vh;
    width: 100%;
    background: var(--red);
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    z-index: 9998;
}
.p-loader {
    position: absolute;
    top: calc(50% - 9vw);
    left: 50%;
    transform: translateX( -50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: scale(1);
    transition: all 0.5s ease;
    width: 18vw;
    height: 18vw;
    z-index: 100000;
}
.loader .dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 1vw;
    height: 1vw;
    border-radius: 50%;
    background: white;
    transform-origin: 50% 9vw;
}
.card11 .dot:nth-child(1) {
    animation: fullrotate 2.5s 0s infinite;
    animation-timing-function: cubic-bezier(0.8, 0, 0.3, 1);
}
.card11 .dot:nth-child(2) {
    animation: fullrotate 2.5s 0s infinite reverse;
    animation-timing-function: cubic-bezier(0.8, 0, 0.3, 1);
}
body .card11 .dot:nth-child(3) {
    animation: fullrotate 2.5s 0s infinite;
    animation-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
body .card11 .dot:nth-child(4) {
    animation: fullrotate 2.5s 0s infinite reverse;
    animation-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
.card11 .dot:nth-child(5) {
    animation: fullrotate 2.5s 0s infinite;
    animation-timing-function: cubic-bezier(0.6, 0, 0.3, 1);
}
body .card11 .dot:nth-child(6) {
    animation: fullrotate 2.5s 0s infinite reverse;
    animation-timing-function: cubic-bezier(0.6, 0, 0.3, 1);
}
.card11 .dot:nth-child(7) {
    animation: fullrotate 2.5s 0s infinite;
    animation-timing-function: cubic-bezier(0.5, 0, 0.3, 1);
}
.card11 .dot:nth-child(8) {
    animation: fullrotate 2.5s 0s infinite reverse;
    animation-timing-function: cubic-bezier(0.5, 0, 0.3, 1);
}

@keyframes fullrotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*-------------------- slideshow --------------------*/

.slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -600;
}

.slideshow-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;

    /* アニメーション */
    animation-name: kenburns-single;
    animation-duration: 15s;        /* 調整可能 */
    animation-timing-function: linear;
    animation-iteration-count: 1;   /* 1回だけ */
    animation-fill-mode: forwards;  /* 終了後は静止 */

    opacity: 0;
    transform: scale(1.2);
}

@keyframes kenburns-single {
    0% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/*-------------------- color --------------------*/

/* white */
.white {
    color: #fff !important;
}
/* purple */
.purple {
    color: var(--purple) !important;
}
.more-purple {
    color: var(--more-purple) !important;
}
.pure-purple {
    color: var(--pure-purple) !important;
}
/* blue */
.blue {
    color: var(--blue) !important;
}
.red {
    color: var(--red) !important;
}
/* blown */
.blown {
    color: var(--blown) !important;
}
.dark-blown {
    color: var(--dark-blown) !important;
}
/* gray */
.dark {
    color: var(--dark) !important;
}
.dark-gray {
    color: var(--dark-gray) !important;
}
.gray {
    color: var(--gray) !important;
}
.pure-gray {
    color: var(--pure-gray) !important;
}

/* white */
.bg-white {
    background: #fff !important;
}
/* purple */
.bg-purple {
    background: var(--purple) !important;
}
.bg-more-purple {
   background: var(--more-purple) !important;
}
.bg-pure-purple {
    background: var(--pure-purple) !important;
}
/* blue */
.bg-blue {
    background: var(--blue) !important;
}
.bg-red {
    color: var(--red) !important;
}
/* blown */
.bg-blown {
    background: var(--blown) !important;
}
.bg-dark-blown {
   background: var(--dark-blown) !important;
}
/* gray */
.bg-dark {
    background: var(--dark) !important;
}
.bg-dark-gray {
    background: var(--dark-gray) !important;
}
.bg-gray {
    background: var(--gray) !important;
}
.bg-pure-gray {
    background: var(--pure-gray) !important;
}


/*-------------------- font size --------------------*/
.inline {
    display: inline;
}
.s_s {
    font-size: var(--s_s);
    line-height: .9rem !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(--blue);
    display: inline;
}
.none {
    border-bottom: none;
}

/*-------------------- marker --------------------*/
.marker {
    padding: 0;
    height: 2rem;

}
.marker1 {
    background: linear-gradient(transparent 60%, var(--more-purple) 60%);
    color: var(--dark);
}
.marker2 {
    background: linear-gradient(transparent 60%, var(--pure-purple) 60%);
    color: var(--dark);
}
.marker3 {
/*    background: linear-gradient(transparent 60%, var() 60%);*/
    color: var(--dark);
}
.marker4 {
    display: inline-block;
    padding: 0 .5rem;
    background: linear-gradient(transparent 10%, var(--purple) 10%);
    color: #fff;
}

/*-------------------- line --------------------*/
.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(--blue);
}
.border-r-2 {
    border-right: 5px solid var(--purple);
}
.border-r-3 {
    border-right: 5px solid var(--more-purple);
}
.border-r-4 {
    border-right: 5px solid var(--pure-purple);
}
.border-l-1,
.border-l-2,
.border-l-3,
.border-l-4 {
    padding-left: .5rem;
}
.border-l-1 {
    border-left: 5px solid var(--blue);
}
.border-l-2 {
    border-left: 5px solid var(--purple);
}
.border-l-3 {
    border-left: 5px solid var(--more-purple);
}
.border-l-4 {
    border-left: 5px solid var(--pure-purple);
}
.border-a {
    position: relative;
    margin-right: 4rem;
    width: 6rem;      /* ← 好きな長さに調整 */
    text-align: center; /* ← 日付を中央寄せ */
}

.border-a::after {
    position: absolute;
    display: block;
    content: '';
    top: 50%;
    left: 115%;
    width: 2.5rem;
    height: 1px;
    background: var(--dark);
}

.logo-unaji {
  font-family: "Alex Brush", cursive;
  font-weight: normal;
  line-height: 1;
  white-space: nowrap;
  font-size: 5em;
  margin-bottom: 3px; /* ← ここを 0〜6px で調整 */
}

/* hidden box */
.accbox {
    margin: 0;
    padding: 0;
    max-width: 50rem;
}
.accbox label {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    font-weight: normal;
    background :transparent;
    cursor :pointer;
    transition: all 0.5s;
}
.accbox label:hover {
    background: transparent;
}
.accbox input {
    display: none;
}
.accbox .accshow {
    height: 0;
    padding: 0;
    margin: 0rem;
    overflow: hidden !important;
    opacity: 0;
    transition: 0.8s;
    font-size: 12px;
}
.cssacc:checked + .accshow {
    height: auto;
    padding: 5px 5px 5px 1rem;
    background: transparent;
    opacity: 1;
}

.clear.ja {
  margin-bottom: 0.8em;
}

.border-no-line {
  border-bottom: none !important;
  background-image: none !important;
}

h2[id] {
  scroll-margin-top: -4rem;
}

nav,
body::before,
body::after,
.wrp::before,
.slideshow::before {
  transform: translateZ(0);
}
