@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400..800&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');
/* CSS Document */
html{
}
body{
	font-family: "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
	background-color: #F7F3EB;
	color: #010000;
	background-image:
		linear-gradient(
			rgba(247, 243, 235, 0.75),
			rgba(247, 243, 235, 0.75)
		),
		url("https://cozytech.jp/system_panel/uploads/images/bg_img.png");
	background-repeat: repeat;
}
#root{overflow:hidden;}
h1,h2,h3,h4,h5,h6,p,li,a{
	font-size: clamp(14px, 1.1vw, 16px);
	font-weight: normal; 
	margin: 0;
	line-height: 1.6;
}

/* ---------- common ---------- */
.mg_b1{
	margin-bottom: 60px;
}
.mg_b2{
	margin-bottom: 40px;
}
.mg_t1{
	margin-top: 40px;
}
.col_60{
	flex-direction: column;
	gap: 60px;
}
.col_50{
	flex-direction: column;
	gap: 50px;
}
.col_40{
	flex-direction: column;
	gap: 40px;
}
.col_30{
	flex-direction: column;
	gap: 30px;
}
.shadow1{
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.concept_wrap{
	position: relative;
	box-sizing: border-box;
	padding: 70px 20px;
	background-color: #F8F6F0;
	border-radius: 10px;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	
}
.concept_wrap::before{
	content: "";
	position: absolute;
	left: clamp(20px, 4vw, 70px);
	bottom: clamp(20px, 3vw, 45px);
	width: clamp(100px, 12vw, 170px);
	aspect-ratio: 1 / 1;
	background-image: url("https://cozytech.jp/system_panel/uploads/images/deco1.png");
	background-position: left bottom;
	background-size: contain;
	background-repeat: no-repeat;
	pointer-events: none;
}
.concept_wrap::after{
	content: "";
	position: absolute;
	top: clamp(25px, 3vw, 50px);
	right: clamp(20px, 4vw, 70px);
	width: clamp(70px, 7vw, 110px);
	height: clamp(120px, 12vw, 190px);
	background-image: url("https://cozytech.jp/system_panel/uploads/images/deco2.png");
	background-position: right top;
	background-size: contain;
	background-repeat: no-repeat;
	pointer-events: none;
}
.concept_wrap > *{
	position: relative;
	z-index: 1;
}
.concept_wrap .logo{
	width: clamp(220px, 25vw, 340px);
	padding-bottom: 50px;
	border-bottom: #CCCCCC 1px solid;
}
.concept_wrap .txtbox h2{
	font-weight: 900;
}
.titlebox1{
	flex-direction: column;
	gap: 5px;
	align-items: flex-start;
	width: 100%;
}
.titlebox2{
	flex-direction: column;
	gap: 5px;
	width: 100%;
}
.titlebox3 p,
.titlebox3 h2{
	display: block;
	width: max-content;
	max-width: 100%;
	overflow: hidden;
	white-space: nowrap;
	clip-path: inset(0 100% 0 0);
}
.titlebox3 p{
	animation: title_en_in 1.8s steps(25, end) 0.4s forwards;
}

.titlebox3 h2{
	animation: title_jp_in 1.6s steps(19, end) 2.3s forwards;
}
@keyframes title_en_in{
	0%{
		clip-path: inset(0 100% 0 0);
	}
	100%{
		clip-path: inset(0 0 0 0);
	}
}

@keyframes title_jp_in{
	0%{
		clip-path: inset(0 100% 0 0);
	}
	100%{
		clip-path: inset(0 0 0 0);
	}
}

.works_wrap{
	background-color: #286431;
	border-radius: 50px 50px 0 0;
}

.works_wrap .title_wrap{
	max-width: 1440px;
	margin: 0 auto;
	justify-content: space-between;
	width: 100%;
}
.works_wrap .title_wrap .titlebox1{
	width: auto;
}
.works_wrap{
	width: 100%;
	overflow: hidden;
	flex-direction: column;
	gap: clamp(45px, 5vw, 70px);
	background-color: #286431;
	border-radius: clamp(28px, 3vw, 50px) clamp(28px, 3vw, 50px) 0 0;
	box-sizing: border-box;
}

.works_wrap .works_swiper{
	width: 100%;
	overflow: hidden;
}

.works_wrap .webgene-blog{
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	width: max-content;
	transition-property: transform;
	box-sizing: content-box;
}

.works_wrap .webgene-blog .webgene-item{
	flex-shrink: 0;
	width: clamp(600px, 68vw, 960px);
	height: auto;
	margin-top: 0 !important;
	padding: clamp(12px, 1.5vw, 30px);
	background-color: #F8F6F0;
	border-radius: 7px;
	box-sizing: border-box;
	transition: opacity ease 0.3s;
}

.works_wrap .webgene-blog .webgene-item > a{
	display: block;
	width: 100%;
	height: 100%;
}

.works_wrap .webgene-blog .webgene-item .imgbox{
	position: relative;
	width: 100%;
	aspect-ratio: 2 / 1;
	margin-bottom: 14px;
	overflow: hidden;
	border-radius: 4px;
}

.works_wrap .webgene-blog .webgene-item .imgbox img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform ease 0.5s;
}

