@charset "UTF-8";

/*
Theme Name: the Prism Times
Theme URI:
Author:ErikaInazawa
Author URI:
Description: 私のブログサイトです。
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

html {
    scroll-behavior: smooth;
    /* // スムーススクロール */
}

body {
    /* font-family: 筑紫A丸ゴシック; */
    font-family: 'Times New Roman', Times, serif;
    font-size: 12px;
    line-height: 2.0;
    letter-spacing: 0.07em;
    background-image: url(./images/background.jpeg);
    background-attachment: fixed;
    /* background-repeat: repeat-x; */
    background-size: 100%;
    /* background-position: center; */
}


img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    /* PCデザインのガイドからガイドまで */
    width: 89.743%;
    /* スマホデザインの内容の横幅 / スマホデザインのアートボードの横幅 * 100 % */
}

#mouse-stalker {
    pointer-events: none;
    position: fixed;
    top: -10px;
    left: -10px;
    width: 50px;
    height: 50px;
    background: rgba(255, 242, 0, .6);
    border-radius: 50%;
    transform: translate(0, 0);
    transition: transform 0.2s;
    transition-timing-function: ease-out;
    z-index: 999;
}


.link-items {
    display: flex;
    justify-content: center;
    gap: 20px;

    .link-item {
        display: block;
        padding: 20px;
        color: #fff;
        text-decoration: none;
        background-color: #000;
        border-radius: 50px;
    }

}

/* header */
header {
    margin: 10px 0 50px;
}

.head {
    border-bottom: #000 double 7px;
    border-top: #000 double 7px;
    margin-top: auto;
    margin-bottom: auto;
}

.head .inner {
    display: flex;
    justify-content: space-between;
}

#now {
    display: none;
}

h1 {
    text-align: center;
    font-weight: 900;
    font-size: 35px;
    letter-spacing: 0.01em;
    line-height: 1.2;

    border-right: #7b725e .75px solid;
    padding-right: 10px;
}

header ul {
    font-size: 16px;
    line-height: 1.5;
    text-align: right;
    margin-top: auto;
    margin-bottom: auto;
}

.head li {
    font-weight: bold;
    display: inline-block;
    border-bottom: #000 1px solid;
}

.head li:hover {
    transition: .3s;
    color: #ffb300;
    border-bottom: #ffb300 1px solid;
}

.touch {
    border-bottom: #000 solid 1px;
    justify-content: space-evenly;
    display: flex;
    flex-wrap: wrap;
    padding-top: 10px;
}

.sns {
    text-align: center;
    display: flex;
    padding-bottom: 10px;
}

.sns img {
    width: 30px;
    height: 30px;
    padding-right: 5px;
}

.insta,
.x,
.mail {
    padding-top: 7px;
    line-height: 1.0;
    border-bottom: #000 solid .5px;
}

.insta:hover,
.x:hover,
.mail:hover {
    border-bottom: #ffb300 solid .5px;
    transition: .3s;
    color: #ffb300;
}

/* footer */
footer {
    margin-bottom: 70px;
}

#dli-chevron-up {
    z-index: 99999;
    position: fixed;
    position: absolute;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 1;
    width: 3em;
    height: 3em;
    border: 8px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(25%) rotate(-45deg);
    text-align: right;
    margin-top: -20px;
    margin-left: 90%;
}

#dli-chevron-up:hover {
    color: #ffb300;
    transition: .3s;
}

footer img {
    width: 100%;
    margin-top: 80px;
    aspect-ratio: 1/1;
    filter: grayscale(100%);
}

footer img:hover {
    filter: grayscale(0%);
    transition: .3s;
}

small {
    font-size: 14px;
    display: block;
    justify-content: flex-end;
    padding-top: 30px;
    text-align: center;
}

/* main */
.maintop {
    border-bottom: .75px solid #000;
    padding-bottom: 50px;
}

