@charset "UTF-8";

/* メインカラー */
/* #0099dd */

/* ベースカラー */
/* #ff6a8f */

/* ▲サイトごとに一括変換 */

/*----------------------------------------------------------*/
/* カスタマイズ用CSS
/*----------------------------------------------------------*/

*{
    margin: 0;
    padding: o;
}
html{
	box-sizing:border-box;
	line-height:1;
	font-size: 62.5%; /*  50 56.25 62.5 68.75 75*/
    background: #fff;
}
html {
    visibility: hidden;
}
html.wf-active {
    visibility: visible;
}
body {
    font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: 400;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt" 1;
    overflow-x: hidden;
    counter-reset: count;
    animation: fadeIn 2.5s ease 0s 1 normal;
    letter-spacing: .05em;
    color: #383838;
}

#all_wrap { position: relative; }
#all_wrap .content a { color: #000; font-weight: 400; transition: ease 0.2s; }
#all_wrap .content a:hover { color: #000; font-weight: 400; text-decoration: underline; transition: ease 0.2s; }
#all_wrap .single_content img { width: 100%; height: auto; padding: 0; margin: 0 auto; }

#all_wrap .content a.wp-block-button__link {
    display: block;
    width: 50%;
    color: #fff;
    transition: ease 0.2s;
    position: relative;
    padding: 10px 20px;
    margin: 0 auto;
}
#all_wrap .content a.wp-block-button__link:hover { text-decoration: none; opacity: 0.8; transition: ease 0.2s; }
#all_wrap .content a.wp-block-button__link::after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background: none;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0,-50%) rotate(-45deg);
    -webkit-transform: translate(0,-50%) rotate(-45deg);
    transition: ease 0.2s;
}
#all_wrap .content a.wp-block-button__link:hover::after {
    right: 18px;
    transition: ease 0.2s;
}

/* スクロールの幅の設定 */
html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* スクロールの背景の設定 */
html::-webkit-scrollbar-track {
  border-radius: 0;
  box-shadow: 0 0 4px #fff inset;
}

/* スクロールのつまみ部分の設定 */
html::-webkit-scrollbar-thumb {
  border-radius: 0;
  background: #c8c8c8;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

#all_wrap .single_content a { color: #000; font-weight: 400; transition: ease 0.2s; }
#all_wrap .single_content a:hover { color: ##000; font-weight: 400; text-decoration: underline; transition: ease 0.2s; }


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .content a.wp-block-button__link {
        display: block;
        width: 90%;
        color: #fff;
        transition: ease 0.2s;
        position: relative;
        padding: 10px 50px;
        margin: 0 auto;
    }
}

/*ページトップ*/
#to_top {
    width: 50px;
    height: auto;
    display: block;
    padding: 0;
    margin: 0;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}
#to_top > img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #to_top {
        width: 30px;
        height: auto;
        display: block;
        padding: 0;
        margin: 0;
        position: fixed;
        bottom: 10px;
        right: 10px;
        z-index: 999;
    }
}

/************************************************************/
/*　アニメーション
/************************************************************/

/* その場でフェードイン */
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
.fadeshow {
    animation: fadeIn 2s cubic-bezier(0.42, 0, 1, 1);
    -webkit-animation: fadeIn 2s cubic-bezier(0.42, 0, 1, 1);
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/* 左からスラインドイン */
@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
    transition: all 0.5s ease;
}

/* 右からスラインドイン */
@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
    transition: all 0.5s ease;
}

/* 下からスラインドイン */
@-webkit-keyframes slideInBtm {
    from {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes slideInBtm {
    from {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
.slideInBtm {
    -webkit-animation-name: slideInBtm;
    animation-name: slideInBtm;
    transition: all 0.5s ease;
}

/* 中心からズームイン */
@-webkit-keyframes slideInZoom {
    from {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes slideInZoom {
    from {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
.slideInZoom {
    -webkit-animation-name: slideInZoom;
    animation-name: slideInZoom;
    transition: all 0.5s ease;
}


/************************************************************/
/*　共通
/************************************************************/

/*本文*/
#all_wrap .content {
    font-size: 15px;
    line-height: 2;
    padding: 0;
    margin: 0 auto 100px;
}
.secBox {
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto 100px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*本文*/
    #all_wrap .content {
        font-size: 15px;
        line-height: 2;
        padding: 0;
        margin: 0 auto 50px;
    }
    .secBox {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto 50px;
    }
    .l-wrapper-full .secBox {
        width: calc(100% - 60px);
        max-width:  calc(100% - 60px);
        padding: 0;
        margin: 0 auto 50px;
    }
}

/*フレックス2列*/
.flexBox {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 80px;
}
.flexBox > div {
    width: 48%;
    padding: 0;
    margin: 0 0 20px;
}

/*フレックス3列*/
.flexBox3 {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 80px;
    position: relative;
}
.flexBox3::after {
    content: '';
    display: block;
    width: 23%;
}
.flexBox3 > div {
    width: 31%;
    padding: 0;
    margin: 0 0 20px;
}
.flexBox3 > div > img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

/*フレックス4列*/
.flexBox4 {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 80px;
    position: relative;
}
.flexBox4::before {
    order: 1;
}
.flexBox4::before,
.flexBox4::after {
    content: '';
    display: block;
    width: 23%;
}
.flexBox4 > div {
    width: 23%;
    padding: 0;
    margin: 0 0 20px;
}
.flexBox4 > div > img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*フレックス2列*/
    .flexBox {
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        align-content: stretch;
        align-items: stretch;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .flexBox > div {
        width: 100%;
        padding: 0;
        margin: 0 auto 20px;
    }

    /*フレックス3列*/
    .flexBox3 {
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        align-content: stretch;
        align-items: stretch;
        flex-wrap: wrap;
        margin-bottom: 20px;
        position: relative;
    }
    .flexBox3::after {
        content: '';
        display: block;
        width: 23%;
    }
    .flexBox3 > div {
        width: 31%;
        padding: 0;
        margin: 0 0 20px;
    }
    .flexBox3 > div > img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }

    /*フレックス4列*/
    .flexBox4 {
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        align-content: stretch;
        align-items: stretch;
        flex-wrap: wrap;
        margin-bottom: 20px;
        position: relative;
    }
    .flexBox4::before {
        order: 1;
    }
    .flexBox4::before,
    .flexBox4::after {
        content: '';
        display: none;
    }
    .flexBox4 > div {
        width: 48%;
        padding: 0;
        margin: 0 0 10px;
    }
    .flexBox4 > div > img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }
}

/************************************************************/
/*　コンテンツ整形
/************************************************************/
#all_wrap p {
    font-size: 15px;
    line-height: 2;
    font-weight: 400;
    font-feature-settings: "palt" 1;
    font-style: normal;
}
#all_wrap .content p {
    font-size: 15px;
    line-height: 2;
    padding: 0;
    margin: 0 auto 20px;
}
#all_wrap .content p {
    font-size: 15px;
    line-height: 2;
    padding: 0;
    margin: 0 auto 20px;
}
#all_wrap img.alignleft {
    margin-right: 30px;
    margin-bottom: 30px;
}
#all_wrap img.alignright {
    margin-left: 30px;
    margin-bottom: 30px;
}

/*カスタマイズ*/
#all_wrap .content div {
    margin-top: 0;
}
#all_wrap .content .wp-block-columns {
    margin-top: 0;
    align-content: flex-start;
    align-items: flex-start;
}
#all_wrap .content .wp-block-spacer {
    padding: 0;
    margin: 0;
}
#all_wrap .l-wrapper .postContents .content .wp-block-columns h3:first-of-type,
#all_wrap .l-wrapper .pageContents .content .wp-block-columns h3:first-of-type,
#all_wrap .l-wrapper .postContents .content .wp-block-columns h4:first-of-type,
#all_wrap .l-wrapper .pageContents .content .wp-block-columns h4:first-of-type,
#all_wrap .l-wrapper .postContents .content .wp-block-columns h5:first-of-type,
#all_wrap .l-wrapper .pageContents .content .wp-block-columns h5:first-of-type {
    margin-top: 0;
}
#all_wrap .l-wrapper .postContents .content p.toriatsukai,
#all_wrap .l-wrapper .pageContents .content p.toriatsukai {
    display: inline-block;
    background: #33BBED;
    color: #FFF;
    padding: 11px 35px 10px;
    border-radius: 40px;
}

/*投稿ページ　タグ下マージン*/
#all_wrap .l-wrapper .dateList {
    margin-bottom: 5px;
}

/*下マージン*/
#all_wrap .l-wrapper .pageContents .content .mb0,
#all_wrap .l-wrapper .postContents .content .mb0 { margin-bottom: 0px; }
#all_wrap .l-wrapper .pageContents .content .mb5,
#all_wrap .l-wrapper .postContents .content .mb5 { margin-bottom: 5px; }
#all_wrap .l-wrapper .pageContents .content .mb10,
#all_wrap .l-wrapper .postContents .content .mb10 { margin-bottom: 10px; }
#all_wrap .l-wrapper .pageContents .content .mb20,
#all_wrap .l-wrapper .postContents .content .mb20 { margin-bottom: 20px; }
#all_wrap .l-wrapper .pageContents .content .mb30,
#all_wrap .l-wrapper .postContents .content .mb30 { margin-bottom: 30px; }
#all_wrap .l-wrapper .pageContents .content .mb40,
#all_wrap .l-wrapper .postContents .content .mb40 { margin-bottom: 40px; }
#all_wrap .l-wrapper .pageContents .content .mb50,
#all_wrap .l-wrapper .postContents .content .mb50 { margin-bottom: 50px; }
#all_wrap .l-wrapper .pageContents .content .mb60,
#all_wrap .l-wrapper .postContents .content .mb60 { margin-bottom: 60px; }
#all_wrap .l-wrapper .pageContents .content .mb70,
#all_wrap .l-wrapper .postContents .content .mb70 { margin-bottom: 70px; }
#all_wrap .l-wrapper .pageContents .content .mb80,
#all_wrap .l-wrapper .postContents .content .mb80 { margin-bottom: 80px; }
#all_wrap .l-wrapper .pageContents .content .mb90,
#all_wrap .l-wrapper .postContents .content .mb90 { margin-bottom: 90px; }
#all_wrap .l-wrapper .pageContents .content .mb100,
#all_wrap .l-wrapper .postContents .content .mb100 { margin-bottom: 100px; }

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap p {
        font-size: 14px;
        line-height: 1.7em;
        font-weight: 400;
        font-feature-settings: "palt" 1;
        font-style: normal;
    }
    #all_wrap .l-wrapper .content p {
        font-size: 14px;
        line-height: 1.7em;
        padding: 0;
        margin-bottom: 10px;
    }
    #all_wrap .l-wrapper-full .content p {
        font-size: 14px;
        line-height: 1.7em;
        padding: 0;
        margin-bottom: 10px;
    }
    #all_wrap .l-wrapper .postContents .content p.toriatsukai,
    #all_wrap .l-wrapper .pageContents .content p.toriatsukai {
        display: inline-block;
        background: #33BBED;
        color: #FFF;
        padding: 11px 35px 10px;
        border-radius: 40px;
        text-align: center;
    }
    /*下マージン*/
    #all_wrap .l-wrapper .pageContents .content .mb0,
    #all_wrap .l-wrapper .postContents .content .mb0 { margin-bottom: 0px; }
    #all_wrap .l-wrapper .pageContents .content .mb5,
    #all_wrap .l-wrapper .postContents .content .mb5 { margin-bottom: 2px; }
    #all_wrap .l-wrapper .pageContents .content .mb10,
    #all_wrap .l-wrapper .postContents .content .mb10 { margin-bottom: 5px; }
    #all_wrap .l-wrapper .pageContents .content .mb20,
    #all_wrap .l-wrapper .postContents .content .mb20 { margin-bottom: 10px; }
    #all_wrap .l-wrapper .pageContents .content .mb30,
    #all_wrap .l-wrapper .postContents .content .mb30 { margin-bottom: 15px; }
    #all_wrap .l-wrapper .pageContents .content .mb40,
    #all_wrap .l-wrapper .postContents .content .mb40 { margin-bottom: 20px; }
    #all_wrap .l-wrapper .pageContents .content .mb50,
    #all_wrap .l-wrapper .postContents .content .mb50 { margin-bottom: 25px; }
    #all_wrap .l-wrapper .pageContents .content .mb60,
    #all_wrap .l-wrapper .postContents .content .mb60 { margin-bottom: 30px; }
    #all_wrap .l-wrapper .pageContents .content .mb70,
    #all_wrap .l-wrapper .postContents .content .mb70 { margin-bottom: 35px; }
    #all_wrap .l-wrapper .pageContents .content .mb80,
    #all_wrap .l-wrapper .postContents .content .mb80 { margin-bottom: 40px; }
    #all_wrap .l-wrapper .pageContents .content .mb90,
    #all_wrap .l-wrapper .postContents .content .mb90 { margin-bottom: 45px; }
    #all_wrap .l-wrapper .pageContents .content .mb100,
    #all_wrap .l-wrapper .postContents .content .mb100 { margin-bottom: 50px; }

}

/*ウィジェットパディング*/
#all_wrap .widget-main {
    padding: 0;
    margin: 0;
}

/*== スマホ・PC 非表示 ==*/
.pc_none { display: none; }
.sp_none { display: block; }
@media only screen and (max-width: 768px){
    .pc_none { display: block; }
    .sp_none { display: none; }
}

/*== フレックス ==*/
.flex {
    width: 100%;
    padding: 0;
    margin: 0 auto 20px;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: nowrap;
}
.flex > div {
    width: 48%;
    padding: 0;
    margin: 0;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .flex {
        width: 100%;
        padding: 0;
        margin: 0 auto 20px;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .flex > div {
        width: 100%;
        padding: 0;
        margin: 0 auto 10px;
    }
}

/*日付*/
.Date {
    display: block;
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    color: #555;
    padding: 0;
    margin: 0 auto 20px;
}


/************************************************************/
/*　JS
/************************************************************/

/*lightbox*/
.nivo-lightbox-effect-fade {
    visibility: hidden;
    opacity: 0;
}
.nivo-lightbox-overlay.nivo-lightbox-open {
    visibility: visible;
    opacity: 1;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
    opacity: 1;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
    background-size: 20px 20px;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
    width: 20px;
    height: 20px;
}


/************************************************************/
/*　構成
/************************************************************/
.l-main {
	width: calc(80% - 50px);
	margin-bottom: 0;
    z-index: 1;
}
#all_wrap .l-wrapper {
    width: 100%;
    max-width: 1100px;
    padding: 50px 0;
    margin: 0 auto;
}
.l-wrapper-full {
    position: relative;
    width: 100%;
    padding: 50px 0;
    margin: 0 auto;
}

