@charset "UTF-8";
.containerLR {
    max-width: 1100px;
    display: flex;
    margin: 50px auto;
    _padding: 0 10px;
}

/* トップ */


/* Caee Study */

#case_study a.btpdf{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1rem;
    color: #fff;
    border: solid 1px #cb4525;
    background: #cb4525;
    border-radius: 2em;
    width: 200px;
    height: 50px;
	margin: 60px auto;
}

#case_study a.btpdf img{
	margin-right:10px;
	border:solid 1px #fff;
}

#case_study a.btpdf:after {
    content: '';
    width: 14px;
    height: 14px;
    -webkit-mask: url(../images/ico_blank.svg) 0 0 no-repeat;
    mask: url(../images/ico_blank.svg) 0 0 no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% auto;
    background-color: #ffd44d;
    background-size: auto;
    position: relative;
    left: 6px;
}

#case_study a.btpdf:hover{
	background: #fff;
    color: #333;
}

#case_study a.btpdf:hover img{
	border:solid 1px #cb4525;
	border-radius: 3px;
}

#case_study a.btpdf:hover:after {
	background-color: #cb4525;
}

#case_study .para{
	margin-bottom:80px;
}


#case_study .para h2{
	font-size:28px;
	border-left:6px solid #cb4525;
	padding-left:15px;
	margin-bottom:20px;
	display: flex;
    line-height: 1.1;
	font-weight: normal;
}

#case_study .para a.c_name{
	font-weight: bold;
	font-size:20px;
	margin-bottom:20px;
    line-height: 1;
	display: inline-block;
}

#case_study .para a.c_name:after {
    content: '';
    width: 14px;
    height: 14px;
    -webkit-mask: url(../images/ico_blank.svg) 0 0 no-repeat;
    mask: url(../images/ico_blank.svg) 0 0 no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% auto;
    background-color: #cb4525;
    background-size: auto;
    position: relative;
    left: 8px;
    display: inline-block;
}

#case_study .para a.c_name:hover{
	color:#cb4525;
}

#case_study .para p{
	font-size:18px;
	line-height: 2;
}


#case_study .thumb_wrap{
	border-radius:6px;
	background: #fbf8f0;
	padding:20px;
}

#case_study .thumb_wrap ul{
	width:100%;
	display: flex;
	flex-wrap: wrap;
	gap: 2%; /* 要素間の余白を2%に設定 */
}

#case_study .thumb_wrap ul li{
	width: calc((100% - 6%) / 4); /* 4枚並び：余白3つ分(2%×3=6%)を差し引き */
	margin-bottom: 1%;
	box-sizing: border-box;
}

#modal-container {
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, .6);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.modal-content {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    position: relative;
}
.modal-image {
    max-width: calc(100vw - 120px);
    max-height: calc(100vh - 60px);
    cursor: pointer;
}

.modal-head{
	position: fixed;
	top:0;
	width:100%;
	height:90px;
	_background: #fff;
	display: flex;
    align-items: center;
	justify-content: center;
	gap:20px;
}

.modal-head .bt_close{
	position: absolute;
	top:20px;
	right:20px;
	border: solid 1px #fff;
    padding: 10px;
    border-radius: 3px;
    color: #fff;
	cursor: pointer;
}

.modal-head .bt_close:hover{
	border: solid 1px #CB4525;
	background: #CB4525;
}

.modal-head .modal-nav {
    width: 50px;
    height: 50px;
    background:#000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10000;
}
.modal-head .modal-nav:hover {
    _background: #ff0000;
}
.modal-head .modal-nav img {
    width: 20px;
    height: 20px;
}
.modal-head .prev-nav {
display: inline-block;
    height: 60px;
    width: 60px;
    border-radius: 30px;
    border: 3px solid #CB4525;
    background: #fff url(../images/arrow_l.png) no-repeat center center;
    background-size: 10px auto;
    box-sizing: border-box;
    margin-right: 10px;
    cursor: pointer;
}
.modal-head .next-nav {
display: inline-block;
    height: 60px;
    width: 60px;
    border-radius: 30px;
    border: 3px solid #CB4525;
    background: #fff url(../images/arrow_r.png) no-repeat center center;
    background-size: 10px auto;
    box-sizing: border-box;
    cursor: pointer;
}

