@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://use.typekit.net/zzv1aam.css");
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #232323;
}

.inner {
  max-width: 80vw;
  margin: 0 auto;
  padding-bottom: 160px;
}
.inner .sectiontitle {
  font-family: "Futura PT";
  font-weight: normal;
  font-size: 20px;
  text-align: left;
  color: #232323;
  position: relative;
  padding-bottom: 10px;
}
.inner .sectiontitle::before {
  content: "";
  display: block;
  width: 29px;
  height: 5px;
  background-color: #f9e000;
  position: absolute;
  left: -40px;
  bottom: 50%;
}

.menubtn {
  display: none;
  background-image: url(../img/menu.png);
  background-size: cover;
  width: 60px;
  height: 60px;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 4;
  transition: all 0.3s;
}
.menubtn:hover {
  cursor: pointer;
}

.menubtn.isactive {
  background: url(../img/close.png);
  background-size: cover;
  width: 40px;
  height: 40px;
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 55;
  transition: all 0.3s;
}
.menubtn.isactive:hover {
  cursor: pointer;
}

.menu-comp {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  width: 30vw;
  height: 100vh;
  background-image: linear-gradient(90deg, rgb(89, 173, 241), rgb(207, 253, 157));
  opacity: 0.95;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: slideIn 0.5s;
}
.menu-comp .closebtn {
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 2;
  width: 20px;
}
.menu-comp .closebtn:hover {
  cursor: pointer;
}
.menu-comp nav {
  position: relative;
}
.menu-comp nav ul li {
  padding-bottom: 30px;
  display: block;
}
.menu-comp nav ul li a {
  color: #fff;
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 600;
  animation: slideIn 0.5s;
  transition: all 0.3s;
}
.menu-comp nav ul li a .wonder-logo {
  width: 30%;
  padding-bottom: 30px;
}
.menu-comp nav ul li a:hover {
  cursor: pointer;
  scale: 1.1;
}
.menu-comp nav ul li a img {
  max-width: 40%;
  padding-right: 10px;
}

.menu-comp.isactive {
  display: flex;
  z-index: 30;
}

.compbtn.hidden {
  display: none;
}

header {
  height: 100vh;
  position: relative;
}
header .header-logo {
  position: absolute;
  top: 0;
  left: 50px;
}
header .corp {
  display: flex;
}
header .corp .headerleft {
  height: 100vh;
  margin-right: 20px;
  width: 30%;
  background-image: url(../img/top_img01.png);
  background-position: center;
  background-size: cover;
}
header .corp .headerright {
  width: 70%;
}
header .corp .headerright .headerright-top {
  height: 90vh;
  margin-bottom: 20px;
  background-image: url(../img/top_img02.png);
  background-position: center;
  background-size: cover;
}
header .corp .headerright .headerright-top .corp-name {
  width: 80%;
  max-width: 920px;
  color: white;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
header .corp .headerright .headerright-top .corp-name p {
  font-family: "Futura PT", sans-serif;
  font-weight: 300;
  font-size: 2.8rem;
}
header .corp .headerright .headerright-top .corp-name .nb {
  text-align: right;
  padding-top: 7px;
}
header .corp .headerright .headerright-bottom {
  height: 8vh;
  background-image: url(../img/navbg.png);
  background-size: cover;
}
header .corp .headerright .headerright-bottom .navigation {
  color: #fff;
}
header .corp .headerright .headerright-bottom .navigation nav ul {
  height: 8vh;
  font-size: 1.2rem;
  max-width: 80%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-left: auto;
}
header .corp .headerright .headerright-bottom .navigation nav ul li a {
  display: flex;
  align-items: center;
}
header .corp .headerright .headerright-bottom .navigation nav ul li a .aboutlink {
  padding-top: 5px;
}
header .corp .headerright .headerright-bottom .navigation nav ul li a img {
  display: block;
  margin-right: 10px;
  max-width: 180px;
}

#about {
  position: relative;
  margin-bottom: 160px;
}
#about::before {
  content: "";
  display: block;
  width: 70%;
  min-width: 1250px;
  height: 90%;
  max-height: 975px;
  background-image: url(../img/aboutbg.png);
  background-size: cover;
  z-index: -3;
  position: absolute;
  top: 100px;
  left: 0;
}
#about .inner {
  position: relative;
  max-width: 90%;
}
#about .inner .aboutcontent_text {
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
#about .inner .aboutcontent_text h2 {
  padding-top: 200px;
  display: flex;
  font-size: 5rem;
  padding-bottom: 25px;
  align-items: center;
  color: #fff;
}
#about .inner .aboutcontent_text h2 span {
  display: block;
  margin-top: 20px;
}
#about .inner .aboutcontent_text h2 .spimg {
  display: none;
}
#about .inner .aboutcontent_text h2 img {
  display: block;
  margin-right: 30px;
  max-width: 700px;
}
#about .inner .aboutcontent {
  display: flex;
  position: relative;
}
#about .inner .aboutcontent p {
  letter-spacing: 0.1rem;
  display: block;
  margin-left: 4vw;
  font-size: 1rem;
  line-height: 2.2rem;
  max-width: 30vw;
  color: #fff;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
