@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Anonymous+Pro|Monsieur+La+Doulaise|Instrument+Serif');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kurenaido&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jura&family=Meddon&family=Noto+Sans+JP&display=swap');

@font-face
{
font-family:"ロゴたいぷゴシック-コンデンスド" ;
src: url('https://cdn.leafscape.be/LogoTypeGothicCondense/07LogoTypeGothic-Condense_web.woff2')
     format("woff2");
}
@font-face
{
font-family: はれのそら明朝;
src: url('https://cdn.leafscape.be/Harenosora/harenosora_web.woff2')
     format("woff2");
}

/* 全体に適用する */
* {
    margin: 0;
    padding: 0;
    font-weight: normal;
}


body{
    font-family: HiraKakuPro-W3, 'メイリオ', "Noto Sans JP", verdana, sans-serif;
    color: #555;
    background-color: #f5f5f5;
    font-size: 13px;
    line-height: 23px;
    letter-spacing: 0.1em;
    margin: 0;
    padding: 0;
}

.wrp{
    max-width: 500px;
    width: 90%;
    padding: 2%;
    margin: 0 auto;
    white-space: pre-wrap;
}

.text{
    font-weight: 200;
    margin: 2%;
    margin-bottom: 10px;
}

.text p{
    color:#999;
    font-size: 12px;
}

.text m {
    line-height: 3em;
}

.text k {
    color: #999;
}

.text c {
    text-align: center;
    margin: 0 auto;
    display: block;
}

a {
    color: #38a1db;
    border-bottom: 1px solid rgba(146,181,169,0.4);
    padding: 0 3.2px;
    transition: 0.2s;
    text-decoration: none;
}
a:hover {
    color: #9fd2f5;
}


header {
    position: relative;
    margin: 8vh auto 4em;
    max-width: 180px;
    cursor: help;
}

@keyframes SlideDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes SlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

header img {
    margin: 0 auto;
    display: block;
    width: 180px;
    height: auto;
}

header h1 {
    font-size: 1.3em;
    font-family: 'Zen Kurenaido', 'STHeitiSC-Light', 'Microsoft YaHei', gulim, メイリオ, sans-serif;
    font-weight: normal;
}

header h1 span {
    position: absolute;
    letter-spacing: 0.3em;
}

header h1 span.right {
    top: -10%;
    right: -10%;
    writing-mode: vertical-rl;
    padding: 10px 5px;
    background-color: rgb(255, 255, 255, 0.9);
    animation: SlideDown 3s;
}

header h1 span.left {
    bottom: -10%;
    left: -10%;
    writing-mode: vertical-rl;
    padding: 10px 5px;
    background-color: rgb(255, 255, 255, 0.9);
    animation: SlideUp 3s;
}

h2 {
    font-size: 1.3em;
    font-family: 'Zen Kurenaido', 'STHeitiSC-Light', 'Microsoft YaHei', gulim, メイリオ, sans-serif;
    text-align: center;
    letter-spacing: 0.3em;
}

h3 {
    color: #38a1db;
    font-size: 1.2em;
    font-family: 'ロゴたいぷゴシック-コンデンスド', メイリオ, sans-serif;
    text-align: center;
    letter-spacing: 0.5em;
    margin: 0.5em 0 1em;
}

.menu {
    font-family: 'ロゴたいぷゴシック-コンデンスド', メイリオ, sans-serif;
    text-align: center;
    margin: 0 auto;
    letter-spacing: 3px;
}


.list {
    width: 350px;
    margin: 0 auto -10px;
}

.list a {
    font-family: ロゴたいぷゴシック-コンデンスド;
    line-height: 30px;
}

.list m{
    color: #999;
    font-size: 12px;
    line-height: 26px;
    letter-spacing: 1.7px;
    margin: 1.5em 0 0 1em;
}

nav {
    position: relative;
    margin-top: 80px;
}

nav::before {
    position: absolute;
    display: block;
    content: '';
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 50px;
    background-color: #999;
}

input[type],textarea{
    height: 50px;
    width: 100%;
    background: #fff;
    border: solid 1px #7baad4;
    margin: 5px 10px;
    padding: 2px 5px;
    border-radius: 2px;
    -webkit-appearance: none;
    box-shadow: none;
}

input[type=text]{
    height: 24px;
    width: 80px;
    padding: 5px;
    margin: 5px 5px 0;
}

input[type=submit]{
    font-weight: normal;
    height: auto;
    width: auto;
    cursor: pointer;
    text-shadow: none;
    border: solid 1px #7baad4;
    background: #7baad4;
    color: #fff;
    padding: 3px 10px;
    margin: 5px 0 0;
}

@media screen and (min-width:768px) {

    body {
        font-family: HiraKakuPro-W3, 'メイリオ', "Noto Sans JP", verdana, sans-serif;
        font-size: 14px;
        letter-spacing: 2.2px;
        line-height: 26px;
    }

    .text p{
        font-size: 13px;
    }
}