@charset "utf-8";

body {
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
    background-color: #c6ffe2;
    line-height: 2;
}

html {
    scroll-behavior: smooth;
}

.inner {
    max-width: 1000px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.subclass {
    max-width: 1000px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

img {
    vertical-align: middle;
}

/*header          */
header {
    padding: 50px 0 10px;
    position: fixed;
    width: 100%;
    background-color: rgba(255, 255, 225, 0.9);
    transition: top 0.6s ease;
    z-index: 999;
}

header li {
    color: #333;
    font-size: 100%;
    font-weight: bold;
}

header .global ul {
    display: grid;
    grid-auto-flow: column;
    justify-content: right;
    column-gap: 5%;
}

header a {
    transition: 0.3s;
    display: block;
}

header a:hover {
    color: #ffaeae;
    font-size: 25px;
}

/* ===== ハンバーガーメニュー ===== */
.hamburger {
    display: none;
    /* 初期は非表示 */
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    z-index: 250;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    transition: 0.3s;
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* ===== サイドメニュー ===== */
.side-menu {
    position: fixed;
    top: 0;
    right: -250px;
    /* 初期は隠す */
    width: 250px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 200;
    padding-top: 100px;
    /* ヘッダー分のスペース */
}

.side-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-menu ul li {
    border-bottom: 1px solid #ddd;
}

.side-menu ul li a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    transition: 0.2s;
}

.side-menu ul li a:hover {
    background: #f2f2f2;
}

/* ===== サイドメニュー表示時 ===== */
.side-menu.open {
    right: 0;
}

.side-menu ul {
    display: grid;
    grid-template-columns: 1fr;

}

.sidemenu ul {
    display: grid;
    grid-template-columns: 1fr;
}

/* ===== オーバーレイ ===== */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 150;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay.show {
    display: block;
    opacity: 1;
}

@media (800px > width) {
    header ul {
        justify-content: center;
    }
}

/* mainvisual     */

.mainvisual {
    position: relative;
}

.mainvisual a {
    z-index: 998;
}

.background {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.85)
}


.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


/* infomation.     */
.infomation {
    padding: 100px 0;
}


.infomation .hovertarget p {
    text-align: left;
}

.infomation .hovercategoly:hover {
    color: hsl(197, 66%, 84%);
}

.infomation a {
    text-align: center;
}

.infomation h1 {
    font-weight: bold;
    font-size: 300%;
    text-align: center;
    color: #333;
}

.infomation p {
    text-align: center;
}

.infomation .hovertarget img {
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.infomation .hovertarget img:hover {
    filter: grayscale(0%);
}

.infomation .hovertarget img {
    transition: transform 0.2s ease;
}

.infomation .hovertarget img:hover {
    animation: fineShakeScale 0.6s ease forwards;
}

.roop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    column-gap: 20px;
    row-gap: 30px;
}

@media(780px > width) {
    .roop {
        grid-template-columns: 1fr;
    }
}

.img-box a {
    position: relative;
    text-align: center;
}

.img-box p {
    position: absolute;
    display: block;
    width: 15%;
    font-size: 25%;
    text-align: center;
    top: 5px;
    left: 5px;
    background-color: #99ffcc;
    font-size: 15px;
    border-radius: 10%;
    padding: 10px;
}

@keyframes fineShakeScale {
    0% {
        transform: scale(1) translateX(0) rotate(0);
    }

    5% {
        transform: scale(1.15) translateX(-0.8px) rotate(-0.2deg);
    }

    10% {
        transform: scale(1.15) translateX(0.7px) rotate(0.2deg);
    }

    15% {
        transform: scale(1.15) translateX(-0.6px) rotate(-0.15deg);
    }

    20% {
        transform: scale(1.15) translateX(0.6px) rotate(0.15deg);
    }

    25% {
        transform: scale(1.15) translateX(-0.5px) rotate(-0.1deg);
    }

    30% {
        transform: scale(1.15) translateX(0.5px) rotate(0.1deg);
    }

    35% {
        transform: scale(1.15) translateX(-0.4px) rotate(-0.1deg);
    }

    40% {
        transform: scale(1.15) translateX(0.4px) rotate(0.1deg);
    }

    45% {
        transform: scale(1.15) translateX(-0.3px) rotate(-0.05deg);
    }

    50% {
        transform: scale(1.15) translateX(0.3px) rotate(0.05deg);
    }

    55% {
        transform: scale(1.15) translateX(-0.2px) rotate(-0.05deg);
    }

    60% {
        transform: scale(1.15) translateX(0.2px) rotate(0.05deg);
    }

    65% {
        transform: scale(1.15) translateX(-0.1px) rotate(-0.02deg);
    }

    70% {
        transform: scale(1.15) translateX(0.1px) rotate(0.02deg);
    }

    75% {
        transform: scale(1.15) translateX(-0.05px) rotate(-0.01deg);
    }

    80% {
        transform: scale(1.15) translateX(0.05px) rotate(0.01deg);
    }

    85% {
        transform: scale(1.15) translateX(-0.02px) rotate(-0.005deg);
    }

    90% {
        transform: scale(1.15) translateX(0.02px) rotate(0.005deg);
    }

    95% {
        transform: scale(1.15) translateX(-0.01px) rotate(-0.002deg);
    }

    100% {
        transform: scale(1.15) translateX(0) rotate(0);
    }
}

@media(720px > width) {
    .infomation h1 {
        margin-top: 200px;
    }


}

.attachment-thumbnail {
    text-align: center;
}

.textformat {
    display: grid;
    grid-template-columns: 1fr;
}

.categoly {
    text-align: center;
    margin-top: 30px;
}

.post-time {
    font-size: 12px;
    font-weight: normal;
    margin-bottom: 30px;
}

.img-box {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #333;
}

.hovertarget img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hovertarget {
    position: relative;
    display: inline-block;
    padding: 20px 20px;
    font-size: 18px;
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
    border-radius: 8px;
    transition: color 0.3s ease;
    border: solid 1px #000;
    width: 100%;
    height: 100%;
    max-height: 464px;
}

.hovertarget::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 100%;
    height: 100%;
    background-color: #bbe2f1;
    border-radius: 50% / 50%;
    /* 楕円形 */
    transform: translate(-50%, -50%) scale(0.1);
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: -1;
    opacity: 0.8;
}

