@charset "UTF-8";

/*----------------------------------------------------------*/
/* カスタマイズ用CSS
/*----------------------------------------------------------*/
:root {
	--baseColor: #236496;
	--textColor: #1e1e1e;
	--backColor: #F5F6F7;
	--ease-out: cubic-bezier(0.30, 1.00, 0.30, 1.00);
	--ease-in: cubic-bezier(0.75, 0.05, 0.9, 0.05);
	--ease-inout: cubic-bezier(0.85, 0.00, 0.07, 1.00);
	--font-jp: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	--font-en: "Montserrat";
}
*{
    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: var(--font-jp);
	font-style: normal;
	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: #1e1e1e;
}

#all_wrap { position: relative; }
#all_wrap .content a { color: #1e1e1e; font-weight: 400; transition: ease 0.2s; }
#all_wrap .content a:hover { color: #1e1e1e; 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: #1e1e1e; font-weight: 400; transition: ease 0.2s; }
#all_wrap .single_content a:hover { color: ##1e1e1e; font-weight: 400; text-decoration: underline; transition: ease 0.2s; }


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap { position: relative; overflow: hidden; }
    #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: 100px;
    right: 20px;
    z-index: 999;
}
#to_top > img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}
.bottomFooter__topBtn {
	color: #00a0e9;
}

/*reCAPTCHA*/
.grecaptcha-badge {
	z-index: 999;
}

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

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

/*全体徐々に表示*/
.fadein {
	animation: fadein 3s forwards;
}
@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}

/*フワッと表示*/
.anime.anime_fade {
	transition: 2.1s var(--ease-out);
	opacity: 0;
}
.anime.anime_fade.active {
	transition: 2.1s var(--ease-out);
	opacity: 1;
}

/*下からフワッと*/
.anime.anime_btm {
	transform: translate(0,50px);
	transition: 2.1s var(--ease-out);
	opacity: 0;
}
.anime.anime_btm.active {
	transform: translate(0,0);
	transition: 2.1s var(--ease-out);
	opacity: 1;
}

/*光る*/
@keyframes shine {
	0% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

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

/*本文*/
#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;
}
/*フレックス画像*/
.imgFlex {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
}
.imgFlex > figure {
	width: 35%;
	padding: 0;
	margin: 0 50px 0 0;
}
.imgFlex > div {
	width: 65%;
	padding: 0;
	margin: 0;
}
#all_wrap .content .imgFlex > div > p {
	padding: 0;
	margin: 0 auto 10px;
}

/*== スマホ・タブレット対応 ==*/
@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;
    }
	
	/*フレックス画像*/
	.imgFlex {
		width: 100%;
		padding: 0;
		margin: 0 auto 30px;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	}
	.imgFlex > figure {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	.imgFlex > div {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	#all_wrap .content .imgFlex > div > p {
		padding: 0;
		margin: 0 auto 10px;
	}
}

/************************************************************/
/*　コンテンツ整形
/************************************************************/
#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 .container {
	width: calc(100% - 200px);
	padding: 0;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	position: relative;
}

/*カスタマイズ*/
#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; }
	/*ウィジェットパディング*/
	#all_wrap .widget {
		padding: 0;
		margin: 0;
	}
}

/*== フレックス ==*/
.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;
	background: #fff;
}
.l-wrapper-full {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0 auto;
	background: #fff;
}
.l-wrapper-cat {
	position: relative;
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	background: #fafafa;
}

/*トップ構成*/
.top_wrapper {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#topMain {
	width: calc(100% - 300px);
	padding: 0;
	margin: 0;
	background: #fff;
}


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

.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: 300px;
	min-width: 300px;
    padding: 30px;
    margin: 0;
	margin-left: 50px;
	background: #fafafa;
    z-index: 5;
}
.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;
    }
    .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: 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;
    }
	.l-wrapper-cat {
		position: relative;
		width: 100%;
		padding: 30px;
		margin: 0 auto;
		background: #fafafa;
	}
    
	/*トップ構成*/
	.top_wrapper {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#topMain {
		width: calc(100%);
		padding: 0;
		margin: 0;
		overflow: hidden;
		background: #fff;
	}
    
	.l-sidebar {
		display: none;
	}
	
	
	.side-banner {
		display: block;
		margin-bottom: 0 !important;
	}
	.side-contents {
		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: var(--font-jp);
    font-style: normal;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt" 1;
    font-size: 1em;
}

/*ページタイトル*/
#page_title {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
	overflow: hidden;
    z-index: 0;
}
#page_title > figure {
	width: 70%;
	height: 100%;
	padding: 0;
	margin: 0;
	text-align: center;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
#page_title > figure::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	background: #fff;
	transform: translate3d(0%,0,0);
}
#page_title > figure.active::after {
	animation: swipeRight 3s var(--ease-inout);
	animation-fill-mode: forwards;
}
#page_title > 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%);
}
.page_title_wrap {
	width: 100%;
	padding: 150px 0 150px;
	margin: 0;
	position: relative;
	z-index: 0;
	overflow: hidden;
}
.page_title_box {
    width: calc(100% - 100px);
	max-width: 1100px;
    padding: 0;
    margin: 0 auto;
	position: relative;
	z-index: 10;
}
.page_title_box > strong {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0;
    margin: 0 auto 10px;
	font-size: 70px;
	line-height: 1;
	font-weight: 600;
	font-style: normal;
	font-family: var(--font-en);
    color: #1e1e1e;
    font-feature-settings: "palt";
	text-transform: capitalize;
	opacity: 1;
}
#all_wrap h1.page-title {
    font-family: var(--font-jp);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    width: 100%;
    text-align: left;
    padding: 0;
    margin: 0 auto;
    color: #1e1e1e;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*ページタイトル*/
	#page_title {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
		overflow: hidden;
		z-index: 0;
	}
	#page_title > figure {
		width: 100%;
		height: 100%;
		padding: 0;
		margin: 0;
		text-align: center;
		overflow: hidden;
		position: absolute;
		top: 0;
		right: 0;
		z-index: -1;
	}
	#page_title > figure::before {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		padding: 0;
		margin: 0;
		background: rgba(0,0,0,0.2);
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
	}
	#page_title > figure::after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 100;
		width: 100%;
		height: 100%;
		background: #fff;
		transform: translate3d(0%,0,0);
	}
	#page_title > figure.active::after {
		animation: swipeRight 3s var(--ease-inout);
		animation-fill-mode: forwards;
	}
	#page_title > 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%);
	}
	.page_title_wrap {
		width: 100%;
		padding: 50px 0 50px;
		margin: 0;
		position: relative;
		z-index: 0;
		overflow: hidden;
	}
	.page_title_box {
		width: calc(100% - 60px);
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		z-index: 10;
	}
	.page_title_box > strong {
		display: block;
		width: 100%;
		text-align: left;
		padding: 0;
		margin: 0 auto 10px;
		font-size: 25px;
		line-height: 1;
		font-weight: 600;
		font-style: normal;
		font-family: var(--font-en);
		color: #fff;
		font-feature-settings: "palt";
		text-transform: capitalize;
		opacity: 1;
	}
	#all_wrap h1.page-title {
		font-family: var(--font-jp);
		font-size: 12px;
		font-weight: 600;
		line-height: 1;
		width: 100%;
		text-align: left;
		padding: 0;
		margin: 0 auto;
		color: #fff;
	}
}

/*h2*/
#all_wrap .content h2 {
    font-family: var(--font-jp);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4em;
	color: #1e1e1e;
    font-style: normal;
    text-align: left;
    padding: 0;
    margin: 2em auto 0.5em;
    position: relative;
}
#all_wrap .content h2:first-of-type {
    margin-top: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*h2*/
	#all_wrap .content h2 {
        font-family: var(--font-jp);
        font-size: 20px;
        font-weight: 600;
        line-height: 1.4em;
        font-style: normal;
        letter-spacing: normal;
        text-align: left;
        padding: 0;
        margin: 1em auto 0.5em;
        position: relative;
    }
	#all_wrap .content h2:first-of-type {
        margin-top: 0;
    }
}

/*見出しデザイン*/
#all_wrap .content h2.h2 {
	width: calc(100%);
	max-width: 1100px;
	padding: 15px;
	margin: 0 auto 40px;
	background-image: linear-gradient(to right, rgba(17,119,190,1) 0%, rgba(17,119,190,1) 25%, rgba(17,119,190,0) 50%);
	font-size: 25px;
	line-height: 1;
	font-weight: 600;
	color: #fff;
	position: relative;
	z-index: 0;
}
#all_wrap .content h2.h2::before {
	content: '';
	display: block;
	width: 10%;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #0e4182;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.5;
	clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}

/*見出し センター*/
#all_wrap .content h2.center {
	display: block;
	padding: 0 0 20px;
	margin: 0 auto 40px;
	text-align: center;
	font-size: 30px;
	font-weight: bold;
	color: #2f4068;
	line-height: 1;
	position: relative;
}
#all_wrap .content h2.center::after {
	content: '';
	display: block;
	width: 50px;
	height: 2px;
	padding: 0;
	margin: 0;
	background: #2f4068;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*見出しデザイン*/
	#all_wrap .content h2.h2 {
		width: calc(100%);
		max-width: 1100px;
		padding: 10px;
		margin: 1em auto 0.5em;
		background-image: linear-gradient(to right, rgba(17,119,190,1) 0%, rgba(17,119,190,1) 25%, rgba(17,119,190,0) 50%);
		font-size: 20px;
		line-height: 1;
		font-weight: 600;
		color: #fff;
		position: relative;
		z-index: 0;
	}
	#all_wrap .content h2.h2::before {
		content: '';
		display: block;
		width: 10%;
		height: 100%;
		padding: 0;
		margin: 0;
		background: #0e4182;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
		opacity: 0.5;
		clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
	}
	#all_wrap .content h2.h2:first-of-type {
		margin-top: 0;
	}

	/*見出し センター*/
	#all_wrap .content h2.center {
		display: block;
		padding: 0 0 15px;
		margin: 0 auto 20px;
		text-align: center;
		font-size: 20px;
		font-weight: bold;
		color: #2f4068;
		line-height: 1;
		position: relative;
	}
	#all_wrap .content h2.center::after {
		content: '';
		display: block;
		width: 50px;
		height: 2px;
		padding: 0;
		margin: 0;
		background: #2f4068;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translate(-50%,0);
		-webkit-transform: translate(-50%,0);
	}
}

#all_wrap h2.singleTitle {
    font-family: var(--font-jp);
	font-weight: 700;
	line-height: 1.4em;
	color: #1e1e1e;
    font-style: normal;
    text-align: left;
    padding: 0;
    margin: 0 auto 10px;
    position: relative;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap h2.singleTitle {
        font-family: var(--font-jp);
        font-size: 20px;
        font-weight: 600;
        line-height: 1.4em;
        font-style: normal;
        text-align: left;
        padding: 0;
        margin: 0 auto 10px;
        position: relative;
    }
}

/*h3*/
#all_wrap .content h3 {
    display: block;
    padding: 0 0 0 15px;
    margin: 1.5em auto 1em 0;
    position: relative;
    font-family: var(--font-jp);
    font-size: 20px;
    line-height: 1.2em;
	font-weight: 600;
    text-align: left;
    position: relative;
}
#all_wrap .content h3::before {
    content: '';
    display: block;
    width: 5px;
    height: 90%;
    padding: 0;
    margin: 0;
	background: #2f4068;
    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 15px;
        margin: 1em auto 0.5em 0;
        position: relative;
        font-family: var(--font-jp);
        font-size: 18px;
        line-height: 1.4em;
        text-align: left;
        position: relative;
    }
}

/*h4*/
#all_wrap .content h4 {
    display: block;
    padding: 0;
    margin: 1em auto 0.5em;
    position: relative;
    font-family: var(--font-jp);
    font-size: 20px;
    line-height: 1.4em;
    text-align: left;
    position: relative;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*h4*/
	#all_wrap .content h4 {
        display: block;
        padding: 0;
        margin: 1em auto 0.5em 0;
        position: relative;
        font-family: var(--font-jp);
        font-size: 16px;
        line-height: 1.4em;
        text-align: left;
        position: relative;
    }
}

