@charset "utf-8";
/* トップタイトル
-------------------- */

#PageTitle {
    height: 180px;
    /*margin-top: 225px;*/
    position: relative;
    overflow: hidden;
}

#PageTitle.margin {
    margin-top: 60px;
}

/*#PageTitle:before {
    position: absolute;
    width: 100%;
    min-width: 100%;
    height: 100%;
    min-height: 100%;
    content: "";
    clear: both;
    display: block;
    background: url(../img/common/dot.png) center center repeat;
    -webkit-background-size: 3px 3px;
    -moz-background-size: 3px 3px;
    -ms-background-size: 3px 3px;
    -o-background-size: 3px 3px;
    background-size: 3px 3px;
    top: 0;
    z-index: 0;
}*/
.body-wrap {
    position: absolute;
    width: 100%;
}

.EyecatchTitle {
    /*background: rgba(255, 255, 255, 0.5);
    padding: 5px;*/
}

.eye-catch {
    position: absolute;
    width: 100%;
    background-image: url(../img/common/eye-catch.svg);
    background-size: auto;
    background-attachment: fixed;
    /* 2017.08.21アイキャッチ設定追加 yfujii@ailes */
    background-position: 50% 0;
    /* 2017.08.21アイキャッチ設定追加 yfujii@ailes */
    background-repeat: no-repeat;
    /*background-color: #F4F4F4;*/
    /* 2017.10.19 背景・枠追加 yfujii@ailes*/
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#PageTitle h1,
#PageTitle aside p {
    font-size: 34px;
    font-size: 3.4rem;
    text-shadow: 1px 1px 0 #999999;
    /*font-weight: bold;*/
    padding-top: 65px;
    line-height: 1.3;
    /* 2017.08.04追加 yfujii@ailes */
    /*z-index: 3;*/
}

#PageTitle * {
    text-align: center;
}

/* レイアウト
-------------------- */

.content {
    width: 1000px;
    margin: 0 auto 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#Page {
    float: left;
    width: 760px;
    background-color: #ffffff;
    padding: 20px;
    order: 0;
    box-sizing: border-box
}

#Side {
    float: right;
    width: 220px;
    padding: 0;
    background: url(../img/common/bg_check.png) repeat;
    order: 1;
}


@media screen and (max-width: 640px) {
    .content {
        width: auto;
        margin: 0 10px;
    }

    #Page {
        float: none;
        width: 100%;
        margin-bottom: 30px;
    }

    #Side {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

/* 汎用スタイル
-------------------- */
/* 見出し */
/* Page
-------------------- */
#Page h1 {
    font-size: 30px;
    text-shadow: 0 0 5px white;
    font-size: 3.0rem;
    line-height: 1.3;
    margin: 0 0 30px;
    padding: 0 0 5px;
    position: relative;
}

#Page h1:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background-image: -webkit-repeating-linear-gradient(45deg, #bbbbbb, #bbbbbb 3px, #dddddd 3px, #dddddd 6px);
    background-image: repeating-linear-gradient(45deg, #bbbbbb, #bbbbbb 3px, #dddddd 3px, #dddddd 6px);
}

#Page h2 {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.3;
    border-bottom: solid 1px #999999;
    margin: 0 0 25px;
    padding: 0 0 5px;
    position: relative;
}

#Page h2:after {
    content: " ";
    display: block;
    position: absolute;
    width: 25%;
    border-bottom: solid 3px #666666;
    bottom: -3px;
}

#Page h3 {
    font-size: 24px;
    font-size: 2.4rem;
    margin: 0 0 25px;
    padding: 0 0 0 30px;
    border-bottom: 1px dotted #999;
    position: relative;
}

#Page h3:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    /*border-radius: 50%;*/
    box-sizing: border-box;
    border: 5px solid #ccc;
    left: 0;
    top: 10px;
}

#Page h4 {
    font-size: 20px;
    font-size: 2.0rem;
    margin: 0 0 10px;
    padding: .75em 1em .75em 1.5em;
    position: relative;
}

#Page h4:after {
    position: absolute;
    top: .7em;
    left: .5em;
    content: '';
    width: 6px;
    height: -webkit-calc(80% - 1em);
    height: calc(80% - 1em);
    background-color: #999;
    border-radius: 4px;
}