.hovertarget:hover::before {
    transform: translate(-50%, -50%) scale(1.8);
    /* 背景拡大 */
}

.content {
    width: 100%;
    height: 100%;
    max-height: 464px;
}

/* profile         */
.profile a {
    text-align: center;
    margin-left: 10%
}

/* comment          */


.row {
    @include clearfix;
    margin: -20px 0;

    .col {
        padding: 0 20px;
        float: left;
        box-sizing: border-box;

        &.x-50 {
            width: 50%;
        }

        &.x-100 {
            width: 100%;
        }
    }
}

.content-wrapper {
    min-height: 100%;
    position: relative;
}

.get-in-touch {
    max-width: 650px;
    margin: 40% auto 0;
    position: relative;
    top: 50%;
    transform: translateY(-50%);

    .title {
        text-align: center;
        font-family: Raleway, sans-serif;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 36px;
        line-height: 48px;
        padding-bottom: 48px;
    }
}

.contact-form {
    .form-field {
        position: relative;
        margin: 32px 0;
    }

    .input-text {
        display: block;
        width: 100%;
        height: 36px;
        border-width: 0 0 2px 0;
        border-color: #000;
        font-family: Lusitana, serif;
        font-size: 18px;
        line-height: 26px;
        font-weight: 400;

        &:focus {
            outline: none;
        }

        &:focus,
        &.not-empty {
            +.label {
                transform: translateY(-24px);
            }
        }
    }

    .label {
        position: absolute;
        left: 20px;
        bottom: 11px;
        font-family: Lusitana, serif;
        font-size: 18px;
        line-height: 26px;
        font-weight: 400;
        color: #888;
        cursor: text;
        transition: transform .2s ease-in-out;
    }

    .submit-btn {
        display: inline-block;
        background-color: #000;
        color: #fff;
        font-family: Raleway, sans-serif;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 16px;
        line-height: 24px;
        padding: 8px 16px;
        border: none;
        cursor: pointer;
    }
}

