@charset "utf-8";

/* css記載順序
A. reset.css
B. style.css
C. pc.css
D. tablet.css
E. smart.css

B-01. 枠組共通
B-02. header
B-03. nav
B-04. main共通
B-05. h1,h2見出し
B-06. breadcrumb
B-07. pager
B-08. aside
B-09. footer
B-10. toppage
B-11. form
B-12. レギュレーション
B-13. 検索結果
B-14. 内部ページ
end css記載順序*/


/*************************** B-01. 枠組共通 ***********************/
html{font-size:62.5%;}
@media screen and (max-width:1279px){
html{font-size:56.25%;}
}
*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}
body{
	font-family: 'Noto Sans JP', sans-serif,"メイリオ", "ＭＳ Ｐゴシック", "MS Gothic", "Osaka－等幅", Osaka-mono, monospace;
	font-size:1.6rem;
	color: #302D2C;
}

#wrapper{
	margin: 0 auto;
	padding:0;
	overflow: clip;
    padding-top:12rem;
}
.bg-color{
    background: #FDFCF1;
}
.fixbox{
	max-width:1280px;
	width:100%;
	margin-left:auto;
	margin-right:auto;
}
.fixbox02{
	max-width:1000px;
	width:100%;
	margin-left:auto;
	margin-right:auto;
}

main{
	display: flex;
}


main article{
	width:calc(100% - 220px);
	flex-grow: 1;
    position: relative;
}
main article#top{
    margin-top:0;
}
main article section{
	/*h2*/
	margin-top: 80px;
}
main article section section{
	/*h3*/
	margin-top: 60px;
}
main article section section section{
	/*h4*/
	margin-top: 40px;
}
main article section section section section{
	/*h5 h6*/
	margin-top: 30px;
}
p{
	font-size: 1.5rem;
}


/*************************** B-02. header ************************/
header {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 2;
    width: 100%;
    background: #fff;
}
.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-container div.logo{
	display: flex;
}
.header-container span{
	margin-left: 1.0rem;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	line-height: 1.4;
}
.header-container img {
	width: 15rem;
	height: auto;
	margin: 0 0 0 10px;
}
.header-container input[type="text"]{
	padding: 12px;
	width: 280px;
	border: none;
	background-color: #f0f2f4;
	position: relative;
	display: inline-block;
	outline:none;
	transition:background-color .3s, border .3s;
	font-size: 16px;
}
.header-container input::placeholder{
	color:#aaa;
}

.header-container input[type="text"]:focus{
	background:rgb(220,220,220);
}
.header-container input[type="submit"] {
	position: relative;
	padding: 13px 4px 13px 6px;
	width: 30px;
	background: #f0f2f4 url(/images/icons/icon-search.svg) no-repeat right 5px top 50%;
	background-size: auto 50%;
	border:none;
	text-align: left;
	margin-left: -4px;
	cursor: pointer;
	transition:background-color .3s;
}
.header-container input[type="text"]:focus + input[type="submit"]{
	background-color:rgb(220,220,220);
}
.header-container input[type="submit"]:hover{
	background: rgb(220,220,220) url(/images/icons/icon-search.svg) no-repeat right 5px top 50%;
	background-size: auto 50%;
}
.header-right-content{
	display: flex;
	flex-wrap: wrap;
	width: 80%;
	align-items: center;
	justify-content: flex-end;
    padding-bottom: 1rem;
}
.sp_flex{
	display: flex;
}
/* ハンバーガーボタン */
.hamburger,
.header-sp,
.header-sp-search {
	display: none;
}
.sp-freedial{
    display:none;
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
/*************************** B-03. nav ***************************/
/*megamenu 共通部分*/
.megamenu a{
	display:block;
	text-decoration: none;
	color:#333;
}

/*megamenu 2階層目以降のhere共通*/
.megamenu div ul li.here > a{
	color: #00561F;
}
.megamenu div ul li.here > a::before{
    content: "\f0da";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-right: 4px;
    color: #00561F;
}

/*#wrapper,footerをjsと共に黒くする*/
footer::after,
#wrapper::after {
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0,0,0,0.8);
    content: '';
    left: 0;
    top:0;
    z-index: -1;
    opacity: 0;
    transition: z-index .3s, opacity .3s;
}
footer.overlay::after,
#wrapper.overlay::after {
    z-index: 1;
    opacity: 1;
}

/* 第一階層 */
.megamenu > ul{
	display:flex;
	padding: 0 10px 0 0;
	gap: 2.6rem;
}
.megamenu > ul > li{
	text-align:center;
	width: auto;
	flex-grow: 1;
}
.megamenu > ul > li.here > a{
	font-weight: bold;
	color: #00561F;
}
.megamenu > ul > li > a{
	font-size: 1.6rem;
	padding:18px 0;
	border-top: 1px solid #ffffff00;
	font-weight: bold;
	letter-spacing: 1px;
}
.megamenu > ul > li:hover > a,
.megamenu > ul > .nav_open > a {
    opacity:0.5;
}
/*子階層がある場合*/
.megamenu > ul > li.has-child > a{
	position: relative;
}
.megamenu > ul > li.has-child > a::before {
	position: absolute;
    bottom:4px;
    right: 0;
    left:0;
    margin: auto;
    content: "";
    width: 6px;
    height: 6px;
    border-top: 3px solid #333333;
    border-right: 3px solid #333333;
    transform: rotate(135deg);
    display: block;
    transition: transform .3s;
}
.megamenu > ul > li.nav_open > a::before {
    transform: rotate(-45deg);
}

/* 第2階層 */
.megamenu div {
	max-width: 1280px !important;
    width: 100%;
    display: none;
    background-color: #fff;
    left: 50%;
    transform: translateX(-50%);
    top: 118px;
    z-index: 10000;
    position: absolute;
    padding: 50px 16px;
}
.megamenu div p {
	width: 400px;
	margin:0 auto 16px;
	text-align: left;
	font-weight: bold;
}
.megamenu div p a {
	border: 1px solid #333;
	padding: 15px;
	position: relative;
}
.megamenu div p a::after{
	position: absolute;
    top: 0;
    bottom:0;
    vertical-align: middle;
    right: 14px;
    margin: auto;
    content: "";
    width: 6px;
    height: 6px;
    border-top: 3px solid #666;
    border-right: 3px solid #666;
    transform: rotate(45deg);
    display: block;
    transition: right .3s, background-color .3s;
}
.megamenu div a:hover {
	opacity: .5;	
	transition: .5s;
}
.megamenu div p a:hover::after{
    right: 24px;
}
.megamenu div > ul {
    display: flex;
    flex-wrap: wrap;
}
.megamenu div > ul > li {
	width: 23%;
	margin:1%;
	background-color: #fff;
	text-align: left;
}
.megamenu div > ul > li > a {
	font-size: 2.0rem;
	color: #222;
	font-weight: bold;
	padding: 15px;
}


/* 第3階層 */
.megamenu div > ul > li > ul {
	padding:0 0 10px 16px;
}
.megamenu div > ul > li > ul > li > a {
    padding: 10px 0;
    font-weight: 500;
    color: #666;
}

/* 第4階層 */
.megamenu div > ul > li > ul > li > ul {
	margin:2px 0 10px;
}
.megamenu div > ul > li > ul > li > ul > li {
	margin-left: 4px;
	padding-left: 8px;
	border-left: 1px solid #999;
}
.megamenu div > ul > li > ul > li > ul > li > a {
    padding: 3px 0 6px;
}

/* 第5階層 */
.megamenu div > ul > li > ul > li > ul > li > ul{
	margin:4px 0 0;
	padding-bottom: 4px;
}
.megamenu div > ul > li > ul > li > ul > li > ul > li{
	margin-left: 6px;
	padding-left: 7px;
	border-left: 1px solid #aaa;
}
.megamenu div > ul > li > ul > li > ul > li > ul > li > a {
    padding: 3px 0 6px;
}

/* 第6階層 */
.megamenu div > ul > li > ul > li > ul > li > ul > li > ul{
	margin:4px 0 0;
	padding-bottom: 4px;
}
.megamenu div > ul > li > ul > li > ul > li > ul > li > ul > li{
	margin-left: 5px;
	padding-left: 6px;
	border-left: 1px solid #888;
}
.megamenu div > ul > li > ul > li > ul > li > ul > li > ul > li > a {
    padding: 3px 0 6px;
}