#Page h5 {
    /* 2017.10.20 透明レイヤー追加 yfujii@ailes*/
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0 0 25px;
    padding: .75em .5em .75em .5em;
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 186, 0.6) 0%, rgba(255, 255, 186, 0.6) 100%);
    background-image: -moz-linear-gradient(top, rgba(255, 255, 186, 0.6) 0%, rgba(255, 255, 186, 0.6) 100%);
    background-image: -o-linear-gradient(top, rgba(255, 255, 186, 0.6) 0%, rgba(255, 255, 186, 0.6) 100%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 186, 0.6) 0%, rgba(255, 255, 186, 0.6) 100%);
    background-color: #E1E1E1;
    position: relative;
}

/* 文章 */
#Page p {
    margin: 0 0 30px;
    font-size: 16px;
    font-size: 1.6rem;
}

/* リスト */
#Page ul,
#Page ol {
    margin: 0 0 30px;
}

#Page li {
    /* ul ol*/
    font-size: 16px;
    font-size: 1.6rem;
    margin: 5px 0px 10px 0px;
    padding: 0 0 0 20px;
    position: relative;
}

#Page ul li {
    list-style-type: none;
    list-style-image: none;
}

#Page ul li:before {
    content: "\f138";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    color: #aaa;
    display: block;
    position: absolute;
    font-size: 16px;
    font-size: 1.6rem;
    top: 0;
    left: 0;
}

#Page ol {
    counter-reset: item;
    list-style-type: none;
}

#Page ol li {
    display: block;
    padding: 5px 0px 0px 20px;
    margin-left: 0px;
}

#Page ol > li:before {
    counter-increment: item;
    content: counter(item) ".";
    position: absolute;
    display: block;
    text-align: center;
    font-style: italic;
    left: 0px;
    top: -5px;
    font-size: 24px;
    font-size: 2.4rem;
    color: #999;
    font-family: 'Goudy Bookletter 1911', Georgia, serif;
}

#Page ol ol > li:before {
    top: -2px;
    font-size: 20px;
    font-size: 2.0rem;
}

#Page table {
    font-size: 16px;
    font-size: 1.6rem;
    margin: 0 auto 30px;
}

#Page .contacts td:nth-child(3),
#Page .contacts td:nth-child(4){
    /*background:#f1f1f1;*/
    white-space: nowrap;
}

#Recipe img {
    border: 1px solid #ccc;
    box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 0.1);
}

/* float解除 */
#Page h1,#Page h2,#Page h3,#Page h4,#Page h5,#Page h6,#Page p,#Page ul,#Page ol,#Page li,#Page table {
    clear: both;
}

/* 画像の余白 */
#Page img {
    display: block;
    padding: 0;
    /*border: solid #ccc 1px;*/
    margin: 5px auto;
}

/* 画像の罫線 */
#Page * .Frame {
    border: solid #ccc 1px;
    padding: 5px;
}

/* 画像の余白リセット */
#Page * .nonFrame {
    border: none;
    padding: 0;
}

/* Hypertext */

#Page a {
    text-decoration: underline;
}


/* Breadcrumbs */

#Breadcrumbs {
    width: 1000px;
    margin: 30px auto 10px;
    padding: 6px 0 2px;
    font-size: 11px;
    font-size: 1.1rem;
}

#ObservanceIndex #Breadcrumbs.margin {
    margin-top: 30px;
}

#Breadcrumbs a {
    color: #999;
}

@media screen and (max-width: 640px) {
    #Breadcrumbs {
        width: auto;
        margin: 10px;
    }

    #Breadcrumbs.margin {
        margin-top: 0;
    }
}


/* table tag */

.subpage table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #b7b7b7;
}

.subpage th, .subpage td {
    border: 1px dotted #b7b7b7;
}

.subpage th {
    padding: 10px;
    background: #ededed;
    border-bottom: 1px solid #ccc;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.subpage td {
    padding: 10px;
    background: #fff;
    border-bottom: 1px solid #ccc;
    text-align: left;
    text-align: center;
}

.subpage tr:last-child th, .subpage tr:last-child td {
    border-bottom: none;
}

@media screen and (max-width: 640px) {
    #Page table{
        width:100% !important;
    }
    .scroll{
        overflow: auto;
        white-space: nowrap;
    }
    .scroll::-webkit-scrollbar {
        height: 5px;
    }
    .scroll::-webkit-scrollbar-track {
        background: #F1F1F1;
    }
    .scroll::-webkit-scrollbar-thumb {
        background: #BCBCBC;
    }
}
/* ContentsNavi */