.maintext {
    line-height: 1.3;
    padding-top: 10px;
    padding-left: 10px;
}

.maintext span {
    font-size: 30px;
}

/* スクロールダウンの位置 */
.scroll {
    /* position: absolute; */
    /* right: 50%; */
    /* top: 10%; */
    writing-mode: vertical-rl;
    margin-top: 30px;
}

.scroll span:hover {
    color: #ffb300;
    transition: .3s;
}



/* 線のアニメーション部分 */
.scroll::before {
    animation: scroll 2s infinite;
    background-color: #000;
    /* bottom: -115px; */
    content: "";
    height: 200px;
    /* left: 0; */
    margin: auto;
    position: absolute;
    /* right: 0; */
    width: 1px;
    z-index: 2;
}

/* 線のアニメーション */
@keyframes scroll {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    51% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

.slide {
    position: relative;
    aspect-ratio: 4/3;
    width: 100%;
    flex-direction: column-reverse;
    filter: grayscale(100%);
}

.slide:hover {
    filter: grayscale(0%);
    transition: .3s;
}

.slide__image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: slide 30s linear infinite;
}

.slide__image:nth-child(1) {
    background-image: url(./images/yoko/tanabata.JPG);
    animation-delay: -2s;
}

.slide__image:nth-child(2) {
    background-image: url(./images/yoko/evening.jpeg);
    animation-delay: 3s;
}

.slide__image:nth-child(3) {
    background-image: url(./images/yoko/toyosu.jpg);
    animation-delay: 8s;
}

.slide__image:nth-child(4) {
    background-image: url(./images/yoko/disney.jpeg);
    animation-delay: 13s;
}

.slide__image:nth-child(5) {
    background-image: url(./images/yoko/snow.jpeg);
    animation-delay: 18s;
}

@keyframes slide {

    0%,
    40%,
    100% {
        opacity: 0;
    }

    6%,
    33% {
        opacity: 1;
    }
}

.newspost {
    padding-top: 80px;
    width: 100%;
}

.select {
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
}

.category {
    width: 50%;
    text-align: center;
}

.category a {
    border-bottom: #5b5b5b 1px solid;
}

.category a:hover {
    border-bottom: #ffb300 1px solid;
}

.category li {
    list-style: none;
    font-weight: normal;
    font-size: 14px;
}

.category h3 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.7;
    margin-bottom: 5px;
}

.category li:hover {
    color: #ffb300;
    transition: all .3s ease 0s;
}


.myinfo {
    padding-top: 80px;
    border-top: #000 .75px solid;
}

.myinfo img:hover {
    border-radius: 50%;
    box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
    transition: .5s;
}

.myinfo img {
    width: 100%;
    box-shadow: 0px 0px 16px 3px rgba(255, 255, 255, 0.6);
}

.infotext {
    text-align: center;
    width: 100%;
}

.infotext h2 {
    padding-top: 20px;
    font-size: 30px;
}

.aboutme {
    font-size: 30px;
}


.school {
    font-size: 12px;
    padding-bottom: 10px;
    padding-left: 15px;
}

.ja {
    font-size: 24px;
    font-weight: bold;
    padding-left: 15px;
}

.eng {
    font-weight: normal;
    margin-bottom: 30px;
    font-size: 18px;
    margin-top: -10px;
    padding-left: 15px;
}

.btn {
    cursor: pointer;
    border: solid 0.5px #000;
    color: #000;
    padding: 15px 30px;
    transition: all 0.3s;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    background: #FFF;

}

.btn:hover {
    background: #000;
    color: #fff;
    border-radius: 8px;
}

/* top */
/* main */
h2 {
    font-size: 40px;
    font-weight: bold;
}

.topic {
    width: 100%;
    border-bottom: #000 1px dotted;
    filter: grayscale(100%);
    padding: 10px;
}

.topic:hover {
    /* box-shadow: 0 0 10px gray; */
    /* transform: scale(1.05); */
    transition: 0.3s;
    filter: grayscale(0%);
    background-color: rgba(255, 255, 255, .5);
}