/* 第7階層 */
.megamenu div > ul > li > ul > li > ul > li > ul > li > ul > li > ul{
	margin:4px 0 0;
	padding-bottom: 4px;
}
.megamenu div > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li{
	margin-left: 4px;
	padding-left: 5px;
	border-left: 1px solid #888;
}
.megamenu div > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > a {
    padding: 3px 0 6px;
}
/* ヘッダー上部のメnavニュー */
.header-right-top-menu{
	width: 100%;
}
.header-right-top-menu ul{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
}
.header-right-top-menu ul li{
	margin: 0 1.5rem 0 0;
	padding: 0 1.5rem 2px 0;
	border-right: 1px solid #C1C5C6;
}
.header-right-top-menu ul li:last-child{
	margin: 0;
	padding: 0;
}
.header-right-top-menu ul li:last-child a{
	padding: 15px 25px;
    width: 200px;
    box-sizing: border-box;
    display: block;
    text-align: center;
    color: #ffffff;
    background-color: #F2941D;
    position: relative;
    border-bottom-left-radius: 10px;
}
.header-right-top-menu ul li:last-child a::after{
	content: '';
    display: inline-block;
    width: 26px;
    height: 26px;
    margin: 0 0 0 10px;
    background-image: url(/images/header/con_icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}
.header-right-top-menu ul li a{
	color: #302D2C;
	font-size: 1.4rem;
	font-weight: bold;
}


/* snsのnavニュー */
nav.sns{
	width: 7%;
}
nav.sns ul{
	display: flex;
	justify-content: center;
	gap: 1.5rem;
}
nav.sns ul li a i{
	font-size: 2.5rem;
	color: #00561F;
}



/*************************** B-04. main共通 ***********************/
.tablet{
	display:none;
}
.sp{
	display:none;
}

a {
	text-decoration: none;
	color: #237cd5;
	transition: color .3s, background .3s, opacity .3s, border .3s;
}
a:hover {
	opacity: .5;
}
a.more{
	text-align: right;
	color: #ffffff;
	position: relative;
	display: block;
	padding: 0 30px 0 0;
    margin-bottom: 2rem;
}
a.more::after{
	position: absolute;
	content: '';
	right: 0;
	top: 0;
	bottom: 0;
    width: 23px;
    height: 23px;
    margin:auto;
    background-image: url(/images/header/con_icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}
span.more{
    text-align: right;
    color: #ffffff;
    position: relative;
    display: block;
    padding: 0 30px 0 0;
}
span.more::after{
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    bottom: 0;
    width: 23px;
    height: 23px;
    margin:auto;
    background-image: url(/images/header/con_icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}
div.more a{
    text-align: center;
    width: 82px;
    margin: 0 auto;
    color: #00561F;
    position: relative;
    font-weight: bold;
    display: block;
    padding: 0 30px 0 0;
}
div.more a::after{
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    bottom: 0;
    width: 23px;
    height: 23px;
    margin:auto;
    background-image: url(/images/common/more01.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}
a.pdf::after{
	content: "\f1c1";
	font-family: "Font Awesome 6 Free";
	font-weight:900;
	padding-left:6px;
}

main p {
	font-size: 1.6rem;
	line-height: 3rem;
	margin-bottom: 1.8rem;
	letter-spacing: 1px;
	color: #302D2C;
    text-align: left;
}
main p strong{
	color:#000;
}
main p.lead {
	font-size: 2rem;
    margin-bottom: 3rem;
}
mark {
    background: linear-gradient(transparent 80%, #FFE452 80%);
    font-weight: bold;
}

.const{
	padding: 100px 0;
	text-align: center;
	background: #f0f0f0;
	border: 10px solid #ddd;
	font-size: 2.4rem;
}

.concept{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
    flex-direction: column;
    max-width: 954px;
    margin: 5rem auto 0;
}
.concept .concept-left{
	width: 100%;
    max-width:550px;
    background:#FEF7CA;
    border-radius: 40px;
    position: relative;
}
.concept .tit{
    background: #00561F;
    padding: 3.2rem;
    font-weight: bold;
    left: -5rem;
    top: -5rem;
    color:#fff;
    width: 130px;
    height: 130px;
    word-break: break-all;
    border-radius: 50%;
	font-size: 2.4rem;
	padding-bottom: 0.7rem;
	margin-bottom: 4rem;
    text-align: center;
    box-shadow: 2px 2px #FFE452;
    position: absolute;
}
.concept .tit:after{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: -0.4rem;
    right: -1rem;
    border-style: solid;
    border-right: 25px solid transparent;
    border-left: 25px solid transparent;
    border-bottom: 43px solid #00561F;
    border-top: 0;
    transform: rotate(140deg);
}
.concept .tit:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: 0rem;
    right: -1rem;
    border-style: solid;
    border-right: 5px solid transparent;
    border-left: 25px solid transparent;
    border-bottom: 34px solid #FFE452;
    border-top: 0;
    transform: rotate(140deg);
}
.concept p.tit:first-letter{
    font-size: 3rem;
}
.concept .catchcopy {
    line-height: 1.6;
    font-weight: bold;
    padding-left: 11rem;
    padding-top: 4rem;
    padding-bottom: 9rem;
    color: #00561F;
    font-size: 3.8rem;
}
.concept .concept-right {
    width: 100%;
    margin-top: -8rem;
    z-index: 1;
    max-width: 738px;
    margin-right: 0;
    margin-left: auto;
    text-align: left;
}
.concept .concept-bg{
	display: none;
}

ul.before-after {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1%;
    list-style: none;
    position:relative;
}
ul.before-after li{
    width:48%;
    margin:1%;
    line-height: 1.3;
    text-align:center;
    background:#f0f0f0;
    padding:1% 0.5%;
}
ul.before-after li:first-child::after{
    position:absolute;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
    content: "\f30b";
    font-family: "Font Awesome 6 Free";
    font-weight:900;
    font-size: 14rem;
    z-index:9;
}
ul.before-after li:first-child::before{
    content:"BEFORE";
    font-size: 3.6rem;
    font-weight: bold;
    display: block;
    margin-bottom: 1.2rem;
}
ul.before-after li:last-child::before{
    content:"AFTER";
    font-size: 3.6rem;
    font-weight: bold;
    display: block;
    margin-bottom: 1.2rem;
}
ul.before-after li img{
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 5px;
}

.chat {
	margin-bottom: 20px;
    position: relative;
}
.chat:before,
.chat:after{
    clear: both;
    content: "";
    display: block;
}
.chat.left p.img {
    float: left;
    margin-right: 20px;
    width: 60px;
    height: 60px;
}
.chat.right p.img {
    float: right;
    margin-left: 20px;
    width: 60px;
    height: 60px;
}
.chat p.img img{
    width: 100%;
    height: 100%;
    border: 1px solid #aaa;
    border-radius: 50%;
    margin: 0;
}
.chat p.img span{
    margin-top:-4px;
    font-size: 1.1rem;
    text-align: center;
    display: block;
}
.chat div.txt {
    position: relative;
    padding: 10px;
    border: 1px solid;
    border-radius: 10px;
    max-width: -webkit-calc(100% - 120px);
    max-width: calc(100% - 120px);
    display: inline-block;
}
.chat.left div.txt {
    float: left;
    border-color: #aaa;
    background: #f0f2f4;
}
.chat.right div.txt {
    border-color: #aaa;
    background: #c3f69d;
    float: right;
}
main .chat p{
    margin: 0 0 10px;
    line-height: 1.8;
}
.chat p:last-child {
    margin-bottom: 0;
}

.chat div.txt::before,
.chat div.txt::after {
	position: absolute;
	content: '';
	border: 10px solid transparent;
	top: 15px;
}
.chat.left div.txt::before {
    border-right: 10px solid #aaa;
    left: -20px;
}
.chat.left div.txt::after {
    border-right: 10px solid #f0f2f4;
    left: -19px;
}
.chat.right div.txt::before {
    border-left: 10px solid #aaa;
    right: -20px;
}
.chat.right div.txt::after {
    border-left: 10px solid #c3f69d;
    right: -19px;
}

.related-article-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 5rem 0;
}
.related-article-box{
    border: 1px solid #ccc;
    padding: 2rem 2rem 1rem;
    margin: 0 0 4rem;
    position: relative;
    width: 49%;
}
.related-article-box::after{
    position: absolute;
    content: "関連ページ";
    background: #eee;
    color: #111;
    width: 12rem;
    text-align: center;
    padding: 0.8rem 0;
    top: -1.5rem;
    left: 1rem;
}
.related-article-box a{
    display: block;
    text-decoration: none;
    color: #333;
    display: flex;
}
.related-article-box a:hover{
    opacity: 0.5;
}
.related-article-box div.img img{
    transition: opacity 0.3s;
    width: 20rem;
    height: 14rem;
    margin-right: 1rem;
    object-fit: cover;
}
.related-article-box a:hover div.img img{
    opacity: 0.5;
}
.related-article-box div.txt{
    width: calc(100% - 21rem);
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

dl.faq dt {
    font-size: 2.2rem;
    line-height: 1.6;
    padding: 0 3px;
    display: flex;
    margin-bottom: 3px;
}
dl.faq dt span {
    border-radius: 10px;
    padding: 10px;
    position: relative;
    background: #f0f2f4;
    width: 80%;
}

dl.faq dt span::before {
    position: absolute;
    content: '';
    border-right: 15px solid #f0f2f4;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    top: 30px;
    left: -15px;
    transform: translateY(-50%);
}
dl.faq dt::before {
    content: "Q";
    font-size: 3.6rem;
    background: #00561F;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    margin-right: 10px;
}
dl.faq dd {
    margin-bottom: 5rem;
    line-height: 1.4;
    padding: 0 3px;
    display: flex;
    justify-content: flex-end;
}
dl.faq dd span {
    border-radius: 10px;
    padding: 10px;
    position: relative;
    background: #eee;
    width: 80%;
    line-height: 1.6;
}
dl.faq dd span::before {
    position: absolute;
    content: '';
    border-left: 15px solid #eee;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    top: 30px;
    right: -15px;
    transform: translateY(-50%);
}
dl.faq dd::after {
    content: "A";
    font-size: 3.6rem;
    background: #999;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}
dl.faq img{
	display: block;
}

blockquote{
	padding:30px 40px 20px;
	background: #f9f9f9;
	color:#666;
	position: relative;
}
blockquote::before{
	content: "\f10d";
	font-family: "Font Awesome 6 Free";
	font-weight:900;
	position: absolute;
	top:10px;
	left:10px;
}
blockquote::after{
	content: "\f10e";
	font-family: "Font Awesome 6 Free";
	font-weight:900;
	position: absolute;
	bottom:10px;
	right:10px;
}
blockquote p.cite{
	text-align: right;
}

.conversion{
	margin:25px auto;
	width: 80%;
    max-width:800px;
	text-align:center;
}
.conversion a{
	background:#f3981c;
	color: #fff;
    border-radius: 20px;
    box-shadow: 4px 4px #9A7952;
	padding:4rem;
	font-size:3.2rem;
	display:block;
	text-decoration:none;
    letter-spacing: -1px;
    font-weight: 600;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    position: relative;
    transition: 0.5s;
}
.conversion a::before{
    content: url(/images/icons/icon-arrow-cv.svg);
    position: absolute;
    right: 6rem;
    width: 38px;
}
.conversion a:hover{
    transform: translateY(4px);
    box-shadow: none;
    opacity: 1;
    background: #302D2C;
}
.miniConversion{
    margin:25px auto;
    margin-top: 5rem;
    width: 100%;
    max-width:410px;
    text-align:center;
}
.miniConversion a{
    background:#f3981c;
    color: #fff;
    border-radius: 20px;
    box-shadow: 4px 4px #9A7952;
    padding:3rem;
    font-size:2rem;
    display:block;
    text-decoration:none;
    letter-spacing: -1px;
    line-height: 1;
    font-weight: 600;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    position: relative;
    transition: 0.5s;
}
.miniConversion.gray{
    max-width: 500px;
}
.miniConversion.gray a{
    background:#999;
    box-shadow: 4px 4px #777;
    padding: 3rem 6rem;
    line-height: 1.4;
}
.miniConversion.gray a::before{
    top:56%;
}
.miniConversion a::before{
    content: url(/images/icons/icon-arrow-mcv.svg);
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 28px;
}
.miniConversion a:hover{
    transform: translateY(4px);
    box-shadow: none;
    opacity: 1;
    background: #302D2C;
}

a.blank::after{
	content: "\f24d";
	font-family: "Font Awesome 6 Free";
	font-weight:900;
	padding-left:6px;
}

p.annotation {
	font-size: 1.4rem;
	line-height: 1.6;
	color: #999;
}
ul.warning li{
    font-size: 1.4rem;
	line-height: 1.6;
	color: #999;
    list-style: none;
}
ul.warning li::before{
    content: attr(data-marker);
    padding-right: 1rem;
}

ul.listing {
	margin-bottom: 26px;
    margin-top: 1rem;
}
ul.listing li {
	font-size: 1.8rem;
	line-height: 1.6;
    list-style: none;
	margin-bottom: 10px;
    padding-left: 2rem;
    position: relative;
}
ul.listing li:before {
    border-radius: 50%; /*丸くする*/
    width: 5px; /*点の幅*/
    height: 5px; /*点の高さ*/
    display: block;
    position: absolute; /*絶対配置*/
    left: 0; /*点の位置*/
    top: 0.6em; /*点の位置*/
    content: "";
    background: #00561F; /*点の色*/
}
ul.listing-check {
    width: max-content;
    margin: 0 auto;
    margin-bottom: 16px;
    margin-top: 16px;
}
ul.listing-check li {
    font-size: 1.8rem;
    line-height: 1.6;
    list-style: none;
    padding-left: 2.4rem;
    position: relative;
}
ul.listing-check li:before {
    display: block;
    position: absolute; /*絶対配置*/
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    content: url(/images/icons/icon-check.svg);
}
ul.listing-check.white li:before{
    content: url(/images/icons/icon-check-white.svg);
}
dl.table dd ul.list-flex{
    margin-left: 0;
    margin-bottom: 1rem;
}
ul.list-flex{
    display:flex;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
ul.list-flex li{
    width: max-content;
    list-style: none;
    line-height:1.6;
}
ul.list-flex li:after{
    content:"/";
    margin: 0 0.4rem;
}
ul.list-flex li:last-of-type:after{
    display:none;
}
ul.list-flex-box{
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    padding: 2%;
    border-radius: 20px;
    margin-bottom: 3rem;
}
ul.list-flex-box li {
    margin: 0.5%;
    background:#8DAE97;
    
    border-radius: 8px;
    color:#fff;
    list-style: none;
    line-height: 1.4;
    padding: 1%;
}
ol.number-none{
    list-style:none;
    margin: 1rem 0;
}
ol.listing {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
  margin: 0;
}
ol.listing li {
    font-size: 1.6rem;
    line-height: 1.5;
    padding-left: 30px;
    position: relative;
    margin-bottom: 2rem;
}
ol.listing li:after {
    content: counter(my-counter);
    counter-increment: my-counter;
    background-color: #00561F;
    border: 1px solid;
    border-radius: 50%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    width: 24px;
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1;
    position: absolute;
    font-weight: bold;
    top: 0;
    left: 0;
}
ol.listing li:before {
    content:"";
    background-color: #FFE452;
    border: 1px solid;
    border-radius: 50%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    width: 24px;
    color: #ffffff;
    position: absolute;
    font-weight: bold;
    top: 1.6px;
    left: 1.6px;
}

ul.reference{
    background: rgba(0,0,0,0.05);
    padding:0.4rem 1rem 1rem;
}
ul.reference::before{
    content:"- 参考 -";
    display: block;
    text-align: center;
    font-size: 1.6rem;
    padding: 2rem 0  1rem;
}
ul.reference {
	margin: 1rem 0 2rem;
}
ul.reference li {
	font-size: 1.4rem;
	line-height: 1.6;
    list-style: none;
	margin-bottom: 0.4rem;
    padding-left: 2rem;
    position: relative;
}
ul.reference li:before {
    border-radius: 50%;
    width: 5px;
    height: 5px;
    display: block;
    position: absolute;
    left: 0;
    top: 0.6em;
    content: "";
    background: #00561F;
}

.conversion-area{
    background: #FDFCF1;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 8rem calc(50vw - 50% + 8px) 11rem;
    position: relative;
}
.conversion-area:before{
    content:url(/images/common/footer-icon.png);
    background-color: #FFE452;
    border: 1px solid;
    border-radius: 50%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    width: 24px;
    color: #ffffff;
    position: absolute;
    font-weight: bold;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
ul.twoColumns,
ul.threeColumns,
ul.fourColumns,
ul.fiveColumns,
ul.sixColumns,
ul.tenColumns{
	display: flex;
	flex-wrap: wrap;
	margin:0 -1%;
	list-style: none;
}
ul.twoColumns{
    max-width:902px;
    margin:0 auto;
}
ul.threeColumns{
    max-width:980px;
    margin:0 auto;
}
ul.twoColumns.center li,
ul.threeColumns.center li,
ul.fourColumns.center li,
ul.fiveColumns.center li,
ul.sixColumns.center li{
	text-align: center;
}
ul.twoColumns li{
	width: 48%;
	margin:2% 1%;
}
ul.threeColumns li{
	width: 31.3333%;
	margin:2% 1%;
}
ul.fourColumns li{
	width: 23%;
	margin:2% 1%;
}
ul.fiveColumns li{
	width: 18%;
	margin:2% 1%;
}
ul.sixColumns li{
	width: 14.6666%;
	margin:2% 1%;
}
ul.tenColumns li{
    width: 8%;
    margin:2% 1%;
}
ul.twoColumns li img,
ul.threeColumns li img,
ul.fourColumns li img,
ul.fiveColumns li img,
ul.sixColumns li img,
ul.tenColumns li img{
	width: 100%;
	height: auto;
	display: block;
    border-radius: 10px;
    margin-bottom: 1rem;
}
ul.twoColumns li,
ul.threeColumns li,
ul.fourColumns li,
ul.fiveColumns li,
ul.sixColumns li,
ul.tenColumns li{
    position: relative;
}
ul.twoColumns li:before,
ul.threeColumns li:before,
ul.fourColumns li:before{
    position: absolute;
    content: url(/images/icons/icon-dot.svg);
    right: 0;
    bottom: 0;
    width: 28px;
}
.flex-container-one,
.flex-container-two,
.flex-container-three,
.flex-container-four{
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
    width: 100%;
    max-width: 1024px;
}
.flex-container-one h3,
.flex-container-two h3,
.flex-container-three h3,
.flex-container-four h3{
    box-shadow:none;
    margin-left: -2rem;
    border-radius: 0 20px 20px 0;
    text-align: left;
    padding-left: 2rem;
    width: 90%;
    margin-bottom: 2rem;
    font-size: 2.4rem;
}
.flex-container-four h3{
    margin: 0 auto;
    border-radius:8px;
    max-width:initial;
    width:100%;
    margin-bottom: 2rem;
}
.flex-container-one h3:before,
.flex-container-two h3:before,
.flex-container-three h3:before,
.flex-container-four h3:before{
    display: none;
}
.flex-container-one h3:after,
.flex-container-two h3:after,
.flex-container-three h3:after,
.flex-container-four h3:after{
    display: none;
}
.flex-container-one img,
.flex-container-two img,
.flex-container-three img,
.flex-container-four img{
    border-radius: 20px;
    margin-bottom: 1rem;
}
.flex-container-one > *{
    width: 100%;
    background: #fff;
    box-shadow: 1px 1px 2px #707070;
    margin: 0 2% 3%;
    padding: 3rem 2rem;
    border-radius: 20px;
}
.flex-container-two > *{
    background: #fff;
    box-shadow: 1px 1px 2px #707070;
	width: 46%;
	margin: 0 2% 3%;
    padding: 3rem 2rem;
    border-radius: 20px;
}
.flex-container-three > *{
	width: 29.1%;
	margin: 0 2.1% 3%;
    background: #fff;
    box-shadow: 1px 1px 2px #707070;
    border-radius: 20px;
    padding: 3rem 2rem;
}
.flex-container-four > *{
	width: 23%;
	margin: 0 1% 3%;
    background: #fff;
    box-shadow: 1px 1px 2px #707070;
    border-radius: 20px;
    padding: 3rem 2rem;
}
.flex-container-three p,
.flex-container-four p{
	font-size: 1.6rem;
	line-height: 2.8rem;
}

.max30percent{width: 30%;}
.max40percent{width: 40%;}
.max50percent{width: 50%;}
.max60percent{width: 60%;}
.max70percent{width: 70%;}
.max80percent{width: 80%;}
.max30percent img,
.max40percent img,
.max50percent img,
.max60percent img,
.max70percent img,
.max80percent img{
	width: 100%;
	height: auto;
}

td,th{
	line-height: 1.4;
}
div.data{
	overflow: auto;
	white-space: nowrap;
}
div.data::-webkit-scrollbar{
	height: 5px;
}
div.data::-webkit-scrollbar-track{
	background: #F1F1F1;
}
div.data::-webkit-scrollbar-thumb {
	background: #BCBCBC;
}

div.data table {
	width: 100%;
	margin-bottom:10px;
}
div.data table caption{
	margin-bottom: 5px;
	font-size: 80%;
	color:#666;
}
div.data table thead th {
	padding: 15px 5px;
	background: #f0f2f4;
	font-weight: bold;
	border-bottom:1px solid #ccc;
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
}
div.data table tbody th {
	white-space: nowrap;
}
div.data table tbody td {
	padding: 12px 5px;
	text-align: center;
}
div.data table tbody tr {
	background: #f7f7f7;
}
div.data table tbody tr:nth-child(2n+1) {
	background: #fff;
}
div.data table tr:hover {
	background: #eee;
}

.chart table{
	border-spacing: 0;
	width:auto;
	min-width: 400px;
	table-layout: fixed;
	margin-bottom:10px;
}
.chart table caption{
	margin-bottom: 5px;
}
.chart table thead th{
	background: #f0f2f4;
	border-bottom: 1px solid #ccc;
	padding:15px 5px;
	text-align: left;
}
.chart table tbody th{
	padding: 12px 5px;
	text-align: left;
}
.chart table tbody td{
	padding: 12px 5px;
}
.chart table tbody tr {
	background: #f7f7f7;
}
.chart table tbody tr:nth-child(2n+1) {
	background: #fff;
}
.chart table tbody tr:hover {
  background: #eee;
}
.chart span.small{
    display: block;
    font-size:80%;
}

div.scroll table{
    word-break: break-all;
    table-layout: fixed;
    display:block;
    max-height: 80vh;
    margin-bottom: 10px;
}
div.scroll table caption{
	margin-bottom: 5px;
}
div.scroll thead th {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
    padding:15px 5px;
    background:#f0f2f4;
}
div.scroll thead th:first-child {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 3;
    background: #f0f2f4;
}
div.scroll tbody tr{
	background:#f7f7f7;
}
div.scroll tbody tr:nth-child(2n+1) {
	background: #fff;
}
div.scroll tbody tr:hover {
  background: #eee;
}
div.scroll tbody th{
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 2;
    border:none;
    white-space: normal;
    min-width: 80px;
    padding:12px 5px;
    text-align: left;
}
div.scroll tbody td{
    padding:12px 5px;
    text-align: center;
}

div.scroll th,
div.scroll td {
    position: relative;
    border: none;
    z-index: 0;
    vertical-align: middle;
    line-height: 1.2;
    white-space: nowrap;
}
div.scroll th::before,
div.scroll td::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border-right: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    z-index: -1;
}
div.scroll thead th::before{
    border-top: 1px solid #dedede;
    z-index: -1;
}
div.scroll thead tr th:first-child::before,
div.scroll tbody tr th:first-child::before{
    border-left: 1px solid #dedede;
    z-index: -1;
}
div.scroll tbody tr th{
	background:#f7f7f7;
}
div.scroll tbody tr:nth-child(2n+1) th {
	background: #fff;
}

div.largeT table{
    margin-bottom: 10px;
}
div.largeT table caption{
    margin-bottom: 5px;
}
div.largeT thead th {
    padding:15px 5px;
    background:#eee;
    border: 1px solid #ccc;
    width: 33%;
    min-width: 80px;
    vertical-align: middle;
}

div.largeT.evenly thead th{
    width: 25%;
    -webkit-text-size-adjust: 100%;
}
div.largeT tbody tr{
    background:#f7f7f7;
    -webkit-text-size-adjust: 100%;
}
div.largeT.white tbody tr{
    background:#fff;
}
div.largeT tbody tr:nth-child(2n+1) {
    background: #fff;
}
/*div.largeT tbody tr:hover th,
div.largeT tbody tr:hover td,
div.largeT tbody tr:hover:nth-child(2n+1) th {
    background: #eee;
}*/
div.largeT tbody th{
    padding:12px 5px;
    text-align: left;
    border: 1px solid #ccc;
    vertical-align: middle;
    line-height: 1.2;
    white-space: nowrap;
}
div.largeT tbody td {
    vertical-align: middle;
    line-height: 1.2;
    border: 1px solid #ccc;
    padding:12px 5px;
    text-align: center;
}
div.largeT tbody td[data-label="大分類"] {
    background-color: #eee !important;
}
div.largeT tbody td ul {
    list-style: none;
}
div.largeT tbody td.yes {
    background: url(/images/icons/ico_yes.png) no-repeat center 50%;
    background-size: 30px;
    width: 80px;
    padding: 3rem 5px;
    text-indent: -8888px;
}
div.largeT tbody td.no {
    background: url(/images/icons/ico_no.png) no-repeat center 50%;
    background-size: 30px;
    width: 80px;
    padding: 3rem 5px;
    text-indent: -8888px;
}
div.largeT tbody td.maybe {
    background: url(/images/icons/ico_maybe.png) no-repeat center 50%;
    background-size: 30px;
    width: 80px;
    padding: 3rem 5px;
    text-indent: -8888px;
}

div.largeT tbody td.other{
    width: 80px;
}
dl.table{
	margin:0px auto 15px;
	list-style:none;
	overflow:auto;
    font-size: 1.8rem;
}
dl.table dt{
	clear:both;
	width:200px;
	float:left;
    color:#00561F;
	padding:15px 0;
    padding-right:1rem;
	line-height: 1.4;
    position: relative;
}
/*dl.table dt:before{
    content:"";
    background:#00561F;
    width:100px;
    height: 1px;
    position: absolute;
    bottom:0;
    left: 0;
}*/
dl.table dd{
	border-bottom: 1px solid #ddd;
	padding:15px 0 15px 200px;
	line-height: 1.6;
    font-size: 1.6rem;
}
dl.table.pc-one dd{
	padding: 0rem 1rem 1rem;
}
dl.table.pc-one dt{
	float: initial;
}
dl.table dd ul,
dl.table dd ol{
	margin-left: 0px;
}
dl.table dd ol.listing{
    margin-left: 0;
}
dl.table dd ul.listing{
    margin-bottom: 1rem;
    margin-top: 0;
}
dl.table dd ul li{
	margin-bottom: 5px;
}
dl.table dd ul.listing li{
    font-size: 1.6rem;
}
dl.table dd ol.listing li{
    margin-bottom: 0.6rem;
}
dl.table.short dt{
	width:auto;
	float:inherit;
	padding:15px 0 0;
	color:#666;
	font-weight: bold;
}
dl.table.short dd{
	border-bottom: 1px solid #ddd;
	padding:5px 0 15px;
}
div.flow-ol-container ol{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	background: linear-gradient(to right, #f0f2f4, #999);
	counter-reset: flow-list;
}
div.flow-ol-container ol li{
	list-style: none;
	width: calc(100% / 6);
	text-align: center;
	padding: 100px 0;
	background:url(/images/icons/flow-start.svg) no-repeat right center, url(/images/icons/flow-right-end.svg) no-repeat left center;
	background-size: auto 60%;
}
div.flow-ol-container ol li:last-child{
	background: url(/images/icons/flow-right-end.svg) no-repeat left center;
	background-size: auto 60%;
}
div.flow-ol-container ol li:first-child{
	background: url(/images/icons/flow-right-start.svg) no-repeat right center;
	background-size: auto 60%;
}
div.flow-ol-container ol li::before{
	counter-increment: flow-list;
    content: counter(flow-list);
    display: block;
    font-size: 4.8rem;
    padding-bottom: 1rem;
}
.flow-section-container{
	counter-reset: flow-section;
	background:url(/images/bg/border.svg) no-repeat center 15rem;
	background-size: contain;
    margin-bottom: 8rem;
}
.flow-section-container section{
	display: flex;
	width:calc(50% + 8rem);
}
.flow-section-container h2{
    margin-top: 6rem;
}

.flow-section-container section:nth-child(odd){
	flex-direction: row-reverse;
	margin-left:calc(50% - 8rem);
}
.flow-section-container section:last-of-type{
    transform: translateY(10px);
}
.flow-section-container h3{
	border:none;
	padding: 0 0 0.4rem;
	margin: 0;
	border-bottom:1px dotted #ccc;
    font-size: 2.6rem;
    font-weight: bold;
    background: none;
    color:#302D2C;
    box-shadow:none;
    border-radius: 0;
    text-align:left;
    width: 100%;
}
.flow-section-container h3:after{
    display: none;
    }
.flow-section-container h3::before{
	counter-increment: flow-section;
    content: counter(flow-section);
    font-size: 100%;
    font-weight: normal;
    background: #00561F;
    display: inline-block;
    text-align: center;
    width: 4rem;
    padding:0.4rem 0;
    color:#fff;
    margin-right: 0.4rem;
    position: relative;
    bottom:initial;
    height: initial;
    left: initial;
    transform: translateX(0);
    border: none;
}
.flow-section-container div.img{
	width: 16rem;
	margin:0 0 0 2rem;
	flex-shrink: 0;
}
.flow-section-container section:nth-child(odd) div.img{
	margin:0 2rem 0 0;
}
.flow-section-container div.img img{
	border-radius: 50%;
	height: auto;
	width:100%;
}

.iframe-content{
    position: relative;
    width: 100%;
    padding: 56.25% 0 0 0;
}
.iframe-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
div.leftImg,
div.rightImg{
    background:#fff;
    padding: 3rem;
    border-radius: 16px;
}
div.leftImg .img{
	float: left;
	margin-right: 30px;
	width: 35%;
}
div.leftImg img,
div.rightImg img{
	width: 100%;
	height: auto;
    border-radius: 10px;
}
div.rightImg .img{
	float: right;
	margin-left: 30px;
	width: 35%;
}

video{
	width: 100%;
}

.screenshot{
	text-align: center;
}
.screenshot img{
	max-width: calc(100% - 12px);
	height: auto;
	margin: 1rem auto 2rem;
	box-shadow: 0 0 6px #333;
}

ul.updateDate li{
	list-style:none;
	margin-bottom:10px;
}
ul.updateDate li span{
	background:#FF0;
	font-size:1rem;
	padding:1px 4px;
	border:1px solid #ccc;
	margin-right:5px;
}

.page-parent{
	display: flex;
	margin:0 -1%;
	flex-wrap: wrap;
}
.page-parent li{
	width:48%;
	margin:1%;
	list-style: none;
	background:#f0f2f4;
	min-height: 20.0rem;
}
.page-parent li a{
	display: flex;
	align-items: center;
	padding: 0 1.0rem 0 2.4rem;
	font-size: 2.4rem;
	line-height: 1.4;
	color: #333;
	position: relative;
	width:100%;
	height: 100%;
}
.page-parent li a::before{
	content: "\f0da";
	font-family: "Font Awesome 6 Free";
	font-weight:900;
	position: absolute;
	top:51%;
	left:1.2rem;
	transform:translateY(-50%);
}

.lazyload-box img {
  opacity: 0;
  transform: translate(0, 50px);
  transition: 2s;
}
.lazyload-box img.lazyloaded {
  transform: translate(0, 0);
  opacity: 1;
}


/*************************** B-05. h1,h2見出し *******************/

h1{
    font-size: 3.8rem;
    margin-top: 6rem;
    margin-bottom: 4.0rem;
    line-height: 5.4rem;
    color:#00561F;
    text-align: center;
    position: relative;
}
h1 span{
    font-size: 1.8rem;
    display: block;
    font-weight: normal;
    line-height: 3;
}
.page-header h1{
	margin-top:0;
    width: 94%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color:#fff;
    letter-spacing: 1px;
}
.page-header h1 span{
	font-size: 1.8rem;
	display: block;
	font-weight: normal;
	line-height: 3;
}

h2{
    font-size: 3.8rem;
    text-align: left;
    color:#00561F;
    margin-bottom: 2rem;
    line-height: 1.4;
}
h2 a{
    color:#00561F;
}
h3 a{
    color: #fff;
}
h3{
    font-size:3.2rem;
    color: #fff;
    background: #00561F;
    line-height:1.2;
    text-align: center;
    padding: 1rem 0;
    border-radius: 20px;
    width: 70%;
    margin: 0 auto;
    max-width: 596px;
    position: relative;
    margin-bottom: 4rem;
    box-shadow: 3px 3px #FFE452;
}
h3:before{
    content:"";
    position: absolute;
    bottom: -21px;
    width: 0;
    height: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border-style: solid;
    border-width: 22px 33px 0 33px;
    border-color: #00561F transparent transparent transparent;
}

h3:after {
    content: "";
    position: absolute;
    bottom: -12.5px;
    left: 50%;
    width: 37px;
    height: 3px;
    background: #FFE452;
    transform: rotate(-34deg);
}
#top h3{
    background:none;
    padding:0;
    border-radius: 0;
    width: 100%;
    max-width: initial;
    margin-bottom: 1rem;
    box-shadow: none;
}
#top h3:after{
    display: none;
}
#top h3:before{
    display:none;
    bottom: initial;
    transform: translateX(0);
}
.column-content h3 {
    color: #00561F;
    background: initial;
    width: 100%;
    border-radius: 0;
    border-bottom: #00561F 2px solid;
    max-width: initial;
    box-shadow: none;
    padding-bottom: 1rem;
    text-align: left;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}
.column-content h3:before,
.column-content h3:after{
    display: none;
}
main.column .column-content h3:before{
    display: inline-block;
    position: relative;
    border: 0;
    left: 0;
    bottom: 0;
    width: fit-content;
    transform: initial;
    height: initial; 
}
h4{
    font-size:2.4rem;
    color: #fff;
    background: #00561F;
    text-align: center;
    padding: 1rem 1rem;
    border-radius: 20px;
    width: 90%;
    margin: 0 auto;
    max-width: 350px;
    position: relative;
    margin-bottom: 3.6rem;
    box-shadow: 3px 3px #FFE452;
    line-height: 1.4;
}
.specified h4.title02 {
    font-size: 2.4rem;
    margin-bottom: 2.6rem;
    font-weight: bold;
    border-left: 1.0rem solid #00561F;
    padding-left: 1.0rem;
    padding: 0.6rem 1rem;
    margin-bottom: 2.0rem;
    background: 0;
    text-align: left;
    box-shadow: none;
    border-radius: 0px;
    color: #00561F;
    max-width: initial;
    margin-left: 0;
}
h4.title02:before,
h4.title02:after{
    display: none;
}
h4:before{
    content:"";
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 22px 0 22px;
    border-color: #00561F transparent transparent transparent;
}
h4:after {
    content: "";
    position: absolute;
    bottom: -9.5px;
    left: 50%;
    width: 24px;
    height: 3px;
    background: #FFE452;
    transform: rotate(-34deg);
}
.column-content section h4{
    color: #00561F;
    background: initial;
    width: 100%;
    border-radius: 0;
    border-left: #00561F 4px solid;
    padding: 0;
    padding-left: 10px; 
    max-width: initial;
    box-shadow: none;
    text-align: left;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}
.column-content section h4:after{
    display:none;
}
#top h4{
    background: none;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    box-shadow: none;
    margin-bottom: 0;
    max-width: initial;
}
#top h4:after{
    display: none;
}
h5{
    font-size: 2.0rem;
    margin-bottom: 2.0rem;
    padding-left: 6px;
    margin-bottom: 10px;
    color:#00561F;
    font-size: 2rem;
    text-align: center;
}

h6{
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
    color:#00561F;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 1.0rem;
    padding-left: 2rem;
    text-align: center;
    border-left: 4px solid #00561F;
}
#top h1{
    top:initial;
    left: initial;
    transform: initial;
}
#top h1,
#top h2 {
	background-color: #00561F;
	color: #fff;
	text-align: center;
	max-width: 500px;
	width: 100%;
	line-height: 3rem;
	font-size: 1.8rem;
	letter-spacing: 1px;
	border-radius: 14px;
	padding: 20px 0;
	margin: 0 auto;
	position: relative;
}
#top h1::before,
#top h2::before {
	content: "";
	position: absolute;
	top: 65px;
	left: 0;
	right: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-top: 25px solid #00561F;
	border-right: 35px solid transparent;
	border-left: 35px solid transparent;
}
#top h1::after,
#top h2::after {
	content: '';
	background-repeat: no-repeat;
	position: absolute;
	background-size: contain;
	top: auto;
	bottom: auto;
	left: auto;
	right: auto;
	border-bottom: 0;
}
#top .top-02 h1::after{
	width: 125px;
	height: 105px;
	background-image: url(/ssw/images/img/top_02.png);
	bottom: -10px;
	right: -76px;
}
#top .top-03 h2{
	background-color: #ffffff;
	color: #00561F;
}
#top .top-03 h2::before{
	border-top: 25px solid #ffffff;
}
#top .top-03 h2::after{
	width: 125px;
	height: 105px;
	background-image: url(/ssw/images/img/top_04.png);
	bottom: -10px;
	right: -76px;
}
#top .top-04 h2{
	text-align: center;
	color: #00561F;
	font-size: 2.5rem;
	background-color: #ffffff;
}
#top .top-04 h2::after{
	content: none;
}
#top .top-04 h2::before{
	content: none;
}