#all_wrap .l-wrapper .l-main {
    width: 70%;
    max-width: 70%;
    padding: 0;
    margin: 0;
}
#all_wrap .l-wrapper-full .l-main {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.top_wrapper {
	width: calc(100% - 40px - 40px);
	padding: 0;
	margin: 0 auto;
	overflow: hidden;
}

.page {
    width: 100%;
}
.dividerBottom {
    margin-bottom: 0;
}
.pageContents .content,
.archiveContents .content {
    padding: 0;
    margin: 0 auto;
}
#all_wrap .l-wrapper-full .pageContents .content, #all_wrap .l-wrapper-full .archiveContents .content {
    margin: 0;
    padding: 0;
}
#all_wrap .l-wrapper-full .sitemap_content {
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto 100px;
}
 
.l-sidebar {
    width: 30%;
    min-width: 250px;
    padding: 0;
    margin: 0 0 100px;
    margin-left: 50px;
    z-index: 5;
    position: sticky;
    top: 50px;
    left: 0;
}
.l-main-wide    {width: calc(80% - 50px); margin-right:0;}
.l-main-wide1000{width:1000px;margin: auto;}
.l-main-wide900 {width:900px; margin: auto;}
.l-main-wide800 {width:800px; margin: auto;}
.l-main-wide700 {width:700px; margin: auto;}
.l-main-right   {order: 2;}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .l-wrapper .l-main {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
    }
    #all_wrap.main_page .l-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
    }
    #all_wrap.sub_page .l-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto 50px;
    }
    .l-wrapper-full .l-main {
        width: 100%;
        padding: 30px;
        margin: 0 auto;
    }
    
    #all_wrap .l-wrapper .l-main {
        width: 100%;
        padding: 30px;
        margin: 0 auto;
    }
    #all_wrap .l-wrapper-full .l-main {
        width: 100%;
        padding: 30px 0;
        margin: 0 auto;
    }

    .l-wrapper {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .l-wrapper-full {
        position:relative;
        width: 100%;
        margin: 0 auto;
        padding: 0;
        background: #fff;
    }
    
    .top_wrapper {
        width: 100%;
        overflow: hidden;
    }
    
    .l-sidebar {
        display: none;
    }
    
    .page {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .content {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .postContents {
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    .pageContents .content,
    .archiveContents .content {
        padding: 0;
        margin: 0 auto;
    }
    
    /*グーグルマップ表示*/
    .l-wrapper iframe {
        width: 100%;
    }
    
    /*検索結果なし*/
    .archive__item-none {
        width: 90%;
        padding: 0;
        margin: 0 auto;
        border: none;
    }
}

.widgetSearch__contents .widgetSearch__select {
    -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
    padding: 10px 10px;
    line-height: 1em;
}
.searchbox {
    width: 100%;
    position: relative;
    display: inline-block;
}
.searchbox::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-bottom: solid 2px #b4b3b3;
  border-right: solid 2px #b4b3b3;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -4px;
}

#all_wrap .pager {
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto;
}

/************************************************************/
/*　見出し　＆　パンくず
/************************************************************/

h1,h2,h3,h4,h5,h6,b,strong {
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 500;
    font-style: normal;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt" 1;
    font-size: 1em;
}

/*ページタイトル*/
#page_title {
    width: 100%;
    padding: 80px 0 80px;
    margin: 0;
    position: relative;
    z-index: 0;
    background: #fff;
}
/*背景画像*/
#page_title > span.mv_bg {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -1;
    overflow: hidden;
}
#page_title > span.mv_bg::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,153,221,0.1);
	z-index: -1;
}
.page_title_box {
    width: 100%;
    padding: 0;
    margin: 0 auto;
}
.page_title_box > strong {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0 auto 10px;
    font-size: 45px;
    line-height: 1;
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: 600;
    font-style: normal;
	color: #0099dd;
    letter-spacing: 0.1em;
    font-feature-settings: "palt";
    text-transform: uppercase;
}
#all_wrap h1.page-title {
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 500;
    font-size: 14px;
    line-height: 1;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0 auto;
	color: #0099dd;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*ページタイトル*/
    #page_title {
        width: 100%;
        padding: 30px 0 30px;
        margin: 0;
        position: relative;
        z-index: 0;
        background: #fff;
    }
    .page_title_box {
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }
    .page_title_box > strong {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0;
        margin: 0 auto 5px;
        font-size: 25px;
        line-height: 1;
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		font-weight: 600;
        font-style: normal;
		color: #0099dd;
        letter-spacing: 0.1em;
        font-feature-settings: "palt";
        text-transform: uppercase;
    }
    #all_wrap h1.page-title {
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
        font-size: 10px;
        font-weight: lighter;
        line-height: 1;
        width: 100%;
        text-align: center;
        padding: 0;
        margin: 0 auto;
		color: #0099dd;
    }
}

/*h2*/
#all_wrap .content h2 {
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.4em;
    font-style: normal;
    letter-spacing: 0.1em;
    text-align: left;
    padding: 0;
    margin: 2em auto 1em;
    position: relative;
	color: #0099dd;
}
#all_wrap .content h2:first-of-type {
    margin-top: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*h2*/
    #all_wrap .content h2 {
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
        font-size: 18px;
        font-weight: 500;
        line-height: 1.4em;
        font-style: normal;
        letter-spacing: normal;
        text-align: left;
        padding: 0;
        margin: 2em auto 1em;
        position: relative;
		color: #0099dd;
    }
    #all_wrap .content h2:first-of-type {
        margin-top: 0;
    }
}

#all_wrap h2.singleTitle {
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.4em;
    font-style: normal;
    letter-spacing: 0.1em;
    text-align: left;
    padding: 0;
    margin: 0 auto 10px;
    position: relative;
	color: #0099dd;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap h2.singleTitle {
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.4em;
        font-style: normal;
        letter-spacing: 0.1em;
        text-align: left;
        padding: 0;
        margin: 0 auto 10px;
        position: relative;
		color: #0099dd;
    }
}

/*h3*/
#all_wrap .content h3 {
    display: block;
    padding: 0 0 0 20px;
    margin: 2em auto 1em 0;
    position: relative;
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 1.4em;
    font-weight: 500;
    text-align: left;
    position: relative;
}
#all_wrap .content h3::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    margin: 0;
	background: #0099dd;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .content h3 {
        display: block;
        padding: 0 0 0 20px;
        margin: 1em auto 0.5em 0;
        position: relative;
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
        font-size: 17px;
        letter-spacing: 0.1em;
        line-height: 1.4em;
        font-weight: 500;
        text-align: left;
        position: relative;
    }
}

/*h4*/
#all_wrap .content h4 {
    display: block;
    padding: 0 0 0 15px;
    margin: 2em auto 1em 0;
    position: relative;
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 17px;
    letter-spacing: 0.1em;
    line-height: 1.4em;
    font-weight: 500;
    text-align: left;
    position: relative;
}
#all_wrap .content h4::after {
    content: '';
    display: block;
    width: 3px;
    height: 100%;
    padding: 0;
    margin: 0;
	background: #0099dd;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*h4*/
    #all_wrap .content h4 {
        display: block;
        padding: 0 0 0 15px;
        margin: 1em auto 0.5em 0;
        position: relative;
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
        font-size: 16px;
        letter-spacing: 0.1em;
        line-height: 1.4em;
        font-weight: 500;
        text-align: left;
        position: relative;
    }
    #all_wrap .content h4::after {
        content: '';
        display: block;
        width: 3px;
        height: 100%;
        padding: 0;
        margin: 0;
        background: #000;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
    }
}

/************************************************************/
/*　ページネーション
/************************************************************/
.pager {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}
.pager > li {
    line-height: 1;
    padding: 0;
    margin: 0 5px 0 0;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-feature-settings: "palt";
    color: #393939;
    border: 1px solid #393939;
}
.pager > li:hover {
    border: 1px solid #000;
    background: none;
}
.pager > li.pager__item-current {
    padding: 5px;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    border: 1px solid #000;
    color: #fff;
}
.pager > li.pager__item-next,
.pager > li.pager__item-prev {
    background: none;
    border-radius: 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-feature-settings: "palt";
}
.pager > li a {
    text-align: center;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-weight: normal;
    font-feature-settings: "palt";
    transition: ease 0.2s;
    line-height: 1;
    background: none;
}
.pager > li a:hover {
    background: #000;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-weight: normal;
    font-feature-settings: "palt";
    transition: ease 0.2s;
    line-height: 1;
}

/************************************************************/
/*　パンくず
/************************************************************/
/*パンくず*/
.breadcrumb {
    width: 100%;
    max-width: 1100px;
    padding: 20px 0;
    margin: 0 auto;
    background: none;
    border: none;
    overflow-x: scroll;
    position: relative;
    z-index: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.breadcrumb::-webkit-scrollbar { 
    display:none;
}
.breadcrumb > ul {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    font-size: 12px;
    color: #393939;
}
.breadcrumb a {
    font-size: 12px;
    line-height: 1;
    padding: 0;
    margin: 0;
    text-decoration: none;
    transition: ease 0.2s;
    color: #393939;
    font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-feature-settings: "palt";
}
.breadcrumb a:hover {
    text-decoration: none;
    transition: ease 0.2s;
    color: #000;
    opacity: 0.8;
}
.breadcrumb__list {
    padding: 0;
}
.breadcrumb__item {
    position: relative;
    display: table-cell;
    white-space: nowrap;
    padding-right: 15px;
    padding-left: 15px;
    font-size: 12px;
    line-height: 1;
    color: #393939;
}
.breadcrumb__item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -2px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #393939;
    border-right: 1px solid #393939;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*パンくず*/
    .breadcrumb {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        background: none;
        border: none;
        font-size: 10px;
        line-height: 1.2em;
        overflow: hidden;
        overflow-x: scroll;
        overflow-y: hidden;
        position: relative;
        z-index: 0;
        background: #fff;
    }
    .breadcrumb::-webkit-scrollbar {
        display: none;
    }
    .breadcrumb::before {
        display: none;
    }
    .breadcrumb::after {
        display: none;
    }
    .breadcrumb > ul {
        width: 100%;
        padding: 20px 20px 0;
        margin: 0;
        font-size: 10px;
        color: #393939;
        background: none;
    }
    .breadcrumb a {
        font-size: 10px;
        line-height: 1;
        padding: 0;
        margin: 0;
        text-decoration: none;
        transition: ease 0.2s;
        color: #393939;
    }
    .breadcrumb a:hover {
        text-decoration: none;
        transition: ease 0.2s;
        color: #000;
        opacity: 0.8;
    }
    .breadcrumb__list {
        padding: 0;
        display: block;
    }
    .breadcrumb__item {
        position: relative;
        display: table-cell;
        white-space: nowrap;
        padding-right: 15px;
        padding-left: 15px;
        font-size: 10px;
        line-height: 1;
        color: #393939;
    }
    .breadcrumb__item::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -2px;
        width: 5px;
        height: 5px;
        border-top: 1px solid #393939;
        border-right: 1px solid #393939;
    }
}


/************************************************************/
/*　フォントサイズ
/************************************************************/
.content table {
	font-size: 15px;
    color: #fff;
}


/************************************************************/
/*　ヘッダー
/************************************************************/
#header {
	width: 100%;
	padding: 0 40px;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	transition: all 0.5s ease;
}

/*ロゴ画像のみ*/
#header #logo {
	width: 350px;
	padding: 0;
	margin: 0;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
}
#header #logo > a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 20px 0 10px;
	margin: 0;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	transition: all 0.5s ease;
}
#header #logo > a:hover {
	opacity: 0.8;
	transition: all 0.5s ease;
}
#header #logo > a img {
	width: auto;
	height: 50px;
	padding: 0;
	margin: 0 20px 0 0;
}

#header #logo_area > p {
	padding: 0;
	margin: 0 0 20px;
	font-size: 10px;
	line-height: 1;
	white-space: nowrap;
}

/*ロゴテキスト*/
#header #logo-name {
	width: 350px;
	padding: 0;
	margin: 0;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
}
#header #logo-name > a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 20px 0;
	margin: 0;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	transition: all 0.5s ease;
	white-space: nowrap;
}
#header #logo-name > a:hover {
	opacity: 0.8;
	transition: all 0.5s ease;
}
#header #logo-name > a h1 {
	font-size: 35px;
	line-height: 1;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
}
#header #logo-name > a h1 > span {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 12px;
	line-height: 1;
	margin-top: 5px;
}

/*ナビゲーション*/
#header > nav {
    width: calc(100% - 350px);
    padding: 20px 0;
    margin: 0;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
}
#header > nav > ul {
    width: 100%;
    padding: 10px 0 0;
    margin: 0;
    list-style: none;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
}
#header > nav > ul > li {
    width: auto;
    padding: 0;
    margin: 0 0 10px 25px;
}
#header > nav > ul > li a {
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 400;
    font-size: 14px;
    line-height: 1;
	color: #0099dd;
    font-weight: bold;
    transition: all 0.5s ease;
}
#header > nav > ul > li a:hover {
    font-size: 14px;
    line-height: 1;
	color: #0099dd;
    font-weight: bold;
    opacity: 0.8;
    transition: all 0.5s ease;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#header {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: nowrap;
		background: #fff;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1000;
		transition: all 0.5s ease;
	}

	/*ロゴ画像のみ*/
	#header #logo_area {
		width: 100%;
		padding: 0;
		margin: 0;
		display: flex;
		display: -webkit-flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	}
	#header #logo {
		width: 100%;
		padding: 0;
		margin: 0;
		display: flex;
		display: -webkit-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	}
	#header #logo > a {
		display: block;
		width: 100%;
		height: 100%;
		padding: 10px 20px;
		margin: 0;
		display: flex;
		display: -webkit-flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		transition: all 0.5s ease;
	}
	#header #logo > a:hover {
		opacity: 0.8;
		transition: all 0.5s ease;
	}
	#header #logo > a img {
		width: auto;
		height: 30px;
		padding: 0;
		margin: 0 20px 0 0;
	}
	
	#header #logo_area > p {
		width: 100%;
		padding: 0 20px 10px;
		margin: 0;
		font-size: 10px;
		line-height: 1.2em;
		white-space: normal;
	}

	/*ロゴテキスト*/
	#header #logo-name {
		width: 100%;
		padding: 0;
		margin: 0;
		display: flex;
		display: -webkit-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	}
	#header #logo-name > a {
		display: block;
		width: 100%;
		height: 100%;
		padding: 10px 20px;
		margin: 0;
		display: flex;
		display: -webkit-flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		transition: all 0.5s ease;
	}
	#header #logo-name > a:hover {
		opacity: 0.8;
		transition: all 0.5s ease;
	}
	#header #logo-name > a h1 {
		font-size: 22px;
		line-height: 1;
		padding: 0;
		margin: 0;
		border: none;
		background: none;
	}
	#header #logo-name > a h1 > span {
		display: block;
		width: 100%;
		padding: 0;
		margin: 0;
		font-size: 10px;
		line-height: 1;
		margin-top: 3px;
	}
    /*ナビゲーション*/
    #header > nav {
        display: none;
    }
}