.topic a {
    width: 40%;
}

.topic img {
    aspect-ratio: 4/3;
}


.areaflex {
    display: flex;
    justify-content: space-between;
}

section {
    margin-bottom: 30px;
}

.text {
    width: 55%;
    padding: 5px 0;
}

.text li:hover {
    cursor: pointer;
    color: #000;
}

.text li:hover::after {
    bottom: 0;
    opacity: 1;
}

.topic h3 {
    padding-top: 0;
    font-size: 18px;
    line-height: 1.3;
    font-weight: bold;
}

.topic .date {
    font-size: 12px;
    font-weight: normal;
    line-height: 1.3;
    padding-bottom: 3px;
    color: #868686;
}

.topic .get {
    margin-top: auto;
    padding-bottom: 3px;
    border-bottom: #000 .75px solid;
    line-height: 1.0;
    display: inline-block;
}

.topic .get:hover {
    color: #ffb300;
    transition: .3s;
    border-bottom: #ffb300 .75px solid;
}

.nav-links {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    display: flex;
}

/* ページネーションの汎用スタイル */
.nav-links ul {
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.nav-links li>* {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    height: 60px;
}

.nav-links li>*:not(.dots) {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #5b5b5b;
    background: #fff;
    transition: color 0.3s ease, background 0.3s ease;
}

.nav-links li>.current,
.nav-links li>a:hover {
    color: #ffffff;
    background: #ffb300;
}


/* single  */
/* main */
h4 {
    color: #000;
    font-size: 20px;
    padding-top: 5px;
    padding-left: 5px;
    line-height: 1.5;
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 30px;
    position: relative;
    width: 100%;
    border-top: 1px solid#000;
    border-bottom: 1px solid#000;
}

h5 {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    width: 100%;
    padding: 0 15px;
    border-top: 1px dotted #000;
    border-bottom: 1px dotted #000;
    margin: 40px 0 20px;
}

.blog img {
    padding: 20px;
}

.blog .self a {
    color: #00c6d0;
    border-bottom: #00c6d0 1px solid;
    padding-bottom: 3px;
    padding-left: 3px;
    padding-right: 3px;
}

.blog .self a:hover {
    color: #00f;
    border-bottom: #00f 1px solid;
    transition: .3s;
}

#ez-toc-container {
    border-radius: 0px;
    border-top: #343434 dotted .75px;
    border-bottom: #343434 dotted .75px;
    border-left: 0px solid #000;
    border-right: 0px solid #000;
    color: #000;
    background-color: rgba(0, 0, 0, 0);
}

#ez-toc-container a {
    border-bottom: 0px solid #000;
    padding-bottom: 3px;
}

.self p {
    margin: 0 10px;
}

.singleTop {
    background: rgb(0, 19, 53, 0.85);
}

.wp-block-media-text__content {
    padding: 0;
}

.back {
    margin-top: 50px;
    display: flex;
    font-size: 20px;
}

.back:hover {
    transition: .3s;
    color: #ffb300;
}

.blog {
    background: rgb(255, 255, 255, .5);
    padding: 30px 20px;
    font-weight: normal;
    margin-top: 30px;
}

.start span {
    font-weight: bold;

}

.blog .date {
    font-size: 14px;
    line-height: 1.2;
    color: #868686;
}

.blog .get {
    margin-left: 10px;
    text-align: center;
    margin-top: auto;
    padding-bottom: 3px;
    border-bottom: #000 .75px solid;
    line-height: 1.0;
    display: inline-block;
}

.blog .get:hover {
    color: #ffb300;
    transition: .3s;
    border-bottom: #ffb300 .75px solid;
}

.blog h3 {
    font-size: 24px;
    padding-bottom: 20px;
    font-weight: bold;
    line-height: 1.5;
}

/*
.start {
    padding-top: 20px;
} */