.works_wrap .webgene-blog .webgene-item > a:hover{
	opacity: 1;
}

.works_wrap .webgene-blog .webgene-item:hover .imgbox img{
	transform: scale(1.04);
}


.works_wrap .webgene-blog .webgene-item .bottombox{
	width: 100%;
	gap: 20px;
	align-items: center;
	justify-content: flex-start;
}

.works_wrap .webgene-blog .webgene-item .bottombox .cate{
	position: static;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	padding: 4px 10px;
	background-color: #4779A8;
	border-radius: 20px;
	line-height: 1;
	color: #fff;
}

/* ---------- more ---------- */
.more a{
	position: relative;
	padding: 18px 20px;
	background-color: #286431;
	min-width: 160px;
	border-radius: 5px;
	border: none;
}
.more a::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 18px;
	width: 7px;
	height: 11px;
	background-image: url("https://cozytech.jp/system_panel/uploads/images/arrow1.svg");
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	transform: translateY(-50%);
	transition: ease 0.3s;
}
.more a:hover::after{
	transform:translate(3px,-50%);
}
.more a .en{
	width: 100%;
	color: #fff;
	font-family: "Sen", sans-serif;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1;
	text-align: center;
	padding-left: 30px;
	padding-right: 30px;
}
.more_w a{
	background-color: inherit;
	border: #fff 1px solid;
}
.more2 a{
	position: relative;
	max-width: 100%;
	min-width: 220px;
	width: auto;
}
.more2 a::after{
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	width: 100%;
	height: 100%;
	transition: ease 0.3s;
	z-index: 1;
}
.more2 a:hover::after{
	transform: translate(-5px,-5px);
}
.more2 a > div{
	position: relative;
	z-index: 2;
	gap: 10px;
	border-radius: 10px;
}
.more2 a .icon{
	width: 36px;
	aspect-ratio: 1 / 1;
	border: #010000 solid 1px;
	border-radius: 50%;
	transition: ease 0.3s;
}
.more2 a:hover .icon{
	transform: translateX(3px);
}
.more2 a .icon i{
	color: #010000;
	font-size: 15px;
}
.more2 a p{
	font-family: "Sen", sans-serif;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1;
	font-weight: 600;
	font-size: clamp(18px, 1.5vw, 22px);
}
.more2_w a .icon{
	border: #fff solid 1px;
}
.more2_w a .icon i{
	color: #fff;
}
.more3 a{
	background-color: #fff;
}
.more3 a::after{
	background-image: url("https://cozytech.jp/system_panel/uploads/images/arrow2.svg");
}
.more3 a .en{
	color: #3A3D40;
}

.more4{
	width: 100%;
	max-width: 1000px;
}
.more4 a{
	display: block;
	width: 100%;
	max-width: none;
}