.modal-head .prev-nav:hover{
background: #CB4525 url(../images/arrow_l_on.png) no-repeat center center;
	background-size: 10px auto;
}

.modal-head .next-nav:hover{
background: #CB4525 url(../images/arrow_r_on.png) no-repeat center center;
	background-size: 10px auto;
}

.modal-head .modal-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
img.popup {
    cursor: pointer;
}

/* スマホ版 */
@media screen and (max-width: 768px) {
	#case_study .thumb_wrap ul{
		gap: 3%; /* スマホ版では余白を3%に */
	}
	
	#case_study .thumb_wrap ul li {
		width: calc((100% - 6%) / 3); /* 3枚並び：余白2つ分(3%×2=6%)を差し引き */
		margin-bottom: 1%;
	}
	.modal-nav {
        top: 10px;
        width: 40px;
        height: 40px;
    }
    .prev-nav {
        left: 10px;
    }
    .next-nav {
        right: 10px;
    }
    .modal-image {
        max-width: calc(100vw - 80px);
    }
}


/* Caee Study end */

.containerL.archive {
	width:100%;
}

.containerL.archive .colunmList li .liInner {
    display: block;
}

.containerL.archive .colunmList ul {
	margin-top: 30px;
    gap: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;*/
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: opacity 0.6s ease 0.4s;
    transition: opacity 0.6s ease 0.4s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
}

.containerL.archive .colunmList li {
    _border: 1px solid #dadada;
    width: 330px;
	border-radius: 6px;
	cursor: pointer;
}

.containerL.archive .colunmList li:hover .liTitle{
	color: #cb4525;
}

/* 左カラム */
.containerL {
    width: calc(100% - 270px);
}

.containerL .colunmList {}
.containerL .colunmList li {
    border: 1px solid #dadada;
	    -webkit-box-shadow: 11px 13px 27px 6px rgba(0, 0, 0, 0.08);
    box-shadow: 11px 13px 27px 6px rgba(0, 0, 0, 0.08);
}
.containerL .colunmList li .liInner {
    display: flex;
}
.containerL .colunmList li .liInner .liImg {
    height: 175px;
    overflow: hidden;
	border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.containerL .colunmList li .liInner .liImg img {
	width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);

}