/************************************************************/
/*　グローバルメニュー
/************************************************************/
/* ドロワーメニュー */
#headerMenu {
    display: none;
}
.humburger {
    width: 32px;
    height: 32px;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.humburger span {
    display: inline-block;
    transition: all .3s;/*アニメーションの設定*/
    position: absolute;
    left: 0;
    height: 1px;
    background: #fff;
    width: 100%;
}
.humburger span:nth-of-type(1) {
    top:0;
}
.humburger span:nth-of-type(2) {
    top:10px;
}
.humburger span:nth-of-type(3) {
    top:20px;
}
#navTgl:checked + .open .humburger span:nth-of-type(1) {
    top: 0;
    left: 0;
    transform: translateY(12px) rotate(-45deg);
    width: 100%;
    background: #fff;
}
#navTgl:checked + .open .humburger span:nth-of-type(2) {
    opacity: 0;/*真ん中の線は透過*/
    left: 0;
}
#navTgl:checked + .open .humburger span:nth-of-type(3) {
    top: 20px;
    left: 0;
    transform: translateY(-8px) rotate(45deg);
    width: 100%;
    background: #fff;
}

#navTgl {
    display: none;
}
label.open,
label.close {
    cursor: pointer;
    display: none;
}
.open {
    display: block;
    z-index: 10000;
    width: 40px;
    height: 40px;
    color: #fff;
    background: none;
    font-size: 3em;
    text-align: center;
    -webkit-transition: background-color .3s, -webkit-transform .4s;
    transition: background-color .3s, transform .4s;
    position: relative;
    position: fixed;
    top: 30px;
    right: 30px;
}
#navTgl:checked + .open {
    background: none;
}
.close {
    pointer-events: none;
    z-index: 1;
    width: 100%;
    height: 100%;
    transition: background-color .4s;
}
#navTgl:checked ~ .close {
    border: 1px solid #fff;
    pointer-events: auto;
    background-color: rgba(0,0,0,.3);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /* ドロワーメニュー */
    #headerMenu {
        display: none;
    }
    .humburger {
        width: 32px;
        height: 32px;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    .humburger span {
        display: inline-block;
        transition: all .3s;/*アニメーションの設定*/
        position: absolute;
        left: 0;
        height: 1px;
        background: #000;
        width: 100%;
    }
    .humburger span:nth-of-type(1) {
        top:0;
    }
    .humburger span:nth-of-type(2) {
        top:10px;
    }
    .humburger span:nth-of-type(3) {
        top:20px;
    }
    #navTgl:checked + .open .humburger span:nth-of-type(1) {
        top: 0;
        left: 0;
        transform: translateY(12px) rotate(-45deg);
        width: 100%;
        background: #fff;
    }
    #navTgl:checked + .open .humburger span:nth-of-type(2) {
        opacity: 0;/*真ん中の線は透過*/
        left: 0;
    }
    #navTgl:checked + .open .humburger span:nth-of-type(3) {
        top: 20px;
        left: 0;
        transform: translateY(-8px) rotate(45deg);
        width: 100%;
        background: #fff;
    }

    #navTgl {
        display: none;
    }
    label.open,
    label.close {
        cursor: pointer;
        display: block;
    }
    .open {
        display: block;
        z-index: 10000;
        width: 32px;
        height: 32px;
        color: #fff;
        background: none;
        font-size: 3em;
        text-align: center;
        -webkit-transition: background-color .3s, -webkit-transform .4s;
        transition: background-color .3s, transform .4s;
        position: relative;
        position: fixed;
        top: 15px;
        right: 20px;
    }
    .close {
        pointer-events: none;
        z-index: 1;
        width: 100%;
        height: 100%;
        transition: background-color .4s;
    }
    #navTgl:checked ~ .close {
        border: 1px solid #fff;
        pointer-events: auto;
        background-color: rgba(0,0,0,.3);
    }
}

/*パネルメニュー*/
#menu.menuNav {
    display: none;
}
#menu-header-menu {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    border: none;
}
#menu-header-menu > li {
    padding: 0;
    margin: 0;
    border: none;
}
#menu-header-menu > li > a {
    display: block;
    padding: 15px 15px 15px 25px;
    margin: 0;
    background: none;
    border: none;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    line-height: 1.4em;
    color: #fff;
    font-weight: 500;
    position: relative;
    z-index: 0;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    text-align: left;
}
#menu-header-menu > li > a::before {
    display: none;
}
#menu-header-menu > li > a::after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    padding: 0;
    margin: 0;
    background: none;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    top: 50%;
    left: 5px;
    z-index: -1;
    transform: translate(0,-50%) rotate(45deg);
    -webkit-transform: translate(0,-50%) rotate(45deg);
    opacity: 1;
    transition: all 0.2s ease;
}
#menu-header-menu > li > a > span {
    display: block;
    text-align: left;
    padding: 0;
    margin: 8px 0 0;
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    line-height: 1;
    color: rgba(255,255,255,0.5);
    transition: all 0.2s ease;
}
#menu-header-menu > li > a:hover {
    opacity: 0.8;
    transition: all 0.2s ease;
}
#menu-header-menu > li > a:hover::after {
    opacity: 1;
    left: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transition: all 0.2s ease;
}
#menu-header-menu > li > a:hover > span {
    color: #f28f25;
    transition: all 0.2s ease;
}

#menuNavBox h3 {
    width: 100%;
    padding: 0;
    margin: 0 auto 10px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2em;
    letter-spacing: 0.1em;
    color: #fff;
    border: none;
    background: none;
    border-radius: 0;
    text-align: left;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}
#all_wrap #menuNavBox p {
    font-size: 14px;
    line-height: 1.4em;
    padding: 0;
    margin: 0 auto;
    color: #fff;
    text-align: center;
}
#all_wrap #menuNavBox p.mb20 {
    margin-bottom: 10px;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #menu.menuNav {
        display: none;
        z-index: 9999;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(43,46,56,0.9);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        -webkit-transition: -webkit-transform .4s;
        transition: transform .4s;
        padding: 50px;
        overflow: hidden;
        overflow-y: scroll;
        -ms-overflow-style: none;    /* IE, Edge 対応 */
        scrollbar-width: none;       /* Firefox 対応 */
    }
    #menu.menuNav::-webkit-scrollbar {  /* Chrome, Safari 対応 */
        display:none;
    }
    #navTgl:checked ~ #menu.menuNav {
        -webkit-transition: -webkit-transform .4s;
        transition: transform .4s;
    }
    #menuNavBox {
        width: calc(100%);
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        align-content: stretch;
        align-items: stretch;
        flex-wrap: wrap;
    }
    .menuNavBoxLeft {
        width: 100%;
        padding: 0;
        margin: 0 auto 20px;
        position: relative;
        top: 0;
        left: 0;
    }
    .menuNavBoxRight {
        width: 100%;
        padding: 0;
        margin: 0;
    }
	
	.menuNavBoxLeft h4 {
		text-align: center;
		padding: 0;
		margin: 0 auto;
		font-size: 15px;
		line-height: 1;
		color: #fff;
	}
	.menuNavBoxLeft ul {
		list-style: none;
		padding: 0;
		margin: 0 auto;
	}
	.menuNavBoxLeft ul > li {
		color: #fff;
		line-height: 1.4em;
	}

    #menu-header-menu > li {
        padding: 0;
        margin: 0;
        border: none;
        text-align: center;
		color: #fff;
    }
}

/************************************************************/
/*　メインビジュアル
/************************************************************/
#mainVisual {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
	background-size: cover;
	background-position: center top;
	background-attachment: fixed;
	background-repeat: no-repeat;
	z-index: 0;
}
#mainVisual::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,153,221,0.1);
	z-index: -1;
}

/*キャッチコピー*/
#mainVisual > strong {
	width: calc(100% - 80px - 80px);
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size: 50px;
	font-weight: 500;
	line-height: 1.4em;
	padding: 0;
	margin: 0 auto 20px;
	color: #0099dd;
	text-align: left;
	opacity: 0;
	text-shadow:2px 2px 0 rgba(255,255,255,0.8), -2px -2px 0 rgba(255,255,255,0.8),
		-2px 2px 0 rgba(255,255,255,0.8), 2px -2px 0 rgba(255,255,255,0.8),
		0px 2px 0 rgba(255,255,255,0.8),  0 -2px 0 rgba(255,255,255,0.8),
		-2px 0 0 rgba(255,255,255,0.8), 2px 0 0 rgba(255,255,255,0.8);
}
#mainVisual > strong::first-letter {
	font-size: 130%;
}
#mainVisual > h2 {
    width: calc(100% - 80px - 80px);
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 25px;
	font-weight: 500;
    line-height: 1.4em;
    padding: 0;
    margin: 0 auto 40px;
	color: #1e1e1e;
    text-align: left;
    opacity: 0;
	text-shadow:2px 2px 0 rgba(255,255,255,0.8), -2px -2px 0 rgba(255,255,255,0.8),
		-2px 2px 0 rgba(255,255,255,0.8), 2px -2px 0 rgba(255,255,255,0.8),
		0px 2px 0 rgba(255,255,255,0.8),  0 -2px 0 rgba(255,255,255,0.8),
		-2px 0 0 rgba(255,255,255,0.8), 2px 0 0 rgba(255,255,255,0.8);
}
#mainVisual > span.mv_link {
    position: relative;
    text-align: left;
	width: calc(100% - 80px - 80px);
}
#mainVisual > span.mv_link a {
    display: inline-block;
    padding: 10px 0;
    margin: 0;
	position: relative;
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.2em;
	color: #ff6a8f;
}
#mainVisual > span.mv_link a::before {
	content: '';
	display: block;
	width: 100%;
	height: 3px;
	padding: 0;
	margin: 0;
	background: #ff6a8f;
	position: absolute;
	bottom: 0;
	left: 0;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#mainVisual {
		width: 100%;
		height: 550px;
		padding: 0;
		margin: 0;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		overflow: hidden;
		background-size: cover;
		background-position: center bottom;
		background-attachment: local;
		background-repeat: no-repeat;
		z-index: 0;
	}

	/*キャッチコピー*/
	#mainVisual > strong {
		width: calc(100% - 30px - 30px);
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		font-size: 25px;
		font-weight: 500;
		line-height: 1.4em;
		padding: 0;
		margin: 0 auto 20px;
		color: #0099dd;
		text-align: left;
		opacity: 0;
	}
	#mainVisual > h2 {
		width: calc(100% - 30px - 30px);
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		font-size: 15px;
		font-weight: 500;
		line-height: 1.4em;
		padding: 0;
		margin: 0 auto 20px;
		color: #1e1e1e;
		text-align: left;
		opacity: 0;
	}
	#mainVisual > span.mv_link {
		position: relative;
		text-align: left;
		width: calc(100% - 30px - 30px);
	}
	#mainVisual > span.mv_link a {
		display: inline-block;
		padding: 10px 0;
		margin: 0;
		position: relative;
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		font-weight: 400;
		font-size: 14px;
		line-height: 1.2em;
		color: #ff6a8f;
	}
}

/************************************************************/
/*　サイドバー
/************************************************************/
.l-sidebar > aside {
    padding: 30px;
    margin: 0 auto 30px;
    position: relative;
    background: #fafafa;
    border-radius: 0;
}
#all_wrap .l-sidebar h2.heading.heading-widget,
#all_wrap .l-sidebar .pageContents_side h2 {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0 0 10px;
    margin: 0 auto;
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 400;
    font-size: 20px;
    line-height: 1;
	color: #0099dd;
    font-weight: bold;
    border: none;
    background: none;
    position: relative;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .l-sidebar h2.heading.heading-widget,
    .topContentSid h2.heading-widget {
        width: 100%;
        display: -webkit-flex;
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		font-weight: 400;
        font-size: 30px;
        line-height: 1;
        font-weight: 700;
        background: none;
        color: #393939;
        text-align: left;
        padding: 0;
        margin: 0 auto 20px;
    }
}

.l-sidebar .widget.widget_nav_menu ul.menu,
.l-sidebar .pageContents_side ul,
.l-sidebar #category-posts-2-internal {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    border: none;
}
.l-sidebar .widget.widget_nav_menu ul.menu > li,
.l-sidebar .pageContents_side ul > li,
.l-sidebar #category-posts-2-internal > li {
    width: 100%;
	padding: 12px 10px 12px 25px !important;
    margin: 0;
    border: none;
    background: none;
	position: relative;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.l-sidebar #category-posts-2-internal > li:hover {
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(0,0,0,0.5);
}
.l-sidebar #category-posts-2-internal > li div {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.cat-post-date {
	width: 100%;
	display: block;
	font-family: 'Raleway', sans-serif;
	font-size: 12px;
	font-weight: 500;
	line-height: 1em;
	color: rgba(0,0,0,0.4);
	padding: 0;
	margin: 0 auto 3px;
	text-align: left;
}
.l-sidebar .widget.widget_nav_menu ul.menu > li a,
.l-sidebar .pageContents_side ul > li a,
.l-sidebar #category-posts-2-internal > li a {
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 1.4em;
    color: #393939;
    font-weight: 400;
    text-decoration: none;
    border: none;
    background: none;
    transition: all 0.3s ease;
    position: relative;
}
.l-sidebar .widget.widget_nav_menu ul.menu > li a::before,
.l-sidebar .widget.widget_nav_menu ul.menu > li a::after,
.l-sidebar .pageContents_side ul > li a::before,
.l-sidebar .pageContents_side ul > li a::after,
.l-sidebar #category-posts-2-internal > li a::before,
.l-sidebar #category-posts-2-internal > li a::after {
    display: none;
}
.l-sidebar .widget.widget_nav_menu ul.menu > li::before,
.l-sidebar .pageContents_side ul > li::before,
.l-sidebar #category-posts-2-internal > li::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background: none;
    border-top: 1px solid #393939;
    border-right: 1px solid #393939;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translate(0,-50%) rotate(45deg);
    -webkit-transform: translate(0,-50%) rotate(45deg);
}
.l-sidebar .widget.widget_nav_menu ul.menu > li::after,
.l-sidebar .pageContents_side ul > li::after,
.l-sidebar #category-posts-2-internal > li::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.5);
    border: none;
    position: absolute;
    bottom: -2px;
    left: 0;
}
.l-sidebar .widget.widget_nav_menu ul.menu > li a:hover,
.l-sidebar .pageContents_side ul > li a:hover,
.l-sidebar #category-posts-2-internal > li a:hover {
    color: #000;
    background: none;
	font-weight: 400;
    transition: all 0.3s ease;
}
.l-sidebar .widget.widget_nav_menu ul.menu > li a > span {
    display: none;
}