.more4 a > div{
	width: 100%;
	padding: 18px 15px 18px 20px;
	background-color: #286431;
	border-radius: 3px;
	box-sizing: border-box;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
.more4 a .icon{
	width: 36px;
	aspect-ratio: 1 / 1;
	border: #fff solid 1px;
	border-radius: 50%;
	transition: ease 0.3s;
}
.more4 a:hover .icon{
	transform: translateX(3px);
}
.more4 a .icon i{
	color: #fff;
	font-size: 15px;
}
.more4 a p{
	font-family: "Sen", sans-serif;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1;
	font-weight: 400;
	font-size: clamp(20px, 2.5vw, 34px);
}
/* ---------- header ---------- */
.header{
	justify-content: space-between;
	padding: 15px 40px;
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
	background-color: #F7F3EB;
}
.header .logo{
	width: clamp(100px, 23vw, 180px);
}
.header .head_menu{
	gap: 30px;
}
.header .head_menu .ul{
	gap: 30px;
}
.header .head_menu .ul .li p{
	font-family: "Sen",  sans-serif;
	font-weight: 500;
	letter-spacing: 0.05em;
}
.header .menu-bt {
  display: none;
}

.menu-wrap.burgermenu_d {
    display: none;
    position: fixed;
    z-index: 98;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.menu-wrap.burgermenu_d::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #000;
    opacity: 0.9;
}
.menu-wrap.burgermenu_d > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 2;
    padding-left: 50px;
    padding-right: 50px;
}
.menu-wrap.burgermenu_d .ul {
    width: 90%;
    gap: 50px 30px;
    overflow: auto;
}
.menu-wrap.burgermenu_d .ul .menu_box {
    width: calc(100% / 3 - 60px / 3);
}
.menu-wrap.burgermenu_d .ul .menu_box a {
    position: relative;
    display: block;
    padding: 15px 50px;
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
    border-bottom: 2px solid #fff;
}
.menu-wrap.burgermenu_d .ul .menu_box a p {
    color: #fff;
}
.menu-wrap.burgermenu_d .ul .menu_box a p.en {
    font-size: clamp(18px, 2.6vw, 26px);
    font-family: "Sen",  sans-serif;
	font-weight: 500;
	letter-spacing: 0.05em;
}
.menu-wrap.burgermenu_d .ul .menu_box a p.jp {
    font-size: 16px;
    font-weight: 700;
}

/* ---------- pagetitle ---------- */
.pagetitle{
	position: relative;
	width: 100%;
	box-sizing: border-box;
	margin-top: 105px;
}
.pagetitle .imgbox{
	position: relative;
}
.pagetitle .imgbox img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	filter: brightness(0.75);
}
.pagetitle .txtbox{
	position: absolute;
	top: 40%;
	left: clamp(40px, 8vw, 130px);
	z-index: 2;
	flex-direction: column;
	align-items: flex-start;
	transform: translateY(-50%);
	gap: 5px;
}
.pagetitle .txtbox h1{
	line-height: 1;
}
/* ---------- footer ---------- */
.footer_online{
	position: relative;
	background-color: #286431;
}
.footer_online::after{
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background-color: rgba(0, 0, 0, 0.2);
	pointer-events: none;
}
.footer_online .txtbox{
	position: relative;
	z-index: 2; 
}
.footer_top .box_wrap{
	gap: 160px;
	border-bottom: 1px #CCCCCC4D solid;
	padding-bottom: 150px;
}
.footer_top .box{
	position: relative;
	width: calc(50% - 80px);
	gap: 40px;
	align-items: flex-start;
}
.footer_top .title-style1 h2::before {
    background: #fff;
}
.footer_top .box1::after {
    content: "";
    position: absolute;
    top: 0;
    right: -80px;
    width: 1px;
    height: 100%;
    background-color: rgba(204, 204, 204, 0.3);
}
.footer_top h2{
	display: flex;
	align-items: center;
	gap: 10px;
}
.footer_top h2::before{
	content: "";
	display: block;
	width: 15px;
	height: 1px;
	background-color: #fff;
	flex-shrink: 0;
}
.footer_top .more2 a > div{
	justify-content: flex-start;
}

.footer_a{
	padding-top: 0;
	background-color: #286431;
}
.footer_a p {
    color: #fff;
}

.footer_a .leftbox .snsbox .shop_bt {
	width: 100%;
    padding: 6px 18px;
    background-color: #A07125;
	justify-content: center;
}
.footer_a .leftbox .snsbox .shop_bt img{
	width: 16px;
}
.footer_a .rightbox .item img{
	width: 16px;
	height: 16px;
}
.footer_a .rightbox .sns{
	align-items: flex-start;
}
/* ---------- font ---------- */
.en_title{
	font-family: "Sen",  sans-serif;
	font-size: clamp(30px, 4.2vw, 60px);
	letter-spacing: 0.1em;
    font-weight: 500;
}
.en_title2{
	font-family: "Sen",  sans-serif;
	font-size: clamp(28px, 3.2vw, 46px);
	letter-spacing: 0.1em;
    font-weight: 500;
}
.en_title3{
	font-family: "Sen",  sans-serif;
	font-size: clamp(24px, 2.5vw, 36px);
	letter-spacing: 0.1em;
    font-weight: 500;
}
.default_title{ 
	font-size: clamp(22px, 2.5vw, 36px);
	letter-spacing: 0.05em;
}
.default_title2{
	font-size: clamp(18px, 1.8vw, 26px);
	letter-spacing: 0.05em;
}

