@charset "UTF-8";

/*----------------------------------------------------------*/
/* カスタマイズ用CSS
/*----------------------------------------------------------*/
:root {
	--main: #FFF5EE;
	--sub: #073d8e;
	--act: #3392a7;
	--text: #1e1e1e;
	--link: #3392a7;
	--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: "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
	--font-jp2: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	--ease: all 0.3s ease;
}
*{
    margin: 0;
    padding: 0;
}
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: var(--text);
	background: #fff;
}

/*構成*/
#all_wrap {
	width: calc(100%);
	padding: 80px 80px 0;
	margin: 0;
	position: relative;
	overflow: hidden;
}
#all_wrap.full_page {
	width: calc(100%);
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
}
.mainContainer {
	position: relative;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	min-height: 100vh;
}
.widget {
	padding: 0;
	margin: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 1200px){
	#all_wrap {
		width: calc(100%);
		padding: 80px 0 0;
		margin: 0;
		position: relative;
		overflow: hidden;
	}
	.mainContainer {
		position: relative;
		border-left: none;
		border-right: none;
		min-height: unset;
	}
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*構成*/
	#all_wrap {
		width: calc(100%);
		padding: 50px 0 0;
		margin: 0 auto;
		position: relative;
	}
	#all_wrap.sub_page {
		padding-top: 50px;
	}
	.mainContainer {
		position: relative;
		border-left: none;
		border-right: none;
		min-height: unset;
	}
	#mainContent {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	#contentWrapper {
		width: calc(100%);
		padding: 0;
		margin: 0 auto;
		position: relative;
	}
	.l-footer {
		width: calc(100%);
		padding: 0;
		margin: 0 auto;
		position: relative;
	}
	
	.widget {
		margin-bottom: 0;
	}
}


#all_wrap .content a { color: var(--text); font-weight: 400; transition: ease 0.2s; }
#all_wrap .content a:hover { color: var(--text); 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: var(--text); font-weight: 400; transition: ease 0.2s; }
#all_wrap .single_content a:hover { color: #var(--text); 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: 80px;
    height: auto;
    display: inline-flex;
	display: -webkit-inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
    padding: 40px 20px 30px;
    margin: 0;
	background: none;
    position: fixed;
    bottom: 80px;
    right: 0;
    z-index: 999;
	font-size: 14px;
	font-weight: 500;
	writing-mode: vertical-rl;
	color: var(--text);
	transition: all 0.3s ease;
}
#to_top::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
	margin: 0;
	background: none;
	border-top: 1px solid var(--text);
	border-right: 1px solid var(--text);
	position: absolute;
	top: 20px;
	left: 50%;
	right: unset;
	transform: translate(-50%,0) rotate(-45deg);
	-webkit-transform: translate(-50%,0)rotate(-45deg);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*ページトップ*/
	#to_top {
		width: 40px;
		height: auto;
		display: inline-flex;
		display: -webkit-inline-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		padding: 35px 10px 15px;
		margin: 0;
		background: none;
		position: fixed;
		bottom: 80px;
		right: 0;
		z-index: 999;
		font-size: 14px;
		font-weight: 500;
		writing-mode: vertical-rl;
		color: var(--text);
		transition: all 0.3s ease;
		opacity: 0;
	}
	#to_top.mobile {
		transition: all 0.3s ease;
		opacity: 1;
	}
	#to_top::before {
		content: '';
		display: block;
		width: 10px;
		height: 10px;
		padding: 0;
		margin: 0;
		background: none;
		border-top: 1px solid var(--text);
		border-right: 1px solid var(--text);
		position: absolute;
		top: 20px;
		left: 50%;
		right: unset;
		transform: translate(-50%,0) rotate(-45deg);
		-webkit-transform: translate(-50%,0)rotate(-45deg);
	}
}

/*reCAPTCHA*/
.grecaptcha-badge {
	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;
}

/*右からフワッと*/
.anime.anime_right {
	transform: translate(50px,0);
	transition: 2.1s var(--ease-out);
	opacity: 0;
}
.anime.anime_right.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%;
	}
}

/*画像*/
@keyframes swipeRight {
	0% {
		transform: translate(0);
	}
	50%, 60% {
		transform: translate3d(100%,0,0);
	}
	100% {
		transform: translate3d(100%,0,0);
	}
}

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

/*本文*/
#all_wrap .content {
    font-size: 15px;
    line-height: 2;
    padding: 0;
    margin: 0 auto 100px;
}
#all_wrap .content a {
	text-decoration: none;
	color: var(--text);
}
#all_wrap .content a:hover {
	color: var(--sub);
	text-decoration: underline;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*本文*/
    #all_wrap .content {
        font-size: 14px;
        line-height: 2;
        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;
}
.flexBox > .flexInfo {
	width: calc(100% - 330px);
	padding: 0;
	margin: 0;
}
.flexBox.rev > .flexInfo {
	order: 1;
}
.flexBox > figure {
	width: 280px;
	padding: 0;
	margin: 0;
}
.flexBox > figure img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}

/*フレックス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: 30px;
    }
    .flexBox > div {
        width: 100%;
        padding: 0;
        margin: 0 auto 20px;
    }
	.flexBox > .flexInfo {
		width: calc(100%);
		padding: 0;
		margin: 0;
	}
	.flexBox.rev > .flexInfo {
		order: 1;
	}
	.flexBox > figure {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.flexBox > figure img {
		width: 100%;
		height: auto;
		padding: 0;
		margin: 0;
		margin-bottom: 10px;
	}

    /*フレックス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: none;
    }
    .flexBox3 > div {
        width: 100%;
        padding: 0;
        margin: 0 auto 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: 16px;
    line-height: 2;
    font-weight: 400;
    font-feature-settings: "palt" 1;
    font-style: normal;
}
#all_wrap .content p {
    font-size: 16px;
    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: nowrap;
	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 .content .mb0,
#all_wrap .content .mb0 { margin-bottom: 0px; }
#all_wrap .content .mb5,
#all_wrap .content .mb5 { margin-bottom: 5px; }
#all_wrap .content .mb10,
#all_wrap .content .mb10 { margin-bottom: 10px; }
#all_wrap .content .mb20,
#all_wrap .content .mb20 { margin-bottom: 20px; }
#all_wrap .content .mb30,
#all_wrap .content .mb30 { margin-bottom: 30px; }
#all_wrap .content .mb40,
#all_wrap .content .mb40 { margin-bottom: 40px; }
#all_wrap .content .mb50,
#all_wrap .content .mb50 { margin-bottom: 50px; }
#all_wrap .content .mb60,
#all_wrap .content .mb60 { margin-bottom: 60px; }
#all_wrap .content .mb70,
#all_wrap .content .mb70 { margin-bottom: 70px; }
#all_wrap .content .mb80,
#all_wrap .content .mb80 { margin-bottom: 80px; }
#all_wrap .content .mb90,
#all_wrap .content .mb90 { margin-bottom: 90px; }
#all_wrap .content .mb100,
#all_wrap .content .mb100 { margin-bottom: 100px; }
#all_wrap .content .mb150,
#all_wrap .content .mb150 { margin-bottom: 150px; }
#all_wrap .content .mb200,
#all_wrap .content .mb200 { margin-bottom: 200px; }

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap p {
        font-size: 14px;
        line-height: 2em;
        font-weight: 400;
        font-feature-settings: "palt" 1;
        font-style: normal;
    }
    #all_wrap .l-wrapper .content p {
        font-size: 14px;
        line-height: 2em;
        padding: 0;
        margin-bottom: 10px;
    }
    #all_wrap .l-wrapper-full .content p {
        font-size: 14px;
        line-height: 2em;
        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 .content .mb0,
	#all_wrap .content .mb0 { margin-bottom: 0px; }
	#all_wrap .content .mb5,
	#all_wrap .content .mb5 { margin-bottom: 5px; }
	#all_wrap .content .mb10,
	#all_wrap .content .mb10 { margin-bottom: 10px; }
	#all_wrap .content .mb20,
	#all_wrap .content .mb20 { margin-bottom: 20px; }
	#all_wrap .content .mb30,
	#all_wrap .content .mb30 { margin-bottom: 30px; }
	#all_wrap .content .mb40,
	#all_wrap .content .mb40 { margin-bottom: 20px; }
	#all_wrap .content .mb50,
	#all_wrap .content .mb50 { margin-bottom: 25px; }
	#all_wrap .content .mb60,
	#all_wrap .content .mb60 { margin-bottom: 30px; }
	#all_wrap .content .mb70,
	#all_wrap .content .mb70 { margin-bottom: 35px; }
	#all_wrap .content .mb80,
	#all_wrap .content .mb80 { margin-bottom: 40px; }
	#all_wrap .content .mb90,
	#all_wrap .content .mb90 { margin-bottom: 45px; }
	#all_wrap .content .mb100,
	#all_wrap .content .mb100 { margin-bottom: 50px; }
	#all_wrap .content .mb150,
	#all_wrap .content .mb150 { margin-bottom: 70px; }
	#all_wrap .content .mb200,
	#all_wrap .content .mb200 { margin-bottom: 100px; }
}

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

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

/*== フレックス ==*/
.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;
	position: static;
}
.top_wrapper {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#all_wrap .l-wrapper {
	width: 100%;
	max-width: 950px;
	padding: 50px 0;
    margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
}
.l-wrapper-full {
    position: relative;
    width: 100%;
	padding: 50px 0;
    margin: 0 auto;
}
.l-wrapper-cat {
	position: relative;
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
}

.wrapper {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}

#all_wrap .l-wrapper .l-main {
    width: 100%;
    padding: 0;
    margin: 0 auto;
}
#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: 100%;
    padding: 0;
    margin: 0 auto 100px;
}
 
.l-sidebar {
	width: 300px;
	min-width: 300px;
    padding: 0;
	margin: 0 0 0 50px;
}
.l-main-wide    {width: calc(80% - 50px); margin-right:0;}
.l-main-wide1000{width:1100px;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;}

#all_wrap .phrase-primary {
	text-align: center;
}
/*検索結果なし*/
.archive__item-none {
	width: 90%;
	padding: 0;
	margin: 0 auto;
	border: none;
}

/*== スマホ・タブレット対応 ==*/
@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: 20px 30px;
        margin: 0 auto;
    }
    .l-wrapper-full .l-main {
        width: 100%;
        padding: 30px;
        margin: 0 auto;
    }
    
	#all_wrap .l-wrapper .l-main {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
		padding: 0;
		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;
    }
	.l-wrapper-full.cat {
		position:relative;
		width: 100%;
		margin: 0 auto;
		padding: 30px;
	}
	.l-wrapper-cat {
		position: relative;
		width: 100%;
		padding: 30px;
		margin: 0 auto;
	}
    
	/*トップ構成*/
	.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;
	}
    
	.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: 100%;
    padding: 0;
    margin: 0 auto;
	margin-top: 50px;
}

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

h1,h2,h3,h4,h5,h6,b,strong {
	font-family: var(--font-jp);
	font-weight: lighter;
    font-style: normal;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt" 1;
    font-size: 1em;
}

#pagevisual {
	width: 100%;
	height: 300px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
}
#pagevisual::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.2);
	z-index: -1;
}
#pagevisual > img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover;
	z-index: -2;
}
#pagevisual header {
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
#pagevisual header > h1,
#pagevisual header > h2 {
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 40px;
	line-height: 1;
	font-weight: lighter;
	color: #fff;
	border: none;
	background: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#pagevisual {
		width: 100%;
		height: 150px;
	}
	#pagevisual header > h1,
	#pagevisual header > h2 {
		padding: 0;
		margin: 0 auto;
		text-align: center;
		font-size: 20px;
		line-height: 1;
		font-weight: lighter;
		color: #fff;
		border: none;
		background: none;
	}
}

/*記事詳細タイトル*/
#all_wrap .singleHeader {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
}
#all_wrap .singleHeader .date {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	font-size: 14px;
	line-height: 1;
	font-weight: 400;
}
#all_wrap .singleHeader h1 {
	display: block;
	width: 100%;
	padding: 0 0 15px;
	margin: 0 auto;
	font-size: 30px;
	line-height: 1.4em;
	font-weight: lighter;
	font-feature-settings: "palt" 1;
	font-style: normal;
	border-bottom: 1px solid #1e1e1e;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*記事詳細タイトル*/
	#all_wrap .singleHeader {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
	}
	#all_wrap .singleHeader .date {
		margin: 0 auto 10px;
		font-size: 14px;
	}
	#all_wrap .singleHeader h1 {
		padding: 0 0 10px;
		font-size: 20px;
	}
}

/*h2*/
#all_wrap .content h2 {
	display: block;
	width: 100%;
	padding: 0 0 10px;
	margin: 1em auto 15px;
	font-size: 25px;
	line-height: 1.4em;
	font-weight: lighter;
	font-feature-settings: "palt" 1;
	font-style: normal;
	border-bottom: 1px solid #ddd;
}
#all_wrap .content h2:first-of-type {
    margin-top: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*h2*/
	#all_wrap .content h2 {
		display: block;
		width: 100%;
		padding: 0 0 8px;
		margin: 1em auto 10px;
		font-size: 20px;
		line-height: 1.4em;
		font-weight: lighter;
		font-feature-settings: "palt" 1;
		font-style: normal;
		border-bottom: 1px solid #ddd;
	}
	#all_wrap .content h2:first-of-type {
		margin-top: 0;
	}
}


/*h3*/
#all_wrap .content h3 {
	padding: 0 0 0 17px;
	margin: 1em auto 10px;
	border: none;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: lighter;
	color: var(--text);
	position: relative;
}
#all_wrap .content h3::before {
	content: "";
	display: block;
	width: 5px;
	height: 80%;
	background: var(--text);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
}
#all_wrap .content h3:first-of-type {
	margin-top: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*h3*/
	#all_wrap .content h3 {
		padding: 0 0 0 13px;
		margin: 0.7em auto 10px;
		border: none;
		font-size: 17px;
		line-height: 1.4em;
		font-weight: lighter;
		color: var(--text);
		position: relative;
	}
	#all_wrap .content h3::before {
		content: "";
		display: block;
		width: 3px;
		height: 80%;
		background: var(--text);
		position: absolute;
		top: 50%;
		left: 0;
		transform: translate(0,-50%);
		-webkit-transform: translate(0,-50%);
	}
	#all_wrap .content h3:first-of-type {
		margin-top: 0;
	}
}

/*h4*/
#all_wrap .content h4 {
    display: block;
    padding: 0;
    margin: 0.5em auto 10px;
    position: relative;
	font-weight: lighter;
    font-size: 18px;
    line-height: 1.4em;
    position: relative;
	color: var(--text);
}
#all_wrap .content h4:first-of-type {
	margin-top: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*h4*/
	#all_wrap .content h4 {
		display: block;
		padding: 0;
		margin: 0.5em auto 7px;
		position: relative;
		font-weight: lighter;
		font-size: 16px;
		line-height: 1.4em;
		position: relative;
		color: var(--text);
	}
	#all_wrap .content h4:first-of-type {
		margin-top: 0;
	}
}

/*h5*/
#all_wrap .content h5 {
	display: block;
	padding: 0;
	margin: 0.5em auto 5px;
	position: relative;
	font-weight: lighter;
	font-size: 17px;
	line-height: 1.4em;
	position: relative;
	color: var(--text);
}

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

/************************************************************/
/*　パンくず
/************************************************************/
/*パンくず*/
.breadcrumb {
	width: 100%;
    max-width: 100%;
    padding: 20px;
    margin: 0;
    background: none;
    border: none;
    overflow-x: scroll;
	position: relative;
    z-index: 5;
    -ms-overflow-style: none;
    scrollbar-width: none;
	z-index: 10;
	border-bottom: 1px solid #ddd;
}
#all_wrap .breadcrumb .container {
	width: 100%;
	max-width: 950px;
}
.breadcrumb::-webkit-scrollbar { 
    display:none;
}
.breadcrumb > ul {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    font-size: 12px;
    color: #1e1e1e;
	justify-content: flex-start;
	font-family: var(--font-jp);
}
.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: var(--sub);
    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%;
		max-width: 100%;
		padding: 10px 20px;
		margin: 0 auto;
		background: none;
		border: none;
		overflow-x: scroll;
		z-index: 0;
		-ms-overflow-style: none;
		scrollbar-width: none;
		top: 0;
		border-bottom: 1px solid #ddd;
    }
    .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: #252525;
        background: none;
		justify-content: flex-start;
    }
    .breadcrumb a {
        font-size: 10px;
        line-height: 1;
        padding: 0;
        margin: 0;
        text-decoration: none;
        transition: ease 0.2s;
		color: #252525;
    }
    .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: #252525;
    }
    .breadcrumb__item::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -2px;
        width: 5px;
        height: 5px;
		border-top: 1px solid #252525;
		border-right: 1px solid #252525;
    }
}


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


/************************************************************/
/*　ヘッダー
/************************************************************/
#header {
	width: 100%;
	height: 80px;
	min-height: 80px;
	max-height: 80px;
	padding: 0;
	margin: 0;
	background: #fff;
	border-bottom: 1px solid #ddd;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	box-sizing: border-box;
}
/*ロゴ*/
#header > #logo {
	width: auto;
	height: 40px;
	padding: 0;
	margin: 0 auto 0 30px;
}
#header > #logo img {
	width: auto;
	height: 100%;
}
/*メインナビ*/
#mainNav {
	width: auto;
	padding: 0;
	margin: 0;
	overflow: hidden;
}
#mainNav > ul {
	height: 80px;
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: stretch;
	align-items: stretch;
	flex-wrap: nowrap;
}
#mainNav > ul > li {
	width: auto;
	padding: 0;
	margin: 0 10px;
	position: relative;
}
#mainNav > ul > li a {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	font-size: 14px;
	line-height: 1;
	white-space: nowrap;
	transition: var(--ease);
}
#mainNav > ul > li a:hover {
	color: var(--sub);
	transition: var(--ease);
}
/*電話番号*/
.headerTel {
	width: fit-content;
	padding: 0;
	margin: 0;
	margin-left: 30px;
	position: relative;
}
#all_wrap .headerTel > p {
	font-size: 11px;
	line-height: 1;
	text-align: center;
	text-align-last: justify;
}
#all_wrap .headerTel > a {
	display: flex;
	display: -wekit-flex;
	justify-content: center;
	align-items: baseline;
	flex-wrap: nowrap;
	padding: 0;
	margin: 0 auto;
	font-size: 30px;
	line-height: 1;
	font-weight: lighter;
	color: var(--text);
	transition: var(--ease);
	text-decoration: none;
}
#all_wrap .headerTel > a:hover {
	color: #b53131;
	transition: var(--ease);
	text-decoration: none;
}
#all_wrap .headerTel > a small {
	font-size: 20px;
	line-height: 1;
	font-weight: lighter;
	color: var(--text);
}
#all_wrap .headerTel > span {
	display: block;
	font-size: 10px;
	line-height: 1;
	text-align: center;
}
/*検索*/
#header_search {
	width: 80px;
	height: 79px;
	padding: 0;
	margin: 0;
	position: relative;
}
#header_search > button {
	display: block;
	width: 80px;
	height: 100%;
	padding: 0;
	margin: 0;
	background-image: url('https://step.co.jp/wp-content/uploads/icon_search.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px;
	background-color: #fff;
	transition: var(--ease);
	border: none;
	outline: none;
	font: inherit;
	color: inherit;
	cursor: pointer;
}
#header_search > button:hover {
	background-image: url('https://step.co.jp/wp-content/uploads/icon_search_over.svg');
	transition: var(--ease);
}
#header_search.active > button {
	background-image: url('https://step.co.jp/wp-content/uploads/icon_cross.svg');
	transition: var(--ease);
}
#header_search.active > button:hover {
	background-image: url('https://step.co.jp/wp-content/uploads/icon_cross_over.svg');
	transition: var(--ease);
}
#header_search .formbox {
	display: inline-flex;
	display: -webkit-inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	height: 79px;
	padding: 30px 0 30px 30px;
	margin: 0;
	background: #fff;
	position: absolute;
	top: 0;
	right: 80px;
	transform-origin: center right;
	transition: var(--ease);
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
}
#header_search.active .formbox {
	transform-origin: center right;
	transition: var(--ease);
	opacity: 1;
	visibility: visible;
}
#header_search #feas-searchform-0 {
	padding: 0;
	margin: 0;
	position: relative;
}
#header_search #feas-searchform-0 input[type="text"] {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	height: 35px;
	padding: 0 15px;
	margin: 0;
	border: none;
	border-radius: 35px;
	background: #fafafa;
	position: relative;
	outline: none;
	caret-color: var(--text);
	color: var(--text);
}
#header_search #feas-searchform-0 input[type="text"]::placeholder {
	font-size: 14px;
	color: #c8c8c8;
	line-height: 1;
	font-weight: lighter;
}
#header_search #feas-searchform-0 input[type="submit"] {
	width: 35px;
	height: 35px;
	padding: 0;
	margin: 0;
	border-radius: 30px 0 0 30px;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	text-indent: -9999px;
	background-image: url('https://step.co.jp/wp-content/uploads/icon_search.svg');
	background-color: unset;
	background-size: 15px;
	background-repeat: no-repeat;
	background-position: center;
	outline: none;
	transition: var(--ease);
	position: absolute;
	top: 0;
	right: 0;
}
#header_search #feas-searchform-0 input[type="submit"]:hover {
	filter: brightness(1.2);
	transition: var(--ease);
}

