@charset "utf-8";


/*------------------------------------------------------

   common

-------------------------------------------------------*/
:root {
	--base-color1: #241506;
	--base-color2: #453333; /* 茶色系 */
	--base-color3: #4d4746; /* グレー系 */
	--base-color4: #fbf8f1; /* 背景色系 */
	--base-color5: #dacbcb; /* 薄いグレー系 */
	--base-color6: #aea29a; /* リンクテキスト、アイコン背景色 */
	--base-color7: #d9e1ec; /* post系のボーダー色 */
    --base-font-size: 15px;
    --base-fontS-size: 11px;
    --base-fontM-size: 18px;
    --base-fontM22-size: 18px;
    --base-fontM25-size: 21px;
    --base-fontM30-size: 25px;
    --base-fontL-size: 36px;
}

body {
	color: var(--base-color1);
	font-size: var(--base-font-size);
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 2px;
	position: relative;
	background-color: var(--base-color4);
    min-width: 1260px;
}
.sp {
	display: none;
}
input, select, textarea, radio, checkbox, button {
	font-family: 'Noto Sans JP', sans-serif;
}

.inner {
    width: 100%;
    max-width: 1630px;
    min-width: 1260px;
	height: 100%;
    margin: auto;
    position: relative;
}
.inner-in {
    margin: 0 100px;
	height: 100%;
    position: relative;
}

/* off */
.off a {
    cursor: default !important;
    color: #ccc !important;
}

/* nav-line */
.nav-line a {
	opacity: 1 !important;
	text-decoration: none !important;
    position: relative;
}
.nav-line a:after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    border-top:solid 1px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .3s;
}
.nav-line a:hover:after {
    transform-origin: left top;
    transform: scale(1, 1);
}

/* arrow */
i.arrow {
    display: inline-block;
    width: 100px;
    height: 2px;
    background: var(--base-color2);
    margin-left: 50px;
    vertical-align: 6px;
    position: relative;
}
i.arrow:after {
	content: '';
	display:block;
	width: 6px;
	height: 6px;
	border-top:solid 2px var(--base-color2);
	border-right:solid 2px var(--base-color2);
	transform: rotate(45deg);
	position: absolute;
	right:0;
	top: -3px;
}

/* clip */
.clip {
    width: 130px;
    height: 140px;
    margin-left: -65px;
    background-image: url(../img/cmn/clip.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: -70px;
    left: 50%;
    z-index: 10;
}
.clip.clip-s {
    width: 100px;
    height: 107px;
    margin-left: -50px;
}

/* color */
.text-white * {
	color: #fff !important;
}
/* bg */
.bg-white {
	background-color: #fff !important;
}
.bg-basecolor {
	background-color: var(--base-color4) !important;
}

/* font */
.Quicksand {
    font-family: 'Quicksand', sans-serif;
}



/*------------------------------------------------------

   header style

-------------------------------------------------------*/
#global-header {
	width: 100%;
    background: rgba(255,255,255,0.8);
	position: fixed;
	left:0;
	top: 0;
	z-index: 10000;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#global-header .inner {
    height: 125px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.site-title {
    width: 224px;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}
.site-title a {
	display: inline-block;
}


#main-nav {
    max-width: calc(100% - 310px);
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}
.main-nav__list {
    display: flex;
    flex-wrap: wrap;
}
.main-nav__list > li:not(:first-child) {
    margin-left: 60px;
}
.main-nav__list li > a,
.main-nav__list li > span {
	color: var(--base-color1);
	letter-spacing: 2px;
	cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.main-nav__list ul {
    padding: 20px;
    background: #fff;
	visibility: hidden;
	opacity: 0;
    position: absolute;
	z-index: -10;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.main-nav__list > li:hover ul {
	visibility: visible;
	opacity: 1;
	z-index: 1
}
.main-nav__list > li ul li {
	position: relative;
	padding-left: 15px;
	font-size: 16px;
}
.main-nav__list > li ul li:before {
	content: '';
	display:block;
	width: 6px;
	height: 6px;
	border-top:solid 2px;
	border-right:solid 2px;
	transform: rotate(45deg);
	position: absolute;
	left:0;
	top: 8px;
}

#global-header.scrolled .inner {
	height:60px;
}
#global-header.scrolled .site-title {
	width:150px;
}
#global-header.scrolled .main-nav__list {
	font-size: 16px;
}