/************************************************************/
/*　ページネーション
/************************************************************/
.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: var(--font-en);
    font-weight: 600;
    font-style: normal;
    font-feature-settings: "palt";
    color: #1e1e1e;
    border: 1px solid #1e1e1e;
}
.pager > li:hover {
    border: 1px solid #1e1e1e;
    background: none;
}
.pager > li.pager__item-current {
    padding: 5px;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1e1e1e;
    border: 1px solid #1e1e1e;
    color: #fff;
}
.pager > li.pager__item-next,
.pager > li.pager__item-prev {
    background: none;
    border-radius: 0;
    font-family: var(--font-en);
    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: var(--font-en);
    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: #1e1e1e;
    color: #fff;
    font-family: var(--font-en);
    font-weight: 600;
    font-style: normal;
    font-weight: normal;
    font-feature-settings: "palt";
    transition: ease 0.2s;
    line-height: 1;
}

/************************************************************/
/*　パンくず
/************************************************************/
/*パンくず*/
.breadcrumb {
	width: calc(100%);
    max-width: 1100px;
    padding: 20px 0;
    margin: 0 auto;
    background: none;
    border: none;
    overflow-x: scroll;
    position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
    z-index: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
#all_wrap .breadcrumb .container {
	width: 100%;
	flex-wrap: nowrap;
}
.breadcrumb::-webkit-scrollbar { 
    display:none;
}
.breadcrumb > ul {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    font-size: 12px;
    color: #1e1e1e;
}
.breadcrumb a {
    font-size: 12px;
    line-height: 1;
    padding: 0;
    margin: 0;
    text-decoration: none;
    transition: ease 0.2s;
	color: #1e1e1e;
    font-family: var(--font-jp);
    font-weight: 500;
    font-style: normal;
    font-feature-settings: "palt";
}
.breadcrumb a:hover {
    text-decoration: none;
    transition: ease 0.2s;
	color: #1e1e1e;
    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: #1e1e1e;
}
.breadcrumb__item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -2px;
    width: 5px;
    height: 5px;
	border-top: 1px solid #1e1e1e;
	border-right: 1px solid #1e1e1e;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*パンくず*/
    .breadcrumb {
        width: 100%;
        padding: 0 30px;
        margin: 0 auto;
        background: none;
        border: none;
        font-size: 10px;
        line-height: 1.2em;
        overflow: hidden;
        overflow-x: scroll;
        overflow-y: hidden;
        position: absolute;
		bottom: 10px;
		left: 50%;
        z-index: 10;
        background: none;
    }
    .breadcrumb::-webkit-scrollbar {
        display: none;
    }
    .breadcrumb::before {
        display: none;
    }
    .breadcrumb::after {
        display: none;
    }
    .breadcrumb > ul {
        width: 100%;
        padding: 0 20px;
        margin: 0;
        font-size: 10px;
        color: #fff;
        background: none;
    }
    .breadcrumb a {
        font-size: 10px;
        line-height: 1;
        padding: 0;
        margin: 0;
        text-decoration: none;
        transition: ease 0.2s;
        color: #fff;
    }
    .breadcrumb a:hover {
        text-decoration: none;
        transition: ease 0.2s;
        color: #fff;
        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: #fff;
    }
    .breadcrumb__item::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -2px;
        width: 5px;
        height: 5px;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
    }
}


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


/************************************************************/
/*　ヘッダー
/************************************************************/
#header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}
#header > .headerBox {
	width: 100%;
	max-width: 100%;
	padding: 30px 50px;
	margin: 0 auto;
	background: none;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: nowrap;
}
#header > .headerBox > .logo {
	width: auto;
	height: 60px;
	padding: 0;
	margin: 0 auto 0 0;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
}
#all_wrap #header > .headerBox > .logo > h1,
#all_wrap #header > .headerBox > .logo > p {
	height: 100%;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
}
#all_wrap #header > .headerBox > .logo > h1 img,
#all_wrap #header > .headerBox > .logo > p img {
	width: auto;
	height: 100%;
	padding: 0;
	margin: 0;
}
#all_wrap #header > .headerBox > .logo > em {
	display: inline-block;
	font-size: 25px;
	line-height: 1;
	font-weight: 600;
	font-style: normal;
	font-family: var(--font-en);
	margin-left: 15px;
	color: #fff;
	transition: all 0.3 ease;
}
#all_wrap #header.fixed > .headerBox > .logo > em {
	color: #1e1e1e;
	transition: all 0.3 ease;
}

/*メニュー*/
#all_wrap #header > .headerBox > nav {
	height: 100%;
}
#all_wrap #header-menu {
	height: 100%;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #header-menu > li {
	height: 100%;
	padding: 0;
	margin: 0;
	margin-left: 40px;
}
#all_wrap #header-menu > li > a {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}
#all_wrap #header-menu > li > a:hover {
	font-family: var(--font-en);
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	transition: all 0.3s ease;
}
#all_wrap #header-menu > li > a::after {
	content: "";
	width: 100%;
	height: 90%;
	background: var(--baseColor);
	position: absolute;
	top: 0;
	left: 0;
	transform-origin: 100% 0;
	-webkit-transform-origin: 100% 0;
	transform: scaleX(0);
	-webkit-transform: scaleX(0);
	transition: transform 0.3s var(--ease-inout);
	transition: -webkit-transform 0.3s var(--ease-inout);
	z-index: -1;
}
#all_wrap #header-menu > li > a:hover::after {
	transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
	transform: scaleX(1);
	-webkit-transform: scaleX(1);
}
#all_wrap #header.fixed #header-menu > li > a {
	color: #1e1e1e;
	transition: all 0.3s ease;
}
#all_wrap #header.fixed #header-menu > li > a:hover {
	color: #fff;
	transition: all 0.3s ease;
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#header {
		width: 100%;
		height: auto;
		padding: 0;
		margin: 0 auto;
		background: none;
		display: flex;
		display: -webkit-flex;
		justify-content: flex-end;
		align-items: center;
		flex-wrap: nowrap;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 100;
	}
	#header > .headerBox {
		width: 100%;
		max-width: 100%;
		padding: 20px 20px;
		margin: 0 auto;
		background: none;
		display: flex;
		display: -webkit-flex;
		justify-content: flex-end;
		align-items: center;
		flex-wrap: nowrap;
	}
	#header > .headerBox > .logo {
		width: auto;
		height: 35px;
		padding: 0;
		margin: 0 auto 0 0;
		display: flex;
		display: -webkit-flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	}
	#all_wrap #header > .headerBox > .logo > h1,
	#all_wrap #header > .headerBox > .logo > p {
		height: 100%;
		padding: 0;
		margin: 0;
		border: none;
		background: none;
	}
	#all_wrap #header > .headerBox > .logo > h1 img,
	#all_wrap #header > .headerBox > .logo > p img {
		width: auto;
		height: 100%;
		padding: 0;
		margin: 0;
	}
	#all_wrap #header > .headerBox > .logo > em {
		display: inline-block;
		font-size: 17px;
		line-height: 1;
		font-weight: 600;
		font-style: normal;
		font-family: var(--font-en);
		margin-left: 10px;
		color: #fff;
	}

	/*メニュー*/
	#all_wrap #header > .headerBox > nav {
		display: none;
	}
}

/************************************************************/
/*　グローバルメニュー
/************************************************************/


/************************************************************/
/*　ハンバーガーメニュー
/************************************************************/

/* ドロワーメニュー */
.humburger {
	width: 40px;
	height: 15px;
	padding: 0;
	margin: 0;
	position: absolute;
	top: calc(50% - 2px);
	left: 50%;
	transform: translate(-50%,-50%);
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
}
.humburger span {
	width: 100%;
	display: inline-block;
	transition: all .3s;/*アニメーションの設定*/
	position: absolute;
	left: 0;
	height: 2px;
	background: #fff;
}
.humburger span:nth-of-type(1) {
	top:0;
}
.humburger span:nth-of-type(2) {
	top:7px;
}
.humburger span:nth-of-type(3) {
	top:14px;
}
#navTgl:checked + .open .humburger span:nth-of-type(1) {
	top: 0;
	left: 0;
	transform: translateY(7px) rotate(-45deg);
	width: 100%;
	background: #fff;
}
#navTgl:checked + .open .humburger span:nth-of-type(2) {
	opacity: 0;
	display: none;
	transform: none;
}
#navTgl:checked + .open .humburger span:nth-of-type(3) {
	top: 20px;
	left: 0;
	transform: translateY(-13px) rotate(45deg);
	width: 100%;
	background: #fff;
}
#navTgl {
	display: none;
}
label.open,
label.close {
	cursor: pointer;
}
.open {
	display: none;
	z-index: 10000;
	width: 80px;
	height: 80px;
	color: #fff;
	background: #1e1e1e;
	font-size: 3em;
	text-align: center;
	-webkit-transition: background-color .3s, -webkit-transform .4s;
	transition: background-color .3s, transform .4s;
	position: fixed;
	top: 0;
	right: 0;
}
.open.fixed {
	visibility: visible;
	-webkit-transition: background-color .3s, -webkit-transform .4s;
	transition: background-color .3s, transform .4s;
}
#navTgl:checked + .open {
	background: none;
}
.close {
	pointer-events: none;
	z-index: 1;
	width: 100%;
	height: 100%;
	transition: background-color .4s;
}
#navTgl:checked ~ .close {
	pointer-events: auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){

	/* ドロワーメニュー */
	.humburger {
		width: 30px;
		height: 15px;
		padding: 0;
		margin: 0;
		position: absolute;
		top: calc(50% - 2px);
		left: 50%;
		transform: translate(-50%,-50%);
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: nowrap;
	}
	.humburger span {
		width: 100%;
		display: inline-block;
		transition: all .3s;/*アニメーションの設定*/
		position: absolute;
		left: 0;
		height: 2px;
		background: #fff;
	}
	.humburger span:nth-of-type(1) {
		top:0;
	}
	.humburger span:nth-of-type(2) {
		top:7px;
	}
	.humburger span:nth-of-type(3) {
		top:14px;
	}
	#navTgl:checked + .open .humburger span:nth-of-type(1) {
		top: 0;
		left: 0;
		transform: translateY(7px) rotate(-45deg);
		width: 100%;
		background: #fff;
	}
	#navTgl:checked + .open .humburger span:nth-of-type(2) {
		opacity: 0;
		display: none;
		transform: none;
	}
	#navTgl:checked + .open .humburger span:nth-of-type(3) {
		top: 20px;
		left: 0;
		transform: translateY(-13px) rotate(45deg);
		width: 100%;
		background: #fff;
	}
	#navTgl {
		display: none;
	}
	label.open,
	label.close {
		cursor: pointer;
	}
	.open {
		display: block;
		z-index: 10000;
		width: 55px;
		height: 55px;
		color: #fff;
		background: #1e1e1e;
		font-size: 3em;
		text-align: center;
		-webkit-transition: background-color .3s, -webkit-transform .4s;
		transition: background-color .3s, transform .4s;
		position: fixed;
		top: 0;
		right: 0;
	}
	.open.fixed {
		visibility: visible;
		-webkit-transition: background-color .3s, -webkit-transform .4s;
		transition: background-color .3s, transform .4s;
	}
	#navTgl:checked + .open {
		background: none;
	}
	.close {
		pointer-events: none;
		z-index: 1;
		width: 100%;
		height: 100%;
		transition: background-color .4s;
	}
	#navTgl:checked ~ .close {
		pointer-events: auto;
	}
}