#about .aboutimg {
  position: absolute;
  max-width: 45%;
  min-width: 700px;
  bottom: -50px;
  right: 5%;
  z-index: -2;
}
#about h3 {
  position: absolute;
  font-family: "Futura PT";
  font-weight: normal;
  font-size: 6rem;
  text-align: left;
  color: #009a4f;
  opacity: 0.2;
  bottom: -15%;
  right: 1%;
  letter-spacing: 0.1rem;
}

#service {
  padding-bottom: 160px;
}
#service .inner {
  padding-bottom: 0px;
}
#service .servicecontents {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
#service .servicecontents .servicecontent {
  position: relative;
}
#service .servicecontents .servicecontent::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(101deg, rgba(0, 176, 235, 0.568627451) 0%, rgba(41, 157, 0, 0.7411764706) 96%, rgba(0, 154, 79, 0.8196078431) 100%);
  opacity: 0.3;
}
#service .servicecontents .servicecontent {
  height: 500px;
}
#service .servicecontents .servicecontent .servicecontent-text {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 100px 100px 0;
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
#service .servicecontents .servicecontent .servicecontent-text .servicetitle {
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 10px;
}
#service .servicecontents .servicecontent .servicecontent-text p {
  letter-spacing: 0.1rem;
}
#service .servicecontents .service01 {
  background-image: url(../img/content01_pc.png);
  background-size: cover;
  background-position: center;
}
#service .servicecontents .service02 {
  background-image: url(../img/content02_pc.png);
  background-size: cover;
  background-position: center;
}
#service .servicecontents .service03 {
  background-image: url(../img/content03_pc.png);
  background-size: cover;
  background-position: center;
}
#service .servicecontents .service04 {
  background-image: url(../img/content04_pc.png);
  background-size: cover;
  background-position: center;
}

.service-logo {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  justify-content: center;
  display: flex;
  gap: 30px 70px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1629px) {
  .service-logo {
    gap: 30px 30px;
  }
}
@media screen and (max-width: 1515px) {
  .service-logo {
    gap: 30px 200px;
  }
}
@media screen and (max-width: 1169px) {
  .service-logo {
    gap: 30px 70px;
  }
}
.service-logo img {
  width: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}

.mynav-logo img {
  margin-bottom: 16px;
}
.mynav-logo img:last-of-type {
  margin-bottom: 0;
}

#company {
  padding-bottom: 160px;
}
#company .inner {
  padding-bottom: 0;
}
#company .innercompany {
  display: flex;
}
#company .innercompany .companyleft {
  width: 50%;
  background-image: url(../img/companybg.png);
  background-size: cover;
  padding-bottom: 40px;
  color: #fff;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  #company .innercompany .companyleft {
    font-size: 14px;
  }
}
#company .innercompany .companyleft table {
  display: table;
  margin-left: 7vw;
  margin-top: 7vh;
  font-size: 1.2rem;
  table-layout: fixed;
  width: 85%;
}
#company .innercompany .companyleft table tr {
  display: flex;
  padding-bottom: 20px;
}
#company .innercompany .companyleft table tr th {
  display: block;
  font-weight: 400;
  padding-right: 15px;
  width: 20%;
}
#company .innercompany .companyleft table tr td {
  display: block;
}
#company .innercompany .companyright {
  width: 50%;
}

