@charset "UTF-8";

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

/* webフォント */
@import url('https://fonts.googleapis.com/css?family=Muli:400,400i,700,700i|Noto+Sans+JP:300,700|Parisienne&display=swap');

/* 全体設定 */
* {
    padding: 0;
    margin: 0;
    font-weight: 300;
}
*, *::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-size: 100%;
    line-height: 1.7;
    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: 14pt;
}
@media screen and (max-width: 1680px) {
    html {
        font-size: 12pt;
    }
}
@media screen and (max-width: 1280px) {
    html {
        font-size: 11pt;
    }
}
@media screen and (max-width: 360px) {
    html {
        font-size: 10pt;
    }
}
body {
    width: 100%;
    text-align: justify;
    word-wrap: break-word; /* 禁則処理 */
    overflow-wrap: break-word;
    -webkit-text-size-adjust: 100%; /* Safari横向き対策 */
    background-color: #fff;
    color: #231d25;
    font-family: 'Muli', 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 480px) {
    html, body {
        min-width: 320px;
    }
}
body, input, select, textarea {
    font-weight: 300;
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 0.075em;
    color: #231d25;
}

/* リンク */
a {
    transition: .8s color;
    border-bottom: dotted 1px #f4eeff;
    text-decoration: none;
    outline: none;
    color: #a6b1e1;
}
a:hover {
    border-bottom-color: transparent;
    color: #668BAD;
}

/* 文字装飾 */
strong, b, .b {
    font-weight: 700; /*太字*/
}
strong {
    color: #E20613;
}
em, i {
    font-style: italic; /*斜体*/
}
em {
    border-bottom: 1px dashed #e4007f;
}

/* text */
p {
    text-align: justify;
    margin: 0 0;
    padding: 0rem 0;
    font-size: 13px;
    line-height: 1.7rem; /*行間*/
}
h1, h2, h3, h4, h5, h6 {
    text-align: center;
    font-family: 'Muli', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.05em; /*文字間隔*/
    color: var(--text-color-headline);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    border-bottom: 0;
    color: inherit;
    text-decoration: none;
}
h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin: .5rem 1rem .5rem;
}
h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin: .5rem 1rem .5rem;
}
h3 {
    font-size: 1.5rem;
    margin: .5rem 1rem .5rem;
}
h4 {
    font-size: 1.2rem;
    margin: .5rem 1rem .5rem;
}
h5 {
    font-size: 1.1rem;
    margin: .5rem 1rem .5rem;
}
h6 {
    font-size: 0.9rem;
    margin: .5rem 1rem .5rem;
}

/* 上付き */
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: .2rem .5rem;
    margin: .5rem 0;
    background: linear-gradient(transparent 0%, #877F6C 0%);
    color: #fff;
}

/* 引用 */
blockquote {
    position: relative;
    padding: 5px 15px 5px 55px;
    box-sizing: border-box;
    font-style: italic;
    border-radius: 0px;
    color: #fff;
    background: rgba(255,255,255,.3);
}
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: rgba(255,255,255,1);
    font-size: 18px;
    line-height: 30px;
    background: rgba(120, 135, 207,.6);
    font-weight: 900;
}
blockquote:after{
    content: '';
    position: absolute;
    left: 8px;
    top: 30px;
    height: 0;
    width: 0;
    border-left: 19px solid rgba(120, 135, 207,.6);
    border-right: 19px solid rgba(120, 135, 207,.6);
    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: #f5f5f5;
}

/* コード */
code {
    border: none;
    font-family: "Courier New", monospace !important;
    margin: 0 .25rem;
    padding: .25rem .65rem;
    background: rgba(220, 220, 220, 0.25);
    border-color: #eeeeee;
}
pre {
    width :100% !important;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    text-align: left;
    font-family: "Courier New", monospace !important;
    margin: 0 0 2rem 0;
}
pre code {
    width: 100% !important;
    overflow-x: auto;
    display: block;
    line-height: 1.5;
    padding: 1rem 1.5rem;
    box-sizing: border-box !important;
}

/* 区分線 */
hr {
    border: 0;
    border-bottom: solid 2px;
    margin: 3rem 0rem;
    border-bottom-color: #dcd6f7;
}