/*パネル*/
#menu.menuNav {
	display: none;
	z-index: 9999;
	position: fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(10,10,10,0.9);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	-webkit-transition: -webkit-transform .4s;
	transition: transform .4s;
	padding: 80px;
	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: 100%;
	max-width: 900px;
	padding: 0;
	margin: 0 0 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: nowrap;
}
.menuNavBoxLeft {
	width: 48%;
	padding: 0;
	margin: 0;
	position: relative;
	display: block;
}
.menuNavBoxRight {
	width: 48%;
	padding: 0;
	margin: 0;
}
/*概要*/
#menuNavBox .companyInfo {
	padding: 0;
	margin: 0;
}
#all_wrap #menuNavBox .companyInfo > em {
	color: #fff;
}
#all_wrap #menuNavBox .companyInfo > h3 {
	color: #fff;
	margin-bottom: 30px;
}
/*住所リスト*/
#all_wrap #menuNavBox .addList {
	margin-bottom: 30px;
}
#all_wrap #menuNavBox .addList > li {
	color: #fff;
}
#all_wrap #menuNavBox .addList > li > span {
	background: #fff;
	color: #1e1e1e;
}
/*見出し*/
#menuNavBox .menuNavBoxRight h2 {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 auto 20px;
	text-align: left;
	font-size: 20px;
	line-height: 1;
	font-weight: 500;
	font-style: normal;
	color: #fff;
	font-family: var(--font-en);
	border: none;
	background: none;
}
#menuNavBox .menuNavBoxRight h2::after {
	content: '';
	display: block;
	width: 50px;
	height: 1px;
	padding: 0;
	margin: 0 0 0 10px;
	background: #fff;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*パネル*/
	#menu.menuNav {
		display: none;
		z-index: 9999;
		position: fixed;
		top: 0;
		right: 0;
		width: 100vw;
		height: 100vh;
		background: rgba(10,10,10,0.95);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		-webkit-transition: -webkit-transform .4s;
		transition: transform .4s;
		padding: 60px 30px;
		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: 100%;
		max-width: 100%;
		padding: 0;
		margin:  auto;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.menuNavBoxLeft {
		width: 100%;
		padding: 0;
		margin: 0 auto 40px;
		position: relative;
		display: block;
	}
	.menuNavBoxRight {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	/*概要*/
	#menuNavBox .companyInfo {
		padding: 0;
		margin: 0;
	}
	#all_wrap #menuNavBox .companyInfo > em {
		color: #fff;
	}
	#all_wrap #menuNavBox .companyInfo > h3 {
		color: #fff;
		margin-bottom: 20px;
	}
	/*住所リスト*/
	#all_wrap #menuNavBox .addList {
		margin-bottom: 30px;
	}
	#all_wrap #menuNavBox .addList > li {
		color: #fff;
	}
	#all_wrap #menuNavBox .addList > li > span {
		background: #fff;
		color: #1e1e1e;
	}
	/*見出し*/
	#menuNavBox .menuNavBoxRight h2 {
		display: flex;
		display: -webkit-flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		padding: 0;
		margin: 0 auto 15px;
		text-align: left;
		font-size: 20px;
		line-height: 1;
		font-weight: 500;
		font-style: normal;
		color: #fff;
		font-family: var(--font-en);
		border: none;
		background: none;
	}
	#menuNavBox .menuNavBoxRight h2::after {
		content: '';
		display: block;
		width: 50px;
		height: 1px;
		padding: 0;
		margin: 0 0 0 10px;
		background: #fff;
	}
}

#all_wrap .menuNavBoxLeft .widget {
	margin-bottom: 0;
}


/*メニュー*/
#menu-panel-menu {
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	border: none;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#menu-panel-menu > li {
	width: 100%;
	padding: 0;
	margin: 0;
}
#menu-panel-menu > li > a {
	display: block;
	padding: 15px 15px;
	margin: 0;
	background: none;
	border: none;
	font-size: 15px;
	line-height: 1.2em;
	color: #fff;
	font-weight: 500;
	position: relative;
	z-index: 0;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
#menu-panel-menu > li > a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: #fff;
	width: 100%;
	height: 100%;
	transition: transform .2s var(--ease-inout) 0s;
	transform: scale(0, 1);
	transform-origin: right top;
	z-index: -1;
	opacity: 1;
	filter: unset;
}
#menu-panel-menu > li > a:hover:before{
	transform-origin: left top;
	transform: scale(1, 1);
	opacity: 1;
	filter: unset;
}
#menu-panel-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%;
	right: 15px;
	z-index: -1;
	transform: translate(0,-50%) rotate(45deg);
	-webkit-transform: translate(0,-50%) rotate(45deg);
	opacity: 1;
	transition: all 0.3s ease;
}
#menu-panel-menu > li > a > span {
	display: block;
	text-align: left;
	padding: 0;
	margin: 3px 0 0;
	font-size: 10px;
	line-height: 1;
	color: #fff;
	transition: all 0.3s ease;
	font-family: var(--font-en);
}
#menu-panel-menu > li > a:hover {
	opacity: 0.8;
	transition: all 0.3s ease;
	color: #1e1e1e;
}
#menu-panel-menu > li > a:hover::after {
	opacity: 1;
	right: 12px;
	border-top: 1px solid #1e1e1e;
	border-right: 1px solid #1e1e1e;
	transition: all 0.3s ease;
}
#menu-panel-menu > li > a:hover > span {
	color: #1e1e1e;
	transition: all 0.3s ease;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*メニュー*/
	#menu-panel-menu {
		width: 100%;
		padding: 0;
		margin: 0;
		list-style: none;
		border: none;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#menu-panel-menu > li {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	#menu-panel-menu > li > a {
		display: block;
		padding: 15px 15px;
		margin: 0;
		background: none;
		border: none;
		font-size: 14px;
		line-height: 1.2em;
		color: #fff;
		font-weight: 500;
		position: relative;
		z-index: 0;
		transition: all 0.3s ease;
		border-bottom: 1px solid rgba(255,255,255,0.1);
	}
	#menu-panel-menu > li:first-child > a {
		border-top: 1px solid rgba(255,255,255,0.1);
	}
	#menu-panel-menu > li > a:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;
		background: #fff;
		width: 100%;
		height: 100%;
		transition: transform .2s var(--ease-inout) 0s;
		transform: scale(0, 1);
		transform-origin: right top;
		z-index: -1;
		opacity: 1;
		filter: unset;
	}
	#menu-panel-menu > li > a:hover:before{
		transform-origin: left top;
		transform: scale(1, 1);
		opacity: 1;
		filter: unset;
	}
	#menu-panel-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%;
		right: 15px;
		z-index: -1;
		transform: translate(0,-50%) rotate(45deg);
		-webkit-transform: translate(0,-50%) rotate(45deg);
		opacity: 1;
		transition: all 0.3s ease;
	}
	#menu-panel-menu > li > a > span {
		display: block;
		text-align: left;
		padding: 0;
		margin: 3px 0 0;
		font-size: 10px;
		line-height: 1;
		color: #fff;
		transition: all 0.3s ease;
		font-family: var(--font-en);
	}
	#menu-panel-menu > li > a:hover {
		transition: all 0.3s ease;
		color: #1e1e1e;
	}
	#menu-panel-menu > li > a:hover::after {
		opacity: 1;
		right: 12px;
		border-top: 1px solid #1e1e1e;
		border-right: 1px solid #1e1e1e;
		transition: all 0.3s ease;
	}
	#menu-panel-menu > li > a:hover > span {
		color: #1e1e1e;
		transition: all 0.3s ease;
	}
}

#menuNavBox .widget-menu h2.heading.heading-widget {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	font-weight: 700;
	font-size: 35px;
	line-height: 1.1em;
	letter-spacing: 0.1em;
	color: #fff;
	border: none;
	background: none;
	border-radius: 0;
	text-align: left;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}
#menuNavBox .widget-menu h2.heading.heading-widget > strong {
	display: block;
	width: 100%;
	max-width: 100%;
	position: relative;
	padding: 10px 0 0;
	margin: 0 auto 5px;
	font-size: 50px;
	font-weight: 500;
	line-height: 1;
	color: #fff;
}
#menuNavBox .widget-menu h2.heading.heading-widget > strong::before {
	content: '';
	display: block;
	width: 30px;
	height: 4px;
	border-radius: 20px;
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
}
#menuNavBox .widget-menu h2.heading.heading-widget > strong::after {
	content: '';
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 20px;
	background: #fff;
	position: absolute;
	top: 0;
	left: 35px;
}

/*子ページ*/
#menu-panel-menu > li > .sub-menu {
	padding: 0;
	margin: 0;
	list-style: none;
}
#menu-panel-menu > li > .sub-menu > li {
	padding: 0;
	margin: 0;
}
#menu-panel-menu > li > .sub-menu > li a {
	display: block;
	padding: 15px 15px 15px 25px;
	margin: 0;
	font-size: 14px;
	line-height: 1.2em;
	font-weight: 600;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	position: relative;
}
#menu-panel-menu > li > .sub-menu > li a::before {
	content: '';
	display: block;
	width: 6px;
	height: 1px;
	padding: 0;
	margin: 0;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
}

/************************************************************/
/*　メインビジュアル
/************************************************************/
#mainVisual {
	width: 100%;
	min-height: 700px;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
	align-items: flex-end;
	overflow: hidden;
}
#mainVisual .slider {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
}
#mainVisual .slider::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: rgba(40,80,180,1);
	mix-blend-mode: overlay;
}
#mainVisual .slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}
#mainVisual .slick-list::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: rgba(0,0,0,0.1);
}
#mainVisual .slider.active:after {
	animation: swipeRight 2s var(--ease-inout);
	animation-fill-mode: forwards;
}
@keyframes swipeRight {
	0% {
		transform: translate(0);
	}
	50%, 60% {
		transform: translate3d(100%,0,0);
	}
	100% {
		transform: translate3d(100%,0,0);
	}
}

/*　背景画像設定　*/
#mainVisual .slider-item {
	width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
	height: 130vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
	background-repeat: no-repeat;/*背景画像をリピートしない*/
	background-position: center;/*背景画像の位置を中央に*/
	background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}
#mainVisual .slider-item.slick-current {
	animation: MV 7.1s linear;
}
@keyframes MV {
	0% {
		background-size: auto 105%;
	}
	100% {
		background-size: auto 100%;
	}
}

/*矢印の設定*/
#mainVisual .slick-prev, 
#mainVisual .slick-next {
	position: absolute;
	z-index: 3;
	cursor: pointer;/*マウスカーソルを指マークに*/
	outline: none;/*クリックをしたら出てくる枠線を消す*/
	width: 50px;
	height: 50px;
	background: #1e1e1e;
}
#mainVisual .slick-prev {/*戻る矢印の位置と形状*/
	top: calc(40%);
	left: calc(15% - 51px);
}
#mainVisual .slick-prev::before {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	position: absolute;
	top: 50%;
	left: calc(50% + 5px);
	transform: translate(-50%,-50%) rotate(-135deg);
	-webkit-transform: translate(-50%,-50%) rotate(-135deg);
}
#mainVisual .slick-next {/*次へ矢印の位置と形状*/
	top: calc(40% + 51px);
	left: calc(15% - 51px);
}
#mainVisual .slick-next::before {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	position: absolute;
	top: 50%;
	left: calc(50% - 5px);
	transform: translate(-50%,-50%) rotate(45deg);
	-webkit-transform: translate(-50%,-50%) rotate(45deg);
}
/*ドットナビゲーションの設定*/
#mainVisual .slick-dots {
	z-index: 3;
	text-align:center;
	display: block;
	width: 1px;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 30%;
	right: 50px;
}
#mainVisual .slick-dots li {
	display: block;
	width: 1px;
	height: 80px;
	margin: 0 auto 30px;
	position: relative;
}
#mainVisual .slick-dots li::before {
	counter-increment: count 1;
	content: "0" counter(count);
	display: block;
	font-size: 10px;
	line-height: 1;
	text-align: center;
	color: #fff;
	position: absolute;
	top: -1.6em;
	left: 50%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
}
#mainVisual .slick-dots li.slick-active::after {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	padding: 0;
	margin: 0;
	background: var(--baseColor);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	animation: dots 7.1s linear;
}
@keyframes dots {
	0%{
		height: 0;
	}
	100%{
		height: 100%;
	}
}
#mainVisual .slick-dots button {
	color: transparent;
	outline: none;
	width: 100%;/*ドットボタンのサイズ*/
	height: 100%;/*ドットボタンのサイズ*/
	padding: 0;
	margin: 0;
	display: block;
	background: #fff;/*ドットボタンの色*/
	box-shadow: none;
	background: #fff;
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	opacity: 1;
}
#mainVisual .slick-dots .slick-active button{
	opacity: 1;
}

