@charset "utf-8";
@-webkit-keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

/* ======================================== *
 * scrollani
 * ======================================== */
.scrollani {
    opacity: 0;
    transition: all .8s ease;
}
.scrollani.show {
    opacity: 1;
    transform: none;
}
.scrollani--lr {
    transform: translate(-100px, 0);
}
.scrollani--rl {
    transform: translate(100px, 0);
}
.scrollani--up {
    transform: translate(0, 100px);
}
.scrollani--down {
    transform: translate(0, -100px);
}
.scrollani--scaleUp {
    transform: scale(.5);
}
.scrollani--scaleDown {
    transform: scale(1.5);
}
.scrollani--rotateL {
    transform: rotate(180deg);
}
.scrollani--rotateR {
    transform: rotate(-180deg);
}
@media print {
    .scrollani {
        opacity: 1;
        transform: none;
    }
}

:root {
    --primary: #00A7AC;
    --secondary: #27A8E1;
}
img {
    max-width: 100%;
    height: auto;
}
.h1Area {
    background-color: #00A7AC;
}
.h1Area.smallHeading h1 {
    color: #fff;
}

/* menu */
.newsSubNav {
	position: relative;
	height: 61px;
	line-height: 1;
}
@media only screen and (max-width: 767px) {
	.newsSubNav {
		height: 46px;
	}
}
.newsSubNav .newsSubNavWrap {
	background: #f6f6f6;
}
.newsSubNav .newsSubNavWrap.is-fixed {
	position: fixed;
	top: 116px;
	opacity: 0;
	width: 100%;
	z-index: 9;
	-webkit-box-shadow: 0 4px 5px -1px rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 5px -1px rgba(0, 0, 0, 0.1);
	-webkit-animation: fadeInDown 0.4s ease-in 0s forwards;
	animation: fadeInDown 0.4s ease-in 0s forwards;
}
@media only screen and (max-width: 767px) {
	.newsSubNav .newsSubNavWrap.is-fixed {
		/*top: 0;*/
        top: 50px;
	}
}
.newsSubNav .newsSubNavHead {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 auto;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
@media screen and (min-width: 768px), print {
	.newsSubNav .newsSubNavHead {
		max-width: 1200px;
		padding: 11px 20px;
	}
}
@media only screen and (max-width: 767px) {
	.newsSubNav .newsSubNavHead {
		padding: 8px 10px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
}
.newsSubNav .newsSubNavHead .gfBarlow {
	font-size: 30px;
	font-weight: 100;
}
@media only screen and (max-width: 767px) {
	.newsSubNav .newsSubNavHead .gfBarlow {
		font-size: 21px;
	}
}
.newsSubNav .newsSubNavHead .gfBarlow span {
	font-size: 16px;
	display: inline-block;
	margin-left: 10px;
}
.newsSubNav .newsSubNavHead .trigger {
	position: relative;
	width: 40px;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
}
@media only screen and (max-width: 767px) {
	.newsSubNav .newsSubNavHead .trigger {
		font-size: 10px;
		width: 30px;
	}
}
.newsSubNav .newsSubNavHead .trigger.is-active .triggerInner span {
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.newsSubNav .newsSubNavHead .trigger.is-active .triggerInner span:nth-child(1) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 13px;
}
@media only screen and (max-width: 767px) {
	.newsSubNav .newsSubNavHead .trigger.is-active .triggerInner span:nth-child(1) {
		top: 8px;
	}
}
.newsSubNav .newsSubNavHead .trigger.is-active .triggerInner span:nth-child(2) {
	-webkit-transform: translateX(3px);
	transform: translateX(3px);
	opacity: 0;
}
.newsSubNav .newsSubNavHead .trigger.is-active .triggerInner span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	bottom: 9px;
}
@media only screen and (max-width: 767px) {
	.newsSubNav .newsSubNavHead .trigger.is-active .triggerInner span:nth-child(3) {
		bottom: 8px;
	}
}
.newsSubNav .newsSubNavHead .trigger p {
	margin: 0;
	line-height: 1;
	margin-top: 2px;
}
.newsSubNav .newsSubNavHead .trigger .triggerInner {
	width: 35px;
	margin: 0 auto;
	position: relative;
	display: block;
	height: 25px;
}
@media only screen and (max-width: 767px) {
	.newsSubNav .newsSubNavHead .trigger .triggerInner {
		width: 30px;
		margin: 0 auto;
		position: relative;
		display: block;
		height: 18px;
	}
}
.newsSubNav .newsSubNavHead .trigger .triggerInner span {
	display: inline-block;
	height: 3px;
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	background: #000;
}
@media only screen and (max-width: 767px) {
	.newsSubNav .newsSubNavHead .trigger .triggerInner span {
		height: 2px;
	}
}
.newsSubNav .newsSubNavHead .trigger .triggerInner span:nth-child(1) {
	top: 0;
}
.newsSubNav .newsSubNavHead .trigger .triggerInner span:nth-child(2) {
	top: 0;
	bottom: 0;
}
.newsSubNav .newsSubNavHead .trigger .triggerInner span:nth-child(3) {
	bottom: 0;
}
.newsSubNav .newsSubNavBottom {
	display: none;
	position: absolute;
	z-index: 99;
	width: 100%;
	left: 0;
	top: 60px;
	background: rgba(246, 246, 246, 0.9);
	line-height: 1.8;
}
@media only screen and (max-width: 767px) {
	.newsSubNav .newsSubNavBottom {
		top: 46px;
	}
}
.newsSubNav .newsSubNavBottom .newsSubNavInner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 1200px;
	margin: 50px auto;
	padding: 0 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
	.newsSubNav .newsSubNavBottom .newsSubNavInner {
		margin: 10px auto;
		padding: 0 10px;
	}
}
.newsSubNav .newsSubNavBottom .newsSubNavInner .ph {
	margin-right: 80px;
    width: 200px;
}
@media only screen and (max-width: 767px) {
	.newsSubNav .newsSubNavBottom .newsSubNavInner .ph {
		display: none;
	}
}
.newsSubNav .newsSubNavBottom .newsSubNavInner .newsSubNavCont {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
@media only screen and (max-width: 767px) {
	.newsSubNav .newsSubNavBottom .newsSubNavInner .newsSubNavCont {
		display: block;
	}
}
.newsSubNav .newsSubNavBottom .newsSubNavInner .newsSubNavCont ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 50%;
	list-style-type: none;
	padding: 0;
}
@media only screen and (max-width: 767px) {
	.newsSubNav .newsSubNavBottom .newsSubNavInner .newsSubNavCont ul {
		width: 100%;
		margin: 0;
	}
}
.newsSubNav .newsSubNavBottom .newsSubNavInner .newsSubNavCont ul:nth-child(2) {
	width: 50%;
}
@media only screen and (max-width: 767px) {
	.newsSubNav .newsSubNavBottom .newsSubNavInner .newsSubNavCont ul:nth-child(2) {
		width: 100%;
	}
}
@media screen and (min-width: 768px), print {
	.newsSubNav .newsSubNavBottom .newsSubNavInner .newsSubNavCont ul li {
		text-indent: -10px;
		padding-left: 10px;
	}
    .newsSubNav .newsSubNavBottom .newsSubNavInner .newsSubNavCont ul li:nth-child(n+2) {
        margin-top: 20px;
    }
	.newsSubNav .newsSubNavBottom .newsSubNavInner .newsSubNavCont ul li:before {
		content: '';
		width: 5px;
		height: 1px;
		background: #000;
		display: inline-block;
		margin-right: 5px;
		vertical-align: 5px;
	}
}
.newsSubNav .newsSubNavBottom .newsSubNavInner .newsSubNavCont ul li a {
	color: #000;
	text-decoration: none;
	padding-bottom: 5px;
	background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #33bdc0), color-stop(50%, transparent));
	background-image: linear-gradient(to right, #33bdc0 50%, transparent 50%);
	background-position: 100% bottom;
	background-size: 200% 2px;
	background-repeat: no-repeat;
	-webkit-transition: background-position 0.5s ease-out;
	transition: background-position 0.5s ease-out;
}
@media all and (-ms-high-contrast: none) {
	.newsSubNav .newsSubNavBottom .newsSubNavInner .newsSubNavCont ul li a {
		padding-bottom: 0px;
	}
}
@media screen and (min-width: 768px), print {
	.newsSubNav .newsSubNavBottom .newsSubNavInner .newsSubNavCont ul li a {
		font-size: 16px;
	}
	.newsSubNav .newsSubNavBottom .newsSubNavInner .newsSubNavCont ul li a:hover {
		background-position: 0% bottom;
	}
}
@media only screen and (max-width: 767px) {
	.newsSubNav .newsSubNavBottom .newsSubNavInner .newsSubNavCont ul li a {
		display: block;
		padding: 10px;
		text-indent: -10px;
		padding-left: 20px;
		border-bottom: 1px solid #afafaf;
	}
	.newsSubNav .newsSubNavBottom .newsSubNavInner .newsSubNavCont ul li a:before {
		content: '';
		width: 5px;
		height: 1px;
		background: #000;
		display: inline-block;
		margin-right: 5px;
		vertical-align: 5px;
	}
	.newsSubNav .newsSubNavBottom .newsSubNavInner .newsSubNavCont ul li a .pc {
		display: none;
	}
}

svg.hidden {
    display: none;
}
.icon svg {
    width: 24px;
    height: 24px;
    fill: #00A7AC;
    vertical-align: middle;
}
.icon svg.icon_page {
	background: url(/pickup/7200G-2N/img/icon_page.png) no-repeat center center;
    background-size: 24px;
}

#first .photo {
    margin: 40px 30px;
}
#first .textbox {
    margin: 40px 30px;
    line-height: 2;
}
#first h2 {
    line-height: 1.5;
    font-size: 156.3%;
}
#first .logo7200g-2n {
    margin-top: -116px;
}
#first .logo7200g-2n .name {
    text-align: right;
    font-size: 68.8%;
    font-weight: bold;
}
#first .logo7200g-2n .name {
    font-size: 100%;
}
#first .logo7200g-2n .logo {
    width: 181px;
    margin-left: auto;
}
#first .prNav {
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}
#first .prNav .img {
    width: 182px;
    margin: 40px auto 20px;
}
#first .prNav ul {
    list-style: none;
    margin: 0 30px 40px;
    padding: 0;
}
#first .prNav li + li {
    margin-top: 20px;
}
#first .prNav li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #00A7AC;
    border: 1px solid #00A7AC;
    padding: 15px 20px;
}
#first .prNav li a .icon {
    flex: 0 0 24px;
    display: inline-block;
    margin-right: 14px;
}
#first .prNav li a span {
    flex: 1 0 0%;
}
@media screen and (max-width: 767px) {
	#first .logo7200g-2n {
		margin-top: 20px;
	}
    #first .prNav li a:active {
        text-decoration: none;
        opacity: 0.7;
    }
}
@media screen and (min-width: 768px) {
    #first {
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    #first .photo {
        flex: 0 0 456px;
        margin: 60px 0;
    }
    #first .textbox {
        flex: 0 0 704px;
        margin: 48px 0 60px;
        padding-left: 40px;
        max-width: 704px;
        font-size: 18px;
    }
    #first .textbox h2 {
        font-size: 30px;
    }
    #first .textbox p span {
        display: block;
    }
    #first .logo7200g-2n .name {
        font-size: 15px;
    }
    #first .logo7200g-2n .logo {
        width: 248px;
    }
    #first .prNav {
        flex: 0 0 100%;
        display: flex;
        justify-content: center;
        padding: 40px 0;
    }
    #first .prNav .img {
        flex: 0 0 auto;
        width: 124px;
        margin: 0;
    }
    #first .prNav ul {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        align-content: center;
        flex: 0 0 932px;
        margin: 0 0 0 40px;
    }
    #first .prNav li {
        flex: 0 0 456px;
    }
    #first .prNav li:nth-child(2) {
        margin-top: 0;
    }
    #first .prNav li:nth-child(even) {
        margin-left: 20px;
    }
    #first .prNav li a {
        padding: 18px 24px;
    }
    #first .prNav li a:hover {
        text-decoration: none;
        opacity: 0.7;
    }
}