/* 文字揃え */
/*  <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: center;
    width: 100%;
    height: auto;
    margin: 3rem 0rem;
    padding: 1.5rem;
    border: 1px solid #877F6C;
    border-radius: 0px;
    background: transparent;
}
.box > p {
    padding: 0 0;
}

/* 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: .5rem 0 .5rem 2rem;
    padding-left: .5rem;
    text-align: left;
}
.float li {
    float: left;
    margin: 0 0.3em;
}
.float:after {
    display: block;
    content: '';
    clear: both
}

/* dl */
dl {
    text-align: left;
}
.dltype1 {
    text-align: left;
    margin: 0.5rem 1rem;
}
.dltype1 > dt a,
.dltype1 > dt {
    color: #F3D2AC !important;
    font-size: 13px;
    border-bottom: none;
}
.dltype1 > dd {
    margin-left: 1.3rem;
    font-size: 12px;
    color: #fff;
}

/* 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 #231d25;
}
table tbody tr {
    border: solid 1px;
    border-left: 0;
    border-right: 0;
    border-color: #231d25;
}
table tbody tr:nth-child(odd) {
    background-color: rgba(220, 220, 220, 0.25);
}
table td {
    padding: 0.75rem 0.75rem;
}
table th {
    font-family: 'Muli', '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: 21px;
    margin: .2rem auto;
    padding: .1rem .3rem;
    border: 1px solid #877F6C !important;
    transition: all .5s
}
.link:hover {
    background-color: #877F6C;
    color: #fff!important;
}
.btn {
    color: #fff;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    position: relative;
    white-space: nowrap;
    border: none;
    margin: .5rem;
    padding: 9px 24px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.1rem;
    font-weight: 400;
    background: #572A3F;
    border-radius: 0px;
    text-decoration: none;
    -webkit-transition: all .5s  !important;
    transition: all .5s !important;
    font-family: 'Muli', 'Noto Sans JP', sans-serif !important;
}
.btn:hover {
    color: rgba(17, 17, 34,1) !important;
    background: #a6b1e1;
}
.btn svg {
    position: relative;
    left: -4px;
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: top;
    font-weight: normal;
    margin: 2px 0;
    fill: #fff;
}

/* form */
form {
    width: 100%;
    position: relative;
    display: inline-block;
    text-align: center;
    max-width: 340px;
}
.row {
    display: flex;
    width: 100%;
    margin: 0.5rem 0;
    justify-content: space-between;
}
.row div:nth-of-type(1) {
    flex-basis: 39%;
}
.row div:nth-of-type(2) {
    flex-basis: 59%;
}
textarea,
input[type] {
    -webkit-appearance: none;
    padding: 0.2em 0.5em;
    background-color: rgba(66, 72, 116,.8);
    border: 1px solid rgba(66, 72, 116,.8);
    border-radius: 0px;
}
input[type=text],
input[type=email],
textarea {
    width: 100%;
}
textarea::placeholder,
input[type]::placeholder {
    color: rgba(255,255,255,.8)
}
input[type]:focus,
textarea:focus {
    outline: none;
    border-color: #f4eeff;
}
.actions {
    display: flex;
    justify-content: center;
}
.actions li {
    margin: 0 .5rem;
    flex-basis: 30%;
}
input[type=submit] {
    display: inline-block;
    background-color: #a6b1e1;
    border: 1px solid #a6b1e1;
    color: #fff;
    transition: all .5s;
}
input[type=submit]:hover {
    background-color: #f4eeff;
    border: 1px solid #f4eeff;
    color: #424874;
}
input[type=reset] {
    display: inline-block;
    color: #fff;
    background-color: #555;
    border: 1px solid #555;
    opacity: .6;
}

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

/* background image */
body::before {
    content: '';
    display: block;
    position: fixed;
    overflow: hidden;
    background-size: cover;
    top: 0;
    height: 100vh;
    width: 100%;
    background: url('../../img/p.jpg') no-repeat center/cover;
    z-index: -1;
}

/* frame */
.ivy-tl img,
.ivy-br img {
    position: fixed;
    z-index: 999;
    width: auto;
    height: 256px;
    filter: brightness(0) invert(1);
}
.ivy-tl img {
    top: 0;
}
.ivy-br img {
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
    .ivy-tl img,
    .ivy-br img {
        transition: 1s;
        height: 306px;
    }
}
@media screen and (min-width: 1280px) {
    .ivy-tl img,
    .ivy-br img {
        height: 408px;
    }
}