#top .top-05 h2::after{
	width: 125px;
	height: 105px;
	background-image:url(/images/img/top_081.png);
	bottom: -10px;
	right: -76px;
}
main article section .top-03-merit{
	margin-top: 80px;
}
.top-03-merit h3{
	text-align: center;
	color: #ffffff;
}
#top .top-03 h3,
#top .top-06 h2{
	text-align: center;
	color: #ffffff;
	background-color: #ffffff00;
	position: relative;
	padding-top: 0;
	font-size: 2.3rem;
	line-height: 3rem;
}
#top .top-06 h2::before{
	content: '';
	background-image: url(/images/common/ttl_icon02_01.png);
	background-repeat: no-repeat;
	position: absolute;
	background-size: contain;
	top: -4rem;
	margin: auto;
	width: 65px;
	height: 55px;
	left: 0;
	right: 0;
	border: none;
}
#top .top-03 h3:before{
    content: '';
    display:block;
    background-image: url(/images/common/ttl_icon02_01.png);
    background-repeat: no-repeat;
    position: absolute;
    background-size: contain;
    top: -4rem;
    margin: auto;
    width: 65px;
    height: 55px;
    left: 0;
    right: 0;
    border: none;
}
#top .top-06 h2{
	margin-bottom: 40px;
}
#top .top-06 h2::after