#ContentsNavi {
    margin: 30px 0 50px;
    text-align: center;
}

#ContentsNavi a {
    color: #333;
}

/* Side
-------------------- */

.widget {
    /*margin-bottom: 30px;*/
    margin-bottom: 0;
}

.widget img {
    max-width: 100%;
}

.widget h2 {
    /*margin-bottom: 6px;*/
    padding: 2px 10px;
    color: #fff;
    display: block;
    background: #666666;
}

.widget form {
    text-align: right;
}

/* LocalNavi */

.widget-local-navi {
    display: flex;
    flex-wrap: wrap;
    flex-direction : column
}

.widget-local-navi ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction : column
}

.widget-local-navi li {
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 500;
}

.widget-local-navi li a {
    display: block;
    width: 100%;
    margin-bottom: 1px;
    padding: 6px 10px 6px 25px;
    background: #fff url(../img/common/icon/icon_arrow2.png) 15px 15px no-repeat;
    color: #333;
    box-sizing: border-box;
}

.widget-local-navi li a:hover {
    background: #ededed url(../img/common/icon/icon_arrow2.png) 15px 15px no-repeat;
    color: #000;
}

.widget-local-navi li.current a {
    background: #aaa url(../img/common/icon/icon_arrow3.png) 15px 15px no-repeat;
    color: #fff;
}

.widget-local-navi li.first a {
    padding: 6px 10px;
    color: #fff;
}


@media screen and (max-width: 640px) {
    .widget-local-navi {
        width: auto;
    }
}


/* blog theme
-------------------- */

#TitleImage {
    width: 1000px;
    margin: 0 auto 20px;
}

.blog {}

.blog h2 span.archives {
    color: #999;
    font-size: 22px;
    font-size: 2.2rem;
}

.blog h3 a {
    color: #333;
    text-decoration: none !important;
}

.blog h3 a:hover {
    color: #999;
}

.blog .meta {
    margin: 20px 0 30px;
    padding: 5px 12px;
    background: #ededed;
    color: #999;
    font-size: 12px;
    font-size: 1.2rem;
}

.blog #ContentsNavi {
    text-align: center;
}

.blog #ContentsNavi a {
    color: #333;
}

@media screen and (max-width: 640px) {
    #TitleImage {
        width: auto;
    }
}





/* blog side calendar */

.widget-blog-calendar table {
    width: 240px;
    background: #fff;
    border-collapse: collapse;
    box-sizing: border-box;
}

.widget-blog-calendar th {
    border: 1px solid #ededed;
}

.widget-blog-calendar td {
    text-align: center;
    border: 1px solid #ededed;
}

.widget-blog-calendar td center {
    padding: 6px 10px;
    color: #fff;
}

.widget-blog-calendar td a {
    text-decoration: underline;
}

@media screen and (max-width: 640px) {
    .widget-blog-calendar table {
        width: 100%;
    }
}

/* blog side list */

.blog-widget h2 {
    margin-bottom: 1px;
}

.blog-widget li a {
    display: block;
    margin-bottom: 1px;
    padding: 6px 10px 6px 25px;
    background: #fff url(../img/common/icon/icon_arrow2.png) 15px 15px no-repeat;
    color: #333;
}

.blog-widget li a:hover {
    background: #ededed url(../img/common/icon/icon_arrow2.png) 15px 15px no-repeat;
    color: #000;
}


/* blog comment */

#BlogComment {}

#BlogCommentList {
    margin-bottom: 30px;
}

/* pagination */

.pagination {
    margin: 60px 0;
    text-align: center;
    font-size: 12px;
    font-size: 1.2rem;
}

.pagination span.disabled,
.pagination span.prev a,
.pagination span.next a {
    margin: 0 20px;
    color: #333;
}

.pagination span.current,
.pagination span.number a {
    margin: 0 4px;
    padding: 7px 10px;
    background: #dedede;
    color: #fff;
    text-decoration: none !important;
}

.pagination span.current,
.pagination span.number a:hover {
    background: #666;
}

.pagination a:active {
    background: #666;
}





/* ContactForm
-------------------- */

