@charset "UTF-8";
@import url("html5reset-1.6.1.css");
@import url('https://fonts.googleapis.com/css?family=Questrial&display=swap');
@import url('https://fonts.googleapis.com/css?family=Sawarabi+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:100&display=swap');

/*--------------------テンプレート情報--------------------*/
/*template　Maison de R*/
/*url　https://maisonder.web.fc2.com/*/
/*title　星の世界から*/
/*code　CSS3*/

/*--------------------ライセンス--------------------*/

/*HTML5 Reset Stylesheet
html5doctor.com Reset Stylesheet v1.6.1
http://html5doctor.com/html-5-reset-stylesheet/
Copyright Richard Clark - http://richclarkdesign.com
Released under the CC0 Public Domain Dedication and MIT License
http://opensource.org/licenses/mit-license.php
*/

/*
jQuery v3.3.1
http://jquery.com/
(c) JS Foundation and other contributors
Released under the MIT license
http://jquery.org/license
http://opensource.org/licenses/mit-license.php
*/

/*
jQuery Smooth scroll
Handy Web Design
https://handywebdesign.net/2017/10/jquery-smooth-scroll/
*/

/*
Google Fonts
"Questrial" is lisenced under the SIL Open Font License
http://scripts.sil.org/OFL
by https://fonts.google.com/(Joe Prince)
"Sawarabi Mincho" is lisenced under the SIL Open Font License
http://scripts.sil.org/OFL
by https://fonts.google.com/(mshio)
"Noto Sans JP" is lisenced under the SIL Open Font License
http://scripts.sil.org/OFL
by https://fonts.google.com/(Google)
*/

/*
Font Awesome(Font License)
"font-awesome" is lisenced under the SIL Open Font License 1.1
http://scripts.sil.org/OFL
https://fontawesome.com/v4.7.0/
*/

/*
Font Awesome(Code License)
https://fontawesome.com/v4.7.0/
Released under the MIT license
https://fontawesome.com/v4.7.0/license/
http://opensource.org/licenses/mit-license.php
*/

/*アニメーション*/

body {
    -webkit-animation: fadein 3s ease 0s 1;
    animation: fadein 3s ease 0s 1;
    /*左から、アニメーション名、1回の再生時間、変化方法、開始を遅らせる時間、繰り返し回数*/
}

@-webkit-keyframes fadein {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadein {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}


/*基本*/

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-break: break-all;
    -webkit-appearance: none;
    -moz-appearance: none;
    /*フォーム周辺のデザインをリセット*/
}

html {}

body {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    /*モバイル端末でのテキストサイズの自動調整対策*/
    font-family: 'Questrial', "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS P Gothic", Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #eee7e5;
    letter-spacing: 0.04em;
    text-align: center;
    background: black;
}

/*フロート解除*/
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

a {
    color: #eee7e5;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    /*アニメーション*/
}

a:hover {
    color: #facdbf;
}

img {
    max-width: 100%;
    /*フルードイメージ（親要素の幅に応じて縦横比を保持したまま自動的に画像の拡大縮小をする）*/
    height: auto;
    vertical-align: bottom;
    /*ディセンダー対策（画像の下の隙間を無くす）*/
}

a img {
    /*画像リンクの枠線を消す*/
    border: 0;
}

ul {
    list-style-type: none;
    /*リストマークを非表示*/
    list-style-position: inside;
    /*リストマークを内側に表示*/
}

.ul1 {
    /*ulリスト用1（縦リスト/テキスト用）*/
}

.ul1 li {
    margin-top: 0.25em;
}

.ul1 li:first-child {
    margin-top: 0;
}

.ul1 li span {
    display: block;
}

.ul1 li span::before {
    /*FontAwesome*/
    display: inline;
    content: "\f138";
    margin-right: 0.5em;
    font-family: FontAwesome;
}

.pagetop {
    /*ページトップボタン*/
    position: fixed;
    /*固定*/
    bottom: 8px;
    right: 8px;
}

.pagetop a {
    color: white;
    display: block;
    /*リンク範囲の拡張*/
    background: #292929;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    /*heightの値と揃える*/
    border-radius: 15px;
    /*widthとheightの値の半分にすると円になる*/
}

.pagetop a:hover {
    color: white;
    background: #404040;
}


/*フォント*/

header h1,
aside h1 {
    font-family: 'Sawarabi Mincho', sans-serif;
    font-weight: normal;
}

.sub,
nav {
    font-family: 'Sawarabi Mincho', sans-serif;
}