/* ----------------------------

   contents common

-------------------------------*/
#contents {
	position: relative;
	overflow: hidden;
}

.contents {
	padding: 180px 0;
}


/* contents-catch */
.contents-catch {
	text-align:center;
	margin-bottom: 100px;
}
.contents-catch.left {
	text-align:left;
}
.contents-catch__copy {
	font-size: var(--base-fontS-size);
}
.contents-catch__copy.ja {
	font-size: var(--base-fontM-size);
}
.contents-catch__title {
	font-size: var(--base-fontL-size);
	font-weight: normal;
	color: var(--base-color2);
	line-height: 1.2;
	margin-top: 24px;
}
.contents-catch__title.has-border:after {
    content: '';
    display: block;
    max-width: 440px;
    height: 20px;
    background: var(--base-color2);
    margin: 50px auto 0;
}
.contents-catch__desc {
	line-height: 2;
	margin-top: 40px;
}

/* main-catch */
.main-catch .contents-catch__title {
	margin-top: 80px;
}


/* - ver-flex */
.contents-catch.ver-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
	margin-bottom: 90px;
}
.contents-catch.ver-flex .ver-flex__in {
    background: var(--base-color4);
    padding: 40px;
    min-width: 520px;
}

/* note */
.note p {
	background-image: linear-gradient( 90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, #ffff 50%, #ffff 50%),
                      linear-gradient( 180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 97%, var(--base-color5) 97%, var(--base-color5) 100%);
    background-size:4px 100%, 100% 2em;
    line-height:2em;

}

/* to-detail */
.to-detail {
	text-align: right;
}
.to-detail.left {
	text-align: left;
}
.to-detail a {
	font-size: var(--base-fontM22-size);
	font-weight: 500;
	color: var(--base-color2);
}

.to-detail.block a {
    font-size: var(--base-fontM25-size);
    display: block;
    padding: 40px 0;
    text-align: center;
    max-width: 620px;
    width: 100%;
    background-color: var(--base-color4);
    border: solid 1px var(--base-color6);
}
.to-detail.block a i.arrow {
	background: var(--base-color6);
}
.to-detail.block a i.arrow:after {
	border-top: solid 2px var(--base-color6);
    border-right: solid 2px var(--base-color6);
}

.to-detail.gray {
    margin-top: 50px;
}
.to-detail.gray a {
	color: var(--base-color5);
}
.to-detail.gray a i.arrow  {
	background:var(--base-color5);
}
.to-detail.gray a i.arrow:after {
	border-top: solid 2px var(--base-color5);
    border-right: solid 2px var(--base-color5);
}

/* .open-window */
.open-window {
	max-width: 1000px;
	text-align:center;
	margin: 100px auto 0;
}
.open-window a {
	display: block;
	padding: 10px 40px;
	position: relative;
	color: #fff;
	background: var(--base-color6);
	position: relative;
}
.open-window a i {
	display: block;
	width: 23px;
	height: 24px;
	margin-top: -12px;
	background-image: url(../img/cmn/out_link.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	position: absolute;
	left: 10px;
	top: 50%;
}

/* .to-reserve */
.to-reserve {
	max-width: 760px;
	text-align:center;
	margin: 120px auto 0;
}
.to-reserve a {
	display: block;
	font-size: var(--base-fontM25-size);
	padding: 40px;
	position: relative;
	color: var(--base-color4);
	background: #b81b1b;
	position: relative;
}
.to-reserve a i {
	background:var(--base-color4);
}
.to-reserve a i:after {
	border-top: solid 2px var(--base-color4);
    border-right: solid 2px var(--base-color4);
}

/* .to-contact */
.to-contact {
	max-width: 760px;
	text-align:center;
	margin: 120px auto 0;
}
.to-contact a {
	display: block;
	font-size: var(--base-fontM25-size);
	padding: 40px;
	position: relative;
	color: var(--base-color4);
	background: var(--base-color1);
	position: relative;
}
.to-contact a i {
	background:var(--base-color4);
}
.to-contact a i:after {
	border-top: solid 2px var(--base-color4);
    border-right: solid 2px var(--base-color4);
}

/* click-zoom */
.click-zoom {
	text-align:center;
}
.click-zoom i {
	display :inline-block;
	width: 23px;
	height: 23px;
	background: url("../img/cmn/icon_zoom.png") no-repeat center;
	background-size: contain;
	vertical-align: middle;
	margin-right: 10px;
}


/* cmn-contents */
.cmn-contents {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 190px;
}
.cmn-contents__text {
    width: 50%;
    position: relative;
    z-index: 10;
}
.cmn-contents__text-s {
	font-size: var(--base-fontS-size);
}
.cmn-contents__text-title {
	color: var(--base-color2);
	font-size: var(--base-fontL-size);
	font-weight: 500;
	margin-top: 30px;
    white-space: nowrap;
}
.cmn-contents__text-title span {
    background: linear-gradient(transparent 4%, #fff 0%);
    line-height: 1.5;
}
.cmn-contents__text-desc {
	line-height: 2;
	margin-top: 50px;
}
.cmn-contents__text-desc span {
    background: linear-gradient(transparent 4%, #fff 0%);
    padding: 0 2px 3px 0;
}

.cmn-contents.bg2 .cmn-contents__text-title span,
.cmn-contents.bg2 .cmn-contents__text-desc span {
    background: linear-gradient(transparent 4%, var(--base-color4) 0%)
}

.cmn-contents__img {
    text-align: right;
    width: 50%;
}
.cmn-contents__img img {
    max-width: calc(50vw + 100px);
    margin-left: -100px;
}

.cmn-contents__text-hasborder {
	padding: 20px;
	border: solid 1px;
}
.cmn-contents__text-hasborder h3 {
	font-size: var(--base-fontM20-size);
	font-weight: 500;
}
.cmn-contents__text-hasborder p {
	font-size: var(--base-fontM20-size);
}



/* modelhouse__in */
.modelhouse__list > li{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	margin-bottom: 80px;
}
.modelhouse__list > li:last-child{
	margin-bottom: 0;
}
.modelhouse__list > li .thumb {
	width: 58%;
	position: relative;
}
.modelhouse__list > li .thumb img {
	border: solid 3px var(--base-color6);
}
.modelhouse-maker {
    padding: 20px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
}
.modelhouse-maker01 {
    font-size: 10px;
    color: var(--base-color6);
}
.modelhouse-maker02 {
    font-size: var(--base-fontM30-size);
    font-weight: 500;
    line-height: 1.2;
    margin-top: 10px;
    color: #3d3737;
}
.modelhouse__list > li .info {
    color: var(--base-color2);
	width: 38%;
}
.modelhouse-tag {
	margin-top: 30px;
}
.modelhouse-tag span {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    background: var(--base-color5);
    padding: 20px 30px;
    margin: 0 10px 10px 0;
}
.modelhouse-title {
    font-size: var(--base-fontM30-size);
    font-weight: bold;
    margin-bottom: 40px;
}
.modelhouse-comment {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 20px;
    border: dotted 1px var(--base-color5);
    border-radius: 10px;
	background:#fff;
}
.modelhouse-comment__icon {
    width: 30%;
}
.modelhouse-comment__text {
    width: 70%;
    padding-left: 5%;
    font-size: 17px;
}
.modelhouse-comment__text h4 {
    font-size: var(--base-font-size);
    margin-bottom: 10px;
}
.modelhouse-comment__text h4 span {
    font-size: var(--base-fontS-size);
	font-weight: normal;
	margin-left:10px;
}
.modelhouse-comment__text-name {
    font-size: 11px;
    margin-bottom: 10px;
}
.modelhouse__list .to-detail {
    margin-top: 40px;
}


/* cmn-modelhouse__bnr */
.cmn-modelhouse__bnr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: var(--base-color6);
    padding: 30px 40px;
    margin-top: 150px;
    border: solid 20px;
    position: relative;
}
.cmn-modelhouse__bnr-main {
    width: calc(100% - 440px);
    padding-right: 100px;
    position: relative;
}
.cmn-modelhouse__bnr-main .text01 {
	font-size: 12px;
	margin-bottom: 20px;
}
.cmn-modelhouse__bnr-main .text02 {
	font-size: var(--base-fontM22-size);
	color: var(--base-color4);
	line-height:2;
	margin-bottom: 40px;
}
.cmn-modelhouse__bnr-main .text02:last-of-type {
	margin-bottom: 0;
}
.cmn-modelhouse__bnr-sub {
    width: 440px;
    text-align: center;
}
.cmn-modelhouse__bnr-sub h3 {
	font-size: var(--base-fontM30-size);
	font-weight: normal;
}
.cmn-modelhouse__bnr-sub h3:after {
	content: '';
	display:block;
	width: 419px;
	height: 42px;
	background-image: url("../img/home/contact_fuki.png");
	background-position :center;
	background-repeat: no-repeat;
	background-size: cover;
	margin:0 auto 5px;
}
.cmn-modelhouse__bnr-sub p {
	font-size: 40px;
	font-weight:bold;
}
.cmn-modelhouse__bnr-sub p a {
	display:block;
	color: var(--base-color2);
	background: #fff;
	padding: 10px 0;
	text-align: center;
}

/* present */
.cmn-present__in {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1560px;
    margin: auto;
}
.cmn-present__text {
    line-height: 2;
    letter-spacing: 5px;
    width: 50%;
}
.cmn-present__text h2 {
	font-size: 52px;
	margin-bottom: 40px;
}
.cmn-present__text h2:after {
    content: '';
    display: block;
    width: 232px;
    height: 5px;
    margin-top: 60px;
    background: var(--base-color1);
}
.cmn-present__text p {
    font-size: var(--base-fontM-size);
    margin-bottom: 30px;
}
.cmn-present__img {
	width: 50%;
}

/* colmun */
.colmun {
    padding: 100px 40px 40px;
    border: solid 1px var(--base-color6);
	position: relative;
}
.colmun-arrow {
    transform: rotate(90deg);
    margin-left: -50px;
    position: absolute;
    left: 50%;
    top: -10px;
}
.colmun-arrow i.arrow {
    margin: 0;
    background: var(--base-color5);
}
.colmun-arrow i.arrow:after {
    border-top: solid 2px var(--base-color5);
    border-right: solid 2px var(--base-color5);
}
.colmun__list {
    display: flex;
    flex-wrap: wrap;
	margin-top: -50px;
}
.colmun__list > li {
    width: 48%;
    margin: 50px 0 0 4%;
    padding-bottom: 50px;
    border-bottom: solid 1px var(--base-color6);
}
.colmun__list > li a {
    display: flex;
    flex-wrap: wrap;
	color: var(--base-color1);
}
.colmun__list > li:nth-child(2n+1) {
    margin-left: 0;
}
.colmun__list > li:nth-child(n + 3) {
    border-bottom: none;
    padding-bottom: 0;
}
.colmun-thumb {
    width: 50%;
}
.colmun-info {
    width: 50%;
    padding-left: 5%;
}
.colmun-info__title {
    font-weight: 500;
    font-size: var(--base-fontM-size);
}
.colmun-info__date {
    font-size: 14px;
}
.colmun-info__desc {
    margin-top: 30px;
}


/*------------------------------------------------
   footer style
--------------------------------------------------*/
#global-footer {
	font-size: var(--base-font-size);
	padding: 140px 0 60px;
	background: #fff;
}
#global-footer .inner {
	padding: 0 15px;
}
.footer-main {
    display: flex;
    flex-wrap: wrap;
	margin-bottom: 50px;
}
.footer-main__logo {
    width: 266px;
}
.footer-main__logo img {
	width: 140px;
}
.footer-main__nav {
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
}
.footer-main__nav .sitemap {
}
.footer-main__nav .sitemap .title {
	font-size: var(--base-fontM22-size);
	font-weight: 500;
	margin-bottom: 50px;
}
.footer-main__nav .sitemap .sitemap__list > li{
	margin-bottom: 20px;
}
.footer-main__nav .sitemap .sitemap__list > li a {
	color: var(--base-color1);
}
.footer-main__nav .bnr {
	margin-left: 100px;
}
.footer-main__nav .bnr .bnr__list > li {
	margin-bottom: 10px;
	width: 350px;
}
.footer-main__nav .bnr .bnr__list > li a {
	display:block;
}

.footer-sub__list > li {
	display: inline-block;
	margin-right: 30px;
}
.footer-sub__list > li a {
	color: var(--base-color1);
}
.copyright {
	margin-top: 20px;
}

/* backtotop */
#backtotop {
	color: #fff;
	font-size: var(--base-fontM-size);
	font-weight:bold;
	width: 52px;
	line-height: 52px;
	text-align:center;
	cursor:pointer;
	background: #1b1b1b;
	border-radius: 52px;
	visibility: hidden;
	opacity: 0;
	position:fixed;
	right: 10px;
	bottom: 40px;
	z-index: 10;
   -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#backtotop.show {
	visibility: visible;
	opacity: 1;
	bottom: 50px;
}




