@charset "utf-8";
/* CSS Document
black: #666;
tricolore-blue: #242f88;
tricolore-red: #f8311f;
--------------------*/
/*//////////////////////////////////////////////////

home

//////////////////////////////////////////////////*/
body {
	background: #fcfcfc;
	position: relative;
}
:root{
  --grad-top:#fff6fa;   /* 桜色 */
  --grad-btm:#f6fbff;   /* 空色 */
}

body{
  margin:0;
  min-height:100vh;
  position:relative;
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  background:linear-gradient(180deg,var(--grad-top) 0%,var(--grad-btm) 100%);
  transition:background 0.45s ease;
  pointer-events:none;
}
a{
	text-decoration: none;
}
a.hover {
	opacity: 1;
}
b{
	font-weight: bold;
}
p.ttl {
	font-size: 42px;
	line-height: 180%;
	font-weight: bold;
	padding-top: 40px;
  padding-bottom: 28px;
}
p.sub-ttl{
	font-size: 26px;
	line-height: 180%;
	font-weight: bold;
  padding-bottom: 28px;
}
h1{
	font-size: 32px;
}
.txt-ttl h1 {
	line-height: 180%;
	font-weight: bold;
}
.txt h2 {
	position: relative;
	line-height: 180%;
	margin-bottom: 14px;
}
.txt h3 {
	position: relative;
	line-height: 180%;
	margin-bottom: 8px;
}
.txt h4 {
	position: relative;
	line-height: 180%;
	margin-bottom: 8px;
}
.txt p{
	margin-bottom: 16px;
}
::-moz-selection {
 color: #fff;
 background: #222;
}
::selection {
	color: #fff;
	background: #222;
}
.isotope .item {
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-ms-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
}
.pagination {
	display: none;
}
small{
	font-size:14px;
}
section{
	border-bottom: 1px solid #efefef;
	padding-bottom: 20px;
	margin-bottom: 40px;
}
.home section{
	border: none;
}
/*//////////////////////////////////////////////////

header

//////////////////////////////////////////////////*/
.header-home {
	width: 120px;
  padding-top: 20px;
}
.header-navi {
	position: fixed;
	top: 0;
	line-height: 180%;
	z-index: 11;
	height: 80px;
  width: 100%;
}
.header-navi .wrap{
  position: relative;
	max-width: none;
}
.header-navi .wrap nav{
	position: absolute;
  top: 20px;
  right: 20px;
}
#common-navi li {
	width: 100px;
}
#common-navi .slide-inner li {
	width: 100%;
}
#common-navi a, .si.f404 a {
	color: #222;
	display: block;
	padding: 0;
	font-size: 16px;
	position: relative;
}
#common-navi a::after, .si.f404 a::after {
	position: absolute;
	top: 0;
	left: 0;
	content: attr(data-hover);
	display: block;
	padding: 0;
	width: 0;
	color: #ccc;
	transition: .3s ease-in-out;
	overflow: hidden;
}
#common-navi a:hover::after, #common-navi a:focus::after, .si.f404 a:hover::after, .si.f404 a:focus::after {
	width: 100%;
}
#common-navi .wrap nav ul{
	display: flex;
	margin-right: 0;
}
#common-navi .wrap nav li{
	float: none;
}
.btn{
	width: 100%;
	max-width: 180px;
	background: #fff;
	height: 50px;
	margin: 0 auto;
	padding: 0 18px 3px;
	border: 1px solid #efefef;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	position: relative;
	transition: .4s;
}
.btn:after {
    content: "";
    position: absolute;
    right: 18px;
    top: -5px;
    bottom: 0;
    margin: auto;
    width: 20px;
    height: 10px;
    transition: .5s;
}
.about-txt a{
	margin-top: 60px;
}
.recruit-wrap img{
	width: calc(50% - 20px) !important;
  margin: 0 0 60px;
  padding: 20px 0 20px 20px;
}
.recruit-wrap .btn{
	margin-top: 60px;
}
.recruit-wrap .img-wrap{
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.recruit-wrap .ttl{
	margin-top: 80px;
	text-align: center;
}
.recruit-wrap .sub-ttl{
	text-align: center;
}
.recruit-wrap .sub-ttl br{
	display: none;
}
.works-wrap{
	margin-top: 60px;
	margin-bottom: 40px;
	display: flex;
}
.works-wrap .txt{
	width: 13%;
}
.works-wrap .grid-wrap{
	width: 87%;
}
.works-wrap .ttl, .works-wrap .sub-ttl{
	-webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
	margin: 0 auto;
	padding-top: 0;
}
.works-wrap .sub-ttl{
	font-size: 10px;
	font-weight: normal;
	padding: 0 10px 0 0;
}
.grid-area{
	overflow: hidden;
}
.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-duration: 3.2s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 6s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 8s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 12s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% {
    transform: translate3d(85px,0,0);
  }
}
.copy{
	position: relative;
  z-index: -1;
}
.wave{
	position: absolute;
	width: 300%;
	bottom: 0;
	left: -100%;
	mix-blend-mode: multiply;
}
/*//////////////////////////////////////////////////

news

//////////////////////////////////////////////////*/
.mtphr-dnt-tick-contents {
	font-size: 11px;
	color: #222;
}
/*//////////////////////////////////////////////////

home

//////////////////////////////////////////////////*/
.wrapper {
	position: relative;
	margin: 20px auto;
	width: auto;
}
.wrapper.js-wrapper li {
	position: absolute;
	background-color: #eee;
}
.wrapper.js-wrapper .js-inner {
	padding: 20px;
}
.main-contents-outer {
	padding-bottom: 40px;
}
.caption-area {
	height: 100px;
	margin-top: 40px;
	padding-left: 220px;
}
.caption-area img {
	width: 140px;
	margin-left: 0;
}
.caption-area p {
	margin-top: 6px;
}
.front {
	width: 100%;
	max-width: 1150px;
	margin: 0 auto;
	padding-top: 80px;
}
.about-wrap {
	position: relative;
	transition: 0.5s;
	display: flex;
}
.about-txt{
	width: 40%;
	margin-bottom: 40px;
}
.about-img{
	width: 60%;
	margin-bottom: 40px;
}
.about-img img{
	width: 60%;
	display: block;
	text-align: center;
}
.news-wrap {
	width: 100%;
	transition: 0.5s;
	margin-top: 100px;
}
.news-wrap dl {
}
.about-wrap h1, .news-wrap h2 {
	padding: 5px 0;
	margin: 5px 0;
	font-size: 16px;
}
.info-wrap {
	overflow: hidden;
	padding: 40px 0 0;
	margin-left: 20px;
	margin-right: 20px;
}
.news-wrap .news-body dl {
	overflow: hidden;
}
.news-wrap .news-body dt {
	margin-left: 0;
	line-height: 180%;
	margin-bottom: 10px;
}
.news-wrap .news-body dd {
	line-height: 180%;
	padding-left: 0;
	max-width: 620px;
	margin-right: 0;
	overflow: hidden;
	transition: 0.5s;
	margin-bottom: 10px;
}
.news-wrap .news-body dd p {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.news-wrap .news-body dd a, #news-body dd a {
	text-decoration: none;
}
.news-wrap .news-body dt {
	width: 100%;
	height: 20px;
	max-width: 80px;
}
.news-wrap .news-body dt {
	display: inline;
	text-align: left;
	font-size: 14px;
	float: left;
	color: #ccc;
}
.news-body dd::before {
	content: none;
}
/*//////////////////////////////////////////////////

grid contents

//////////////////////////////////////////////////*/
.grid-entry img {
	height: 100%;
}
.grid-area {
	padding-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.grid-area .ditail {
	padding: 20px 15px;
}
.grid-entry, .grid-entry-first {
	width: 120px;
	float: left;
	text-align: left;
	/*box-shadow: 0 1px 1px rgba(36, 47, 136,0.15);*/
	font-size: 14px;
	padding: 10px;
}
h2 a {
	color: #666;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.25em;
}
.grid-box p {
	color: #666;
	font-size: 10px;
	line-height: 120%;
}
.grid-box {
	height: 120px;
	outline: 1px solid #f3f3f3;
}
.grid-box:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 540px;
	width: 540px;
	background: rgba(255,255,255,0.0);
	transition: .3s ease-in-out;
}
.grid-box:hover:before {
	background: rgba(255,255,255,0.8);
}
#infscr-loading {
	width: 100%;
	height: 30px;
	clear: both;
	padding: 30px 0;
	display: block;
	position: relative;
	text-align: center;
}
#infscr-loading img {
	display: none;
}
.grid-entry .txt {
	margin-top: 5px;
	margin-bottom: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
}
.grid-entry .txt h2 {
	position: relative;
	line-height: 130%;
	font-weight: normal;
	margin-left: 0;
	text-align: left;
}
.loader-box {
	position: relative;
}
.loader-box img {
	width: 30px;
	height: auto;
	margin-bottom: 20px;
}
figure {
	position: relative;
	overflow: hidden;
}
.caption {
	color: #222;
	font-weight: normal;
	display: block;
	vertical-align: bottom;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 4px;
	position: absolute;
	width: 100%;
	box-sizing: border-box;
	bottom: -50px;
	transition: transform .2s ease-in-out;
	visibility: hidden;
	transform: none;/*background: linear-gradient(to top, rgba(0,0,0,0.15),rgba(0,0,0,0.05), rgba(0,0,0,0));*/
}
.large-block .caption {
	padding: 70px 12px 12px;
	background: linear-gradient(to top, rgba(0,0,0,0.25), rgba(0,0,0,0.1), rgba(0,0,0,0));
}
.teaser:hover .caption {
	visibility: visible;
	bottom: -40px;
	transform: translateY(-40px);
}
.cap_sep {
	color: #f8311f;
	margin: 0 3px;
	text-shadow: none;
}
/*//////////////////////////////////////////////////

footer

//////////////////////////////////////////////////*/
.news.ar #copyright {
	position: fixed;
	width: 100%;
	bottom: 0;
}
footer {

	height: 50px
}
#footer-bottom {
	max-width: 1280px;
	margin: 0 auto;
}
#copyright {
	text-align: right;
	font-size: 11px;
	color: #222;
	bottom: 0;
	line-height: 50px;
	margin-right: 20px;
}
#footer-top {
	margin-bottom: 20px;
}
#footer-top ul li {
	width: 200px;
}
#footer-top a {
	display: block;
	width: 22px;
	margin: 0 auto;
}
#footer-top img {
	width: 22px;
	text-align: center;
}
.news-area {
	margin: 0 auto;
	width: 70%;
	display: inline-block;
	top: 2px;
	position: relative;
}
/*//////////////////////////////////////////////////

si, pg, ar

//////////////////////////////////////////////////*/
.si .txt-ttl h1, .pg .txt-ttl h1, .ar .txt-ttl h1, .si.f404 .txt-ttl h1 {
	padding-top: 40px;
	padding-bottom: 20px;
}
.pg, .si {
	min-height: calc(100vh - 70px);
	margin-bottom: 20px;
}
.pg .cont, .si .cont{
	position: relative;
}
.back-arrow {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 20px;
    left: 10.5px;
    bottom: -5px;
    overflow: hidden;
}
.at-share-btn-elements{
	text-align: right;
}
.back-arrow span {
    position: absolute;
    top: 19px;
    right: 0;
    width: 70px;
    height: 1px;
    background-color: #222;
}
a.back-arrow::after {
    content: '';
    position: absolute !important;
    display: block !important;
    width: 17px !important;
    height: 1px !important;
    right: 71px !important;
    bottom: -0px !important;
    background-color: #222 !important;
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    transform: rotate(130deg);
    top: initial;
    left: initial;
}
/* 404 */
.si.f404 a {
	font-size: 12px;
	text-decoration: none;
	color: #222;
	display: inline-block;
}
.si.f404 a::after {
	position: absolute;
	top: 0;
	left: 0;
	content: attr(data-hover);
	display: block;
	padding: 0;
	width: 0;
	color: #ccc;
	transition: .3s ease-in-out;
	overflow: hidden;
}
.ar.works .grid-area {
	padding-top: 0px;
	display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.category {
	padding: 40px 0 0px;
}
.category.second {
	padding-top: 0px;
}
.news #news .news-body {
	width: 100%;
	max-width: 550px;
}
.news.ar #news .news-body dl {
	width: 100%;
	overflow: hidden;
}
.news.ar #news .news-body dl dt {
	width: 100%;
	display: inline-block;
	float: left;
	max-width: 80px;
	height: 20px;
	line-height: 180%;
	color: #ccc;
}
.news.ar #news .news-body dl dd {
	width: 100%;
	max-width: 200px;
	display: inline-block;
	line-height: 180%;
}
.news.ar #news .news-body dl dd a {
	text-decoration: none;
	display: inline-block;
}
.news .sec-cont .inner {
	min-height: 300px;
}
.grid-sizer, .grid-item {
	width: 25%;
}
/*//////////////////////////////////////////////////

recruit

//////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////

company

//////////////////////////////////////////////////*/
.company dl {
	display: flex;
	overflow: hidden;
}
.company dt, .company dd {
	line-height: 180%;
	margin-bottom: 20px;
}
.company dt {
	min-width: 120px;
}
/*//////////////////////////////////////////////////

about

//////////////////////////////////////////////////*/
.setinner .txt p{
	margin-left:8px;
	margin-right: 8px;
}
.setinner .txt p small{
	margin-left:0;
	margin-right:0;
	line-height: 160%;
	display: block;
}
.sub-text{
	color: #ccc;
}
small {
	color: #777;
}
.fbox {
	display: flex;
}
.fbox h4 {
	width: 40%;
	font-weight: bold;
}
.fbox p {
	width: 60%;
}
.img-wrap{
	margin-top: 40px;
	margin-bottom: 20px;
}
.big-font{
	font-size: clamp(28px, 11vw, 150px);
	font-weight: bold;
	text-align: left;
	line-height: 100% !important;
	margin-top: 30px;
}
.middle-font{
	font-size: clamp(16px, 3.8vw, 36px);
	text-align: right;
	margin-top: 6vw;
	font-weight: bold;
	line-height: 160%;
}
.col2{
	display: flex;
	position: relative;
	height: auto;
}
.col2 .col2-ttl,.col2 .col2-img{
	width: 40%;
}
.col2-ttl {
	margin-right: 20px;
	font-size: 16px;
}
.col-nav{
	position: -webkit-sticky !important;
	position: sticky !important;
	top:80px;
	margin-left: 20px;
}
.col-nav a{
	display: block;
	padding: 20px 0;
}
.col2-right{
	padding-top: 0;
 }