#all_wrap .lp_h1 {
	padding-right: 30px;
	margin: 0;
	border: none;
	background: none;
	position: relative;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#header {
		width: 100%;
		height: 50px;
		min-height: 50px;
		max-height: 50px;
		padding: 10px 20px;
	}
	/*ロゴ*/
	#header > #logo {
		width: auto;
		height: 30px;
		margin: 0 auto 0 0;
	}
	#header > #logo img {
		width: auto;
		height: 100%;
	}
	/*メインナビ*/
	#mainNav {
		display: none;
	}
	/*検索*/
	#header_search {
		display: none;
	}
	/*電話番号*/
	.headerTel {
		width: fit-content;
		padding: 0;
		margin: 0;
		margin-left: 0;
		margin-right: 40px;
		position: relative;
	}
	#all_wrap .headerTel > p {
		font-size: 0.8rem;
		line-height: 1;
		text-align: center;
		text-align-last: justify;
	}
	#all_wrap .headerTel > a {
		display: flex;
		display: -wekit-flex;
		justify-content: center;
		align-items: baseline;
		flex-wrap: nowrap;
		padding: 0;
		margin: 0 auto 2px;
		font-size: 22px;
		line-height: 1;
		font-weight: lighter;
		color: var(--text);
		transition: var(--ease);
		text-decoration: none;
	}
	#all_wrap .headerTel > a small {
		font-size: 12px;
		line-height: 1;
		font-weight: lighter;
		color: var(--text);
	}
	#all_wrap .headerTel > span {
		display: block;
		font-size: 0.8rem;
		line-height: 1;
		text-align: center;
	}
	#all_wrap .lp_h1 {
		padding-right: 40px;
		padding-left: 20px;
		margin: 0;
		border: none;
		background: none;
		position: relative;
		font-size: 10px;
		line-height: 1.2em;
	}
}

/************************************************************/
/*　メインナビ
/************************************************************/


/************************************************************/
/*　サイドナビ
/************************************************************/
#sideNav {
	width: 80px;
	padding: 0;
	margin: 0;
	position: fixed;
	top: 79px;
	right: 0;
	z-index: 101;
}
#sideNav > ul {
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
}
#sideNav > ul > li {
	width: 80px;
	height: 80px;
	padding: 0;
	margin: 0;
	position: relative;
	border-bottom: 1px solid #ddd;
}
#sideNav > ul > li a {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #fff;
	font-size: 10px;
	line-height: 1;
	font-weight: lighter;
	color: var(--text);
	transition: var(--ease);
}
#sideNav > ul > li:first-child a {
	background: var(--sub);
	color: #fff;
}
#sideNav > ul > li a:hover {
	background: #f0f0f0;
	transition: var(--ease);
}
#sideNav > ul > li:first-child a:hover {
	background: #073d8e;
	transition: var(--ease);
}
#sideNav > ul > li a > p {
	display: block;
	width: auto;
	height: 20px;
	padding: 0;
	margin: 0 auto 7px;
}
#sideNav > ul > li a > p img {
	width: auto;
	height: 100%;
}
#all_wrap #sideNav > ul > li a > span {
	text-align: center;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 10px;
	line-height: 1;
	color: var(--text);
	order: 1;
}
#all_wrap #sideNav > ul > li:first-child a > span {
	color: #fff;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 1200px){
	#all_wrap #sideNav {
		display: none;
	}
}

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

/* ドロワーメニュー */
.humburger {
	width: 25px;
	height: 15px;
	padding: 0;
	margin: 0;
	position: absolute;
	top: calc(50%);
	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: 1px;
	background: #fff;
}
.humburger span:nth-of-type(1) {
	top:0;
}
.humburger span:nth-of-type(2) {
	top:6px;
}
.humburger span:nth-of-type(3) {
	top:12px;
}
#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;
	opacity: 1;
	z-index: 10001;
	width: 50px;
	height: 50px;
	color: var(--txt);
	background: #1e1e1e;
	box-sizing: border-box;
	font-size: 3em;
	text-align: center;
	transition: all 0.3s ease;
	position: fixed;
	top: 0;
	right: 0;
}
#navTgl:checked + .open {
	background: none;
}
.close {
	pointer-events: none;
	z-index: 1;
	width: 100%;
	height: 100%;
	transition: all 0.3s ease;
}
#navTgl:checked ~ .close {
	pointer-events: auto;
}

/*パネル*/
#menu.menuNav {
	display: none;
	z-index: 9999;
	position: fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	background: none;
	-webkit-transition: -webkit-transform .4s;
	transition: transform .4s;
	padding: 50px 40px 150px;
	overflow: hidden;
	overflow-y: scroll;
	-ms-overflow-style: none;    /* IE, Edge 対応 */
	scrollbar-width: none;       /* Firefox 対応 */
}
#menu.menuNav::before {
	content: '';
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	background: var(--text);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	opacity: 0.95;
}
#menu.menuNav::-webkit-scrollbar {  /* Chrome, Safari 対応 */
	display:none;
}
#navTgl:checked ~ #menu.menuNav {
	-webkit-transition: -webkit-transform .4s;
	transition: transform .4s;
}
#menuNavBox {
	width: 100%;
	height: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: flex-start;
	flex-wrap: wrap;
}
.menuNavBoxLeft {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: block;
}
.menuNavBoxRight {
	width: 100%;
	padding: 0;
	margin: 0;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	
	#all_wrap .panel_info {
		width: 100%;
		padding: 0;
		margin: 0 auto 30px;
	}
	#all_wrap .panel_info > h2 {
		width: auto;
		height: 40px;
		padding: 0;
		margin: 0 auto 20px;
		text-align: center;
	}
	#all_wrap .panel_info > h2 img {
		width: auto;
		height: 100%;
	}
	#all_wrap .panel_info > p {
		text-align: center;
		padding: 0;
		margin: 0 auto 10px;
		color: #fff;
		line-height: 1.4em;
	}
	#all_wrap .panel_info > p tel {
		display: block;
		text-align: center;
		font-size: 1.4em;
		margin: 0 auto 5px;
	}

	#all_wrap .menuNavBoxRight ul {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		list-style: none;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#all_wrap .menuNavBoxRight ul > li {
		width: 100%;
		padding: 0;
		margin: 0;
		border-bottom: 1px solid rgba(255,255,255,0.5);
	}
	#all_wrap .menuNavBoxRight ul > li a {
		display: flex;
		display: -webkit-flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		width: 100%;
		height: 100%;
		padding: 10px;
		margin: 0;
		font-size: 14px;
		line-height: 1.4em;
		color: #fff;
		text-decoration: none;
		font-weight: 400;
		position: relative;
	}
	#all_wrap .menuNavBoxRight ul > li a::after {
		content: '';
		display: block;
		width: 5px;
		height: 5px;
		padding: 0;
		margin: 0;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translate(0,-50%) rotate(45deg);
		-webkit-transform: translate(0,-50%) rotate(45deg);
	}
}



/************************************************************/
/*　固定メニュー
/************************************************************/

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

/************************************************************/
/*　メインビジュアル
/************************************************************/
#mainVisual {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#mainVisual .slider {
	position: static;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 0;
	transition: opacity .3s linear;
	margin: 0;
}
#mainVisual .slider.slick-initialized {
	opacity: 1;
}
#mainVisual .slider .slick-track {
	height: auto;
	position: relative;
	top: unset;
	left: unset;
	display: flex;
}
#mainVisual .slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}
/*　背景画像設定　*/
#mainVisual .slider-item {
	width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
	height: 100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
	background-repeat: no-repeat;/*背景画像をリピートしない*/
	background-position: center;/*背景画像の位置を中央に*/
	background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
	position: relative;
}
#mainVisual .slider-item::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;
}
#mainVisual .slider-item.slick-current::before {
	animation: MVfilter 2s linear;
}
@keyframes MVfilter {
	0% {
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
	}
	100% {
		backdrop-filter: blur(0);
		-webkit-backdrop-filter: blur(0);
	}
}
#mainVisual .slider-item.slick-current {
	animation: MV 8s linear;
}
@keyframes MV {
	0% {
		transform:scale(1.1);
	}
	100% {
		transform:scale(1);
	}
}

/*キャッチ*/
#mainVisual .mvInfo {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	z-index: 10;
}
#all_wrap #mainVisual .mvInfo > h2 {
	padding: 0;
	margin: 0 auto 20px;
	text-align: center;
	font-size: 40px;
	line-height: 1;
	font-weight: lighter;
	color: #fff;
	white-space: nowrap;
	animation: MVinfo 2s linear;
	-webkit-filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
	filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
}
#all_wrap #mainVisual .mvInfo > p {
	font-size: 18px;
	line-height: 2;
	color: #fff;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	animation: MVinfo 2s linear;
	-webkit-filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
	filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
}
@keyframes MVinfo {
	0% {
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		transform:translate(0,10px);
		opacity: 0;
	}
	100% {
		backdrop-filter: blur(0);
		-webkit-backdrop-filter: blur(0);
		transform:translate(0,0);
		opacity: 1;
	}
}

/*ドットナビゲーションの設定*/
#all_wrap #mainVisual .slick-dots {
	text-align: center;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	padding: 0;
	margin: 0 auto;
	background: none;
	position: absolute;
	bottom: 30px;
	right: 30px;
	column-gap: 7px;
	transform: unset;
	z-index: 10;
}
#all_wrap #mainVisual .slick-dots li {
	display: block;
	width: 10px;
	height: 10px;
	margin: 0;
}
#all_wrap #mainVisual .slick-dots button {
	color: transparent;
	outline: none;
	width: 100%;/*ドットボタンのサイズ*/
	height: 100%;/*ドットボタンのサイズ*/
	padding: 0;
	margin: 0;
	display: block;
	background: rgba(255,255,255,0);/*ドットボタンの色*/
	box-shadow: none;
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid rgba(255,255,255,0.7);
	border-radius: 50%;
	cursor: pointer;
}
#all_wrap #mainVisual .slick-dots .slick-active button{
	background: rgba(255,255,255,0.7);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*キャッチ*/
	#mainVisual .mvInfo {
		padding: 0;
		margin: 0;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		-webkit-transform: translate(-50%,-50%);
		z-index: 10;
	}
	#all_wrap #mainVisual .mvInfo > h2 {
		margin: 0 auto 10px;
		font-size: 30px;
		line-height: 1.4em;
	}
	#all_wrap #mainVisual .mvInfo > p {
		font-size: 16px;
		line-height: 1.7em;
		white-space: nowrap;
	}

	/*ドットナビゲーションの設定*/
	#all_wrap #mainVisual .slick-dots {
		width: 100%;
		justify-content: center;
		padding: 0;
		margin: 0 auto;
		background: none;
		position: absolute;
		bottom: 90px;
		right: 0;
		transform: unset;
		z-index: 10;
	}
	#all_wrap #mainVisual .slick-dots button {
		color: transparent;
		outline: none;
		width: 100%;/*ドットボタンのサイズ*/
		height: 100%;/*ドットボタンのサイズ*/
		padding: 0;
		margin: 0;
		display: block;
		background: rgba(255,255,255,0);/*ドットボタンの色*/
		box-shadow: none;
		border: none;
		outline: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		border: 1px solid rgba(255,255,255,0.7);
		border-radius: 50%;
		cursor: pointer;
	}
}

/************************************************************/
/*　サイドバー
/************************************************************/
#all_wrap .l-sidebar .sticky {
	padding: 0;
	margin: 0 auto 30px;
	background: none;
	position: sticky;
	top: 50px;
	left: 0;
}
#all_wrap .l-sidebar .heading-widget {
	width: 100%;
	padding: 12px;
	margin: 0 auto 1px;
	background: var(--main);
	border-radius: 0;
	color: #fff;
	text-align: center;
	font-family: var(--font-en);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.2em;
	position: relative;
	z-index: 0;
}
#all_wrap .l-sidebar .menu {
	width: 100%;
	padding: 10px;
	margin: 0 auto;
	border: none;
	background: rgba(0,0,0,0.05);
	box-shadow: none;
	list-style: none;
	position: relative;
}
#all_wrap .l-sidebar .menu > li {
	width: 100%;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	box-shadow: none;
}
#all_wrap .l-sidebar .menu > li a {
	display: block;
	padding: 10px 15px 10px 15px;
	margin: 0 auto;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	background: #fff;
	position: relative;
	font-size: 14px;
	line-height: 1.4em;
	color: var(--text);
	font-weight: 500;
	box-shadow: none;
	transition: all 0.3s ease;
}
#all_wrap .l-sidebar .menu > li:last-child a {
	border-bottom: none;
}
#all_wrap .l-sidebar .menu > li a::before,
#all_wrap .l-sidebar .menu > li a::after {
	display: none;
}
#all_wrap .l-sidebar .menu > li a:hover {
	font-size: 14px;
	line-height: 1.4em;
	color: var(--main);
	font-weight: 500;
	transition: all 0.3s ease;
}

/*サブメニュー*/
#all_wrap .l-sidebar .menu .sub-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	box-shadow: none;
	list-style: none;
	position: relative;
}
#all_wrap .l-sidebar .menu .sub-menu > li {
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	box-shadow: none;
}
#all_wrap .l-sidebar .menu .sub-menu > li a {
	display: block;
	padding: 10px 15px 10px 30px;
	margin: 0 auto;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	background: #fafafa;
	position: relative;
	font-size: 13px;
	line-height: 1.4em;
	color: var(--main);
	font-weight: lighter;
	box-shadow: none;
	transition: all 0.3s ease;
}
#all_wrap .l-sidebar .menu .sub-menu > li a::before,
#all_wrap .l-sidebar .menu .sub-menu > li a::after {
	display: none;
}
#all_wrap .l-sidebar .menu .sub-menu > li a::before {
	content: '';
	display: block;
	width: 5px;
	height: 1px;
	padding: 0;
	margin: 0;
	background: #222;
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
}
/*サブメニュー2*/
#all_wrap .l-sidebar .menu .sub-menu .sub-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	box-shadow: none;
	list-style: none;
	position: relative;
}
#all_wrap .l-sidebar .menu .sub-menu .sub-menu > li {
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	box-shadow: none;
}
#all_wrap .l-sidebar .menu .sub-menu .sub-menu > li a {
	display: block;
	padding: 10px 15px 10px 50px;
	margin: 0 auto;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	background: #fafafa;
	position: relative;
	font-size: 12px;
	line-height: 1.4em;
	color: var(--main);
	font-weight: lighter;
	box-shadow: none;
	transition: all 0.3s ease;
}
#all_wrap .l-sidebar .menu .sub-menu .sub-menu > li a::before,
#all_wrap .l-sidebar .menu .sub-menu .sub-menu > li a::after {
	display: none;
}
#all_wrap .l-sidebar .menu .sub-menu .sub-menu > li a::before {
	content: '';
	display: block;
	width: 5px;
	height: 1px;
	padding: 0;
	margin: 0;
	background: #222;
	position: absolute;
	top: 50%;
	left: 35px;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .l-sidebar {
		display: none;
	}
}

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

/*フッター上部*/
.footerTop {
	width: 100%;
	padding: 50px;
	margin: 0;
	position: relative;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}
#all_wrap .footerTop ul {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 20px;
}
#all_wrap .footerTop ul > li {
	padding: 0 0 0 12px;
	margin: 0;
	position: relative;
}
#all_wrap .footerTop ul > li::before {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	padding: 0;
	margin: 0;
	background: none;
	border-top: 1px solid #999;
	border-right: 1px solid #999;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%) rotate(45deg);
	-webkit-transform: translate(0,-50%) rotate(45deg);
}
#all_wrap .footerTop ul > li a {
	font-size: 12px;
	line-height: 1.4em;
	text-decoration: none;
	color: var(--text);
	transition: var(--ease);
}
#all_wrap .footerTop ul > li a:hover {
	font-size: 12px;
	line-height: 1.4em;
	text-decoration: underline;
	color: var(--sub);
	transition: var(--ease);
}

/*フッター下部*/
.footerBtm {
	width: 100%;
	padding: 0;
	margin: 0;
}
/*住所*/
.footerAdd {
	width: 100%;
	padding: 20px;
	margin: 0;
	position: relative;
	background: #fff;
	border-bottom: 1px solid #ddd;
}
.footerAdd .textwidget {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
}
#all_wrap .footerAdd h2,
#all_wrap .footerAdd p {
	font-size: 14px;
	line-height: 1;
	font-weight: lighter;
	display: inline-block;
	border: none;
	background: none;
}
/*コピーライト*/
.copyright {
	text-align: center;
	padding: 20px;
	margin: 0 auto;
	font-size: 12px;
	line-height: 1;
	font-style: normal;
	font-weight: lighter;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*フッター上部*/
	.footerTop {
		width: 100%;
		padding: 30px;
	}
	#all_wrap .footerTop ul {
		width: 100%;
		justify-content: space-between;
		column-gap: 10px;
		grid-row-gap: 10px;
	}
	#all_wrap .footerTop ul > li {
		width: 48%;
	}

	/*フッター下部*/
	.footerBtm {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	/*住所*/
	.footerAdd {
		width: 100%;
		padding: 20px;
		margin: 0;
		position: relative;
		background: #fff;
		border-bottom: 1px solid #ddd;
	}
	.footerAdd .textwidget {
		display: flex;
		display: -webkit-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	#all_wrap .footerAdd h2,
	#all_wrap .footerAdd p {
		font-size: 14px;
		line-height: 1;
		font-weight: lighter;
		display: inline-block;
		border: none;
		background: none;
	}
	/*コピーライト*/
	.copyright {
		text-align: center;
		padding: 20px;
		margin: 0 auto;
		font-size: 12px;
		line-height: 1;
		font-style: normal;
		font-weight: lighter;
	}
}


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

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

.l-wrapper-full .pageContents .content ul.blue li {
	color: var(--sub);
	font-weight: 600;
}

.l-wrapper-full .pageContents .content ol,
.l-wrapper-full .postContents .content ol,
#all_wrap ol.decimal {
    list-style: none;
    padding: 0;
    margin: 5px auto 10px;
}
.l-wrapper-full .pageContents .content ol li,
.l-wrapper-full .postContents .content ol li,
#all_wrap ol.decimal li {
    padding: 0 0 0 30px;
    margin: 0 0 5px;
    list-style: none;
    border: none;
    background: none;
    position: relative;
	line-height: 1.8em;
}
.l-wrapper-full .pageContents .content ol li:before,
.l-wrapper-full .postContents .content ol li:before,
#all_wrap ol.decimal li::before {
	font-family: var(--font-en);
    counter-increment: count;
	content: counter(count);
    background: #fff;
    border: 1px solid var(--text);
    color: var(--text);
    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%;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.l-wrapper-full .pageContents .content ul.harf li,
	.l-wrapper-full .postContents .content ul.harf li {
		width: 100%;
		margin: 0 auto 10px
	}
	.l-wrapper-full .pageContents .content ul.harf li:last-child,
	.l-wrapper-full .postContents .content ul.harf li:last-child {
		margin-bottom: 0;
	}
}


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

/*表*/
#all_wrap table {
    overflow: hidden;
    table-layout: fixed;
    border: none;
    background: none;
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 50px;
	border-radius: 0;
	overflow: hidden;
}
#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: 500;
	background: #f4f3ef;
    color: var(--text);
    padding: 20px;
    margin: 0;
    width: 25%;
	border-bottom: 3px solid #fff;
}
#all_wrap table td {
	display: table-cell;
    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;
}
#all_wrap .content table td > p:last-of-type {
	margin-bottom: 0;
}

/*== スマホ・タブレット対応 ==*/
@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: #f4f3ef;
        color: #1e1e1e;
        padding: 10px 15px;
        margin: 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        width: 100%;
        min-width: 100%;
        font-size: 14px;
        display: block;
		text-align: left;
    }
    #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);
        font-size: 14px;
        width: 100%;
        min-width: 100%;
        display: block;
    }
}




/************************************************************/
/*　お問い合わせ&テーブル
/************************************************************/
#contact_area {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#contact_area > p {
	width: 100%;
	max-width: 950px;
	padding: 50px 0;
	margin: 0 auto;
	text-align: center;
}
/*電話番号*/
.tel_area {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto 50px;
	position: relative;
	background: #f4f3ef;
	text-align: center;
}
#all_wrap .tel_area > p {
	text-align: center;
	padding: 0;
	margin: 0 auto;
}
#all_wrap .tel_area > tel {
	display: flex;
	display: -wekit-flex;
	justify-content: center;
	align-items: baseline;
	flex-wrap: nowrap;
	padding: 0;
	margin: 0 auto 5px;
}
#all_wrap .tel_area > tel small {
	display: inline-block;
	padding: 0;
	margin: 0 5px 0 0;
	font-size: 30px;
	line-height: 1;
	font-weight: lighter;
	color: var(--text);
}
#all_wrap .tel_area > tel a {
	display: inline-block;
	font-size: 60px;
	line-height: 1;
	font-weight: lighter;
	color: var(--text);
	transition: var(--ease);
	text-decoration: none;
}
#all_wrap .tel_area > tel a:hover {
	color: var(--sub);
	transition: var(--ease);
	text-decoration: none;
}
#all_wrap .tel_area > span {
	display: block;
	width: 100%;
	text-align: center;
	padding: 0;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1;
}

#contactform_area {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .content #contactform_area > h2 {
	text-align: center;
	margin-bottom: 0;
	padding-bottom: 20px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#contact_area {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
	}
	#all_wrap .l-wrapper-full .content #contact_area > p {
		width: 100%;
		max-width:  100%;
		padding: 30px 0;
		margin: 0 auto;
		text-align: center;
		line-height: 1.4em;
	}
	/*電話番号*/
	.tel_area {
		width: 100%;
		padding: 30px 0;
		margin: 0 auto 30px;
	}
	#all_wrap .l-wrapper-full .content .tel_area > p {
		text-align: center;
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap .tel_area > tel {
		display: flex;
		display: -wekit-flex;
		justify-content: center;
		align-items: baseline;
		flex-wrap: nowrap;
		padding: 0;
		margin: 0 auto 5px;
	}
	#all_wrap .tel_area > tel small {
		display: inline-block;
		padding: 0;
		margin: 0 5px 0 0;
		font-size: 25px;
		line-height: 1;
		font-weight: lighter;
		color: var(--text);
	}
	#all_wrap .tel_area > tel a {
		display: inline-block;
		font-size: 40px;
		line-height: 1;
		font-weight: lighter;
		color: var(--text);
		transition: var(--ease);
		text-decoration: none;
	}
	#all_wrap .tel_area > tel a:hover {
		color: var(--sub);
		transition: var(--ease);
		text-decoration: none;
	}
	#all_wrap .tel_area > span {
		display: block;
		width: 100%;
		text-align: center;
		padding: 0;
		margin: 0 auto;
		font-size: 16px;
		line-height: 1;
	}

	#contactform_area {
		width: 100%;
		max-width: 100%;
		padding: 0 30px;
		margin: 0 auto 30px;
		position: relative;
	}
	#all_wrap .content #contactform_area > h2 {
		text-align: center;
		margin-bottom: 20px;
		padding-bottom: 10px;
	}
}