/* -----------------------------------

media query

------------------------------------- */
@media (max-width: 1260px) {
	.inner {
		min-width: 100%;
		padding: 0 30px;
	}
	.inner-in {
		margin: 0;
	}
}

@media (max-width: 815px) {

	:root {
		--base-font-size: 13px;
		--base-fontM-size: 15px;
		--base-fontM22-size: 15px;
		--base-fontM25-size: 15px;
		--base-fontM30-size: 18px;
		--base-fontL-size: 25px;
	}

	body {
		min-width: 320px;
	}

	.sp { display: block !important; }
	.pc { display: none !important; }
	
	.inner {
		padding: 0 15px;
	}


	.clip,
	.clip.clip-s {
		width: 30px;
		height: 32px;
		margin-left: -15px;
		top: -20px;
	}

	i.arrow {
		width: 50px;
		margin-left: 20px;
		vertical-align: 4px;
	}

	#global-header .inner,
	#global-header.scrolled .inner {
		height: 50px;
	}
	.site-title,
	#global-header.scrolled .site-title {
		width: 120px;
	}

	#menu-btn {
		width: 24px;
		height: 10px;
		cursor: pointer;
		position: absolute;
		right: 15px;
		top: 20px;
		z-index: 100000000000000000;
	}
	#menu-btn span {
		display: block;
		width: 100%;
		height: 2px;
		background: #1b1b1b;
		position: absolute;
		left: 0;
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
		-moz-transition: all 300ms ease-in-out 0s;
		-webkit-transition: all 300ms ease-in-out 0s;
		-o-transition: all 300ms ease-in-out 0s;
		-ms-transition: all 300ms ease-in-out 0s;
		transition: all 300ms ease-in-out 0s;
	}
	#menu-btn span.t {
		top: 0;
	}
	#menu-btn span.m {
		top: 6px;
	}
	#menu-btn span.b {
		bottom: 0;
	}
	#menu-btn.active span.t {
		top: 4px;
		-moz-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	#menu-btn.active span.m {
		width: 0;
	}
	#menu-btn.active span.b {
		bottom: 4px;
		-moz-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	#sp-nav {
		width: 100%;
		height: calc(100vh - 50px);
		padding: 20px 0 50px;
		background: #fff;
		overflow: auto;
		visibility: hidden;
		opacity: 0;
		position: fixed;
		top: 50px;
		left: 0;
		z-index: -100;
	}
	#sp-nav.active {
		visibility: visible;
		opacity: 1;
		-webkit-transition: all 0.6s;
		transition: all 0.6s;
		z-index: 99999;
	}
	.sp-nav__list > li {
		padding: 10px;
		border-bottom: dotted 1px;
	}
	.sp-nav__list > li a {
		display: block;
		color: var(--base-color2);
	}
	.contents {
		padding: 90px 0;
	}
	.contents-catch {
		margin-bottom: 50px;
	}
	.contents-catch__title {
		margin-top: 24px;
		line-height: 1.7;
	}
	.contents-catch__title.has-border:after {
		height: 10px;
		margin: 30px auto 0;
	}
	.contents-catch__desc {
		text-align: left;
	}

	.contents-catch.ver-flex .ver-flex__in {
		padding: 24px 10px;
		min-width: 100%;
	}