/* .attachment-thumbnail size-thumbnail wp-post-image {
    width: 90%;
    margin: 0 auto;
}

.ez-toc-v2_0_69_1 counter-hierarchy ez-toc-counter ez-toc-white ez-toc-container-direction {
    border: dashed 3px #95b2e3;
    background-color: #FFF;
    text-align: center;
    padding: 60px 30px;
    margin: 30px auto;
    border-radius: 10px;
    min-width: 300px;
    max-width: 500px;
} */

/* .tag {
    font-size: 20px;
    padding-bottom: 20px;
}

.hometown img {
    width: 100%;
}

.hometown .between {
    padding-top: 10px;
} */

/* フォーム */
/* .form {
    width: 100%;
    margin: 0 auto;
    border: 1px solid #acacac;
    border-radius: 15px 0 15px 0;
    padding: 50px 50px 50px 50px;
    box-sizing: border-box;
}

.form h2 {
    font-size: 30px;
    padding-bottom: 20px;
}

.item {
    margin-bottom: 20px;
    width: 90%;
}

.form input[placeholder] {
    color: #acacac;
}

.label_left {
    padding-left: 10px;
    height: 2.0;
    font-size: 18px;
}

.form input[type="text"],
.form input[type="email"] {
    padding: 10px;
    width: 80%;
    background-color: #ededed;
}

.form input[type="submit"] {
    background: #95b2e3;
    color: white;
    font-size: 16px;
    padding: 10px 30px;
    margin: 0 5px;
}

.form input[type="submit"]:hover {
    background: #fff;
    border: rgb(0, 19, 53, 0.85) 1px solid;
    color: rgb(0, 19, 53, 0.85);
    border-radius: 8px;
    transition: 0.3s;
}

input:focus {
    background: #95b2e3;
}

.check {
    display: flex;
    padding-bottom: 5px;
}

.check img {
    width: 25px;
    height: 25px;
}

.textarea {
    background-color: #ededed;
    width: 100%;
    height: 250px;
}

:placeholder-shown {
    color: #acacac;
    padding: 10px;
}

optgroup {
    color: #acacac;
} */

#comment h3 {
    font-size: 30px;
    font-weight: bold;
    margin-top: 50px;
}

#comments,
#respond,
.comments-area,
#wpdcom {
    margin-top: 0;
}

#wpdcom #wpd-threads {
    display: none;
}

#wpdcom .wpd-form-head {
    display: none;
}

#wpd-post-rating {
    display: none;
}

#wpd-editor-toolbar-0_0 {
    display: none;
}

#wpdcom .ql-editor {
    min-height: 200px;
}

/* about */

/* main */
/* .new {
    display: flex;
    justify-content: space-between;
} */

.spaceone {
    width: 95%;
    margin-right: auto;
    margin-left: auto;
}


.h2About {
    font-size: 48px;
    text-align: center;
}

.blog .profile {
    text-align: center;
}

.profile img:hover {
    border-radius: 50%;
    box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
    transition: .5s;
}

.profile img {
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    box-shadow: 0px 0px 16px 3px rgba(255, 255, 255, 0.6);
}

.blog .name,
.blog .eng {
    font-weight: bold;
}