/*お問い合わせフォーム*/
#all_wrap table.table-contactform7 {
    border: none;
    background: none;
    padding: 0;
    margin: 0 auto 30px;
    width: 100%;
    border-top: none;
}
#all_wrap table.table-contactform7 tr {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
}
#all_wrap table.table-contactform7 tr:last-of-type td {
	margin-bottom: 0;
}
#all_wrap table.table-contactform7 th {
    border: none;
    background: none;
    padding: 20px;
    margin: 0 auto 10px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.4em;
    font-style: normal;
    font-feature-settings: "palt";
    width: 25%;
    font-family: var(--font-jp);
    font-weight: lighter;
    position: relative;
    box-shadow: none;
	text-align: left;
	vertical-align: middle;
	border-bottom: 1px solid #ddd;
}
#all_wrap table.table-contactform7 td {
    width: 75%;
    border: none;
    background: none;
    padding: 20px;
    margin: 0;
    color: var(--text);
	font-family: var(--font-jp);
	font-size: 16px;
    border-bottom: none;
    box-shadow: none;
	position: relative;
	border-bottom: 1px solid #ddd;
}
#all_wrap table.table-contactform7 td small {
    display: block;
    width: 100%;
    padding: 0;
    margin: 5px auto 0;
    text-align: left;
    font-size: 14px;
    color: #555;
}
#all_wrap table.table-contactform7 th .att {
    display: inline-flex;
	display: -webkit-inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
    padding: 5px 7px;
    margin: 0;
    background: var(--sub);
    border-radius: 0;
    font-size: 10px;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
	margin-left: 20px;
	border-radius: 3px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
}
#all_wrap table.table-contactform7 .cf7-harf {
    border-right: 1px solid #fff;
}
#all_wrap table.table-contactform7 .addForm {
	display: block;
	padding: 0;
	margin: 0 auto 5px;
}
#all_wrap table.table-contactform7 .addForm:last-of-type {
	margin-bottom: 0;
}
#all_wrap table.table-contactform7 input {
    border-radius: 0;
    border: 1px solid #c8c8c8;
    box-shadow: none;
	font-size: 14px;
    padding: 15px;
}
#all_wrap table.table-contactform7 td.add span:first-of-type input {
    margin: 0 0 10px;
}
#all_wrap table.table-contactform7 input[type="file"] {
	border-radius: 0;
	border: none;
	box-shadow: none;
	font-size: 14px;
	padding: 0;
}
#all_wrap table.table-contactform7 input.wpcf7-text {
    width: 100%;
	padding: 15px;
    margin: 0;
    border-radius: 5px;
	border: 1px solid #c8c8c8;
    box-shadow: none;
    font-family: var(--font-jp);
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "palt";
	font-size: 14px;
    line-height: 1;
	background: #fafafa;
    outline: none;
}
#all_wrap table.table-contactform7 input.wpcf7-text.w50 {
	width: 50%;
}
#all_wrap table.table-contactform7 input.wpcf7-text.w25 {
	width: 25%;
}
.wpcf7-form-control-wrap:last-of-type {
	margin-bottom: 0;
}
#all_wrap table.table-contactform7 input.wpcf7-date {
    padding: 9px;
    margin: 0;
    margin-right: 10px;
	font-size: 14px;
	background: #fff;
    outline: none;
	border-radius: 5px;
}
#all_wrap table.table-contactform7 select.wpcf7-form-control.wpcf7-select {
    width: 150px;
    height: 40px;
    line-height: 40px;
	padding: 15px;
    margin: 0;
	border-radius: 5px;
    border: none;
    box-shadow: none;
	font-size: 14px;
	background: #fff;
    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: var(--color2);
    padding: 5px 10px;
    margin: 0 0 0 10px;
    border-radius: 0;
    display: inline-block;
    color: #fff;
	font-size: 14px;
    border-radius: 3px;
    line-height: 1;
}
#all_wrap table.table-contactform7 .wpcf7-list-item {
	padding: 15px;
    margin: 0 10px 10px 0;
	border: 1px solid #c8c8c8;
    vertical-align: middle;
	font-size: 14px;
    line-height: 1;
    font-weight: bold;
	background: #fafafa;
    outline: none;
	border-radius: 5px;
}
#all_wrap table.table-contactform7 .wpcf7-list-item input[type='radio'] {
    top: 2px;
    position: relative;
    outline: none;
}
#all_wrap table.table-contactform7 .wpcf7-list-item input[type='checkbox'] {
    top: 2px;
    position: relative;
    width: 14px;
    height: 14px;
    padding: 0;
    outline: none;
}
#all_wrap table.table-contactform7 textarea {
    width: 100%;
	padding: 15px;
    margin: 0;
    border-radius: 0;
	border: 1px solid #c8c8c8;
    box-shadow: none;
	font-size: 14px;
    line-height: 1;
	background: #fafafa;
    outline: none;
	border-radius: 5px;
}
#all_wrap .contactBox > p.txt_cent {
    text-align: center;
	padding: 0;
	margin: 0 auto;
}
#all_wrap .txt_cent input[type="submit"] {
    -webkit-appearance: none;
}
#all_wrap .txt_cent {
	text-align: center;
}
#all_wrap .txt_cent input {
    padding: 20px 100px;
    margin: 0 auto;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    background: var(--text);
    border-radius: 40px;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
}
#all_wrap .txt_cent input:hover {
    transition: 0.5s;
	background: var(--sub);
}

#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: 1100px;
    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;
        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: 0;
        margin: 0;
        color: var(--text);
        font-size: 15px;
        line-height: 1.4em;
        font-style: normal;
        font-feature-settings: "palt";
        width: 100%;
        font-family: var(--font-jp);
        font-weight: lighter;
        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 20px;
        margin: 0;
        color: var(--text);
        font-size: 14px;
		font-weight: lighter;
        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: var(--sub);
        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: 15px;
        margin: 0;
		border-radius: 5px;
        border: none;
        box-shadow: none;
        font-weight: 400;
        font-style: normal;
        font-feature-settings: "palt";
        font-size: 1em;
        line-height: 1;
		background: #fafafa;
        outline: none;
    }
	#all_wrap table.table-contactform7 input.wpcf7-text.w50 {
		width: 100%;
	}
	#all_wrap table.table-contactform7 input.wpcf7-text.w25 {
		width: 50%;
	}
    #all_wrap table.table-contactform7 input.wpcf7-date {
        padding: 9px;
        margin: 0;
        margin-right: 10px;
        font-size: 1em;
		background: #DEDBDB;
        outline: none;
    }
    #all_wrap table.table-contactform7 select.wpcf7-form-control.wpcf7-select {
        width: 150px;
        height: 50px;
        line-height: 40px;
        padding: 15px;
        margin: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
        font-size: 1em;
		background: #DEDBDB;
        outline: none;
    }
    #all_wrap table.table-contactform7 input.your-naiyou {
        display: inline;
        width: auto;
    }
    #all_wrap table.table-contactform7 label {
        font-size: 1em;
        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: 1em;
        line-height: 1;
        font-weight: 500;
		background: #fafafa;
        outline: none;
    }
    #all_wrap table.table-contactform7 .wpcf7-list-item input[type='radio'] {
        top: 2px;
        position: relative;
        outline: none;
    }
    #all_wrap table.table-contactform7 .wpcf7-list-item input[type='checkbox'] {
        top: 2px;
        position: relative;
        width: 14px;
        height: 14px;
        padding: 0;
        outline: none;
    }
    #all_wrap table.table-contactform7 textarea {
        width: 100%;
        padding: 15px;
        margin: 0;
        border-radius: 5px;
        border: none;
        box-shadow: none;
        font-size: 1em;
        line-height: 1.4em;
		background: #fafafa;
        outline: none;
    }
    #all_wrap .txt_cent {
        text-align: center;
    }
    #all_wrap .txt_cent input[type="submit"] {
        -webkit-appearance: none;
    }
    #all_wrap .txt_cent input {
        width: calc(100% - 60px);
        padding: 15px 50px;
        margin: 0 auto;
        display: block;
        font-size: 15px;
        font-weight: 500;
        background: var(--text);
        border: none;
        color: #fff;
        cursor: pointer;
        transition: 0.5s;
    }
    #all_wrap .txt_cent input:hover {
        transition: 0.5s;
		background: var(--sub);
    }

    #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: 1100px;
        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: var(--text);
}
#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: var(--text);
}
#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: var(--text);
}


/*== スマホ・タブレット対応 ==*/
@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: 100%;
    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: 500;
    line-height: 1;
    position: relative;
    transition: 0.5s;
	color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,0.2);
}
.sitemap ul li a:hover {
    transition: 0.2s;
	color: var(--color2);
}
.sitemap ul li a::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    width: 5px;
    height: 5px;
	border-top: 1px solid rgba(0,0,0,0.2);
	border-right: 1px solid rgba(0,0,0,0.2);
    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 !important; }
.sp { display:none !important; }
@media screen and (max-width: 768px){   
	.pc { display:none !important; }
	.sp { display:block !important; }
}


/************************************************************/
/*　本文ギャラリー
/************************************************************/
#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%;
    }
}


/************************************************************/
/*　アーカイブ
/************************************************************/
#all_wrap .archiveList {
    width: calc(100%);
    max-width: 1100px;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#all_wrap .archiveList::after {
    content: '';
    display: block;
    width: 31%;
}
#all_wrap .archiveList > li {
    width: 31%;
    padding: 0;
    margin: 0 0 40px;
}
#all_wrap .archiveList > li::before,
#all_wrap .archiveList > li::after {
    display: none;
}
#all_wrap .archiveList > li figure {
    width: 100%;
    padding: 0;
    margin: 0 auto 10px;
    position: relative;
    text-align: center;
    overflow: hidden;
	border-radius: 5px;
}
#all_wrap .archiveList > li figure::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}
#all_wrap .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,
#all_wrap .content .archiveList > li > h3 {
    padding: 0;
    margin: 0 auto 5px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4em;
    font-style: normal;
    border: none;
    background: none;
}
#all_wrap .archiveList > li > p {
	font-size: 14px;
	line-height: 1.7em;
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .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;
	}
	#all_wrap .archiveList::after {
		content: '';
		display: none;
	}
	#all_wrap .archiveList > li {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
	}
	#all_wrap .archiveList > li::before,
	#all_wrap .archiveList > li::after {
		display: none;
	}
	#all_wrap .archiveList > li figure {
		width: 100%;
		padding: 0;
		margin: 0 auto 10px;
		position: relative;
		text-align: center;
		overflow: hidden;
		border-radius: 5px;
	}
	#all_wrap .archiveList > li figure::before {
		content: '';
		display: block;
		padding-top: 56.25%;
	}
	#all_wrap .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,
	#all_wrap .content .archiveList > li > h3 {
		padding: 0;
		margin: 0 auto 5px;
		font-size: 15px;
		font-weight: 700;
		line-height: 1.4em;
		font-style: normal;
		border: none;
		background: none;
	}
	#all_wrap .archiveList > li > p {
		font-size: 14px;
		line-height: 1.7em;
		padding: 0;
		margin: 0;
		text-align: justify;
		text-justify: inter-ideograph;
	}
}

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

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

/*目次*/
#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: var(--text);
    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: var(--text);
}
#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: var(--text);
    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: 500;
    font-style: normal;
    color: var(--text);
    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: var(--text);
    transition: all 0.5s ease;
}
.contentstable-number {
    display: inline-block;
    padding: 5px;
    margin: 0;
    margin-right: 5px;
    border: 1px solid #ececec;
    background: #fff;
    color: var(--text);
    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;
    }
}

/*目次*/
#all_wrap .outline {
	border: 1px dotted #D8D8D8;
	background: #FFF;
	padding: 20px;
	margin: 0 auto 20px;
	display: block;
	position: relative;
}
#all_wrap .outline .outline__switch::before {
	content: "開く";
	cursor: pointer;
	background: var(--text);
	border: none;
	padding: 5px;
	font-size: 1.2rem;
	line-height: 1;
	color: #fff;
	border-radius: 0;
	position: absolute;
	top: 25px;
	right: 20px;
}
#all_wrap .outline__title {
	font-weight: bold;
}
#all_wrap .content .outline__number {
	display: inline-block;
	color: #7F7F7F;
	background: rgba(0,0,0,0.1);
	padding: 5px 6px;
	font-weight: 400;
	margin-right: 5px;
	line-height: 1;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .social-bottom {
        width: 90%;
        margin: 0 auto;
    }
}

/*関連記事*/
#all_wrap .related .heading-sub {
	width: 100%;
	padding: 10px 0;
	margin: 0 auto 20px;
	border-bottom: 2px solid var(--color2);
}
#all_wrap .related {
	max-width: 1000px;
	margin: 0 auto 50px;
}
#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: 15px;
    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;
	margin-bottom: 5px;
}
#all_wrap .related__list li.related__item h3.heading-secondary a {
	transition: all 0.3s ease;
}
#all_wrap .related__list li.related__item h3.heading-secondary a:hover {
	transition: all 0.3s ease;
    color: var(--color1);
}
#all_wrap .related__list li.related__item p {
	padding: 0;
	margin: 0;
	font-size: 12px;
	line-height: 1.8em;
}
.eyecatch .eyecatch__link img {
	-webkit-filter:brightness(0.8);
	-moz-filter:brightness(0.8);
	-ms-filter:brightness(0.8);
	filter:brightness(0.8);
	transition: all 0.3s ease;
}
#all_wrap .related__list li:hover .eyecatch .eyecatch__link img {
	-webkit-filter:brightness(1);
	-moz-filter:brightness(1);
	-ms-filter:brightness(1);
	filter:brightness(1);
	transition: all 0.3s ease;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .related {
		margin: 0 auto;
	}
    #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: 10px;
        margin: 0 auto 10px;
    }
	#all_wrap .related__list li.related__item p {
		padding: 0;
		margin: 0;
		font-size: 10px;
		line-height: 1.4em;
	}
}

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


/*前後の記事*/
#all_wrap .prevNext {
    width: 100%;
    padding: 0;
    margin: 0 auto;
}
#all_wrap .prevNext__pop {
    background-color: var(--text);
}
#all_wrap .eyecatch {
    background: var(--text);
}
#all_wrap .heading-secondary {
    color: var(--text);
}
#all_wrap .prevNext__text {
    padding: 0;
    margin: 0;
    color: var(--text);
}
/*== スマホ・タブレット対応 ==*/
@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: var(--text);
    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: 15px;
    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: var(--text);
        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: 15px;
        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;
    }
}

/************************************************************/
/*　共通
/************************************************************/
.btn {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	margin-top: 20px;
}
.btn.right {
	text-align: right;
	justify-content: flex-end;
}
.btn.center {
	text-align: center;
	justify-content: center;
	column-gap: 20px;
}
.btn > a {
	display: inline-flex;
	display: -webkit-inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	background: #fff;
	padding: 15px 50px;
	margin: 0;
	font-size: 16px;
	border-radius: 50px;
	border: 1px solid var(--sub);
	text-align: center;
	text-decoration: none;
	color: var(--sub);
	transition: var(--ease);
}
.btn > a:hover {
	background: var(--sub);
	text-decoration: none;
	color: #fff;
	transition: var(--ease);
}

/*ヘッダー*/
#all_wrap header.contHeader h2 {
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 30px;
	line-height: 1.4em;
	font-weight: lighter;
}

/*紹介エリア*/
.aboutArea {
	width: 100%;
	padding: 100px;
	margin: 0;
	position: relative;
	background: #fff;
}
.aboutBox {
	width: 100%;
	max-width: 950px;
	padding: 0;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}
#all_wrap .aboutBox > header.contHeader {
	width: 45%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .aboutBox > header.contHeader > h2 {
	text-align: left;
}
.aboutBox_txt {
	width: 50%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .aboutBox_txt > p {
	padding: 0;
	margin: 0 auto 10px;
	text-align: justify;
	text-justify: inter-ideograph;
}
#all_wrap .aboutBox_txt > p:last-of-type {
	margin-bottom: 0;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.btn {
		display: flex;
		display: -webkit-flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		padding: 0;
		margin: 0;
		margin-top: 15px;
	}
	.btn.right {
		text-align: right;
		justify-content: flex-end;
	}
	.btn.center {
		text-align: center;
		justify-content: center;
		column-gap: 10px;
	}
	.btn > a {
		display: inline-flex;
		display: -webkit-inline-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		position: relative;
		background: #fff;
		padding: 12px 25px;
		margin: 0;
		font-size: 16px;
		border-radius: 40px;
		border: 1px solid var(--sub);
		text-align: center;
		text-decoration: none;
		color: var(--sub);
		transition: var(--ease);
	}
	.btn > a:hover {
		background: var(--sub);
		text-decoration: none;
		color: #fff;
		transition: var(--ease);
	}

	/*ヘッダー*/
	#all_wrap header.contHeader h2 {
		padding: 0;
		margin: 0;
		border: none;
		background: none;
		position: relative;
		font-size: 20px;
		line-height: 1.4em;
		font-weight: lighter;
	}

	/*紹介エリア*/
	.aboutArea {
		width: 100%;
		padding: 30px;
	}
	.aboutBox {
		width: 100%;
		max-width: 100%;
	}
	#all_wrap .aboutBox > header.contHeader {
		width: 100%;
	}
	.aboutBox_txt {
		width: 100%;
	}
}

/************************************************************/
/*　トップ　インフォメーション
/************************************************************/
#topInformation {
	width: 100%;
	padding: 100px 100px;
	border-bottom: 1px solid #ddd;
	background: #fafafa;
}
#all_wrap #topInformation header.contHeader {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
#all_wrap #topInformation header.contHeader > h2 {
	margin-bottom: 20px;
}
#all_wrap .informationList {
	width: 100%;
	max-width: 950px;
	height: 310px;
	padding: 0 50px 0 0;
	margin: 0 auto ;
	list-style: none;
	position: relative;
	overflow-y: scroll;
}
/* スクロールの幅の設定 */
#all_wrap .informationList::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}
/* スクロールの背景の設定 */
#all_wrap .informationList::-webkit-scrollbar-track {
	border-radius: 10px;
	box-shadow: 0 0 4px #fff inset;
}
/* スクロールのつまみ部分の設定 */
#all_wrap .informationList::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: #c8c8c8;
}
#all_wrap .informationList > li {
	width: 100%;
	padding: 20px 10px;
	margin: 0 auto;
	border-bottom: 1px dotted #ddd;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 20px;
}
#all_wrap .informationList > li span.date {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-size: 14px;
	line-height: 1;
	color: #999;
}
#all_wrap .informationList > li span.cat {
	display: inline-block;
	width: 70px;
	padding: 6px 10px 5px;
	margin: 0;
	font-size: 10px;
	line-height: 1;
	color: #fff;
	background: var(--sub);
	border-radius: 20px;
	text-align: center;
}
#all_wrap .informationList > li span.cat.green {
	background: var(--act);
}
#all_wrap .informationList > li span.cat.blue {
	background: #467fcf;
}
#all_wrap .informationList > li h3 {
	padding: 0;
	margin: 0;
	font-size: 15px;
	line-height: 1.4em;
	text-align: left;
	font-weight: lighter;
	border: none;
	background: none;
	position: relative;
	transition: var(--ease);
}
#all_wrap .informationList > li h3 a {
	font-size: 15px;
	line-height: 1.4em;
	transition: var(--ease);
}
#all_wrap .informationList > li h3 a:hover {
	color: var(--sub);
	transition: var(--ease);
}
#all_wrap #topInformation .btn {
	margin-top: 40px;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topInformation {
		padding: 30px;
	}
	#all_wrap #topInformation header.contHeader {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		text-align: center;
	}
	#all_wrap #topInformation header.contHeader > h2 {
		margin-bottom: 10px;
	}
	#all_wrap .informationList {
		width: 100%;
		max-width: 100%;
		height: 250px;
		padding: 0 10px 0 0;
		margin: 0 auto;
	}
	/* スクロールの幅の設定 */
	#all_wrap .informationList::-webkit-scrollbar {
		width: 5px;
		height: 5px;
	}
	/* スクロールの背景の設定 */
	#all_wrap .informationList::-webkit-scrollbar-track {
		border-radius: 5px;
		box-shadow: 0 0 4px #fff inset;
	}
	/* スクロールのつまみ部分の設定 */
	#all_wrap .informationList::-webkit-scrollbar-thumb {
		border-radius: 5px;
		background: #c8c8c8;
	}
	#all_wrap .informationList > li {
		width: 100%;
		padding: 15px 10px;
		justify-content: flex-start;
		flex-wrap: wrap;
		column-gap: 10px;
		grid-row-gap: 5px;
	}
	#all_wrap .informationList > li span.date {
		font-size: 14px;
	}
	#all_wrap .informationList > li span.cat {
		display: inline-block;
		width: 60px;
		padding: 5px 7px 4px;
	}
	#all_wrap .informationList > li h3 {
		width: 100%;
		font-size: 15px;
		line-height: 1.4em;
	}
	/*ボタン*/
	#all_wrap #topInformation .btn {
		margin-top: 30px;
		column-gap: 10px;
		grid-row-gap: 10px;
	}
	#all_wrap #topInformation .btn a {
		padding: 10px 20px;
		font-size: 12px;
		border-radius: 30px;
	}
}

/************************************************************/
/*　トップ　紹介
/************************************************************/
#topAbout {
	border-bottom: 1px solid #ddd;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topAbout .aboutBox_txt > p > br {
		display: none;
	}
}