{
	content: none;
}
#top .top-07 h2{
	margin: 0 auto 50px;
}
#top .top-07 h2::after {
    width: 125px;
    height: 105px;
    background-image: url(/images/img/top_32.png);
    bottom: -10px;
    right: -100px;
}
.innerpage{
	background:#aaa;
	color:#fff;
	margin-left:1rem;
	font-size: 1.2rem;
	padding:0 0.6rem 0.2rem;
	font-weight: normal;
}



/*目次*/
main.column {
    counter-reset: h1;
}
main.column h2 {
    counter-reset: h2;
}
main.column h2::before {
    counter-increment: h1;
    content: "chapter " counter(h1) ".";
    display: block;
    font-size: 60%;
    opacity: 0.7;
    font-weight: normal;
}
main.column h3 {
    counter-reset: h3;
    background:none;
    text-align: left;
    color:#333;
    width: auto;
    max-width: 100%;
    box-shadow: none;
    margin:0;
}
main.column h3::before {
    counter-increment: h2;
    content: "chapter " counter(h1) "-"counter(h2) ". ";
    font-weight: normal;
    font-size: 1.6rem;
    position: inherit;
    bottom: inherit;
    border:none;
    left:inherit;
    display: block;
    transform: none;
    width: auto;
    margin-bottom:1.6rem;
}
main.column h3::after {
    content:none;
}

main.column h4 {
    counter-reset: h4;
    background:none;
    text-align: left;
    color:#333;
    width: auto;
    max-width: 100%;
    box-shadow: none;
    margin:0 0 1rem;
    padding:0;
}
main.column h4::before {
    counter-increment: h3;
    content: "chapter " counter(h1) "-"counter(h2) "-"counter(h3) ". ";
    font-weight: normal;
    display: block;
    font-size: 1.4rem;
    position: inherit;
    bottom: inherit;
    border:none;
    left:inherit;
    display: block;
    transform: none;
    width: auto;
    margin-bottom:1.6rem;
}
main.column h4::after {
	content:none;
}
main.column h5 {
    counter-reset: h5;
    color:#333;
    text-align: left;
    padding:0;
}
main.column h5::before {
    counter-increment: h4;
    content: "chapter " counter(h1) "-"counter(h2) "-"counter(h3) "-"counter(h4) ". ";
    font-size: 70%;
    font-weight: normal;
    display: block;
    margin-bottom:1.0rem;
}
main.column h6 {
    counter-reset: h6;
    color:#333;
    text-align: left;
    padding:0;
    border:none;
    width: auto;
}
main.column h6::before {
    counter-increment: h5;
    content: "chapter " counter(h1) "-"counter(h2) "-"counter(h3) "-"counter(h4) "-"counter(h5) ". ";
    font-size: 70%;
    font-weight: normal;
    display: block;
    margin-bottom:.8rem;
}