/* cmn-contents */
	.cmn-contents {
		margin-bottom: 100px;
	}
	.cmn-contents__text {
		width: 100%;
		position: relative;
		left: auto;
	}
	.cmn-contents__text-title {
		white-space: normal;
	}
	.cmn-contents__text-title span {
		background: none;
	}
	.cmn-contents__text-desc {
		margin-top: 50px;
	}
	.cmn-contents__text-desc span {
		background: none;
	}
	.cmn-contents__img {
		text-align:center;
		width: 100%;
		margin-top: 30px;
	}
	.cmn-contents__img img {
		max-width: 100%;
		margin: 0;
	}

/* modelhouse */
	.modelhouse__list > li {
		margin-bottom: 40px;
		display: block;
	}
	.modelhouse__list > li .thumb {
		width: 100%;
		text-align: center;
		margin-bottom: 30px;
	}
	.modelhouse__list > li .info {
		width: 100%;
	}
	.modelhouse-comment__text {
		font-size: 12px;
		}

	.cmn-modelhouse__bnr {
		display: block;
		padding: 30px 020px;
		border: solid 10px;
	}
	.cmn-modelhouse__bnr-main {
		width: 100%;
		padding-right: 0;
		margin-bottom: 30px;
	}
	.cmn-modelhouse__bnr-sub {
		width: 100%;
	}
	.cmn-modelhouse__bnr-sub p {
		font-size: 30px;
	}
	.cmn-modelhouse__bnr-sub h3:after {
		width: 260px;
		height: 26px;
	}