/************************************************************/
/*　トップ　不動産売却
/************************************************************/
#topSale {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
	background-image: url('https://step.co.jp/wp-content/uploads/topSale_bg.webp');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	text-align: center;
}
#topSale::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: rgba(0,0,0,0.5);
}
#topSale::after {
	content: '';
	display: block;
	width: 180px;
	height: auto;
	background-image: url('https://step.co.jp/wp-content/uploads/human.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	aspect-ratio: 500 / 671;
	position: absolute;
	bottom: 0;
	right: 100px;
}
#all_wrap #topSale > h2 {
	padding: 0;
	margin: 0 auto 40px;
	text-align: center;
	font-size: 40px;
	line-height: 1;
	font-weight: lighter;
	color: #fff;
}
#all_wrap #topSale > p {
	font-size: 25px;
	line-height: 1.7em;
	color: #fff;
	padding: 0;
	margin: 0 auto 40px;
	text-align: center;
}
#all_wrap #topSale > a {
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 8px;
	padding: 15px 30px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1;
	color: #fff;
	background: #073d8e;
	border-radius: 40px;
	transition: var(--ease);
}
#all_wrap #topSale > a:hover {
	filter: brightness(1.1);
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topSale {
		width: 100%;
		padding: 30px 0;
		background-image: url('https://step.co.jp/wp-content/uploads/topSale_bg_sp.webp');
	}
	#topSale::after {
		content: '';
		display: block;
		width: 200px;
		height: auto;
		background-image: url('https://step.co.jp/wp-content/uploads/human.webp');
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		aspect-ratio: 500 / 671;
		position: absolute;
		bottom: 0;
		right: 100px;
		display: none;
	}
	#all_wrap #topSale > h2 {
		margin: 0 auto 20px;
		text-align: center;
		font-size: 20px;
	}
	#all_wrap #topSale > p {
		font-size: 14px;
		line-height: 2em;
		margin: 0 auto 20px;
	}
	#all_wrap #topSale > a {
		padding: 12px 20px;
		margin: 0 auto;
		font-size: 16px;
	}
}

/************************************************************/
/*　トップ　物件カテゴリ
/************************************************************/
#topProp {
	width: 100%;
	padding: 50px 0 0;
	margin: 0 auto;
	position: relative;
	border-bottom: 1px solid #ddd;
}
#all_wrap header.contHeader {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	text-align: center;
}
#all_wrap header.contHeader > h2 {
	margin-bottom: 10px;
}
#all_wrap header.contHeader > p {
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
/*リスト*/
#all_wrap .propCats {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	flex-wrap: wrap;
}
#all_wrap .propCats > li {
	width: calc(100% / 4);
	padding: 0 0 25px;
	margin: 0;
	position: relative;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	z-index: 0;
	cursor: pointer;
}
#all_wrap .propCats > li::after {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #ddd;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
#all_wrap .propCats > li:last-child::after {
	display: none;
}
.propCats > li > a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	background: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}
.propCats > li figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: center;
	overflow: hidden;
}
.propCats > li figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
.propCats > li figure img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover;
	transition: var(--ease);
}
.propCats > li:hover figure img {
	transform: translate(-50%,-50%) scale(1.05);
	-webkit-transform: translate(-50%,-50%) scale(1.05);
	transform-origin: center;
	transition: var(--ease);
}
#all_wrap .propCats > li figure h3 {
	display: inline-block;
	min-width: 200px;
	padding: 15px 10px 0;
	margin: 0;
	font-size: 16px;
	line-height: 1;
	text-align: center;
	font-weight: lighter;
	background: #fff;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
	z-index: 5;
}
#all_wrap .propCats > li > p {
	width: 100%;
	padding: 25px;
	margin: 0 auto;
	font-size: 14px;
	line-height: 1.7em;
	text-align: justify;
	text-justify: inter-ideograph;
}
.propCats > li > .btn {
	margin: auto auto 0;
}
.propCats > li > .btn a {
	font-size: 14px;
}
.propCats > li:hover > .btn a {
	background: var(--sub);
	text-decoration: none;
	color: #fff;
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topProp {
		width: 100%;
		padding: 30px 0;
	}
	#all_wrap header.contHeader {
		width: calc(100% - 60px);
		margin: 0 auto 20px;
	}
	/*リスト*/
	#all_wrap .propCats {
		width: calc(100% - 60px);
		padding: 0;
		margin: 0 auto;
		position: relative;
		border-bottom: 1px solid #ddd;
	}
	#all_wrap .propCats::before {
		content: '';
		display: block;
		width: 1px;
		height: 100%;
		padding: 0;
		margin: 0;
		background: #ddd;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
	#all_wrap .propCats > li {
		width: calc(100%);
		padding: 0 0 20px;
	}
	#all_wrap .propCats > li:last-child::after {
		display: block;
	}
	#all_wrap .propCats > li figure h3 {
		bottom: -1px;
	}
	#all_wrap .propCats > li > p {
		width: 100%;
		padding: 20px;
	}
}

/************************************************************/
/*　トップ　メッセージ
/************************************************************/
#topMessage {
	background: #f4f3ef;
}
.messageBox {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: center;
}
#all_wrap #topMessage header.contHeader {
	margin-bottom: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .messageBox > p {
		text-align: justify;
		text-justify: inter-ideograph;
	}
}

/************************************************************/
/*　トップ　お知らせ
/************************************************************/
#topNews {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap #topNews .slider {
	width: calc(100% - 100px);
	padding: 0;
	margin: 0 auto;
	list-style: none;
	position: relative;
	border-bottom: 1px solid #ddd;
}
#topNews .slider .slick-slide {
	padding: 0;
	margin: 0 !important;
	background: none;
	list-style: none;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	flex-wrap: wrap;
	position: relative;
}
#topNews .slider li::before,
#topNews .slider li::after {
	display: none;
}
#topNews .slider li::after {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #ddd;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
#topNews .slider li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
#topNews .slider li figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
}
#topNews .slider li figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
#topNews .slider li figure img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover;
	transition: var(--ease);
}
#topNews .slider li:hover figure img {
	transform: translate(-50%,-50%) scale(1.05);
	-webkit-transform: translate(-50%,-50%) scale(1.05);
	transform-origin: center;
	transition: var(--ease);
}
#topNews .slider li figure span {
	display: inline-block;
	min-width: 100px;
	padding: 12px 10px 0;
	margin: 0;
	font-size: 12px;
	line-height: 1;
	text-align: center;
	font-weight: lighter;
	background: #fff;
	position: absolute;
	bottom: 0;
	left: 25px;
	z-index: 5;
}
#topNews .slider li .newsList_info {
	padding: 25px;
	margin: 0;
}
#topNews .slider li .newsList_info h3 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	font-size: 16px;
	line-height: 1.4em;
	text-align: left;
	font-weight: lighter;
	border: none;
	background: none;
	position: relative;
	transition: var(--ease);
}
#topNews .slider li:hover .newsList_info h3 {
	color: var(--sub);
	transition: var(--ease);
}
#topNews .slider li .newsList_info span.date {
	display: block;
	width: 100%;
	padding: 0;
	margin: auto auto 0;
	font-size: 12px;
	line-height: 1;
	color: #999;
}

/*Nextボタン*/
#all_wrap #topNews .slider .slick-next {
	width: 50px;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #f0f0f0;
	border: none;
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
	position: absolute;
	top: 0;
	right: -50px;
	display: block;
	cursor: pointer;
	text-indent: -9999px;
	transition: all 0.3s ease;
	z-index: 20;
	outline: none;
}
#all_wrap #topNews .slider .slick-next::after {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	padding: 0;
	margin: 0;
	background: none;
	border-top: 1px solid var(--text);
	border-right: 1px solid var(--text);
	position: absolute;
	top: 50%;
	left: 45%;
	transform: translate(-50%,-50%) rotate(45deg);
	-webkit-transform: translate(-50%,-50%) rotate(45deg);
	transition: all 0.3s ease;
}
#all_wrap #topNews .slider .slick-next:hover {
	border-color: var(--sub);
	background: var(--sub);
	transition: all 0.3s ease;
}
#all_wrap #topNews .slider .slick-next:hover::after {
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transition: all 0.3s ease;
}

/*Prevボタン*/
#all_wrap #topNews .slider .slick-prev {
	width: 50px;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #f0f0f0;
	border: none;
	border-top: 1px solid #ddd;
	border-right: 1px solid #ddd;
	position: absolute;
	top: 0;
	left: -50px;
	display: block;
	cursor: pointer;
	text-indent: -9999px;
	transition: all 0.3s ease;
	z-index: 20;
	outline: none;
}
#all_wrap #topNews .slider .slick-prev::after {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	padding: 0;
	margin: 0;
	background: none;
	border-top: 1px solid var(--text);
	border-left: 1px solid var(--text);
	position: absolute;
	top: 50%;
	left: 55%;
	transform: translate(-50%,-50%) rotate(-45deg);
	-webkit-transform: translate(-50%,-50%) rotate(-45deg);
	transition: all 0.3s ease;
}
#all_wrap #topNews .slider .slick-prev:hover {
	border-color: var(--sub);
	background: var(--sub);
	transition: all 0.3s ease;
}
#all_wrap #topNews .slider .slick-prev:hover::after {
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	transition: all 0.3s ease;
}

/*ドットナビゲーションの設定*/
#all_wrap #topNews .slider .slick-dots {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
	z-index: 5;
}
#all_wrap #topNews .slider .slick-dots li {
	display:inline-block;
	width: 7px;
	margin: 0 5px;
	padding: 0;
}
#all_wrap #topNews .slider .slick-dots button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	display: block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: none;
	border: 1px solid var(--text);
	text-indent: -9999px;
	opacity: 1;
	transition: all 0.3s ease;
}
#all_wrap #topNews .slider .slick-dots .slick-active button {
	background: var(--text);
	opacity: 1;
	transition: all 0.3s ease;
}
/*ボタン*/
#all_wrap #topNews .btn {
	margin-top: 50px;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topNews {
		width: 100%;
		padding: 30px;
		margin: 0 auto;
		position: relative;
	}
	#all_wrap #topNews .slider {
		width: calc(100% - 60px);
		border: none;
	}
	#all_wrap #topNews .slider.newsList::before,
	#all_wrap #topNews .slider.newsList::after {
		display: none;
	}
	#topNews .slider li::before,
	#topNews .slider li::after {
		display: none;
	}
	#topNews .slider li {
		border-bottom: 1px solid #f0f0f0;
	}
	#topNews .slider li figure span {
		display: inline-block;
		min-width: 100px;
		padding: 12px 10px 0;
		margin: 0;
		font-size: 12px;
		line-height: 1;
		text-align: center;
		font-weight: lighter;
		background: #fff;
		position: absolute;
		bottom: 0;
		left: 20px;
		z-index: 5;
	}
	#topNews .slider li .newsList_info {
		padding: 20px;
		margin: 0;
	}

	/*Nextボタン*/
	#all_wrap #topNews .slider .slick-next {
		width: 30px;
		height: 100%;
		padding: 0;
		margin: 0;
		background: #f0f0f0;
		border: none;
		border-top: none;
		border-left: none;
		position: absolute;
		top: 0;
		right: -30px;
		display: block;
		cursor: pointer;
		text-indent: -9999px;
		transition: all 0.3s ease;
		z-index: 20;
		outline: none;
	}
	#all_wrap #topNews .slider .slick-next::after {
		content: '';
		display: block;
		width: 10px;
		height: 10px;
	}

	/*Prevボタン*/
	#all_wrap #topNews .slider .slick-prev {
		width: 30px;
		height: 100%;
		padding: 0;
		margin: 0;
		background: #f0f0f0;
		border: none;
		border-top: none;
		border-right: none;
		position: absolute;
		top: 0;
		left: -30px;
		display: block;
		cursor: pointer;
		text-indent: -9999px;
		transition: all 0.3s ease;
		z-index: 20;
		outline: none;
	}
	#all_wrap #topNews .slider .slick-prev::after {
		content: '';
		display: block;
		width: 10px;
		height: 10px;
	}
	/*ドットナビゲーションの設定*/
	#all_wrap #topNews .slider .slick-dots {
		width: 100%;
		max-width: 100%;
		bottom: -30px;
	}
	/*ボタン*/
	#all_wrap #topNews .btn {
		margin-top: 50px;
	}
	#all_wrap #topNews .btn a {
		padding: 10px 20px;
		font-size: 12px;
		border-radius: 30px;
	}
}


/************************************************************/
/*　カテゴリ　お知らせ
/************************************************************/
#all_wrap .newsList {
	width: calc(100% - 100px);
	padding: 0;
	margin: 0 auto;
	list-style: none;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#all_wrap .newsList::before {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #ddd;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#all_wrap .newsList::after {
	content: '';
	display: block;
	width: calc(100% / 3);
}
#all_wrap .newsList > li {
	width: calc(100% / 3);
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	flex-wrap: wrap;
	position: relative;
	padding: 0;
	margin: 0;
	border-bottom: 1px solid #ddd;
}
#all_wrap .newsList > li::after {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #ddd;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
#all_wrap .newsList > li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
#all_wrap .newsList > li figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
}
#all_wrap .newsList > li figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
#all_wrap .newsList > li figure img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover;
	transition: var(--ease);
}
#all_wrap .newsList > li:hover figure img {
	transform: translate(-50%,-50%) scale(1.05);
	-webkit-transform: translate(-50%,-50%) scale(1.05);
	transform-origin: center;
	transition: var(--ease);
}
#all_wrap .newsList > li figure span {
	display: inline-block;
	min-width: 100px;
	padding: 12px 10px 0;
	margin: 0;
	font-size: 12px;
	line-height: 1;
	text-align: center;
	font-weight: lighter;
	background: #fff;
	position: absolute;
	bottom: 0;
	left: 25px;
	z-index: 5;
}
#all_wrap .newsList > li .newsList_info {
	padding: 25px;
	margin: 0;
}
#all_wrap .newsList > li .newsList_info h3 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	font-size: 16px;
	line-height: 1;
	text-align: left;
	font-weight: lighter;
	border: none;
	background: none;
	position: relative;
	transition: var(--ease);
}
#all_wrap .newsList > li:hover .newsList_info h3 {
	color: var(--sub);
	transition: var(--ease);
}
#all_wrap .newsList > li .newsList_info span.date {
	display: block;
	width: 100%;
	padding: 0;
	margin: auto auto 0;
	font-size: 12px;
	line-height: 1;
	color: #999;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .newsList {
		width: calc(100%);
	}
	#all_wrap .newsList::before {
		content: '';
		display: none;
	}
	#all_wrap .newsList::after {
		content: '';
		display: none;
	}
	#all_wrap .newsList > li {
		width: calc(100%);
		display: flex;
		display: -webkit-flex;
		flex-direction: column;
		flex-wrap: wrap;
		position: relative;
		padding: 0;
		margin: 0 auto 15px;
		border-bottom: 1px solid #ddd;
	}
	#all_wrap .newsList > li::before {
		content: '';
		display: block;
		width: 1px;
		height: 100%;
		padding: 0;
		margin: 0;
		background: #ddd;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
	#all_wrap .newsList > li::after {
		content: '';
		display: block;
		width: 1px;
		height: 100%;
		padding: 0;
		margin: 0;
		background: #ddd;
		position: absolute;
		top: 0;
		right: 0;
		z-index: -1;
	}
	#all_wrap .newsList > li figure span {
		min-width: 100px;
		padding: 12px 10px 0;
		font-size: 12px;
		bottom: -1px;
		left: 20px;
	}
	#all_wrap .newsList > li .newsList_info {
		padding: 20px;
		margin: 0;
	}
}

/************************************************************/
/*　カテゴリ　物件情報
/************************************************************/
#all_wrap .propList {
	width: calc(100% - 100px);
	padding: 0;
	margin: 0 auto;
	list-style: none;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
	z-index: 0;
}
#all_wrap .propList::before {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #ddd;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#all_wrap .propList::after {
	content: '';
	display: block;
	width: calc(100% / 3);
}
#all_wrap .propList > li {
	width: calc(100% / 3);
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	flex-wrap: wrap;
	position: relative;
	padding: 0 0 25px;
	margin: 0;
	border-bottom: 1px solid #ddd;
}
#all_wrap .propList > li::after {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #ddd;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
#all_wrap .propList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
#all_wrap .propList > li figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
}
#all_wrap .propList > li figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
#all_wrap .propList > li figure img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover;
	transition: var(--ease);
}
#all_wrap .propList > li:hover figure img {
	transform: translate(-50%,-50%) scale(1.05);
	-webkit-transform: translate(-50%,-50%) scale(1.05);
	transform-origin: center;
	transition: var(--ease);
}
#all_wrap .propList > li figure span {
	display: inline-block;
	min-width: 100px;
	padding: 12px 10px 0;
	margin: 0;
	font-size: 12px;
	line-height: 1;
	text-align: center;
	font-weight: lighter;
	background: #fff;
	position: absolute;
	bottom: 0;
	left: 25px;
	z-index: 5;
}
#all_wrap .propList > li .propList_info {
	padding: 25px 25px 15px;
	margin: 0;
}
/*タイトル*/
#all_wrap .propList > li .propList_info h3 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto 5px;
	font-size: 18px;
	line-height: 1.2em;
	text-align: left;
	font-weight: lighter;
	border: none;
	background: none;
	position: relative;
	transition: var(--ease);
}
#all_wrap .propList > li:hover .propList_info h3 {
	color: var(--sub);
	transition: var(--ease);
}
/*価格*/
#all_wrap .propList > li .propList_price {
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: flex-end;
	align-items: flex-end;
	flex-wrap: nowrap;
	column-gap: 20px;
}
#all_wrap .propList > li .propList_price .area {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-size: 14px;
	line-height: 1;
	font-weight: lighter;
}
#all_wrap .propList > li .propList_price .price {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-size: 30px;
	line-height: 1;
	font-weight: lighter;
	color: #b53131;
	white-space: nowrap;
}
#all_wrap .propList > li .propList_price .price small {
	font-size: 20px;
	white-space: nowrap;
}
/*住所*/
#all_wrap .propList > li .add {
	display: block;
	width: 100%;
	padding: 0 0 0 17px;
	margin: 0 auto 5px;
	position: relative;
	font-size: 12px;
	line-height: 1.2em;
}
#all_wrap .propList > li .add::before {
	content: '';
	display: block;
	width: 13px;
	height: 13px;
	padding: 0;
	margin: 0 auto 5px;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url('https://step.co.jp/wp-content/uploads/icon_pin.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	font-size: 14px;
	line-height: 1;
	font-weight: lighter;
}
/*交通手段*/
#all_wrap .propList > li .access {
	display: block;
	width: 100%;
	padding: 0 0 0 17px;
	margin: 0 auto 15px;
	position: relative;
	font-size: 12px;
	line-height: 1.2em;
}
#all_wrap .propList > li .access::before {
	content: '';
	display: block;
	width: 13px;
	height: 13px;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url('https://step.co.jp/wp-content/uploads/icon_railroad.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	font-size: 14px;
	line-height: 1;
	font-weight: lighter;
}
/*キャッチ*/
#all_wrap .propList > li .propList_info > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: justify;
	text-justify: inter-ideograph;
	font-size: 14px;
	line-height: 1.7em;
}
/*ボタン*/
#all_wrap .propList > li .detail {
	width: calc(100% - 50px);
	padding: 0;
	margin: auto auto 0;
	position: relative;
}
#all_wrap .propList > li .detail a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px;
	margin: 0;
	background: #1e1e1e;
	font-size: 14px;
	line-height: 1;
	font-weight: lighter;
	color: #fff;
	text-align: center;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .propList > li:hover .detail a {
	background: var(--sub);
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .propList {
		width: calc(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: 0;
	}
	#all_wrap .propList::before {
		content: '';
		display: none;
	}
	#all_wrap .propList::after {
		content: '';
		display: none;
	}
	#all_wrap .propList > li {
		width: calc(100%);
		padding: 0 0 20px;
		margin: 0 auto 15px;
	}
	#all_wrap .propList > li::before {
		content: '';
		display: block;
		width: 1px;
		height: 100%;
		padding: 0;
		margin: 0;
		background: #ddd;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
	#all_wrap .propList > li::after {
		content: '';
		display: block;
		width: 1px;
		height: 100%;
		padding: 0;
		margin: 0;
		background: #ddd;
		position: absolute;
		top: 0;
		right: 0;
		z-index: -1;
	}
	#all_wrap .propList > li figure span {
		bottom: -1px;
		left: 20px;
		z-index: 5;
	}
	#all_wrap .propList > li .propList_info {
		padding: 20px 20px 10px;
		margin: 0;
	}
}

/************************************************************/
/*　詳細　物件情報　新築建売
/************************************************************/
/*ヘッダー*/
#propHeader {
	width: 100%;
	max-width: 950px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}