/*子ページ*/
.l-sidebar .pageContents_side ul > li > ul > li a {
    display: block;
    padding: 8px 10px 8px 35px;
    margin: 0;
    font-size: 12px;
    line-height: 1.4em;
    color: #393939;
    font-weight: 400;
    text-decoration: none;
    border: none;
    border-bottom: 1px dotted rgba(0,0,0,0.2);
    background: none;
    transition: all 0.3s ease;
    position: relative;
}
.l-sidebar .pageContents_side ul > li > ul > li a::before,
.l-sidebar .pageContents_side ul > li > ul > li a::after {
    display: none;
}
.l-sidebar .pageContents_side ul > li > ul > li a::before {
    content: '';
    display: block;
    width: 5px;
    height: 1px;
    background: #000;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}
.l-sidebar .pageContents_side ul > li > ul > li a:hover {
    color: #000;
    background: none;
    font-weight: 400;
    transition: all 0.3s ease;
}


/************************************************************/
/*　フッター
/************************************************************/

.copyright {
    width: 100%;
    padding: 20px;
    margin: 0 auto;
    font-size: 10px;
    line-height: 1;
    color: #fff;
    font-style: normal;
    text-align: center;
	background: #0099dd !important;
}

/************************************************************/
/*　アーカイブ　リスト
/************************************************************/

/************************************************************/
/*　リスト
/************************************************************/
#all_wrap .l-wrapper .pageContents .content ul,
#all_wrap .l-wrapper .postContents .content ul {
    list-style: none;
    padding: 0;
    margin: 5px auto 10px;
}
#all_wrap .l-wrapper .pageContents .content ul li,
#all_wrap .l-wrapper .postContents .content ul li {
    padding: 0 0 0 15px;
    margin: 0 0 10px;
    list-style: none;
    border: none;
    background: none;
    position: relative;
    line-height: 1.5em;
}
#all_wrap .l-wrapper .pageContents .content ul li:before,
#all_wrap .l-wrapper .postContents .content ul li:before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    padding: 0;
    margin: 0;
    background: #393939;
    position: absolute;
    top: 0.7em;
    left: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    border-radius: 50%;
}

#all_wrap .l-wrapper .pageContents .content ol,
#all_wrap .l-wrapper .postContents .content ol {
    list-style: none;
    padding: 0;
    margin: 5px auto 10px;
}
#all_wrap .l-wrapper .pageContents .content ol li,
#all_wrap .l-wrapper .postContents .content ol li {
    padding: 0 0 0 30px;
    margin: 0 0 5px;
    list-style: none;
    border: none;
    background: none;
    position: relative;
}
#all_wrap .l-wrapper .pageContents .content ol li:before,
#all_wrap .l-wrapper .postContents .content ol li:before {
    counter-increment: number;
    content: counter(number);
    background: #fff;
    border: 1px solid #393939;
    color: #393939;
    width: 2.2rem;
    height: 2.2rem;
    line-height: 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    top: 1.4em;
    left: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    border-radius: 50%;
}


/************************************************************/
/*　テーブル
/************************************************************/

/*表*/
#all_wrap .content table {
    overflow: hidden;
    table-layout: fixed;
    border: none;
    background: #fff;
    padding: 50px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 100px;
}
#all_wrap .content table th {
    font-style: normal;
    font-feature-settings: "palt";
    border: none;
    border-bottom: none;
    text-align: center;
    vertical-align: middle;
    font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 600;
    background: #fafafa;
    color: #393939;
    padding: 20px;
    margin: 0;
    width: 25%;
    border-bottom: 3px solid #fff;
}
#all_wrap .content table td {
    border: none;
    background: #fafafa;
    vertical-align: inherit;
    border-bottom: none;
    padding: 20px;
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    border-bottom: 3px solid #fff;
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*表*/
	#all_wrap .content table {
        overflow: hidden;
        table-layout: fixed;
        border: none;
        background: #fff;
        padding: 0;
        width: 90%;
        max-width: 90%;
        margin: 0 auto;
    }
	#all_wrap .content table th {
        font-style: normal;
        font-feature-settings: "palt";
        border: none;
        border-bottom: none;
        vertical-align: inherit;
        background: #fafafa;
        color: #393939;
        padding: 10px;
        margin: 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        box-shadow: 0 1px 0 rgba(255,255,255,1);
        width: 100%;
        min-width: 100%;
        font-size: 14px;
        display: block;
    }
	#all_wrap .content table td {
        border: none;
        background: #fff;
        vertical-align: inherit;
        border-bottom: none;
        padding: 20px 10px;
        margin: 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        box-shadow: 0 1px 0 rgba(255,255,255,1);
        font-size: 14px;
        width: 100%;
        min-width: 100%;
        display: block;
    }
}




/************************************************************/
/*　お問い合わせ&テーブル
/************************************************************/

/*お問い合わせフォーム*/
#all_wrap table.table-contactform7 {
    border: none;
    background: none;
    padding: 0;
    margin: 0 auto 50px;
    width: 100%;
    max-width: 1000px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
#all_wrap table.table-contactform7 tr {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
}
#all_wrap table.table-contactform7 th {
    border: none;
    background: none;
    padding: 30px 0;
    margin: 0;
    color: #393939;
    font-size: 15px;
    line-height: 1.4em;
    font-style: normal;
    font-feature-settings: "palt";
    width: 30%;
    font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-feature-settings: "palt";
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 1px 0 rgba(255,255,255,1);
}
#all_wrap table.table-contactform7 td {
    width: 70%;
    border: none;
    background: none;
    padding: 30px 0 30px 50px;
    margin: 0;
    color: #393939;
    font-size: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 1px 0 rgba(255,255,255,1);
}
#all_wrap table.table-contactform7 td small {
    display: block;
    width: 100%;
    padding: 0;
    margin: 5px auto 0;
    text-align: left;
    font-size: 0.7em;
    color: #555;
}
#all_wrap table.table-contactform7 th .att {
    display: inline-block;
    padding: 5px 10px;
    margin: 0;
	background: #0099dd;
    border-radius: 0;
    font-size: 12px;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
}
#all_wrap table.table-contactform7 .cf7-harf {
    border-right: 1px solid #fff;
}
#all_wrap table.table-contactform7 input {
    border-radius: 0;
    border: 1px solid #c8c8c8;
    box-shadow: none;
    font-size: 1em;
    padding: 15px;
}
#all_wrap table.table-contactform7 td.add span:first-of-type input {
    margin: 0 0 10px;
}
#all_wrap table.table-contactform7 input.wpcf7-text {
    width: 100%;
    padding: 20px;
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "palt";
    font-size: 0.8em;
    line-height: 1;
    background: #fafafa;
    outline: none;
}
#all_wrap table.table-contactform7 input.wpcf7-date {
    padding: 9px;
    margin: 0;
    margin-right: 10px;
    font-size: 0.8em;
    background: #fafafa;
    outline: none;
}
#all_wrap table.table-contactform7 select.wpcf7-form-control.wpcf7-select {
    width: 150px;
    height: 40px;
    line-height: 40px;
    padding: 10px;
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    font-size: 0.8em;
    background: #fafafa;
    outline: none;
}
#all_wrap table.table-contactform7 input.your-naiyou {
    display: inline;
    width: auto;
}
#all_wrap table.table-contactform7 label {
    font-size: 0.8em;
    line-height: 1.2em;
}
#all_wrap table.table-contactform7 .required-contactform7 {
    background: #ff6a8f;
    padding: 5px 10px;
    margin: 0 0 0 10px;
    border-radius: 0;
    display: inline-block;
    color: #fff;
    font-size: 10px;
    border-radius: 0;
    line-height: 1;
}
#all_wrap table.table-contactform7 .wpcf7-list-item {
    padding: 15px;
    margin: 0 10px 10px 0;
    border: none;
    vertical-align: middle;
    line-height: 1;
    font-weight: 500;
    background: #fafafa;
    outline: none;
}
#all_wrap table.table-contactform7 .wpcf7-list-item input[type='radio'] {
    top: 2px;
    position: relative;
    outline: none;
}
#all_wrap table.table-contactform7 .wpcf7-list-item input[type='checkbox'] {
    top: 2px;
    position: relative;
    width: 14px;
    height: 14px;
    padding: 0;
    outline: none;
}
#all_wrap table.table-contactform7 textarea {
    width: 100%;
    padding: 15px;
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    font-size: 0.8em;
    line-height: 1;
    background: #fafafa;
    outline: none;
}
#all_wrap .txt_cent {
    text-align: center;
}
#all_wrap .txt_cent input[type="submit"] {
    -webkit-appearance: none;
}
#all_wrap .txt_cent input {
    padding: 20px 100px;
    margin: 0 auto;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
	background: #0099dd;
    border-radius: 40px;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
}
#all_wrap .txt_cent input:hover {
    transition: 0.5s;
    opacity: 0.8;
}

#all_wrap .wpcf7 .ajax-loader {
    display: none;
}

.privacy_txt {
    text-align: center;
    padding: 0;
    margin: 0 auto 40px;
}

#all_wrap #confirm {
    width: 100%;
    max-width: 1000px;
    padding: 50px 0;
    margin: 0 auto;
}
#all_wrap #confirm h3 {
    text-align: center;
    width: 100%;
    margin: 0 auto 10px;
}
#all_wrap #confirm .confirm_box {
    padding: 20px 30px;
    margin: 0;
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid #f5f5f5;
}
#all_wrap #confirm input[type=checkbox] {
    transform: scale(1.5);
    margin-right: 10px;
}
#all_wrap.txt_cent input[type="submit"]:disabled {
    background: #c8c8c8;
}

.wpcf7-spinner {
    display: none;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*お問い合わせフォーム*/
    #all_wrap table.table-contactform7 {
        border: none;
        background: none;
        padding: 0;
        margin: 0 auto 10px;
        width: calc(100% - 60px);
        max-width: 100%;
        border: none;
        box-shadow: none;
    }
    #all_wrap table.table-contactform7 tr {
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        border: none;
        background: none;
        padding: 0;
        margin: 0;
    }
    #all_wrap table.table-contactform7 th {
        border: none;
        background: none;
        padding: 10px 0 0;
        margin: 0;
        color: #393939;
        font-size: 15px;
        line-height: 1.4em;
        font-style: normal;
        font-feature-settings: "palt";
        width: 100%;
        font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
        font-weight: 600;
        font-style: normal;
        font-feature-settings: "palt";
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        position: relative;
        border-bottom: none;
        box-shadow: none;
    }
    #all_wrap table.table-contactform7 td {
        width: 100%;
        border: none;
        background: none;
        padding: 10px 0;
        margin: 0;
        color: #393939;
        font-size: 14px;
        border-bottom: none;
        box-shadow: none;
    }
    #all_wrap table.table-contactform7 td small {
        display: block;
        width: 100%;
        padding: 0;
        margin: 5px auto 0;
        text-align: left;
        font-size: 0.7em;
        color: #555;
    }
    #all_wrap table.table-contactform7 th .att {
        display: inline-block;
        padding: 5px 10px;
        margin: 0;
		background: #0099dd;
        border-radius: 0;
        font-size: 12px;
        line-height: 1;
        color: #fff;
        white-space: nowrap;
    }
    #all_wrap table.table-contactform7 .cf7-harf {
        border-right: 1px solid #fff;
    }
    #all_wrap table.table-contactform7 input {
        border-radius: 0;
        border: 1px solid #c8c8c8;
        box-shadow: none;
        font-size: 1em;
        padding: 15px;
    }
    #all_wrap table.table-contactform7 td.add span:first-of-type input {
        margin: 0 0 10px;
    }
    #all_wrap table.table-contactform7 input.wpcf7-text {
        width: 100%;
        padding: 20px;
        margin: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
        font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
        font-weight: 400;
        font-style: normal;
        font-feature-settings: "palt";
        font-size: 0.8em;
        line-height: 1;
        background: #fafafa;
        outline: none;
    }
    #all_wrap table.table-contactform7 input.wpcf7-date {
        padding: 9px;
        margin: 0;
        margin-right: 10px;
        font-size: 0.8em;
        background: #fafafa;
        outline: none;
    }
    #all_wrap table.table-contactform7 select.wpcf7-form-control.wpcf7-select {
        width: 150px;
        height: 40px;
        line-height: 40px;
        padding: 10px;
        margin: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
        font-size: 0.8em;
        background: #fafafa;
        outline: none;
    }
    #all_wrap table.table-contactform7 input.your-naiyou {
        display: inline;
        width: auto;
    }
    #all_wrap table.table-contactform7 label {
        font-size: 0.8em;
        line-height: 1.2em;
    }
    #all_wrap table.table-contactform7 .required-contactform7 {
        background: #ff6a8f;
        padding: 5px 10px;
        margin: 0 0 0 10px;
        border-radius: 0;
        display: inline-block;
        color: #fff;
        font-size: 10px;
        border-radius: 0;
        line-height: 1;
    }
    #all_wrap table.table-contactform7 .wpcf7-list-item {
        padding: 15px;
        margin: 0 10px 10px 0;
        border: none;
        vertical-align: middle;
        line-height: 1;
        font-weight: 500;
        background: #fafafa;
        outline: none;
    }
    #all_wrap table.table-contactform7 .wpcf7-list-item input[type='radio'] {
        top: 2px;
        position: relative;
        outline: none;
    }
    #all_wrap table.table-contactform7 .wpcf7-list-item input[type='checkbox'] {
        top: 2px;
        position: relative;
        width: 14px;
        height: 14px;
        padding: 0;
        outline: none;
    }
    #all_wrap table.table-contactform7 textarea {
        width: 100%;
        padding: 15px;
        margin: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
        font-size: 0.8em;
        line-height: 1;
        background: #fafafa;
        outline: none;
    }
    #all_wrap .txt_cent {
        text-align: center;
    }
    #all_wrap .txt_cent input[type="submit"] {
        -webkit-appearance: none;
    }
    #all_wrap .txt_cent input {
        width: calc(100% - 60px);
        padding: 15px 50px;
        margin: 0 auto;
        display: block;
        font-size: 15px;
        font-weight: 600;
		background: #0099dd;
        border: none;
        color: #fff;
        cursor: pointer;
        transition: 0.5s;
    }
    #all_wrap .txt_cent input:hover {
        transition: 0.5s;
        opacity: 0.8;
    }

    #all_wrap .wpcf7 .ajax-loader {
        display: none;
    }

    .privacy_txt {
        text-align: center;
        padding: 0;
        margin: 0 auto 40px;
    }

    #all_wrap #confirm {
        width: 100%;
        max-width: 1000px;
        padding: 50px 0;
        margin: 0 auto;
    }
    #all_wrap #confirm h3 {
        text-align: center;
        width: 100%;
        margin: 0 auto 10px;
    }
    #all_wrap #confirm .confirm_box {
        padding: 20px 30px;
        margin: 0;
        background: #fafafa;
        border-radius: 10px;
        border: 1px solid #f5f5f5;
    }
    #all_wrap #confirm input[type=checkbox] {
        transform: scale(1.5);
        margin-right: 10px;
    }
    #all_wrap.txt_cent input[type="submit"]:disabled {
        background: #c8c8c8;
    }

    .wpcf7-spinner {
        display: none;
    }
}

