@charset "UTF-8";

:root{
  --font-body-family: "Zen Kaku Gothic New", sans-serif;
  --font-body-line-height: 1.8;
  --font-body-color: #111;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  --font-size-base: 3.7vw;
  --font-letter-spacing: normal;
  --body-bg-color: #fff;
  
  --color-primary: #D78114;
  --color-secondary: #1AB397;
  --color-accent: #8B5E10;
  --container-bg-primary: var(--color-primary);
  --container-bg-secondary: var(--color-secondary);
}
@media screen and (min-width: 768px) {
  :root{
    --font-size-base: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  :root{
    --font-size-base: 16px;
    --font-letter-spacing: -1%;
  }
}

html {
  scroll-behavior: smooth;
}
body {
	background: var(--body-bg-color);
	color: var(--font-body-color);
	line-height: var(--font-body-line-height);
  font-family: var(--font-body-family);
  font-style: normal;
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-base);
  letter-spacing: var(--font-letter-spacing);
}
img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.pc {
  display: none;
}
.tb {
  display: none;
}
.sp {
  display: block;
}
a {
  transition: 0.3s all;
}
.inner,.mv_inner {
  width: 89.3vw;
  margin: 0 auto;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.grid {
  --grid-row-gutter: 16vw;
  --grid-col-gutter: 16vw;

  display: flex;
  flex-wrap: wrap;
  column-gap: var(--grid-row-gutter);
  row-gap: var(--grid-row-gutter);
}
@media screen and (min-width:768px) {
  .grid {
    --grid-row-gutter: 3.75vw;
    --grid-col-gutter: 3.75vw;
  }
}
@media screen and (min-width:1025px) {
  .grid {
    --grid-row-gutter: 60px;
    --grid-col-gutter: 60px;
  }
}
.grid__item{
  width: calc(calc(25% - var(--grid-col-gutter) * 3 / 4));
  max-width: calc(50% - var(--grid-col-gutter) / 2);
}
@media screen and (max-width:767px) {
  .grid--1-col-tablet-down .grid__item{
    width: 100%;
    max-width: 100%;
  }
  .grid--2-col-tablet-down .grid__item{
    width: calc(calc(50% - var(--grid-col-gutter) / 2));
  }
}
@media screen and (min-width:768px) {
  .grid--2-col-desktop .grid__item{
    width: calc(50% - var(--grid-col-gutter) / 2);
    max-width: calc(50% - var(--grid-col-gutter) / 2);
  }
  .grid--3-col-desktop .grid__item{
    width: calc(33.33% - var(--grid-col-gutter) * 2 / 3);
    max-width: calc(33.33% - var(--grid-col-gutter) * 2 / 3);
  }
  .grid--4-col-desktop .grid__item{
    width: calc(calc(25% - var(--grid-col-gutter) * 3 / 4));
    max-width: calc(calc(25% - var(--grid-col-gutter) * 3 / 4));
  }
}
@media screen and (min-width:768px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
  a:hover {
    opacity: .7;
  }
  .inner,.mv_inner {
    width: 92%;
  }
}
@media screen and (min-width:1025px) {
  .inner,.mv_inner {
    width: 1000px;
  }
}
/*===================
header
=====================*/
#header {
	width: 100%;
	margin: 0 auto;
	z-index: 1;
	position: relative;
	position: fixed;
	background-color: #fff;
}
#header .inner {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.mailbtn, .openbtn{
  display: none;
}
@media screen and (min-width:480px) {
	.h_nav #sp_menu {
		display: flex;
		justify-content: space-between;
		gap: 40px;
		font-weight: 600;
		line-height: 1;
	}
	.h_nav #sp_menu li a {
		font-size: 15px;
	}
}
@media screen and (min-width:480px) and (max-width: 1024px) {
	#header .inner {
	  padding: 10px 0;
	  flex-direction: column;
	  row-gap: 10px;
	}
	.h_logo{
	  width: 22.4vw;
	}
}
@media screen and (min-width:1025px) {
	#header .inner {
		width: 100%;
		max-width: 825px;
		height: 50px;
	}
	.h_logo{
	  width: 110px;
	}
}
@media screen and (max-width:480px) {
  #header {
    padding: 7px 0;
		background-image: none;
  }
  #nav{
	  display: flex;
	  align-items: center;
	  gap: 20px;
  }
  .mailbtn, .openbtn{
    display: block;
  }
  .mailbtn a{
	  display: flex;
	  justify-content: center;
	  align-items: center;
    width: 45px;
    height: 45px;
    background-color: var(--color-primary);
    border-radius: 5px;
  }
  .mailbtn .fa-regular::before {
    color: #fff;
	  font-size: 1.5rem;
  }
  .openbtn {
	  display: block;
	  position: relative;
    width: 28px;
    height: 20px;
    z-index: 9999;
  }
  .openbtn span {
    display: inline-block;
    transition: all .4s;
	  position: absolute;
	  left: 0;
    height: 1px;
    background: #707070;
    width: 100%;
    z-index: 99;
  }
  .openbtn.active span {
    background: #fff;
  }
  .openbtn span:nth-of-type(1) {
    top: 0;
  }
  .openbtn span:nth-of-type(2) {
    top: 10px;
  }
  .openbtn span:nth-of-type(3) {
    top: 20px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 5px;
    left: 0;
    transform: translateY(6px) rotate(-45deg);
    width: 100%;
	  background: #707070;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 18px;
    left: 0;
    transform: translateY(-6px) rotate(45deg);
    width: 100%;
	  background: #707070;
  }
  #sp_nav, #sp_nav.panelactive #sp_menu {
    width: 100%;
  }
  #sp_nav {
    position: fixed;
    z-index: 999;
    top: -120vh;
    right: 0;
    width: 100%;
    transition: all 0.6s;
    height: 100vh;
  }
  #sp_nav .nav_wrap {
		background-color: #F4F8FF;
		padding: 0 10vw;
	  height: 100vh;
	  display: flex;
    justify-content: center;
		z-index: 1;
  }
  #sp_nav.panelactive {
    top: 0;
  }
  #sp_nav #sp_menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 5vw;
    gap: 2em;
  }
  #sp_nav #sp_menu li {
	  text-align: center;
  }
  #header h1 img {
    width: 14vh;
		margin-top: 1vh;
  }
  #sp_nav.panelactive {
    top: 0;
  }
}
@media screen and (max-width:767px) {
  #contact p {
  margin-bottom: 30px;
  line-height: 1.8;
  font-size: 1rem;
  }
}
/*===================
mv
=====================*/
@media screen and (min-width:769px) {
  .mv {
  	background: transparent url(../img/index/mv_bg.png) repeat-x left top / auto 100%;
  	aspect-ratio: 8 / 7;
  	display: flex;
  	align-items: flex-end;
  	justify-content: center;
  }
  .mv img{
  	aspect-ratio: 1140 / 882;
  	max-width: 92.5vw;
  }
}
@media screen and (min-width:1025px) {
  .mv {
  	aspect-ratio: inherit;
    height: 700px;
  }
  .mv img{
  	max-width: 740px;
  }
}
/*===================
footer
=====================*/
#footer {
	position: relative;
	margin-bottom: 30px;
}
#footer .f_nav {
	margin: 0 auto;
	padding: 0 0 5vh;
	width: 105vh;
}
#footer .f_mail a img {
	width: 50vh;
	margin: 0 auto;
	display: block;
}
#footer .footertossie {
	right: 0;
	bottom: 0;
	position: absolute;
}
#footer .copyright {
	padding-top: 10px;
	font-size: 10px;
	border-top: 1px solid #eee;
	text-align: center;
}
.fix_cv {
	background-color: #295DA0;
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 100%;
	z-index: 20;
}
@media screen and (min-width:768px) {
	#footer .inner {
		width: 95%;
		padding: 42px 0 65px;
	}
	#footer .footer_cont .f_logo {
		width: 22.4vw;
		margin: 0 auto 30px;
	}
	#footer .footer_cont .f_cv {
		width: 50vw;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	#footer .footer_cont .f_tel {
		width: 25vw;
		padding: 0 0 0 2.6vw;
		font-size: 2.8vw;
	}
	#footer .footer_cont .f_tel::before {
    width: 1.8vw;
    height: 2.5vw;
    left: 0;
    top: 0.6vw;
  }
	#footer .footer_cont .f_tel small {
		font-size: 0.9vw;
	}
	#footer .footer_cont .f_mail {
		width: 24vw;
	}
	#footer .footer_cont .f_mail a {
		padding: 1.5vw 2.3vw;
		margin: 0;
	}
	#footer .f_nav ul {
		display: flex;
		justify-content: flex-start;
	}
	#footer .f_nav ul li {
		font-size: 1.05vw;
		margin: 0 30px 0 0;
	}
}
@media screen and (min-width:1024px) {
	#footer .footer_cont .f_logo {
		width: 187px;
	}
}
@media screen and (min-width:1541px) {
	#footer .inner {
		width: 1540px;
	}
	#footer .footer_cont .f_logo {
		width: 424px;
	}
	#footer .footer_cont .f_cv {
		width: 675px;
		display: flex;
		justify-content: space-between;
	}
	#footer .footer_cont .f_tel {
		width: 325px;
		font-size: 40px;
		padding: 0 0 0 40px;
	}
	#footer .footer_cont .f_tel::before {
		width: 25px;
    	height: 37px;
		left: 0;
	    top: 10px;
	}
	#footer .footer_cont .f_tel small {
		font-size: 12px;
	}
	#footer .footer_cont .f_mail {
		width: 310px;
	}
	#footer .footer_cont .f_mail a {
		padding: 15px 30px;
	}
	#footer .f_nav.pc ul li {
		font-size: 18px;
	}
	#footer .footertossie {
		width: 50vh;
	}
}
@media screen and (max-width:767px) {
	#footer {
		padding: 2vw 0 0;
		margin-bottom: 0;
	}
	#footer .f_nav ul {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		margin: 8vw 0;
	}
	#footer .f_nav ul li {
		width: 50%;
	}
	#footer .f_nav ul li:last-of-type {
		width: 100%;
	}
	#footer .f_nav ul li a {
		display: block;
		background-color: #ffec3f;
		border: 1px solid #fff;
		font-size: 3.7vw;
		text-align: center;
		padding: 4.8vw 0;
	}
	#footer .footer_cont {
		width: 56vw;
		margin: 0 auto;
	}
	#footer .footer_cont .f_logo {
		margin: 0 0 8vw;
	}
	#footer .footer_cont .f_tel {
		margin: 0 0 5.3vw;
		font-size: 6.4vw;
	}
	#footer .footer_cont .f_tel small {
		font-size: 2vw;
	}
	#footer .footer_cont .f_mail {
		width: 82%;
		margin: 0 auto;
	}
	#footer .footer_cont .f_mail a {
		display: block;
		margin: 0 auto 8vw;
		background-color: #FF931A;
		border-radius: 50px;
		padding: 3.5vw 4.5vw 3.5vw 4.5vw;
		position: relative;
		box-shadow: 3px 3px 0px 0px #db7e00;
	}
	#footer .f_set {
		width: 50vw;
	}
	#footer .footertossie {
		width: 22vh;
	}
	#footer .footer_cont .f_logo {
		width: 24vh;
		margin-left: -3vh;
		margin: 0 auto 3vh;
	}
	#footer .f_mail a img {
		width: 33vh;
	}
	.fix_cv {
		padding: 2vw;
		z-index: 0;
	}
}
/*===================

contact

=====================*/
/*===================
form
=====================*/
#contact {
  background-color: var(--container-bg-primary);
  padding: 16vw 0;
}
#contact h2 {
  font-size: 36px;
  font-weight: 900;
}
#contact h2 img {
  max-width: 300px;
  margin-bottom: 30px;
}
#contact h2 span {
  margin-bottom: 30px;
  font-size: 0.8rem;
  display: block;
}
#contact p {
  margin-bottom: 30px;
  line-height: 1.8;
  font-size: 1.2rem;
}
#contact .inner .tit {
  margin: 0 auto 12.8vw;
}
#contact .box {
  padding: 30px;
  border-radius: 20px;
  background-color: #fff;
}
#contact .section.form_wrap {
  border-radius: 18px;
  padding: 8vw 5vw 16vw;
}
#contact .section.agree_wrap {
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  margin: 0 auto 8vw;
}
#contact .section.agree_lead {
  padding: 0;
  color: #fff;
  font-size: 3.2vw;
  margin: 0 auto 8vw;
}
#contact .section.form_wrap .notes {
  font-size: 16px;
  margin:0 0 1em;
}
#contact .req {
  margin-left: 5px;
  padding: 2px 6px;
  color:#fff;
  font-size: 12px;
  background-color: var(--color-primary);
  border-radius: 5px;
}
#contact .section.btn {
  padding: 0;
  margin: 0 auto;
}
#contact .form {
  margin: 0 0 4.8vw;
}
#contact dl.form { 
  font-size: 16px;
  display: flex;
  flex-direction: column;
}
#contact .form.last {
  margin: 0 0 0;
}
#contact .form dt {
  margin: 0 0 2.6vw;
  font-weight: 600;
  font-size: 1rem;
}
@media screen and (max-width:767px) {
  #contact dl.form dd {
    margin: 0 0 4.8vw; 
  }
}
#contact .confirmBlock .form dt{
  margin:0;
}
@media screen and (min-width:768px) {
  #contact .confirmBlock .btnArea {
    width: initial;
  }
  #contact {
	padding: 100px 0;
  }
  #contact .inner .tit {
    width: 700px;
    margin: 0 auto 48px;
  }
  #contact .section.form_wrap {
    border-radius: 30px;
  	padding: 50px;
  }
  #contact .section.agree_wrap {
	margin: 0 auto 60px;
  }
  #contact .agree_wrap {
    padding: 100px;
    margin: 0 auto 60px;
  }
  #contact .section.agree_lead {
    padding: 0;
    text-align: center;
  	font-size: 14px;
  	margin: 0 auto 60px;
  }
  #contact dl.form {
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr;
    gap: 2em;
  }
  #contact .form {
    margin: 0 0 30px;
  }
  #contact .form dt {
    margin: 0;
    font-size: 1.2rem;
    white-space: nowrap;
  }
  #contact .form.last {
    margin: 0 0 0;
  }
  #contact h2 img {
    max-width: 200px;
  }
}
#contact .form_wrap .form dt, #contact .form_wrap .form dd {
  line-height: 1.1;
}
.form input[type=text], .form input[type=email], .form input[type=tel], .form textarea, .form select {
  border-radius: 4.8px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  padding: 0.7em 1em;
  font-size: 1rem;
  width: 100%;
  line-height: 1.5;
}
#contact .form_wrap .form.radio .wpcf7-radio {
  display:flex;
  flex-direction:column;
  gap: .3em;
}
#contact .form_wrap .form.radio .wpcf7-radio .wpcf7-list-item {
  margin:0;
  padding:0 0 0 .2em;
}
#contact .form_wrap .form.radio .wpcf7-radio .wpcf7-list-item label {
  padding:.3em 0;
  display:inline-block;
}
#contact .form_wrap .form.radio .wpcf7-radio .wpcf7-list-item  input[type="radio"] {
  transform:scale(1.5);
}
#contact .form_wrap .form .wpcf7-form-control-wrap[data-name="zip"] input[type="text"]{
  width:75%;
  margin-left:.2em;
}
::placeholder {
  color: rgba(0,0,0,0.36);
}
.form .wpcf7-not-valid-tip{
  font-weight:bold;
  margin:.5em 0 0;
}
.wpcf7 form .wpcf7-response-output{
  background:#fff;
}
.inputBlock.hide{
  display:none;
}
.confirmBlock{
  display:none;
  margin-bottom: 0;
}
.confirmBlock.show{
  animation-duration: 2s;
  animation-name: showBlock;
    display:block;
}
@keyframes showBlock{
  0%{
    display:none;
    opacity:0;
  }
  1%{
    display:block;
  }
  100%{
    opacity:1;
  }
}
@media screen and (min-width: 768px) {
  .form input[type=text], .form input[type=email], .form input[type=tel], .form textarea, .form select {
    font-size: 1.2rem;
    line-height: 1.7;
  }
  #contact .form_wrap .form.radio .wpcf7-radio {
    gap: 5px;
  }
  #contact .form_wrap .form .wpcf7-form-control-wrap[data-name="zip"] input[type="text"]{
    width:25%;
  }
}
.form input[type=text][name^=director], .form input[type=text].ws, .form input[type=email][name^=director], .form input[type=email].ws, .form input[type=tel][name^=director], .form input[type=tel].ws, .form textarea[name^=director], .form textarea.ws, .form select[name^=director], .form select.ws {
  width: 3em;
  margin-right: 0.5em;
  box-sizing: content-box;
}
#contact .form textarea {
  height: 34.4vw;
}
@media screen and (min-width: 768px) {
  #contact .form textarea {
    height: 10em;
  }
}
.btnAreaWrap {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:1em;
  position: relative;
  clear: both;
  
  @media screen and (max-width: 767px) {
    flex-direction: column;
  }
}
.btnArea {
  width: 77.6vw;
  position: relative;
  /*margin: 0 auto;*/
}
input[type=submit],
button[type=button] {
  width: 77vw;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
  text-align: center;
  padding: 7.33vw 22.26vw;
  padding: 24px;
  border: none;
  border-radius: 3em;
  display: block;
  color: #fff;
  text-align:right;
  text-align: center;
  background-color: #FBAB30;
  position: relative;
}