#all_wrap .mainVisual_info {
	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;
	z-index: 5;
}
#all_wrap .mainVisual_info > h2 {
	font-size: 50px;
	line-height: 1.4em;
	font-weight: 600;
	color: #fff;
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	border: none;
	background: none;
	text-align: center;
}
#all_wrap .mainVisual_info > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 20px;
	text-align: center;
	color: #fff;
}
#all_wrap .mainVisual_info > em {
	display: block;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 18px;
	line-height: 1.7em;
	text-align: left;
	color: #fff;
	font-style: normal;
	position: absolute;
	bottom: 50px;
	left: 50px;
	z-index: 5;
}
/*リンクボタン*/
.Btn {
	position: relative;
	text-decoration: none;
	display: inline-block;
	border: 1px solid #1e1e1e;
	padding: 15px 30px;
	text-align: center;
	outline: none;
	transition: ease .2s;
	font-family: var(--font-en);
	font-size: 12px;
	font-weight: 500;
	color: #1e1e1e;
	text-decoration: none;
	z-index: 0;
}
.Btn:hover {
	color: #fff;
	background: #1e1e1e;
	transition: ease .2s;
}
.Btn:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: #1e1e1e;
	width: 100%;
	height: 100%;
	transition: transform .2s var(--ease-inout) 0s;
	transform: scale(0, 1);
	transform-origin: right top;
	z-index: -1;
}
.Btn:hover:before{
	transform-origin: left top;
	transform: scale(1, 1);
}
.Btn::after {
	content: '';
	display: block;
	width: 20px;
	height: 1px;
	padding: 0;
	margin: 0;
	background: #1e1e1e;
	position: absolute;
	top: 50%;
	right: -10px;
	z-index: 2;
	transition: ease .2s;
}
.Btn:hover::after {
	background: #1e1e1e;
	transition: ease .2s;
}
/*リンクボタン 白*/
.Btn.w {
	border: 1px solid #fff;
	color: #fff;
}
.Btn.w:hover {
	color: #1e1e1e;
}
.Btn.w:before {
	background: #fff;
}
.Btn.w::after {
	background: #fff;
}
.Btn.w:hover::after {
	background: #1e1e1e;
}

/*スクロールダウン*/
.scrolldown {
	position:absolute;
	left: 50%;
	bottom: 0;
	height: 50px;
	z-index: 10;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
}
.scrolldown a {
	display: block;
}
.scrolldown span{
	position: absolute;
	left:-20px;
	top: -15px;
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
}
.scrolldown::after{
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 30px;
	background: #eee;
	animation: pathmove 2s var(--ease-inout) infinite;
	opacity:0;
}
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 1;
	}
	30%{
		height: 100%;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 1;
	}
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#mainVisual {
		width: 100%;
		min-height: auto;
		height: 700px;
		padding: 0;
		margin: 0;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: center;
		align-items: center;
		overflow: hidden;
	}
	#mainVisual .slider {
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
		width: 100%;
		height: 100%;
	}
	#mainVisual .slider::before {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		padding: 0;
		margin: 0;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
		background: rgba(40,80,180,1);
		mix-blend-mode: overlay;
	}
	#mainVisual .slick-list {
		position: relative;
		display: block;
		overflow: hidden;
		margin: 0;
		padding: 0;
		width: 100%;
		height: 100%;
	}
	#mainVisual .slick-list::after {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		padding: 0;
		margin: 0;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;
		background: rgba(0,0,0,0.1);
	}
	#mainVisual .slider.active:after {
		animation: swipeRight 2s var(--ease-inout);
		animation-fill-mode: forwards;
	}
	@keyframes swipeRight {
		0% {
			transform: translate(0);
		}
		50%, 60% {
			transform: translate3d(100%,0,0);
		}
		100% {
			transform: translate3d(100%,0,0);
		}
	}

	/*　背景画像設定　*/
	#mainVisual .slider-item {
		width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
		height: 700px;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
		background-repeat: no-repeat;/*背景画像をリピートしない*/
		background-position: center;/*背景画像の位置を中央に*/
		background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
	}
	#mainVisual .slider-item.slick-current {
		animation: MV 7.1s linear;
	}
	@keyframes MV {
		0% {
			background-size: auto 105%;
		}
		100% {
			background-size: auto 100%;
		}
	}

	/*矢印の設定*/
	#mainVisual .slick-prev, 
	#mainVisual .slick-next {
		position: absolute;
		z-index: 3;
		cursor: pointer;/*マウスカーソルを指マークに*/
		outline: none;/*クリックをしたら出てくる枠線を消す*/
		width: 50px;
		height: 50px;
		background: #1e1e1e;
	}
	#mainVisual .slick-prev {/*戻る矢印の位置と形状*/
		top: calc(40%);
		left: calc(15% - 51px);
	}
	#mainVisual .slick-prev::before {
		content: '';
		display: block;
		width: 15px;
		height: 15px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		position: absolute;
		top: 50%;
		left: calc(50% + 5px);
		transform: translate(-50%,-50%) rotate(-135deg);
		-webkit-transform: translate(-50%,-50%) rotate(-135deg);
	}
	#mainVisual .slick-next {/*次へ矢印の位置と形状*/
		top: calc(40% + 51px);
		left: calc(15% - 51px);
	}
	#mainVisual .slick-next::before {
		content: '';
		display: block;
		width: 15px;
		height: 15px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		position: absolute;
		top: 50%;
		left: calc(50% - 5px);
		transform: translate(-50%,-50%) rotate(45deg);
		-webkit-transform: translate(-50%,-50%) rotate(45deg);
	}
	/*ドットナビゲーションの設定*/
	#mainVisual .slick-dots {
		z-index: 3;
		text-align:center;
		display: block;
		width: 1px;
		padding: 0;
		margin: 0;
		position: absolute;
		top: unset;
		bottom: 20px;
		right: 20px;
	}
	#mainVisual .slick-dots li {
		display: block;
		width: 1px;
		height: 30px;
		margin: 0 auto 5px;
		position: relative;
	}
	#mainVisual .slick-dots li::before {
		display: none;
	}
	#mainVisual .slick-dots li.slick-active::after {
		content: '';
		display: block;
		width: 1px;
		height: 100%;
		padding: 0;
		margin: 0;
		background: var(--baseColor);
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;
		animation: dots 7.1s linear;
	}
	@keyframes dots {
		0%{
			height: 0;
		}
		100%{
			height: 100%;
		}
	}
	#mainVisual .slick-dots button {
		color: transparent;
		outline: none;
		width: 100%;/*ドットボタンのサイズ*/
		height: 100%;/*ドットボタンのサイズ*/
		padding: 0;
		margin: 0;
		display: block;
		background: #fff;/*ドットボタンの色*/
		box-shadow: none;
		background: #fff;
		border: none;
		outline: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		opacity: 1;
	}
	#mainVisual .slick-dots .slick-active button{
		opacity: 1;
	}

	#all_wrap .mainVisual_info {
		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;
		z-index: 5;
	}
	#all_wrap .mainVisual_info > h2 {
		font-size: 30px;
		line-height: 1.4em;
		font-weight: 600;
		color: #fff;
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		border: none;
		background: none;
		text-align: center;
	}
	#all_wrap .mainVisual_info > p {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		font-size: 14px;
		text-align: center;
		color: #fff;
	}
	#all_wrap .mainVisual_info > em {
		display: block;
		padding: 0;
		margin: 0;
		font-family: var(--font-en);
		font-size: 14px;
		line-height: 1.7em;
		text-align: left;
		color: #fff;
		font-style: normal;
		position: absolute;
		bottom: 20px;
		left: 20px;
		z-index: 5;
	}
	
	/*リンクボタン*/
	.Btn {
		position: relative;
		text-decoration: none;
		display: inline-block;
		border: 1px solid #1e1e1e;
		padding: 15px 30px;
		text-align: center;
		outline: none;
		transition: ease .2s;
		font-family: var(--font-en);
		font-size: 12px;
		font-weight: 500;
		color: #1e1e1e;
		text-decoration: none;
		z-index: 0;
	}
	.Btn:hover {
		color: #fff;
		transition: ease .2s;
	}
	.Btn:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;
		background: #1e1e1e;
		width: 100%;
		height: 100%;
		transition: transform .2s var(--ease-inout) 0s;
		transform: scale(0, 1);
		transform-origin: right top;
		z-index: -1;
	}
	.Btn:hover:before{
		transform-origin: left top;
		transform: scale(1, 1);
	}
	.Btn::after {
		content: '';
		display: block;
		width: 20px;
		height: 1px;
		padding: 0;
		margin: 0;
		background: #1e1e1e;
		position: absolute;
		top: 50%;
		right: -10px;
		z-index: 2;
		transition: ease .2s;
	}
	.Btn:hover::after {
		background: #fff;
		transition: ease .2s;
	}
	/*リンクボタン 白*/
	.Btn.w {
		border: 1px solid #fff;
		color: #fff;
	}
	.Btn.w:hover {
		color: #1e1e1e;
	}
	.Btn.w:before {
		background: #fff;
	}
	.Btn.w::after {
		background: #fff;
	}
	.Btn.w:hover::after {
		background: #1e1e1e;
	}

	/*スクロールダウン*/
	.scrolldown {
		position:absolute;
		left: 50%;
		right: unset;
		bottom: 0;
		height: 50px;
		z-index: 10;
		transform: translate(-50%,0);
		-webkit-transform: translate(-50%,0);
	}
	.scrolldown a {
		display: block;
	}
	.scrolldown span{
		position: absolute;
		left:-20px;
		top: -15px;
		color: #eee;
		font-size: 0.7rem;
		letter-spacing: 0.05em;
	}
	.scrolldown::after{
		content: "";
		position: absolute;
		top: 0;
		width: 1px;
		height: 30px;
		background: #eee;
		animation: pathmove 2s var(--ease-inout) infinite;
		opacity:0;
	}
	@keyframes pathmove{
		0%{
			height:0;
			top:0;
			opacity: 1;
		}
		30%{
			height: 100%;
			opacity: 1;
		}
		100%{
			height:0;
			top:50px;
			opacity: 1;
		}
	}
}

/*動画*/
#videoArea {
	display: block;
	width: 70%;
	height: calc(100% - 80px);
	background-color: var(--baseColor);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	overflow: hidden;
}
#video {
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: auto;
	height: 100%;
}
#videoArea::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAAXNSR0IArs4c6QAAACBJREFUGFdjZEAC/////88I44M5IAASgHFAbEZkDkgAACAGEAEsi3uLAAAAAElFTkSuQmCC') repeat;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.5;
}
#videoArea:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	background: #fff;
	transform: translate3d(0%,0,0);
}
#videoArea.active:after {
	animation: swipeRight 3s var(--ease-inout);
	animation-fill-mode: forwards;
}

/************************************************************/
/*　サイドバー
/************************************************************/

#all_wrap .l-sidebar aside {
	margin-bottom: 40px;
}

/*見出し*/
#all_wrap .l-sidebar h2.heading-widget {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	background: none;
	border: none;
	font-size: 20px;
	line-height: 1;
	color: #1e1e1e;
	font-family: var(--font-en);
	font-weight: 700;
}
/*コンテンツ*/
#all_wrap .l-sidebar #menu-menu_panel,
#all_wrap .l-sidebar .newsList {
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	list-style: none;
	border: none;
	border-top: 1px solid #dddddd;
}
#all_wrap .l-sidebar #menu-menu_panel > li {
	padding: 12px 10px 12px 15px;
	margin: 0;
	position: relative;
	border: none;
	border-bottom: 1px solid #dddddd;
}
#all_wrap .l-sidebar .newsList > li {
	padding: 12px 0;
	margin: 0;
	position: relative;
	border: none;
	border-bottom: 1px solid #dddddd;
}
#all_wrap .l-sidebar .newsList > li span.date {
	font-family: var(--font-en);
	font-size: 10px;
	line-height: 1;
	padding: 0;
	margin: 0 auto 5px;
}
#all_wrap .l-sidebar #menu-menu_panel > li::before {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	padding: 0;
	margin: 0;
	background: none;
	border-top: 1px solid #1e1e1e;
	border-right: 1px solid #1e1e1e;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%) rotate(45deg);
	-webkit-transform: translate(0,-50%) rotate(45deg);
	opacity: 0.2;
}
#all_wrap .l-sidebar #menu-menu_panel > li::after,
#all_wrap .l-sidebar .newsList > li::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	padding: 0;
	margin: 0;
	background: #fff;
	position: absolute;
	bottom: -2px;
	left: 0;
}
#all_wrap .l-sidebar #menu-menu_panel > li > a,
#all_wrap .l-sidebar .newsList > li h3 a {
	display: block;
	padding: 0;
	margin: 0;
	background: none;
	border: none;
	font-size: 12px;
	line-height: 1.4em;
	color: #1e1e1e;
	font-weight: lighter;
	transition: all 0.3s ease;
}
#all_wrap .l-sidebar #menu-menu_panel > li > a::before,
#all_wrap .l-sidebar #menu-menu_panel > li > a::after,
#all_wrap .l-sidebar .newsList > li a::before,
#all_wrap .l-sidebar .newsList > li a::after {
	display: none;
}
#all_wrap .l-sidebar #menu-menu_panel > li > a:hover,
#all_wrap .l-sidebar .newsList > li a:hover {
	font-size: 12px;
	line-height: 1.4em;
	font-weight: lighter;
	color: #00a0e9;
	transition: all 0.3s ease;
}

