@import url('https://fonts.googleapis.com/css2?family=Contrail+One&display=swap');

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.l-blue {
  background: #319da8;
}

.l-blue:hover {
  background: #22727a;
}

.d-blue {
  background: #156292;
}

.d-blue:hover {
  background: #0d4a70;
}

.pc {
  display: inline-block;
}
.sp {
  display: none;
}
@media only screen and (max-width: 480px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline-block;
  }
}/* END max-width: 480px */
.pc {
  display: none;
}
.sp {
  display: inline-block;
}
/* headerIn */
#headerIn {
  width: 100%;
  padding: 1em 0;
  margin-top: 80px;
  background-color: rgba(244, 244, 244, .75);
}
#headerIn .inner {
  max-width: 1200px;
  width: 97.5%;
  margin: 0 auto;
  text-align: center;
}
#headerIn p {
  display: block;
  max-width: 1200px;
  width: 97.5%;
  margin: 0 auto;
  font-size: 14px;
  color: #cc0000;
  text-align: center;
}
#headerIn p span {
  display: inline-block;
  text-align: left;
}

/*header*/
header.fixed {
  /* padding: 1em 0; 元 padding*/
  padding: 0 0 1em;/* 能登震災用 paddin */
  background-color: transparent;
}

header .inner {
  width: 90%;
  margin: auto;
}

header .inner nav {
  display: inline-block;
  padding-top: 15px;
  float: right;
  display: none;
}

header .inner nav a {
  color: #000000;
}

header .inner nav ul.main li {
  display: inline-block;
  padding: 5px 1vw;
  position: relative;
  letter-spacing: .05em;
  font-size: 16px;
  font-weight: 600;
}

header .inner nav ul.main li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #242424;
}

header .inner nav ul.main li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #ca373d;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}

header .inner nav ul.main li ul li a::after {
  content: none;
}

header .inner nav ul.main li a:hover::after {
  transform: scale(1, 1);
}

header nav ul.main li.btn-s {
  display: inline-block;
  border-radius: 30px;
  padding: 7px 25px;
  position: relative;
  color: #ffffff;
  width: fit-content;
  transition: ease 0.4s;
}

header nav ul.main li.btn-s a:after {
  content: none;
}

header nav ul.main li.btn-s a {
  color: #ffffff;
  font-size: 90%;
  font-weight: 600;
}

header nav ul.main li.btn-s a img.mark {
  display: inline;
  width: 25px;
  height: auto;
  margin-top: 0;
}

header nav ul.main li.yellow {
  background: #FECB2F;
  color: #000000;
}

header nav ul.main li.yellow a {
  color: #000000;
}

header .inner nav ul.main li ul.sub {
  position: absolute;
  width: 100%;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  border: 0;
  padding-top: 1em;
  visibility: hidden;
  opacity: 0;
}

header .inner nav ul.main li:hover ul.sub {
  visibility: visible;
  opacity: 1;
}

header .inner nav ul.main li ul.sub li {
  width: 200px;
  background: #242424;
  padding: .75em 1em;
  border-bottom: 1px solid #686868;
  font-size: 90%;
}

header .inner nav ul.main li ul.sub li:last-child {
  border-bottom: 0;
}

header .inner nav ul.main li ul.sub li a {
  color: #ffffff;
  width: 100%;
  display: inline-block;
  height: 100%;
}

header .inner nav ul.main li ul.sub li:hover {
  background: #3d3d3d;
}

/*humberger*/
#menu {
  display: block;
  top: 12px !important;
  width: 25px;
  height: 35px;
}

#menu div span {
  height: 2px;
}

/*common*/
section {
  color: #242424;
}

section .inner {
  padding-top: 25vw;
  padding-bottom: 20vw;
  padding-left: 7%;
  position: relative;
}

p {
  font-size: 1.25vw;
  line-height: 1.75em;
}

a, a:hover {
  text-decoration: none;
  color: #ffffff;
}

.center {
  text-align: center;
}

.mt1 {
  margin-top: 1em;
}

.mt3 {
  margin-top: 3em;
}

.mt5 {
  margin-top: 5em;
}

section .inner .title {
  position: absolute;
  top: 13vw;
  left: 7%;
  z-index: 5;
}