#propHeader > strong {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	font-size: 16px;
	line-height: 2;
	font-weight: 400;
	font-feature-settings: "palt" 1;
	font-style: normal;
}
#propHeader > h1 {
	display: block;
	width: 100%;
	padding: 0 0 15px;
	margin: 0 auto;
	font-size: 30px;
	line-height: 1.4em;
	font-weight: lighter;
	font-feature-settings: "palt" 1;
	font-style: normal;
	border-bottom: 1px solid #1e1e1e;
}
/* - ギャラリー*/
#propGallery {
	width: 100%;
	max-width: 950px;
	min-width: 950px;
	padding: 30px;
	margin: 0 auto 50px;
	border-radius: 5px;
	background: #f4f3ef;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: nowrap;
}
#propGallery > .slides {
	width: 60%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	order: 1;
}
#propGallery > .slides > li {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
}
#propGallery > .slides > li::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#propGallery > .slides > li img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover;
}
/* - サムネイル*/
#propGallery > ol.flex-control-thumbs {
	width: calc(40% - 50px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
	background: none;
	order: 3;
}
#propGallery > ol.flex-control-thumbs > li {
	width: calc(100% / 3 - 7px);
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#propGallery > ol.flex-control-thumbs > li::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#propGallery > ol.flex-control-thumbs > li img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover;
}
/* - 矢印*/
#propGallery > .flex-direction-nav {
	width: 30px;
	padding: 0;
	margin: 0;
	order: 2;
	background: none;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	grid-row-gap: 30px;
}
#propGallery > .flex-direction-nav > li {
	width: 20px;
	height: 20px;
	padding: 0;
	margin: 0;
	position: relative;
}
#propGallery > .flex-direction-nav > li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	background: none;
	position: relative;
	top: unset;
	left: unset;
	right: unset;
	bottom: unset;
}
#propGallery > .flex-direction-nav > li.flex-nav-next {
	order: 1;
}
#propGallery > .flex-direction-nav > li.flex-nav-prev {
	order: 2;
}
#propGallery > .flex-direction-nav > li.flex-nav-next a::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
	margin: 0;
	border-top: 1px solid #1e1e1e;
	border-right: 1px solid #1e1e1e;
	position: absolute;
	top: 50%;
	left: 40%;
	transform: translate(-50%,-50%) rotate(45deg);
	-webkit-transform: translate(-50%,-50%) rotate(45deg);
	transition: var(--ease);
}
#propGallery > .flex-direction-nav > li.flex-nav-prev a::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
	margin: 0;
	border-top: 1px solid #1e1e1e;
	border-left: 1px solid #1e1e1e;
	position: absolute;
	top: 50%;
	left: 60%;
	transform: translate(-50%,-50%) rotate(-45deg);
	-webkit-transform: translate(-50%,-50%) rotate(-45deg);
	transition: var(--ease);
}
#propGallery > .flex-direction-nav > li a:hover::before {
	border-color: var(--sub);
}
#propGallery .flex-control-thumbs .flex-active {
	opacity: 1;
	filter: brightness(1);
	transition: var(--ease);
}
#propGallery .flex-control-thumbs img {
	filter: brightness(0.8);
	transition: var(--ease);
}
#propGallery .flex-control-thumbs img:hover {
	filter: brightness(1.2);
	transition: var(--ease);
}
/*データ*/
#propDate {
	width: 100%;
	max-width: 950px;
	min-width: 950px;
	padding: 0;
	margin: 0 auto 50px;
	background: none;
	position: relative;
}
#all_wrap #propDate > h2 {
	padding: 0;
	margin: 0 auto 10px;
	border: none;
	background: none;
	position: relative;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: lighter;
}
#all_wrap .dataTable {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
	flex-wrap: wrap;
	grid-row-gap: 10px;
	padding: 30px;
	margin: 0;
	border-radius: 5px;
	background: #f4f3ef;
	position: relative;
}
#all_wrap .dataTable > li {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: stretch;
	flex-wrap: nowrap;
	column-gap: 10px;
	width: calc(50% - 5px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .dataTable > li.wide {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: stretch;
	flex-wrap: nowrap;
	column-gap: 10px;
	width: calc(100%);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .dataTable > li > strong {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 140px;
	padding: 10px;
	margin: 0;
	background: #fff;
	border-radius: 5px;
	text-align: center;
	font-size: 13px;
	line-height: 1.4em;
	font-weight: lighter;
}
#all_wrap .dataTable > li > div {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: calc(100% - 150px);
	padding: 10px;
	margin: 0;
	text-align: left;
	font-size: 13px;
	line-height: 1.4em;
	font-weight: lighter;
	border-bottom: 1px dotted #ddd;
}
/*タグ*/
.propTags {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 5px;
}
.propTags > span {
	display: inline-block;
	padding: 0;
	margin: 0;
}
.propTags > span a {
	display: block;
	padding: 4px 5px 3px;
	margin: 0;
	background: var(--sub);
	border-radius: 3px;
	font-size: 13px;
	line-height: 1;
	font-weight: lighter;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
.propTags > span a:hover {
	background: #073d8e;
	transition: var(--ease);
}
/*アクセスマップ*/
#propMap {
	width: 100%;
	max-width: 950px;
	min-width: 950px;
	padding: 0;
	margin: 0 auto 100px;
	background: none;
	position: relative;
}
#all_wrap #propMap > h2 {
	padding: 0;
	margin: 0 auto 10px;
	border: none;
	background: none;
	position: relative;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: lighter;
}
#all_wrap #propMap > figure {
	width: 100%;
	height: 400px;
	padding: 0;
	margin: 0;
	border-radius: 5px;
	overflow: hidden;
	position: relative;
	text-align: center;
}
#all_wrap #propMap > figure iframe {
	width: 100%;
	height: 100%;
}
/*その他の物件*/
#propMore {
	width: 100%;
	max-width: 950px;
	min-width: 950px;
	padding: 0;
	margin: 0 auto;
	background: none;
	position: relative;
}
#propMore > h2 {
	display: block;
	width: 100%;
	padding: 0 0 15px;
	margin: 0 auto 30px;
	font-size: 30px;
	line-height: 1.4em;
	font-weight: lighter;
	font-feature-settings: "palt" 1;
	font-style: normal;
	border-bottom: 1px solid #1e1e1e;
	text-align: center;
}
#propMore > .propList {
	width: 100%;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*ヘッダー*/
	#propHeader {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto 30px;
		position: relative;
	}
	#propHeader > strong {
		text-align: justify;
		text-justify: inter-ideograph;
	}
	#propHeader > h1 {
		padding: 0 0 10px;
		font-size: 20px;
	}
	/* - ギャラリー*/
	#propGallery {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		padding: 10px 10px 5px;
		margin: 0 auto 30px;
		border-radius: 5px;
		background: #f4f3ef;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		align-items: stretch;
		flex-wrap: wrap;
	}
	#propGallery > .slides {
		width: 100%;
		padding: 0;
		margin: 0 auto 10px;
		position: relative;
		list-style: none;
		order: 1;
	}
	/* - サムネイル*/
	#propGallery > ol.flex-control-thumbs {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
		column-gap: 5px;
		grid-row-gap: 5px;
		background: none;
		order: 3;
	}
	#propGallery > ol.flex-control-thumbs > li {
		width: calc(100% / 5 - 4px);
		padding: 0;
		margin: 0;
		position: relative;
		overflow: hidden;
		text-align: center;
	}
	/* - 矢印*/
	#propGallery > .flex-direction-nav {
		width: 90%;
		padding: 0;
		margin: 0;
		order: 2;
		justify-content: space-between;
		position: absolute;
		top: 130px;
		left: 50%;
		transform: translate(-50%,0);
		z-index: 10;
	}
	#propGallery > .flex-direction-nav > li.flex-nav-next {
		order: 2;
	}
	#propGallery > .flex-direction-nav > li.flex-nav-prev {
		order: 1;
	}
	/*データ*/
	#propDate {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		padding: 0;
		margin: 0 auto 30px;
		background: none;
		position: relative;
	}
	#all_wrap .dataTable {
		padding: 10px;
	}
	#all_wrap .dataTable > li {
		column-gap: 0;
		width: 100%;
		justify-content: space-between;
		flex-wrap: nowrap;
	}
	#all_wrap .dataTable > li.wide {
		column-gap: 0;
		width: calc(100%);
		flex-wrap: wrap;
	}
	#all_wrap .dataTable > li > strong {
		width: 120px;
		min-width: 120px;
		max-width: 120px;
		padding: 10px 5px;
		font-size: 12px;
	}
	#all_wrap .dataTable > li > div {
		width: calc(100% - 130px);
		padding: 10px 5px;
		font-size: 12px;
	}
	#all_wrap .dataTable > li.wide > strong {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
		padding: 10px;
		font-size: 12px;
	}
	#all_wrap .dataTable > li.wide > div {
		width: 100%;
		padding: 10px;
		font-size: 14px;
		border: none;
	}
	/*アクセスマップ*/
	#propMap {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		padding: 0;
		margin: 0 auto 50px;
		background: none;
		position: relative;
	}
	#all_wrap #propMap > figure {
		width: 100%;
		height: 300px;
	}
	/*その他の物件*/
	#propMore {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		padding: 0;
		margin: 0 auto;
		background: none;
		position: relative;
	}
	#propMore > h2 {
		display: block;
		width: 100%;
		padding: 0 0 10px;
		margin: 0 auto 20px;
		font-size: 20px;
		line-height: 1.4em;
		font-weight: lighter;
		font-feature-settings: "palt" 1;
		font-style: normal;
		border-bottom: 1px solid #1e1e1e;
		text-align: center;
	}
	#propMore > .propList {
		width: 100%;
	}
}


/************************************************************/
/*　オーバーレイ
/************************************************************/
#buysell {
	padding: 100px 0 0;
	margin: 0 auto 30px;
	position: relative;
	display: flex;
	justify-content: center;
	column-gap: 0;
}
#buysell.btn > a {
	margin: 0 10px;
	display: inline-flex;
	display: -webkit-inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	background: var(--sub);
	padding: 15px 50px;
	font-size: 16px;
	border-radius: 50px;
	border: 1px solid var(--sub);
	text-align: center;
	text-decoration: none;
	color: #fff;
	transition: var(--ease);
}
#buysell.btn > a:hover {
	transition: var(--ease);
	opacity: 0.8;
}
.md-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .7;
	z-index: 9999;
}
.md-contents {
	display: none;
	position: fixed;
	width: 85%;
	top: 50%;
	left: 50%;
	height: auto;
	overflow: hidden;
	transform: translate(-50%,-50%);
	z-index: 10000;
}
.md-inner {
	padding: 80px;
	background: #fff;
	height: 500px;
	overflow-y: scroll;
}
/* スクロールの幅の設定 */
#all_wrap .md-inner::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}
/* スクロールの背景の設定 */
#all_wrap .md-inner::-webkit-scrollbar-track {
	border-radius: 0;
	box-shadow: 0 0 4px #fff inset;
}
/* スクロールのつまみ部分の設定 */
#all_wrap .md-inner::-webkit-scrollbar-thumb {
	border-radius: 0;
	background: #c8c8c8;
}
#all_wrap .md-inner > h2 {
	padding: 0;
	margin: 0 auto 20px;
	border: none;
	background: none;
	position: relative;
	font-size: 30px;
	line-height: 1.4em;
	font-weight: lighter;
}
#all_wrap .md-inner > p {
	padding: 0;
	margin: 0 auto 10px;
	text-align: justify;
	text-justify: inter-ideograph;
}
#all_wrap .md-inner > p:last-of-type {
	margin-bottom: 0;
}

.md-xmark {
	position: absolute;
	top: 20px;
	right: 30px;
	width: 26px;
	height: 26px;
	z-index: 9999;
	cursor: pointer;
}
.md-xmark span {
	height: auto;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #333;
	border-radius: 4px;
}
.md-xmark span:nth-of-type(1) {
	top: 0;
	transform: translateY(14px) rotate(-45deg);
}
.md-xmark span:nth-of-type(2) {
	bottom: 0;
	transform: translateY(-10px) rotate(45deg);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#buysell {
		padding: 40px 0 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		justify-content: center;
		column-gap: 0;
	}
	#buysell.btn > a {
		width: calc(100% - 60px);
		margin: 0 auto 10px;
	}
	.md-contents {
		display: none;
		position: fixed;
		width: calc(100% - 60px);
		top: 50%;
		left: 50%;
		height: auto;
		overflow: hidden;
		transform: translate(-50%,-50%);
		z-index: 10000;
	}
	.md-inner {
		padding: 30px;
		background: #fff;
		height: 80vh;
		overflow-y: scroll;
	}
	/* スクロールの幅の設定 */
	#all_wrap .md-inner::-webkit-scrollbar {
		width: 10px;
		height: 10px;
	}
	/* スクロールの背景の設定 */
	#all_wrap .md-inner::-webkit-scrollbar-track {
		border-radius: 0;
		box-shadow: 0 0 4px #fff inset;
	}
	/* スクロールのつまみ部分の設定 */
	#all_wrap .md-inner::-webkit-scrollbar-thumb {
		border-radius: 0;
		background: #c8c8c8;
	}
	#all_wrap .md-inner > h2 {
		padding: 0;
		margin: 0 auto 20px;
		border: none;
		background: none;
		position: relative;
		font-size: 20px;
		line-height: 1.4em;
		font-weight: lighter;
	}
	#all_wrap .md-inner > p {
		padding: 0;
		margin: 0 auto 10px;
		text-align: justify;
		text-justify: inter-ideograph;
	}
	#all_wrap .md-inner > p:last-of-type {
		margin-bottom: 0;
	}

	.md-xmark {
		position: absolute;
		top: 15px;
		right: 20px;
		width: 26px;
		height: 26px;
		z-index: 9999;
		cursor: pointer;
	}
	.md-xmark span {
		height: auto;
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #333;
		border-radius: 4px;
	}
	.md-xmark span:nth-of-type(1) {
		top: 0;
		transform: translateY(14px) rotate(-45deg);
	}
	.md-xmark span:nth-of-type(2) {
		bottom: 0;
		transform: translateY(-10px) rotate(45deg);
	}
}


/*----------------------------------------------------------*/
/* LP
/*----------------------------------------------------------*/

/*==============*/
/* MV */
/*==============*/
#lp_mv {
	width: 100%;
	height: 100vh;
	padding: 100px 0 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	background-image: url('https://step.co.jp/wp-content/uploads/lp_mv_bg.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.lp_mv_info {
	width: calc(100% - 100px);
	max-width: 1000px;
	min-width: 1000px;
	padding: 30px 50px 40px;
	margin: 0 auto;
	background: rgba(255,255,255,0.9);
	border-radius: 20px;
	position: relative;
	z-index: 0;
}
.lp_mv_info > header {
	z-index: 10;
}
.lp_mv_info > header span {
	display: block;
	width: fit-content;
	padding: 10px;
	margin: 0 0 10px;
	background: #fff;
	font-size: 30px;
	line-height: 1;
	font-weight: bold;
	color: var(--text);
	filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
	z-index: 10;
}
.lp_mv_info > header span b {
	font-family: var(--font-jp);
	color: var(--red);
}
#all_wrap .lp_mv_info > header h2 {
	display: block;
	width: 650px;
	padding: 0;
	margin: 10px 0 0;
	position: relative;
	border: none;
	background: none;
	z-index: 10;
}
.lp_mv_info > header h2 img {
	width: 100%;
	height: auto;
	filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
}
.lp_mv_info > header h2 em {
	display: block;
	padding: 0;
	margin: 10px 0 0;
	text-align: center;
	font-family: var(--font-jp);
	font-size: 30px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	font-style: normal;
	filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
}
#all_wrap .lp_mv_info > h2 {
	display: block;
	width: 650px;
	padding: 0;
	margin: 10px 0 0;
	position: relative;
	border: none;
	background: none;
	z-index: 10;
}
/* - バッジ*/
#lp_mv .badge {
	display: block;
	width: 200px;
	height: auto;
	position: absolute;
	top: -30px;
	left: calc(50% + 80px);
	z-index: -1;
}
#lp_mv .badge img {
	width: 100%;
	height: auto;
	filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
}
#tax #lp_mv .badge {
	display: block;
	width: 200px;
	height: auto;
	position: absolute;
	top: -60px;
	left: calc(50% + 130px);
	z-index: -1;
}
/*人物*/
#lp_mv .human {
	display: block;
	width: 100%;
	max-width: 1200px;
	min-width: 1200px;
	height: 600px;
	background: none;
	text-align: right;
	aspect-ratio: 844 / 1227;
	position: absolute;
	bottom: 0;
	left: calc(50%);
	transform: translate(-50%,0);
	z-index: 2;
}
#lp_mv .human img {
	width: auto;
	height: 100%;
}
/*メダル*/
#all_wrap #lp_mv .medal {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 15px;
	position: relative;
	list-style: none;
	padding: 0;
	margin: 15px 0 0;
}
#all_wrap #lp_mv .medal > li {
	width: 140px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #lp_mv .medal > li img {
	width: 100%;
	height: auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp_mv {
		width: 100%;
		height: auto;
		padding: 80px 20px 20px;
		background-image: url('https://test-leistung.coresv.com/wp-content/uploads/dissolution_mv_sp.webp');
	}
	.lp_mv_info {
		width: calc(100%);
		max-width: 100%;
		min-width: 100%;
		padding: 10px 20px 20px;
		border-radius: 10px;
	}
	.lp_mv_info > header span {
		padding: 5px;
		margin: 0 0 5px;
		font-size: 14px;
	}
	#all_wrap .lp_mv_info > header h2 {
		display: block;
		width: 80%;
		margin: 10px 0 0;
	}
	.lp_mv_info > header h2 img {
		width: 100%;
	}
	.lp_mv_info > header h2 em {
		display: block;
		margin: 10px 0 0;
		font-size: 20px;
	}
	#all_wrap .lp_mv_info > h2 {
		width: 80%;
		margin: 10px 0 0;
	}
	/* - バッジ*/
	#lp_mv .badge {
		display: block;
		width: 70px;
		height: auto;
		position: absolute;
		top: -10px;
		left: unset;
		right: -10px;
		z-index: -1;
	}
	/*人物*/
	#lp_mv .human {
		display: block;
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		height: 190px;
	}
	/*メダル*/
	#all_wrap #lp_mv .medal {
		column-gap: 10px;
		width: 80%;
		padding: 0;
		margin: 10px 0 0;
	}
	#all_wrap #lp_mv .medal > li {
		width: 30%;
	}
}


/*==============*/
/* お困りではないですか？ */
/*==============*/
#lp_sol {
	padding: 0;
	margin: 0;
	position: relative;
}
/* 01 */
#lp_sol_01 {
	width: 100%;
	padding: 70px 0;
	margin: 0 auto;
	position: relative;
	background-image: url('https://step.co.jp/wp-content/uploads/lp_sol_01_bg.webp');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 0;
}
#lp_sol_01::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(204,124,151,0.7);
	backdrop-filter: blur(5px);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.lp_sol_01_box {
	width: 100%;
	max-width: 1100px;
	padding: 50px 50px;
	margin: 0 auto;
	background: #fff;
	border-radius: 20px;
	position: relative;
}
.lp_sol_01_box::after {
	content: '';
	display: block;
	width: 100px;
	height: 40px;
	background: #fff;
	position: absolute;
	bottom: -39px;
	left: 50%;
	transform: translate(-50%,0);
	clip-path: polygon(0 0, 50% 100%, 100% 0);
}
#all_wrap #lp_sol_01 header {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
}
#all_wrap #lp_sol_01 header h2 {
	width: fit-content;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	text-align: center;
	font-size: 40px;
	line-height: 1;
	font-weight: bold;
	color: var(--text);
}
#all_wrap #lp_sol_01 header h2::before {
	content: '';
	display: block;
	width: 40px;
	height: auto;
	aspect-ratio: 48 / 40;
	background-image: url('https://step.co.jp/wp-content/uploads/double_q.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	top: -10px;
	left: -50px;
	opacity: 0.5;
}
#all_wrap #lp_sol_01 header h2::after {
	content: '';
	display: block;
	width: 40px;
	height: auto;
	aspect-ratio: 48 / 40;
	background-image: url('https://step.co.jp/wp-content/uploads/double_q.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	bottom: -10px;
	right: -50px;
	transform: scale(-1,-1);
	opacity: 0.5;
}
#all_wrap #lp_sol_01 header h2 strong {
	display: inline-block;
	font-size: 1.2em;
	color: #073d8e;
	position: relative;
	z-index: 0;
}
#all_wrap #lp_sol_01 header h2 strong::before {
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 100%;
	height: 5px;
	background: none;
	border-top: 2px solid #073d8e;
	border-bottom: 2px solid #073d8e;
	content: '';
	z-index: -1;
}
/* - リスト*/
#all_wrap #lp_sol_01 ul {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
}
#all_wrap #lp_sol_01 ul > li {
	width: calc(100% / 2 - 5px);
	padding: 15px 15px;
	margin: 0;
	background: #fafafa;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	font-size: 20px;
	line-height: 1.4em;
	color: var(--text);
}
#all_wrap #lp_sol_01 ul > li::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-image: url('https://step.co.jp/wp-content/uploads/icon_check.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: relative;
}
#all_wrap #lp_sol_01 ul > li p {
	font-size: 20px;
	line-height: 1.4em;
	color: var(--text);
	font-weight: bold;
	padding: 0;
	margin: 0;
}
#all_wrap #lp_sol_01 ul > li p strong {
	font-family: var(--font-jp);
	color: #073d8e;
	font-weight: bold;
	background:linear-gradient(transparent 60%, rgba(1,107,74,0.2) 60%);
}
#all_wrap #lp_sol_01 h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	text-align: center;
	font-family: var(--font-jp);
	font-size: 30px;
	line-height: 1;
	font-weight: bold;
	color: var(--text);
}
#all_wrap #lp_sol_01 h3 strong {
	display: inline-block;
	font-family: var(--font-jp);
	font-size: 1.3em;
	color: var(--red);
	font-weight: bold;
	text-indent: 10px;
	position: relative;
	z-index: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/* 01 */
	#lp_sol_01 {
		width: 100%;
		padding: 30px;
		background-image: url('https://test-leistung.coresv.com/wp-content/uploads/mv_bg_2_sp.webp');
	}
	.lp_sol_01_box {
		width: 100%;
		max-width: 100%;
		padding: 20px;
		border-radius: 10px;
	}
	.lp_sol_01_box::after {
		width: 50px;
		height: 20px;
		bottom: -19px;
	}
	#all_wrap #lp_sol_01 header {
		width: 100%;
		margin: 0 auto 15px;
	}
	#all_wrap #lp_sol_01 header h2 {
		width: fit-content;
		font-size: 16px;
		letter-spacing: -0.05em;
	}
	#all_wrap #lp_sol_01 header h2::before {
		width: 10px;
		top: -5px;
		left: -10px;
	}
	#all_wrap #lp_sol_01 header h2::after {
		width: 10px;
		bottom: -5px;
		right: -10px;
	}
	#all_wrap #lp_sol_01 header h2 strong::before {
		position: absolute;
		left: 0;
		bottom: -8px;
		width: 100%;
		height: 3px;
		border-top: 1px solid var(--main);
		border-bottom: 1px solid var(--main);
	}
	
	/* - リスト*/
	#all_wrap #lp_sol_01 ul {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 20px;
		column-gap: 10px;
		grid-row-gap: 5px;
	}
	#all_wrap #lp_sol_01 ul > li {
		width: calc(100%);
		padding: 10px;
		font-size: 15px;
	}
	#all_wrap #lp_sol_01 ul > li::before {
		width: 15px;
		height: 15px;
	}
	#all_wrap #lp_sol_01 ul > li p {
		font-size: 14px;
		line-height: 1.4em;
	}
	#all_wrap #lp_sol_01 h3 {
		width: 100%;
		font-size: 14px;
		line-height: 1.4em;
	}
	#all_wrap #lp_sol_01 h3 strong {
		display: block;
		width: 100%;
		text-align: center;
		font-size: 1.3em;
		text-indent: 0;
	}
}