/*表削除*/
#all_wrap .pageContents .content .tablenone,
#all_wrap .postContents .content .tablenone {
    padding: 0;
    margin: 0;
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-radius: none;
    background: none;
    color: #393939;
}
#all_wrap .pageContents .content .tablenone tbody,
#all_wrap .pageContents .content .tablenone th,
#all_wrap .pageContents .content .tablenone td,
#all_wrap .pageContents .content .tablenone tr,
#all_wrap .pageContents .content .tablenone tr:nth-child(odd) td,
#all_wrap .pageContents .content .tablenone tr:nth-child(even) td {
    padding: 0;
    margin: 0;
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-radius: none;
    background: none;
    color: #393939;
}
#all_wrap .postContents .content .tablenone tbody,
#all_wrap .postContents .content .tablenone th,
#all_wrap .postContents .content .tablenone td,
#all_wrap .postContents .content .tablenone tr,
#all_wrap .postContents .content .tablenone tr:nth-child(odd) td,
#all_wrap .postContents .content .tablenone tr:nth-child(even) td {
    padding: 0;
    margin: 0;
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-radius: none;
    background: none;
    color: #393939;
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    
}


/************************************************************/
/*　Google Map
/************************************************************/
.google-maps {
    position: relative;
    padding-bottom: 30%;
    height: 0;
    overflow: hidden;
}
.google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}
.access_info p {
    font-size: 1.1em;
    line-height: 1.7em;
    margin-bottom: 20px;
    text-align: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .access_info p {
        width: 90%;
        padding: 0;
        margin: 0 auto;
        font-size: 1.1em;
        line-height: 1.7em;
        margin-bottom: 20px;
        text-align: center;
    }
    .top_gmap iframe {
        height: 200px;
    }
}



/************************************************************/
/*　全体
/************************************************************/


/************************************************************/
/*　サイトマップ
/************************************************************/
.sitemap ul {
    width: 90%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto;
}
.sitemap ul li {
    width: 100%;
    padding: 0;
    margin: 0;
    background: none;
    list-style: none;
}
.sitemap ul li a {
    display: block;
    padding: 20px 20px 20px 30px;
    margin: 0;
    font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    position: relative;
    transition: 0.5s;
    color: rgba(0,0,0,1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.sitemap ul li a:hover {
    transition: 0.2s;
    color: #393939;
}
.sitemap ul li a::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid rgba(0,0,0,1);
    border-right: 1px solid rgba(0,0,0,1);
    transform: translate(0,-50%) rotate(45deg);
    -webkit-transform: translate(0,-50%) rotate(45deg);
    transition: ease 0.2s;
}
.sitemap ul li a > span {
    display: none;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .sitemap ul {
        width: calc(100% - 60px);
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
    }
}

/*スマホ改行
------------------------------------------------------------*/
	
.pc { display:block; }
.sp { display:none; }
@media screen and (max-width: 768px){   
  .pc { display:none; }
  .sp { display:block; }
}


/************************************************************/
/*　本文ギャラリー
/************************************************************/
#all_wrap .content .gallery {
    width: 80%;
    padding: 0;
    margin: 0 auto 100px;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#all_wrap .content .gallery dl {
    width: 31%;
    padding: 0;
    margin: 0 0 30px;
}
#all_wrap .content .gallery dt {
    padding: 5px 0;
    margin: 0;
    text-align: center;
}
#all_wrap .content .gallery dd {
    padding: 0;
    margin: 0;
    text-align: center;
}
#all_wrap .content .gallery dl img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .content .gallery {
        width: 100%;
        padding: 0;
        margin: 0 auto 50px;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #all_wrap .content .gallery dl {
        width: 48%;
        padding: 0;
        margin: 0 0 20px;
    }
    #all_wrap .content .gallery dt {
        padding: 5px 0;
        margin: 0;
        text-align: center;
    }
    #all_wrap .content .gallery dd {
        padding: 0;
        margin: 0;
        text-align: center;
    }
    #all_wrap .content .gallery dl img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }
}

/************************************************************/
/*　Youtube
/************************************************************/
#all_wrap .l-wrapper .youtubeBox {
    width:860px;              /*横幅いっぱいにwidthを指定*/
    padding-bottom: 56.25%;  /*高さをpaddingで指定(16:9)*/
    height:0px;              /*高さはpaddingで指定するためheightは0に*/
    position: relative;
    margin: 0 auto;
}
#all_wrap .l-wrapper .youtubeBox > iframe {
    position: static;
    top: auto;
    left: auto;
    width: 860px;
    height: 500px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .l-wrapper .youtubeBox {
        width:100%;              /*横幅いっぱいにwidthを指定*/
        padding-bottom: 56.25%;  /*高さをpaddingで指定(16:9)*/
        height:0px;              /*高さはpaddingで指定するためheightは0に*/
        position: relative;
    }
    #all_wrap .l-wrapper .youtubeBox > iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}


/************************************************************/
/*　アーカイブ
/************************************************************/
.archiveList {
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.archiveList::after {
    content: '';
    display: block;
    width: 31%;
}
.archiveList > li {
    width: 31%;
    padding: 0;
    margin: 0 0 40px;
}
.archiveList > li::before,
.archiveList > li::after {
    display: none;
}
.archiveList > li figure {
    width: 100%;
    padding: 0;
    margin: 0 auto 10px;
    position: relative;
    text-align: center;
    overflow: hidden;
}
.archiveList > li figure::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}
.archiveList > li figure img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    object-fit: cover;
}
#all_wrap .archiveList > li .date {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1em;
    color: #888;
    font-style: normal;
    white-space: nowrap;
    padding: 0;
    margin: 0 0 5px;
}
#all_wrap .archiveList > li > h3 {
    padding: 0;
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4em;
    font-style: normal;
    border: none;
    background: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .archiveList {
        width: calc(100% - 60px);
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
        list-style: none;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .archiveList::after {
        content: '';
        display: none;
        width: 31%;
    }
    .archiveList > li {
        width: 100%;
        padding: 0;
        margin: 0 auto 20px;
    }
    .archiveList > li::before,
    .archiveList > li::after {
        display: none;
    }
    .archiveList > li figure {
        width: 100%;
        padding: 0;
        margin: 0 auto 10px;
        position: relative;
        text-align: center;
        overflow: hidden;
    }
    .archiveList > li figure::before {
        content: '';
        display: block;
        padding-top: 56.25%;
    }
    .archiveList > li figure img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        object-fit: cover;
    }
    #all_wrap .archiveList > li .date {
        display: inline-block;
        font-family: 'Raleway', sans-serif;
        font-size: 12px;
        font-weight: 500;
        line-height: 1em;
        color: #888;
        font-style: normal;
        white-space: nowrap;
        padding: 0;
        margin: 0 0 5px;
    }
    #all_wrap .archiveList > li > h3 {
        padding: 0;
        margin: 0;
        font-size: 12px;
        font-weight: 700;
        line-height: 1.4em;
        font-style: normal;
        border: none;
        background: none;
    }
}

/************************************************************/
/*　記事詳細
/************************************************************/

.tagList {
    padding: 0;
    margin: 0 auto 20px;
}
.tag {
    display: inline-block;
    padding: 5px 5px;
    margin: 0 5px 5px 0;
    background: #ff6a8f;
    color: #fff;
    font-size: 10px;
    line-height: 1;
    font-weight: lighter;
    font-style: normal;
}
.tag a {
    color: #fff !important;
}
.tag a:hover {
    text-decoration: none !important;
}

#all_wrap .content span.date {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1em;
    font-style: normal;
    white-space: nowrap;
    padding: 0;
    margin: 0 0 5px;
}

/*日付*/
#all_wrap span.singleDate {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 auto 10px;
    background: none;
    color: #626F77;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    line-height: 1;
}

/*目次*/
#all_wrap .l-wrapper .pageContents .content .toc p,
#all_wrap .l-wrapper .postContents .content .toc p {
    padding: 0;
    margin: 0;
}
.toc {
    position: relative;
    background: #F4F4F4;
    padding: 20px 30px 20px;
    word-break: break-all;
    word-wrap: break-word;
    border: 1px solid #ececec;
    border-radius: 10px;
    transition: all 0.5s ease;
}
#all_wrap .l-wrapper .pageContents .content .toc-title,
#all_wrap .l-wrapper .postContents .content .toc-title {
    text-align: center;
    font-size: 18px;
    margin: 0 auto;
    font-weight: bold;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
}
#all_wrap .l-wrapper .content .toc-title span.dot {
    position: relative;
    width: 9px;
    height: 3px;
    padding: 0;
    margin: 0 10px;
}
#all_wrap .l-wrapper .content .toc-title span.dot::before {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #FBCB00;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
}
#all_wrap .l-wrapper .content .toc-title span.dot::after {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #000;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
}
#all_wrap .l-wrapper .pageContents .content .toc-toggle,
#all_wrap .l-wrapper .postContents .content .toc-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    margin: 0 auto;
}
#all_wrap .l-wrapper .pageContents .content .toc-toggle a,
#all_wrap .l-wrapper .postContents .content .toc-toggle a {
    padding: 5px 10px;
    border: 1px solid #ececec;
    background: #fff;
    border-radius: 20px;
    font-size: 11px;
    line-height: 1;
    font-weight: 400;
    color: #393939;
}
#all_wrap .l-wrapper .pageContents .content ul.toc-list,
#all_wrap .l-wrapper .postContents .content ul.toc-list {
    margin-top: 20px;
    padding: 0;
    list-style: none;
    line-height: 1.7;
    transition: all 0.5s ease;
}
#all_wrap .l-wrapper .pageContents .content ul.toc-list li,
#all_wrap .l-wrapper .postContents .content ul.toc-list li {
    padding: 0;
    margin: 0 auto 30px;
}
#all_wrap .l-wrapper .pageContents .content ul.toc-list li::before,
#all_wrap .l-wrapper .postContents .content ul.toc-list li::before {
    display: none;
}
#all_wrap .l-wrapper .pageContents .content ul.toc-list li:last-child,
#all_wrap .l-wrapper .postContents .content ul.toc-list li:last-child {
    padding: 0;
    margin: 0 auto;
}
#all_wrap .toc-list li::before {
    display: none;
}
.toc-list ul {
    list-style: none;
}
#all_wrap .l-wrapper .pageContents .content ul.toc-list li a,
#all_wrap .l-wrapper .postContents .content ul.toc-list li a {
    font-size: 12px;
    line-height: 1.2em;
    font-weight: 400;
    font-style: normal;
    color: #393939;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    transition: all 0.5s ease;
}
#all_wrap .l-wrapper .pageContents .content ul.toc-list > li > a,
#all_wrap .l-wrapper .postContents .content ul.toc-list > li > a {
    font-size: 15px;
    line-height: 1.2em;
    font-weight: 600;
    font-style: normal;
    color: #393939;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    transition: all 0.5s ease;
}
#all_wrap .l-wrapper .pageContents .content ul.toc-list li a:hover,
#all_wrap .l-wrapper .postContents .content ul.toc-list li a:hover {
    color: #000;
    transition: all 0.5s ease;
}
.contentstable-number {
    display: inline-block;
    padding: 5px;
    margin: 0;
    margin-right: 5px;
    border: 1px solid #ececec;
    background: #fff;
    color: #393939;
    white-space: nowrap;
}
#all_wrap .l-wrapper .pageContents .content ul.toc-list li ul,
#all_wrap .l-wrapper .postContents .content ul.toc-list li ul {
    margin: 10px 0 0 10px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .toc {
        position: relative;
        background: #F4F4F4;
        padding: 20px 30px 20px;
        word-break: break-all;
        word-wrap: break-word;
        border: 1px solid #ececec;
        border-radius: 5px;
        transition: all 0.5s ease;
    }
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .social-bottom {
        width: 90%;
        margin: 0 auto;
    }
}

/*関連記事*/
#all_wrap .related__list {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
#all_wrap .related__list li.related__item {
    width: 49%;
    border: 1px solid rgba(0,0,0,.1);
    padding: 20px;
    margin: 0 0 20px;
}
#all_wrap .related__list li.related__item .eyecatch {
    margin: 0;
}
#all_wrap .related__list li.related__item .dateList {
    margin: 0 auto 10px;
}
#all_wrap .related__list li.related__item h3.heading-secondary {
    font-size: 1em;
}
#all_wrap .related__list li.related__item h3.heading-secondary a {
    transition: 0.5s;
}
#all_wrap .related__list li.related__item h3.heading-secondary a:hover {
    transition: 0.5s;
    color: #165e83;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .related > h2 {
        width: 90%;
        margin: 0 auto 10px;
    }
    #all_wrap .related > p.related__contents {
        width: 90%;
        margin: 0 auto;
    }
    #all_wrap .related__list li.related__item {
        width: 100%;
        border: 1px solid rgba(0,0,0,.1);
        padding: 20px;
        margin: 0 0 10px;
    }
}

/************************************************************/
/*　ブログ　詳細＆サイドバー 
/************************************************************/