#contact {
  padding-bottom: 160px;
}
#contact .inner {
  padding-bottom: 0;
}
#contact .contactcontents {
  background-image: url(../img/contactbg.png);
  background-size: cover;
  padding-bottom: 60px;
}
#contact .contactcontents .inner p {
  padding-top: 20px;
  color: #fff;
  font-size: 1.1rem;
}
#contact .contactcontents .confirmwrap {
  color: #fff;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
#contact .contactcontents .confirmwrap .contactcontent .confirmitem {
  display: block;
  width: 30%;
}
#contact .contactcontents .confirmwrap .contactcontent .confirmitem .confirmtext {
  overflow-wrap: break-word;
}
#contact .contactcontents .thanks {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  height: 500px;
}
#contact .contactcontents .thanks h3 {
  font-size: 2.3rem;
}
#contact .contactcontents .thanks .spscreen {
  display: none;
}
#contact .contactcontents .thanks p {
  font-size: 2rem;
}
#contact .contactcontents .thanks .returnbtn {
  color: #fff;
  width: 40%;
  display: block;
  padding: 10px;
  font-weight: 600;
  text-align: center;
  margin-top: 50px;
  border-radius: 23px;
  background: #f9e000;
  border: none;
  opacity: 0.8;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  transition: all 0.3s;
}
#contact .contactcontents .thanks .returnbtn:hover {
  opacity: 1;
}
#contact .contactcontents .contactwrap {
  width: 80%;
  margin: 0 auto;
}
#contact .contactcontents .contactwrap .contactcontent {
  padding-top: 50px;
}
#contact .contactcontents .contactwrap .contactcontent form {
  font-size: 1.2rem;
}
#contact .contactcontents .contactwrap .contactcontent form .formcontent {
  display: flex;
  padding-bottom: 30px;
  justify-content: center;
}
#contact .contactcontents .contactwrap .contactcontent form .formcontent .contentname {
  color: #fff;
  padding-right: 15px;
  width: 20%;
  align-items: baseline;
}
#contact .contactcontents .contactwrap .contactcontent form .formcontent .contentname label {
  display: inline-block;
  padding-right: 10px;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  font-weight: 600;
}
#contact .contactcontents .contactwrap .contactcontent form .formcontent .contentname .required {
  color: #e11111;
  font-size: 0.8rem;
}
#contact .contactcontents .contactwrap .contactcontent form .formcontent input {
  width: 50%;
  display: block;
  color: #232323;
  background-color: #fff;
  border: none;
  padding: 7px;
}
#contact .contactcontents .contactwrap .contactcontent form .formcontent input::-moz-placeholder {
  font-size: 0.9rem;
  color: #b5b4b4;
}
#contact .contactcontents .contactwrap .contactcontent form .formcontent input::placeholder {
  font-size: 0.9rem;
  color: #b5b4b4;
}
#contact .contactcontents .contactwrap .contactcontent form .formcontent textarea {
  color: #232323;
  width: 50%;
  display: block;
  background-color: #fff;
  border: none;
}
#contact .contactcontents .contactwrap .contactcontent form .formcontent button {
  color: #fff;
  width: 50%;
  display: block;
  padding: 10px;
  margin-left: 20%;
  font-weight: 600;
  text-align: center;
  border-radius: 23px;
  background: #f9e000;
  border: none;
  opacity: 0.8;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  transition: all 0.3s;
}
#contact .contactcontents .contactwrap .contactcontent form .formcontent button:hover {
  cursor: pointer;
  opacity: 1;
}
#contact .contactcontents .contactwrap .contactcontent form .formcontent .btn {
  color: #fff;
  width: 20%;
  display: block;
  padding: 10px;
  margin: 0;
  margin-top: 50px;
  font-weight: 600;
  text-align: center;
  border-radius: 23px;
  background: #f9e000;
  border: none;
  opacity: 0.8;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  transition: all 0.3s;
}
#contact .contactcontents .contactwrap .contactcontent form .formcontent .btn:hover {
  cursor: pointer;
  opacity: 1;
}
#contact .contactcontents .contactwrap .contactcontent form .formcontent a.btn {
  margin-right: 50px;
}