.lead-list {
    border-radius: 4px;
    background: #f5f5f5;
    position: relative;
    padding: 50px 20px 20px;
    margin-bottom: 50px;
}
.lead-list:before {
    content: "この記事でわかること";
    background: #6DC8DB;
    color: #fff;
    position: absolute;
    display: block;
    padding: 10px;
    border-radius: 2px;
    letter-spacing: 1px;
    top: 0;
    left: 0;
}
.lead-list ul.listing {
    margin-bottom:0;
}
.lead-list ul.listing li{
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}

div.page-index {
    background: #fff;
    width: 80%;
    max-width: 800px;
    margin: 0px auto 50px;
    padding: 2%;
    box-sizing: border-box;
}
div.page-index p {
    text-align: center;
    border-bottom: 1px dotted #ccc;
}
div.page-index>ol {
    margin-left: 0;
}
div.page-index>ol ol {
    padding-left: 20px;
}
div.page-index ol {
    counter-reset: section;
    margin-bottom: 10px;
}
div.page-index ol li {
    line-height: 1.6;
    list-style: none;
}
div.page-index ol a {
    font-size: 1.4rem;
    color:#333;
    text-decoration: none;
    transition: 0.5s;
}
div.page-index ol li span{
	background:#aaa;
	color:#fff;
	margin-left:1rem;
	font-size: 1.2rem;
	padding:0 0.6rem 0.2rem;
}
div.page-index ol a:hover{
	text-decoration: underline;
}
div.page-index ol>li:before {
    content: counters(section, '-') '. ';
    counter-increment: section;
    font-size: 1.4rem;
    color: #333;
}
p.hundred img {
    width: 100%;
	height: 100%;
    object-fit: cover;
}
/*************************** B-06. breadcrumb ********************/
.breadcrumb{
	font-size:1.4rem;
	margin: 20px auto 50px;
	color:#999;
    position: relative;
    top: 0;
}
.page-header-on .breadcrumb{
    position: relative;
}
.breadcrumb ol{
	display:flex;
	list-style:none;
}
.breadcrumb li::after {
	padding: 0 8px;
	color: #ccc;
}
.breadcrumb li:not(:last-child)::after {
	content: '>';
}
.breadcrumb a{
	color:#999;
	text-decoration:none;
}
.breadcrumb a:hover{
	color:#06F;
	opacity:1;
}
.breadcrumb li:first-child a::before{
	content: "\f015";
	font-family: "Font Awesome 6 Free";
	font-weight:900;
	padding-right:3px;
}
.breadcrumb.view{
	margin:5px 10px 0 0;
}
/*************************** B-07. pager backnumber等 *************/
.pager{
	clear:both;
	border-top:3px dotted #ddd;
	margin-top:15px;
	padding-top:15px;
    padding-bottom: 10rem;
}
.pager ul.order{
	list-style:none;
}
.pager ul.order li{
	border:1px solid #ddd;
	text-align:center;
	width:100px;
	padding:10px 0;
}
.pager ul.order li.prev{
	float:left;
}
.pager ul.order li.next{
	float:right;
}
.pager ul.order li a{
	background:#ddd;
	color:#333;
	display:block;
	padding:10px 0;
	margin:-10px 0;
	text-decoration:none;
	width: 101%;
}

.pager ul.direct{
	margin:0 auto;
	display: flex;
	justify-content: center;
}
.pager ul.direct li{
	width:40px;
	border:1px solid #ddd;
	text-align:center;
	padding:10px 0;
	margin:0 8px;
	list-style: none;
}
.pager ul.direct li a{
	padding:11px 0;
	display:block;
	margin:-11px 0;
	color:#333;
	background:#ddd;
	width: 101%;
}

/*************************** B-08. aside *************************/
aside {
	width: 200px;
	height: 100%;
	margin-top:196px;
	margin-left: 20px;
	position:sticky;
	top:0;
	display: table;
}
aside .tit{
	margin-bottom:1.0rem;
	background:#00561F;
	color:#fff;
	padding:15px 8px;
}
aside .tit a{
	display: block;
	color:#fff;
}
aside nav ul li{
	margin-bottom: 1px;
}
aside nav ul li ul{
	margin-left:10px;
	padding-left:10px;
	border-left:1px solid #ccc;
}
aside nav ul li.here > a{
	color: #009bde;
	font-weight: bold;
}
aside nav ul li.here > a::before{
	content: "\f0da";
	font-family: "Font Awesome 6 Free";
	font-weight:900;
	padding-right:4px;
	color: #009bde;
}
aside nav ul li a{
	display: block;
	color:#333;
	font-size: 1.4rem;
}
aside nav ul li a:hover{
	background-color:#f0f2f4;
	opacity:1;
}
aside nav > ul > li{
	margin-bottom: 1px;
}
aside nav > ul > li > a{
	font-size: 1.8rem;
	font-weight: bold;
	padding:10px 5px;
}
aside nav > ul > li > ul > li a{
	padding:6px 4px;
}

/*search*/
aside form dl {
	padding: 0;
	background:none;
	margin-bottom: 20px;
}
aside form dl dt {
	float: inherit;
	width: inherit;
	padding: 6px 0 0px;
	min-height: 40px;
	font-size:16px;
}
aside form dl dd {
	padding: 0 0 6px 0;
	font-size:16px;
	border-bottom:3px solid #fff;
}
aside form dl dd input[type="text"]{
	padding: 12px;
	width: 100%;
	border: none;
	background-color: #f0f2f4;
	position: relative;
	display: inline-block;
	outline:none;
	transition:background-color .3s, border .3s;
	font-size: 16px;
}
aside form dl dd input::placeholder{
	color:#aaa;
}

aside form dl dd input[type="text"]:focus{
	background:rgb(220,220,220);
}

aside form dl ul li{
	list-style: none;
}

/*************************** B-09. footer ************************/
footer {
	padding-top: 50px;
    padding-bottom: 10px;
	background-color: #ffffff;
	text-align: center;
	position: relative;
}
ul.footerNav {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2%;
}
ul.footerNav li {
	list-style: none;
}
ul.footerNav li a {
	font-size: 1.4rem;
	padding: 0 32px;
	color:#302D2C;
	font-weight: bold;
	text-decoration: none;
}
footer .logo img {
	max-width: 140px;
	margin-top: 30px;
}
address {
	font-size: 1.2rem;
	margin: 30px 0;
	line-height: 2.0;
}
small {
	display: block;
	background-color: #ffffff;
	padding: 17px 0 17px;
	font-size: 1.2rem;
}

footer .contigo a{
	color: #aaa;
	text-decoration: none;
	display: inline-block;
	padding:10px 0;
	font-size: 1.2rem;
}
footer .contigo a:hover{
	color:#333;
}
footer .contigo span{
	position: relative;
	margin-left: 24px;
}
footer .contigo span::before{
	position:absolute;
	content:"";
	display:inline-block;
	width:20px;
	height:20px;
	left:-19px;
	background:url(/images/common/contigo.svg) no-repeat;
	background-size:contain;
	top:50%;
	transform: translateY(-50%);
}

ul.edit-link li{
	position: fixed;
	bottom:4px;
	right:4px;
	list-style:none;
	z-index: 9999;
}
ul.edit-link li img{
	width:30px;
	height: auto;
}

#pageTop {
    position: fixed;
    bottom: 1%;
    right: 2%;
}
#pageTop a {
    z-index: 999;
    color: #333;
    text-decoration: none;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#pageTop a::before {
    content: "\f35b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 3.6rem;
    padding-bottom: 6px;
    text-shadow: 0px 0px 5px #fff;
}
#pageTop a:hover {
    text-decoration: none;
    opacity: 0.7;
}
.footer-conversion{
    display: flex;
    list-style: none;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 2;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}
.footer-conversion{
    display:none;
}
.footer-conversion li{
    width: 33.33333333%;
    margin: 0;
    text-align: center;
}
.footer-conversion li a{
    display: block;
    padding: 18px;
    color: #fff;
    font-size: 2.4rem;
}
.footer-conversion li a i{
    margin-right: 10px;
}
.footer-conversion li:nth-child(2){
    background:#F7941D;
    width: 50%;
}
.footer-conversion li:nth-child(3){
    background:#4DC764;
    width: 50%;
}
.footer-conversion li:nth-child(1){
    background:#00561F ;
    width: 100%;
}

/*************************** B-10. toppage ***********************/

.top-01{
	width: 100%;
    max-width: 100%;
    background-size: cover;
    margin: 0 auto;
    background-position: top 25% left 0;
    height: 500px;
    background-image: url(/images/img/top_01.jpg);
}
.top-01 img {
	width: 100%;
	height: auto;
}
/* 人手不足の解消に外国人材 */

.top-02 {
	background-color: #f0f2f4;
	padding: 48px;
	background-color: #FDFCF1;
}


.top-02-container{
	display: flex;
	justify-content:  center;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
	margin: 30px 0 0;
}
.top-02-container .top-02-container-left{
	width: 30%;
}
.top-02-container .top-02-container-right{
	width: 50%;
}

.top-02 p {
	max-width: 800px;
	margin: 0 auto;
	line-height: 2.0;
	color: #4c4948;
}

/* 外国人材雇用の制度 */
.top-03{
    padding: 60px 0;
    background-color: #00561F;
    margin-top: 0;
}
.top-03-container{
	margin: 60px auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 3rem;
}
.top-03-container .top-03-box{
	width: 45%;
}
.top-03-container .top-03-box .top-03-box-img{
	width: 100%;
	border-radius: 20px;
	height: 250px;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #ffffff;
	font-size: 2.4rem;
}
.top-03-container .top-03-box:nth-child(1) .top-03-box-img{
	background-image: url(/images/img/top_05.png);
}
.top-03-container .top-03-box:nth-child(2) .top-03-box-img{
	background-image: url(/images/img/top_06.png);
}
.top-03-container .top-03-box p{
	color: #ffffff;
	padding: 10px 15px 0;
}
.top-03-merit .fixbox02{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.top-03-merit .merit-box{
	width: 31%;
}
.top-03-merit .merit-ttl-box{
	display: flex;
	gap: 1.5rem;
	align-items: center;
}
.top-03-merit .merit-ttl-box .number{
	width: 80px;
	height: 60px;
	border-radius: 50%;
	background-color: #F2941D;
	color: #ffffff;
	justify-content: center;
	display: flex;
	align-items: center;
}
.top-03-merit .merit-ttl-box h4{
	color: #ffffff;
	font-size: 1.9rem;
	line-height: 1.4;
	letter-spacing: 1px;
}
main .top-03-merit p{
	color: #ffffff;
	line-height: 1.4;
	padding: 20px 0 15px;

	margin-bottom: 0;
}
.merit-box img{
	width: 55%;
	display: block;
	margin: 0 auto;
}
/* 外国人材雇用の制度 */
.entry-container {
	display: flex;
	flex-wrap: wrap;
	margin:0 -1%;
}
.entry-container section {
	width: 23%;
	margin:0 1% 1%;
}
.time {
	margin: 0.5rem 0;
	display: flex;
	align-items: center;
}
.time span {
	border: 1px solid #a6acb2;
	padding: 3px 6px;
	font-size: 1.1rem;
	line-height: 100%;
	margin-left: 1.0rem;
	background: #fff799;
}
.entry-container ul{
	display: flex;
	margin-top: 0px;
}
.entry-container ul li {
	list-style:none;
	border: 1px solid #a6acb2;
	font-size: 1.1rem;
	line-height: 100%;
	margin-right: 1.0rem;
}
.entry-container ul li a {
    color: #333;
    display: block;
    padding: 3px 6px 4px;
}
.entry-container ul li a:hover {
    background: #ddd;
    opacity: 1;
}
.entry-container h2,
.entry-container h3{
	font-weight: normal;
	font-size: 1.8rem;
	line-height: 2.4rem;
	margin-top: 0px;
	margin-bottom: 1.0rem;
	border-left: 0;
	border:none;
	padding-left: 0;
}
.entry-container h3{
	margin-bottom: 2.0rem;
}
.entry-container h2::after{
	content:none;
}
.entry-container h2 a,
.entry-container h3 a{
	color: #333;
}
.entry-container section div.img {
	margin-bottom: 0;
}
.entry-container section img {
	width: 100%;
	height: auto;
}
.top-04{
	padding: 0 2rem 7rem;
}
.top-04-container {
	display: flex;
	flex-wrap: wrap;
}
.top-04-container section {
	width: 25%;
	padding:20px 10px;
	margin-top: 0;
}

.top-04-container a {
	display: block;
    color: #302D2C;
    font-size: 1.5rem;
    text-align: left;
	line-height: 1.5;
    position: relative;
}
.top-04-container a:before {
	content: '';
	position: absolute;
	background: #b7b3b2;
	bottom: -8px;
	right: 15px;
	height: 1px;
	width: 80px;
}
.top-04-container .img a:before,
.top-04-container .img a:after {
    display:none;
}
.top-04-container a:after {
	content: '';
	position: absolute;
	background: #b7b3b2;
	bottom: -4px;
	right: 14px;
	height: 1px;
	width: 18px;
	transform: rotate(-150deg);
}
.top-04-container p {
	line-height: 2.0;
	font-size: 1.4rem;
}
.top-04-container img {
	width: 100%;
	height: 160px;
	object-fit: cover;
}
.top-04-container h3 {
	font-size: 2.4rem;
	text-align: center;
	margin: 10px 0 0;
	border-left: 0;
	border:none;
	padding-left: 0;
}
.top-04 a.more{
	font-weight: bold;
	text-align: right;
	font-size: 1.9rem;
	color: #00561F;
	margin-top: 30px;
}
/*.top-04 a.more::after{
	background-image:url(/images/common/more01.png);
	width: 25px;
    height: 25px;
}*/
.top-04 a.more::after{
    display: none;
}
/* 事業紹介 */
.top-05{
	padding: 60px 0;
	background-color: #FDFCF1;
}
#top .top-05 h2{
	margin: 0 auto 60px;
}
.top-05 section{
	display: flex;
	max-width: 800px;
	margin: 40px auto 0;
	height: 120px;
	align-items: center;
	background-color: #ffffff;
	box-shadow: 3px 3px 10px #ebebeb;
}
.top-05 section img{
	width: 35%;
	height: 100%;
	object-fit: cover;
}
.top-05 .d_txt{
	width: 75%;
    display: flex;
	flex-wrap: wrap;
}
#top .top-05 section h3{
	width: 70%;
	text-align: center;
	color: #00561F;
	font-size: 1.9rem;
	font-weight: bold;
    margin-bottom: 0;
    margin: initial;
}
.top-05 section a.more {
    color: #00561F;
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: right;
}
.top-05 section a.more::after{
	background-image: url(/images/common/more01.png);
	width: 20px;
	height: 20px;
	top: 5px;
}