section .inner .title .eng {
  position: relative;
  color: #CA373D;
  font-weight: 400;
  font-size: 4vw;
  margin-bottom: 0;
  letter-spacing: .1em;
  font-family: 'Contrail One', cursive;
}

section .inner .title .jp {
  font-size: 6.5vw;
  font-weight: 600;
  letter-spacing: .075em;
}

section .inner .title .eng::before {
  position: absolute;
  content: "";
  width: 30%;
  height: 1px;
  background: #CA373D;
  left: -40%;
  top: 50%;
}

.btn {
  position: relative;
  background-image: linear-gradient(to right,
      #ca373d 0%,
      #ca373d 50%,
      #242424 50%,
      #242424 100%);
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 200% auto;
  padding: 2% 10%;
  color: #ffffff;
  text-align: center;
  border-radius: 40px;
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: fit-content;
  font-size: 18px;
  font-weight: 600;
  transition: background-position ease 0.4s;
}

.btn::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  display: inline-block;
  right: 15%;
  top: 50%;
  transform: translate3d(0, -50%, 0) rotate(45deg);
  transition: .3s ease-in-out;
}

.btn:hover {
  background-position: 0 0;
}

.btn:hover::after {
  right: 14%;
  transition: .3s ease-in-out;
}

.fwrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/*main*/
#main {
  height: 130vw;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

.main-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background: no-repeat 0 50%;
  background-size: cover;
  animation-name: slides;
  animation-timing-function: linear;
  animation-duration: 45s;
  animation-delay: 0;
  opacity: 1;
  transform: scale(1.1);
  background-image: url(/assets/img/top_220904/mainImg-sp.jpg);
  transform: translateX(15%) scale(1.2);
}

@keyframes slides {
  0% {
    transform: translateX(0%) scale(1);
  }

  100% {
    transform: translateX(15%) scale(1.2);
  }
}

#main h2 {
  position: absolute;
  left: 7%;
  top: 75%;
  transform: translateY(-50%);
  color: #ffffff;
  width: 90%;
  line-height: 1.5em;
  opacity: .9;
}

#main h2 span.red {
  display: inline-block;
  background: rgba(190, 21, 28, .9);
  padding: 2% 4%;
  margin-bottom: .5em;
  font-size: 6vw;
  font-weight: 600;
}

@media screen and (max-width:768px) {
  p {
    font-size: 0.9rem;
  }
}

.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: .75s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 200%;
  background-color: #242424;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }

  50% {
    transform-origin: left;
    transform: scaleX(1);
  }

  50.001% {
    transform-origin: right;
  }

  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

/*form*/
#main .form {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 90%;
  padding-left: 0;
  padding-right: 0;
  background: rgba(255, 255, 255, .92);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, .2));
  display: none;
}

#main .form br {
  display: none;
}

#main .form .title {
  background: rgba(52, 42, 42, .96);
  padding: 8% 5% 5%;
  color: #ffffff;
  font-size: 100%;
  line-height: 1.5em;
  letter-spacing: .05em;
  font-weight: 600;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: relative;
}

#main .form .content {
  padding: 5% 8%;
  border: 1px solid #e9e9e9;
}

#main .form dt.req::after {
  display: none;
}

#main .form .content form div dl {
  background: transparent;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#main .form .content form div dl div {
  width: 47%;
  margin-bottom: 0;
}

#main .form .content form div dl div dt {
  border-top: 0;
  padding: 0;
}

#main .form .content form div dl div dd {
  margin-left: 0;
  background: transparent;
  padding: 0;
  border-left: 0;
  border-top: 0;
}

#main .form .content form div dl div dd input {
  width: 95%;
  padding: 5px;
  border: 1px solid #b6b6b6;
  font-size: 90%;
}

#main .form .content form div dl div dd .error {
  color: red;
  font-size: 80%
}

#main .form .btn {
  display: block;
  margin: .5em auto;
  width: fit-content;
  color: #342A2A;
  border: 1px solid #342A2A;
  background: #ffffff;
  padding: 3% 13%;
  font-size: 90%;
  line-height: 2em;
  box-shadow: unset;
}

/*service*/
#service {
  padding-right: 7%;
  background-image: url(/assets/img/top_220904/texture.jpg);
  background-size: 25%;
}

#service .inner .wrapper {
  align-items: flex-start;
}

#service .inner .wrapper .maintext {
  width: 54%;
}