/*前後の記事*/
#all_wrap .prevNext {
    width: 100%;
    padding: 0;
    margin: 0 auto;
}
#all_wrap .prevNext__pop {
    background-color: #000;
}
#all_wrap .eyecatch {
    background: #000;
}
#all_wrap .heading-secondary {
    color: #fff;
}
#all_wrap .prevNext__text {
    padding: 0;
    margin: 0;
    color: #fff;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*前後の記事*/
    #all_wrap .prevNext {
        width: 90%;
        padding: 0;
        margin: 0 auto;
    }
}

/*プロフィール*/
#all_wrap .profile {
    border: none;
    margin-top: 0;
    padding: 20px;
    background: #000;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
#all_wrap .profile__text {
    background: none;
    font-size: 16px;
    padding: 0 0 0 13px;
    margin-bottom: 15px;
    margin-top: 40px;
    border-left: 2px solid #d3c8a8;
    font-style: italic;
    text-align: left;
    color: #d3c8a8;
}
#all_wrap .profile__contents {
    width: 80%;
    padding: 0;
    margin: 0;
}
#all_wrap .profile__name {
    color: #d3c8a8;
    font-size: 19px;
    line-height: 1.4em;
    font-style: italic;
    padding: 0 0 10px;
    margin: 0 auto 10px;
    border-bottom: 1px solid #d3c8a8;
}
#all_wrap .profile__author {
    width: 15%;
    text-align: left;
    padding: 0;
    margin: 0 20px 0 0;
}
#all_wrap .profile__author img {
    width: 100%;
    height: auto;
    margin: 0;
}
#all_wrap .profile__list {
    display: none;
}
#all_wrap .profile__description {
    padding: 0;
    margin: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*プロフィール*/
    #all_wrap .profile {
        border: none;
        margin-top: 0;
        padding: 20px;
        background: #000;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    #all_wrap .profile__text {
        background: none;
        font-size: 16px;
        padding: 0 0 0 13px;
        margin-bottom: 15px;
        margin-top: 40px;
        border-left: 2px solid #d3c8a8;
        font-style: italic;
        text-align: left;
        color: #d3c8a8;
    }
    #all_wrap .profile__contents {
        width: 80%;
        padding: 0;
        margin: 0;
    }
    #all_wrap .profile__name {
        color: #d3c8a8;
        font-size: 19px;
        line-height: 1.4em;
        font-style: italic;
        padding: 0 0 10px;
        margin: 0 auto 10px;
        border-bottom: 1px solid #d3c8a8;
    }
    #all_wrap .profile__author {
        width: 15%;
        text-align: left;
        padding: 0;
        margin: 0 0 0 0;
    }
    #all_wrap .profile__author img {
        width: 100%;
        height: auto;
        margin: 0;
    }
    #all_wrap .profile__list {
        display: none;
    }
    #all_wrap .profile__description {
        padding: 0;
        margin: 0;
    }
}


/************************************************************/
/*　トップページ 紹介
/************************************************************/
#topAbout {
	width: 100%;
	padding: 60px;
	margin: 0 auto;
	background: none;
	color: #ff6a8f;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
	z-index: 0;
}
#topAbout::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: #0099dd;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.35;
}
.topAboutInfo {
	width: 50%;
	padding: 0;
	margin: 0;
	display: flex;
	display: -webkit-flex;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	opacity: 0;
}
#topAbout > figure {
	width: calc(50% - 60px);
	padding: 0;
	margin: 0;
	overflow: hidden;
	text-align: center;
	position: relative;
}
#topAbout > figure img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}

#topAbout > .topAboutInfo > h2 {
	width: 100%;
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 600;
	font-size: 35px;
	line-height: 1.4em;
	color: #0099dd;
	padding: 0;
	margin: 0 auto 40px;
	border: none;
	background: none;
}
#topAbout > .topAboutInfo > strong {
	display: block;
	width: 100%;
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 400;
	font-size: 25px;
	line-height: 1.4em;
	color: #383838;
	padding: 0;
	margin: 0 auto 40px;
	border: none;
	background: none;
}
#topAbout > .topAboutInfo > p {
	color: #383838;
	line-height: 2;
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topAbout {
		width: 100%;
		padding: 30px;
		margin: 0 auto;
		background: none;
		color: #ff6a8f;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
		position: relative;
		z-index: 0;
	}
	.topAboutInfo {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		display: flex;
		display: -webkit-flex;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		opacity: 0;
	}
	#topAbout > figure {
		width: calc(100%);
		padding: 0;
		margin: 0;
		overflow: hidden;
		text-align: center;
		position: relative;
	}
	#topAbout > figure img {
		width: 100%;
		height: auto;
		padding: 0;
		margin: 0;
	}

	#topAbout > .topAboutInfo > em {
		display: block;
		width: 100%;
		padding: 0;
		margin: 0 auto 5px;
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		font-weight: 400;
		font-size: 30px;
		line-height: 1;
		color: #0099dd;
		font-style: normal;
	}
	#topAbout > .topAboutInfo > h2 {
		width: 100%;
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		font-weight: 600;
		font-size: 25px;
		line-height: 1.4em;
		color: #0099dd;
		padding: 0;
		margin: 0 auto 20px;
		border: none;
		background: none;
	}
	#topAbout > .topAboutInfo > strong {
		display: block;
		width: 100%;
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		font-weight: 400;
		font-size: 17px;
		line-height: 1.4em;
		color: #383838;
		padding: 0;
		margin: 0 auto 20px;
		border: none;
		background: none;
	}
	#topAbout > .topAboutInfo > p {
		color: #383838;
		line-height: 2;
		padding: 0;
		margin: 0;
		text-align: justify;
		text-justify: inter-ideograph;
	}
}


/************************************************************/
/*　トップページ サービス
/************************************************************/
#topService {
	width: 100%;
	padding: 80px 0;
	margin: 0 auto;
}
#topService > h2 {
	width: 100%;
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 600;
	font-size: 35px;
	line-height: 1.4em;
	color: #0099dd;
	text-align: center;
	padding: 0;
	margin: 0 auto 40px;
	border: none;
	background: none;
}
/*リスト*/
#all_wrap .topServiceList {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	flex-wrap: wrap;
}
#all_wrap .topServiceList > li {
	width: 31%;
	padding: 0;
	margin: 0 1%;
	background: #fafafa;
	opacity: 0;
}
#all_wrap .topServiceList > li figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: center;
	overflow: hidden;
}
#all_wrap .topServiceList > li figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .topServiceList > li figure img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .topServiceList > li .topServiceInfo {
	padding: 20px;
	margin: 0;
}
#all_wrap .topServiceList > li h3 {
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 500;
	color: #0099dd;
	font-size: 22px;
	line-height: 1.2em;
	padding: 0;
	margin: 0 auto 10px;
}
#all_wrap .topServiceList > li p {
	padding: 0;
	margin: 0;
	line-height: 1.7em;
	text-align: justify;
	text-justify: inter-ideograph;
}
#all_wrap .topServiceList > li p small {
	display: block;
	line-height: 1.4em;
	margin-top: 5px;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topService {
		width: 100%;
		padding: 40px 0;
		margin: 0 auto;
	}
	#topService > em {
		display: block;
		width: 100%;
		padding: 0;
		margin: 0 auto 5px;
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		font-weight: 400;
		font-size: 30px;
		line-height: 1;
		color: #0099dd;
		font-style: normal;
		text-align: center;
	}
	#topService > h2 {
		width: 100%;
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		font-weight: 600;
		font-size: 25px;
		line-height: 1.4em;
		color: #0099dd;
		text-align: center;
		padding: 0;
		margin: 0 auto 20px;
		border: none;
		background: none;
	}
	/*リスト*/
	#all_wrap .topServiceList {
		width: calc(100% - 60px);
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		list-style: none;
		display: flex;
		display: -webkit-flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#all_wrap .topServiceList > li {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		background: #fafafa;
		opacity: 0;
	}
	#all_wrap .topServiceList > li:last-child {
		margin-bottom: 0;
	}
	#all_wrap .topServiceList > li h3 {
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		font-weight: 500;
		color: #0099dd;
		font-size: 20px;
		line-height: 1.2em;
		padding: 0;
		margin: 0 auto 10px;
	}
}


/************************************************************/
/*　トップページ 新着情報
/************************************************************/
#topNews {
	width: 100%;
	padding: 0 0 80px;
	margin: 0;
	position: relative;
}
#topNews .topNewsHead {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto 80px;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	overflow: hidden;
	background-size: cover;
	background-position: center top;
	background-attachment: fixed;
	background-repeat: no-repeat;
	z-index: 0;
}
#topNews .topNewsHead::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,153,221,0.1);
	z-index: -1;
}

/*見出し*/
#topNews .topNewsHead > h2 {
	width: 100%;
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 600;
	font-size: 35px;
	line-height: 1.4em;
	color: #0099dd;
	text-align: center;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
}
/*リスト*/
#all_wrap .newsList {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	border-top: 1px solid rgba(0,0,0,0.1);
}
#all_wrap .newsList > li {
	width: 100%;
	padding: 30px;
	margin: 0 auto;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	opacity: 0;
}
#all_wrap .newsList > li .news_date {
	display: inline-block;
	padding: 0;
	margin: 0 30px 0 0;
	font-family: 'Raleway', sans-serif;
	font-weight: lighter;
	font-size: 15px;
	line-height: 1.4em;
	color: #999;
	white-space: nowrap;
}
#all_wrap .newsList > li h3 {
	width: auto;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
}
#all_wrap .newsList > li h3 a {
	font-size: 15px;
	line-height: 1.4em;
	font-weight: 400;
	padding: 0;
	margin: 0;
	text-decoration: none;
	transition: all 0.5s ease;
}
#all_wrap .newsList > li h3 a:hover {
	color: #0099dd;
	text-decoration: underline;
	transition: all 0.5s ease;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topNews {
		width: 100%;
		padding: 0 0 40px;
		margin: 0;
		position: relative;
	}
	#topNews .topNewsHead {
		width: 100%;
		padding: 50px 0;
		margin: 0 auto 40px;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		overflow: hidden;
		background-size: 100%;
		background-position: center top;
		background-attachment: local;
		background-repeat: no-repeat;
		z-index: 0;
	}
	#topNews .topNewsHead::after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0,153,221,0.1);
		z-index: -1;
	}

	/*見出し*/
	#topNews .topNewsHead > h2 {
		width: 100%;
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		font-weight: 600;
		font-size: 25px;
		line-height: 1.4em;
		color: #0099dd;
		text-align: center;
		padding: 0;
		margin: 0 auto;
		border: none;
		background: none;
	}
	/*リスト*/
	#all_wrap .newsList {
		width: calc(100% - 60px);
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		list-style: none;
		border-top: 1px solid rgba(0,0,0,0.1);
	}
	#all_wrap .newsList > li {
		width: 100%;
		padding: 15px 0;
		margin: 0 auto;
		border-bottom: 1px solid rgba(0,0,0,0.1);
		display: flex;
		display: -webkit-flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		opacity: 0;
	}
	#all_wrap .newsList > li .news_date {
		display: block;
		width: 100%;
		padding: 0;
		margin: 0 auto 5px;
		font-family: 'Raleway', sans-serif;
		font-weight: lighter;
		font-size: 12px;
		line-height: 1.4em;
		color: #999;
		white-space: nowrap;
	}
	#all_wrap .newsList > li h3 {
		width: auto;
		padding: 0;
		margin: 0;
		border: none;
		background: none;
	}
	#all_wrap .newsList > li h3 a {
		font-size: 14px;
		line-height: 1.4em;
		font-weight: 400;
		padding: 0;
		margin: 0;
		text-decoration: none;
		transition: all 0.5s ease;
	}
	#all_wrap .newsList > li h3 a:hover {
		color: #0099dd;
		text-decoration: underline;
		transition: all 0.5s ease;
	}
}


/************************************************************/
/*　Moreボタン
/************************************************************/
.moreBtn {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	margin-top: 30px;
	text-align: center;
}
.moreBtn > a {
	padding: 20px 100px;
	margin: 0 auto;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	background: #ff6a8f;
	border-radius: 40px;
	border: none;
	color: #fff;
	cursor: pointer;
	transition: all 0.5s ease;
}
.moreBtn > a:hover {
	background: #0099dd;
	opacity: 1;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.moreBtn {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		margin-top: 20px;
		text-align: center;
	}
	.moreBtn > a {
		padding: 15px 30px;
		margin: 0 auto;
		display: inline-block;
		font-size: 14px;
		font-weight: 600;
		background: #ff6a8f;
		border-radius: 40px;
		border: none;
		color: #fff;
		cursor: pointer;
		transition: all 0.5s ease;
	}
}


/************************************************************/
/*　トップページ CSM
/************************************************************/
.topCsm {
	width: 100%;
	padding: 80px 0;
	margin: 0 auto;
	background: #fff;
}
#all_wrap .topCsm > h2 {
	width: 100%;
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 600;
	font-size: 35px;
	line-height: 1.4em;
	color: #0099dd;
	text-align: center;
	padding: 0;
	margin: 0 auto 40px;
	border: none;
	background: none;
}
.topCsmContent {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
}
#all_wrap .topCsmContent > h3 {
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1;
	color: #0099dd;
	text-align: center;
	padding: 0;
	margin: 0 auto 20px;
	border: none;
	background: none;
}
#all_wrap .topCsmContent > p {
	padding: 0;
	margin-top: 0;
	margin-bottom: 40px;
}
#all_wrap .scroll {
	scrollbar-width: none; /*Firefox対応のスクロールバー非表示コード*/  
	-ms-overflow-style: none;/*Internet Explore対応のスクロールバー非表示コード*/ 
}
#all_wrap .scroll {
	overflow-y: visible;
}
#all_wrap .scroll::-webkit-scrollbar {  
	display: none; /*Google Chrome、Safari、Microsoft Edge対応のスクロールバー非表示コード*/
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.topCsm {
		width: 100%;
		padding: 40px 0;
		margin: 0 auto;
		background: #fff;
	}
	#all_wrap .topCsm > h2 {
		width: calc(100% - 60px);
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		font-weight: 600;
		font-size: 25px;
		line-height: 1.4em;
		color: #0099dd;
		text-align: center;
		padding: 0;
		margin: 0 auto 20px;
		border: none;
		background: none;
	}
	#all_wrap .topCsmContent > h3 {
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		font-weight: 600;
		font-size: 20px;
		line-height: 1.2em;
		color: #0099dd;
		text-align: center;
		padding: 0;
		margin: 0 auto 20px;
		border: none;
		background: none;
	}
	.topCsmContent {
		width: calc(100% - 60px);
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap .topCsmContent > p {
		padding: 0;
		margin-top: 0;
		margin-bottom: 20px;
	}
	
	/*フレックス3列*/
	#all_wrap .topCsm .flexBox {
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		align-content: stretch;
		align-items: stretch;
		flex-wrap: wrap;
		margin-bottom: 0;
		position: relative;
	}
	#all_wrap .topCsm .flexBox::after {
		content: '';
		display: none;
	}
	#all_wrap .topCsm .flexBox > div {
		width: 100%;
		padding: 0;
		margin: 0 0 30px;
	}
	#all_wrap .topCsm .flexBox > div > img {
		width: 100%;
		height: auto;
		padding: 0;
		margin: 0;
	}
	
	#all_wrap .topCsm .flexBox table {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	
	#all_wrap .scroll {
		overflow-y: visible;
	}
	
	#all_wrap .price-table {
		width: 150%;
	}
}