.submit {
    margin: 30px 0;
    text-align: center;
}

.submit input.button {
    font-size: xx-large;
    cursor: pointer;
}

.auth-captcha {
    margin: 30px 0;
    text-align: center;
}

.mail-description {
    margin-bottom: 10px;
}

#flashMessage {
    margin-bottom: 10px;
}

.form-contact table {
    border: none;
    border-top: 1px dotted #ccc;
}

.form-contact th {
    background: #fff;
    text-align: left;
}

@media screen and (max-width: 640px) {
    .form-contact table {
        box-sizing: border-box;
    }

    .form-contact tr {
        display: block;
        margin-bottom: 1.5em;
    }

    .form-contact th {
        padding: 5px 10px;
        background: #999;
        color: #fff;
    }

    .form-contact th,
    .form-contact td {
        display: list-item;
        width: auto;
        border: none;
    }

    .form-contact td textarea {
        width: 100%;
    }
}


/* ContactForm Error
-------------------- */

/* Service
-------------------- */

/* service1 */

/* About
-------------------- */

/* Works
-------------------- */

.work-body {
    margin-bottom: 20px;
}

.work-body .left {
    width: 300px;
}

.work-body .right {
    width: 350px;
}

.work-body .more {
    text-align: right;
}

.template-works .left {
    width: 300px;
}

.template-works .left img {
    margin-bottom: 15px;
}

.template-works .right {
    width: 350px;
}

.work-body .eye-catch img.lastChild {
    display: none;
}

.work-body .eye-catch img.firstChild {
    display: block;
}

@media screen and (max-width: 640px) {
    .work-body .left {
        width: auto;
        float: none;
        margin-bottom: 10px;
    }

    .work-body .right {
        width: auto;
        float: none;
    }

}


/* Works
-------------------- */

#SitemapBox .sitemap-left {
    float: left;
    width: 320px;
}

#SitemapBox .sitemap-right {
    float: right;
    width: 320px;
}

/* indexページ 2017.08.04追加 yfujii@ailes
-------------------- */
.index-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#Page ul.index-layout li {
    list-style-type: none;
    margin: 1em 0.5em;
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
    background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
    background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
    background-color: #aaa;
    border-bottom: solid 6px #ccc;
    border-radius: 9px;
    -webkit-flex-grow: 1;
    /* Safari */
    font-size: 20px;
    font-size: 2.0rem;
    padding: 0;
    width: 46%;
    box-sizing: border-box;
}

@media screen and (max-width: 640px) {
    .index-layout {
        flex-direction : column
    }
    #Page ul.index-layout li {
        width: 100%;
        margin: 0.5em;
    }
}

#Page .index-layout li:before,
#Page .index-layout li:after {
    content: none;
}

#Page .index-layout li a {
    text-decoration: none;
    display: block;
    padding: 2em 1em;
    font-weight: bold;
}



/* もくじ
-------------------- */

#toc {
    position: relative;
    margin: 0 auto 40px auto;
    padding: 1em 2em 1em;
    min-width: 90%;
    border: 1px solid #eee;
}

#toc:before {
    content: "もくじ";
    margin: 20px;
    font-size: 20px;
    font-size: 2.0rem;
    font-weight: 700;
}

#toc li {
    display: block;
    border-bottom: 1px dotted #ddd;
}

#toc li a {
    display: block
}

/* Q&A
-------------------- */
#Page .qa {
    border-style: solid;
    border-color: #cccccc;
}
#Page *.qa {
    border-width: 0 1px 1px 1px;
    padding: 10px 10px 10px 40px;
    font-weight: bold;
    color: #666;
}
#Page *.qa:before {
    content: "A.";
    font-family: 'Goudy Bookletter 1911', Georgia, serif;
    font-size: 2rem;
    font-weight: bold;
    color: #1c44c6;
    margin-right: 0.8rem;
    margin-left: -30px;
}
#Page h5.qa {
    color: #de2222;
    border-width: 1px;
    margin: 0;
    padding: 10px 10px 10px 40px;
    background: #ffebeb;
}
#Page h5.qa:before {
    content: "Q.";
    font-family: 'Goudy Bookletter 1911', Georgia, serif;
    color: #de2222;
    font-size: 2rem;
    font-weight: bold;
    margin-right: 0.8rem;
    margin-left: -30px;
}