.col2-right .cont{
	padding-top: 80px;
	padding-bottom: 0;
}
.col2-right section{
	padding-top: 60px;
	padding-bottom: 60px;
	margin-bottom: 0;
}
.col2-right h2{
	margin-bottom: 60px;
}
.col2-txt{
	margin-left: 20px;
  width: 60%;
}
.col2-txt h3{
	font-size: 16px;
}
.col2-txt p{
	margin-left: 10px;
}
.what-wrap img{
	margin-rigth: 20px;
	max-width: 400px;
}
.front.co2-style{
	padding-top: 0;
}
.flow-style ol{
	padding: 60px 0;
}
.flow-style ol li{
	float: none;
	display: block;
	line-height: 180%;
	margin-bottom: 40px;
	padding: 10px 0;
	text-align: center;
	position: relative;
	background: #fff;
}
.flow-style ol li::after{
	content: "↓";
	position: absolute;
	bottom: -18px;
	left: 0;
	right: 0;
	height: 1rem;
	color: #ccc;
}
.flow-style ol li:last-child:after{
	content: none;
}
.img-and-txt-style h3,
.img-and-txt-style img,
.img-and-txt-style a{
	margin-bottom: 40px;
}
.img-and-txt-style p{
	margin-bottom: 60px;
}
/*//////////////////////////////////////////////////

contact,recruit form

//////////////////////////////////////////////////*/
div.form{
	width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-top: 80px;
}