/************************************************************/
/*　トップページ スケジュール
/************************************************************/
.topCsm .flexBox h3 {
	padding: 0;
	margin: 0 auto 20px;
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1;
	color: #ff6a8f;
	text-align: center;
}

/************************************************************/
/*　トップページ スケジュール
/************************************************************/
#topCsm-3 p > strong {
	display: block;
	width: 100%;
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 400;
	font-size: 25px;
	line-height: 1.4em;
	color: #383838;
	padding: 0;
	margin: 0 auto 20px;
	border: none;
	background: none;
}
#topCsm-3 .topCsmContent p {
	padding: 0;
	margin: 0 auto 40px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topCsm-3 p > strong {
		display: block;
		width: 100%;
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		font-weight: 400;
		font-size: 18px;
		line-height: 1.4em;
		color: #383838;
		padding: 0;
		margin: 0 auto 20px;
		border: none;
		background: none;
	}
	#topCsm-3 .topCsmContent p {
		padding: 0;
		margin: 0 auto 20px;
	}
}

/************************************************************/
/*　トップページ アクセスマップ
/************************************************************/
#topAccess {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#topAccess > figure {
	width: 50%;
	padding: 0;
	margin: 0;
	overflow: hidden;
}
#topAccess > figure iframe {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}
/*情報*/
#topAccess > .topAccessInfo {
	width: 50%;
	padding: 80px;
	margin: 0;
	opacity: 0;
}
/*見出し*/
#topAccess > .topAccessInfo > h2 {
	width: 100%;
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 600;
	font-size: 35px;
	line-height: 1.4em;
	color: #0099dd;
	text-align: left;
	padding: 0;
	margin: 0 auto 30px;
	border: none;
	background: none;
}
#topAccess .topAboutTxt > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1;
	color: #0099dd;
	text-align: left;
	background: none;
	border: none;
}
#all_wrap #topAccess .topAboutTxt > p {
	padding: 0;
	margin: 0;
	line-height: 1.7em;
	text-align: justify;
	text-justify: inter-ideograph;
}
#all_wrap #topAccess .topAboutTxt > p.mb20 {
	margin-bottom: 20px;
}
#all_wrap #topAccess .topAboutTxt > p a {
	color: #ff6a8f;
	text-decoration: none;
	transition: all 0.5s ease;
}
#all_wrap #topAccess .topAboutTxt > p a:hover {
	color: #ff6a8f;
	text-decoration: underline;
	transition: all 0.5s ease;
}
#all_wrap #topAccess .topAboutTxt > .other > p {
	padding: 0;
	margin: 0 auto 15px;
	line-height: 1.2em;
}
#all_wrap #topAccess .topAboutTxt > .other > br {
	padding: 0;
	margin: 0;
	display: none;
}
#all_wrap #topAccess .topAboutTxt > .other > h4 {
	padding: 0;
	margin: 0 auto 10px;
	font-size: 16px;
	font-weight: 600;
}
#all_wrap #topAccess .topAboutTxt > .other > ul {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	list-style: none;
}
#all_wrap #topAccess .topAboutTxt > .other > ul br {
	display: none;
}
#all_wrap #topAccess .topAboutTxt > .other > ul > li {
	padding: 0;
	margin: 0 auto 7px;
	line-height: 1.4em;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topAccess {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#topAccess > figure {
		width: 100%;
		height: 300px;
		padding: 0;
		margin: 0;
		overflow: hidden;
		order: 1;
	}
	#topAccess > figure iframe {
		width: 100%;
		height: 100%;
		padding: 0;
		margin: 0;
	}
	/*情報*/
	#topAccess > .topAccessInfo {
		width: 100%;
		padding: 30px;
		margin: 0 auto;
		opacity: 0;
		background: #fff;
	}
	/*見出し*/
	#topAccess > .topAccessInfo > em {
		display: block;
		width: 100%;
		padding: 0;
		margin: 0 auto 5px;
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		font-weight: 400;
		font-size: 30px;
		line-height: 1;
		color: #0099dd;
		font-style: normal;
		text-align: center;
	}
	#topAccess > .topAccessInfo > h2 {
		width: 100%;
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		font-weight: 600;
		font-size: 25px;
		line-height: 1.4em;
		color: #0099dd;
		text-align: center;
		padding: 0;
		margin: 0 auto 20px;
		border: none;
		background: none;
	}
	#topAccess .topAboutTxt > h3 {
		width: 100%;
		padding: 0;
		margin: 0 auto 5px;
		font-size: 16px;
		line-height: 1;
		font-weight: bold;
		color: #0099dd;
		text-align: left;
		background: none;
		border: none;
	}
	#topAccess .topAboutTxt > p {
		padding: 0;
		margin: 0;
		line-height: 1.7em;
		text-align: justify;
		text-justify: inter-ideograph;
	}
	#topAccess .topAboutTxt > p.mb20 {
		margin-bottom: 20px;
	}
	#topAccess .topAboutTxt > p a {
		color: #ff6a8f;
		text-decoration: none;
		transition: all 0.5s ease;
	}
	#topAccess .topAboutTxt > p a:hover {
		color: #ff6a8f;
		text-decoration: underline;
		transition: all 0.5s ease;
	}
}

/************************************************************/
/*　トップページ お問い合わせ
/************************************************************/
#topContact {
	width: 100%;
	padding: 80px 0;
	margin: 0;
	position: relative;
}
/*見出し*/
#topContact > h2 {
	width: 100%;
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 600;
	font-size: 35px;
	line-height: 1.4em;
	color: #0099dd;
	text-align: center;
	padding: 0;
	margin: 0 auto 30px;
	border: none;
	background: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topContact {
		width: 100%;
		padding: 40px 0;
		margin: 0;
		position: relative;
	}
	/*見出し*/
	#topContact > em {
		display: block;
		width: 100%;
		padding: 0;
		margin: 0 auto 5px;
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		font-weight: 400;
		font-size: 30px;
		line-height: 1;
		color: #0099dd;
		font-style: normal;
		text-align: center;
	}
	#topContact > h2 {
		width: 100%;
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		font-weight: 600;
		font-size: 25px;
		line-height: 1.4em;
		color: #0099dd;
		text-align: center;
		padding: 0;
		margin: 0 auto 20px;
		border: none;
		background: none;
	}
}


/************************************************************/
/*　店舗・アクセスマップ　ギャラリー
/************************************************************/
#all_wrap #pageGallery {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#all_wrap #pageGallery ul.slider {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	opacity: 0;
	position: relative;
	z-index: 10;
	visibility: hidden;
	transition: ease 0.2s;
}
#all_wrap #pageGallery ul.slider.slick-initialized {
	visibility: visible;
	opacity: 1;
	transition: ease 0.2s;
}
#all_wrap #pageGallery ul.slider .slick-list {
	padding: 0;
	margin: 0;
}
#all_wrap #pageGallery ul.slider .slick-track {
	width: 90%;
	padding: 0;
	margin: 0;
}
#all_wrap #pageGallery ul.slider .slick-track > li {
	padding: 0;
	margin: 0 10px;
	outline: none;
	width: 300px;
	transform: scale(0.8);
	transform-origin: 50% 50%;
	transition: .5s ease;
}
#all_wrap #pageGallery ul.slider .slick-track > li.slick-current {
	padding: 0;
	margin: 0 10px;
	outline: none;
	transform: scale(1);
	transform-origin: 50% 50%;
	transition: .5s ease;
}
#all_wrap #pageGallery ul.slider li figure {
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}
#all_wrap #pageGallery ul.slider li figure:before {
	content:"";
	display: block;
	padding-top: 56.25%; /* 高さと幅の比を16:9に固定。9/16*100=56.25 */
}
#all_wrap #pageGallery ul.slider li figure img {
	width: 100%;
	height: auto;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1.00);
	-webkit-transform: translate(-50%, -50%) scale(1.00);
	-ms-transform: translate(-50%, -50%) scale(1.00);
	padding: 0;
	margin: 0;
	transition: 0.5s;
}
#all_wrap #pageGallery ul.slider li figure a h3 {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	border: none;
	background: none;
	font-size: 15px;
	line-height: 1.4em;
	color: #fff;
	white-space: nowrap;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.3);
	opacity: 0;
	transition: 0.5s;
	z-index: 5;
}
#all_wrap #pageGallery ul.slider li figure a:hover h3 {
	opacity: 1;
	transition: 0.5s;
}
#all_wrap #pageGallery .slick-dots {
	list-style: none;
	padding: 30px 0 0;
	margin: 0;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}
#all_wrap #pageGallery .slick-dots li::before {
	display: none;
}
#all_wrap #pageGallery .slick-dots li button {
	background: none;
	border: 1px solid #1e1e1e;
	cursor: pointer;
	outline: none;
	padding: 0;
	margin: 0;
	appearance: none;
	width: 7px;
	height: 7px;
	text-indent: -9999px;
	border-radius: 50%;
	box-shadow: none;
}
#all_wrap #pageGallery .slick-dots li.slick-active button {
	background-color: #1e1e1e;
}
#all_wrap #pageGallery .slick-dots li {
	padding: 0;
	margin: 0 5px;
	outline: none;
	width: 7px;
	background: none;
}

/*矢印 左*/
#all_wrap #pageGallery .slick-prev {
	width: 30px;
	height: 30px;
	background: none;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	position: absolute;
	top: 40%;
	left: 50px;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	margin: 0;
	z-index: 15;
	text-indent: -9999px;
	transition: ease 0.2s;
}
#all_wrap #pageGallery .slick-prev::before {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	border-top: 1px solid #1e1e1e;
	border-right: 1px solid #1e1e1e;
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translate(0, -50%) rotate(-135deg);
	-webkit-transform: translate(0, -50%) rotate(-135deg);
	-ms-transform: translate(0, -50%) rotate(-135deg);
	z-index: 15;
}

/*矢印 右*/
#all_wrap #pageGallery .slick-next {
	width: 30px;
	height: 30px;
	background: none;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	position: absolute;
	top: 40%;
	right: 50px;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	margin: 0;
	z-index: 15;
	text-indent: -9999px;
	transition: ease 0.2s;
}
#all_wrap #pageGallery .slick-next::before {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	border-top: 1px solid #1e1e1e;
	border-right: 1px solid #1e1e1e;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0, -50%) rotate(45deg);
	-webkit-transform: translate(0, -50%) rotate(45deg);
	-ms-transform: translate(0, -50%) rotate(45deg);
	z-index: 15;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){

	/*ギャラリー*/
	#all_wrap #pageGallery {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		z-index: 0;
	}
	#all_wrap #pageGallery ul.slider {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		list-style: none;
		opacity: 0;
		position: relative;
		z-index: 10;
		visibility: hidden;
		transition: ease 0.2s;
	}
	#all_wrap #pageGallery ul.slider.slick-initialized {
		visibility: visible;
		opacity: 1;
		transition: ease 0.2s;
	}
	#all_wrap #pageGallery ul.slider .slick-list {
		padding: 0;
		margin: 0;
	}
	#all_wrap #pageGallery ul.slider .slick-track {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	#all_wrap #pageGallery ul.slider .slick-track > li {
		padding: 0;
		margin: 0 10px;
		outline: none;
		width: 400px;
		transform: scale(0.8);
		transform-origin: 50% 50%;
		transition: .5s ease;
	}
	#all_wrap #pageGallery ul.slider .slick-track > li.slick-current {
		padding: 0;
		margin: 0 10px;
		outline: none;
		transform: scale(1);
		transform-origin: 50% 50%;
		transition: .5s ease;
	}
	#all_wrap #pageGallery ul.slider li figure {
		width: 100%;
		margin: 0;
		padding: 0;
		text-align: center;
		position: relative;
		overflow: hidden;
	}
	#all_wrap #pageGallery ul.slider li figure:before {
		content:"";
		display: block;
		padding-top: 100%; /* 高さと幅の比を16:9に固定。9/16*100=56.25 */
	}
	#all_wrap #pageGallery ul.slider li figure img {
		width: auto;
		height: 100%;
		object-fit: cover;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) scale(1.00);
		-webkit-transform: translate(-50%, -50%) scale(1.00);
		-ms-transform: translate(-50%, -50%) scale(1.00);
		padding: 0;
		margin: 0;
		transition: 0.5s;
	}
	#all_wrap #pageGallery .slick-dots {
		list-style: none;
		padding: 30px 0 0;
		margin: 0;
		display: -webkit-flex;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
	}
	#all_wrap #pageGallery .slick-dots li::before {
		display: none;
	}
	#all_wrap #pageGallery .slick-dots li button {
		background: none;
		border: 1px solid #1e1e1e;
		cursor: pointer;
		outline: none;
		padding: 0;
		margin: 0;
		appearance: none;
		width: 7px;
		height: 7px;
		text-indent: -9999px;
		border-radius: 50%;
		box-shadow: none;
	}
	#all_wrap #pageGallery .slick-dots li.slick-active button {
		background-color: #1e1e1e;
	}
	#all_wrap #pageGallery .slick-dots li {
		padding: 0;
		margin: 0 5px;
		outline: none;
		width: 7px;
		background: none;
	}

	/*矢印 左*/
	#all_wrap #pageGallery .slick-prev {
		width: 30px;
		height: 30px;
		background: none;
		border: none;
		cursor: pointer;
		outline: none;
		padding: 0;
		appearance: none;
		position: absolute;
		top: 45%;
		left: 10px;
		transform: translate(0, -50%);
		-webkit-transform: translate(0, -50%);
		-ms-transform: translate(0, -50%);
		margin: 0;
		z-index: 15;
		text-indent: -9999px;
		transition: ease 0.2s;
	}
	#all_wrap #pageGallery .slick-prev::before {
		content: '';
		display: block;
		width: 15px;
		height: 15px;
		border-top: 1px solid #1e1e1e;
		border-right: 1px solid #1e1e1e;
		position: absolute;
		top: 50%;
		left: 15px;
		transform: translate(0, -50%) rotate(-135deg);
		-webkit-transform: translate(0, -50%) rotate(-135deg);
		-ms-transform: translate(0, -50%) rotate(-135deg);
		z-index: 15;
	}

	/*矢印 右*/
	#all_wrap #pageGallery .slick-next {
		width: 30px;
		height: 30px;
		background: none;
		border: none;
		cursor: pointer;
		outline: none;
		padding: 0;
		appearance: none;
		position: absolute;
		top: 45%;
		right: 10px;
		transform: translate(0, -50%);
		-webkit-transform: translate(0, -50%);
		-ms-transform: translate(0, -50%);
		margin: 0;
		z-index: 15;
		text-indent: -9999px;
		transition: ease 0.2s;
	}
	#all_wrap #pageGallery .slick-next::before {
		content: '';
		display: block;
		width: 15px;
		height: 15px;
		border-top: 1px solid #1e1e1e;
		border-right: 1px solid #1e1e1e;
		position: absolute;
		top: 50%;
		right: 15px;
		transform: translate(0, -50%) rotate(45deg);
		-webkit-transform: translate(0, -50%) rotate(45deg);
		-ms-transform: translate(0, -50%) rotate(45deg);
		z-index: 15;
	}
}