/*バナー*/
#menu-banner-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	border: none !important;
	background: none !important;
}
#menu-banner-menu > li {
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	border: none;
	background: none;
}
#menu-banner-menu > li:last-child {
	margin-bottom: 0;
}
#menu-banner-menu > li > a {
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	transition: all 0.3s ease;
}
#menu-banner-menu > li > a::before,
#menu-banner-menu > li > a::after {
	display: none;
}
#menu-banner-menu > li > a img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
	transition: all 0.3s ease;
}
#menu-banner-menu > li > a:hover img {
	opacity: 0.8;
	transition: all 0.3s ease;
}

/*タグクラウド*/
.wp-tag-cloud {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	border: none !important;
	background: none !important;
}
.wp-tag-cloud > li {
	display: inline-block;
	padding: 0;
	margin: 0 5px 5px 0;
}
.wp-tag-cloud > li > a {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	padding: 5px 8px 5px 8px;
	margin: 0;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 30px;
	font-size: 10px !important;
	line-height: 1;
	color: #1e1e1e;
	font-weight: lighter;
	text-decoration: none;
	transition: all 0.3s ease;
}
.wp-tag-cloud > li > a::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
	margin: 0 5px 0 0;
	background-image: url('https://madofilm-madoguchi.com/wp-content/themes/mado/img/svg/icon_tag.svg');
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
}
.wp-tag-cloud > li > a:hover {
	color: #00a0e9 !important;
	border: 1px solid #00a0e9;
	transition: all 0.3s ease;
}


/************************************************************/
/*　フッター
/************************************************************/
#footerContent {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.footerWrap {
	width: 100%;
	max-width: 1100px;
	padding: 80px 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.footerLeft {
	width: 40%;
	padding: 0;
	margin: 0;
}
.footerRight {
	width: 55%;
	padding: 0;
	margin: 0;
}
.copyright {
	width: 100%;
	padding: 20px 0;
	margin: 0;
	background: #1e1e1e;
	font-size: 10px;
	line-height: 1;
	color: #fff;
	font-style: normal;
	text-align: center;
}

/*概要*/
.companyInfo {
	padding: 0;
	margin: 0;
}
#all_wrap .companyInfo > em {
	display: block;
	padding: 0;
	margin: 0 auto 10px;
	text-align: left;
	font-size: 35px;
	line-height: 1;
	font-weight: 600;
	font-style: normal;
	font-family: var(--font-en);
}
#all_wrap .companyInfo > h3 {
	padding: 0;
	margin: 0 auto 20px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-align: left;
	border: none;
	background: none;
}
#all_wrap .companyInfo > .addList {
	margin-bottom: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px) {
	#footerContent {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		background: #fafafa;
		position: relative;
	}
	.footerWrap {
		width: calc(100% - 60px);
		max-width: 100%;
		padding: 40px 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.footerLeft {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.footerRight {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.copyright {
		width: 100%;
		padding: 10px 0;
		margin: 0;
		background: #1e1e1e;
		font-size: 10px;
		line-height: 1;
		color: #fff;
		font-style: normal;
		text-align: center;
	}

	/*概要*/
	.companyInfo {
		padding: 0;
		margin: 0 auto 40px;
	}
	#all_wrap .companyInfo > em {
		display: block;
		padding: 0;
		margin: 0 auto 10px;
		text-align: left;
		font-size: 25px;
		line-height: 1;
		font-weight: 600;
		font-style: normal;
		font-family: var(--font-en);
	}
	#all_wrap .companyInfo > h3 {
		padding: 0;
		margin: 0 auto 20px;
		font-size: 14px;
		font-weight: 500;
		line-height: 1;
		text-align: left;
		border: none;
		background: none;
	}
	#all_wrap .companyInfo > .addList {
		margin-bottom: 0;
	}
}

/*見出し*/
#footerContent h2.heading.heading-widget {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 auto 20px;
	text-align: left;
	font-size: 20px;
	line-height: 1;
	font-weight: 500;
	font-style: normal;
	color: #1e1e1e;
	font-family: var(--font-en);
	border: none;
	background: none;
}
#footerContent h2.heading.heading-widget::after {
	content: '';
	display: block;
	width: 50px;
	height: 1px;
	padding: 0;
	margin: 0 0 0 10px;
	background: #1e1e1e;
}

/*リスト*/
#all_wrap #menu-footer-menu {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
	border: none;
	background: none;
}
#all_wrap #menu-footer-menu > li {
	width: 31%;
	padding: 0;
	margin: 0 0 20px;
	background: none;
	border: none;
}
#all_wrap #menu-footer-menu > li a {
	display: inline-block;
	padding: 0;
	margin: 0;
	background: none;
	font-size: 14px;
	line-height: 1.2em;
	font-weight: 500;
	color: #1e1e1e;
	text-decoration: none;
	position: relative;
}
#all_wrap #menu-footer-menu > li a::before,
#all_wrap #menu-footer-menu > li a::after {
	display: none;
}
#all_wrap #menu-footer-menu > li a::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	padding: 0;
	margin: 0;
	background: #1e1e1e;
	position: absolute;
	bottom: -5px;
	left: 0;
	transform: scaleX(0);
	transform: -webkit-scaleX(0);
	transition: transform 0.3s var(--ease-inout);
	transition: -webkit-transform 0.3s var(--ease-inout);
	transform-origin: left;
}
#all_wrap #menu-footer-menu > li a:hover::after {
	transform-origin: left;
	transform: scaleX(1);
	transform: -webkit-scaleX(1);
	transition: transform 0.3s var(--ease-inout);
	transition: -webkit-transform 0.3s var(--ease-inout);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px) {
	/*リスト*/
	#all_wrap #menu-footer-menu {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
		border: none;
		background: none;
	}
	#all_wrap #menu-footer-menu > li {
		width: 30%;
		padding: 0;
		margin: 0 0 20px;
		background: none;
		border: none;
	}
	#all_wrap #menu-footer-menu > li a {
		display: inline-block;
		padding: 0;
		margin: 0;
		background: none;
		font-size: 12px;
		line-height: 1.2em;
		font-weight: 500;
		color: #1e1e1e;
		text-decoration: none;
		position: relative;
	}
	#all_wrap #menu-footer-menu > li a::before,
	#all_wrap #menu-footer-menu > li a::after {
		display: none;
	}
	#all_wrap #menu-footer-menu > li a::after {
		content: '';
		display: block;
		width: 100%;
		height: 1px;
		padding: 0;
		margin: 0;
		background: #1e1e1e;
		position: absolute;
		bottom: -5px;
		left: 0;
		transform: scaleX(0);
		transform: -webkit-scaleX(0);
		transition: transform 0.3s var(--ease-inout);
		transition: -webkit-transform 0.3s var(--ease-inout);
		transform-origin: left;
	}
	#all_wrap #menu-footer-menu > li a:hover::after {
		transform-origin: left;
		transform: scaleX(1);
		transform: -webkit-scaleX(1);
		transition: transform 0.3s var(--ease-inout);
		transition: -webkit-transform 0.3s var(--ease-inout);
	}
}

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

/************************************************************/
/*　リスト
/************************************************************/
.l-wrapper .pageContents .content ul,
.l-wrapper .postContents .content ul {
    list-style: none;
    padding: 0;
    margin: 5px auto 10px;
}
.l-wrapper .pageContents .content ul li,
.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;
}
.l-wrapper .pageContents .content ul li:before,
.l-wrapper .postContents .content ul li:before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    padding: 0;
    margin: 0;
    background: #1e1e1e;
    position: absolute;
    top: 0.7em;
    left: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    border-radius: 50%;
}

.l-wrapper .pageContents .content ol,
.l-wrapper .postContents .content ol {
    list-style: none;
    padding: 0;
    margin: 5px auto 10px;
}
.l-wrapper .pageContents .content ol li,
.l-wrapper .postContents .content ol li {
    padding: 0 0 0 30px;
    margin: 0 0 5px;
    list-style: none;
    border: none;
    background: none;
    position: relative;
}
.l-wrapper .pageContents .content ol li:before,
.l-wrapper .postContents .content ol li:before {
    counter-increment: number;
    content: counter(number);
    background: #fff;
    border: 1px solid #1e1e1e;
    color: #1e1e1e;
    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 table {
    overflow: hidden;
    table-layout: fixed;
    border: none;
    background: #fff;
    padding: 0;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 100px;
}
#all_wrap table th {
    font-style: normal;
    font-feature-settings: "palt";
    border: none;
    border-bottom: none;
    text-align: center;
    vertical-align: middle;
    font-family: var(--font-jp);
    font-size: 15px;
    font-weight: 600;
    background: var(--baseColor);
    color: #fff;
    padding: 20px;
    margin: 0;
    width: 25%;
    border-bottom: 3px solid #fff;
}
#all_wrap 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 table {
        overflow: hidden;
        table-layout: fixed;
        border: none;
        background: #fff;
        padding: 0;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
		border-top: 1px solid rgba(0,0,0,0.1);
		border-left: 1px solid rgba(0,0,0,0.1);
		border-right: 1px solid rgba(0,0,0,0.1);
    }
    #all_wrap table th {
        font-style: normal;
        font-feature-settings: "palt";
        border: none;
        border-bottom: none;
        vertical-align: inherit;
		background: var(--baseColor);
        color: #fff;
        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 table td {
        border: none;
        background: #fff;
        vertical-align: inherit;
        border-bottom: none;
        padding: 15px;
        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 .contactWrap {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: nowrap;
}
.contactWrapLeft {
	width: 30%;
	padding: 100px 50px;
	margin: 0;
	background: var(--baseColor);
	position: relative;
	color: #fff;
}
.contactWrapRight {
	width: 70%;
	padding: 100px 50px;
	margin: 0;
	position: relative;
}
#all_wrap .contactWrapLeft .sticky {
	position: sticky;
	top: 100px;
	left: 0;
}
#all_wrap .contactWrapLeft h2 {
	padding: 0;
	margin: 0 auto;
	font-size: 30px;
	font-weight: bold;
	color: #fff;
	line-height: 1;
	font-family: var(--font-en);
	text-align: left;
}
#all_wrap .contactWrapLeft strong {
	display: block;
	width: 100%;
	padding: 0 0 20px;
	margin: 0 auto 30px;
	position: relative;
}
#all_wrap .contactWrapLeft strong::after {
	content: '';
	display: block;
	width: 50px;
	height: 1px;
	padding: 0;
	margin: 0;
	background: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
}
#all_wrap .contactWrapLeft h3 {
	font-size: 18px;
	line-height: 1;
	color: #fff;
	padding: 0;
	margin: 0 auto 5px;
}
#all_wrap .contactWrapLeft h3::before,
#all_wrap .contactWrapLeft h3::after {
	display: none;
}
#all_wrap .contactWrapLeft p {
	padding: 0;
	margin: 0 auto 20px;
	font-size: 12px;
	line-height: 2;
	color: #fff;
}
#all_wrap .contactWrapLeft tel {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
}
#all_wrap .contactWrapLeft tel > a {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	font-size: 30px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	padding: 0;
	margin: 0 auto 5px;
}
#all_wrap .contactWrapLeft tel > a img {
	width: auto;
	height: 25px;
	padding: 0;
	margin: 0 5px 0 0;
}
#all_wrap .contactWrapLeft tel > span {
	display: block;
	padding: 0;
	margin: 0;
	font-size: 12px;
	line-height: 1;
	color: #fff;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .contactWrap {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.contactWrapLeft {
		width: 100%;
		padding: 30px;
		margin: 0;
		background: var(--baseColor);
		position: relative;
		color: #fff;
	}
	.contactWrapRight {
		width: 100%;
		padding: 30px;
		margin: 0;
		position: relative;
	}
	#all_wrap .contactWrapLeft .sticky {
		position: relative;
		top: unset;
		left: unset;
	}
	#all_wrap .contactWrapLeft h2 {
		padding: 0;
		margin: 0 auto;
		font-size: 25px;
		font-weight: bold;
		color: #fff;
		line-height: 1;
		font-family: var(--font-en);
		text-align: left;
	}
	#all_wrap .contactWrapLeft strong {
		display: block;
		width: 100%;
		padding: 0 0 20px;
		margin: 0 auto 30px;
		position: relative;
	}
	#all_wrap .contactWrapLeft strong::after {
		content: '';
		display: block;
		width: 50px;
		height: 1px;
		padding: 0;
		margin: 0;
		background: #fff;
		position: absolute;
		bottom: 0;
		left: 0;
	}
	#all_wrap .contactWrapLeft h3 {
		font-size: 18px;
		line-height: 1;
		color: #fff;
		padding: 0;
		margin: 0 auto 5px;
	}
	#all_wrap .contactWrapLeft h3::before,
	#all_wrap .contactWrapLeft h3::after {
		display: none;
	}
	#all_wrap .contactWrapLeft p {
		padding: 0;
		margin: 0 auto 20px;
		font-size: 12px;
		line-height: 2;
		color: #fff;
	}
	#all_wrap .contactWrapLeft tel {
		display: block;
		width: 100%;
		padding: 0;
		margin: 0;
	}
	#all_wrap .contactWrapLeft tel > a {
		display: flex;
		display: -webkit-flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: nowrap;
		font-size: 30px;
		line-height: 1;
		font-weight: bold;
		color: #fff;
		padding: 0;
		margin: 0 auto 5px;
	}
	#all_wrap .contactWrapLeft tel > a img {
		width: auto;
		height: 25px;
		padding: 0;
		margin: 0 5px 0 0;
	}
	#all_wrap .contactWrapLeft tel > span {
		display: block;
		padding: 0;
		margin: 0;
		font-size: 12px;
		line-height: 1;
		color: #fff;
	}
}