div.form *{
  box-sizing: border-box;
}

div.form section.form{
	width: 100%;
  max-width: 800px;
	padding: 0;
  margin: 0 auto;
	border-bottom: none;
}

div.form section.form .form-text{
	margin-bottom: 30px;
}

div.form section.form .form-text p{
	font-size: 12px;
	margin-bottom: 10px;
}

div.form section.form dl {
	display: flex;
	margin: 0 auto;
	padding: 20px 0;
	border-bottom: 1px dotted #D6D6D6;
}

div.form section.form dl:last-child {
	border: none;
}

div.form section.form dl dt p {
	font-weight: 500;
	min-width: 90px;
}

div.form section.form dl dt,
div.form section.form dl dd {
	margin: 0;
	padding: 0;
}
div.form section.form dl dd p {
	/* margin: 0 0 0 60px; */
}


div.form section.form dl {
	position: relative;
  margin: 0 0 2em;
  display: block;
  padding: 0;
  border: none;
}

div.form section.form dl dt {
	/* height: 20px; */
}
div.form section.form dl dt p {
	/* position: absolute; */
	/* display: inline; */
	font-size: 12px;
	font-weight: bold;
	color: #404040;
	/* top: -3px; */
	/* left: 10px; */
	padding: 2px 10px;
	/* background-color: #fff; */
	/* z-index: 1; */
}