/* 03 */
#lp_sol_03 {
	width: 100%;
	padding: 70px 0;
	margin: 0 auto;
	background-image: url('https://step.co.jp/wp-content/uploads/building_bg.gif');
	background-repeat: repeat-x;
	background-position: bottom center;
	background-size: auto 100px;
	background-color: #fff;
	position: relative;
	z-index: 0;
	overflow: hidden;
}
.lp_sol_03_info {
	width: 100%;
	max-width: 800px;
	padding: 90px 50px 30px;
	margin: 0 auto;
	position: relative;
	background: #fff;
	border-radius: 20px;
	border: 5px solid #073d8e;
	filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.1));
}
#all_wrap .lp_sol_03_info > header {
	width: fit-content;
	padding: 15px 10px 15px 30px;
	margin: 0;
	background: #073d8e;
	position: absolute;
	top: -15px;
	left: -15px;
}
#all_wrap .lp_sol_03_info > header::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: #073d8e;
	position: absolute;
	bottom: -10px;
	left: 0;
	filter: brightness(0.5);
	clip-path: polygon(0 0, 100% 100%, 100% 0);
}
#all_wrap .lp_sol_03_info > header::after {
	content: '';
	display: block;
	width: 20px;
	height: 100%;
	background: #073d8e;
	position: absolute;
	top: 0;
	right: -19px;
	clip-path: polygon(0 0, 100% 0%, 20% 100%, 0% 100%);
}
#all_wrap .lp_sol_03_info > header span {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	text-align: left;
	font-family: var(--font-jp);
	font-weight: bold;
	font-size: 20px;
	line-height: 1;
	color: #fff;
}
#all_wrap .lp_sol_03_info > header span b {
	font-family: var(--font-jp);
	font-size: 1.2em;
	position: relative;
}
#all_wrap .lp_sol_03_info > header span b::before {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 15px;
	background: #fff;
	content: '';
	z-index: -1;
	opacity: 0.5;
}
#all_wrap .lp_sol_03_info > header span b span {
	display: inline;
	position: relative;
}
#all_wrap .lp_sol_03_info > header span b span::before {
	content: '';
	display: block;
	width: 4px;
	height: 4px;
	background: #fff;
	border-radius: 50%;
	position: absolute;
	top: -3px;
	left: 50%;
	transform: translate(-50%,0);
}
#all_wrap .lp_sol_03_info > header h2 {
	font-size: 40px;
	color: #fff;
	text-align: left;
	position: relative;
	z-index: 0;
	border: none;
	background: none;
}
#all_wrap .lp_sol_03_info > p {
	padding: 0;
	margin: 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#lp_sol_03 > span.human {
	display: block;
	width: 100%;
	height: 300px;
	aspect-ratio: 844 / 1227;
	position: absolute;
	bottom: 0;
	left: calc(50% + 300px);
	z-index: 1;
}
#lp_sol_03 > span.human img {
	width: auto;
	height: 100%;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/* 03 */
	#lp_sol_03 {
		width: 100%;
		padding: 30px;
		background-size: auto 50px;
	}
	.lp_sol_03_info {
		width: 100%;
		max-width: 100%;
		padding: 70px 20px 20px;
		border-radius: 10px;
		border: 3px solid #073d8e;
	}
	#all_wrap .lp_sol_03_info > header {
		width: fit-content;
		padding: 15px 10px 15px 30px;
		margin: 0;
		background: #073d8e;
		position: absolute;
		top: -10px;
		left: -10px;
	}
	#all_wrap .lp_sol_03_info > header::before {
		content: '';
		display: block;
		width: 10px;
		height: 10px;
		background: #073d8e;
		position: absolute;
		bottom: -10px;
		left: 0;
		filter: brightness(0.5);
		clip-path: polygon(0 0, 100% 100%, 100% 0);
	}
	#all_wrap .lp_sol_03_info > header::after {
		content: '';
		display: block;
		width: 20px;
		height: 100%;
		background: #073d8e;
		position: absolute;
		top: 0;
		right: -19px;
		clip-path: polygon(0 0, 100% 0%, 20% 100%, 0% 100%);
	}
	#all_wrap .lp_sol_03_info > header span {
		margin: 0 auto 5px;
		font-size: 12px;
	}
	#all_wrap .lp_sol_03_info > header h2 {
		font-size: 18px;
	}
	#lp_sol_03 > span.human {
		display: block;
		width: 100%;
		height: 125px;
		bottom: 0;
		left: 0;
		z-index: 1;
		text-align: right;
	}
}


/*==============*/
/* 私たちがサポートします */
/*==============*/
#lp_greeting {
	width: 100%;
	padding: 70px 0;
	margin: 0 auto;
	background: #fafafa;
	position: relative;
	z-index: 0;
}
#lp_greeting::before {
	content: '';
	display: block;
	width: 80%;
	height: calc(100% - 200px);
	background: #073d8e;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}
#all_wrap #lp_greeting > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	text-align: center;
}
#all_wrap #lp_greeting > header h2 {
	padding: 0;
	margin: 0 auto;
	font-size: 40px;
	line-height: 1;
	font-weight: bold;
	color: #073d8e;
	text-align: center;
}
.lp_greetingBox {
	width: 100%;
	max-width: 1100px;
	padding: 50px;
	margin: 0 auto;
	position: relative;
	background: #fff;
	display: flex;
	justify-content: space-between;
	column-gap: 50px;
	border-radius: 20px;
}
.lp_greetingBox > figure {
	width: 300px;
	padding: 0;
	margin: 0;
	position: relative;
}
.lp_greetingBox > figure img {
	width: 100%;
	height: auto;
}
.lp_greeting_info {
	width: calc(100% - 50px - 300px);
	padding: 0;
	margin: 0;
	position: relative;
}
.lp_greeting_info header {
	padding: 0 0 15px;
	margin: 0 auto 15px;
	border-bottom: 1px solid #c8c8c8;
}
.lp_greeting_info header em {
	display: block;
	width: auto;
	height: 40px;
	padding: 0;
	margin: 0 0 10px;
}
.lp_greeting_info header em img {
	width: auto;
	height: 100%;
}
#all_wrap .lp_greeting_info header h2 {
	padding: 0;
	margin: 0;
	font-size: 20px;
	line-height: 1.4em;
	border: none;
	background: none;
	position: relative;
}
#all_wrap .lp_greeting_info header h2 small {
	font-size: 14px;
}
#all_wrap .lp_greeting_info header h2 p {
	font-size: 20px;
	line-height: 1;
}
#all_wrap .lp_greeting_info > p {
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .lp_greeting_info > p:last-of-type {
	margin-bottom: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp_greeting {
		width: 100%;
		padding: 30px;
	}
	#lp_greeting::before {
		width: 80%;
		height: calc(100% - 200px);
	}
	#all_wrap #lp_greeting > header {
		margin: 0 auto 20px;
	}
	#all_wrap #lp_greeting > header h2 {
		font-size: 20px;
	}
	.lp_greetingBox {
		width: 100%;
		max-width: 100%;
		padding: 20px;
		column-gap: 0;
		grid-row-gap: 15px;
		border-radius: 10px;
		flex-wrap: wrap;
	}
	.lp_greetingBox > figure {
		width: 100%;
	}
	.lp_greeting_info {
		width: calc(100%);
		order: 1;
	}
	.lp_greeting_info header em {
		height: 30px;
	}
	#all_wrap .lp_greeting_info header h2 {
		font-size: 20px;
	}
	#all_wrap .lp_greeting_info header h2 small {
		font-size: 12px;
	}
}

/*==============*/
/* 選ばれる理由 */
/*==============*/
#lp_reason {
	width: 100%;
	padding: 70px 0;
	margin: 0 auto;
	background: #fff;
	position: relative;
}
#all_wrap #lp_reason > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	text-align: center;
}
#all_wrap #lp_reason > header h2 {
	padding: 0;
	margin: 0 auto;
	font-size: 40px;
	line-height: 1;
	font-weight: bold;
	color: #073d8e;
	text-align: center;
}
#all_wrap #lp_reason > header h2 b {
	font-size: 1.4em;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp_reason {
		width: 100%;
		padding: 30px;
	}
	#all_wrap #lp_reason > header {
		margin: 0 auto 20px;
	}
	#all_wrap #lp_reason > header h2 {
		font-size: 20px;
	}
	#all_wrap #lp_reason > header h2 b {
		font-size: 1.4em;
	}
}

#all_wrap .reasonList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 60px;
}
#all_wrap .reasonList.sub {
	width: 100%;
	max-width: 1100px;
}
#all_wrap .reasonList > li {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	column-gap: 30px;
}
#all_wrap .reasonList > li figure {
	width: 350px;
	min-width: 350px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	z-index: 0;
}
#all_wrap .reasonList > li figure::before {
	content: '';
	display: block;
	padding-top: 75%;
	background-image: linear-gradient(125deg, rgba(204,124,151,0.9) 0%, rgba(204,124,151,0) 50%);
}
#all_wrap .reasonList > li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
	z-index: -1;
}
#all_wrap .reasonList > li figure span {
	display: block;
	font-family: var(--font-en);
	font-size: 30px;
	line-height: 1;
	color: #fff;
	position: absolute;
	top: 12px;
	left: 15px;
	z-index: 2;
}
#all_wrap .reasonList > li .reasonList_info {
	width: calc(100% - 30px - 350px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#all_wrap .reasonList > li:nth-child(odd) .reasonList_info {
	order: 1;
}
#all_wrap .reasonList_info > h3 {
	width: 100%;
	padding: 0 0 15px;
	margin: 0 auto;
	border: none;
	background: none;
	border-bottom: 1px solid #d1d1d1;
	position: relative;
	font-size: 25px;
	line-height: 1.4em;
	color: var(--text);
}
#all_wrap .reasonList_info > h3 > span {
	display: inline-block;
	width: 50px;
	height: 1px;
	background: #073d8e;
	position: absolute;
	bottom: -1px;
	left: 0;
}
#all_wrap .reasonList_info > h3 > span::before {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	background: #073d8e;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
}
#all_wrap .reasonList_info > h3 > span::after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	background: #073d8e;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
}
#all_wrap .reasonList_info > p {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topReason {
		width: 100%;
		margin: 0 auto 50px;
	}
	#all_wrap .reasonList {
		width: calc(100% - 60px);
		grid-row-gap: 30px;
	}
	#all_wrap .reasonList > li {
		width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 12px;
	}
	#all_wrap .reasonList > li figure {
		width: 100%;
		min-width: 100%;
	}
	#all_wrap .reasonList > li figure span {
		display: block;
		font-family: var(--font-en);
		font-size: 30px;
		line-height: 1;
		color: #fff;
		position: absolute;
		top: 12px;
		left: 15px;
		z-index: 2;
	}
	#all_wrap .reasonList > li .reasonList_info {
		width: calc(100%);
		grid-row-gap: 12px;
		order: 1;
	}
	#all_wrap .reasonList > li:nth-child(odd) .reasonList_info {
		order: 1;
	}
	#all_wrap .reasonList_info > h3 {
		width: 100%;
		padding: 0 0 12px;
		font-size: 20px;
	}
}


/*==============*/
/* 料金プラン */
/*==============*/
#lp_price {
	width: 100%;
	padding: 0 0 70px;
	margin: 0 auto;
	background: #f4f3ef;
	position: relative;
}
#all_wrap #lp_price > header {
	width: 100%;
	padding: 30px 0;
	margin: 0 auto 70px;
	background: #073d8e;
	position: relative;
	text-align: center;
}
#all_wrap #lp_price > header::after {
	content: '';
	display: block;
	width: 50px;
	height: 20px;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	background: #073d8e;
	position: absolute;
	bottom: -19px;
	left: 50%;
	transform: translate(-50%,0);
}
#all_wrap #lp_price > header > span {
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 15px;
	font-size: 25px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	margin: 0 auto 5px;
}
#all_wrap #lp_price > header > span::before,
#all_wrap #lp_price > header > span::after {
	content: '';
	display: block;
	width: 2px;
	height: 30px;
	background: #fff;
	border-radius: 3px;
	transform: rotate(-15deg);
}
#all_wrap #lp_price > header > span::after {
	transform: rotate(15deg);
}
#all_wrap #lp_price > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 40px;
	line-height: 1;
	color: #fff;
}
#all_wrap .lp_price_box {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 auto 70px;
	position: relative;
}
#all_wrap .lp_price_box:last-of-type {
	margin-bottom: 0;
}
#all_wrap .lp_price_box > h3 {
	padding: 0;
	margin: 0 auto 30px;
	font-size: 40px;
	line-height: 1;
	font-weight: bold;
	color: #073d8e;
	text-align: center;
}
#all_wrap .lp_price_box > h4 {
	padding: 0;
	margin: 0 auto;
	font-size: 20px;
	line-height: 1.5em;
	font-weight: bold;
	color: var(--text);
	text-align: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp_price {
		width: 100%;
		padding: 0 0 30px;
	}
	#all_wrap #lp_price > header {
		width: 100%;
		padding: 10px 0;
		margin: 0 auto 40px;
	}
	#all_wrap #lp_price > header::after {
		width: 30px;
		height: 10px;
		bottom: -9px;
	}
	#all_wrap #lp_price > header > h2 {
		font-size: 20px;
	}
	#all_wrap .lp_price_box {
		width: calc(100% - 60px);
		max-width: 100%;
		padding: 0;
		margin: 0 auto 30px;
	}
	#all_wrap .lp_price_box > h3 {
		padding: 0;
		margin: 0 auto 15px;
		font-size: 20px;
	}
	#all_wrap .lp_price_box > h4 {
		font-size: 15px;
		line-height: 1.5em;
		font-weight: bold;
	}
}

/* - テーブル*/
#all_wrap .lp_price_table {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	border: none;
	background: none;
	border-collapse: separate;
	border-spacing: 0;
	overflow: unset;
	border-top: 1px solid #fff;
	border-left: 1px solid #d5d5d5;
}
#all_wrap .lp_price_table th {
	padding: 15px;
	margin: 0;
	border: none;
	background: #073d8e;
	font-size: 1.4em;
	font-weight: 700;
	line-height: 1.2em;
	color: #fff;
	text-align: center;
	border-right: 1px solid #fff;
}
#all_wrap .lp_price_table .row-1 th:nth-of-type(even) {
	background: var(--navy);
}
#all_wrap .lp_price_table td {
	padding: 15px;
	margin: 0;
	border: none;
	background: #fafafa;
	border-right: 1px solid #d5d5d5;
	border-bottom: 1px solid #d5d5d5;
	font-size: 16px;
	line-height: 1.2em;
	text-align: center;
	font-weight: 500;
}
#all_wrap .lp_price_table td.column-1 {
	border-left: 1px solid #d5d5d5;
}
#all_wrap .lp_price_table tr:nth-of-type(even) td {
	background: #fafafa;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/* - テーブル*/
	#all_wrap .lp_price_table {
		width: 100%;
		max-width: 100%;
	}
	#all_wrap .lp_price_table th {
		display: table-cell;
		padding: 12px 10px;
		margin: 0;
		border-right: 1px solid #fff;
		background: #304992;
		font-size: 14px;
		font-weight: 700;
		line-height: 1.2em;
		color: #fff;
		text-align: center;
	}
	#all_wrap .lp_price_table td {
		display: table-cell;
		padding: 12px 5px;
		margin: 0;
		border: none;
		background: #fff;
		border-right: 1px solid #d5d5d5;
		border-bottom: 1px solid #d5d5d5;
		font-size: 13px;
		line-height: 1.2em;
		text-align: center;
		font-weight: 500;
	}
}

/*料金ポイント*/
#all_wrap .lp_price_point {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	column-gap: 30px;
}
#all_wrap .lp_price_point dl {
	width: calc(100% / 3 - 20px);
	padding: 0;
	margin: 0;
	position: relative;
	background: none;
	border: none;
	display: flex;
	flex-direction: column;
}
#all_wrap .lp_price_point dl dt {
	width: 100%;
	padding: 10px;
	margin: 0 auto;
	background: var(--act);
	border-radius: 5px 5px 0 0;
	font-size: 16px;
	line-height: 1.4em;
	text-align: center;
	color: #fff;
	position: relative;
}
#all_wrap .lp_price_point dl dt::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: var(--act);
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	position: absolute;
	bottom: -9px;
	left: 50%;
	transform: translate(-50%,0);
}
#all_wrap .lp_price_point dl dd {
	padding: 20px;
	margin: 0;
	background: #fafafa;
	border: 1px solid #d5d5d5;
	border-top: none;
	border-radius: 0 0 5px 5px;
	flex: 1;
}
#all_wrap .lp_price_point dl dd p {
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 14px;
	line-height: 1.5em;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*料金ポイント*/
	#all_wrap .lp_price_point {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	#all_wrap .lp_price_point dl {
		width: calc(100%);
	}
	#all_wrap .lp_price_point dl dt {
		width: 100%;
		padding: 10px;
		font-size: 15px;
	}
}

/*リスト*/
#all_wrap .checkList {
	width: fit-content;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .checkList > li {
	width: auto;
	padding: 0;
	margin: 0;
	background: none;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	font-size: 20px;
	line-height: 1.4em;
	color: var(--text);
}
#all_wrap .checkList > li::before {
	content: '';
	display: block;
	width: 20px;
	min-width: 20px;
	height: 20px;
	background-image: url('https://step.co.jp/wp-content/uploads/icon_check.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: relative;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*リスト*/
	#all_wrap .checkList {
		width: fit-content;
		padding: 0;
		margin: 0 auto 20px;
	}
	#all_wrap .checkList > li {
		font-size: 15px;
		align-items: baseline;
	}
	#all_wrap .checkList > li::before {
		width: 15px;
		min-width: 15px;
		height: 15px;
	}
}

/*流れ*/
#all_wrap #lp_flow {
	width: 100%;
	padding: 70px 0;
	margin: 0 auto;
	background: #fafafa;
	position: relative;
}
#all_wrap #lp_flow > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	text-align: center;
}
#all_wrap #lp_flow > header h2 {
	padding: 0;
	margin: 0 auto;
	font-size: 40px;
	line-height: 1;
	font-weight: bold;
	color: #073d8e;
	text-align: center;
}
#all_wrap .lp_flowList {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
}
#all_wrap .lp_flowList > li {
	width: calc(100%);
	padding: 20px;
	margin: 0;
	border: 3px solid #073d8e;
	border-radius: 10px;
	background: #fff;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	column-gap: 20px;
}
#all_wrap .lp_flowList > li::after {
	content: '';
	display: block;
	width: 30px;
	height: 20px;
	background: #073d8e;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translate(-50%,0);
}
#all_wrap .lp_flowList > li:last-child::after {
	display: none;
}
#all_wrap .lp_flowList > li figure {
	width: 250px;
	min-width: 250px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 5px;
}
#all_wrap .lp_flowList > li figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .lp_flowList > li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .lp_flow_info {
	width: calc(100% - 20px - 250px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .lp_flowList > li > em {
	display: inline-block;
	padding: 10px 20px;
	background: #073d8e;
	border-radius: 40px;
	font-size: 20px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	font-style: normal;
	position: absolute;
	top: -20px;
	left: 20px;
	z-index: 2;
}
#all_wrap .lp_flow_info h3 {
	padding: 0;
	margin: 0 auto 10px;
	width: 100%;
	position: relative;
	border: none;
	background: none;
	font-size: 20px;
	line-height: 1;
	color: var(--text);
}
#all_wrap .lp_flow_info > p {
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 14px;
	line-height: 1.5em;
}
#all_wrap .lp_flow_info > p:last-of-type {
	margin-bottom: 0;
}
/*リスト*/
#all_wrap .checkList_min {
	width: 100%;
	padding: 0;
	margin: 10px auto 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