/* present */
	.cmn-present__in {
		display: block;
	}
	.cmn-present__text {
		width: 100%;
		margin-bottom: 30px;
	}
	.cmn-present__text h2 {
		font-size: 26px;
		margin-bottom: 30px;
	}
	.cmn-present__text h2:after {
		margin-top: 30px;
	}
	.cmn-present__img {
		width: 100%;
		text-align: center;
	}

/* colmun */
	.colmun {
		padding: 60px 20px 40px;
	}
	.colmun-arrow {
		margin-left: -25px;
	}
	.colmun__list > li {
		width: 100%;
		margin: 50px 0 0;
	}
	.colmun__list > li:nth-child(3) {
		border-bottom: solid 1px;
		padding-bottom: 50px;
	}
	.colmun__list > li a {
		display: block;
	}
	.colmun-thumb {
		width: 100%;
		text-align: center;
		margin-bottom: 30px;
	}
	.colmun-info {
		width: 100%;
		padding-left: 0;
	}

/* to-detail */
	.to-detail a {
		font-size: 13px;
	}

/* footer */
	#global-footer {
		padding: 70px 0 30px;
	}
	.footer-main {
		display: block;
	}
	.footer-main__logo {
		width: 200px;
		margin-bottom: 50px;
	}
	.footer-main__nav {
		display: block;
	}
	.footer-main__nav .sitemap h3 {
		margin-bottom: 40px;
	}
	.footer-main__nav .bnr {
		margin-left: 0;
		margin-top: 60px;
		text-align: center;
	}
	.copyright {
		font-size: 10px;
	}





}