#service .inner .wrapper .maintext p {
  font-size: 3.6vw;
  margin: 2.5em 0 0;
  line-height: 2em;
  font-weight: 600;
  text-align: left;
}

#service .inner .wrapper .chart {
  width: 37%;
}

#service .inner .wrapper .chart img {
  width: 100%;
  margin: 2em auto;
}

#service .inner .wrapper .maintext h3 {
  font-size: 2.1vw;
  line-height: 1.75em;
}

#service .inner p.list {
  font-size: 5vw;
  font-weight: 600;
}

#service .inner .serviceWrapper {
  width: 100%;
}

#service .inner .serviceWrapper div.service {
  width: 23%;
  background: #B5343A;
  color: #ffffff;
  position: relative;
}

#service .inner .serviceWrapper div.service:hover{
transform: translateY(-15px);
}

#service .inner .serviceWrapper div.service a ::after{
content:"";
position:absolute;
width: 0;
height: 0;
border-style: solid;
border-width: 0 0 15px 15px;
border-color: transparent transparent #ffffff transparent;
right:15px;
bottom:15px;
opacity:20%;
}

#service .inner .serviceWrapper div.service:nth-child(2) {
  background: #d6921e;
}

#service .inner .serviceWrapper div.service:nth-child(3) {
  background: #559da4;
}

#service .inner .serviceWrapper div.service:nth-child(4) {
  background: #0A476E;
}

#service .inner .serviceWrapper div.service .midashi {
  text-align: center;
  padding: 30px 0 15px;
}

#service .inner .serviceWrapper div.service .midashi:hover {

}

#service .inner .serviceWrapper div.service .midashi .icon {
  width: 7vw;
  height: 7vw;
  background: #ffffff;
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#service .inner .serviceWrapper div.service .midashi .icon img {
  width: 60%;
  margin: auto;
}

#service .inner .serviceWrapper div.service .midashi p {
  margin-top: 1em;
  margin-bottom: 0;
}

#service .inner .serviceWrapper div.service .midashi p b {
  font-size: 1.3vw;
  letter-spacing: 0;
  font-weight: 600;
}

#service .inner .serviceWrapper div.service .text {
  padding: 15px 15px 50px;
  height: auto;
}

#service .inner .serviceWrapper div.service .midashi {
  background: #CA373D;
}

#service .inner .serviceWrapper div.service:nth-child(2) .midashi {
  background: #eba226;
}

#service .inner .serviceWrapper div.service:nth-child(3) .midashi {
  background: #6fb4bb;
}

#service .inner .serviceWrapper div.service:nth-child(4) .midashi {
  background: #0B517E;
}

#service .inner .serviceWrapper div.service .text p {
  font-size: 95%;
  text-align: left;
  line-height: 1.75em;
}

#service .inner .serviceWrapper div.service .more {
  position: absolute;
  left: 30px;
  bottom: 30px;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0;
  font-size: 90%;
  font-weight: 600;
  letter-spacing: .2em;
  width: calc(100% - 60px);
}

#service .inner .serviceWrapper div.service .more span {
  display: inline-block;
  width: calc(100% - 100px);
  height: 1px;
  background: #FFF;
  vertical-align: middle;
  margin-left: 15px;
}

/*strength*/
#strength {
  background: #f2f2f2;
}

#strength .inner .feature {
  width: 96%;
  display: block;
  margin-right: 0;
  margin-left: auto;
}

#strength .inner .feature .content {
  background: #ffffff;
  padding: 8vw;
  align-items: center;
  border: 1px solid #dddddd;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, .1));
  align-items: flex-start;
}

#strength .inner .feature .content img {
  width: 50%;
}

#strength .inner .feature .content .text {
  width: 42%;
}

#strength .inner .feature .content .text h4 {
  font-size: 1.8vw;
  line-height: 1.75em;
}

#strength .inner .feature .content .text p {
  font-size: 90%;
  text-align: left;
  margin: 1em 0;
}

/*works*/
#works .inner {
  padding-left: 7%;
  padding-right: 0;
}

#works .inner .gallery {
  width: 100%;
  overflow: hidden;
}

#works .inner .worksWrap {
  padding-top: 1.75em;
}

#works .inner .worksWrap>div.worksItem {
  width: 31%;
}

