@charset "UTF-8";
@import url("html5reset-1.6.1.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+Pro&display=swap');

/*--------------------テンプレート情報--------------------*/
/*template　Maison de R*/
/*url　https://maisonder.web.fc2.com/*/
/*title　SARAH BLANCHE*/
/*code　CSS3*/

/*--------------------ライセンス--------------------*/

/*HTML5 Reset Stylesheet
html5doctor.com Reset Stylesheet v1.6.1
License : CC0 Public Domain Dedication, MIT License
Author : Richard Clark
http://html5doctor.com/html-5-reset-stylesheet/
https://creativecommons.org/publicdomain/zero/1.0/
https://opensource.org/licenses/MIT
*/

/*
jQuery v3.6.1
License : MIT License
https://jquery.com/
https://jquery.org/license/
https://www.tldrlegal.com/l/mit
*/

/*
Smooth scroll
TechAcademyマガジン
https://techacademy.jp/magazine/9532
*/

/*
hamburger menu
Knoweb 世界一わかりやすいWeb制作
https://knoweb.net/html-css/css/responsive-hamburgermenu/
*/

/*
Google Fonts
"Noto Serif Japanese"
Designer : Google
License : SIL Open Font License
https://fonts.google.com/
https://scripts.sil.org/OFL
"Source Serif Pro"
Designer : Frank Grießhammer
License : SIL Open Font License
https://fonts.google.com/
https://scripts.sil.org/OFL
*/

/*
Font Awesome(Font)
License : SIL Open Font License 1.1
https://fontawesome.com/v4.7.0/
http://scripts.sil.org/OFL
Font Awesome(Code)
License : MIT license
https://fontawesome.com/v4.7.0/
http://opensource.org/licenses/mit-license.php
*/

/*--------------------PCファースト/すべての画面サイズでベースとなるCSS--------------------*/

/*--------------------全体の設定--------------------*/

* {
    /*paddingとborderを幅と高さに含める*/
    box-sizing: border-box;
    /*単語の途中でも必ず改行される*/
    /*word-break: break-all;*/
    /*フォーム周辺のデザインをリセット*/
    -webkit-appearance: none;
    -moz-appearance: none;
}

html {}

body {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    line-height: 2;
    color: #333333;
    letter-spacing: 0.05em;
    text-align: left;
    background: #f4f4f4;
    /*モバイル端末でのテキストサイズの自動調整対策*/
    -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 {
    color: #333333;
    transition: 0.2s;
    /*アニメーション*/
}

a:hover {
    color: #6a6a6a;
}

/*画像*/
img {
    /*フルードイメージ（親要素の幅に応じて縦横比を保持したまま自動的に画像の拡大縮小をする）*/
    max-width: 100%;
    height: auto;
    /*ディセンダー対策（画像の下の隙間を無くす）*/
    vertical-align: bottom;
}

a img {
    /*画像リンクの枠線を消す*/
    border: 0;
}

/*段落*/
p {}

.more {
    /*もっと読むボタン*/
}

/*newマーク*/
.new::after {
    content: "NEW";
    margin-left: 0.5em;
    color: #8e8e8e;
    border: 1px solid #8e8e8e;
    padding: 0 5px;
}

/*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 {}

.dltype1 dd span {
    /*更新履歴で使用 カテゴリ名をspanで囲う*/
    margin-right: 0.8em;
}

/*--------------------テキスト関連の設定--------------------*/
/*フォントの種類 太さ*/
h1 {
    font-weight: normal;
    font-family: 'Source Serif Pro', serif;
}

h2,
h3 {
    font-weight: normal;
    font-family: 'Source Serif Pro', serif;
}

.sub,
nav {
    font-family: 'Source Serif Pro', serif;
}

/*テキスト 行の高さ*/
h1,
h2,
h3,
nav,
nav ul li,
.sub {
    line-height: 1;
}

.new::after {
    line-height: 1;
}

/*テキスト 文字間隔*/
h1 {
    letter-spacing: 0.2em;
}

h1 span {
    letter-spacing: 0;
}

.sub {
    letter-spacing: 0.1em;
}

h2,
h3,
nav,
nav ul li {
    letter-spacing: 0.1em;
}

/*--------------------構造関連の設定--------------------*/

/*ボディ*/
#all {
    width: 100%;
}

/*　ハンバーガーボタン　*/
.hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 13px;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #6a6a6a;
    transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 10px;
}

