
@charset "UTF-8";

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

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

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

/* 基本設定 */
body {
    background-color: #fff;
    text-align: justify;
    word-break: break-all;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-size: 13px;
    color: #000;
}

/* リンク基本設定 */
a {
    text-decoration: none;
}

/* 英字フォント */
a,
section h2,
section h3,
footer,
.en {
    font-family: 'Jura', 'Noto Sans JP', sans-serif;
}

/* 文字色 */
a,
section span {
    color: #4c545c;
}

/* ヘッダー */
header {
    position: relative;
    margin: 3em auto 20vh;
    padding-bottom: 20px;
    width: 100%;
    overflow: hidden;
}

header::after,
header h1,
header h1::before,
nav {
    position: absolute;
}

header::after,
header h1::before {
    display: block;
    content: '';
    background-color: #000;
}

header::after {
    width: 80%;
    height: 1px;
    bottom: 0;
    left: 0;
}

header img {
    width: 80%;
}

header h1 {
    top: 0;
    left: 5%;
    letter-spacing: 0;
    font-size: 3em;
    font-family: 'Meddon', 'Noto Sans JP', sans-serif;
}

header h1::before {
    width: 200%;
    height: 1px;
    top: 50%;
    left: 110%;
}

/* ヘッダーここまで */

/* ナビゲーション */
nav {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    bottom: 5%;
    right: 10%;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    margin: 0.5em auto;
    font-size: 15px;
}

/* ナビゲーションここまで */

/* メイン直下のセクション */
main > section {
    padding: 3em;
    box-sizing: border-box;
}

/* セクション見出し*/
section h2 {
    margin: 0.5em auto 1.7em;
    text-align: center;
    font-size: 1.1em;
}

section h2 img {
    width: 100px;
    height: auto;
    margin: -2.5em auto 1em;
border-radius: 50px;
border: 1.5px solid #423930;
}

section h3 {
    width: 50%;
height: 35px;
padding-top: 0.3em;
    padding-left: 0.7em;
    border: thin solid #4c545c;
    border-left: 5px solid #4c545c;
    font-size: 1em;
}

/* セクション内セクション */
section > section {
    margin-bottom: 2em;
}

/* セクション内設定 */
section a {
    display: inline-block;
    margin: 0.2em auto;
    padding: 0 0.5em;
    border: thin solid #4c545c;
    background-color: #4c545c;
    color: #fff;
}

section p {
    margin: 1em auto 1.5em;
}

section span,
section strong {
    font-weight: bold;
}

section mark {
    padding: 0.1em 0.4em;
    background-color: #c0c0c0;
}

section em {
    border-bottom: thin dashed red;
}

section strong {
    color: red;
}

section .box {
    margin: 0em auto;
    padding: 1em;
    width: 95%;
    border: thin solid #4c545c;
}

section .borderright {
    position: relative;
    margin-right: 80px;
}

section .borderright::before {
    position: absolute;
    display: block;
    content: '';
    top: 50%;
    left: calc(100% + 10px);
    width: 70px;
    height: 1px;
    background-color: #4c545c;
}

/* リスト系 */
section dl,
section ul {
    margin: 1em auto 1.5em;
}

section dd {
    margin: 0 0 0.5em 1em;
    font-size: 11px;
}

section ul {
    list-style-type: none;
    border-left: thin solid #000;
}

section ul li {
    padding-left: 1em;
}

section ul.yoko li {
    display: inline-block;
}

/* リストここまで */
/* フッター */
footer {
    margin: 0.5em auto;
    text-align: center;
}

/* 枠線リンク */
.link {
    display: inline-block;
    margin: 0.2em auto;
    padding: 0 0.5em;
    border: thin solid #4c545c;
}

.background {
    background-color: #4c545c;
    color: #fff;
}

/* 右揃え */
.right {
    text-align: right;
}

/* 上に戻るボタン */
#Top {
    height: 1px;
}

#PageTop {
    position: fixed;
    bottom: 8%;
    right: 5%;
    font-size: 30px;
}

#PageTop a {
    display: block;
    z-index: 100;
    width: 30px;
    height: 30px;
}



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

    /* ヘッダーをフロートさせる */
    header {
        margin: 1.5em auto;
        width: 40%;
        float: left;
    }

    main {
        margin: 1.5em auto;
        overflow: hidden;
    }

    /* フロートの解除 */
    main::after {
        display: block;
        content: '';
        clear: both;
    }

    /* 上に戻るボタンの大きさを変える */
    #PageTop img {
        width: 40px;
        height: auto;
    }
}

/* 横幅1024px以下は下記を読み込む */
@media screen and (min-width:1024px) {
    body {
        font-size: 15px;
    }

    header {
        width: 30%;
    }

    /* フレックスボックス */
    main {
        display: flex;
        flex-wrap: wrap;
        width: 60%;
    }

    /* 2カラムセクション */
    .columns {
        columns: auto 2;
        flex-basis: 100%;
    }

    /* 見出しを横切って表示させる */
    .columns h2 {
        column-span: all;
    }

    section {
        flex-basis: 50%;
    }

}



/* 以下追加CSS */


section hr {
    margin: 0.6em auto 0.7em;
  background-color: #4c545c;
  height: 1px;
  border: none;
}


.log-box {
     padding-left : 10% ;
     padding-right : 10% ;
}

/* 画像保護用 */

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); /* 透明なレイヤー */
}