div.form section.form dl dt p span{
	color: #E61000;
	padding-left: 10px;
}

div.form section.form dl dd input:not(input[type="radio"]):not(input[type="checkbox"]):not(.number) {
	width: 100%;
	height: 56px;
	padding: 15px;
	letter-spacing: 1px;
	border-radius: 8px;
	border: 1px solid #D6D6D6;
	background: #fff;
	font-weight: 300;
}

div.form section.form dl dd input.number {
	width: 60px;
	padding: 8px;
	letter-spacing: 1px;
	border-radius: 8px;
	border: 1px solid #D6D6D6;
	font-weight: 300;
}

div.form section.form dl dd input::placeholder {
	color: #D6D6D6;
}

div.form section.form dl dd textarea {
	width: 100%;
	min-height: 100%;
	padding: 15px;
	letter-spacing: 1px;
	border-radius: 8px;
	border: 1px solid #D6D6D6;
	font-weight: 300;
	resize: vertical;
}

div.form section.form dl .error p {
	color: #E61000;
	font-size: 12px;
	margin: 5px 0 0;
	display: none;
}

div.form section.form .acceptance{
	text-align: center;
  display: flex;
  flex-flow: column;
  gap: 16px;
  margin-bottom: 40px;
}
div.form section.form .acceptance p{
	font-size: 12px;
}
div.form section.form .acceptance a{
	font-size: 12px;
	text-decoration: underline;
}
div.form section.form .acceptance label{
	cursor: pointer;
}
div.form section.form .acceptance input[type="checkbox"] {
	position: relative;
	width: 20px;
	height: 20px;
	border-radius: 6px;
	vertical-align: -5px;
	accent-color: #222;
	cursor: pointer;
}