#works .inner .worksWrap>div.worksItem .pic {
  width: 100%;
  aspect-ratio: 1/.77;
  overflow: hidden;
  margin-bottom: 1em;
}

#works .inner .worksWrap>div.worksItem .pic img {
  width: 100%;
  transition: .6s;
}

#works .inner .worksWrap>div.worksItem .pic:hover img {
  transform: scale(105%);
  transition: .6s;
}

#works .inner .worksWrap>div.worksItem p {
  font-size: 90%;
  margin-bottom: 0;
  color: #414141;
}

#works .inner .worksWrap>div.worksItem p {
  text-align: left;
}

#works .inner .worksWrap>div.worksItem p.name {
  font-size: 100%;
  font-weight: bold;
}

/*contact*/
#contact {
  background-image: url(/assets/img/top_220904/contact.jpg);
  background-size: cover;
  background-position: center;
  height: 90vh;
  position: relative;
  color: #ffffff;
}

#contact .inner {
  padding-right: 7%;
}

#contact .inner h4 {
  font-size: 2.75vw;
  line-height: 1.75em;
}

#contact .inner p b {
  line-height: 2.2em;
  font-weight: normal;
}

#contact .inner .fwrap>div {
  width: 50%;
  padding: 5% 0;
  color: #ffffff;
  width: fit-content;
  transition: ease 0.4s;
}

#contact .inner .fwrap>div:hover {
  background-position: 0 0;
}

#contact .inner .fwrap>div .midashi {
  font-weight: 600;
  font-size: 1.6vw;
  letter-spacing: .1em;
}

#contact .inner .fwrap>div .midashi img {
  width: 35px;
  margin-bottom: 5px;
}

/*blog*/
#top_blog {
  padding-top: 10em;
  padding-bottom: 10em;
}

/*FADEIN GRADUALY ANIMATION*/
.fadein {
  opacity: 0;
  transition: all 1s;
}

.fadein.active {
  opacity: 1;
}

@media handheld, print, screen and (min-width: 374px) {

  /* iphone6 */
  .mt3 {
    margin-top: 1em;
  }

  .mt5 {
    margin-top: 3em;
  }

  .btn {
    padding: 4% 20%;
    font-size: 15px;
  }

  .btn::after {
    width: 6px;
    height: 6px;
  }

  section .inner {
    padding-top: 25vw;
    padding-bottom: 15vw;
  }

  /*service*/
  #service {
    background-size: 80%;
  }

  #service .inner .wrapper {
    display: block;
  }

  #service .inner .wrapper .maintext,
  #service .inner .wrapper .chart {
    width: 100%;
  }

  #service .inner .wrapper .maintext h3 {
    font-size: 5vw;
  }

  #service .inner .serviceWrapper div.service {
    width: 90%;
    margin: 0 auto 2.5em;
  }

  #service .inner .serviceWrapper div.service:nth-child(4) {
    margin-bottom: 0;
  }

  #service .inner .serviceWrapper div.service .more {
    font-size: 75%;
  }

  #service .inner .serviceWrapper div.service .midashi .icon {
    width: 16vw;
    height: 16vw;
  }

  #service .inner .serviceWrapper div.service .midashi p {
    margin-top: 1em;
  }

  #service .inner .serviceWrapper div.service .midashi p b {
    font-size: 4.8vw;
  }

  /*strength*/
  #strength .inner .feature .content img,
  #strength .inner .feature .content .text {
    width: 100%;
  }

  #strength .inner .feature .content .text {
    margin-top: 2em;
  }

  #strength .inner .feature .content .text h4 {
    font-size: 4.4vw;
  }

  #strength .inner .feature .content .text h4 br {
    display: none;
  }

  /*contact*/
  #contact {
    height: 55vh;
  }

  #contact .inner {
    padding-right: 7%;
  }

  #contact .inner h4 {
    font-size: 5vw;
  }

  #contact .inner h4 br {
    display: none;
  }

  #contact .inner p {
    font-size: 90%;
    margin-bottom: .5em;
  }

  #contact .inner p.message {
    margin: 1em 0 0.5em;
    text-align: left;
  }

  #contact .inner p br {
    display: none;
  }

  #contact .inner .fwrap>div {
    width: 100%;
    padding: 12% 0;
  }

  #contact .inner .fwrap>div .midashi {
    font-size: 4.3vw
  }

  #contact .inner .fwrap>div .midashi img {
    width: 25px;
  }

  #top_blog {
    padding-top: 18em;
    padding-bottom: 3em;
  }

  #top_blog #blog_blog02 {
    padding-top: 2em;
  }

  /* end of media query(iphone6) */
}