/*お問い合わせフォーム*/
#all_wrap table.table-contactform7 {
    border: none;
    background: none;
    padding: 0;
    margin: 0 auto 50px;
    width: 100%;
    max-width: 800px;
    border-top: 1px solid #F3EFE9;
}
#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: 20px 0;
    margin: 0;
    color: #1e1e1e;
    font-size: 15px;
    line-height: 1.4em;
    font-style: normal;
    font-feature-settings: "palt";
    width: 30%;
    font-family: var(--font-jp);
    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 #F3EFE9;
    box-shadow: 0 1px 0 rgba(255,255,255,1);
}
#all_wrap table.table-contactform7 td {
    width: 70%;
    border: none;
    background: none;
    padding: 20px 0 20px 50px;
    margin: 0;
    color: #1e1e1e;
    font-size: 15px;
    border-bottom: 1px solid #F3EFE9;
    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: #00a0e9;
    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: 10px;
}
#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: 10px;
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    font-family: var(--font-jp);
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "palt";
    font-size: 0.8em;
    line-height: 1;
    background: #f1f1f1;
    outline: none;
}
#all_wrap table.table-contactform7 input.wpcf7-date {
    padding: 9px;
    margin: 0;
    margin-right: 10px;
    font-size: 0.8em;
	background: #f1f1f1;
    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: #f1f1f1;
    outline: none;
}
#all_wrap table.table-contactform7 input.your-naiyou {
    display: inline;
    width: auto;
}
#all_wrap table.table-contactform7 label {
    line-height: 1.2em;
}
#all_wrap table.table-contactform7 .required-contactform7 {
    background: #f44336;
    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: 10px;
    margin: 0 10px 10px 0;
    border: none;
    vertical-align: middle;
	font-size: 0.8em;
    line-height: 1;
    font-weight: 500;
	background: #f1f1f1;
    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: 10px;
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    font-size: 0.8em;
    line-height: 1;
	background: #f1f1f1;
    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: #1e1e1e;
    border-radius: 40px;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
}
#all_wrap .txt_cent input:hover {
    transition: 0.5s;
	background: #00a0e9;
}

#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%);
        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: #1e1e1e;
        font-size: 15px;
        line-height: 1.4em;
        font-style: normal;
        font-feature-settings: "palt";
        width: 100%;
        font-family: var(--font-jp);
        font-weight: 600;
        font-style: normal;
        font-feature-settings: "palt";
        display: -webkit-flex;
        display: flex;
        justify-content: flex-start;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        position: relative;
        border-bottom: none;
        box-shadow: none;
    }
	#all_wrap table.table-contactform7 th br {
		display: none;
	}
    #all_wrap table.table-contactform7 td {
        width: 100%;
        border: none;
        background: none;
        padding: 10px 0;
        margin: 0;
        color: #1e1e1e;
        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: 4px 7px;
        margin: 0 0 0 20px;
        background: #00a0e9;
        border-radius: 0;
        font-size: 10px;
        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: 10px;
    }
    #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: 10px;
        margin: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
        font-family: var(--font-jp);
        font-weight: 400;
        font-style: normal;
        font-feature-settings: "palt";
        font-size: 0.8em;
        line-height: 1;
		background: #f1f1f1;
        outline: none;
    }
    #all_wrap table.table-contactform7 input.wpcf7-date {
        padding: 9px;
        margin: 0;
        margin-right: 10px;
        font-size: 0.8em;
		background: #f1f1f1;
        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: #f1f1f1;
        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: #f44336;
        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: 10px;
        margin: 0 10px 10px 0;
        border: none;
        vertical-align: middle;
        line-height: 1;
        font-weight: 500;
		background: #f1f1f1;
        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: 10px;
        margin: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
        font-size: 0.8em;
        line-height: 1;
		background: #f1f1f1;
        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: #1e1e1e;
        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: #1e1e1e;
}
#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: #1e1e1e;
}
#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: #1e1e1e;
}


/*== スマホ・タブレット対応 ==*/
@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: 2em;
    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: 2em;
        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: var(--font-jp);
    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: #1e1e1e;
}
.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%);
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
    }
	.sitemap ul .sub-menu {
		padding: 0 0 0 10px;
	}
}

/*スマホ改行
------------------------------------------------------------*/
	
.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: calc(100% - 100px);
    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;
	border-radius: 5px;
}
.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: var(--font-en);
    font-size: 12px;
    font-weight: 500;
    line-height: 1em;
    color: #c8c8c8;
    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%);
        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 30px;
    }
    .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: var(--font-en);
        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: 14px;
        font-weight: 700;
        line-height: 1.4em;
        font-style: normal;
        border: none;
        background: none;
    }
}

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

.singleHead {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}
#all_wrap .singleHead .tagList {
	margin-bottom: 20px;
}
.singleImage img {
	width: 100%;
	height: auto;
}

.tagList {
    padding: 0;
    margin: 0 auto 10px;
}
.tag {
    display: inline-block;
    padding: 5px 5px;
    margin: 0 5px 5px 0;
	background: var(--baseColor);
    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: var(--font-en);
    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: var(--font-en);
    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: #1e1e1e;
    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: #1e1e1e;
}
#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: #1e1e1e;
    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: #1e1e1e;
    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: #1e1e1e;
    transition: all 0.5s ease;
}
.contentstable-number {
    display: inline-block;
    padding: 5px;
    margin: 0;
    margin-right: 5px;
    border: 1px solid #ececec;
    background: #fff;
    color: #1e1e1e;
    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: #1e1e1e;
}
#all_wrap .eyecatch {
    background: #1e1e1e;
}
#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: #1e1e1e;
    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: #1e1e1e;
        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;
    }
}



/************************************************************/
/*　トップページ　ニュース
/************************************************************/
#topNews {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	background: #f5f5f5;
	position: relative;
}
#topNews .container {
	padding: 100px 0;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
}
#topNews .container::before {
	content: '';
	display: block;
	width: 5%;
	height: 100%;
	padding: a0;
	margin: 0;
	background: none;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	position: absolute;
	top: 0;
	left: 30%;
	z-index: 0;
}
#topNews .container::after {
	content: '';
	display: block;
	width: 5%;
	height: 100%;
	padding: a0;
	margin: 0;
	background: none;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	position: absolute;
	top: 0;
	right: 30%;
	z-index: 0;
}
#all_wrap header.titileBox {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	z-index: 2;
}
#all_wrap header.titileBox > em {
	display: block;
	padding: 0;
	margin: 0 auto 10px;
	text-align: center;
	font-size: 70px;
	line-height: 1;
	font-weight: 600;
	font-style: normal;
	font-family: var(--font-en);
}
#all_wrap header.titileBox > h2 {
	padding: 0;
	margin: 0 auto 30px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	border: none;
	background: none;
}
#all_wrap header.titileBox > h2 + p {
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
/*リスト*/
#all_wrap .newsList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#all_wrap.sub_page .newsList {
	width: 100%;
	max-width: 1100px;
}
#all_wrap .newsList::after {
	content: '';
	display: block;
	width: 30%;
}
#all_wrap .newsList > li {
	width: 30%;
	padding: 0;
	margin: 0;
	border-top: 1px solid #fff;
}
#all_wrap .newsList > li:nth-child(2) { transition-delay: 0.2s; margin-top: 60px; }
#all_wrap .newsList > li:nth-child(3) { transition-delay: 0.4s; }
#all_wrap.sub_page .newsList > li:nth-child(2) { transition-delay: 0.2s; margin-top: 0; }
#all_wrap .newsList > li figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	overflow: hidden;
	text-align: center;
	position: relative;
}
#all_wrap .newsList > li figure::before {
	content: '';
	display: block;
	padding-top: 100%;
}
#all_wrap .newsList > li figure img {
	width: auto;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform-origin: center;
	transition: all 0.3s ease;
}
#all_wrap .newsList > li:hover figure img {
	width: auto;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) scale(1.05);
	-webkit-transform: translate(-50%,-50%) scale(1.05);
	transform-origin: center;
	transition: all 0.3s ease;
}
#all_wrap .newsList > li .newsListInfo {
	padding: 30px;
	margin: 0 0 0 auto;
	background: #fff;
	width: calc(100% - 30px);
	transform: translate(0,-60px);
	-webkit-transform: translate(0,-60px);
}
/*タグ*/
#all_wrap .tagList {
	width: 100%;
	padding: 0;
	margin: 0 auto 5px;
}
#all_wrap .tagList > span.tags {
	display: inline-block;
	padding: 4px 5px;
	margin: 0 5px 5px 0;
	background: var(--baseColor);
	font-size: 10px;
	line-height: 1;
	color: #fff;
}
/*日付*/
.news_date {
	display: inline-block;
	padding: 0;
	margin: 0 auto;
	font-size: 10px;
	font-family: var(--font-en);
	line-height: 1;
	color: #c8c8c8;
}
/*タイトル*/
#all_wrap .newsList > li h3 {
	font-size: 15px;
	line-height: 1.4em;
	color: var(--textColor);
	font-weight: 500;
	transition: all 0.3s ease;
}
#all_wrap .newsList > li h3 {
	transition: all 0.3s ease;
}
/*ボタン*/
#topNews .more {
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 5;
}
#topNews .more a {
	padding: 15px 80px;
}