/* nav */
nav {
    position: fixed;
    text-align: center;
    bottom: 0;
    width: 100%;
    margin: 0 auto;
    padding: 2px 2px 0px;
    font-size: 11px;
    background: rgba(17, 17, 34,.8);
    z-index: 200;
}
nav ul {
    display: inline-block;
    margin: .5rem 0 .3rem -10rem;
}
nav ul li {
    text-align: center;
    display: inline-block;
    margin: 0 1rem;
}
nav ul li a {
    border-bottom: none;
    transition: all .5s;
}
nav ul li a:hover {
    color: #a6b1e1 !important;
}
nav ul li a:hover span:nth-of-type(2) {

}
nav ul li span:first-of-type {
    font-size: 17px;

}

/* section */
.wrap {
    max-width: 70rem;
    margin: 0 auto;
    padding: 10rem 2rem 15rem;
}
section {
    position: relative;
    text-align: center;
    margin: 3.5rem 0;
    padding: 1rem;
    background: rgba(0,0,0,.525);
    color: #f4eeff;
}
.top section {
    padding: 5rem 1rem 1rem;
}
.top a {
    color: #f4eeff;
}

/* aside */
section aside {
    margin: 1rem;
}
aside dt {
    display: inline-block;
    border-bottom: 3px double #a6b1e1;
    color: #a6b1e1;
}
aside dd {
    margin: 0 0 .5rem 1rem;
}
aside dd a {
    margin-right: 1rem;
    border: none;
}
.bg-w {
    padding: .5rem;
    background: rgba(244, 238, 255,.6);
    color: #424874;
}

/* title */
section h2 {
    font-family: 'Parisienne', cursive;
    position: relative;
    margin: -3rem -2.1rem 3rem -2.1rem;
    padding: .3rem .5rem;
    transform: rotate(-3deg);
    background: #F4B3C2;
}
section h2::before,
section h2::after {
    content: '';
    position: absolute;
    border-style: solid;
    border-color: transparent;
}
section h2::before {
    top: 100%;
    left: 0;
    border-width: 0 15px 15px 0;
    border-right-color: #e4007f;
}
section h2::after {
    top: -15px;
    right: 0;
    border-style: solid;
    border-width: 0 15px 15px 0;
    border-bottom-color: #e4007f;
}

/* スクロールボックス */
.scroll {
    position: relative;
    overflow-y: scroll;
    height: 5rem;
    width: 100%;
    max-width: 28rem;
    margin: 0 auto 2rem;
    padding: .5rem 1rem;
    font-size: 11px;
    border-radius: 0px;
    border: 1px solid transparent;
}
.scroll mark {
    padding: 0.2em 0.5em;
    background: linear-gradient(transparent 0%, #424874 0%);
    color: #fff;
}
.scroll .list_no {
    margin: 0;
}
.scroll .list_no li {
    margin: .5rem 0;
}
.scroll .new::after {
    color: #a6b1e1;
}

/* new */
.new::after {
    content: "new";
    color: #F3D2AC;
    margin-left: 0.5rem;
    opacity: .6;
}

@media screen and (min-width: 768px) {
    .wrap {
        padding: 7rem 5rem;
    }
    nav ul {
        margin-left: 0;
    }
}
@media screen and (min-width: 1280px) {
    .wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: flex-start;
        padding: 7rem 0;
    }
    section {
        flex-basis: 44%;
        margin: 3.5rem 2rem;
    }
    nav ul li {
        margin: 0 2rem;
    }
}

/*-------------------- main --------------------*/

.main dl dt span,
.main section > div span {
    padding-right: 5px;
    font-family: 'Parisienne', cursive;
    font-size: 17px;
    color: #fff;
}
.main dl dt a {
    color: #a6b1e1;
    border: none;
}
.main dl dd::before {
    position: absolute;
    content: '';
    display: block;
    top: 50%;
    height: 1px;
    width: 2rem;
    margin: 0 1rem 0 -2rem;
    background: #f4eeff;
}
.main dl dd {
    position: relative;
    margin-left: 4rem;
    font-size: 0.8rem;
    opacity: .6;
}
.main section > div {
    text-align: left;
    color: #a6b1e1;
}
.main ul {
    margin: 0;
}
.main ul li::before {
    text-align: center;
    white-space: nowrap;
    position: relative;
    display: inline-block;
    left: 0;
    width: 4rem;
    padding: .1rem .5rem;
    margin: 0 0 0 1rem;
    line-height: 1.3rem;
    font-size: 0.8rem;
    font-style: italic;
    opacity: .8;
    background-color: transparent;
    color: #dcd6f7;
}
[data-text]:before {
    content: attr(data-text)'';
}
.main ul li a {
    border: none;
}
.list-3 {
    margin-left: 2rem !important;
}
.list-3 li {
    float: left;
    margin: 0 0.3em;
}
.list-3::after {
    display: block;
    content: '';
    clear: both;
}