.pageLink {
    margin: 60px 0;
    width: 100%;
    overflow-x: hidden;
}
.linkbox + .linkbox {
    margin-top: 50px;
}
.linkbox .photo {
    position: relative;
    margin-right: 30px;
}
.pageLink > div:nth-of-type(even) .photo {
    margin-right: 0;
    margin-left: 30px;
}
.linkbox .photo img {
    vertical-align: middle;
}
.linkbox .catch {
    position: relative;
}
.linkbox .catch span {
    position: absolute;
    left: 30px;
    top: 0;
    transform: translateY(-50%);
    background-color: #00A7AC;
    padding: 4px 6px;
    color: #fff;
    font-size: 75%;
}
.pageLink > div:nth-of-type(even) .catch span {
    left: auto;
    right: 30px;
}
.linkbox .title {
    margin: 28px 30px 10px;
    font-weight: bold;
    font-size: 137.5%;
    line-height: 1.3;
}
.pageLink > div:nth-of-type(even) .title {
    text-align: right;
}
.linkbox p {
    margin: 10px 30px 0;
    font-size: 81.3%;
    line-height: 2;
}
.linkbox a {
    display: block;
    border: 1px solid;
    margin: 14px 30px 0;
    padding: 14px 0;
    text-decoration: none;
    color: inherit;
    text-align: center;
    font-size: 81.3%;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .linkbox a:active {
        opacity: 0.7;
    }
}
@media screen and (min-width: 768px) {
    .pageLink {
        margin-bottom: 100px;
    }
    .linkbox + .linkbox {
        margin-top: 100px;
    }
    .linkbox .photo {
        width: 90%;
        height: 520px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
    .pageLink > div:nth-of-type(even) .photo {
        margin-right: 0;
        margin-left: auto;
    }
    .pageLink .workstyle .photo {
        background-image: url(../img/ChallengeforWorkstyle_kv_b.jpg);
    }
    .pageLink .safety .photo {
        background-image: url(../img/ChallengeforSafety_kv_b.jpg);
    }
    .pageLink .comfort .photo {
        background-image: url(../img/ChallengeforComfort_kv.jpg);
    }
    .pageLink .technology .photo {
        background-image: url(../img/NewTechnology_kv.jpg);
    }
    .pageLink .voice .photo {
        background-image: url(../img/UsersVoice_kv.jpg);
    }
    .pageLink .ecology .photo {
        background-image: url(../img/ChallengeforEcology_kv_b.jpg);
    }
    .pageLink .photo img {
        display: none;
    }
    .linkbox .catch {
        max-width: 1200px;
        margin: 0 auto;
    }
    .linkbox .catch span {
        left: 0;
        font-size: 111.2%;
    }
    .pageLink > div:nth-of-type(even) .catch span {
        left: auto;
        right: 0;
    }
    .linkbox .title {
        max-width: 1200px;
        margin: 38px auto 20px;
        font-size: 347.5%;
    }
    .linkbox p {
        max-width: 1200px;
        margin: 20px auto;
        font-size: 125.1%;
    }
    .pageLink > div:nth-of-type(even) p {
        text-align: right;
    }
    .linkbox .btn {
        max-width: 1200px;
        margin: 0 auto;
    }
    .linkbox a {
        width: 368px;
        margin-top: 20px;
        margin-left: 0;
        padding: 18px 0;
        font-size: 100%;
    }
    .pageLink > div:nth-of-type(even) a {
        margin-left: auto;
        margin-right: 0;
    }
    .linkbox a:hover {
        opacity: 0.7;
    }
}

.mainvisual {
    background-color: #fff;
}
.mainvisual .topics {
    position: relative;
    padding: 10px 24px 0;
}
.mainvisual .topics .catch {
    position: absolute;
    left: 24px;
    top: 0;
    transform: translateY(-75%);
    background-color: #00A7AC;
    color: #fff;
    padding: 4px 6px;
    letter-spacing: 0.05em;
}
.mainvisual .topics .text {
    color: #00A7AC;
    margin-top: 15px;
    font-size: 118.8%;
}
.mainvisual .topics h2 {
    margin: 15px 0;
    font-size: 175%;
}
.mainvisual .topics ul {
    padding-left: 0;
    margin: 0;
}
.mainvisual .topics li {
    list-style: none;
    position: relative;
    padding-left: 18px;
    font-size: 87.5%;
    line-height: 1.75;
}
.mainvisual .topics li::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #00A7AC;
    left: 0;
    top: 9px;
}
.mainvisual .topics li + li {
    margin-top: 8px;
}
.mainvisual .topics li a {
    color: inherit;
}
.mainvisual .topics li p {
    margin: 5px 0 0;
    font-size: 92.9%;
}
[id^="sect"] {
    margin: 0 24px;
    padding-top: 60px;
}
[id^="sect"] section + section {
    padding-top: 40px;
}
[id^="sect"] h3 {
    position: relative;
    margin: 0 0 20px;
    padding-bottom: 10px;
    font-size: 106.3%;
    line-height: 1.36;
}
[id^="sect"] h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #e6e6e6;
}
[id^="sect"] h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 3px;
    background-color: #00A7AC;
}
[id^="sect"] h4 {
    position: relative;
    margin: 0 0 10px;
    font-size: 107.2%;
    line-height: 1.75;
    padding-left: 14px;
}
[id^="sect"] h4::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 1.75em;
    background-color: #80d6d7;
    left: 0;
    top: 0;
}
[id^="sect"] h5 {
    margin: 20px 0 6px;
    font-size: 92.9%;
}
[id^="sect"] h5 ~ div {
    font-size: 92.9%;
}
[id^="sect"] .textbox {
    font-size: 87.5%;
    line-height: 1.75;
}
[id^="sect"] .textbox p {
    margin: 0;
}
[id^="sect"] .tag {
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
}
[id^="sect"] h4 + .text .tag {
    margin-top: 15px;
}
[id^="sect"] .tag span {
    flex: 0 0 auto;
    margin-bottom: 5px;
    margin-left: 5px;
    background-color: #00A7AC;
    padding: 1px 5px;
    color: #fff;
    border-radius: 5px;
    font-size: 85.8%;
}
[id^="sect"] .listText {
    text-indent: -1em;
    padding-left: 1em;
}
[id^="sect"] .kome {
    font-size: 85.8%;
    margin-top: 15px;
    text-indent: -1em;
    padding-left: 1em;
}
[id^="sect"] .photo {
    margin-top: 20px;
}
[id^="sect"] .photo img {
    vertical-align: middle;
}
[id^="sect"] .photo > div + div {
    margin-top: 20px;
}
[id^="sect"] .photo .text {
    margin-top: 10px;
    font-size: 87.5%;
}
[id^="sect"] .photo .text div + div {
    margin-top: 8px;
}
[id^="sect"] .photo .text .row {
    display: flex;
    align-items: center;
}
[id^="sect"] .photo .text .tag {
    flex: 0 0 auto;
    display: inline-flex;
    margin-left: 5px;
}
[id^="sect"] .photo .text .tag span {
    margin-bottom: 0;
}
.nextPage {
    margin: 60px 0 70px;
    width: 100%;
    overflow-x: hidden;
}
.nextPage a {
    display: block;
    text-align: center;
    position: relative;
    z-index: 0;
    color: #00A7AC;
    text-decoration: none;
    transition-duration: 0.3s;
}
.nextPage .img {
    position: relative;
}
.nextPage .img::after {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #7EACAD;
    opacity: 0.6;
}
.nextPage .img img {
    width: 100%;
    vertical-align: middle;
    opacity: 0.8;
}
.nextPage .img  + .scrollani {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.nextPage .nextbox {
    position: absolute;
    right: 50%;
    bottom: 50%;
    transform: translate(50%, 50%);
    padding: 40px 10px 30px;
    background-color: #fff;
    min-width: 80%;
    box-sizing: border-box;
}
.nextbox .catch span {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    background-color: #00A7AC;
    padding: 1px 5px;
    color: #fff;
    font-size: 81.3%;
    letter-spacing: 0.03em;
    white-space: nowrap;
}
.nextbox .title {
    font-size: 131.3%;
    line-height: 1.4;
}
.nextbox .arrow {
    width: 38px;
    height: 38px;
    background-color: #101010;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 50%;
    bottom: 0;
    transform: translate(50%, 50%);
}
.nextbox .arrow::before {
    content: "";
    display: block;
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateX(-2px) rotate(45deg);
}
@media screen and (min-width: 768px) {
    .mainvisual .img {
        position: relative;
        overflow: hidden;
        height: 568px;
    }
    .mainvisual .img img {
        width: 100%;
        position: absolute;
        left: 0;
        bottom: 50%;
        transform: translateY(50%);
    }
    .mainvisual .topics {
        box-sizing: border-box;
        max-width: 1000px;
        margin: -120px auto 0;
        padding: 46px 40px 70px 70px;
        background-color: #fff;
    }
    .mainvisual .topics .catch {
        left: 70px;
        font-size: 111.2%;
        font-weight: bold;
        transform: translateY(-50%);
    }
    .mainvisual .topics .text {
        margin-top: 0;
        font-size: 152.9%;
    }
    .mainvisual .topics h2 {
        font-size: 243.3%;
    }
    .mainvisual .topics li {
        font-size: 111.2%;
    }
    .mainvisual .topics li::before {
        top: 8px;
    }
    .mainvisual .topics li P {
        font-size: 87.5%;
    }
    .mainvisual .topics li a:hover {
        text-decoration: none;
    }
    [id^="sect"] {
        max-width: 1200px;
        margin: -177px auto 0;
        padding-top: 255px;
    }
    .mainvisual + [id^="sect"] {
        padding-top: 212px;
    }
    [id^="sect"] h3 {
        font-size: 173.8%;
        margin-bottom: 40px;
    }
    [id^="sect"] h4 {
        font-size: 106.3%;
        padding-left: 24px;
    }
    [id^="sect"] h4::before {
        width: 5px;
    }
    [id^="sect"] h5 {
        font-size: 81.3%;
    }
    [id^="sect"] h5 ~ div {
        font-size: 81.3%;
    }
    [id^="sect"] .contents {
        display: flex;
        padding: 0 20px;
    }
    [id^="sect"] .photo {
        flex: 0 0 560px;
        margin-top: 0;
    }
    [id^="sect"] .textbox {
        flex: 1 0 0%;
        max-width: 100%;
        padding-right: 40px;
        font-size: 111.2%;
    }
    [id^="sect"] .textbox .tag span {
        font-size: 75%;
    }
    [id^="sect"] .kome {
        font-size: 81.3%;
    }
    [id^="sect"] > .textbox {
        padding-left: 20px;
        padding-right: 20px;
    }
    [id^="sect"] > .photo {
        display: flex;
        margin-top: 40px;
        padding-left: 20px;
        padding-right: 20px;
        justify-content: space-between;
    }
    [id^="sect"] > .photo div {
        flex: 1 0 0%;
    }
    [id^="sect"] .photo > div + div {
        margin-top: 0;
        margin-left: 40px;
    }
    [id^="sect"] .photo .text {
        margin-top: 20px;
        font-size: 111.2%;
    }
    [id^="sect"] .photo .text .tag span {
        font-size: 75%;
    }
    .nextPage {
        margin: 150px 0;
    }
    .nextPage a:hover {
        opacity: 0.7;
    }
    .nextPage .img {
        height: 310px;
        overflow: hidden;
    }
    .nextPage .img img {
        position: absolute;
        right: 50%;
        bottom: 50%;
        transform: translate(50%, 50%);
    }
    .nextPage .nextbox {
        min-width: 378px;
        padding-left: 30px;
        padding-right: 30px;
    }
    .nextbox .catch span {
        font-size: 100%;
        font-weight: bold;
    }
    .nextbox .title {
        font-size: 152.9%;
    }
}
@media (any-pointer: coarse) {
    .mainvisual .topics li a:active {
        text-decoration: none;
    }
    .nextPage a:active {
        opacity: 0.7;
    }
}

.comfort #sect01 .logo {
    width: 140px;
    margin-top: 20px;
}
.technology #sect04 h3::after {
    background-color: #27A8E1;
}
.technology #sect04 .tag span {
    background-color: #27A8E1;
}
.ecology > :last-child {
    margin-bottom: 80px;
}
sup {
    vertical-align: super;
    font-size: 75%;
}
.ecology #sect01 .logo {
    width: 148px;
    margin-top: 20px;
}
.ecology .row {
    display: flex;
    align-items: center;
}
.ecology .row + .row {
    margin-top: 20px;
}
.ecology .row .img {
    flex: 0 0 80px;
}
.ecology .row .img img {
    vertical-align: middle;
}
.ecology .row .text {
    flex: 1 0 0%;
    padding-left: 10px;
}
@media screen and (min-width: 768px) {
    .comfort #sect01 .logo {
        width: 200px;
    }
    .voice .nextPage .img img {
        transform: translate(50%, 0);
        bottom: -55%;
    }
    .ecology > :last-child {
        margin-bottom: 150px;
    }
    .ecology #sect01 .logo {
        width: 186px;
    }
    .ecology .row .img {
        flex-basis: 100px;
    }
    .ecology .row .text {
        padding-left: 20px;
    }
}