@media handheld, print, screen and (min-width: 481px) {
  #main h2 {
    width: 80%;
    top: 76%;
  }

  #main h2 span.red {
    font-size: 5vw;
  }

  /* end of media query */
}

@media handheld, print, screen and (min-width: 768px) {
  .mt5 {
    margin-top: 3em;
  }

  .btn {
    padding: 2% 15%;
  }

  /*hamburger*/
  #menu {
    top: 20px !important;
    right: 30px;
  }

  #main {
    height: 125vw;
  }

  .main-image {
    background-image: url(/assets/img/top_220904/mainImg-tb.jpg);
    background-position: 50% 40%;
    transform: translateX(3%) scale(1.2);
  }

  @keyframes slides {
    0% {
      transform: translateX(0%) scale(1);
    }

    100% {
      transform: translateX(3%) scale(1.2);
    }
  }

  #main .form {
    opacity: 0;
    display: block;
    right: 5%;
    filter: drop-shadow(5px 0 5px rgba(0, 0, 0, .2));
    animation-name: fadeUp;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
  }

  @keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(100px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  #main .form .title {
    padding: 4% 3% 3%;
  }

  #main .form .content {
    padding: 3%;
  }

  #main .form .btn {
    padding: 1% 10%;
  }

  #main h2 {
    top: 30%;
  }

  #main h2 span.red {
    font-size: 3vw;
    padding: 2% 4%;
  }

  /*左から右*/
  .bgLRextend::before {
    width: 100%;
    height: 270%;
  }

  section .inner {
    padding-top: 15vw;
    padding-bottom: 10vw;
  }

  section .inner .title {
    top: 9vw;
  }

  section .inner .title .eng {
    font-size: 2vw;
    margin-bottom: 0;
  }

  section .inner .title .jp {
    font-size: 3.5vw;
  }

  /*service*/
  #service {
    background-size: 50%;
  }

  #service .inner .wrapper {
    display: flex;
    align-items: center;
  }

  #service .inner .wrapper .maintext {
    width: 48%;
  }

  #service .inner .wrapper .maintext h3 {
    font-size: 2.75vw;
  }

  #service .inner .wrapper .maintext p {
    font-size: 1.8vw;
    line-height: 2.5em;
    margin-top: 1.5em;
  }

  #service .inner .wrapper .maintext p br {
    display: none;
  }

  #service .inner .wrapper .chart {
    width: 46%;
  }

  #service .inner .wrapper .chart img {
    margin: 0 auto;
  }

  #service .inner .serviceWrapper {
    width: 100%;
    margin: 3em auto 0;
  }

  #service .inner .serviceWrapper div.service {
    width: 44%;
    margin-bottom: 2em;
  }

  #service .inner .serviceWrapper div.service .text {
    padding: 30px;
    height: auto;
  }

  #service .inner .serviceWrapper div.service .midashi {
    text-align: center;
    padding: 30px 0 30px;
  }

  #service .inner .serviceWrapper div.service .midashi .icon {
    width: 9vw;
    height: 9vw;
  }

  #service .inner .serviceWrapper div.service .midashi p {
    margin-top: 1.5em;
  }

  #service .inner .serviceWrapper div.service .midashi p b {
    font-size: 2vw;
    margin-top: 1em;
  }

  #service .inner .serviceWrapper div.service .more {
    font-size: 90%;
    letter-spacing: .05em;
  }

  #service .inner .serviceWrapper div.service:nth-child(4) {
    margin-bottom: 2em;
  }

  #service .inner p.list {
    font-size: 2.5vw;
  }

  /*strength*/
  #strength .inner .feature .content img {
    width: 40%;
  }

  #strength .inner .feature .content .text {
    width: 52%;
    margin-top: 0;
  }

  #strength .inner .feature .content .text h4 {
    font-size: 2vw;
  }

  /*contact*/
  #contact {
    height: 53vw;
  }

  #contact .inner h4 {
    font-size: 2.6vw;
    padding-left: 5vw;
  }

  #contact .inner p.message {
    padding-left: 5vw;
  }

  #contact .inner p b {
    font-weight: 600;
  }

  #contact .inner h4 br,
  #contact .inner p br {
    display: block;
  }

  #contact .inner .fwrap>div {
    width: 50%;
    padding: 8% 0;
  }

  #contact .inner .fwrap>div .midashi {
    font-size: 2vw;
  }

  /*blog*/
  #top_blog {
    padding-top: 5em;
    padding-bottom: 5em;
  }

  /* end of media query */
}