#all_wrap .checkList_min > li {
	width: auto;
	padding: 0;
	margin: 0;
	background: none;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	font-size: 16px;
	line-height: 1.4em;
	color: var(--text);
}
#all_wrap .checkList_min > li::before {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	background-image: url('https://step.co.jp/wp-content/uploads/icon_check.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: relative;
}
#all_wrap #lp_flow > h4 {
	padding: 0;
	margin: 0 auto;
	font-size: 20px;
	line-height: 1.5em;
	font-weight: bold;
	color: var(--text);
	text-align: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap #lp_flow {
		width: 100%;
		padding: 30px 0;
	}
	#all_wrap #lp_flow > header {
		margin: 0 auto 20px;
	}
	#all_wrap #lp_flow > header h2 {
		font-size: 20px;
		line-height: 1.4em;
	}
	/* - リスト*/
	#all_wrap .lp_flowList {
		width: calc(100% - 60px);
		max-width: 100%;
		column-gap: 0;
		grid-row-gap: 30px;
		flex-wrap: wrap;
		padding-top: 20px;
	}
	#all_wrap .lp_flowList > li {
		width: calc(100%);
		padding: 30px 20px 20px;
		display: flex;
		justify-content: space-between;
		column-gap: 0;
		grid-row-gap: 15px;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	}
	#all_wrap .lp_flowList > li::after {
		width: 30px;
		height: 15px;
		clip-path: polygon(0 0, 50% 100%, 100% 0);
		top: unset;
		bottom: -15px;
		right: unset;
		left: 50%;
		transform: translate(-50%,0);
	}
	#all_wrap .lp_flowList > li > em {
		display: inline-block;
		padding: 8px 20px;
		border-radius: 30px;
		font-size: 14px;
		line-height: 1;
		font-weight: bold;
		color: #fff;
		font-style: normal;
		position: absolute;
		top: -15px;
		left: 15px;
		z-index: 2;
	}
	#all_wrap .lp_flow_info {
		width: calc(100%);
		padding: 0;
		margin: 0;
		position: relative;
	}
	#all_wrap .lp_flow_info > h3 {
		width: 100%;
		margin: 0 auto 10px;
		font-size: 20px;
	}
	#all_wrap .lp_flow_info > h3 small {
		font-size: 12px;
	}
	#all_wrap .lp_flow_info > p {
		width: calc(100%);
	}
	#all_wrap .lp_flowList > li figure {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
	}
	/*リスト*/
	#all_wrap .checkList_min {
		width: 100%;
		padding: 0;
		margin: 10px auto 0;
		position: relative;
		display: flex;
		flex-direction: column;
		grid-row-gap: 5px;
	}
	#all_wrap .checkList_min > li {
		font-size: 15px;
		align-items: baseline;
	}
	#all_wrap .checkList_min > li::before {
		content: '';
		display: block;
		width: 15px;
		min-width: 15px;
		height: 15px;
	}
	#all_wrap #lp_flow > h4 {
		padding: 0;
		margin: 0 auto;
		font-size: 15px;
		line-height: 1.5em;
		font-weight: bold;
		color: var(--text);
		text-align: center;
	}
}

/*お客様の声*/
#all_wrap #lp_voice {
	width: 100%;
	padding: 70px 0;
	margin: 0 auto;
	background: #f3f3f3;
	position: relative;
}
#all_wrap #lp_voice > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	text-align: center;
}
#all_wrap #lp_voice > header h2 {
	padding: 0;
	margin: 0 auto;
	font-size: 40px;
	line-height: 1;
	font-weight: bold;
	color: #073d8e;
	text-align: center;
}
#all_wrap .lp_voiceList {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	column-gap: 50px;
}
#all_wrap .lp_voiceList > li {
	width: calc(100% / 3 - 33.4px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#all_wrap .lp_voiceList > li figure {
	width: 200px;
	min-width: 200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 50%;
}
#all_wrap .lp_voiceList > li figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .lp_voiceList > li img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .lp_voiceList > li h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.4em;
	text-align: center;
	color: var(--text);
	position: relative;
	border: none;
	background: none;
}
#all_wrap .lp_voiceList > li p {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 14px;
	line-height: 1.5em;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*お客様の声*/
	#all_wrap #lp_voice {
		width: 100%;
		padding: 30px 0;
	}
	#all_wrap #lp_voice > header {
		width: 100%;
		margin: 0 auto 20px;
	}
	#all_wrap #lp_voice > header h2 {
		font-size: 20px;
	}
	#all_wrap .lp_voiceList {
		width: calc(100% - 60px);
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	#all_wrap .lp_voiceList > li {
		width: calc(100%);
		grid-row-gap: 15px;
	}
	#all_wrap .lp_voiceList > li figure {
		width: 60%;
		min-width: 60%;
	}
	#all_wrap .lp_voiceList > li h3 {
		font-size: 18px;
	}
}

/*会社概要*/
#all_wrap #lp_company {
	width: 100%;
	padding: 70px 0;
	margin: 0 auto;
	background: #fff;
	position: relative;
}
#all_wrap #lp_company > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	text-align: center;
}
#all_wrap #lp_company > header h2 {
	padding: 0;
	margin: 0 auto;
	font-size: 40px;
	line-height: 1;
	font-weight: bold;
	color: #073d8e;
	text-align: center;
}
#all_wrap .company_table {
	max-width: 800px;
	margin: 0 auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*会社概要*/
	#all_wrap #lp_company {
		width: 100%;
		padding: 30px 0;
	}
	#all_wrap #lp_company > header {
		width: 100%;
		margin: 0 auto 20px;
	}
	#all_wrap #lp_company > header h2 {
		font-size: 20px;
	}
	#all_wrap .company_table {
		width: calc(100% - 60px);
		max-width: 100%;
		margin: 0 auto;
	}
}

/*成約実績*/
#all_wrap #lp_result {
	width: 100%;
	padding: 70px 0;
	margin: 0 auto;
	background: #f4f3ef;
	position: relative;
}
#all_wrap #lp_result > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	text-align: center;
}
#all_wrap #lp_result > header h2 {
	padding: 0;
	margin: 0 auto;
	font-size: 40px;
	line-height: 1;
	font-weight: bold;
	color: #073d8e;
	text-align: center;
}
/* - タブ*/
/*タブ切り替え全体のスタイル*/
#lp_result_tab .tabs {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
}
/*タブのスタイル*/
#lp_result_tab .tab_item {
	width: fit-content;
	min-width: 100px;
	padding: 10px 10px;
	margin: 0 5px 0 0;
	height: 40px;
	background-color: #fff;
	line-height: 40px;
	font-size: 15px;
	text-align: center;
	color: var(--text);
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	float: left;
	text-align: center;
	font-weight: bold;
	border-radius: 5px 5px 0 0;
	transition: all 0.3s ease;
	cursor: pointer;
}
#lp_result_tab .tab_item:hover {
	opacity: 0.75;
}
/*ラジオボタンを全て消す*/
#lp_result_tab input[name="tab_item"] {
	display: none;
}
/*タブ切り替えの中身のスタイル*/
#lp_result_tab .tab_content {
	display: none;
	border: 3px solid #073d8e;
	border-radius: 0 5px 5px 5px;
	padding: 30px;
	clear: both;
	overflow-y: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
	background: #fff;
	height: 400px;
}
#lp_result_tab .tab_content::-webkit-scrollbar{
	display:none;
}
/*選択されているタブのコンテンツのみを表示*/
#tab_1:checked ~ #tab_1_content,
#tab_2:checked ~ #tab_2_content,
#tab_3:checked ~ #tab_3_content {
	display: block;
}
/*選択されているタブのスタイルを変える*/
#lp_result_tab .tabs input:checked + .tab_item {
	background-color: #073d8e;
	color: #fff;
}

/*テーブル*/
#all_wrap .result_table {
	table-layout: auto;
	width: 100%;
	min-width: 100%;
	max-width: unset;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	overflow-x: scroll;
	border-spacing: 0;
}
#all_wrap .result_table thead th {
	display: table-cell;
	width: 1em;
	padding: 10px;
	margin: 0;
	text-align: center;
	font-size: 14px;
	line-height: 1;
	text-align: center;
	color: #fff;
	white-space: nowrap;
	background: #073d8e;
	border: none;
	border-right: 1px solid #fff;
}
#all_wrap .result_table tbody {
	border-left: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
#all_wrap .result_table tbody td {
	display: table-cell;
	width: 1em;
	padding: 10px;
	margin: 0;
	text-align: center;
	font-size: 14px;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	color: var(--text);
	background: #fff;
	border: none;
	border-right: 1px solid #ccc;
}
#all_wrap .result_table tbody tr:nth-of-type(even) td {
	display: table-cell;
	padding: 10px;
	margin: 0;
	text-align: center;
	font-size: 14px;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	color: var(--text);
	background: #eee;
	border: none;
	border-right: 1px solid #ccc;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*成約実績*/
	#all_wrap #lp_result {
		width: 100%;
		padding: 30px 0;
	}
	#all_wrap #lp_result > header {
		margin: 0 auto 20px;
	}
	#all_wrap #lp_result > header h2 {
		font-size: 20px;
	}
	/* - タブ*/
	/*タブ切り替え全体のスタイル*/
	#lp_result_tab .tabs {
		width: calc(100% - 60px);
		max-width: 100%;
	}
	/*タブのスタイル*/
	#lp_result_tab .tab_item {
		width: fit-content;
		min-width: 70px;
		padding: 10px 10px;
		margin: 0 5px 0 0;
		height: 32px;
		background-color: #fff;
		line-height: 32px;
		font-size: 12px;
		text-align: center;
		color: var(--text);
		display: inline-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		float: left;
		text-align: center;
		font-weight: bold;
		border-radius: 5px 5px 0 0;
		transition: all 0.3s ease;
		cursor: pointer;
	}
	/*タブ切り替えの中身のスタイル*/
	#lp_result_tab .tab_content {
		display: none;
		border: 3px solid #073d8e;
		border-radius: 0 5px 5px 5px;
		padding: 15px;
		overflow-x: scroll;
	}

	/*テーブル*/
	#all_wrap .result_table {
		table-layout: auto;
		width: 100%;
		min-width: 100%;
		max-width: unset;
		padding: 0;
		margin: 0 auto;
		border: none;
		background: none;
		position: relative;
		overflow-x: scroll;
		border-spacing: 0;
	}
	#all_wrap .js-scrollable {
		overflow-y: hidden !important;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	#all_wrap .js-scrollable::-webkit-scrollbar{
		display:none;
	}
}


/*お問い合わせ*/
#all_wrap #lp_contact {
	width: 100%;
	padding: 70px 0;
	margin: 0 auto;
	background-image: url('https://step.co.jp/wp-content/uploads/lp_contact_bg.webp');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 0;
}
#all_wrap #lp_contact::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(204, 124, 151, 0.7);
	backdrop-filter: blur(5px);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.lp_contact_box {
	width: 100%;
	max-width: 800px;
	padding: 50px;
	margin: 0 auto;
	position: relative;
	background: #fff;
	border: 5px solid #073d8e;
}
.lp_contact_box .tel_area {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	background: none;
	text-align: center;
}
/*-ボタンリスト*/
#all_wrap .btnList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	grid-row-gap: 10px;
	flex-wrap: wrap;
}
#all_wrap .btnList > li {
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .btnList > li a {
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 8px;
	padding: 15px 30px;
	margin: 0;
	font-size: 18px;
	line-height: 1;
	color: #fff;
	background: #073d8e;
	border-radius: 40px;
	transition: var(--ease);
}
#all_wrap .btnList > li a::before {
	content: '';
	display: block;
	width: 17px;
	height: 17px;
	background-image: url('https://step.co.jp/wp-content/uploads/icon_mail_w.svg');
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
}
#all_wrap .btnList > li a:hover {
	filter: brightness(1.1);
	transition: var(--ease);
}
#all_wrap .lp_contact_box .human01 {
	display: block;
	width: auto;
	height: calc(100% - 30px);
	aspect-ratio: 700 / 1236;
	position: absolute;
	bottom: 0;
	left: 20px;
	z-index: 0;
}
#all_wrap .lp_contact_box .human02 {
	display: block;
	width: auto;
	height: calc(100% - 30px);
	aspect-ratio: 700 / 1579;
	position: absolute;
	bottom: 0px;
	right: 20px;
	z-index: 0;
}
#all_wrap .lp_contact_box .human01 img,
#all_wrap .lp_contact_box .human02 img {
	width: auto;
	height: 100%;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*お問い合わせ*/
	#all_wrap #lp_contact {
		width: 100%;
		padding: 30px;
		background-image: url('https://step.co.jp/wp-content/uploads/lp_contact_bg_sp.webp');
	}
	.lp_contact_box {
		width: 100%;
		max-width: 100%;
		padding: 20px;
		border: 3px solid #073d8e;
	}
	.lp_contact_box .tel_area {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
	}
	#all_wrap .lp_contact_box .tel_area > p {
		font-size: 18px;
		line-height: 1.4em;
	}
	#all_wrap .lp_contact_box .tel_area > tel a {
		display: inline-block;
		font-size: 35px;
		line-height: 1;
		font-weight: lighter;
		color: var(--text);
		transition: var(--ease);
		text-decoration: none;
		white-space: nowrap;
	}
	/*-ボタンリスト*/
	#all_wrap .btnList {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		list-style: none;
		display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		column-gap: 10px;
		grid-row-gap: 10px;
		flex-wrap: wrap;
	}
	#all_wrap .btnList > li {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
	}
	#all_wrap .btnList > li a {
		display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		column-gap: 8px;
		padding: 15px 30px;
		margin: 0;
		font-size: 16px;
		line-height: 1;
		color: #fff;
		background: #073d8e;
		border-radius: 40px;
		transition: var(--ease);
	}
	#all_wrap .btnList > li a::before {
		content: '';
		display: block;
		width: 17px;
		height: 17px;
		background-image: url('https://step.co.jp/wp-content/uploads/icon_mail_w.svg');
		background-repeat: no-repeat;
		background-size: auto 100%;
		background-position: center;
	}
	#all_wrap .btnList > li a:hover {
		filter: brightness(1.1);
		transition: var(--ease);
	}
	#all_wrap .lp_contact_box .human01 {
		display: block;
		width: auto;
		height: 100px;
		aspect-ratio: 700 / 1236;
		position: absolute;
		bottom: -33px;
		left: -20px;
		z-index: 0;
	}
	#all_wrap .lp_contact_box .human02 {
		display: block;
		width: auto;
		height: 100px;
		aspect-ratio: 700 / 1579;
		position: absolute;
		bottom: -33px;
		right: -20px;
		z-index: 0;
	}
	#all_wrap .lp_contact_box .human01 img,
	#all_wrap .lp_contact_box .human02 img {
		width: auto;
		height: 100%;
	}
}



/************************************************************/
/*　LP01
/************************************************************/

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

/*======================*/
/* MV */
/*======================*/
#lp01_mv {
	width: 100%;
	height: calc(100vh - 80px);
	padding: 50px 0;
	margin: 0 auto;
	background: #fafafa;
	position: relative;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.lp01_mv_info {
	width: calc(100% - 100px);
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#all_wrap .lp01_mv_info > h2 {
	width: 70%;
	padding: 0;
	margin: 0 0 20px;
	position: relative;
	border: none;
	background: none;
}
#all_wrap .lp01_mv_info > h2 img {
	width: 100%;
	height: auto;
}
#all_wrap .lp01_mv_info > h3 {
	width: 50%;
	min-width: 600px;
	padding: 0;
	margin: 0 0 100px;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	grid-row-gap: 10px;
	border: none;
	background: none;
	position: relative;
}
#all_wrap .lp01_mv_info > h3 span {
	display: inline-block;
	padding: 8px 10px;
	margin: 0;
	background: var(--text);
	font-family: var(--font-jp2);
	font-size: 30px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
}
.lp01_mv_btn {
	width: fit-content;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .lp01_mv_btn > h4 {
	display: block;
	font-size: 20px;
	line-height: 1;
	font-weight: bold;
	font-family: var(--font-jp2);
	position: relative;
	text-align: center;
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
#all_wrap .lp01_mv_btn > h4::before {
	content: '';
	display: block;
	width: 2px;
	height: 100%;
	background: #000;
	transform: translate(0,-50%) rotate(-45deg);
	position: absolute;
	top: 50%;
	left: 10px;
}
#all_wrap .lp01_mv_btn > h4::after {
	content: '';
	display: block;
	width: 2px;
	height: 100%;
	background: #000;
	transform: translate(0,-50%) rotate(45deg);
	position: absolute;
	top: 50%;
	right: 10px;
}
.lp01_mv_btn > a {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	background: #ff6400;
	padding: 15px 50px;
	margin: 0;
	font-family: var(--font-jp2);
	font-size: 20px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	transition: var(--ease);
}
.lp01_mv_btn > a:hover {
	filter: brightness(1.1);
	transition: var(--ease);
}
.lp01_mv_info::before {
	content: '';
	display: block;
	width: 50%;
	height: auto;
	aspect-ratio: 927 / 572;
	background-image: url('https://step.co.jp/wp-content/uploads/lp01_mv_img.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: absolute;
	bottom: -100px;
	right: 0;
	z-index: -1;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp01_mv {
		width: 100%;
		height: auto;
		padding: 60px 30px;
	}
	.lp01_mv_info {
		width: calc(100%);
		max-width: 100%;
	}
	#all_wrap .lp01_mv_info > h2 {
		width: 100%;
		padding: 0;
		margin: 0 0 10px;
	}
	#all_wrap .lp01_mv_info > h3 {
		width: 100%;
		min-width: auto;
		padding: 0;
		margin: 0 0 30px;
		grid-row-gap: 5px;
	}
	#all_wrap .lp01_mv_info > h3 span {
		display: inline-block;
		padding: 5px 8px;
		font-size: 1.6rem;
	}
	.lp01_mv_btn {
		width: 100%;
		grid-row-gap: 10px;
	}
	#all_wrap .lp01_mv_btn > h4 {
		display: block;
		font-size: 18px;
	}
	.lp01_mv_btn > a {
		column-gap: 10px;
		padding: 15px 50px;
		font-size: 18px;
	}
	.lp01_mv_info::before {
		width: 36%;
		background-image: url('https://step.co.jp/wp-content/uploads/lp01_mv_img_sp.webp');
	}
}

/*======================*/
/* 動画 */
/*======================*/
#lp01_movie {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	position: relative;
}
.lp01_movie_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	column-gap: 50px;
}
.lp01_movie_wrap > figure {
	width: 600px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.lp01_movie_wrap > figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
.lp01_movie_wrap > figure iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.lp01_movie_wrap > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.lp01_movie_info {
	width: calc(100% - 50px - 600px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .lp01_movie_info > em {
	display: block;
	width: auto;
	height: 70px;
	margin: 0 0 20px;
	padding: 0;
}
#all_wrap .lp01_movie_info > em img {
	width: auto;
	height: 100%;
}
#all_wrap .lp01_movie_info > h2 {
	padding: 0;
	margin: 0 auto 20px;
	border: none;
	background: none;
	position: relative;
	font-family: var(--font-jp2);
	font-size: 30px;
	line-height: 1.4em;
	font-weight: bold;
}
#all_wrap .lp01_movie_info > p {
	padding: 0;
	margin: 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp01_movie {
		width: 100%;
		padding: 60px 0 30px;
	}
	.lp01_movie_wrap {
		width: calc(100% - 60px);
		max-width: 100%;
		flex-wrap: wrap;
		grid-row-gap: 20px;
	}
	.lp01_movie_wrap > figure {
		width: 100%;
	}
	.lp01_movie_info {
		width: calc(100%);
	}
	#all_wrap .lp01_movie_info > em {
		display: block;
		width: 80%;
		height: auto;
		margin: 0 auto 10px;
		padding: 0;
		text-align: center;
	}
	#all_wrap .lp01_movie_info > em img {
		width: 100%;
		height: auto;
	}
	#all_wrap .lp01_movie_info > h2 {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 20px;
		text-align: center;
	}
}

/*======================*/
/* 選ばれる理由 */
/*======================*/
#lp01_reason {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto 50px;
	position: relative;
}
/*ヘッダー*/
.lp01_head {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}
#lp01_reason .lp01_head {
	margin-bottom: 70px;
}
#all_wrap .lp01_head > h2 {
	width: 100%;
	padding: 0 0 15px;
	margin: 0 auto;
	position: relative;
	border-bottom: 1px solid #d1d1d1;
	font-family: var(--font-jp2);
	font-size: 40px;
	line-height: 1.2em;
	font-weight: bold;
	color: var(--text);
}
#all_wrap .lp01_head > em {
	display: inline-block;
	width: fit-content;
	padding: 7px 20px;
	margin: 0 auto 15px;
	position: relative;
	background: #073d8e;
	font-family: var(--font-jp2);
	font-size: 18px;
	line-height: 1;
	text-align: center;
	font-weight: bold;
	color: #fff;
	font-style: normal;
	border-radius: 30px;
}
#all_wrap .lp01_head > h2 > span {
	display: block;
	width: 50px;
	height: 1px;
	background: #1f2a34;
	position: absolute;
	bottom: -1px;
	left: 0;
}
#all_wrap .lp01_head > h2 > span::before,
#all_wrap .lp01_head > h2 > span::after {
	content: '';
	display: block;
	width: 3px;
	height: 3px;
	background: #1f2a34;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
}
#all_wrap .lp01_head > h2 > span::after {
	left: unset;
	right: 0;
}
/*-中央よせ*/
#all_wrap .lp01_head.center {
	text-align: center;
}
#all_wrap .lp01_head.center > h2 {
	width: 100%;
	padding: 0 0 15px;
	margin: 0 auto;
	position: relative;
	border-bottom: none;
	font-family: var(--font-jp2);
	font-size: 40px;
	line-height: 1.2em;
	font-weight: bold;
	color: var(--text);
	text-align: center;
}
#all_wrap .lp01_head.center > h2 > span {
	display: block;
	width: 50px;
	height: 1px;
	background: #1f2a34;
	position: absolute;
	bottom: -1px;
	left: 50%;
	transform: translate(-50%,0);
}
#all_wrap .lp01_head.center > h2 > span::before,
#all_wrap .lp01_head.center > h2 > span::after {
	content: '';
	display: block;
	width: 3px;
	height: 3px;
	background: #1f2a34;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
}
#all_wrap .lp01_head.center > h2 > span::after {
	left: unset;
	right: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp01_reason {
		width: 100%;
		padding: 30px 0;
		margin: 0 auto;
		background: #fafafa;
	}
	/*ヘッダー*/
	.lp01_head {
		width: calc(100% - 60px);
		max-width: 100%;
		margin: 0 auto 20px;
	}
	#lp01_reason .lp01_head {
		margin-bottom: 40px;
	}
	#all_wrap .lp01_head > h2 {
		padding: 0 0 10px;
		font-size: 20px;
	}
	#all_wrap .lp01_head > em {
		padding: 5px 10px;
		margin: 0 auto 15px;
		font-size: 12px;
		border-radius: 25px;
	}
	/*-中央よせ*/
	#all_wrap .lp01_head.center > h2 {
		width: 100%;
		padding: 0 0 10px;
		font-size: 20px;
	}
}