/*technology*/
.link_btn {
	width: 200px;
	margin-top: 20px;
	margin-bottom: 10px;
}
.link_btn a,.link_btn a img {
	display: block;
}
.link_btn a:hover{
	opacity: 0.75;
}
.link_btn_text {
	width: 200px;
}
.link_btn_text a {
	font-size: 90%;
	padding: 10px;
	display: block;
    background: #fff;
    border: #00adb0 1px solid;
    text-align: center;
    color: #00adb0 !important;
    text-decoration: none;
    border-radius: 16px;
}
.link_btn_text a:hover {
	background: #00adb0;
    color: #fff !important;
}
.link_btn_text a > span {
	display: block;
    background: url(/shared/images/ic_btn_link.png) no-repeat 99% center;
    padding-right: 10px;
}
.link_btn_text a:hover > span {
	background: url(/shared/images/ic_lnavi_link.png) no-repeat 99% center;
}
/*workstyle*/
.mega_luffing250 {
	width: 170px;
	margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
	.mega_luffing250 {
		width: 360px;
		margin-bottom: 10px;
	}
}
/*top*/
#first .logo7200g-2n .link_btn {
	width: 248px;
	margin-left: auto;
}
#first .logo7200g-2n .link_btn_text {
	width: 248px;
	margin-left: auto;
}