/*英字*/
#topNews .eng {
	display: inline-block;
	padding: 0;
	margin: 0;
	position: absolute;
	bottom: -0.5em;
	left: -0.15em;
	font-size: 130px;
	line-height: 1;
	font-weight: 600;
	font-family: var(--font-en);
	color: #000;
	opacity: 0.05;
	z-index: 5;
	white-space:nowrap;
	overflow:hidden;
}
#topNews .eng.active {
	animation: wid 3s var(--ease-inout);
}
@keyframes wid {
	from {
		width:0%;
	}
	to {

		width:100%;
	}
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px) {
	#topNews {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		background: #f5f5f5;
		position: relative;
	}
	#topNews .container {
		width: calc(100% - 60px);
		padding: 40px 0;
		margin: 0 auto;
		border: none;
	}
	#topNews .container::before {
		display: none;
	}
	#topNews .container::after {
		display: none;
	}
	#all_wrap header.titileBox {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		position: relative;
		z-index: 2;
	}
	#all_wrap header.titileBox > em {
		display: block;
		padding: 0;
		margin: 0 auto 10px;
		text-align: center;
		font-size: 35px;
		line-height: 1;
		font-weight: 600;
		font-style: normal;
		font-family: var(--font-en);
	}
	#all_wrap header.titileBox > h2 {
		padding: 0;
		margin: 0 auto 20px;
		font-size: 14px;
		font-weight: 600;
		line-height: 1;
		text-align: center;
		border: none;
		background: none;
	}
	#all_wrap header.titileBox > h2 + p {
		padding: 0;
		margin: 0 auto;
		text-align: center;
	}
	/*リスト*/
	#all_wrap .newsList {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		list-style: none;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
		z-index: 5;
	}
	#all_wrap.sub_page .newsList {
		width: 100%;
		max-width: 100%;
	}
	#all_wrap .newsList::after {
		content: '';
		display: none;
	}
	#all_wrap .newsList > li {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		border-top: none
	}
	#all_wrap .newsList > li:nth-child(2) { transition-delay: 0; margin-top: 0; }
	#all_wrap .newsList > li:nth-child(3) { transition-delay: 0; }
	#all_wrap.sub_page .newsList > li:nth-child(2) { transition-delay: 0; margin-top: 0; }
	#all_wrap .newsList > li figure {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		overflow: hidden;
		text-align: center;
		position: relative;
	}
	#all_wrap .newsList > li figure::before {
		content: '';
		display: block;
		padding-top: 100%;
	}
	#all_wrap .newsList > li figure img {
		width: auto;
		height: 100%;
		padding: 0;
		margin: 0;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		-webkit-transform: translate(-50%,-50%);
		transform-origin: center;
		transition: all 0.3s ease;
	}
	#all_wrap .newsList > li:hover figure img {
		width: auto;
		height: 100%;
		padding: 0;
		margin: 0;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%) scale(1.05);
		-webkit-transform: translate(-50%,-50%) scale(1.05);
		transform-origin: center;
		transition: all 0.3s ease;
	}
	#all_wrap .newsList > li .newsListInfo {
		padding: 20px;
		margin: 0 0 0 auto;
		background: #fff;
		width: calc(100% - 20px);
		transform: translate(0,-40px);
		-webkit-transform: translate(0,-40px);
	}

	/*英字*/
	#topNews .eng {
		display: none;
	}
	#topNews .eng.active {
		animation: wid 3s var(--ease-inout);
	}
	
}

/************************************************************/
/*　トップページ　紹介
/************************************************************/
#topAbout {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: #fff;
}
#topAbout .container {
	padding: 200px 0;
	border-left: 1px solid #f5f5f5;
	border-right: 1px solid #f5f5f5;
}
#topAbout .container::before {
	content: '';
	display: block;
	width: 5%;
	height: 100%;
	padding: a0;
	margin: 0;
	background: none;
	border-left: 1px solid #f5f5f5;
	border-right: 1px solid #f5f5f5;
	position: absolute;
	top: 0;
	left: 30%;
	z-index: 0;
}
#topAbout .container::after {
	content: '';
	display: block;
	width: 5%;
	height: 100%;
	padding: a0;
	margin: 0;
	background: none;
	border-left: 1px solid #f5f5f5;
	border-right: 1px solid #f5f5f5;
	position: absolute;
	top: 0;
	right: 30%;
	z-index: 0;
}
#topAbout .container > figure {
	width: calc(30% + 100px);
	height: 100%;
	padding: 0;
	margin: 0;
	overflow: hidden;
	text-align: center;
	position: absolute;
	top: 50%;
	right: -100px;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
}
#topAbout .container > figure:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	background: #fff;
	transform: translate3d(0%,0,0);
}
#topAbout .container > figure.active:after {
	animation: swipeRight 3s var(--ease-inout);
	animation-fill-mode: forwards;
}
#topAbout .container > 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%);
}
.topAboutInfo {
	width: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	z-index: 2;
}
#all_wrap .topAboutInfo > em {
	display: block;
	width: 30%;
	padding: 0;
	margin: 0 auto 10px 0;
	text-align: left;
	font-size: 70px;
	line-height: 1;
	font-weight: 600;
	font-style: normal;
	font-family: var(--font-en);
	white-space: nowrap;
	border-top: 1px solid #f5f5f5;
}
#all_wrap .topAboutInfo > h2 {
	width: 30%;
	padding: 0;
	margin: 0 auto 40px 0;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-align: left;
	border: none;
	background: none;
	border-bottom: 1px solid #f5f5f5;
}
#all_wrap .topAboutInfo > strong {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	text-align: left;
	font-size: 25px;
	line-height: 1.4em;
	font-weight: 600;
}
#all_wrap .topAboutInfo > p {
	padding: 0;
	margin: 0 auto 40px;
	text-align: justify;
	text-justify: inter-ideograph;
}
#topAbout .slider {
	position: relative;
	z-index: 1;
	width: calc(50%);
	padding: 0;
	margin: 0 0 0 auto;
	background: none;
}
#topAbout .slick-list {
	position: relative;
	display: block;
	margin: 0;
	padding: 0;
	width: 100%;
	overflow: hidden;
}
#topAbout .slick-list:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	background: #fff;
	transform: translate3d(0%,0,0);
}
#topAbout .slider.active .slick-list:after {
	animation: swipeRight 3s var(--ease-inout);
	animation-fill-mode: forwards;
}
#topAbout .slick-slide {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#topAbout .slick-slide::before {
	content: '';
	display: block;
	padding-top: 75%;
}
#topAbout .slick-slide img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform-origin: center;
	transition: all 0.3s ease;
}
/*ドットナビゲーションの設定*/
#topAbout .slick-dots {
	z-index: 3;
	text-align:center;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	flex-wrap: nowrap;
	padding: 0;
	margin: 0;
	position: absolute;
	bottom: -40px;
	left: 0;
}
#topAbout .slick-dots li {
	display: block;
	width: 7px;
	height: 7px;
	margin: 0 7px 0 0;
	border-radius: 50%;
}
#topAbout .slick-dots button {
	color: transparent;
	outline: none;
	width: 100%;/*ドットボタンのサイズ*/
	height: 100%;/*ドットボタンのサイズ*/
	border-radius: 50%;
	padding: 0;
	margin: 0;
	display: block;
	background: #fff;/*ドットボタンの色*/
	box-shadow: none;
	background: #1e1e1e;
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	opacity: 0.2;
	cursor: pointer;
}
#topAbout .slick-dots .slick-active button{
	opacity: 1;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px) {
	#topAbout {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		background: #fff;
	}
	#topAbout .container {
		width: calc(100% - 60px);
		padding: 40px 0;
		border: none;
	}
	#topAbout .container::before {
		display: none;
	}
	#topAbout .container::after {
		display: none;
	}
	#topAbout .container > figure {
		display: none;
	}
	#topAbout .container > figure:after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 100;
		width: 100%;
		height: 100%;
		background: #fff;
		transform: translate3d(0%,0,0);
	}
	#topAbout .container > figure.active:after {
		animation: swipeRight 3s var(--ease-inout);
		animation-fill-mode: forwards;
	}
	#topAbout .container > 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%);
	}
	.topAboutInfo {
		width: 100%;
		padding: 0;
		margin: 0 auto 30px;
		position: relative;
		top: unset;
		left: unset;
		transform: translate(0,0);
		-webkit-transform: translate(0,0);
		z-index: 2;
	}
	#all_wrap .topAboutInfo > em {
		display: block;
		width: 100%;
		padding: 0 0 10px;
		margin: 0 auto;
		text-align: left;
		font-size: 35px;
		line-height: 1;
		font-weight: 600;
		font-style: normal;
		font-family: var(--font-en);
		white-space: nowrap;
		border-top: none;
		background: #fff;
	}
	#all_wrap .topAboutInfo > h2 {
		width: 100%;
		padding: 0 0 20px;
		margin: 0 auto;
		font-size: 14px;
		font-weight: 600;
		line-height: 1;
		text-align: left;
		border: none;
		background: none;
		border-bottom: none;
		background: #fff;
	}
	#all_wrap .topAboutInfo > strong {
		display: block;
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		text-align: left;
		font-size: 20px;
		line-height: 1.4em;
		font-weight: 600;
	}
	#all_wrap .topAboutInfo > p {
		padding: 0;
		margin: 0 auto 20px;
		text-align: justify;
		text-justify: inter-ideograph;
	}
	#topAbout .slider {
		position: relative;
		z-index: 1;
		width: 100%;
		padding: 0;
		margin: 0 auto;
		background: none;
	}
	#topAbout .slick-list {
		position: relative;
		display: block;
		margin: 0;
		padding: 0;
		width: 100%;
		overflow: hidden;
	}
	#topAbout .slick-list:after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 100;
		width: 100%;
		height: 100%;
		background: #fff;
		transform: translate3d(0%,0,0);
	}
	#topAbout .slider.active .slick-list:after {
		animation: swipeRight 3s var(--ease-inout);
		animation-fill-mode: forwards;
	}
	#topAbout .slick-slide {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
		overflow: hidden;
		text-align: center;
	}
	#topAbout .slick-slide::before {
		content: '';
		display: block;
		padding-top: 75%;
	}
	#topAbout .slick-slide img {
		width: 100%;
		height: auto;
		padding: 0;
		margin: 0;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		-webkit-transform: translate(-50%,-50%);
		transform-origin: center;
		transition: all 0.3s ease;
	}
	/*ドットナビゲーションの設定*/
	#topAbout .slick-dots {
		width: 100%;
		z-index: 3;
		text-align:center;
		display: flex;
		display: -webkit-flex;
		justify-content: center;
		flex-wrap: nowrap;
		padding: 0;
		margin: 0;
		position: absolute;
		bottom: -20px;
		left: 0;
	}
	#topAbout .slick-dots li {
		display: block;
		width: 7px;
		height: 7px;
		margin: 0 4px;
		border-radius: 50%;
	}
	#topAbout .slick-dots button {
		color: transparent;
		outline: none;
		width: 100%;/*ドットボタンのサイズ*/
		height: 100%;/*ドットボタンのサイズ*/
		border-radius: 50%;
		padding: 0;
		margin: 0;
		display: block;
		background: #fff;/*ドットボタンの色*/
		box-shadow: none;
		background: #1e1e1e;
		border: none;
		outline: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		opacity: 0.2;
		cursor: pointer;
	}
	#topAbout .slick-dots .slick-active button{
		opacity: 1;
	}
}

/************************************************************/
/*　トップページ　プロダクト
/************************************************************/
#topProduct {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	overflow: hidden;
}
#topProduct::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) scale(1);
	-webkit-transform: translate(-50%,-50%) scale(1);
	z-index: -1;
	background-image: url('https://marine-global.com/img/mainVisual_02.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
}
#topProduct.active::before {
	animation: bgLoop 30s linear;
}
@keyframes bgLoop {
	0% {
		-webkit-filter: blur(5px);
		filter: blur(5px);
		transform: translate(-50%,-50%) scale(1.5);
		-webkit-transform: translate(-50%,-50%) scale(1.5);
	}
	100% {
		-webkit-filter: blur(0);
		filter: blur(0);
		transform: translate(-50%,-50%) scale(1);
		-webkit-transform: translate(-50%,-50%) scale(1);
	}
}

