
@charset "UTF-8";

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

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

@font-face {
    font-family: '自由の翼';
    font-display: swap;
    src: url('https://cdn.leafscape.be/JiyunoTsubasa/JiyunoTsubasa_web.woff2') format("woff2");
}

/* 全体に適用する */
* {
    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.7;
    letter-spacing: 0.1em;
    font-size: 13px;
    color: #000;
}

/* リンク */
a {
    text-decoration: none;
    color: #000;
}

/* 余白 */
header,
section,
article {
    margin: 3em auto;
}

/* 見出し */
header h1,
article h1 {
    font-size: 1.8em;
    font-family: '自由の翼', sans-serif;
}

header span {
    display: block;
    margin-top: -1em;
    margin-bottom: 2em;
    text-shadow: 0 0 1.5px #808080;
    color: transparent;
}

/* 英字フォント */
header span,
a,
footer,
.en {
    font-family: 'Caveat', 'Noto Sans JP', sans-serif;
}

/* 折り畳み */
header details {
    margin: 2em auto;
    width: 60%;
    max-width: 400px;
}

/* リスト系 */
section ul {
    margin: 0 auto;
    width: 70%;
    list-style-type: none;
}

section ul li {
    margin: 1.5em auto 1em;
}

section ul li mark,
footer mark {
    display: inline-block;
    margin-bottom: 0;
    padding: 0 1em;
    background-color: #fff;
    border-left: 5px solid #efefef;
    border-right: 5px solid #efefef;
    text-indent: 0.3em;
    letter-spacing: 0.3em;
    color: #808080;
}

section ul li a {
    font-size: 14px;
    color: #467290;
}

section ul li span {
    font-size: 12px;
    color: #808080;
}

/* 重要事項 */
section strong {
    font-weight: bold;
    color: red;
}

/* アーティクル */
article {
    width: 80%;
    max-width: 600px;
}

article p {
    margin: 1em auto 1.5em;
    text-align: justify;
    word-break: break-all;
}

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

.menu ul {
    list-style-type: none;
}

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

/* 画像サイズ指定 */
.image {
    width: 60px;
    height: auto;
}

/* フッター */
footer {
    margin: 1em auto 1.5em;
}

footer span {
    color: #808080;
}

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

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;
    }

    /* フレックスボックス */
    section ul {
        display: flex;
        flex-wrap: wrap;
        margin: 0 auto;
        max-width: 700px;
        justify-content: space-around;
    }

    section ul li {
        flex-basis: 40%;
    }

    section ul li a {
        font-size: 15px;
    }
}

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

    section ul {
        max-width: 1000px;
    }

    section ul li {
        flex-basis: 30%;
    }

}


/* 追加 */

/* 画像保護用 */

img {	
	vertical-align: bottom;
        pointer-events: none;
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
  -webkit-user-drag: none; /* Chrome, Safari, Opera */
  -khtml-user-drag: none;  /* Konqueror */
  -moz-user-drag: none;    /* Firefox */
  -o-user-drag: none;      /* Opera */
  user-drag: none;         /* Standard property */
}

a {	
  -webkit-user-drag: none; /* Chrome, Safari, Opera */
  -khtml-user-drag: none;  /* Konqueror */
  -moz-user-drag: none;    /* Firefox */
  -o-user-drag: none;      /* Opera */
  user-drag: none;         /* Standard property */
}

@media print {
    body { display: none }
}


.image-wrapper {
  position: relative;
}

.image-wrapper img {
  display: block;
}

.image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0); /* 透明なレイヤー */
}