/*-------------------- novel --------------------*/

/* main */
.wrapper {
    text-align: center;
    max-width: 640px;
    padding: 4rem 0 12rem;
    margin: 0 auto;
}
main {
    position: relative;
    margin: 10rem 1rem 3rem;
    padding: 3rem 2.5rem 1rem;
    background: rgba(0,0,0,.525);
    color: #f4eeff;
}

/* ribbon */
.ribbon17-content {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 89px;
    height: 91px;
    overflow: hidden;
    z-index: 100;
}
.ribbon17 {
    display: inline-block;
    position: absolute;
    padding: 7px 0;
    left: -23px;
    top: 22px;
    width: 160px;
    text-align: center;
    font-size: 11px;
    line-height: 16px;
    background: #dcd6f7;
    color: rgba(17, 17, 34,1);
    letter-spacing: 0.05em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.ribbon17:before, .ribbon17:after {
    position: absolute;
    content: "";
    border-top: 4px solid #a6b1e1;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    bottom: -4px;
}
.ribbon17:before {
    left: 14px;
}
.ribbon17:after {
    right: 18px;
}

/* title */
main h3 {
    position: relative;
    height: 50px;
    line-height: 50px;
    padding: 0 1em;
    background-color: rgba(17, 17, 34,.8);
}

/* caption, afterword */
.cap-af {
    margin: 7rem 0;
}
.cap-af h4 {
    font-family: 'Parisienne', cursive;
}

/* story */
.novel h4 {
    margin-bottom: 1.3rem;
    font-family: 'Parisienne', cursive;
    border-bottom: solid 1px #a6b1e1;
    color: #a6b1e1;
}
.novel {
    text-align: center !important;
}
.novel > p {
    /*小説部分の段落に間隔を作りたくない場合はmargin-topに0を指定してください*/
    margin-top: 2rem;
    font-size: 13px;
    line-height: 2rem; /*小説部分の行間*/
    letter-spacing: 0.025rem; /*小説部分の文字間隔*/
}
.novel > p:first-child {
    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: -1rem;
  left: calc(50%);
  text-align: center;
  letter-spacing: 0.25em;
  font-size: 1em;
  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}
[data-ruby] rt {
    display: none;
}

/* pagination */
ul.pagination {
    display: inline-block;
    text-align: center !important;
    margin: 1rem auto;
    padding: .3rem 1rem;
    line-height: 1.9rem;
    transition: all .5s;
    background: rgba(17, 17, 34,.525);
}
ul.pagination > li {
    display: inline-block;
    margin: 0 20px 0 0;
    font-size: 11px;
}
ul.pagination > li a {
    border: none;
    color: #a6b1e1;
}
ul.pagination > li:last-child {
    margin: 0 0;
}
ul.pagination > li:nth-of-type(2) {
    font-size: 17px;
}
.wrapper .pagination,
.bottom-div .pagination {
    margin: 1rem auto 5rem;
}

@media screen and (min-width: 768px) {
    .wrapper {
        padding: 0;
    }
}

/*-------------------- memo --------------------*/

/* header */
.memo {
    padding: 3rem 2rem;
}
.top-head {
    text-align: center;
    margin: 17rem auto 0;
}
.top-head div {
    display: inline-block;
    padding: .3rem 1rem;
    background: rgba(17, 17, 34,.525);
    color: #a6b1e1;
}
.top-head div a {
    border: none;
    color: #a6b1e1;
}
@media screen and (min-width: 1280px) {
    .memo {
        padding: 3rem 0rem;
    }
}

/* text */
.text {
    text-align: center;
    height: 90px;
    overflow: hidden;
}
.text-inner {
    text-align: left;
}
.show_more {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100px;
    padding-top: 70px;
    text-align: center;
    line-height: 30px;
    background: linear-gradient(to bottom,rgba(0, 0, 0, 0) 0%,rgba(0, 0, 0, 1) 100%);
    background: -moz-linear-gradient(to bottom,rgba(0, 0, 0, 0) 0%,rgba(0, 0, 0, 1) 100%);
    background: -webkit-linear-gradient(to bottom,rgba(0, 0, 0, 0) 0%,rgba(0, 0, 0, 1) 100%);
    cursor: pointer;
    transition: bottom 0.2s;
}
.active {
    height: 30px;
    padding-top: 0px;
    background: none;
}
.active-body section {
    padding-bottom: 30px;
}

/* footer */
.bottom-div {
    text-align: center;
    padding: 0 0 13rem !important;
}

main img,
.text img {
    display: block;
    width: 80%;
    max-width: 300px;
    height: auto;
    margin: 2.5rem auto .5rem;
}
main aside,
.text .aside {
    display: inline-block;
    text-align: center;
    max-width: 300px;
    margin-bottom: 2rem;
    opacity: .6;
    font-size: 11px;
    line-height: 19px;
}

@media screen and (min-width: 768px) {
    .top-head {
        margin: 5rem auto 0;
    }
    .bottom-div {
        padding: 0 0 7rem !important;
    }

}

/*-------------------- elements --------------------*/

.sub {
    display: block;
    margin: 1.5rem 0;
    font-size: 15px;
    border-bottom: double #a6b1e1 3.5px;
}

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

/* pagetop button */
#page-top {
    position: fixed;
    right: 1%;
    bottom: 2%;
    z-index: 100000;
}
#page-top a {
    display: block;
    padding: 0.2rem 0.4rem;
    border-radius: 50%;
    border-bottom: none;
    font-size: 0.9rem;
    color: #555C62;
    background-color: rgba(205, 217, 237,.6);
    z-index: 100;
}
#page-top a:visited,
#page-top a:hover {
    color: #555C62 !important;
}