.top-06{
	padding: 100px 0;
	background-color: #F2941D;
	margin-top: 0;
}
.top-06 .top-06-box{
	margin: 45px 0 0;
    display: flex;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5.5rem;
}
.top-06 .top-06-box div{
	width: 30%;
	position: relative;
}

.top-06 .top-06-box div::after{
	content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    background-size: contain;
    right: -40px;
    bottom: -25px;
    background-repeat: no-repeat;
}
.top-06 .top-06-box:nth-child(1) div::after{
	background-image: url(/images/img/top_11.png);
}
.top-06 .top-06-box:nth-child(2) div::after{
	background-image: url(/images/img/top_14.png);
}
.top-06 .top-06-box:nth-child(3) div::after{
	background-image: url(/images/img/top_16.png);
}
.top-06 .top-06-box div img{
	width: 100%;
	border-radius: 20px;
}
.top-06 .top-06-box section{
	width: 45%;
	margin-top: 0;
}
.top-06 .top-06-box section h3{
	color:  #ffffff;
	line-height: 1.5;
	font-size: 2rem;
    text-align: left;
}
.top-06 .top-06-box section p{
	padding-top: 10px;
	margin-bottom: 0;
}
.top-06 .fixbox02{
	border-radius: 20px;
	background-color: #FDFCF1;
	padding: 40px 0;
}
#top .top-06 .fixbox02 h3{
	text-align: center;
	color: #F2941D;
	font-size: 2.4rem;
}
#top .top-06 .fixbox02 h3.mb-2{
    margin-bottom: 2rem;
}
.top-06 .fixbox02 ul{
	display: flex;
	justify-content: left;
	gap: 20px;
	flex-wrap: wrap;
	max-width: 880px;
	width: 100%;
	margin: 0 auto;
}
.top-06 .fixbox02 ul li{
	list-style-type: none;
    width: 10.51%;
}
.top-06 .fixbox02 ul li img{
	height: 50px;
	width: auto;
	display: block;
	margin: 0 auto;
}
.top-06 .fixbox02 ul li span{
	display: block;
	font-size: 1.3rem;
	padding-top: 5px;
	text-align: center;
}
.top-06-number-content{
	display: flex;
	gap:0 5rem;
	margin-top: 30px;
	flex-wrap: wrap;
	justify-content: center;
}

.top-06-number-content  span{
	display: block;
	width: 100%;
	text-align: center;
	font-size: 1.3rem;
	font-weight: normal;
	padding-bottom: 8px;
}
.top-06-number-content div{
	font-size: 2.4rem;
	font-weight: bold;
}

.top-07{
	padding: 80px 20px 120px;
	background-color: #FDFCF1;
	margin-top: 0;
	position: relative;
}
.top-07::after{
	position: absolute;
	content: '';
	width: 125px;
	height: 50px;
	background-image: url(/images/img/top_40.png);
	background-size: contain;
	background-repeat: no-repeat;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.top-07.i-none::after{
    display: none;
}
.top-07.i-none{
    padding-bottom: 30px;
    padding-top: 2rem;
}
.top-07.i-none .top-07-container .top-07-box::before{
    display: none;
}
.top-07.i-none .top-07-container{
    justify-content: center;
    gap:2rem;  
}

.top-07-container{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px 0;
}
.top-07-box{
	width: 31%;
	background-color: #00561F;
	box-shadow: 3px 3px 0px #326041;
	height: 200px;
	border-radius: 20px;
	justify-content: center;
	align-items: center;
	display: flex;
	position: relative;
	color: #ffffff;
	font-size: 2rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
}
.top-07-container .top-07-box:nth-child(1)::before{
	background-image: url(/images/img/top_33.png);
}
.top-07-container .top-07-box:nth-child(2)::before{
	background-image: url(/images/img/top_34.png);
}
.top-07-container .top-07-box:nth-child(3)::before{
	background-image: url(/images/img/top_35.png);
}
.top-07-container .top-07-box:nth-child(4)::before{
	background-image: url(/images/img/top_36.png);
}
.top-07-container .top-07-box:nth-child(5)::before{
	background-image: url(/images/img/top_37.png);
}
.top-07-container .top-07-box:nth-child(6)::before{
	background-image: url(/images/img/top_38.png);
}
.top-07-box::before{
	content: '';
	position: absolute;
	left: 10px;
	bottom: 5px;
	background-size: contain;
	background-repeat: no-repeat;
	width: 50px;
	height: 50px;
}
.top-07-box a.more{
	position: absolute;
	bottom: 10px;
	right: 10px;
	font-size: 1.4rem;
}
.top-07-box a.more::before{
	width: 20px;
	height: 20px;
	padding: 0 10px 0 0;
}
.top-07 .top-07-btn{
	max-width: 550px;
	margin: 60px auto 0;
	width: 100%;
}
.top-07 .top-07-btn a{
	background-color: #F2941D;
	text-align: center;
	color: #ffffff;
	border-radius: 15px;
	font-size: 2rem;
	display: flex;
	justify-content: center;
	padding: 25px 0;
}
.top-07 .top-07-btn a.more::after{
	width: 25px;
	height: 25px;
}
/*************************** B-11. form **************************/
main#form{
	max-width: 800px;
    margin: 0 auto;
}
form{
    margin-bottom: 5rem;
}
form dl {
	padding:0 10px;
	background:#f0f2f4;
	margin-bottom: 50px;
}
form dl dt {
	float: left;
	width: 260px;
	padding: 10px 0 10px;
	min-height: 60px;
	line-height: 1.6;
	font-size:16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
form dl dd {
	padding: 10px 0 10px 260px;
	line-height: 1.6;
	font-size:16px;
	border-bottom:3px solid #fff;
}
form dl dd:last-child {
    border-bottom: none;
}

form span.required,
form span.will{
	float:right;
	margin-right:15px;
	background:#00561F;
	color:#fff;
	padding:1px 4px 2px;
	text-decoration: none;
	border-bottom:none;
	font-size: 1.4rem;
}
form span.will{
	background:#999;
	color:#fff;
}
form dl input,
form dl select,
form dl textarea{
	ime-mode:active;
	font-size: 16px;
	transition: .3s;
	border:1px solid #ccc;
	width:100%;
	padding:10px;
    color:#333;
}
form dl input:not([type="radio"]):focus,
form dl select:focus,
form dl textarea:focus{
	border:1px solid #009bde;
	outline: none;
	box-shadow: 0 0 4px #009bde;
}

.width80 {max-width: 80px;}
.width100{max-width: 100px;}
.width150{max-width: 150px;}
.width200{max-width: 200px;}
.width250{max-width: 250px;}
.width300{max-width: 300px;}
.width400{max-width: 400px;}

form dl textarea{
	height:150px;
	line-height: 1.4;
}

/*checkbox*/
form dl label {
    cursor: pointer;
    display: block;
    padding: 4px 32px;
    position: relative;
    width: auto;
}
form dl input[type=checkbox] {
    display: none;
}
form dl label input[type=checkbox] + span::before {
    background: #fff;
    border: 1px solid #ccc;
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    left: 0;
    margin-top: -13px;
    position: absolute;
    top: 50%;
}
form dl label input[type=checkbox] + span::after {
    border-right: 3px solid #237cd5;
    border-bottom: 3px solid #237cd5;
    content: '';
    display: block;
    height: 16px;
    left: 7px;
    margin-top: -13px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 8px;
    transition:opacity .3s;
}
form dl label input[type=checkbox]:checked + span::after {
    opacity: 1;
}

/*radio*/
form dl label input[type=radio] {
   	position: absolute;
    top: 19px;
    left: 9px;
    width: 15px;
    z-index: -1;
}
.radio-01{
	position: relative;
    padding: 4px 0;
    width: 100%;
    margin-left: 32px;
}
form dl label input[type=radio] + span {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    padding: 5px 30px;
    margin-left: -32px;
    position: relative;
    width: auto;
}
form dl label input[type=radio] + span::before {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    content: '';
    display: block;
    height: 24px;
    width: 24px;
    left: 0;
    margin-top: -13px;
    position: absolute;
    top: 50%;
}
form dl label input[type=radio] + span::after {
    background: #237cd5;
    border-radius: 50%;
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    left: 4px;
    margin-top: -9px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transition:opacity .3s;
}
form dl label input[type=radio]:checked + span::after {
    opacity: 1;
}

form .submit{
	text-align: center;
}
form .submit input{
	font-size:4.0rem;
	width:100%;
	padding:2.0rem;
	background:#f3981c;
	color:#fff;	
	border:none;
	cursor:pointer;
	transition:opacity .3s;
}
.submit input:hover{
	opacity: .7;
}

#form .img-box{
    padding:0 ;
}
#form .img-box img{
    width: 60%;
}
#form .flex-container-two > *{
    padding: 2rem 2rem 1rem;
}


/*************************** B-12. レギュレーション ********************/
pre{
	height: 0;
	overflow: hidden;
	padding:0;
	transition:.3s;
}
pre.show{
	height: auto;
	max-height: 90vh;
	overflow:auto;
	padding:20px;
	white-space:pre;
	line-height: 1.6;
}
pre.show+p img{
	margin-top: 60px;
}

.regulation-htmlbut{
	border:none;
	padding:10px;
	margin-top:0.3rem;
	transition: .3s;
	background:#ddd;
	cursor: pointer;
}
.regulation-htmlbut:hover{
	background:#eee;
}
.regulation-htmlbut.show{
	background:#111;
	color:#fff;
}
.regulation-htmlbut.show:hover{
	background:#222;
}

.regulation-color-container {
	margin-top: 30px;
}