.topProductInfo {
	width: 750px;
	padding: 80px 80px;
	margin: 0;
	background: rgba(255,255,255,0.9);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	clip-path: polygon(10% 0, 70% 0%, 100% 0, 100% 85%, 90% 100%, 30% 100%, 0 100%, 0 15%);
}
#all_wrap .topProductInfo > em {
	display: block;
	padding: 0;
	margin: 0 auto 10px;
	text-align: center;
	font-size: 70px;
	line-height: 1;
	font-weight: 600;
	font-style: normal;
	font-family: var(--font-en);
}
#all_wrap .topProductInfo > h2 {
	padding: 0;
	margin: 0 auto 30px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	border: none;
	background: none;
}
#all_wrap .topProductInfo > strong {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	text-align: center;
	font-size: 25px;
	line-height: 1.4em;
	font-weight: 600;
}
#all_wrap .topProductInfo > p {
	padding: 0;
	margin: 0 auto 40px;
	text-align: center;
}
/*ボタン*/
#topProduct .more {
	width: 100%;
	text-align: center;
}
#topProduct .more a {
	padding: 15px 80px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px) {
	#topProduct {
		width: 100%;
		padding: 40px 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
		overflow: hidden;
	}
	#topProduct::before {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		padding: 0;
		margin: 0;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%) scale(1);
		-webkit-transform: translate(-50%,-50%) scale(1);
		z-index: -1;
		background-image: url('https://marine-global.com/img/topProduct_bg_sp.jpg');
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		background-attachment: fixed;
	}
	#topProduct.active::before {
		animation: unset;
	}
	@keyframes bgLoop {
		0% {
			-webkit-filter: blur(5px);
			filter: blur(5px);
			transform: translate(-50%,-50%) scale(1.5);
			-webkit-transform: translate(-50%,-50%) scale(1.5);
		}
		100% {
			-webkit-filter: blur(0);
			filter: blur(0);
			transform: translate(-50%,-50%) scale(1);
			-webkit-transform: translate(-50%,-50%) scale(1);
		}
	}

	.topProductInfo {
		width: calc(100% - 60px);
		padding: 30px;
		margin: 0;
		background: rgba(255,255,255,0.9);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		clip-path: polygon(10% 0, 90% 0%, 100% 0, 100% 90%, 90% 100%, 10% 100%, 0 100%, 0 10%);
	}
	#all_wrap .topProductInfo > em {
		display: block;
		padding: 0;
		margin: 0 auto 10px;
		text-align: center;
		font-size: 35px;
		line-height: 1;
		font-weight: 600;
		font-style: normal;
		font-family: var(--font-en);
	}
	#all_wrap .topProductInfo > h2 {
		padding: 0;
		margin: 0 auto 20px;
		font-size: 14px;
		font-weight: 600;
		line-height: 1;
		text-align: center;
		border: none;
		background: none;
	}
	#all_wrap .topProductInfo > strong {
		display: block;
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		text-align: center;
		font-size: 20px;
		line-height: 1.4em;
		font-weight: 600;
	}
	#all_wrap .topProductInfo > p {
		padding: 0;
		margin: 0 auto 20px;
		text-align: center;
	}
	/*ボタン*/
	#topProduct .more {
		width: 100%;
		text-align: center;
	}
	#topProduct .more a {
		padding: 15px 80px;
	}
}

/************************************************************/
/*　トップページ　会社概要
/************************************************************/
#topCompany {
	width: 100%;
	padding: 80px 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	flex-wrap: nowrap;
	z-index: 0;
}
#topCompany::before {
	content: '';
	display: block;
	width: 67%;
	height: 100%;
	padding: 0;
	margin: 0;
	background-image: url('https://marine-global.com/img/bgPattern.png');
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	opacity: 0.5;
}
#topCompany::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	background: #fff;
	transform: translate3d(0%,0,0);
}
#topCompany.active:after {
	animation: swipeRight 3s var(--ease-inout);
	animation-fill-mode: forwards;
}
#topCompany > figure {
	width: 40%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#topCompany > figure:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	background: #fff;
	transform: translate3d(0%,0,0);
}
#topCompany > figure.active:after {
	animation: swipeRight 3s var(--ease-inout);
	animation-fill-mode: forwards;
}
#topCompany > figure iframe {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}
.topCompanyInfo {
	padding: 50px 100px;
	margin: 0;
}
#all_wrap .topCompanyInfo > em {
	display: block;
	padding: 0;
	margin: 0 auto 10px;
	text-align: left;
	font-size: 70px;
	line-height: 1;
	font-weight: 600;
	font-style: normal;
	font-family: var(--font-en);
}
#all_wrap .topCompanyInfo > h2 {
	padding: 0;
	margin: 0 auto 30px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-align: left;
	border: none;
	background: none;
}
#all_wrap .topCompanyInfo > p {
	padding: 0;
	margin: 0 auto 40px;
	text-align: left;
}
#all_wrap .topCompanyInfo > h3 {
	padding: 0;
	margin: 0 auto 15px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-align: left;
	border: none;
	background: none;
}
/*住所リスト*/
#all_wrap .addList {
	padding: 0;
	margin: 0 auto 40px;
}
#all_wrap .addList > li {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	font-size: 12px;
	line-height: 1;
	color: #1e1e1e;
	font-weight: lighter;
}
#all_wrap .addList > li:last-child {
	margin-bottom: 0;
}
#all_wrap .addList > li > span {
	display: inline-block;
	width: 55px;
	padding: 3px 5px;
	margin: 0 10px 0 0;
	background: #1e1e1e;
	font-size: 10px;
	line-height: 1;
	color: #fff;
	font-weight: lighter;
	text-align: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px) {
	#topCompany {
		width: 100%;
		padding: 40px 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: center;
		flex-wrap: wrap;
		z-index: 0;
	}
	#topCompany::before {
		content: '';
		display: block;
		width: calc(100%);
		height: 100%;
		padding: 0;
		margin: 0;
		background-image: url('https://marine-global.com/img/bgPattern.png');
		position: absolute;
		top: 0;
		right: 0;
		z-index: -1;
		opacity: 0.5;
	}
	#topCompany::after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 100;
		width: 100%;
		height: 100%;
		background: #fff;
		transform: translate3d(0%,0,0);
	}
	#topCompany.active:after {
		animation: swipeRight 3s var(--ease-inout);
		animation-fill-mode: forwards;
	}
	#topCompany > figure {
		width: calc(100% - 60px);
		height: 200px;
		padding: 0;
		margin: 0 auto;
		position: relative;
		overflow: hidden;
		text-align: center;
		order: 1;
	}
	#topCompany > figure:after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 100;
		width: 100%;
		height: 100%;
		background: #fff;
		transform: translate3d(0%,0,0);
	}
	#topCompany > figure.active:after {
		animation: swipeRight 3s var(--ease-inout);
		animation-fill-mode: forwards;
	}
	#topCompany > figure iframe {
		width: 100%;
		height: 100%;
		padding: 0;
		margin: 0;
	}
	.topCompanyInfo {
		width: calc(100% - 60px);
		padding: 0;
		margin: 0 auto 40px;
	}
	#all_wrap .topCompanyInfo > em {
		display: block;
		padding: 0;
		margin: 0 auto 10px;
		text-align: left;
		font-size: 35px;
		line-height: 1;
		font-weight: 600;
		font-style: normal;
		font-family: var(--font-en);
	}
	#all_wrap .topCompanyInfo > h2 {
		padding: 0;
		margin: 0 auto 20px;
		font-size: 14px;
		font-weight: 600;
		line-height: 1;
		text-align: left;
		border: none;
		background: none;
	}
	#all_wrap .topCompanyInfo > p {
		padding: 0;
		margin: 0 auto 20px;
		text-align: left;
	}
	#all_wrap .topCompanyInfo > h3 {
		padding: 0;
		margin: 0 auto 15px;
		font-size: 14px;
		font-weight: 600;
		line-height: 1;
		text-align: left;
		border: none;
		background: none;
	}
	/*住所リスト*/
	#all_wrap .addList {
		padding: 0;
		margin: 0 auto 20px;
	}
	#all_wrap .addList > li {
		display: flex;
		display: -webkit-flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: nowrap;
		padding: 0;
		margin: 0 auto 10px;
		position: relative;
		font-size: 12px;
		line-height: 1.2em;
		color: #1e1e1e;
		font-weight: lighter;
	}
	#all_wrap .addList > li:last-child {
		margin-bottom: 0;
	}
	#all_wrap .addList > li > span {
		display: inline-block;
		width: 55px;
		min-width: 55px;
		padding: 3px 5px;
		margin: 0 10px 0 0;
		background: #1e1e1e;
		font-size: 10px;
		line-height: 1;
		color: #fff;
		font-weight: lighter;
		text-align: center;
	}
}

/*==========================================*/
/** よくある質問
/*==========================================*/
/*リスト*/
.faqList {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
}
.faqList dl {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
.faqList dl dt {
	width: 100%;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	background: #fff;
	border-bottom: 2px solid #fafafa;
	font-size: 16px;
	color: #1e1e1e;
	position: relative;
	z-index: 0;
	padding: 30px 20px 30px 70px;
	margin: 0;
	cursor: pointer;
	transition: all 0.5s ease;
}
.faqList dl dt::before {
	content: 'Q';
	display: block;
	width: 32px;
	height: 32px;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	font-family: var(--font-en);
	font-size: 28px;
	line-height: 1;
	color: #1e1e1e;
}
.faqList dl dt:hover {
	color: #1e1e1e;
	transition: all 0.5s ease;
}
.faqList dl dt span::before,
.faqList dl dt span::after {
	content: '';
	display: block;
	width: 12px;
	height: 1px;
	border-radius: 5px;
	background: #1e1e1e;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}
.faqList dl dt span::after {
	background: #1e1e1e;
	transform: translateY(-50%) rotate(90deg);
	transition: 0.5s;
}
.faqList dt span.active::after {
	transform: rotate(0);
	transition: 0.5s;
}
.faqList dl dd {
	padding: 20px 0 20px 70px;
	margin: 0 auto 20px;
	background: #fff;
	position: relative;
}
.faqList dl dd p {
	padding: 0;
	margin: 0;
	line-height: 2;
}
.faqList dl dd p:last-of-type {
	margin-bottom: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*リスト*/
	.faqList {
		width: 100%;
		max-width: 1100px;
		padding: 0;
		margin: 0 auto;
	}
	.faqList dl {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	.faqList dl dt {
		width: 100%;
		display: flex;
		display: -webkit-flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: nowrap;
		background: #fff;
		border-bottom: 2px solid #fafafa;
		font-size: 14px;
		line-height: 1.2em;
		color: #1e1e1e;
		position: relative;
		z-index: 0;
		padding: 15px 40px 15px 40px;
		margin: 0;
		cursor: pointer;
		transition: all 0.5s ease;
	}
	.faqList dl dt::before {
		content: 'Q';
		display: block;
		width: 20px;
		height: 20px;
		padding: 0;
		margin: 0;
		position: absolute;
		top: 50%;
		left: 15px;
		transform: translate(0,-50%);
		-webkit-transform: translate(0,-50%);
		font-family: var(--font-en);
		font-size: 15px;
		line-height: 1;
		color: #1e1e1e;
	}
	.faqList dl dt:hover {
		color: #1e1e1e;
		transition: all 0.5s ease;
	}
	.faqList dl dt span::before,
	.faqList dl dt span::after {
		content: '';
		display: block;
		width: 12px;
		height: 1px;
		border-radius: 5px;
		background: #1e1e1e;
		position: absolute;
		right: 10px;
		top: 50%;
		transform: translateY(-50%);
	}
	.faqList dl dt span::after {
		background: #1e1e1e;
		transform: translateY(-50%) rotate(90deg);
		transition: 0.5s;
	}
	.faqList dt span.active::after {
		transform: rotate(0);
		transition: 0.5s;
	}
	.faqList dl dd {
		padding: 15px;
		margin: 0 auto 20px;
		background: #fff;
		position: relative;
	}
	.faqList dl dd p {
		padding: 0;
		margin: 0;
		font-size: 14px;
		line-height: 2;
	}
	.faqList dl dd p:last-of-type {
		margin-bottom: 0;
	}
}
