@charset "UTF-8";

/* Template & Designed by Nogi. */
/* https://yoakemae.blue */
/* https://fantia.jp/yoakeblue */

/* ウェブフォントの読み込み */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&family=Shippori+Mincho&family=Yuji+Syuku&display=swap');

/* 全体に適用する */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Serif JP', serif;
    font-weight: normal;
}

/* 共通 */
:root {
    --light-color: #fff;
    --dark-color: #3f4660;
    --color: #55618d;
    --ja-font: 'Yuji Syuku', serif;
}

/* 基本設定 */
body {
    background: var(--light-color);
    line-height: 1.7;
    letter-spacing: 0.1em;
    text-align: justify;
    word-break: break-all;
    line-break: strict;
    font-size: 13px;
    color: #2C4F54;
}

/* 背景画像 */
body::before {
    position: fixed;
    display: block;
    content: '';
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background: url('images/ka.jpg') center/cover;
}

/* リンク */

a {
    text-decoration: none;
    background: linear-gradient(transparent 60%, # 40%);
    color: #2C4F54;
cursor:help;
}
   a:hover {
        transition: .5s;
        text-shadow: 0 0 3px #BADCAD;
        color: transparent;
    }

/* タブメニュー */
.tab-btn {
    display: none;
}

.tab-list-wrap {
    position: fixed;
    bottom: 0;
    left: 3%;
    z-index: 1;
}

.tab-list-wrap li {
    display: inline-block;
    margin: 0 1em;
}

.tab-list {
    display: block;
}

.tab-content {
    display: none;
}

#tab-btn1:checked~.tab-content-wrap #tab-content1 {
    display: block;
}

.tab-list-wrap h1 {
    background: url('text.jpg') center/cover;
    -webkit-background-clip: text;
    font-size: 3.2em;
    font-family: var(--ja-font);
    color: transparent;
}

.tab-list-wrap h1 span {
    font-family: var(--ja-font);
}

/* セクション */
section {
    padding: 3em 3% 100px;
    min-height: 100vh;
    min-height: 100dvh;
    background-color: rgba(255, 255, 255, 0.8);
    animation: FadeIn 1s;
}

section aside {
    max-width: 600px;
}

section aside,
section aside p {
    margin-bottom: 1.5em;
}

/* リスト系 */
section ul,
section ol {
    margin-bottom: 1em;
}

section ul {
    margin-left: 1em;
    padding-left: 1em;
    list-style-type: none;
    border-left: thin solid var(--dark-color);
}

section ul.yoko li {
    display: inline-block;
    margin-right: 0.5em;
}

section ol {
    margin-left: 0.7em;
    list-style-position: inside;
}

/* アーティクル */
article {
    margin: 0 auto;
    padding: 3em;
    max-width: 600px;
    background-color: var(--light-color);
}

/* アーティクル見出し */
article h1 {
    margin-bottom: 1em;
    text-align: center;
}

/* メニュー */
.menu {
    text-align: center;
    margin: 1em auto 1.5em;
}

.menu li {
    display: inline-block;
    margin: 0 0.5em;
}

.menu li a {
    text-decoration: none;
    font-weight: bold;
}

/* アニメーション */
@keyframes FadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* フォーム系 */
textarea,
input[type] {
    -webkit-appearance: none;
    padding: 0.5em;
    background: var(--light-color);
    border: none;
    border-bottom: 1px solid var(--dark-color);
    border-radius: 10px;
    text-align: center;
    font-size: 11px;
    color: var(--dark-color);
}

textarea {
    width: 200px;
    height: 70px;
}

input[type=text] {
    width: 80px;
}

input[type=submit] {
    width: auto;
}

/* 横幅768px以上で読み込む */
@media screen and (min-width:768px) {
    body {
        font-size: 14px;
    }

    .tab-list-wrap h1 {
        font-size: 4em;
    }

    /* フレックスボックス */
    #boxwrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .box {
        flex-basis: 40%;
    }
}

/* 横幅1024px以上で読み込む */
@media screen and (min-width:1024px) {
    body {
        font-size: 14px;
    }

    .tab-list-wraph1 {
        font-size: 5em;
    }
}

/* 横幅1440px以上で読み込む */
@media screen and (min-width:1440px) {
    body {
        font-size: 16px;
    }

    .tab-list-wrap h1 {
        font-size: 6em;
    }

    .box {
        flex-basis: 30%;
    }
}