.note {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-family: Lusitana, serif;
    font-size: 16px;
    line-height: 21px;

    .link {
        color: #888;
        text-decoration: none;

        &:hover {
            text-decoration: underline;
        }
    }
}

/* page.          */
.page {
    text-align: center;
}

/* footer        */
footer ul {
    display: grid;
    grid-auto-flow: column;
    justify-content: center;
    margin-left: 10%;
}


/*個別ページーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
address {
    font-size: 30px;
    color: red;
    font-weight: lighter;
}

em {
    font-size: 18px;
    border-bottom: dashed 5px #000;
}

.wp-image-907 {
    width: 80%;
}

.wrapper {
    margin-left: auto;
    margin-right: auto;
}

.sub h1 {
    font-size: 24px;
}

.sub h2 {
    font-size: 40px;
}

.sub h2::before {
    content: "";
    display: block;
    border-top: double 2px #000;
    border-bottom: double 2px #000;
    text-align: left;
    width: 400px;
}

.sub h2::after {
    content: "";
    display: block;
    border-top: double 2px #000;
    border-bottom: double 2px #000;
    text-align: left;
    width: 400px;
}

.sub h3 {
    font-size: 16px;
}

.sub h4 {
    font-size: 12px;
}

.sub h5 {
    font-size: 10px;
    font-weight: bold;
}

.sub h6 {
    font-size: 8px;
    font-weight: bold;
}

.sub ul {
    list-style: disc;
    margin-left: 1rem;
}

.sub ol {
    list-style-type: decimal;
    margin-left: 1rem;
}

.sub p {
    text-align: left;
}

.maininfomation {
    display: grid;
    row-gap: 10%;
}

.maininfomation article img {
    border-radius: 40px 0 40px 0;
    filter: drop-shadow(5px 5px 20px rgba(0, 0, 0, 0.8));
}

@media(950px > width) {
    .maininfomation article {
        grid-template-columns: 1fr;
        row-gap: 5%;
    }
}

/* profile         */

/* form             */
form {
    display: grid;
    font-weight: bold;
    grid-template-columns: 1fr 1fr;
    background-color: #fff;
    background-color: #ddd;
    column-gap: 10%;
}

.commentbtn {
    background-color: #d00;
    display: block;
    width: 200px;
    border-radius: 30%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.formbackground {
    background-color: #fff;
    padding: 100px;
}

.form {
    padding: 100px 0;
}

/* subpage               */
.subpage {
    padding: 100px 0;
}

.subpage ul {
    display: grid;
    grid-auto-flow: column;
    justify-content: center;
    column-gap: 5%;
}

.subpage li:hover {
    font-weight: bold;
    color: #000;
    transition: 0.3s;
}

#splash {
    /*fixedで全面に固定*/
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: #fff;
    text-align: center;
    color: #99ffcc;
}


p {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

button {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 40px;
    bottom: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    border: 0;
    background: none;
    transition: .2s;
}

button p {
    writing-mode: vertical-rl;
    text-decoration: none;
    text-transform: uppercase;
    height: 85px;
    margin: 0;
    letter-spacing: 5px;
    text-align: right;
}

button p:before {
    content: "";
    position: absolute;
    top: 2px;
    right: -5px;
    width: 2px;
    height: 20px;
    background: #000;
    transform: skewX(-150deg);
}

button p:after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 2px;
    height: 85px;
    background: #000;
}

.is-active {
    opacity: 1;
    visibility: visible;
}