.catch {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 100;
}

/*テキスト 行の高さ*/
.text,
footer {
    line-height: 1.7;
}

/*テキスト 文字間隔*/

header h1 {
    letter-spacing: 0.2em;
}

header h1 span {
    /*最後の文字の文字間隔を消去*/
    letter-spacing: 0;
}

.catch,
.sub,
nav,
aside h1 {
    letter-spacing: 0.2em;
}

.pagetop {
    letter-spacing: 0;
}


/*ページの枠組み*/

#all {}

.wrap1 {
    color: white;
    background: url(bg01.jpg) no-repeat center center black;
    background-size: cover;
    padding: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*フレックスボックス*/
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /*横中央*/
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /*縦中央*/
}

.wrap1 a {
    color: white;
}

.wrap1 a:hover {
    color: white;
}

.wrap2 {
    padding: 70px 50px 50px;
}


/*wrap1の高さを常に画面いっぱいに広げる*/

html,
body {
    height: 100%;
    /*wrap1のすべての親要素の高さを100%にする*/
}

body > .wrap1 {
    height: auto;
    /*wrap1の中身が多くなりすぎた場合の対策 これを指定しないと中身が多くなった場合に切れて表示される場合があります*/
}

.wrap1 {
    min-height: 100%;
    /*上記のautoにより中身が少ない場合に縮小されるのを防ぐ対策*/
    height: 100%;
}


/*レイアウト 共通*/

header,
aside,
footer {
    width: 100%;
    max-width: 800px;
}


/*ヘッダー*/

header {
    padding: 70px 50px 50px;
    background: rgba(0, 0, 0, 0.5);
}

.title {}

.catch {
    /*キャッチコピー*/
    opacity: 0.8;
    font-size: 20px;
}

header h1 {
    margin-top: 50px;
    font-size: 60px;
}

header h1::first-letter {
    color: #fceced !important;
    font-size: 75px;
}

header h1 a {
    text-shadow: 0 0 20px white;
    /*発光効果*/
    text-decoration: none;
}

header h1 a:hover {
    text-shadow: 0 0 20px #ffe744;
    /*発光効果*/
}

.sub {
    margin-top: 30px;
    font-size: 20px;
}

/*ナビ*/

nav {
    margin-top: 40px;
}

nav ul {
    font-size: 0;
    /*inline-blockの隙間対策*/
}

nav ul li {
    display: inline-block;
    /*横並びリスト*/
    font-size: 20px;
    /*inline-blockの隙間対策 再設定*/
    margin: 1em 0.8em 0;
}

nav ul li a {
    display: block;
    /*リンク範囲の拡張*/
    text-decoration: none;
    padding: 0.25em 0;
    position: relative;
    /*エフェクトの基準位置*/
}

nav ul li a::after {
    /*エフェクト*/
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 0;
    height: 1px;
    background-color: white;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

nav ul li a:hover::after {
    /*エフェクト*/
    width: 100%;
}


/*テキストシャドウ 共通*/

.catch,
.sub,
nav ul li {
    text-shadow: 0 0 5px #202020;
}


/*補足*/

aside {
    text-align: left;
    margin: 0 auto;
}

aside h1 {
    font-size: 20px;
    margin-bottom: 30px;
}


/*本文エリア*/

.text > p,
.text > ul {
    /*タグ間の余白*/
    margin-top: 1.5em;
}

.text > p:first-child,
.text > ul:first-child {
    /*タグ間の余白 先頭の要素を無効*/
    margin-top: 0;
}


/*フッター*/

footer {
    margin: 50px auto 0;
    text-align: left;
}

footer ul {}

footer ul li {
    float: left;
    margin-right: 1em;
}

footer ul li:last-child {
    margin-right: 0;
}


/*------------画面サイズ768px以下用（タブレット/スマホ向け）------------*/

@media screen and (max-width:768px) {
    .wrap1 {
        padding: 50px 30px;
    }

    .wrap2 {
        padding: 50px 20px;
    }

    header {
        padding: 0;
        background: rgba(0, 0, 0, 0);
    }

    .catch {
        font-size: 16px;
    }

    header h1 {
        font-size: 35px;
    }

    header h1::first-letter {
        font-size: 50px;
    }

    .sub {
        font-size: 16px;
    }

    nav ul li {
        font-size: 16px;
    }

    aside h1 {
        font-size: 16px;
    }
}

/*ベンダープレフィックス記述済*/
/*エラーチェック済*/