.hamburger span:nth-child(2) {
    top: 20px;
}

.hamburger span:nth-child(3) {
    top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
    top: 16px;
    left: 6px;
    transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    top: 16px;
    transform: rotate(45deg);
}

/*ハンバーガーメニュー*/
nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    color: #333333;
    background: white;
    text-align: center;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
    height: 100%;
    padding: 60px 50px;
}

nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    max-width: 300px;
    font-size: 16px;
    border: 1px solid #333333;
    margin: 20px auto 0;
    height: 50px;
    line-height: 50px;
}

nav.globalMenuSp ul li:first-child {
    margin-top: 0;
}

nav.globalMenuSp ul li:hover {
    background: #f4f4f4;
}

nav.globalMenuSp ul li a:hover {
    color: #333333;
}

nav.globalMenuSp ul li a {
    display: block;
    color: #333333;
    text-decoration: none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateX(0%);
}


/*コンテナ*/
.container1,
.container2 {
    width: 100%;
}

/*メインビジュアル*/
.container1::after {
    content: "";
    display: block;
    width: 100%;
    height: 300px;
    background: url(bg01.jpg) repeat;
}

/*インナーボックス*/
.innerbox1 {
    width: 100%;
    padding: 50px 70px 50px;
}

.innerbox2 {
    width: 100%;
    padding: 0 70px 50px;
}

/*レイアウト一括指定*/
header,
main,
footer {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/*ヘッダー*/
header {
    text-align: center;
    /*inline-blockの隙間対策*/
    font-size: 0;
}

header a {
    text-decoration: none;
    /*リンク範囲調整*/
    display: inline-block;
}

header a:hover {}

.titlebox {}

h1 {
    font-size: 26px;
}

.sub {
    display: block;
    font-size: 14px;
    margin-top: 25px;
}

/*メイン*/
main {}

/*ページ内リンク位置対策*/
.layout {
    padding-top: 50px;
}

.sectiontype1,
footer {
    padding: 30px;
    background: white;
    /*ボックスの内側のライン*/
    box-shadow: 0px 0px 0px 2px #f4f4f4 inset;
    border: 8px solid white;
}

/*セクション1*/
.sectiontype1 {}

h2 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    text-align: center;
}

h2 span {
    display: inline-block;
    border-bottom: 2px solid #bfbfbf;
    padding: 5px 0 10px;
}

/*セクション2*/
.sectiontype2 {
    margin-top: 30px;
}

.sectiontype2:first-child {
    margin-top: 0;
}

h3 {
    font-size: 16px;
    margin-bottom: 20px;
    display: inline-block;
    background: #bfbfbf;
    color: white;
    padding: 0px 10px;
    line-height: 30px;
    height: 30px;
}

/*更新履歴ボックス*/
.update {
    overflow: auto;
    height: 100px;
    padding: 5px 8px;
    outline: 1px solid #bfbfbf;
    /*スクロールバーを非表示 Firefox用設定*/
    scrollbar-width: none;
    /*スクロールバーを非表示 IE用設定*/
    -ms-overflow-style: none;
}

/*スクロールバーを非表示 Chrome・Safari・Edge用設定*/
.update::-webkit-scrollbar {
    display: none;
}

/*セクション内のタグ間の設定（セクション直下の階層のタグのみ対象）*/
section>p,
section>ul,
section>dl {
    margin-top: 1em;
}

h2+p,
h2+ul,
h2+dl,
h3+p,
h3+ul,
h3+dl {
    /*見出しに隣接したタグの上マージンをリセット*/
    margin-top: 0;
}

/*フッター*/
footer {
    margin-top: 50px !important;
}

footer ul {}

footer ul li {
    display: inline-block;
    margin-right: 0.8em;
}

footer ul li:last-child {
    margin-right: 0;
}

footer ul li span {
    margin-right: 0.5em;
}


/*------------画面サイズ（横幅）800px以下用------------*/

@media screen and (max-width:800px) {

    .innerbox1 {
        padding: 70px 27px 50px;
    }

    .innerbox2 {
        padding: 0 0 50px;
    }

    header,
    main,
    footer {
        max-width: none;
    }

    .sectiontype1,
    footer {
        padding: 30px 20px;
        box-shadow: 0px 0px 0px 2px #f4f4f4 inset;
        border: 5px solid white;
    }

}

/*ベンダープレフィックス設定済*/
/*エラーチェック済*/