/*リスト*/
#all_wrap .lp01_reasonList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 40px;
	grid-row-gap: 40px
}
#all_wrap .lp01_reasonList > li {
	width: calc(100% / 3 - 26.7px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#all_wrap .lp01_reasonList > li > em {
	display: inline-block;
	padding: 7px 10px;
	margin: 0;
	background: #1f2a34;
	font-family: var(--font-jp2);
	font-size: 20px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	font-style: normal;
	position: absolute;
	top: -17px;
	left: -10px;
	z-index: 2;
}
#all_wrap .lp01_reasonList > li figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .lp01_reasonList > li figure::before {
	content: '';
	display: block;
	padding-top: 75%;
}
#all_wrap .lp01_reasonList > li img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.lp01_reasonList_info {
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .lp01_reasonList_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-family: var(--font-jp2);
	font-size: 20px;
	line-height: 1.4em;
	font-weight: bold;
	color: var(--text);
}
#all_wrap .lp01_reasonList_info > p {
	padding: 0;
	margin: 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	line-height: 1.7em;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*リスト*/
	#all_wrap .lp01_reasonList {
		width: calc(100% - 60px);
		max-width: 100%;
		column-gap: 0;
		grid-row-gap: 35px;
	}
	#all_wrap .lp01_reasonList > li {
		width: calc(100%);
		grid-row-gap: 15px;
	}
	#all_wrap .lp01_reasonList > li > em {
		padding: 5px 10px;
		font-size: 14px;
		top: -12px;
		left: -10px;
	}
	#all_wrap .lp01_reasonList > li figure::before {
		content: '';
		display: block;
		padding-top: 56.25%;
	}
	.lp01_reasonList_info {
		grid-row-gap: 10px;
	}
	#all_wrap .lp01_reasonList_info > h3 {
		width: 100%;
		font-size: 18px;
	}
}

/*======================*/
/* お悩み */
/*======================*/
#lp01_trouble {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	background: #e9e6df;
	position: relative;
}
#lp01_trouble > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	text-align: center;
}
#lp01_trouble > header > em {
	display: inline-block;
	width: fit-content;
	padding: 7px 20px;
	margin: 0 auto 15px;
	position: relative;
	background: #073d8e;
	font-family: var(--font-jp2);
	font-size: 18px;
	line-height: 1;
	text-align: center;
	font-weight: bold;
	color: #fff;
	font-style: normal;
	border-radius: 30px;
}
#lp01_trouble > header > h2 {
	width: 100%;
	padding: 0 0 20px;
	margin: 0 auto;
	position: relative;
	font-family: var(--font-jp2);
	font-size: 40px;
	line-height: 1;
	font-weight: bold;
	color: var(--text);
	text-align: center;
}
#lp01_trouble > header > h2 strong {
	color: #073d8e;
	font-family: var(--font-jp2);
	font-size: 1.2em;
	font-weight: bold;
}
#lp01_trouble > header > h2 > span {
	display: block;
	width: 50px;
	height: 1px;
	background: #1f2a34;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
}
#lp01_trouble > header > h2 > span::before,
#lp01_trouble > header > h2 > span::after {
	content: '';
	display: block;
	width: 3px;
	height: 3px;
	background: #1f2a34;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
}
#lp01_trouble > header > h2 > span::after {
	left: unset;
	right: 0;
}
#lp01_trouble > figure {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 auto;
}
#lp01_trouble > figure img {
	width: 100%;
	height: auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp01_trouble {
		width: 100%;
		padding: 30px 0;
	}
	#lp01_trouble > header {
		width: calc(100% - 60px);
		padding: 0;
		margin: 0 auto 15px;
		position: relative;
		text-align: center;
	}
	#lp01_trouble > header > em {
		padding: 5px 10px;
		margin: 0 auto 15px;
		font-size: 12px;
		border-radius: 30px;
	}
	#lp01_trouble > header > h2 {
		width: 100%;
		padding: 0 0 10px;
		font-size: 20px;
		line-height: 1;
	}
	#lp01_trouble > figure {
		width: calc(100% - 60px);
		max-width: 100%;
	}
}

/*======================*/
/* 解決 */
/*======================*/
#lp01_solution {
	width: 100%;
	padding: 50px 0 0;
	margin: 0 auto;
	background: #fafafa;
	position: relative;
}
#lp01_solution::after {
	content: '';
	display: block;
	width: 80px;
	height: 25px;
	background: #e9e6df;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translate(-50%,0);
}
#lp01_solution > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	text-align: center;
}
#lp01_solution > header > em {
	display: inline-block;
	width: fit-content;
	padding: 0;
	margin: 0 auto 15px;
	position: relative;
	background: none;
	font-family: var(--font-jp2);
	font-size: 30px;
	line-height: 1;
	text-align: center;
	font-weight: bold;
	color: var(--text);
	font-style: normal;
}
#lp01_solution > header > em b {
	font-family: var(--font-jp2);
	font-size: 1.2em;
	font-weight: bold;
	color: #073d8e;
}
#all_wrap #lp01_solution > header > h2 {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
}
#lp01_solution > header > h2 img {
	width: 100%;
	height: auto;
}
#lp01_solution > figure {
	width: calc(100% - 100px);
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	transform: translateY(10px);
	background-image: url('https://step.co.jp/wp-content/uploads/lp01_solution_bg.svg');
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 95%;
	text-align: center;
}
#lp01_solution > figure img {
	width: 100%;
	max-width: 500px;
	height: auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp01_solution {
		width: 100%;
		padding: 30px 0;
	}
	#lp01_solution::after {
		width: 60px;
		height: 15px;
	}
	#lp01_solution > header {
		width: calc(100% - 60px);
		padding: 0;
		margin: 0 auto 10px;
	}
	#lp01_solution > header > em {
		margin: 0 auto;
		font-size: 20px;
	}
	#all_wrap #lp01_solution > header > h2 {
		width: 100%;
		max-width: 100%;
	}
	#lp01_solution > figure {
		width: calc(100% - 120px);
		max-width: 100%;
		transform: translateY(10px);
	}
	#lp01_solution > figure img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
}

/*ボックス*/
.lp01_solution_box {
	width: calc(100% - 100px);
	max-width: 1200px;
	padding: 80px;
	margin: 0 auto 70px;
	background: #fff;
	position: relative;
	box-shadow: 0px 0px 10px rgba(20, 20, 20, 0.2);
}
#all_wrap .lp01_solution_box > header.lp01_head > h2 {
	font-size: 35px;
}
.lp01_solution_box > em {
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	width: fit-content;
	height: 50px;
	padding: 15px;
	margin: 0;
	background: #073d8e;
	position: absolute;
	top: -25px;
	left: 0;
	font-size: 20px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	font-style: normal;
	font-family: var(--font-jp2);
}
#all_wrap .lp01_solution_box > h3 {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	font-size: 20px;
	font-family: var(--font-jp2);
	font-weight: bold;
	color: var(--text);
}
#all_wrap .lp01_solution_box > h3 strong {
	font-size: 20px;
	font-family: var(--font-jp2);
	font-weight: bold;
	color: var(--text);
}
.marker {
	background: linear-gradient(transparent 60%, #ffbc3b 0%);
	display: inline;
	padding: 0 1px 0px;
}
#all_wrap .lp01_solution_box > h4 {
	font-size: 16px;
	font-family: var(--font-jp2);
	font-weight: bold;
	color: var(--text);
	padding: 0;
	margin: 0 auto 5px;
}
#all_wrap .lp01_solution_box > p {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .lp01_solution_box > figure {
	width: 100%;
	padding: 0 0 30px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#all_wrap .lp01_solution_box > figure span {
	width: 50%;
	padding: 0;
	margin: 0;
	display: block;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 20px;
}
#all_wrap .lp01_solution_box > figure span:nth-of-type(1) {
	width: 55%;
	padding: 0;
	margin: 0;
	display: block;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .lp01_solution_box > figure span:nth-of-type(2) {
	width: 55%;
	padding: 0;
	margin: 0;
	display: block;
	position: absolute;
	overflow: hidden;
	text-align: center;
	right: 0;
	bottom: -30px;
	z-index: -1;
}
#all_wrap .lp01_solution_box:nth-of-type(even) > figure span:nth-of-type(1) {
	width: 55%;
	padding: 0;
	margin: 0 0 0 auto;
	display: block;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .lp01_solution_box:nth-of-type(even) > figure span:nth-of-type(2) {
	width: 55%;
	padding: 0;
	margin: 0;
	display: block;
	position: absolute;
	overflow: hidden;
	text-align: center;
	right: unset;
	left: 0;
	bottom: -30px;
	z-index: -1;
}
#all_wrap .lp01_solution_box > figure span::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
#all_wrap .lp01_solution_box > figure span img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
/*挨拶*/
#all_wrap .lp01_solution_box > figure.greeting {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#all_wrap .lp01_solution_box > figure.greeting span {
	width: 50%;
	padding: 0;
	margin: 0;
	display: block;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 20px;
}
#all_wrap .lp01_solution_box > figure.greeting span:nth-of-type(1) {
	width: 300px;
	aspect-ratio: 1/1;
	padding: 0;
	margin: 0;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	overflow: hidden;
	text-align: center;
	border-radius: 50%;
}
#all_wrap .lp01_solution_box > figure.greeting span:nth-of-type(1)::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .lp01_solution_box > figure.greeting span:nth-of-type(2) {
	width: 80%;
	padding: 0;
	margin: 0 0 0 auto;
	display: block;
	position: relative;
	overflow: hidden;
	text-align: center;
	right: unset;
	bottom: unset;
	z-index: -1;
}
#all_wrap .lp01_solution_box > figure.greeting span:nth-of-type(2)::before {
	content: '';
	display: block;
	padding-top: 50%;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*ボックス*/
	.lp01_solution_box {
		width: calc(100% - 60px);
		max-width: 100%;
		padding: 30px 20px 20px;
		margin: 0 auto 40px;
	}
	.lp01_solution_box:last-of-type {
		margin-bottom: 0;
	}
	#all_wrap .lp01_solution_box > header.lp01_head {
		width: 100%;
	}
	#all_wrap .lp01_solution_box > header.lp01_head > h2 {
		font-size: 18px;
	}
	.lp01_solution_box > em {
		height: 30px;
		padding: 8px;
		top: -15px;
		left: 0;
		font-size: 14px;
	}
	#all_wrap .lp01_solution_box > h3 {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 17px;
		line-height: 1.4em;
	}
	#all_wrap .lp01_solution_box > h3 strong {
		font-size: 17px;
	}
	#all_wrap .lp01_solution_box > h4 {
		font-size: 15px;
		margin: 0 auto 5px;
	}
	#all_wrap .lp01_solution_box > p {
		padding: 0;
		margin: 0 auto 10px;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
	#all_wrap .lp01_solution_box > figure {
		width: 100%;
		padding: 0 0 20px;
		margin: 0 auto;
		position: relative;
		z-index: 0;
	}
	#all_wrap .lp01_solution_box > figure span {
		border-radius: 10px;
	}
	#all_wrap .lp01_solution_box > figure span:nth-of-type(1) {
		width: 55%;
	}
	#all_wrap .lp01_solution_box > figure span:nth-of-type(2) {
		width: 55%;
		bottom: 0;
		z-index: -1;
	}
	#all_wrap .lp01_solution_box:nth-of-type(even) > figure span:nth-of-type(1) {
		width: 55%;
	}
	#all_wrap .lp01_solution_box:nth-of-type(even) > figure span:nth-of-type(2) {
		bottom: 0;
		z-index: -1;
	}
	/*挨拶*/
	#all_wrap .lp01_solution_box > figure.greeting span {
		width: 50%;
		border-radius: 10px;
	}
	#all_wrap .lp01_solution_box > figure.greeting span:nth-of-type(1) {
		width: 30%;
	}
	#all_wrap .lp01_solution_box > figure.greeting span:nth-of-type(2) {
		width: 80%;
	}
}

/*======================*/
/* 不動産の売却 */
/*======================*/
#lp01_sales {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto 50px;
	background: none;
	position: relative;
}
#lp01_sales > p {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	text-align: center;
}
/*リスト*/
#all_wrap .lp01_salesList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap .lp01_salesList > li {
	width: calc(100% / 2 - 15px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .lp01_salesList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
}
#all_wrap .lp01_salesList > li figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .lp01_salesList > li figure::before {
	content: '';
	display: block;
	padding-top: 50%;
}
#all_wrap .lp01_salesList > li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
	transition: var(--ease);
}
#all_wrap .lp01_salesList > li:hover figure img {
	transform: translate(-50%,-50%) scale(1.05);
	transition: var(--ease);
}
#all_wrap .lp01_salesList > li > h3 {
	width: fit-content;
	padding: 10px 30px;
	margin: 0;
	background: var(--text);
	position: relative;
	font-size: 20px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	font-family: var(--font-jp2);
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 2;
	transition: var(--ease);
}
#all_wrap .lp01_salesList > li:hover > h3 {
	background: #073d8e;
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp01_sales {
		width: 100%;
		padding: 30px 0;
		margin: 0 auto 30px;
	}
	#lp01_sales > p {
		width: calc(100% - 60px);
		max-width: 100%;
		margin: 0 auto 20px;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
	/*リスト*/
	#all_wrap .lp01_salesList {
		width: calc(100% - 60px);
		max-width: 100%;
		column-gap: 0;
		grid-row-gap: 50px;
	}
	#all_wrap .lp01_salesList > li {
		width: calc(100%);
	}
	#all_wrap .lp01_salesList > li > h3 {
		width: auto;
		padding: 10px 20px;
		font-size: 18px;
		bottom: -20px;
		white-space: nowrap;
	}
}

/*======================*/
/* レビュー */
/*======================*/
#lp01_review {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	background: #fafafa;
	position: relative;
}
.lp01_review_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp01_review {
		width: 100%;
		padding: 30px 0;
	}
	.lp01_review_wrap {
		width: 100%;
		max-width: 100%;
		padding: 0 30px;
		margin: 0 auto;
		position: relative;
	}
}

/*======================*/
/* よくある質問 */
/*======================*/
#lp01_faq {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	background: #fff;
	position: relative;
}
/*ボックス*/
#all_wrap .lp01_faq_box {
	width: calc(100% - 100px);
	max-width: 1200px;
	padding: 50px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-content: flex-start;
	align-items: flex-start;
	column-gap: 50px;
	border-bottom: 2px dotted #c5c5c5;
}
#all_wrap .lp01_faq_box:first-of-type {
	border-top: 2px dotted #c5c5c5;
}
#all_wrap .lp01_faq_box dt {
	width: 80px;
	min-width: 80px;
	padding: 0;
	margin: 0;
	font-family: var(--font-jp2);
	font-size: 40px;
	line-height: 1;
	font-weight: bold;
	color: #073d8e;
}
#all_wrap .lp01_faq_box dd {
	width: calc(100% - 50px - 80px);
	padding: 0;
	margin: 0;
	position: relative
}
#all_wrap .lp01_faq_box dd h3 {
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	font-family: var(--font-jp2);
	font-size: 25px;
	line-height: 1.4em;
	font-weight: bold;
	color: var(--text);
	text-align: left;
}
#all_wrap .lp01_faq_box dd > p {
	padding: 0;
	margin: 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp01_faq {
		width: 100%;
		padding: 30px 0;
	}
	/*ボックス*/
	#all_wrap .lp01_faq_box {
		width: calc(100% - 60px);
		max-width: 100%;
		padding: 20px 20px 20px 0;
		column-gap: 15px;
	}
	#all_wrap .lp01_faq_box dt {
		width: 40px;
		min-width: 40px;
		font-size: 20px;
	}
	#all_wrap .lp01_faq_box dd {
		width: calc(100% - 15px - 40px);
	}
	#all_wrap .lp01_faq_box dd h3 {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 16px;
	}
}

/*======================*/
/* CTA */
/*======================*/
.lp01_cta {
	width: 100%;
	max-width: 1200px;
	padding: 50px;
	margin: 0 auto;
	border-radius: 30px 30px 0 0;
	background: #073d8e;
	position: relative;
}
.lp01_cta > header {
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
}
.lp01_cta > header > h2 {
	width: 100%;
	padding: 0 0 15px;
	margin: 0 auto;
	position: relative;
	border-bottom: none;
	font-family: var(--font-jp2);
	font-size: 40px;
	line-height: 1.2em;
	font-weight: bold;
	color: #fff;
	text-align: center;
}
/*リスト*/
#all_wrap .lp01_ctaList {
	width: 800px;
	max-width: 800px;
	padding: 30px;
	margin: 0 auto;
	background: #fff;
	border-radius: 20px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	column-gap: 60px;
}
#all_wrap .lp01_ctaList::after {
	content: '';
	display: block;
	width: 1px;
	height: calc(100% - 60px);
	border-left: 2px dotted #c5c5c5;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
#all_wrap .lp01_ctaList > li {
	width: 50%;
	padding: 0;
	margin: 0;
	position: relative;
	flex-grow: 1;
	text-align: center;
}
#all_wrap .lp01_ctaList > li i {
	display: inline-block;
	width: auto;
	height: 30px;
	padding: 0;
	margin: 0 auto 5px;
}
#all_wrap .lp01_ctaList > li i img {
	width: auto;
	height: 100%;
}
#all_wrap .lp01_ctaList > li > h3 {
	padding: 0;
	margin: 0 auto 10px;
	border: none;
	background: none;
	position: relative;
	font-family: var(--font-jp2);
	font-size: 20px;
	line-height: 1.2em;
	font-weight: bold;
	color: var(--text);
	text-align: center;
}
#all_wrap .lp01_ctaList > li > p {
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	font-family: var(--font-jp2);
	font-size: 14px;
	line-height: 1.2em;
	font-weight: 400;
	color: var(--text);
	text-align: center;
}
#all_wrap .lp01_ctaList > li tel {
	display: block;
	margin-top: 10px;
}
#all_wrap .lp01_ctaList > li tel a {
	display: flex;
	display: -wekit-flex;
	justify-content: center;
	align-items: baseline;
	flex-wrap: nowrap;
	padding: 0;
	margin: 0 auto;
	font-size: 40px;
	line-height: 1;
	font-weight: lighter;
	color: var(--text);
	transition: var(--ease);
	text-decoration: none;
}
#all_wrap .lp01_ctaList > li tel a:hover {
	color: #b53131;
	transition: var(--ease);
	text-decoration: none;
}
#all_wrap .lp01_ctaList > li tel a small {
	font-size: 25px;
	line-height: 1;
	font-weight: lighter;
	color: var(--text);
}
.ctaBtn {
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	padding: 12px 40px;
	margin: 10px auto 0;
	background: #073d8e;
	font-size: 15px;
	line-height: 1;
	color: #fff;
	text-align: center;
	border-radius: 40px;
	transition: var(--ease);
}
.ctaBtn:hover {
	filter: brightness(1.1);
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.lp01_cta {
		width: calc(100%);
		max-width: 100%;
		padding: 30px;
		border-radius: 0;
	}
	.lp01_cta > header {
		padding: 0;
		margin: 0 auto 15px;
	}
	.lp01_cta > header > h2 {
		width: 100%;
		padding: 0;
		font-size: 20px;
	}
	/*リスト*/
	#all_wrap .lp01_ctaList {
		width: 100%;
		max-width: 100%;
		padding: 15px;
		margin: 0 auto;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 40px;
	}
	#all_wrap .lp01_ctaList::after {
		content: '';
		display: block;
		width: 100%;
		height: 1px;
		border-bottom: 2px dotted #c5c5c5;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
	#all_wrap .lp01_ctaList > li {
		width: 100%;
	}
	#all_wrap .lp01_ctaList > li i {
		display: inline-block;
		width: auto;
		height: 20px;
		padding: 0;
		margin: 0 auto 5px;
		display: none;
	}
	#all_wrap .lp01_ctaList > li i img {
		width: auto;
		height: 100%;
	}
	#all_wrap .lp01_ctaList > li > h3 {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 18px;
	}
	#all_wrap .lp01_ctaList > li > p {
		font-size: 12px;
	}
	#all_wrap .lp01_ctaList > li tel {
		display: block;
		margin-top: 10px;
	}
	#all_wrap .lp01_ctaList > li tel a {
		font-size: 30px;
	}
	#all_wrap .lp01_ctaList > li tel a small {
		font-size: 20px;
	}
	.ctaBtn {
		padding: 10px 30px;
		margin: 10px auto 0;
		background: #073d8e;
		font-size: 15px;
	}
}

/*======================*/
/* フォーム */
/*======================*/
.lp01_contact {
	width: 100%;
	max-width: 1200px;
	padding: 100px 50px;
	margin: 0 auto;
	border-radius: 0;
	background: #f4f6f8;
	position: relative;
	z-index: 0;
}
.lp01_contact::before {
	display: none;
}
.lp01_contact::after {
	display: none;
}
#all_wrap .lp01_contact h2 {
	width: 100%;
	padding: 0 0 15px;
	margin: 0 auto;
	position: relative;
	border-bottom: none;
	font-family: var(--font-jp2);
	font-size: 30px;
	line-height: 1.2em;
	font-weight: bold;
	color: var(--text);
	text-align: center;
}
#all_wrap .lp01_contact table.table-contactform7 th,
#all_wrap .lp01_contact table.table-contactform7 td,
#all_wrap .lp01_contact table.table-contactform7 input,
#all_wrap .lp01_contact table.table-contactform7 text,
#all_wrap .lp01_contact table.table-contactform7 textarea {
	font-family: var(--font-jp2);
}
#all_wrap .lp01_contact table.table-contactform7 th {
	font-weight: bold;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.lp01_contact {
		width: 100%;
		max-width: 100%;
		padding: 30px 0;
	}
	.lp01_contact::before {
		width: 100%;
		height: 30px;
		background: #073d8e;
	}
	.lp01_contact::after {
		width: 100%;
		height: 30px;
		border-radius: 20px 20px 0 0;
	}
	#all_wrap .lp01_contact h2 {
		width: 100%;
		padding: 0 0 20px;
		font-size: 20px;
		line-height: 1.2em;
	}
}