﻿@charset "UTF-8";
@import url("html5reset-1.6.1.css");
@import url('https://fonts.googleapis.com/css?family=Lato:400,700');

/*--------------------テンプレート情報--------------------*/
/*template　Maison de R*/
/*url　https://maisonder.web.fc2.com/*/
/*title　BASIC TEMPLATE 3*/
/*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
"Lato" is lisenced under the SIL Open Font License
http://scripts.sil.org/OFL
https://fonts.google.com/(Łukasz Dziedzic)
*/

/*
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
*/

/*--------------------PCファースト/すべての画面サイズでベースとなるCSS--------------------*/

/*--------------------全体の設定--------------------*/

* {
    /*paddingとborderを幅と高さに含める*/
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /*単語の途中でも必ず改行される*/
    word-break: break-all;
    /*フォーム周辺のデザインをリセット*/
    -webkit-appearance: none;
    -moz-appearance: none;
}

html {}

body {
    font-family: 'Lato', "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS P Gothic", Verdana, Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #333333;
    letter-spacing: 0.05em;
    text-align: left;
    background: white;
    border-left: solid 15px #ff6100;
    /*モバイル端末でのテキストサイズの自動調整対策*/
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/*--------------------主要タグの設定--------------------*/

/*フロート解除*/
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

/*リンク*/
a {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    /*アニメーション*/
}

a:hover {
    color: #000000;
    background: #ffe981;
}

/*画像*/
img {
    /*フルードイメージ（親要素の幅に応じて縦横比を保持したまま自動的に画像の拡大縮小をする）*/
    max-width: 100%;
    height: auto;
    /*ディセンダー対策（画像の下の隙間を無くす）*/
    vertical-align: bottom;
}

/*画像リンク用*/
.imglink {
    /*リンクに背景色を指定した時に、画像には背景色を設定させたくない場合の設定*/
    border: 0 !important;
    background: transparent !important;
}

.imglink:hover {
    /*リンクホバーに背景色を指定した時に、画像には背景色を設定させたくない場合の設定*/
    background: transparent !important;
}

/*段落*/
div {
    margin-top: 10px;}

p {}

.more {
    /*もっと読むボタン*/
}

/*newマーク*/
.new::after {
    content: "new";
    color: #ff6100;
    margin-left: 0.5em;
}

/*ulリスト共通*/
ul {
    /*リストマークを非表示*/
    list-style-type: none;
    /*リストマークを内側に表示*/
    list-style-position: inside;
}

/*ulリストタイプ1（横並びリスト）*/
.ultype1 {}

.ultype1 li {
    display: inline;
    margin-right: 0.5em;
}

.ultype1 li:last-child {
    margin-right: 0;
}

/*dlリストタイプ1（項目と説明のリスト）*/
.dltype1 {}

.dltype1 dt {
    float: left;
}

.dltype1 dt::after {
    content: "-";
    margin: 0 0.5em;
}

.dltype1 dd {
    color: #777777;}

.dltype1 dd span {
    /*更新履歴で使用 カテゴリ名をspanで囲う*/
    margin-right: 0.8em;
}

/*dlリストタイプ2*/
.dltype2 {}

.dltype2 dt {
    float: left;
    margin-right: 20px;
}

.dltype2 dd {
    color: #777777;}
}


/*ページトップボタン*/
.pagetop {
    text-align: left;
    margin-top: 30px;
}

.pagetop a {
    text-decoration: none;
}

/*--------------------テキスト関連の設定--------------------*/
/*フォントの種類 太さ*/
h1 {}

h2 {}

h3 {
    font-weight: normal;
}

span {
    font-size: 0.85em;
}

/*テキスト 行の高さ*/
h1,
h2,
h3,
nav,
.pagetop {
    line-height: 1;
}

/*テキスト 文字間隔*/
h1 {}

h2 {}

h3 {}

nav {}

.pagetop {}

/*--------------------フォームの幅と装飾--------------------*/
form {
    padding: 0;
    margin: 0 auto;
    line-height: 160%;
}

textarea,input[type=text],input[type=reset],input[type=submit],input[type=button],button,select {
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic ProN', 'Osaka', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic',  sans-serif;
    margin-top: 10px;
    padding: 3px 3px;
    clear: both;
    display: inline;
    outline: none;
    font-size: 1em; /* 文字の大きさ */
    background: #fff; /* フォーム背景色 */
    color: #ff6100; /* フォーム文字色 */
    border: 1px solid #ddd; /* 枠の色 */
    border-radius: 3px; /* フォーム角の丸み */
}

textarea,input[type=text],input[type=reset],input[type=submit],input[type=button],button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input[type=reset],input[type=submit],input[type=button],button,select {
    cursor: pointer;
}

textarea {
    width: 50%;
    height: 100px;
}

input[type=text] {
    width: 15%;
}

.submit {
    display: inline-block;
    font-size: 0.85em;
}

/*--------------------構造関連の設定--------------------*/
/*ボディ*/
#all {}

/*コンテナ*/
.container1 {
    padding: 40px 30px 30px;
}

.container2 {
    width: 100%;
    max-width: 700px;
}

/*ヘッダー*/
header {
    height: 200vh;}

h1 {
    font-size: 18px;
}

h1 a {
    text-decoration: none;
}

/*ナビ*/
nav {
    margin-top: 30px
}

nav ul {}

nav ul li {
    display: inline;
    margin-right: 0.8em;
}

nav ul li:last-child {
    margin-right: 0;
}

/*メイン*/
main {
    margin: 20px 0 30px;
}

/*セクション1*/
.sectiontype1 {
    margin-top: 50px;
    /*ページ内リンクの位置調整*/
    padding-top: 30px;
}

.sectiontype1:first-child {
    margin-top: 0;
}

h2 {
    margin-bottom: 1em;
}

/*セクション2*/
.sectiontype2 {
    margin-top: 50px;
}

h3 {
    margin-bottom: 0.75em;
    /*見出し左側のラインデザイン*/
    position: relative;
    display: inline-block;
    padding-left: 30px;
}

h3:before {
    /*見出し左側のラインデザイン*/
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: #333333;
}

h3:before {
    /*見出し左側のラインデザイン*/
    left: 0;
}

/*セクション内のタグ間の設定（セクション直下の階層のタグのみ対象）*/
section > p,
section > ul,
section > dl {
    margin-top: 0.5em;
}

h2 + p,
h2 + ul,
h2 + dl,
h3 + p,
h3 + ul,
h3 + dl {
    /*見出しに隣接したタグの上マージンをリセット*/
    margin-top: 0;
}

/*フッター*/
footer {
    font-size: 10px;}

footer ul {}

footer ul li {
    display: inline;
    margin-right: 0.8em;
}

footer ul li:last-child {
    margin-right: 0;
}

footer ul li span {
    margin-right: 0.5em;
}

/*------------画面サイズ（横幅）768px以下用------------*/

@media screen and (max-width:768px) {
    body {
        border-left: solid 10px #ff6100;
    }

    .container1 {
        padding: 40px 20px 30px;
    }

    .container2 {
        max-width: none;
    }

}

/*ベンダープレフィックス設定済*/
/*エラーチェック済*/