@charset "UTF-8";

/* Template & Designed by Towako. */
/* https://ninawas.me */

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

@font-face {
    font-family: 'はれのそら明朝';
    font-display: swap;
    src: url('https://cdn.leafscape.be/Harenosora/harenosora_web.woff2') format("woff2");
}

/*-------------------------------------------------
このフォントはIPAフォントライセンスv1.0の下で提供されています。
http://ipafont.ipa.go.jp/ipa_font_license_v1.html
オリジナルのフォントは以下から取得できます。
はれのそら明朝

http://ipafont.ipa.go.jp/
-------------------------------------------------*/

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

/* 基本設定 */
body {
    text-align: center;
    background-color: #fff;
    line-height: 1.6;
    letter-spacing: 0.1em;
    font-size: 12px;
    color: #000;
}

/* リンク */
a {
    color: #AC1B4E;
}

/* ヘッダー */
header {
    margin: 3em auto;
    padding: 0;
    position: relative;
    width: 200px;
}

/* ヘッダー画像サイズ */
header img {
    width: 90px;
}

/* フォントの指定 */
h1,
h2 span,
.link span {
    font-family: 'はれのそら明朝', serif;
    font-size: 13.5px;
}

/* 見出しを配置する */
h1 {
    position: absolute;
    top: 92%;
    right: 0;
    color: #AC1B4E;
}

/* ナビゲーション */
nav {
    margin: 1em auto 2em;
    width: 250px;
}

/* 文字色 */
nav p,
.atogaki {
    color: #808080;
}

dd{
   display: inline-block;
   margin-left: 5px;
   font-size: 10px;
   color: #808080;
}

/* メインコンテンツ */
main {
    margin: 5em auto 3em;
}

/* セクションとアーティクル */
section,
article {
    margin: 3em auto;
    width: 300px;
    text-align: left;
    word-break: break-all;
}

/* 余白 */
p,
footer {
    margin: 1.3em auto 1.5em;
}


/* 見出し */
h2 {
    position: relative;
    margin: 0.5em auto 1em;
}

/* 線 */
h2::before {
    position: absolute;
    display: block;
    content: '';
    z-index: -50;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #808080;
}

h2 span {
    padding-right: 1em;
    background-color: #fff;
}

/* リスト系 */
ol {
    list-style-position: inside;
    list-style-type: decimal-leading-zero;
}

ul {
    list-style-type: none;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
}

.flex li {
    flex-basis: 10%;
}

.columns {
    columns: 2 auto;
}

/* メニュー */
.center {
    text-align: center;
}

.center li {
    display: inline-block;
    margin: 0 1.5em;
}

.center li a {
    display: inline-block;
    padding: 0.3em 0.5em;
    text-decoration: none;
    background-color: #AC1B4E;
    color: #fff;
}

/* 水平線 */
hr {
    border: none;
    border-bottom: 1px dashed #808080;
}

/* フォーム系 */
textarea,
input[type] {
    -webkit-appearance: none;
    padding: 0.2em 0.4em;
    background-color: #fff;
    border: none;
    border-bottom: thin solid #AC1B4E;
    border-radius: 5px;
    color: #c0c0c0;
}

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

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

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

/* 横幅768px以上で読み込む */
@media screen and (min-width:768px) {
    #wrap {
        margin: 0 auto;
        max-width: 700px;
    }

    #wrap::after {
        display: block;
        content: '';
        clear: both;
    }

    #head {
        float: left;
    }

    main {
        overflow: hidden;
    }

    article {
        width: 600px;
    }
}