/* suraida-*/
.slide-container {
    width: 100%;
    margin: 50px auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide-wrapper {
    display: flex;
    animation: slide-flow 20s infinite linear 1s both;
}

.slide {
    width: 300px;
    object-fit: cover;
    border: 1px solid #ddd;
}

@keyframes slide-flow {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ▲▲▲ CSS（ここまで） ▲▲▲ */

.breadcrumbs {
    font-size: 20px;
    background-color: #fff;
    border-radius: 20px;
    width: 30%;
    max-width: 300px;
    text-align: center;
}

/* profile        */

.profile-main {
    background-color: #fff;
    padding: 200px 0 0;

}

.myprofile {
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.myprofile p {
    margin-bottom: 5%;
    text-align: left;
    margin-left: 15%;
}

.profile-categoly p {
    margin-bottom: 10%;
}

.profile-categoly .school {
    margin-bottom: 10%;
}


.profile-about {
    display: grid;
    grid-template-columns: 1fr 3fr;
    border: double 2px #121212;
    padding: 5% 5% 0 3%;
}

.profile-about img {
    width: 100%;
    max-width: 230px;
    border-radius: 10%;
    margin-bottom: 10%;
}

.profile-about h1 {
    text-align: center;
}

.school {
    padding-bottom: 20%;
}

@media(width <720px) {
    .profile-about {
        grid-template-columns: 1fr;
    }

    .profile-about h1 {
        margin-bottom: 5%;
    }
}

/* nenpyou */
/* ===== 基本設定 ===== */
.nenpyou {
    padding: 50px 20px;
    position: relative;
    margin-top: 200px;
    border-top: solid 1px #555;
    border-bottom: solid 1px #555;
    padding-top: 200px;
}

.nenpyou img {
    position: absolute;
    top: 10%;
    right: 20%;
}

.nenpyou .inner {
    max-width: 1200px;
    margin: 0 auto;
}

.nenpyou h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

/* ===== 年表全体のグリッド ===== */
.year {
    display: grid;
    grid-template-columns: 1fr 4px 1fr;
    /* 左:丸アイコン 中央:ライン 右:内容 */
    gap: 20px;
    position: relative;
}

/* ===== 中央の縦線 ===== */
.year::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    /* 左カラムの幅に合わせる */
    width: 4px;
    height: 100%;
    background: #ccc;
    z-index: 0;
}

/* ===== 1つの履歴（article） ===== */
.history,
.history2 {
    display: contents;
    /* Gridの子要素としてレイアウトに直接反映 */
}

/* 左の丸アイコン */


.space::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: #fff;
    border: 3px solid #999;
    border-radius: 50%;
    z-index: 2;
    position: absolute;
    left: 48.8%;
}

@media(width < 1000px) {
    .space::before {
        left: 48.3%
    }
}

@media(width < 800px) {
    .space::before {
        left: 47.8%;
    }
}

@media(width < 600px) {
    .space::before {
        left: 47%;
    }
}

@media(width < 400px) {
    .space::before {
        left: 46%;
    }
}

/* 中央線上の透明スペース */
.space {
    width: 4px;
}

/* 右側の内容 */
.myyear {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.myyear h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.myyear h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #666;
}

.myyear p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== レスポンシブ対応 ===== */
@media(width <720px) {
    .myyear h2 {
        font-size: 1rem;
    }

    .myyear h3 {
        font-size: 0.7rem;
    }

    .myyear p {
        font-size: 0.5rem;
    }
}

/* 初期状態：非表示 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示状態 */
.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* コメント表示　*/
/* コメント全体 */
#comments {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-family: "Helvetica Neue", Arial, sans-serif;
    border: solid 2px #555;
}

#comments h3.widget_title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

/* コメントリスト */
.comments ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comments li.comment {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f1f1;
}

.comments li.comment:last-child {
    border-bottom: none;
}

/* アバター */
.comment-author img.avatar {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #ddd;
}