/************************************************************/
/* フロウチャート
/************************************************************/
#all_wrap .flowList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	flex-wrap: nowrap;
	position: relative;
	list-style: none;
}
#all_wrap .flowList > li {
	width: auto;
	padding: 0;
	margin: 0 15px;
	background: #fafafa;
	position: relative;
}
#all_wrap .flowList > li:first-child {
	margin-left: 0;
}
#all_wrap .flowList > li:last-child {
	margin-right: 0;
}
#all_wrap .flowList > li::after {
	content: '';
	display: block;
	width: 10px;
	height: 12px;
	padding: 0;
	margin: 0;
	background: #ff6a8f;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	position: absolute;
	top: 50%;
	right: -20px;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
}
#all_wrap .flowList > li:last-child::after {
	display: none;
}
#all_wrap .flowList > li > h3 {
	width: 100%;
	padding: 10px 15px;
	margin: 0;
	background: #0099dd;
	border: none;
	font-size: 15px;
	line-height: 1.4em;
	color: #fff;
	text-align: center;
	white-space: nowrap;
}
#all_wrap .flowList > li > h3 > span {
	display: block;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 0.8em;
}
#all_wrap .flowList > li > p {
	padding: 20px;
	margin: 0;
	font-size: 14px;
	line-height: 1.7em;
	text-align: justify;
	text-justify: inter-ideograph;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .flowList {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		display: flex;
		display: -webkit-flex;
		justify-content: center;
		flex-wrap: wrap;
		position: relative;
		list-style: none;
	}
	#all_wrap .flowList > li {
		width: 100%;
		padding: 0;
		margin: 0 auto 30px;
		background: #fafafa;
		position: relative;
	}
	#all_wrap .flowList > li:first-child {
		margin-left: 0;
	}
	#all_wrap .flowList > li:last-child {
		margin-right: 0;
	}
	#all_wrap .flowList > li::after {
		content: '';
		display: block;
		width: 12px;
		height: 10px;
		padding: 0;
		margin: 0;
		background: #ff6a8f;
		clip-path: polygon(0 0, 50% 100%, 100% 0);
		position: absolute;
		top: unset;
		bottom: -20px;
		right: unset;
		left: 50%;
		transform: translate(-50%,0);
		-webkit-transform: translate(-50%,0);
	}
	#all_wrap .flowList > li:last-child::after {
		display: none;
	}
	#all_wrap .flowList > li > h3 {
		width: 100%;
		padding: 10px 15px;
		margin: 0;
		background: #0099dd;
		border: none;
		font-size: 15px;
		line-height: 1.4em;
		color: #fff;
		text-align: center;
		white-space: nowrap;
	}
	#all_wrap .flowList > li > h3 > span {
		display: block;
		padding: 0;
		margin: 0 auto;
		text-align: center;
		font-size: 0.8em;
	}
	#all_wrap .flowList > li > p {
		padding: 20px;
		margin: 0;
		font-size: 14px;
		line-height: 1.7em;
		text-align: justify;
		text-justify: inter-ideograph;
	}
}



/************************************************************/
/*　事例
/************************************************************/
#topCase {
	width: 100%;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
}
#topCase > h2 {
	width: 100%;
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 600;
	font-size: 35px;
	line-height: 1.4em;
	color: #0099dd;
	text-align: center;
	padding: 0;
	margin: 0 auto 40px;
	border: none;
	background: none;
}
#all_wrap .caseList {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}
#all_wrap .caseList::after {
	content: '';
	display: block;
	width: 31%;
}
#all_wrap .caseList > li {
	width: 31%;
	padding: 0;
	margin: 0;
	background: none;
	opacity: 0;
}
#all_wrap.sub_page .caseList > li {
	width: 31%;
	padding: 0;
	margin: 0 0 40px;
	background: none;
	opacity: 0;
}
#all_wrap .caseList > li figure {
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	position: relative;
	text-align: center;
	overflow: hidden;
}
#all_wrap .caseList > li figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .caseList > li figure img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .caseList > li > h3 {
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
}
#all_wrap .caseList > li > h3 a {
	font-size: 15px;
	line-height: 1.4em;
	font-weight: 400;
	padding: 0;
	margin: 0;
	text-decoration: none;
	transition: all 0.5s ease;
}
#all_wrap .caseList > li > h3 a:hover {
	color: #0099dd;
	text-decoration: underline;
	transition: all 0.5s ease;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topCase {
		width: 100%;
		padding: 40px 0 0;
		margin: 0 auto 40px;
		position: relative;
	}
	#topCase > h2 {
		width: 100%;
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		font-weight: 600;
		font-size: 25px;
		line-height: 1.4em;
		color: #0099dd;
		text-align: center;
		padding: 0;
		margin: 0 auto 20px;
		border: none;
		background: none;
	}
	#all_wrap .caseList {
		width: calc(100% - 60px);
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		list-style: none;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
		position: relative;
	}
	#all_wrap .caseList::after {
		content: '';
		display: none;
	}
	#all_wrap .caseList > li {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		background: none;
		opacity: 0;
	}
	#all_wrap.sub_page .caseList > li {
		width: 100%;
		padding: 0;
		margin: 0 0 20px;
		background: none;
		opacity: 0;
	}
	#all_wrap .caseList > li figure {
		width: 100%;
		padding: 0;
		margin: 0 auto 15px;
		position: relative;
		text-align: center;
		overflow: hidden;
	}
	#all_wrap .caseList > li > h3 a {
		font-size: 18px;
		line-height: 1.4em;
		font-weight: 500;
		padding: 0;
		margin: 0;
		text-decoration: none;
		transition: all 0.5s ease;
	}
}


/*--------------------------------------------*/
/*  フロアコーティング - 実績詳細
/*--------------------------------------------*/

#cfCaseTable {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto 50px;
}
#cfCaseTable > table {
	width: 100%;
	padding: 0;
	margin: 0;
	background: none;
	border: none;
	position: relative;
}
#cfCaseTable > table tr {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	flex-wrap: nowrap;
	padding: 0;
	margin: 0 auto 5px;
}
#cfCaseTable > table thead th {
	width: 100%;
	background: #0099dd;
	border: none;
	vertical-align: middle;
	text-align: center;
	position: relative;
	color: #fff;
	font-weight: bold;
	padding: 10px;
	margin: 0;
}
#cfCaseTable > table tbody th {
	width: 20%;
	max-width: 150px;
	padding: 15px;
	margin: 0;
	border: none;
	background-color: rgba(0,153,221,0.5);
	color: #fff;
	text-align: center;
	vertical-align: middle;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
#cfCaseTable > table tbody th::after {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(0,153,221,0);
	border-left-color: rgba(0,153,221,0.5);
	border-width: 10px;
	margin-top: -10px;
}
#cfCaseTable > table tbody td {
	width: 100%;
	border: none;
	background: #fafafa;
	padding: 15px 15px 15px 20px;
	margin: 0;
	text-align: left;
	line-height: 1.7;
}

.cfCaseDetailImg {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}
.cfCaseDetailImg > h3 {
	width: 100%;
	padding: 10px;
	margin: 0 auto 20px;
	text-align: center;
	background: #0099dd;
	font-weight: bold;
	color: #fff;
}
.cfCaseDetailImg_left {
	width: 47%;
	padding: 0;
	margin: 0;
}
.cfCaseDetailImg_right {
	width: 47%;
	padding: 0;
	margin: 0;
}
.cfCaseDetailImg h4 {
	font-size: 14px;
	font-weight: 600;
	padding: 0;
	margin: 0 auto 10px;
	text-align: center;
	background: none;
	border: none;
}
.cfCaseDetailImg span {
	display: block;
	position: relative;
}
.cfCaseDetailImg span::before {
	content: '';
	display: block;
	width: 10px;
	height: 15px;
	padding: 0;
	margin: 0;
	background: #0099dd;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
}
.cfCaseDetailImg figure {
	width: 1005;
	padding: 0;
	margin: 0;
}
.cfCaseDetailImg figure img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 640px){
	#cfCaseTable {
		width: calc(100% - 60px);
		max-width: 100%;
		padding: 0;
		margin: 0 auto 30px;
	}
	#cfCaseTable > table {
		width: 100%;
		padding: 0;
		margin: 0;
		background: none;
		border: none;
		position: relative;
	}
	#cfCaseTable > table tr {
		display: flex;
		display: -webkit-flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		padding: 0;
		margin: 0 auto 5px;
	}
	#cfCaseTable > table thead th {
		width: 100%;
		background: #0099dd;
		border: none;
		vertical-align: middle;
		text-align: center;
		position: relative;
		color: #fff;
		font-weight: bold;
		padding: 10px;
		margin: 0;
		white-space: nowrap;
	}
	#cfCaseTable > table tbody th {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		padding: 10px;
		margin: 0;
		border: none;
		background: rgba(0,153,221,0.5);
		color: #fff;
		text-align: center;
		vertical-align: middle;
		position: relative;
		white-space: nowrap;
	}
	#cfCaseTable > table tbody th::after {
		left: calc(50% - 10px);
		top: unset;
		bottom: -20px;
		border: solid transparent;
		content: " ";
		height: 0;
		width: 0;
		position: absolute;
		pointer-events: none;
		border-color: rgba(0,153,221,0);
		border-top-color: rgba(0,153,221,0.5);
		border-width: 10px;
		margin-top: 0;
	}
	#cfCaseTable > table tbody td {
		width: 100%;
		border: none;
		background: #fafafa;
		padding: 20px 10px 10px 20px;
		margin: 0;
		text-align: left;
	}

	.cfCaseDetailImg {
		width: calc(100% - 60px);
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
		position: relative;
	}
	.cfCaseDetailImg > h3 {
		width: 100%;
		padding: 10px;
		margin: 0 auto 20px;
		text-align: center;
		background: #0099dd;
		font-weight: bold;
		color: #fff;
	}
	.cfCaseDetailImg_left {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.cfCaseDetailImg_right {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.cfCaseDetailImg h4 {
		font-size: 14px;
		font-weight: 600;
		padding: 0;
		margin: 0 auto 10px;
		text-align: center;
		background: none;
		border: none;
	}
	.cfCaseDetailImg span {
		display: block;
		width: 100%;
		height: 30px;
		position: relative;
	}
	.cfCaseDetailImg span::before {
		content: '';
		display: block;
		width: 10px;
		height: 15px;
		padding: 0;
		margin: 0;
		background: #0099dd;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		position: absolute;
		top: 55%;
		left: 50%;
		transform: translate(-50%,-50%) rotate(90deg);
		-webkit-transform: translate(-50%,-50%) rotate(90deg);
	}
}


/************************************************************/
/*　ブログ
/************************************************************/
#topBlog {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	background: #fafafa;
}
#topBlog > h2 {
	width: 100%;
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 600;
	font-size: 35px;
	line-height: 1.4em;
	color: #0099dd;
	text-align: center;
	padding: 0;
	margin: 0 auto 40px;
	border: none;
	background: none;
}
#all_wrap .blogList {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}
#all_wrap .blogList::after {
	content: '';
	display: block;
	width: 31%;
}
#all_wrap .blogList > li {
	width: 31%;
	padding: 0;
	margin: 0;
	background: none;
	opacity: 0;
}
#all_wrap.sub_page .blogList > li {
	width: 31%;
	padding: 0;
	margin: 0 0 40px;
	background: none;
	opacity: 0;
}
#all_wrap .blogList > li figure {
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	position: relative;
	text-align: center;
	overflow: hidden;
}
#all_wrap .blogList > li figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .blogList > li figure img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .blogList > li .news_date {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto 3px;
	font-size: 12px;
	line-height: 1;
	color: #c8c8c8;
}
#all_wrap .blogList > li > h3 {
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
}
#all_wrap .blogList > li > h3 a {
	font-size: 15px;
	line-height: 1.4em;
	font-weight: 400;
	padding: 0;
	margin: 0;
	text-decoration: none;
	transition: all 0.5s ease;
}
#all_wrap .caseList > li > h3 a:hover {
	color: #0099dd;
	text-decoration: underline;
	transition: all 0.5s ease;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topBlog {
		width: 100%;
		padding: 40px 0;
		margin: 0 auto;
		position: relative;
	}
	#topBlog > h2 {
		width: 100%;
		font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		font-weight: 600;
		font-size: 25px;
		line-height: 1.4em;
		color: #0099dd;
		text-align: center;
		padding: 0;
		margin: 0 auto 20px;
		border: none;
		background: none;
	}
	#all_wrap .blogList {
		width: calc(100% - 60px);
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		list-style: none;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
		position: relative;
	}
	#all_wrap .blogList::after {
		content: '';
		display: none;
	}
	#all_wrap .blogList > li {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		background: none;
		opacity: 0;
	}
	#all_wrap .blogList > li figure {
		width: 100%;
		padding: 0;
		margin: 0 auto 15px;
		position: relative;
		text-align: center;
		overflow: hidden;
	}
	#all_wrap .blogList > li .news_date {
		display: block;
		width: 100%;
		padding: 0;
		margin: 0 auto 3px;
		font-size: 14px;
		line-height: 1;
		color: #c8c8c8;
	}
	#all_wrap .blogList > li > h3 a {
		font-size: 18px;
		line-height: 1.4em;
		font-weight: 500;
		padding: 0;
		margin: 0;
		text-decoration: none;
		transition: all 0.5s ease;
	}
}