.containerL .colunmList li:hover .liInner .liImg img {
	-webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.containerL .colunmList li .liInner .liText{
	padding:20px;
}

.containerL .colunmList li .liInner .liText .liCategory {
    padding-bottom: 10px;
}
.containerL .colunmList li .liInner .liText .liCategory a {
    display: inline-block;
    margin: 0 10px 0px 0;
    font-size: 13px;
    border-radius: 2em;
    background: #333;
    padding: 3px 12px;
    color: #fff !important;
}

.containerL .colunmList li .liInner .liText .liCategory a:hover {
	background: #cb4525;
}

.containerL .colunmList li .liInner .liText .liCategory a:first-child {
	_display: none;
}

.containerL .colunmList li .liInner .liText .liTitle {
    font-size: 15px;
    font-weight: bold;
    padding-bottom: 10px;
	transform: rotate(.03deg);
}
.containerL .dataDetail {
	transform: rotate(.03deg);
}
.containerL .dataDetail li .liInner {
    display: flex;
}
.containerL .dataDetail li .liInner .liImg {
    padding-right: 20px;
}
.containerL .dataDetail li .liInner .liImg img {
    width: 100%;
    width: 300px;
    border: 1px solid #dadada;
}
.containerL .dataDetail .dataCategory,
.containerL.archive .dataCategory{
    padding-bottom: 10px;
	display: flex;
	align-items: center;
}

.containerL .dataDetail .dataCategory p,
.containerL.archive .dataCategory p{
	font-weight: bold;
	font-size:14px;
}

.containerL.archive .dataCategory ul{
	display: flex;
	margin-left:20px;
}

.containerL.archive .dataCategory ul li{
	margin: 0 10px;
}

.containerL.archive .dataCategory ul li.current a{
	color:#cb4525;
}

.containerL.archive .dataCategory ul li a{
	position: relative;
}

.containerL.archive .dataCategory ul li.current a:before{
background-color: #cb4525;
    bottom: -3px;
    content: "";
    height: 1px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 100%;
}

.containerL.archive .dataCategory ul li a:hover{
	color: #cb4525;
}

.containerL.archive .dataCategory ul li a:hover:before{
	background-color: #cb4525;
    bottom: -3px;
    content: "";
    height: 1px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 100%;
}

.containerL .dataDetail .dataCategory a {
    display: inline-block;
    margin: 0 10px 0px 0;
    font-size: 13px;
    border-radius: 2em;
    background: #333;
    padding: 3px 12px;
    color: #fff !important;
}
.containerL .dataDetail .dataCategory a:hover {
    background: #cb4525
}
.containerL .dataDetail .dataTag {
   padding: 20px 0 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.containerL .dataDetail .dataTag .day_area{
	transform: rotate(.03deg);
	    font-size: 14px;
}

.containerL .dataDetail .dataTag .tag_area{

}

.containerL .dataDetail .dataTag li {
    position: relative;
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 4px 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid #dadada;
    border-radius: 4px;
    margin: 0 8px 8px 0;
}
.containerL .dataDetail .dataTag a {
    overflow: hidden;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
	transform: rotate(.03deg);
}
.containerL .dataDetail .dataTag li:hover {
    border: 1px solid #000;
}
.containerL .dataDetail .dataTitle h1{
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 50px;
	line-height: 1.2;
	display: block;
}
.containerL .dataDetail .dataImg {
    width: 100%;
	line-height: 1.2;
    margin-bottom: 20px;
    max-height: 533px;
    overflow: hidden;
}
.containerL .dataDetail .dataImg img {
    width: 100%;
}
.containerL .dataDetail .dataContents {
    font-size: 16px;
    line-height: 1.8;
    padding-bottom: 25px;
}
.containerL .dataDetail .pagebtn {
    margin: 40px auto 40px;
    background: #fcfaf4;
    padding: 30px 0;
    border-radius: 5px;
}
.containerL .dataDetail .pagebtn a {
    position: relative;
    display: block;
    width: 280px;
    background-color: #333;
    color: #fff;
    font-family: "akrobat";
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    letter-spacing: 3.5px;
    height: 70px;
    line-height: 68px;
    -webkit-box-shadow: 11px 13px 27px 6px rgba(0, 0, 0, 0.08);
    box-shadow: 11px 13px 27px 6px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    -webkit-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out;
    margin: 0 auto;
	border-radius: 5px;
}

.containerL .dataDetail .pagebtn a span{
	position: relative;
    z-index: 10;
}

.containerL .dataDetail .pagebtn a:hover {
    color: #fff;
}

.containerL .dataDetail .pagebtn a:hover:after {
  width: 500px;
  height: 500px;
  opacity: 1;
}

.containerL .dataDetail .pagebtn a:before {
	content: "";
    _background: url(../images/icon-arrow-white.webp) no-repeat right center;
    width: 32px;
    height: 11px;
    background-size: 100%;
    position: absolute;
    top: 50%;
    margin-top: -5.5px;
    right: 32px;
    -webkit-transition: -webkit-transform 0.2s ease-out;
    transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.containerL .dataDetail .pagebtn a:after {
	content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #cb4525;
    border-radius: 50%;
    -webkit-transition: 0.7s cubic-bezier(0.475, 0.425, 0, 0.995);
    transition: 0.7s cubic-bezier(0.475, 0.425, 0, 0.995);
    right: auto;
    right: -100px;
    bottom: -100px;
}


/* 右カラム */
.containerR {
    width: 270px;
    padding-left: 50px;
}
.containerR .aside {
    padding: 16px 16px;
    border: 1px solid #dadada;
    background: #fff;
    width: 100%;
    margin-bottom: 30px;
	border-radius: 3px;
}
.containerR .aside .tit {
    padding: 0 0 4px 0;
    font-size: 16px;
    font-weight: 500;
    display: block;
    border-bottom: 1px solid #dadada;
    margin-bottom: 16px;
	transform: rotate(.03deg);
}
.containerR .side_banner {
    margin-bottom: 20px;
	display: none;
}
.containerR .side_banner img {
    width: 100%;
}
.containerR .side_banner a:hover {
    opacity: 0.6;
}
.containerR .aside.side_category li {
    position: relative;
    padding-left: 15px;
}

.containerR .aside.side_category li:hover a{
    color:#cb4525;
}

.containerR .aside.side_category li:before {
    content: "";
    position: absolute;
    top: 0.7em;
    left: 0;
    width: 5px;
    height: 5px;
    background-color: #8b6b4e;
    border-radius: 50%;
}
.containerR .aside.side_tag li {
    position: relative;
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 4px 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid #dadada;
    border-radius: 4px;
    margin: 0 8px 8px 0;
}
.containerR .aside.side_tag a {
    overflow: hidden;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
	transform: rotate(.03deg);
}
.containerR .aside.side_tag li:hover {
    border: 1px solid #000;
}
.containerR .aside.side_new li {
    position: relative;
    margin-bottom: 16px;
    border-bottom: 1px solid #dadada;
    padding-bottom: 16px;
	cursor: pointer;
}
.containerR .aside.side_new li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.containerR .aside.side_new li .liInner .liImg {
	max-height: 102px;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid #dadada;
	border-radius: 4px;
}

.containerR .aside.side_new li .liInner .liImg img {
    width: 100% ! important;
	height: auto;
	border: solid 2px #fff;
	border-radius:6px;
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.containerR .aside.side_new li:hover .liInner .liImg img {
	-webkit-transform: scale(1.1);
          transform: scale(1.1);
}


.containerR .aside.side_new li .liInner .liText .liCategory {
    padding-bottom: 5px;
}
.containerR .aside.side_new li .liInner .liText .liCategory a {
    display: inline-block;
    margin: 0 10px 5px 0;
    font-size: 13px;
    border-radius: 2em;
    background: #333;
    padding: 3px 12px;
    color: #fff !important;
}

.containerR .aside.side_new li .liInner .liText .liCategory a:hover{
    background: #cb4525
}

.containerR .aside.side_new li:hover .liInner .liText .liTitle a{
	color:#cb4525;
}

.containerR .aside.side_new li:hover .liInner .liImg{
	border: 1px solid #cb4525;
}

.containerR .aside.side_new li .liInner .liText .liTitle {
    font-size: 14px;
    font-weight: bold;
    padding-bottom: 0;
	transform: rotate(.03deg);
}
/*フッター*/
.secPickup ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.secPickup h4 {
    font-weight: normal;
    font-size: 2.0625rem;
    text-align: center;
    padding-bottom: 30px;
    display: block;
}
.secPickup .pickText {
    font-weight: normal;
    font-size: 1.1rem;
    text-align: center;
    padding-bottom: 30px;
}
.secPickup ul li {
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    width: calc(33.3% - 20px);
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.secPickup ul li:hover {
    background: #fdf8f0;
    border: 1px solid #d34b4b;
}
.secPickup ul li img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}
.secPickup ul li h3 {
    font-size: 22px;
    margin: 10px 0;
    color: #d34b4b;
    padding-bottom: 10px;
    display: block;
    min-height: 80px;
}
.secPickup ul li p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    padding-bottom: 20px;
    min-height: 90px;
}
.secPickup ul li img {
    width: 100%;
}

.secOmitsumori {
    max-width: 2560px;
    margin: 0 auto;
    height: 145px;
    background: url(../images/access_bg_pnk.webp) repeat-x center center/cover;
    display: flex;
    align-items: center;
}
.secOmitsumori .bgWht {
    max-width: 800px;
    width: calc(100% - 20px);
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 30px 20px 32px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.0625rem;
    letter-spacing: 0.06em;
}
.secOmitsumori .bgWht div {
    width: auto;
}
.secOmitsumori .bgWht a {
    display: block;
    width: 335px;
    transition: all 0.4s;
}
.secOmitsumori .bgWht a img {
    width: 100%;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 0 0 rgba(0, 0, 0, 0.2);
}
.secOmitsumori .bgWht a:hover {
    transform: translate(0, 2px);
}
.secOmitsumori .bgWht a:hover img {
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
}
.secOmitsumori2 {
    width: 100%;
    margin: 50px auto;
    height: 145px;
    background: #cb4525;
    display: flex;
    align-items: center;
    border-radius: 6px;
    border: solid 10px #de7c65;
}

body.column_top .secOmitsumori2 {
	width: 1100px;
	margin:150px auto 100px;
}

.secOmitsumori2 .bgWht {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    border-radius: 10px;
    padding: 20px 30px 20px 32px;
    height: 94px;
    align-items: center;
    justify-content: space-between;
    font-size: 1.0625rem;
    letter-spacing: 0.06em;
}
.secOmitsumori2 .bgWht div {
    width: auto;
    color: #fff;
    font-size: 1.2rem;
    transform: rotate(.03deg);
    font-weight: bold;
}
.secOmitsumori2 .bgWht a {
    display: block;
    width: 310px;
    transition: all 0.4s;
    border-radius: 6px;
    box-shadow: 0 5px 0 0 rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    background: #fff;
    transform: rotate(.03deg);
	text-align: center;
	font-weight: bold;
	font-size: 20px;
}

.secOmitsumori2 .bgWht a:hover {
    transform: translate(0, 2px);
	text-decoration: none;
	color:#cb4525!important;
}

/* 関連記事 */
.secCategoryColumnW ul {
    display: flex;
}
.secCategoryColumnW ul li {
    width: 25%;
    padding: 0 10px;
}
.secCategoryColumnW ul li .columnImg {
    padding-bottom: 10px;
}
.secCategoryColumnW ul li .columnImg img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border: 1px solid #dadada;
}
.secCategoryColumnW ul li .columnCategory {
    display: inline-block;
    padding: 0 10px;
    background: #225daa;
    border-radius: 8px;
    font-size: 14px;
    line-height: 28px;
    color: #fff;
    margin-bottom: 5px;
}
.secCategoryColumnW ul li .columnTitle {
    font-size: 18px;
}
.secCategoryColumn {
    padding: 50px 0 0;
}
.secCategoryColumn .related-faq__title {
        display: block;
    font-weight: normal;
    font-size: 2.0625rem;
    text-align: center;
    letter-spacing: -0.04em;
    margin-bottom:70px;
    position: relative;
    line-height: 1.4;
}
.secCategoryColumn ul {
    display: flex;
	gap: 50px;
}
.secCategoryColumn ul li {
    width: calc(100% / 3);
    padding: 0px;
}
.secCategoryColumn ul li .columnImg {
    margin-bottom: 15px;
    max-height: 160px;
    overflow: hidden;
    border: 1px solid #dadada;
	border-radius: 5px;
}
.secCategoryColumn ul li .columnImg img {
    width: 100%;
    object-fit: cover;
}
.secCategoryColumn ul li .columnCategory {
    padding-bottom: 10px;
}
.secCategoryColumn ul li .columnCategory a {
    display: inline-block;
    padding: 0 10px;
    background: #225daa;
    border-radius: 8px;
    font-size: 14px;
    line-height: 28px;
    color: #fff;
}
.secCategoryColumn ul li .columnTitle {
    font-size: 18px;
	transform: rotate(.03deg);
}
@media screen and (max-width: 1000px) {
    .containerLR {
        display: block;
        margin: 50px auto;
        padding: 0 15px;
    }
    /* 左カラム */
    .containerLR {
        display: block;
        margin: 50px auto;
        padding: 0 15px;
    }
    .containerL {
        width: 100%;
        padding-top: 20px;
    }
    .containerL .colunmList {}
    .containerL .colunmList li {
        padding: 16px 16px;
        border: 1px solid #dadada;
        margin-bottom: 0px;
		width: 100% !important;
    }
    .containerL .colunmList li .liInner {
        display: flex;
    }
    .containerL .colunmList li .liInner .liImg {
        padding-right: 0px;
    height: 100%;
    width: 100%;
    }
    .containerL .colunmList li .liInner .liImg img {
        width: 100%;
    height: 100%;
    }
    .containerL .colunmList li .liInner .liText .liCategory {
        padding-bottom: 10px;
    }
    .containerL .colunmList li .liInner .liText .liCategory div {
        display: inline-block;
        padding: 0 10px;
        background: #225daa;
        border-radius: 8px;
        font-size: 12px;
        line-height: 24px;
        color: #fff;
    }
    .containerL .colunmList li .liInner .liText .liTitle {
        font-size: 18px;
        font-weight: bold;
        padding-bottom: 10px;
    }
    .containerL .dataDetail {}
    .containerL .dataDetail li .liInner {
        display: flex;
    }
    .containerL .dataDetail li .liInner .liImg {
        padding-right: 20px;
    }
    .containerL .dataDetail li .liInner .liImg img {
        width: 100%;
        width: 300px;
    }
    .containerL .dataDetail .dataCategory {
        padding-bottom: 10px;
    }
    .containerL .dataDetail .dataCategory a {
        display: inline-block;
        padding: 0 10px;
        background: #333;
        border-radius: 2em;
        font-size: 14px;
        line-height: 28px;
        color: #fff;
    }
    .containerL .dataDetail .dataTitle {
        font-size: 24px;
        font-weight: bold;
        padding-bottom: 25px;
    }
	.containerL .dataDetail .dataTitle h1 {
  font-weight: bold;
  margin-bottom: 0px;
  line-height: 1.4;
  display: block;
  font-size: 5.6vw;
  letter-spacing: 0.14133vw;
}
    .containerL .dataDetail .dataImg {
        width: 100%;
    }
    .containerL .dataDetail .dataImg img {
        width: 100%;
        max-height: auto;
    }
    .containerL .dataDetail .dataContents {
        font-size: 16px;
        line-height: 1.8;
        padding-bottom: 25px;
    }
    .containerL .dataDetail .pagebtn {
       max-width: 100%;
    margin: 0px auto;
    }
    .containerL .dataDetail .pagebtn a {
        /*display: block;
        background: #ea617c;
        border-radius: 8px;
        color: #fff;
        font-size: 18px;
        text-align: center;
        font-weight: 400;
        padding: 10px 10px;*/
    }
    /* 右カラム */
    .containerR {
        width: 100%;
        padding-left: 0;
    }
    .containerR .aside {
        padding: 16px 16px;
        border: 1px solid #dadada;
        background: #fff;
        width: 100%;
        margin-bottom: 30px;
    }
    .containerR .aside h4 {
        padding: 0 0 16px 0;
        color: #001483;
        font-size: 16px;
        font-weight: 500;
        display: block;
    }
    .containerR .aside.side_category li {
        position: relative;
        padding-left: 15px;
    }
    .containerR .aside.side_category li:before {
        content: "";
        position: absolute;
        top: 0.7em;
        left: 0;
        width: 5px;
        height: 5px;
        background-color: #8b6b4e;
        border-radius: 50%;
    }
	
	.containerR .aside.side_new li .liInner .liImg {
  max-height: 100%;
	}
	
	.secCategoryColumn ul li .columnImg {
		max-height: 100%;
	}
	
	.containerL .dataDetail .dataTitle h1 {
  font-weight: bold;
  margin-bottom: 0px;
  line-height: 1.4;
  display: block;
  font-size: 5.6vw;
  letter-spacing: 0.14133vw;
}
	
	.secCategoryColumn .related-faq__title{
		margin-bottom: 50px;
	}
	
	
    /*フッター*/
    .secPickup ul {
        display: block;
    }
    .secPickup h4 {
        font-weight: bold;
        font-size: 1.25rem;
        line-height: 1.3;
        padding-bottom: 20px;
    }
    .secPickup .pickText {
        font-weight: normal;
        font-size: 1.0rem;
        text-align: center;
        padding-bottom: 20px;
    }
    .secPickup ul li {
        background: #fdfdfd;
        padding: 20px;
        width: 100%;
        margin-bottom: 20px;
    }
    .secPickup ul li h3 {
        font-size: 22px;
        padding-bottom: 10px;
        min-height: auto;
    }
    .secPickup ul li p {
        font-size: 14px;
        line-height: 1.6;
        padding-bottom: 20px;
        min-height: auto;
    }
    .secPickup ul li img {
        width: 250px;
    }
    /* faq */
    .secQA h2 {
        font-weight: bold;
        font-size: 1.25rem;
        line-height: 1.3;
    }
    .secQA {
        padding: 45px 1em 22px;
    }
    .secQA h3 {
        font-size: 0.9375rem;
        text-align: left;
    }
    .secQA .accordions-wrapper {
        margin-top: 35px;
    }
    .secQA .accordions-wrapper .accordion {
        font-size: 1rem;
    }
    .secQA {
        margin: 80px auto 0;
    padding: 0 15px;
    }
    .secQA .accordions-wrapper {
        margin-top: 25px;
    }
    .secQA .accordions-wrapper .accordion {
        padding: 8px 5px 8px 0;
        font-size: 0.875rem;
    }
    .secQA .accordions-wrapper .accordion--title .iconArea {
        width: 45px;
        _background: url(../images/ico_Q.webp) no-repeat center center/28px auto;
    }
    .secQA .accordions-wrapper .accordion--title svg {
        width: 28px;
        height: 28px;
        padding: 5px;
    }
    .secQA .accordions-wrapper .accordion--contents .iconArea {
        width: 45px;
        _background: url(../images/ico_A.webp) no-repeat center center/28px auto;
    }
    .secOmitsumori .bgWht a {
        width: 85%;
        margin: 7px auto;
        max-width: 300px;
    }
    .secOmitsumori {
        padding: 20px 5px;
    }
    .secOmitsumori .bgWht {
        font-size: 0.75rem;
        text-align: left;
        padding: 10px 10px 5px;
    }
    .secOmitsumori .bgWht br {
        display: none;
    }
	
    body.column_top .secOmitsumori2 {
        width: calc(100% - 30px) !important;
    margin: 100px auto 30px !important;
    height: auto;
    background: #cb4525;
    display: block;
    border-radius: 8px;
    }
	
	.secOmitsumori2 {
        width: 100% !important;
    margin: 30px auto 60px !important;
    height: auto;
    background: #cb4525;
    display: block;
    border-radius: 8px;
    }
	
    .secOmitsumori2 .bgWht {
        width: 100%;
        margin: 0 auto;
        display: block;
        flex-wrap: nowrap;
        border-radius: 10px;
        padding: 20px 30px 20px 32px;
        height: auto;
        align-items: center;
        justify-content: space-between;
        font-size: 1.0625rem;
        letter-spacing: 0.06em;
    }
    .secOmitsumori2 .bgWht div {
        width: auto;
        color: #fff;
        font-size: 1.1rem;
        padding-bottom: 10px;
    }
    .secOmitsumori2 .bgWht a {
        display: block;
        width: 100%;
        transition: all 0.4s;
		font-size: 18px;
    }
    .secOmitsumori2 .bgWht a img {
        width: 100%;
        display: block;
        border-radius: 10px;
        box-shadow: 0 5px 0 0 rgba(0, 0, 0, 0.2);
    }
    .secOmitsumori2 .bgWht a:hover {
        transform: translate(0, 2px);
    }
    .secOmitsumori2 .bgWht a:hover img {
        box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
    }
    /* 関連記事 */
    .secCategoryColumnW {
        padding: 20px 10px;
    }
    .secCategoryColumnW h4 {
        font-weight: bold;
        font-size: 1.25rem;
        line-height: 1.3;
        padding-bottom: 20px;
    }
    .secCategoryColumnW ul {
        display: block;
    }
    .secCategoryColumnW ul li {
        width: 100%;
        padding: 0 0;
        margin-bottom: 20px;
    }
    .secCategoryColumnW ul li .columnImg {
        padding-bottom: 10px;
    }
    .secCategoryColumnW ul li .columnImg img {
        height: 200px;
        width: 100%;
        object-fit: cover;
        border: 1px solid #dadada;
    }
    .secCategoryColumnW ul li .columnTitle {
        font-size: 18px;
    }
    .secCategoryColumn {
        padding: 0 0 50px 0;
    }
    .secCategoryColumn .related-faq__title {
        font-weight: bold;
        font-size: 1.25rem;
        line-height: 1.3;
        _padding-bottom: 20px;
    }
    .secCategoryColumn ul {
        display: block;
    }
    .secCategoryColumn ul li {
        width: 100%;
        padding: 0 0;
        margin-bottom: 20px;
    }
    .secCategoryColumn ul li .columnImg {
        padding-bottom: 0px;
    }
    .secCategoryColumn ul li .columnImg img {
        height: 200px;
        width: 100%;
        object-fit: cover;
    }
    .secCategoryColumn ul li .columnTitle {
        font-size: 16px;
    }
	
	
	.secPrice h2, .secFlow h2, .secQA h2, .secContact h2, body.column h4 {
  font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 10px;
		font-weight: normal;
}
	
	.secIssue h2::before, .secPrice h2::before, .secFlow h2::before, .secQA h2::before, .secContact h2::before, body.column h4::before {
  background-color: #CB4525;
  bottom: -20px;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 75px;
}
	
	
	
}