.default_txt {
	font-size: clamp(16px, 1.4vw, 20px);
	letter-spacing: 0.05em;
}
.default_txt2 {
	font-size: clamp(15px, 1.25vw, 18px);
	letter-spacing: 0.05em;
}
.default_txt3{
	font-size: 16px;
	letter-spacing: 0.05em;
}



.font-sen{
	font-family: "Sen",  sans-serif;
}


/* ---------- default ---------- */
body .bg_img_wrap {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
body.on .bg_img_wrap .bg_img{
	display: none;
}
body .bg_img_wrap2 {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
body.on .bg_img_wrap2 > img{
	display: none;
}

a{
	display: inline-block;
	transition: ease 0.3s;
}
a:hover{
	opacity: 0.5;
}
a p,a,a i{
	color: #000000;
}
.font-medium{font-weight: 500;}
.font-semibold{font-weight: 600;}
.font-black{font-weight: 900;}

.pd_wrap{
	padding: 150px 80px 0;
}
.pd_wrap_all{
	padding: 150px 80px 150px;
}
.pd_wrap_side{
	padding-left: 80px;
	padding-right: 80px;
}
.pd_wrap_l{
	padding: 0px 0px 0 80px;
}
.pd_wrap_r{
	padding: 0px 80px 0 0px;
}
.cate_wrap > .cate{
	padding-top: 150px;
}


/* ANIME */
.sc-anime.topin.on{
	opacity:0;
	transform: translateY(-50px);
}
.sc-anime.topin.on.active{
	animation-name: topin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.bottomin.on{
	opacity:0;
	transform: translateY(50px);
}
.sc-anime.bottomin.on.active{
	animation-name: bottomin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.leftin.on{
	opacity:0;
	transform: translateX(-50px);
}
.sc-anime.leftin.on.active{
	animation-name: leftin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.rightin.on{
	opacity:0;
	transform: translateX(50px);
}
.sc-anime.rightin.on.active{
	animation-name: rightin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.fadein.on{
	opacity:0;
}
.sc-anime.fadein.on.active{
	animation-name: fadein;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.blurin.on{
	opacity:0;
	-ms-filter: blur(6px);
	filter: blur(6px);
}
.sc-anime.blurin.on.active{
	animation-name: blurin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.blurin2.on{
	opacity:0;
	transform: translateY(50px);
	-ms-filter: blur(6px);
	filter: blur(6px);
}
.sc-anime.blurin2.on.active{
	animation-name: blurin2;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}

@keyframes topin {
	0% {
		opacity:0;
		transform: translateY(-50px);
	}
	100% {
		opacity:1;
		transform: translateY(0px);
	}
}
@keyframes bottomin {
	0% {
		opacity:0;
		transform: translateY(50px);
	}
	100% {
		opacity:1;
		transform: translateY(0px);
	}
}
@keyframes leftin {
	0% {
		opacity:0;
		transform: translateX(-50px);
	}
	100% {
		opacity:1;
		transform: translateX(0px);
	}
}
@keyframes rightin {
	0% {
		opacity:0;
		transform: translateX(50px);
	}
	100% {
		opacity:1;
		transform: translateX(0px);
	}
}
@keyframes upin {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(0);
	}
}
@keyframes fadein {
	0% {
		opacity:0;
	}
	100% {
		opacity:1;
	}
}
@keyframes fadeout {
	0% {
		opacity:1;
	}
	100% {
		opacity:0;
	}
}
@keyframes blurin {
	0% {
		opacity: 0;
		-ms-filter: blur(6px);
		filter: blur(6px);
	}
	100% {
		opacity:1;
		-ms-filter: blur(0px);
		filter: blur(0px);
	}
}
@keyframes blurin2 {
	0% {
		opacity: 0;
		transform: translateY(50px);
		-ms-filter: blur(6px);
		filter: blur(6px);
	}
	100% {
		opacity:1;
		transform: translateY(0px);
		-ms-filter: blur(0px);
		filter: blur(0px);
	}
}
/* color */
.txt-color-normal{color: #000000;}
.txt-white{color: #ffffff;}
.txt-red{color: red;}
.txt-color1{color: #4779A8}
.txt-color2{color: #C99A18}
.txt-color3{color: #286431}
.txt-color4{color: #EBF5E5}
.bg-white{background-color: #ffffff;}
.bg-black{background-color: black}
.bg-color1{background-color: #286431}
.bg-color2{background-color: #F1F1E9}
.bg-color3{background-color: #021745}
.bg-color4{background-color: #EBF5E5}
.border-color1{border-color: #FFE93C}
.border-color2{border-color: #F1F1E9}
.border-color3{border-color: #021745}
.border-color4{border-color: #EBF5E5}

.hvr-txt-color-normal:hover{color: #000000;}
.hvr-txt-white:hover{color: #ffffff;}
.hvr-txt-red:hover{color: red;}
.hvr-txt-color1:hover{color: #FFE93C}
.hvr-txt-color2:hover{color: #F1F1E9}
.hvr-txt-color3:hover{color: #021745}
.hvr-txt-color4:hover{color: #EBF5E5} 
.hvr-bg-white:hover{background-color: #ffffff;}
.hvr-bg-black:hover{background-color: black}
.hvr-bg-color1:hover{background-color: #FFE93C}
.hvr-bg-color2:hover{background-color: #F1F1E9}
.hvr-bg-color3:hover{background-color: #021745}
.hvr-bg-color4:hover{background-color: #EBF5E5}
.hvr-border-color1:hover{border-color: #FFE93C}
.hvr-border-color2:hover{border-color: #F1F1E9}
.hvr-border-color3:hover{border-color: #021745}
.hvr-border-color4:hover{border-color: #EBF5E5}

/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}

/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
	.pd_wrap{
		padding: 150px 60px 0;
	}
	.pd_wrap_all{
		padding: 150px 60px 150px;
	}
	.pd_wrap_side{
		padding-left: 60px;
		padding-right: 60px;
	}
	.pd_wrap_l{
		padding: 0px 0px 0 60px;
	}
	.pd_wrap_r{
		padding: 0px 60px 0 0px;
	}
/* ---------- common ---------- */
	
/* ---------- header ---------- */
    .menu-wrap.burgermenu_d .ul {
        gap: 30px 30px;
    }
    .menu-wrap.burgermenu_d .ul .menu_box {
        width: calc(100% / 3 - 60px / 3);
    }
    .menu-wrap.burgermenu_d .ul .menu_box a p {
        font-size: 18px;
    }
/* ---------- footer ---------- */
	.footer_top .box_wrap{
		gap: 100px;
	}
	.footer_top .box1::after {
		right: -50px;
	}
	.footer_top .box {
		width: calc(50% - 50px);
		gap: 30px;
	}
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
/* ---------- common ---------- */
/* ---------- header ---------- */
	.header .head_menu {
        display: none;
    }
    .header .menu-bt {
        display: block;
        position: relative;
        width: 60px;
        aspect-ratio: 1 / 1;
        cursor: pointer;
		background-color: #222;
		border-radius: 4px;
    }
	.header .menu-bt .line {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 30px;
        height: 20px;
	}
	.header .menu-bt .line > div {
		content: "";
		position: absolute;
		width: 100%;
		height: 2px;
		background-color: #fff;
		left: 0;
		transition: ease 0.3s;
	}
    .header .menu-bt .line > div:nth-of-type(1) {
		top: 0;
	}
	.header .menu-bt .line > div:nth-of-type(2) {
		top: 50%;
		transform: translateY(-50%);
	}
	.header .menu-bt .line > div:nth-of-type(3) {
		bottom: 0;
	}
	.header .menu-bt.active .line > div:nth-of-type(1) {
		top: 50%;
		transform: translateY(-50%) rotate(45deg);
	}
	.header .menu-bt.active .line > div:nth-of-type(2) {
		top: 50%;
		transform: translateY(-50%) translateX(50%);
		opacity: 0;
	}
	.header .menu-bt.active .line > div:nth-of-type(3) {
		bottom: 50%;
		transform: translateY(50%) rotate(-45deg);
	}
	
    .menu-wrap.burgermenu_d .ul {
        gap: 30px 50px;
    }
    .menu-wrap.burgermenu_d .ul .menu_box {
        width: calc(100% / 2 - 50px / 2);
    }
    .menu-wrap.burgermenu_d .ul .menu_box a p {
        font-size: 16px;
    }
/* ---------- footer ---------- */
    .footer_top .box_wrap{
        flex-direction: column;
		gap: 40px;
    }
    .footer_top .box1::after{
        top: auto;
        right: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: rgba(204, 204, 204, 0.3);
    }
    .footer_top .box1{
        padding-bottom: 40px;
    }
    .footer_top .box{
        width: 80%;
    }
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.pd_wrap{
		padding: 100px 50px 0;
	}
	.pd_wrap_all{
		padding: 100px 50px 100px;
	}
	.pd_wrap_side{
		padding-left: 50px;
		padding-right: 50px;
	}
	.pd_wrap_l{
		padding: 0px 0px 0 50px;
	}
	.pd_wrap_r{
		padding: 0px 50px 0 0px;
	}
	.cate_wrap > .cate{
		padding-top: 100px;
	}
/* ---------- common ---------- */
	.col_60{
		gap: 40px;
	}
	.col_50{
		gap: 35px;
	}
	.col_40{
		gap: 30px;
	}
	.col_30{
		gap: 20px;
	}
	.concept_wrap .logo{
		padding-bottom: 35px;
	}
	
	.works_wrap{
		gap: 40px;
		border-radius: 30px 30px 0 0;
	}

	.works_wrap .webgene-blog .webgene-item{
		width: 82vw;
		padding: 14px;
		border-radius: 6px;
	}

	.works_wrap .webgene-blog .webgene-item .imgbox{
		aspect-ratio: 1.6 / 1;
		margin-bottom: 10px;
		border-radius: 4px;
	}
	.pagetitle .txtbox{
		left: 80px;
		gap: 2px;
	}
/* ---------- header ---------- */
	.header {
		padding: 15px 20px;
	}
	.header .menu-bt {
        width: 50px;
    }
    .menu-wrap.burgermenu_d .ul {
        gap: 30px;
    }
    .menu-wrap.burgermenu_d .ul .menu_box {
        width: calc(100% / 2 - 30px / 2);
    }
/* ---------- footer ---------- */
    .footer_top .box{
        width: 100%;
    }
    .footer_top .box_wrap{
        padding-bottom: 100px;
    }
	.footer_a .logo {
		max-width: 180px;
		margin-left: auto;
		margin-right: auto;
	}
}
/* ---------- スマートフォン ---------- */
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.pd_wrap{
		padding: 80px 20px 0;
	}
	.pd_wrap_all{
		padding: 80px 20px 80px;
	}
	.pd_wrap_side{
		padding-left: 20px;
		padding-right: 20px;
	}
	.pd_wrap_l{
		padding: 0px 0px 0 20px;
	}
	.pd_wrap_r{
		padding: 0px 20px 0 0px;
	}
	.cate_wrap > .cate{
		padding-top: 80px;
	}
/* ---------- common ---------- */
	.sp_br span{
		display: inline-block;
	}
	.titlebox3{
		width: 100%;
	}

	.titlebox3 p,
	.titlebox3 h2{
		width: 100%;
		max-width: 100%;
		white-space: normal;
		overflow-wrap: anywhere;
	}
	.pagetitle {
		margin-top: 70px;
	}
	.pagetitle .txtbox{
		left: 30px;
		gap: 5px;
	}
	.pagetitle .txtbox p{
		line-height: 1;
	}
	.pagetitle .txtbox{
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		padding: 20px;
		box-sizing: border-box;
		transform: none;
		align-items: center;
		justify-content: center;
		text-align: center;
		gap: 5px;
	}

	.pagetitle .txtbox p,
	.pagetitle .txtbox h1{
		width: 100%;
		text-align: center;
	}
/* ---------- header ---------- */
	.header {
		padding: 10px 15px;
	} 
	.header .menu-bt {
        width: 40px;
    }
	.header .menu-bt .line {
        width: 26px;
        height: 16px;
	}
    .menu-wrap.burgermenu_d > div {
        padding: 120px 0 50px;
    }
    .menu-wrap.burgermenu_d .ul {
        gap: 0 10px;
    }
    .menu-wrap.burgermenu_d .ul .menu_box {
        width: calc(50% - 5px);
    }
    .menu-wrap.burgermenu_d .ul .menu_box a {
        padding: 20px 0;
    }
    .menu-wrap.burgermenu_d .ul .menu_box a p.en {
        font-size: 16px;
    }
    .menu-wrap.burgermenu_d .ul .menu_box a p.jp {
        font-size: 13px;
    }
/* ---------- footer ---------- */
    .footer_top .box_wrap{
        padding-bottom: 40px;
    }
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}