div.form section.form .acceptance .wpcf7-list-item-label {
	font-size: 14px;
	font-weight: bold;
}

div.form section.form .wpcf7-not-valid-tip {
	font-size: 12px;
	padding-left: 14px;
	font-weight: bold;
}

div.form section.form .wpcf7-form-control.wpcf7-submit{
	position: relative;
	width: 100%;
	max-width: 350px;
	height: 48px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #222;
	border: 1px solid #222;
	border-radius: 8px;
	transition: all .3s;
	color: #fff;
	cursor: pointer;
}
div.form section.form .wpcf7-form-control.wpcf7-submit:disabled{
	background-color: #d6d6d6;
  border: 1px solid #d6d6d6;
	cursor: not-allowed;
}

div.form section.form .wpcf7-response-output{
	font-size: 14px;
	padding: 20px;
	text-align: center;
	border-radius: 5px;
	border-width: 1px;
}
div.form section.form .wpcf7 form.invalid .wpcf7-response-output,
div.form section.form .wpcf7 form.unaccepted .wpcf7-response-output,
div.form section.form  .wpcf7 form.payment-required .wpcf7-response-output{
	border-color: #FF6B38;
	background: #FFEDE6;
}
div.form section.form .wpcf7 form.sent .wpcf7-response-output{
	border-color: #38FF96;
	background: #F3FFF8;
}
.pg .txt-ttl small {
	font-size: 12px;
  line-height: 160%;
  display: block;
}
.text-large{
	font-size: 18px;
}
.txt h3, dt h3{
	font-size: 14px;
}