footer {
  background-color: #009a4f;
  color: #fff;
}
footer .inner {
  padding-bottom: 20px;
}
footer .inner .footercontents {
  padding-top: 60px;
  display: flex;
  align-items: center;
}
footer .inner .footercontents .sp-logo {
  display: none;
}
footer .inner .footercontents .footerlogo {
  width: 30%;
}
footer .inner .footercontents .footernavcontents {
  width: 70%;
  padding-left: 20%;
}
footer .inner .footercontents .footernavcontents .footernavcontent ul {
  display: flex;
  justify-content: space-between;
}
footer .inner .footercontents .footernavcontents .footernavcontent ul li a {
  display: flex;
  align-items: center;
}
footer .inner .footercontents .footernavcontents .footernavcontent ul li a .aboutlink {
  padding-top: 5px;
}
footer .inner .footercontents .footernavcontents .footernavcontent ul li a img {
  display: block;
  margin-right: 10px;
  max-width: 180px;
}
footer .inner p {
  text-align: right;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 0.95;
    transform: translateX(0);
  }
}
.header-pp-logo {
  position: fixed;
  top: -10px;
  left: 50px;
  z-index: 2;
}
@media screen and (max-width: 1344px) {
  .header-pp-logo img {
    width: 110px;
    height: auto;
  }
}
@media screen and (max-width: 1054px) {
  .header-pp-logo img {
    display: none;
  }
}

.header-pp {
  position: fixed;
  top: 0;
  left: 0;
  color: #fff;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 90px;
  background: url("../img/navbg.png") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .header-pp {
    display: none;
  }
}

.header-pp-nav nav ul {
  height: 90px;
  width: 100%;
  display: flex;
  font-size: 28px;
  gap: 0 76px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1344px) {
  .header-pp-nav nav ul {
    font-size: 18px;
  }
}

.pp-menu a {
  display: flex;
}
.pp-menu img {
  height: 40px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1344px) {
  .pp-menu img {
    height: 24px;
  }
}

.inner__pp {
  width: 700px;
  padding-bottom: 100px;
}

.pp-entry {
  margin-top: 165px;
}
@media screen and (max-width: 767px) {
  .pp-entry {
    margin-top: 100px;
  }
}
.pp-entry {
  color: #333;
}
.pp-entry dl {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
.pp-entry h1 {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .pp-entry h1 {
    font-size: 22px;
  }
}
.pp-entry p {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .pp-entry p {
    font-size: 16px;
  }
}

.pp-block {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}

.ft-bt-link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.ft-bt-link a {
  padding-right: 21px;
  position: relative;
}
.ft-bt-link a::before {
  content: "";
  display: block;
  height: 80%;
  width: 1px;
  background: #fff;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .ft-bt-link a {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .ft-bt-link p {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .menubtn.pp-menubtn {
    display: block;
  }
}