.blog .name {
    border-bottom: #272727 solid .75px;
    width: 250px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.name {
    display: inline-block;
    font-size: 25px;
}

.history {
    display: flex;
}

.space {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.content {
    font-weight: bold;
    font-size: 24px;
    padding: 10px 0 10px 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #000;
}

.null {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
}

.null span {
    font-weight: bold;
}

.pic img {
    margin-top: 10px;
    margin-bottom: 10px;
}

.h6About {
    font-size: 16px;
    padding-left: 10px;
    background-size: 23px;
    border-left: #000 solid 20px;

}

h6 {
    color: #000;
    font-size: 17px;
    font-weight: bold;
    padding-left: 10px;
    margin-top: 15px;
}

@media(min-width:700px) {

    body {
        font-size: 14px;
    }

    .new {
        display: flex;
        justify-content: space-between;
    }

    .spaceone {
        width: 48%;
        margin-right: auto;
        margin-left: auto;
    }

    /* top */
    /* main */
    #now {
        display: block;
        font-size: 25px;
        line-height: 1.0;
        margin-top: auto;
        margin-bottom: auto;
    }

    h1 {
        font-size: 80px;
        border-left: #7b725e .75px solid;
        border-right: #7b725e .75px solid;
        padding: 0 20px;
        margin: 0 20px;
    }

    .head ul {
        margin-top: revert;
        font-size: 25px;
        font-weight: bold;
    }

    .touch {
        margin-right: auto;
        margin-left: auto;
        padding: 5px 0;
    }

    .insta,
    .x,
    .mail {
        line-height: 1.5;
    }

    .sns img {
        width: 40px;
        height: 40px;
        padding-right: 10px;
    }

    footer img {
        aspect-ratio: 16/7;
    }

    .maintop {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    .maintext {
        width: 38%;
        font-size: 16px;
        padding-left: 0px;
    }

    .maintext span {
        font-size: 40px;
    }

    .slide {
        width: 60%;
    }

    .topic {
        width: 100%;
        border-bottom: #000 1px dotted;
        filter: grayscale(100%);
        padding: 15px;
    }

    .myinfo {
        padding-top: 80px;
        display: block;
    }

    .myinfo img {
        width: 60%;
        margin-right: auto;
        margin-left: auto;
    }

    .infotext {
        text-align: center;
        width: 100%;
    }

    .infotext h2 {
        padding-top: 20px;
    }

    /* single */
    .blog {
        line-height: 2.0;
        padding: 50px 30px;
    }

    /* about  */

    .pic {
        display: flex;
    }

    .pic img {
        width: 50%;
        padding-right: 15px;
        object-fit: cover;
    }

    .aboutme {
        font-size: 40px;
    }


    .school {
        font-size: 12px;
        padding-top: 15px;
        padding-bottom: 10px;
        padding-left: 0;
    }

    .blog .school {
        font-size: 12px;
        padding-bottom: 10px;
    }

    .ja {
        font-size: 24px;
        line-height: 1.5;
        border-bottom: #000 .75px solid;
        margin-bottom: 10px;
        width: 180px;
        padding-left: 0;
        margin-right: auto;
        margin-left: auto;
    }


    .eng {
        margin-bottom: 30px;
        font-size: 18px;
        margin-top: -10px;
        padding-left: 0;
    }

    .btn {
        cursor: pointer;
        background: #FFF;
        border: solid 0.5px 300;
        color: #000;
        padding: 15px 30px;
        transition: all 0.3s;
    }

    .btn:hover {
        background: #000;
        color: #fff;
        border-radius: 8px;
    }


}

@media(min-width:1000px) {

    /* top */

    .choose {
        display: block;
        padding-top: 80px;
        padding-left: 30px;
        border-left: #000 solid .75px;
        margin-left: 20px;
        width: 38%;
    }

    .singlechoose {
        display: block;
        padding-top: 80px;
        padding-left: 20px;
    }

    .select {
        display: block;

    }

    .category {
        padding-bottom: 30px;
        width: 100%;
    }

    .column {
        display: flex;
    }

    .myinfo img {
        width: 100%;
    }

    /* .single */
    .blog {
        padding: 80px 50px;
    }

    .blog h3 {
        font-size: 24px;
        padding-bottom: 20px;
    }

    h4 {
        font-size: 22px;
        line-height: 1.7;
        margin-bottom: 30px;
        font-weight: bold;
        margin-top: 80px;
        padding-bottom: 5px;
        position: relative;
        width: 100%;
        border-bottom: 1px solid #000;
    }

    .addtoany_content {
        margin: 30px auto;
    }
}