@media screen and (min-width:768px) {
  .confirmBlock input[type=submit],
  .confirmBlock button[type=button] {
    width: 100%;
  }
}
@media screen and (min-width:768px) {
  .confirmBlock input[type=submit],
  .confirmBlock button[type=button] {
    width: 25vw;
    max-width: 300px;
  }
}
.btnArea input[type=submit],
.btnArea button[type=button] {
  text-align:center;
}
button.backBtn[type=button]{
  text-align:center;
  color:#999;
  background-color: gray;
  color: #fff !important;
}
.btnArea::after {
  position: absolute;
  content: "";
  display: block;
  background: url(../img/common/arrow.png) center center no-repeat;
  background-size: cover;
  width: 14px;
  margin: 0 auto;
  top: 50%;
  bottom: 0;
  right: 1.2em;
  aspect-ratio: 24 / 26;
  transform: translateY(-50%);
}
input[type=submit]:hover:not([disabled]), .submitBtn:hover:not([disabled]) {
  cursor: pointer;
}
input[type=submit][disabled], .submitBtn[disabled] {
  /*opacity: 0.2;
  pointer-events: none;*/
}
@media screen and (min-width: 768px) {
  .btnArea {
    width: 291px;
  }
  .btnArea::after {
  }
  input[type=submit],
  button[type=button] {
    width: 291px;
    font-size: 16px;
    padding: 28px 53px;
  }
}
#contact .form.agree {
  display: block;
  border: none;
  padding: 0;
  margin: 0;
}
#contact .form .privacy {
  margin: 0 auto;
  height: 42.4vw;
  border: 1px solid #ccc;
  overflow-x: scroll;
  padding: 6.4vw;
  font-size: 3.2vw;
}
#contact .form .privacy p, .form .privacy dl {
  margin: 0 0 1em;
}
#contact .form .privacy dl dt {
  font-weight: 600;
  font-size: 1.1em;
  margin: 0 0 0.5em;
}
@media screen and (min-width: 768px) {
  #contact .form .agree_tit {
    font-size: 18px;
    margin: 0 0 30px;
  }
  #contact .form .privacy {
    padding: 35px;
    height: 169px;
	font-size: 14px;
  }
  #contact .form.agree ul {
  }
}
@media screen and (max-width:767px) {
	input[type="radio"] {
		width: 3vw;
    	height: 3vw;
	}
}
/* heading */
.heading-01{
  font-size: 7.46vw;
  line-height: 1.4;
  letter-spacing: -2%;
  font-weight: var(--font-weight-black);
}
@media screen and (min-width: 768px) {
  .heading-01{
    font-size: 4vw;
    letter-spacing: -1%;
  }
}
@media screen and (min-width: 1025px) {
  .heading-01{
    font-size: 42px;
    letter-spacing: -5%;
  }
}
.heading-02{
  font-size: 5.86vw;
  line-height: 1.2;
  letter-spacing: -2%;
  font-weight: var(--font-weight-black);
}
@media screen and (min-width: 768px) {
  .heading-02{
    font-size: 3.5vw;
  }
}
@media screen and (min-width: 1025px) {
  .heading-02{
    font-size: 36px;
  }
}
.heading-03{
  font-size: 5.86vw;
  line-height: 1.2;
  letter-spacing: -1%;
  font-weight: var(--font-weight-black);
}
@media screen and (min-width: 768px) {
  .heading-03{
    font-size: 2.75vw;
  }
}
@media screen and (min-width: 1025px) {
  .heading-03{
    font-size: 28px;
  }
}
.heading-04{
  font-size: 4vw;
  line-height: 1.2;
  letter-spacing: -1%;
  color: var(--color-accent);
  padding: 0 0 .5em;
  border-bottom: 1px solid var(--color-primary);
}
@media screen and (min-width: 768px) {
  .heading-04{
    font-size: 1.875vw;
  }
}
@media screen and (min-width: 1025px) {
  .heading-04{
    font-size: 15px;
  }
}
.heading__wrapper{
  margin: 0 0 8vw;
}
.heading__wrapper .en{
  font-size: 4vw;
  letter-spacing: -1%;
}
@media screen and (min-width: 768px) {
  .heading__wrapper{
    margin: 0 0 4vw;
  }
  .heading__wrapper .en{
    font-size: 1.875vw;
  }
}
@media screen and (min-width: 1025px) {
  .heading__wrapper{
    margin: 0 0 32px;
  }
  .heading__wrapper .en{
    font-size: 15px;
  }
}
/* box */
.box{
  padding: 8vw 4vw;
  background: #fff;
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
  .box{
    padding: 5vw 7.5vw;
  }
}
@media screen and (min-width: 1025px) {
  .box{
    padding: 40px 60px;
  }
}
/* turnstile */
.cf-turnstile{
  margin: 0 0 4.8vw;
}
@media screen and (min-width: 768px) {
  .cf-turnstile{
    float: right;
  }
}
.wpcf7-spinner{
  display: none;
}
.wpcf7-response-output:empty{
  display: none;
}
/* about */
.about__inner{
  padding: 16vw 0;
  row-gap: 8.5vw;
}
@media screen and (min-width: 768px) {
  .about__inner{
    padding: 12.5vw 0 10vw;
  }
}
@media screen and (min-width: 1025px) {
  .about__inner{
    padding: 100px 0;
  }
}
.about__catch p:not(:last-child){
  margin: 0 0 1.5em;
}
/* whatwedo */
.whatwedo{
  background: var(--container-bg-primary);
}
.whatwedo .inner{
  padding: 16vw 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .whatwedo .inner{
    padding: 8.75vw 0 10vw;
  }
  .whatwedo .box{
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    margin-left: -4%;
    margin-right: -4%;
  }
}
@media screen and (min-width: 1025px) {
  .whatwedo .inner{
    padding: 70px 0 100px;
  }
}
.whatwedo .heading-03{
  margin: 0 0 .5em;
}
.whatwedo .heading-04{
  margin: 0 0 1.5em;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .whatwedo .heading-04 span{
    display: block;
  }
}
.whatwedo .heading__wrapper{
  margin: 0 0 8vw;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .whatwedo .box__item{
    display: grid;
    grid-template-rows: auto auto 7lh 1fr;
  }
}
.whatwedo__list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .whatwedo__list{
    margin-top: 3em;
  }
}
.whatwedo__list li{
  padding: .5em 0;
  background: #FDF3E0;
  color: var(--color-accent);
  text-align: center;
  border-radius: 2em;
}
.service .inner{
  padding: 16vw 0;
}
@media screen and (min-width: 768px) {
  .service .inner{
    padding: 8.75vw 0 10vw;
  }
}
@media screen and (min-width: 1025px) {
  .service .inner{
    padding: 70px 0 100px;
  }
}
@media screen and (max-width: 767px) {
.service__box{
  --grid-row-gutter: 12vw;
}
}
.service__box-img{
  padding: 1.5em 0;
  height: 40vw;
  text-align: center;
}
.service__box-img img{
  height: 100%;
  width: auto;
}
@media screen and (min-width: 768px) {
  .service__box-img{
    height: 29vw;
  }
}
@media screen and (min-width: 1025px) {
  .service__box-img{
    height: 220px;
  }
}
.company{
  background: var(--color-secondary) url(../img/index/bg_company.png) no-repeat center / 100% auto;
  padding: 16vw 0;
}
@media screen and (min-width: 768px) {
  .company{
    padding: 12.5vw 0;
  }
}
@media screen and (min-width: 1025px) {
  .company{
    padding: 100px 0;
    background-position: center top;
    background-size: 1350px auto;
  }
}
.company .box{
  background: #CCECE6;
}
.company__box-list dd{
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  padding: 0 0 1em;
  margin: 0 0 1em;
}
@media screen and (min-width: 768px) {
  .company__box-list{
    display: grid;
    grid-template-columns: 12.5vw 1fr;
  }
  .company__box-list dt,
  .company__box-list dd{
    padding: .8em 0 1em;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
  }
  .company__box-list dt{
    text-align: center;
  }
  .company__box-list dd{
    padding-left: 2em;
    margin: 0;
  }
}
@media screen and (min-width: 1025px) {
  .company__box-list{
    grid-template-columns: 100px 1fr;
  }
}