@media screen and (max-width: 1334px) {
  #contact .contactcontents .thanks h3 {
    font-size: 1.6rem;
  }
  #contact .contactcontents .thanks p {
    font-size: 1.3rem;
  }
  #contact .contactcontents .confirmwrap .contactcontent form .formcontent {
    width: 90%;
  }
  #contact .contactcontents .confirmwrap .contactcontent form .formcontent .btn {
    min-width: auto;
    width: 45%;
  }
  #contact .contactcontents .confirmwrap .contactcontent form .formcontent .confirmitem {
    width: 70%;
  }
  #contact .contactcontents .confirmwrap .contactcontent form .formcontent .confirmitem .confirmtext {
    width: 100%;
  }
  #contact .contactcontents .confirmwrap .contactcontent form .formcontent .contentname {
    min-width: 30%;
  }
  #contact .contactcontents .confirmwrap .contactcontent form .formcontent .contentname label {
    font-size: 1rem;
  }
  #contact .contactcontents .contactwrap {
    width: 90%;
  }
  #contact .contactcontents .contactwrap .contactcontent {
    margin: 0;
  }
  #contact .contactcontents .contactwrap .contactcontent form .formcontent {
    width: 90%;
    margin: 0 auto;
  }
  #contact .contactcontents .contactwrap .contactcontent form .formcontent .contentname {
    min-width: 30%;
  }
  #contact .contactcontents .contactwrap .contactcontent form .formcontent .contentname label {
    font-size: 1rem;
  }
  #contact .contactcontents .contactwrap .contactcontent form input {
    min-width: 70%;
  }
  #contact .contactcontents .contactwrap .contactcontent form textarea {
    min-width: 70%;
  }
  #contact .contactcontents .contactwrap .contactcontent form .submitbtn button {
    display: block;
    margin: 0 0 0 auto;
    min-width: 70%;
  }
  footer .inner .footercontents .sp-logo {
    display: block;
    width: 30%;
  }
  footer .inner .footercontents .pc-logo {
    display: none;
  }
  footer .inner .footercontents .footernavcontents .footernavcontent ul {
    flex-direction: column;
  }
  footer .inner .footercontents .footernavcontents .footernavcontent ul li {
    display: flex;
    justify-content: right;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 1334px) {
  #about::before {
    min-width: 100vw;
    height: 80%;
  }
  #about .inner .aboutcontent_text h2 {
    font-size: 3rem;
  }
  #about .inner .aboutcontent_text h2 img {
    max-width: 400px;
  }
  #about .inner .aboutcontent p {
    max-width: 100%;
    letter-spacing: 0.1rem;
  }
  #about .aboutimg {
    right: 0px;
    bottom: -70px;
    min-width: 600px;
    height: 400px;
  }
  #about .aboutimg::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.1;
    background-color: #000;
  }
  #about h3 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 1024px) {
  #contact .contactcontents .contactcontent form input[type=button] {
    margin-left: 24%;
  }
  .menu-comp {
    width: 100%;
    height: 100%;
  }
  header {
    height: 600px;
  }
  header .header-logo {
    max-width: 70px;
  }
  header .corp .headerleft {
    max-height: 600px;
    width: 30%;
  }
  header .corp .headerright .headerright-top {
    height: 510px;
  }
  header .corp .headerright .headerright-bottom {
    height: 70px;
  }
  header .corp .headerright .headerright-bottom .navigation {
    height: 70px;
  }
  header .corp .headerright .headerright-bottom .navigation nav ul {
    height: 70px;
  }
  header .corp .headerright .headerright-bottom .navigation nav ul li a {
    font-size: 0.9rem;
  }
  header .corp .headerright .headerright-bottom .navigation nav ul li a img {
    width: 130px;
  }
  #service .servicecontents {
    flex-direction: column;
  }
  #service .servicecontents .servicecontent {
    width: 100%;
    height: auto;
  }
  #service .servicecontents .servicecontent .servicecontent-text {
    padding: 25px 0 60px;
    font-size: 1rem;
  }
  #service .servicecontents .servicecontent .servicecontent-text .servicetitle {
    font-size: 1.3rem;
  }
  .service-logo {
    justify-content: space-around;
  }
  #company .innercompany {
    height: 100%;
    flex-direction: column;
  }
  #company .innercompany .companyleft {
    width: 100%;
    height: auto;
    padding: 32px 0;
  }
  #company .innercompany .companyleft table {
    font-size: 1rem;
    margin-top: 30px;
  }
  #company .innercompany .companyright {
    width: 100%;
    height: 500px;
  }
}
@media screen and (max-width: 599px) {
  #contact .contactcontents .contactwrap .contactcontent form .submitbtn button {
    display: block;
    margin: 0 auto;
    min-width: 100%;
  }
  #stickybtn.menubtn {
    top: 10px;
    right: 10px;
  }
  #stickybtn.menubtn.isactive {
    top: 20px;
    right: 20px;
  }
  header {
    height: 500px;
  }
  header .header-logo {
    left: 20px;
  }
  header .corp .headerleft {
    display: none;
  }
  header .corp .headerright {
    width: 100%;
  }
  header .corp .headerright .headerright-top {
    height: 500px;
  }
  header .corp .headerright .headerright-top .corp-name p {
    font-size: 2rem;
  }
  header .corp .headerright-bottom {
    display: none;
  }
  #about {
    position: relative;
  }
  #about::before {
    display: none;
  }
  #about .inner {
    padding-bottom: 100px;
  }
  #about .inner .aboutcontent_text h2 {
    position: relative;
  }
  #about .inner .aboutcontent_text h2::before {
    content: "「集」から「個」の時代へ";
    color: #3aad75;
    text-shadow: none;
    opacity: 0.2;
    letter-spacing: 0.1rem;
    position: absolute;
    bottom: 10px;
    right: 20px;
  }
  #about .inner .aboutcontent_text h2 {
    padding-top: 100px;
    margin-bottom: 25px;
    font-size: 1.2rem;
  }
  #about .inner .aboutcontent_text h2 span {
    margin-top: 7px;
    color: #3aad75;
  }
  #about .inner .aboutcontent_text h2 .spimg {
    display: block;
    margin-right: 10px;
  }
  #about .inner .aboutcontent_text h2 .pcimg {
    display: none;
  }
  #about .inner .aboutcontent_text h2 img {
    max-width: 200px;
  }
  #about .inner .aboutcontent p {
    color: #3aad75;
    text-shadow: none;
    margin-right: 0;
  }
  #about .aboutimg {
    min-width: 300px;
    height: inherit;
    top: 250px;
    opacity: 0.5;
  }
  #about .aboutimg::after {
    height: 200px;
    opacity: 0.4;
    background-color: #fff;
  }
  #about h3 {
    display: none;
  }
  #about::after {
    content: "";
    color: #000;
    z-index: -2;
    width: 80%;
    height: 200px;
    position: absolute;
    background-size: cover;
    opacity: 0.3;
    bottom: 230px;
    background-image: url(../img/aboutimg02.png);
  }
  #service .inner {
    padding-top: 0;
  }
  #service .servicecontents .servicecontent .servicecontent-text {
    padding-top: 25px;
  }
  #company .innercompany .companyleft table tr th {
    width: 40%;
  }
  #company .innercompany .companyleft table tr td {
    width: 60%;
  }
  #company .innercompany .companyright {
    min-height: 300px;
  }
  #contact .contactcontents .thanks h3 {
    font-size: 1.3rem;
  }
  #contact .contactcontents .thanks .wscreen {
    display: none;
  }
  #contact .contactcontents .thanks .spscreen {
    display: block;
  }
  #contact .contactcontents .thanks p {
    font-size: 1rem;
  }
  #contact .contactcontents .confirmwrap .contactcontent form .formcontent {
    display: flex;
    flex-direction: column;
    width: 90%;
  }
  #contact .contactcontents .confirmwrap .contactcontent form .formcontent .btn {
    min-width: auto;
    width: 100%;
    margin-top: 30px;
  }
  #contact .contactcontents .confirmwrap .contactcontent form .formcontent .confirmitem {
    width: 100%;
  }
  #contact .contactcontents .confirmwrap .contactcontent form .formcontent .confirmitem .confirmtext {
    width: 100%;
  }
  #contact .contactcontents .confirmwrap .contactcontent form .formcontent .contentname {
    min-width: 100%;
  }
  #contact .contactcontents .confirmwrap .contactcontent form .formcontent .contentname label {
    border-bottom: #3aad75 2px solid;
    padding-bottom: 5px;
  }
  #contact .contactcontents .confirmwrap .contactcontent form .formcontent .contentname label {
    font-size: 1rem;
  }
  #contact .contactcontents .contactcontents {
    background-size: cover;
  }
  #contact .contactcontents .contactcontents .contactwrap .contactcontent {
    width: 90%;
    margin: 0 auto;
  }
  #contact footer .inner .footercontents .footernavcontents {
    padding-left: 10%;
  }
  footer .inner .footercontents .footernavcontents .footernavcontent ul li a {
    flex-direction: column;
  }
  footer .inner .footercontents .footernavcontents .footernavcontent ul li a img {
    margin: 0;
  }
  footer .inner .footercontents .footernavcontents .footernavcontent ul li a .aboutlink {
    display: block;
    margin: 0 0 0 auto;
  }
  #contact .contactcontents .contactwrap .contactcontent form .formcontent {
    display: flex;
    flex-direction: column;
  }
  #contact .contactcontents .contactwrap .contactcontent form .formcontent .contentname {
    width: 100%;
    margin-bottom: 15px;
  }
  #contact .contactcontents .contactwrap .contactcontent form .formcontent input {
    min-width: auto;
    width: 100%;
  }
  #contact .contactcontents .contactwrap .contactcontent form .formcontent textarea {
    min-width: auto;
    width: 100%;
  }
}
#news {
  padding-top: 50px;
}
#news .inner {
  padding-bottom: 40px;
}
#news .sectiontitle {
  margin-bottom: 10px;
}

.news__content {
  display: flex;
  gap: 6px 24px;
}
@media screen and (max-width: 900px) {
  .news__content {
    flex-direction: column;
  }
}
.news__content .sp-br {
  display: none;
}
@media screen and (max-width: 460px) {
  .news__content .sp-br {
    display: block;
  }
}
.news__content a {
  text-decoration: underline;
}