@media handheld, print, screen and (min-width: 1021px) {
  .mt5 {
    margin-top: 5em;
  }

  .btn {
    padding: 2% 10%;
    font-size: 18px;
  }

  section .inner {
    padding-top: 180px;
    padding-bottom: 100px;
    padding-left: 7%;
  }

  section .inner .title {
    position: absolute;
    top: 110px;
  }

  #main {
    height: 100vh;
  }

  .main-image {
    background-image: url(/assets/img/top_220904/mainImg.jpg);
    animation-duration: 10s;
    background-position: 50% 50%;
    /* transform: translateX(5%) scale(1.1); */
    transform: translateX(5%) scale(1.1) translateY(2.75em);
  }

  @keyframes slides {
    0% {
      transform: translateX(0%) scale(1.1) translateY(2.75em);
    }

    100% {
      transform: translateX(5%) scale(1.1) translateY(2.75em);
    }
  }

  #main h2 {
    left: 7%;
    top: 55%;
    width: 60%;
  }

  #main h2 span.red {
    font-size: 2.8vw;
    padding: 3% 4%;
  }

  .bgLRextend::before {
    width: 100%;
    height: 340%;
  }

  #main .form {
    right: 5%;
    width: 330px;
  }

  #main .form br {
    display: block;
  }

  #main .form .content form div dl div {
    width: 100%;
  }

  #main .form .content {
    padding: 5% 8%;
  }

  /*header*/
  header .inner nav {
    display: block;
  }

  /*humberger*/
  #menu {
    display: none;
  }

  section .inner .title .eng {
    font-size: 1.8vw;
    margin-bottom: 0.5em;
  }

  section .inner .title .jp {
    font-size: 2.75vw;
  }

  /*service*/
  #service {
    background-size: 25%;
  }

  #service .inner .serviceWrapper div.service {
    width: 23%;
  }

  #service .inner .wrapper {
    align-items: top;
  }

  #service .inner .wrapper .maintext {
    width: 60%;
  }

  #service .inner .wrapper .maintext h3 {
    font-size: 2.25vw;
  }

  #service .inner .wrapper .maintext p {
    font-size: 1.3vw;
    line-height: 2.5em;
  }

  #service .inner .wrapper .maintext p br {
    display: block;
  }

  #service .inner .wrapper .chart {
    width: 39%;
  }

  #service .inner .serviceWrapper {
    width: 100%;
    margin: 5em auto 0;
  }

  #service .inner .serviceWrapper div.service .midashi p {
    margin-top: 1em;
  }

  #service .inner .serviceWrapper div.service .midashi p b {
    font-size: 1.5vw;
  }

  #service .inner .serviceWrapper div.service .midashi .icon {
    width: 7vw;
    height: 7vw;
  }

  #service .inner p.list {
    font-size: 2vw;
  }

  /*strength*/
  #strength .inner .feature .content img {
    width: 50%;
  }

  #strength .inner .feature .content {
    align-items: center;
  }

  #strength .inner .feature .content .text {
    width: 42%;
  }

  #strength .inner .feature .content .text h4 {
    font-size: 1.8vw;
  }

  #strength .inner .feature .content .text p {
    font-size: 100%;
  }

  /*contact*/
  #contact {
    height: 90vh;
  }

  #contact .inner {
    padding-top: 140px;
  }

  #contact .inner p {
    font-size: 120%;
  }

  #contact .inner p.message {
    margin-top: 2em;
  }

  #contact .inner .fwrap>div {
    padding: 7% 0;
  }

  #contact .inner .fwrap>div .midashi {
    font-size: 1.6vw;
  }

  #contact .inner .fwrap>div .midashi img {
    width: 35px;
    margin-right: 0.5em;
  }

  /*blog*/
  #top_blog {
    padding-top: 10em;
    padding-bottom: 10em;
  }

  /* end of media query */
}