.regulation-color-container ul {
	display: flex;
	flex-wrap:wrap;
	margin:0 -1%;
}
.regulation-color-container ul li{
	width: 23%;
	margin:1%;
	padding:1%;
	line-height: 1.4;
	list-style: none;
}
.regulation-color-container ul li dl{
	margin:0;
	list-style:none;
	overflow:auto;
	font-size: 1.4rem;
}
.regulation-color-container ul li dt{
	clear:both;
	width:50px;
	float:left;
	padding:1px 0;
	font-size: 1.4rem;
}
.regulation-color-container ul li dd{
	padding:1px 0 1px 50px;
}

.regulation-color-container ul li.ctext{
	color: #333;
	border:1px solid #999;
}
.regulation-color-container ul li.cannotation{
	color:#999;
	border:1px solid #999;
}
.regulation-color-container ul li.clink{
	color:#237cd5;
	border:1px solid #999;
}
.regulation-color-container ul li.chover{
	color:#237cd5;
	opacity: .5;
	border:1px solid #999;
}
.regulation-color-container ul li.caccent{
	color:#fff;
	background-color: #FFE452;
}
.regulation-color-container ul li.cconversion{
	color:#fff;
	background-color: #f3981c;
}
.regulation-color-container ul li.cminiConversion{
	color:#fff;
	background-color: #f3981c;
}
.regulation-color-container ul li.cpalebg{
	background-color: #f0f2f4;
}
.regulation-color-container ul li.clogomain{
	background-color:#00561F;
}
.regulation-color-container ul li.clogosub{
	color:#fff;
	background-color:#1F613E;
}
.regulation-color-container ul li.cwarn{
	color:#fff;
	background-color:#c80000;
}

/*************************** B-13. 検索結果 ***********************/
main#search article{
	counter-reset: h1;
}
main#search article section h2::before{
	counter-increment: h1;
    content: counter(h1) ". ";
    font-size: 80%;
}

#search p em{
	font-weight: bold;
	font-size: 150%;
	color:#009bde;
}
p.search-jump{
	display: none;
}
.search-btn{
	margin: 15px auto;
	width: 80%;
	max-width: 500px;
	text-align:center;
}
.search-btn input {
	background:#ddd;
	color: #333;
	padding:1rem 2.4rem;
	font-size:1.8rem;
	width: 100%;
	border: none;
	display:block;
	text-decoration:none;
	cursor: pointer;
	transition: .5s;
}
.search-btn input:hover {
	opacity: .5;
}

.hidden-box {
    margin: 1.0rem 0;
}
.hidden-box label.search-label {
    padding: 5px;
    text-align: center;
    margin:0 auto;
    font-weight: bold;
    border-radius: 5px;
    cursor :pointer;
    display: block;
    transition: .5s;
}
.hidden-box label.search-label::before {
    display: inline-block;
    content: '\f078';
    font-family: "Font Awesome 6 Free";
	font-weight:900;
    padding-right: 5px;
    transition: 0.2s;
}
.hidden-box label.search-label:hover {
    background: #eee;
}
.hidden-box input:checked ~ label.search-label:before {
     content: '\f00d';
     -webkit-transform: rotate(360deg);
     transform: rotate(360deg);
}
.hidden-box > input{
    display: none;
}
.hidden-box .hidden-show {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.5s;
}
.hidden-box input:checked ~ .hidden-show {
    padding: 10px 0;
    height: auto;
    opacity: 1;
}

ul.tags{
	display: flex;
}
ul.tags li{
	text-align: center;
	list-style: none;
	margin-right: 8px;
}
ul.tags li a{
	background:#f0f2f4;
	color: #333;
	border-radius: 5px;
	padding:2px 8px 4px;
	font-size: 1.4rem;
}
ul.tags li a::before{
	content:"#";
}

/*************************** B-14. 内部ページ ***********************/
.page-header{
	text-align: center;
    position:relative;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 0 0 0;
}
.page-header-aside h1{
    text-align: left;
}
p.page-header{
    text-align: center;
    margin-bottom: 0;
    width: 100%;
    position:relative;
    margin: 0;
}
.page-header img{
	width: 100%;
	height: auto;
}
.page-header div{
    width: 100%;
    aspect-ratio: 100/15.4;
    background: #aaa;
}

/*B-14-1 エリア*/
.area-map{
    position: relative;
    z-index: 1;
}
.area-map > ul{
    list-style: none;
}
.area-map > ul > li{
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}
.area-map > ul > li > a{
    display: block;
    padding:8px 5px;
    width: 12rem;
    background:#f0f0f0;
    position: relative;
    transition:color .3s,background .3s;
    flex-shrink: 0;
}
.area-map > ul > li > a:hover{
    text-decoration:none;
    background: #eee;
}
.area-map > ul > li > a::after{
    position: absolute;
    content: '';
    border-left: 10px solid #f0f0f0;/*底辺*/
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    transition:.3s;
}
.area-map > ul > li > a:hover::after{
    border-left: 10px solid #eee;
}

.area-map > ul > li > ul{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 10px;
}
.area-map > ul > li > ul > li{
    text-align: center;
    margin: 4px 0;
}
.area-map > ul > li > ul > li:not(:last-child){
    margin-right: 10px;
}
.area-map > ul > li > ul > li > a{
    display: block;
    border-radius: 4px;
    border:1px solid #eee;
    padding:8px 5px;
    transition:color .3s, background .3s;
    position: relative;
    z-index: 2;
    /*
    pointer-events:none;
    */
}
.area-map > ul > li > ul > li.here > a{
	background: #ccc;
}
.area-map > ul > li > ul > li.map-has-store > a{
    pointer-events: inherit;
}
.area-map > ul > li > ul > li > a:hover{
    background: #f29600;
    color: #fff;
    text-decoration: none;
    opacity: 1;
}

#mapSvg {
    z-index: 1;
}
#mapSvg g path {
    cursor: pointer;
    fill:#eee;
    stroke:#fff;
    stroke-width:1.0;
    stroke-miterlimit:10;
    transition:fill .3s;
}
#mapSvg g.here path{
    fill:#80d0cc;
}
#mapSvg g line {
    fill: #ccc;
    stroke:#ccc;
    stroke-width:2.0;
    stroke-miterlimit:10;
}
.map-active {
    fill: #f29600 !important;
    background: #f29600 !important;
    color: #fff !important;
}

.area-map-prefecture ul{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}
.area-map-prefecture ul > li{
    text-align: center;
    margin-bottom: 1rem;
}
.area-map-prefecture ul > li:not(:last-child){
    margin-right: 10px;
}
.area-map-prefecture ul > li > a{
    display: block;
    border-radius: 4px;
    border:1px solid #eee;
    padding:8px 5px;
    transition:color .3s, background .3s;
}
.area-map-prefecture ul > li > a:hover{
	background: #f29600;
    color: #fff;
    opacity: 1;
}

.area-cities-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.5%;
}
.area-cities-container ul {
    width: 19%;
    margin: 0 0.5% 3%;
}
.area-cities-container ul li {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}
.area-cities-container ul li.here{
	background: #009bde;
	color: rgba(255,255,255,0.6);
}
.area-cities-container ul li.here::before{
	content: "\f0da";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-right: 3px;
    padding-left: 2px;
    color: #fff;
}
.area-cities-container ul li.here a {
    color: #fff;
}

.area-cities-container ul li a {
    color: #06f;
    text-decoration: none;
}
.area-cities-container ul li a:hover {
    text-decoration: underline;
}
.area-cities-container ul li strong{
    display: flex;
    align-items: center;
}
.area-cities-container ul li strong::before,
.area-cities-container ul li strong::after{
    border-top: 1px solid #ccc;
    content: "";
    flex-grow: 1;
}
.area-cities-container ul li strong::before {
    margin-right: 1rem;
}
.area-cities-container ul li strong::after {
    margin-left: 1rem;
}

.area-map-chomei{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -0.5%;
	list-style: none;
}
.area-map-chomei li{
	width: 15.6666%;
	margin: 0 0.5% 1%;
}
.area-map-chomei li::before{
	content: "\f0da";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-right: 3px;
    color: #333;
}

/*B-14-4 コーディング規定*/
code{
	background: #333;
	color: #ccc;
	padding: 3px;
}

/* B-14-5 試合結果(view) */
table.game-result {
	width: 100%;
	margin: 3rem 0 2rem;
}
table.game-result thead th {
	color: #333;
	padding: 15px;
	background: #eee;
	text-align: center;
	font-size: 2.0rem;
}
table.game-result thead th:nth-child(1) {width: 43%;}
table.game-result thead th:nth-child(2) {width: 14%;}
table.game-result thead th:nth-child(3) {width: 43%;}
table.game-result td.team{
	background:url(/images/common/contigo.svg) no-repeat 2% 50%;
	background-size: auto 90px;
	font-family: 'anton', sans-serif;
	font-size: 8.0rem;
}
table.game-result td.vs{
	font-size: 2.2rem;
	line-height: 1.6;
	color: #333;
}
table.game-result td.vs span{
	font-size: 1.6rem;
}
table.game-result td.opponent{
	font-family: 'anton', sans-serif;
	font-size: 8.0rem;
	background-repeat: no-repeat;
	background-position: 98% 50%;
	background-size: auto 80%;
}

table.game-result tr td {
	padding: 2rem 1rem;
	border-bottom: 1px solid rgba(255,255,255,0.2);
	border-left: 1px solid rgba(255,255,255,0.2);
	text-align: center;
	vertical-align: middle;
	color:#333;
}
table.game-result tbody tr {
	background: #F9F9F9;
}

.game-result-container{
	display: flex;
	justify-content: space-between;
}
.game-result-container section.game-result-box{
	width: 35%;
}
.game-result-container section dt{
	font-weight: bold;
	padding-bottom: 1.0rem;
	font-size: 1.8rem;
}
.game-result-container section dd{
	margin-bottom: 3.0rem;
}
.game-result-container div.game-result-box{
	width: 63%;
}
ul.game-result-gallery{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 -1%;
}
ul.game-result-gallery li{
	list-style: none;
	margin: 1%;
	width: 48%;
}
ul.game-result-gallery li img{
	width: 100%;
	height: auto;
}

div.game-result-next{
	display: flex;
}
div.game-result-next div{
	font-size: 2.4rem;
	margin-left: 2rem;
}
div.game-result-next div img{
	margin-left: 0.6rem;
}


/* B-14-6 試合結果（カテゴリー）*/
ul.result{
	display: flex;
	justify-content: center;
	margin: -30px auto 0;
}
ul.result + ul.result{
	margin: 10px auto;
}
ul.result li{
	list-style: none;
	margin: 8px 1%;
    font-size: 1.8rem;
}
ul.result li a{
	display: block;
	text-decoration: none;
    color: #06f;
    font-size: 1.8rem;
    font-weight: bold;
}

div.result table{
	width: 100%;
}
div.result table thead th{
	padding: 10px 1px;
	border-bottom: 2px solid #ccc;
	background: #f0f0f0;
}
div.result table thead th:nth-child(1){}
div.result table thead th:nth-child(2){}
div.result table thead th:nth-child(3){}
div.result table thead th:nth-child(4){}
div.result table thead th:nth-child(5){}

div.result table tbody td{
	padding: 15px 3px;
	text-align: center;
	vertical-align: middle;
}
div.result table tbody td:nth-child(1) {}
div.result table tbody td:nth-child(2) {}
div.result table tbody td:nth-child(3) {}
div.result table tbody td:nth-child(4) {}
div.result table tbody td:nth-child(4) img{
	width: 3.6rem;
	height: auto;
	margin-right: 4px;
}
div.result table tbody td:nth-child(5) {}
div.result table tbody tr:nth-child(even) {
	background: #eee;
}

div.result table tbody td em{
	display: block;
	text-align: center;
	background: #ccc;
	padding: 1px 1px 3px;
}
div.result table tbody td a{
	text-decoration: underline;
}


.result-options-wrapper{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
	margin-bottom: 4rem;
}
dl.result-options{
	width: 49.5%;
}
dl.result-options select{
    font-size: 16px;
    transition: .3s;
    border: 1px solid #EEEEEE;
    width: 100%;
    padding: 13px;
    margin: 0 auto;
    border-radius: 4px;
    background: #F0F0F0;
}