/* コメント本文 */
.comment-body {
    flex: 1;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.comment-author .fn a {
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.comment-author .fn a:hover {
    color: #0bd;
}

.comment-author .says {
    font-size: 0.85rem;
    color: #666;
}

/* 日付 */
.comment-meta {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
}

.comment-meta a {
    color: #999;
    text-decoration: none;
}

.comment-meta a:hover {
    color: #333;
}

/* コメント本文テキスト */
.comment-body p {
    line-height: 1.6;
    margin-bottom: 10px;
}

/* 返信ボタン */
.comment-body .reply a {
    display: inline-block;
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    color: #333;
    transition: background 0.2s ease;
}

.comment-body .reply a:hover {
    background: #e2e2e2;
}

/* コメントフォーム */
#respond {
    margin-top: 40px;
}

#respond h3.comment-reply-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

#commentform {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#commentform label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #555;
}

#commentform input[type="text"],
#commentform textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background: #fafafa;
    transition: border-color 0.2s ease, background 0.2s ease;
}

#commentform input[type="text"]:focus,
#commentform textarea:focus {
    border-color: #0bd;
    background: #fff;
    outline: none;
}

#commentform textarea {
    resize: vertical;
    min-height: 120px;
}

/* 同意チェックボックス */
.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #555;
}

/* 送信ボタン */
#commentform input[type="submit"] {
    align-self: flex-start;
    padding: 10px 20px;
    background: #ffff;
    color: #000;
    border: none;
    border-radius: 3px;
    width: 100px;
    border: solid 1px #000;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

#commentform input[type="submit"]:hover {
    background: #fff;
}

/* 固定ページ　スライドショー*/
/* スライダー全体 */
.slider {
    overflow: hidden;
    width: 100%;
    background: #fff;
    padding: 30px 0;
    box-sizing: border-box;
    position: relative;
    background-color: #000;
}

/* 横並び＋無限ループ */
.slider-track {
    display: flex;
    width: 200%;
    padding-top: 30px;
    animation: scroll 30s linear infinite;
    /* 横に無限ループ */
}

.slider-track::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -11%;
    width: 100%;
    height: 20px;

    background: radial-gradient(circle, #ddd 25%, transparent 25%) repeat-x;
    background-size: 20px 20px;
}

.slider-track::before {
    content: "";
    position: absolute;
    left: 0;
    top: -11%;
    width: 100%;
    height: 20px;

    background: radial-gradient(circle, #ddd 25%, transparent 25%) repeat-x;
    background-size: 20px 20px;
}

/* 各スライドの基本スタイル */
.slide {
    flex: 0 0 auto;
    width: 10%;
    /* 幅を大きく */
    height: 10%;
    /* 高さを大きく */
    margin-right: 50px;
    /* 画像同士の間隔も少し広げる */
    position: relative;
    transition: transform 0.3s ease;
    overflow: hidden;
    /* はみ出し防止 */
    border-radius: 16px;
    /* 角丸を少し大きめに */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* 画像をスライド内で統一サイズに合わせる */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 画像を中央でトリミング */
    display: block;
}

/* 高低差を演出（上下のズレを少し大きく） */
.slide:nth-child(1) {
    transform: translateY(15px);
}

.slide:nth-child(2) {
    transform: translateY(-20px);
}

.slide:nth-child(3) {
    transform: translateY(10px);
}

.slide:nth-child(4) {
    transform: translateY(-15px);
}

.slide:nth-child(5) {
    transform: translateY(15px);
}

.slide:nth-child(6) {
    transform: translateY(-20px);
}

.slide:nth-child(7) {
    transform: translateY(10px);
}

.slide:nth-child(8) {
    transform: translateY(-15px);
}

/* 横スクロールのアニメーション */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.movie {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-left: 10%;
    row-gap: 2%;
    column-gap: 10%;
}

@media(780px > width) {
    .movie {
        grid-template-columns: 1fr;
    }


}

video {
    width: 70%;
    height: 80%;
    border: solid 1px #555;
    border-radius: 30px;
    margin-top: 30%;
}

.hobby {
    background-color: #000;
    padding: 100px 0 500px 0;
}

.hobby h1 {
    font-size: 40px;
    color: #fe0
}

.hobby h1::after {
    content: "";
    display: block;
    width: 100%;
}