@media screen and (min-width: 980px) {
    #page-top {
        right: 96%;
        left: 2%;
        bottom: 4%;
    }
}

/* loader */
.page-loader {
    display: inline-block;
    position: fixed;
    height: 100vh;
    width: 100%;
    background: #F5B1BB;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    z-index: 9998;
}
.looping-rhombuses-spinner, .looping-rhombuses-spinner * {
    box-sizing: border-box;
}
.looping-rhombuses-spinner {
    top: 50%;
    width: calc(15px * 4);
    height: 15px;
    position: relative;
    margin: 0 auto;
}
.looping-rhombuses-spinner .rhombus {
    height: 15px;
    width: 15px;
    background-color: #fff;
    left: calc(15px * 4);
    position: absolute;
    margin: 0 auto;
    border-radius: 2px;
    transform: translateY(0) rotate(45deg) scale(0);
    animation: looping-rhombuses-spinner-animation 2500ms linear infinite;
}
.looping-rhombuses-spinner .rhombus:nth-child(1) {
    animation-delay: calc(2500ms * 1 / -1.5);
}

.looping-rhombuses-spinner .rhombus:nth-child(2) {
    animation-delay: calc(2500ms * 2 / -1.5);
}

.looping-rhombuses-spinner .rhombus:nth-child(3) {
    animation-delay: calc(2500ms * 3 / -1.5);
}

@keyframes looping-rhombuses-spinner-animation {
    0% {
        transform: translateX(0) rotate(45deg) scale(0);
    }
    50% {
        transform: translateX(-233%) rotate(45deg) scale(1);
    }
    100% {
        transform: translateX(-466%) rotate(45deg) scale(0);
    }
}

/*-------------------- color --------------------*/
/* blue1 */
.blue1 {
    color: #424874 !important;
    display: inline;
}
/* blue2 */
.blue2 {
    color: #a6b1e1 !important;
    display: inline;
}
/* blue3 */
.blue3 {
    color: #dcd6f7 !important;
    display: inline;
}
/* white */
.white {
    color: #fff !important;
    display: inline;
}
/* black */
.gray {
    color: #555C62 !important;
    display: inline;
}

/*-------------------- font size --------------------*/
.s_12 {
    font-size: 12px;
}
.s_14 {
    font-size: 14px;
}

/*-------------------- font family --------------------*/
.sans {
    font-family: 'Noto Sans JP', sans-serif;
}
.deco {
    font-family: 'Parisienne','Noto Sans JP', sans-serif;
}

/*--------------------アンダーライン--------------------*/
.dot {
    border-bottom: dotted 1px rgba(166, 176, 225,1);
    display: inline;
}
.none {
    border-bottom: none;
}

/*--------------------マーカー--------------------*/
/* blue */
.marker1 {
    padding: .3rem .5rem;
    height: 2rem;
    font-weight: bold;
    background: linear-gradient(transparent 60%, rgba(166, 176, 225,.8) 60%);
    color: var(--text-color-headline);
}