main article section.free-01{
    padding-bottom: 8rem;
    margin-top: 32px;
}
.free-01 h2{
    font-size: 2.4rem;
    letter-spacing: 2px;
    text-align: center;
    color: #302D2C;
    line-height: 2.4;
}
.free-01 h2 strong{
    display:inline-block;
    font-size: 1.6rem;
    background: #F2941D;
    color: #fff;
    border-radius: 50%;
    width: 68px;
    height:68px;
    line-height: 63px;
    margin: 0 1rem;
}
.free-01 h2 strong:first-letter{
    font-size: 4.3rem;
}
.free-01 h2 span{
    display: block;
    position: relative;
    margin-bottom: 10rem;
}
.free-01 h2 span:after{
    content: "";
    position: absolute;
    width: 19px;
    height: 22px;
    background-image: url(/ssw/images/icons/icon-arrow-down.svg);
    bottom: -3.5rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.free-01-strong:before{
    content: url(/images/img/free-02.png);
    position: absolute;
    top: 20%;
    left: -63%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.free-01-strong{
    text-align: center;
    position: relative;
    width: fit-content;
    margin: 0 auto;
}
.free-01-strong span{
    font-size: 4.8rem;
    font-weight: bold;
    width: fit-content;
    margin: 0 auto;
    color:#00561F;
    margin-bottom: 2rem;
    display: block;
}
.free-01-strong span:before{
    content: "";
    position: absolute;
    width: 68px;
    height: 32px;
    background-image: url(/ssw/images/icons/icon-h1.svg);
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.free-01-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 760px;
    margin: 0 auto 7rem;
}
.free-01-box .miniConversion{
    margin: 18px auto;
}
.free-01-box section{
    width: 46.5%;
    border-radius: 3rem;
    padding: 3rem 3rem 2rem;
}

.free-01-box h3{
    border:0;
    box-shadow: none;
    background: none;
    width: 100%;
}
.free-01-box h3:before{
    display: none;
}
.free-01-box h3:after{
    display: none;
}
.free-01-box-01{
    background: #fff;
    border: 3px solid #00561F;
}
.free-01-box-01 h3{
    color:#00561F;
    margin-bottom: 0.4rem;
    font-size: 2.4rem;
}
.free-01-box-02:before{
    content: url(/images/icons/popular.svg);
    position: absolute;
    top:-0.1rem;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.free-01-box-02 h3{
    margin-bottom: 1rem;
    font-size: 2.4rem;
}
.free-01-box-02 h3{
    color:#fff;
}
.free-01-box-02{
    position: relative;
    background: #00561F;
    color: #fff;
    border: 3px solid #1F613E;
}
.free-01-box-02 .free-01-box-0{
    background: #fff;
    color:#00561F;
}
.free-01-box-0{
    margin: 0 auto;
    width: 68px;
    height: 68px;
    line-height: 63px;
    letter-spacing: 2px;
    border-radius: 50%;
    background: #00561F;
    color: #fff;
    font-weight: bold;
    text-align: center;
}
.free-01-box-0:first-letter{
    font-size: 4.3rem;
}
.free-01-box-02 p{
    color:#fff;
}
.free-01-box p{
    font-size: 1.5rem;
    line-height: 1.6;
}
.free-01-box .miniConversion a{
    font-size: 1.6rem;
    padding: 2rem;
}
.free-02{
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 0 calc(50vw - 50% + 8px) 0;
}
.free-02 h4{
    background: #fff;
    color: #00561F;
}
.free-02 h4:before{
    border-color:#fff transparent transparent transparent;
}
.free-02 dl.table{
    color: #fff;
}
.free-02 dl.table dt{
    color:#fff;
    font-size: 1.5rem;
    width: 260px;
}
.free-02 dl.table dd{
	padding-left: 260px;
}
.free-02-container{
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 8rem 0 10rem;
}
.free-02-box{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10rem;
}
.free-02-box li{
    width: 30%;
    max-width: 180px;
    height:180px;
    border-radius: 50%;
    list-style: none;
    background: #F2941D;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    letter-spacing: 2px;
    padding-bottom: 2rem;
    position:relative;
}
.free-02-box li span{
    font-size: 2.4rem;
    font-weight: bold;
    margin-top: 1rem;
}
.free-02-box li:after{
    content: url(/images/img/free-01.png);
    position: absolute;
    bottom:-7rem;
}
.free-02-box li:nth-of-type(2):after{
    content: url(/images/img/free-03.png);
}
.free-02-box li:nth-of-type(3):after{
    content: url(/images/img/free-04.png);
}
.free-02 h2{
    position: relative;
    text-align: center;
}
.free-02 h2:before{
    content:"";
    position: absolute;
    bottom: -21px;
    width: 0;
    height: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border-style: solid;
    border-width: 22px 33px 0 33px;
    border-color: #FDFCF1 transparent transparent transparent;
}
.free-02 h3{
    position: relative;
    margin-bottom: 1rem;
}
.free-02 h3:before{
    content: url(/ssw/images/icons/icon-h1-white.svg);
    position: absolute;
    width: 68px;
    height: 32px;
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.free-02 section div:first-of-type{
    text-align: right;
    font-size: 1.4rem;
    color:#fff;
    margin-bottom: 1rem;
}
.free-02-box02{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-height: 9rem;
    flex-wrap: wrap;
}
.free-02-box02 li{
    list-style: none;
    margin-bottom: 1rem;
}
.bg-green p,
.bg-green ul li{
    color: #fff;
}
.bg-green{
    background: #00561F;
}
.bg-green h2{
    background:#FDFCF1;
    padding: 2.6rem;
    border-radius: 3rem;
    font-size: 3.2rem;
}
.bg-green h3{
    box-shadow: none;
}
.bg-green h3:after{
    display: none;
}
.price-01 ul li span{
    display: block;
}
.company-03 .free-02-box{
    justify-content: center;
}
.company-03 .free-02-box li{
    margin: 0 4rem;
    background: #00561F;
    color: #fff;
}
.industry-01 .largeT td a{
    display: block;
    line-height: 1.6;
}
.reason-01 h2{
    font-size: 3rem;
    line-height: 1.4;
    margin-bottom: 1.8rem;
}
.specified .reason-01 h3{
    font-size: 3rem;
    line-height: 1.4;
    margin-bottom: 1.8rem;
    border-bottom: 0px;
}

.reason-box{
    border-radius: 20px;
    background-color: #FFF;
    padding: 40px 0;
}
.reason-box h3{
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 30px;
}
.reason-box ul{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 880px;
    width: 100%;
    margin: 0 auto;
}
.reason-box ul li{
    list-style-type: none;
}
.reason-box ul li img{
    height: 50px;
    width: auto;
    display: block;
    margin: 0 auto;
}
.reason-box ul li span{
    display: block;
    font-size: 1.3rem;
    padding-top: 5px;
    text-align: center;
}

.specified h3 {
    color: #00561F;
    background: initial;
    width: 100%;
    border-radius: 0;
    border-bottom: #00561F 2px solid;
    max-width: initial;
    box-shadow: none;
    padding-bottom: 1rem;
    text-align: left;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}
.specified h3:before,
.specified h3:after{
    display: none;
}
main.column .specified h3:before{
    display: inline-block;
    position: relative;
    border: 0;
    left: 0;
    bottom: 0;
    width: fit-content;
    transform: initial;
    height: initial; 
}
main.column .specified-06 h3:before{
    content:counter(h2);
    padding: 2px 10px;
}
.specified .top-06{
    background: initial;
    padding: 0;
}
.specified h4{
    max-width: 600px;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}
.specified h4:before{
    display: none;
}
.specified h4:after{
    display: none;
}
.accordion-title {
    color: #00561F;
    cursor:pointer;
}
.accordion-content {
    display: none;
}
.specified .flex-container-one div.leftImg,
.specified .flex-container-one div.rightImg{
    padding-top: 0;
}
.specified .flow-section-container section:last-of-type {
    transform: translateY(110px);
}
main article section.specified-07{
    margin-top: 14rem;
}
.img-box{
    padding: 3rem 1rem;
}
.img-box img{
    width: 80%;
    display:block;
    margin:0 auto;
}
.center{
    text-align: center;
}
.tiny{
    padding-bottom: 5rem;
}
#view h1{
    text-align: left;
}
ol.listing.mt-1{
    margin-top: 1rem;
}

/*相馬さん確認用カラー変更*/
.top-03{
    background-color:#00561F ;
}
#top h1,
#top h2{
    background-color: #00561F;
}
#top h1::before, #top h2::before{
    border-top: 25px solid #00561F;
}
#top .top-03 h2,
#top .top-04 h2,
.top-04 a.more{
    color:#00561F;
}
.top-07-box{
    background-color: #00561F;
}
h4:before{
    display: none;
}
.area-12 > ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1%;
    /* background: url(/images/bg/bg-02.jpg) center repeat; */
    padding: 1rem 0;
}
.area-12 > ul > li {
    width: calc(100% / 6 - 2%);
    margin: 0.6rem 1%;
    background: #fff;
    list-style: none;
    padding: 0.4rem 0;
    text-align: center;
}
.area-cities-container {
    display: flex;
    flex-wrap: wrap;
    margin: -1rem -0.5%;
    width: 100%;
}
.area-cities-container ul {
    width: 19%;
    margin: 0 0.5% 3%;
}
.area-cities-container ul li {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}
#mapSvg {
    z-index: 1;
    width: 60%;
    margin-left: auto;
    margin-top: -18rem;
    margin-right: -8rem;
}
/*ページ下部のナビ*/
nav.child-pages > ul{
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin:0 -0.5%;
}
nav.child-pages > ul > li{
    width:32.3333%;
    margin:0 0.5% 0.5%;
    list-style:none;
}
@media screen and (max-width:767px){
    nav.child-pages > ul > li{
        width:100%;
        margin:0 0 3%;
    }
}
nav.child-pages > ul > li > a{
    font-size: 1.6rem;
    letter-spacing: 1px;
    display: block;
    background: #f5f5f5;
    padding:10px 3px;
    color: #333;
    text-decoration: none;
    text-align: center;
    display: flex;
    justify-content: center;
    transition: 0.5s;
}
nav.child-pages > ul > li > a:hover{
    background: #ccc;
}
nav.child-pages > ul > li > ul{
    padding-left:3px;
    padding-top:5px;
    margin-bottom: 15px;
    margin-left:10px;
    border-left:1px solid #ccc;
}
nav.child-pages > ul > li > ul > li{
    list-style: none;
    line-height: 2.0;
    margin-bottom: 5px;
}
nav.child-pages > ul > li > ul > li::before{
    content:"-";
    color: #ccc;
}
nav.child-pages > ul > li > ul > li > a{
    font-size: 1.4rem;
    line-height: 1.6;
}
nav.child-pages > ul > li > ul > li > a:hover{
    text-decoration: none;
}
nav.child-pages > ul > li > ul > li > ul{
    padding-left:3px;
    padding-top:5px;
    margin-bottom: 15px;
    margin-left:10px;
    border-left:1px solid #ccc;
}
nav.child-pages > ul > li > ul > li > ul > li {
    line-height: 2.0;
}
nav.child-pages > ul > li > ul > li > ul > li > a{
    font-size: 1.2rem;
}
nav.child-pages > ul > li > ul > li > ul > li::before{
    content:"-";
    color: #ccc;
}

/* column/fee/cheap */
.warning-section{
    background: #fff;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    border-left: 6px solid #C80000;
    padding:2rem;
}
.warning-section h2{
    color:#C80000;
}
.warning-section h2::before{
    content:"⚠";
    padding-right: 1rem;
}

div.hint{
    position: relative;
    background: #fff3cd;
    padding:3rem 2rem 0.4rem 2rem;
    border-radius: 2rem;
    margin: 2rem 0 1rem;
}
div.hint::before{
    content: '💡';
    position: absolute;
    top: -2rem;
    left: 1rem;
    padding: 0 1rem;
    font-size: 3rem;
}

ul.listbox{
    display: flex;
    flex-wrap: wrap;
    margin:0 -1%;
}
ul.listbox li{
    color:#00561F;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    font-size: 3.6rem;
    list-style: none;
    width: 48%;
    margin:0 1% 3%;
    padding:2rem 0 2.6rem;
    text-align: center;
    background:#fff;
    border-radius: 1rem;
    font-weight: bold;
}
ul.listbox li span{
    color:#333;
    font-size: 1.6rem;
    display: block;
    font-weight: normal;
    padding-top:1rem;
}

div.link{
    text-align: center;
}
div.link a{
    display: block;
    margin:0 auto;
    padding:2rem 1rem;
    background:#196734;
    color:#fff;
    width: 80%;
    max-width: 50rem;
    font-size: 2.0rem;
    border-radius: 1rem;
}

.conclusion-section{
    background: #fff;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    padding:2rem;
    margin-bottom:2rem;
}
.conclusion-section h2{
    text-align: center;
}
.conclusion-section p{
    width: 92%;
    max-width: 80rem;
    margin:0 auto 2rem;
}