@charset "UTF-8";
html {
  width: 100vw;
  max-width: 1440px;
  color: #505050;
  background-color: #fafafa;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: sans-serif;
}

p {
  color: #505050;
}

a {
  text-decoration: none;
  color: #505050;
}

li {
  list-style-type: none;
}

@keyframes floatUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.floating-text {
  animation: floatUp 0.8s ease-out;
}

.glowAnime span {
  opacity: 0;
}

.glowAnime.glow span {
  animation: glow_anime_on 0.5s ease-out forwards;
}

@keyframes glow_anime_on {
  0% {
    opacity: 0;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 10px #fff, 0 0 15px #fff;
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
}
.flipRight {
  animation-name: flipRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  perspective-origin: right center;
  opacity: 0;
}

@keyframes flipRightAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
.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: 1s;
  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: 100%;
  background-color: #F0AD60;
}

@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;
}

.header {
  z-index: 800;
  background-color: #fafafa;
  position: fixed;
  width: 100vw;
  max-width: 1440px;
  height: 100px;
  margin: 0 auto;
  margin-top: -100vh;
}
.header .contents {
  width: 90vw;
  max-width: 1296px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  /* ナビ開いてる時のボタン */
}
.header .contents .name h1 {
  font-size: 34px;
  font-weight: 100;
  margin-top: 30px;
  font-family: "Dancing Script", cursive;
}
.header .contents .name h1 img {
  width: 30px;
  height: auto;
  margin-right: 4px;
  margin-bottom: -2px;
}
.header .contents .nav .pcnav {
  margin-top: 6px;
}
.header .contents .nav .pcnav ul {
  display: flex;
  justify-content: space-around;
}
.header .contents .nav .pcnav ul li {
  margin-right: 30px;
}
.header .contents .nav .pcnav ul li a {
  color: #505050;
  height: 100px; /* アンカータグの高さ */
  line-height: 100px;
}
.header .contents .nav .pcnav ul li a:hover {
  color: #F0AD60;
  transition: color 0.5s ease;
}
.header .contents .hamburger {
  display: block;
  position: relative;
  z-index: 3;
  right: 0px;
  top: 30px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.header .contents .hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #434343;
  transition: 0.3s ease-in-out;
}
.header .contents .hamburger span:nth-child(1) {
  top: 10px;
}
.header .contents .hamburger span:nth-child(2) {
  top: 20px;
}
.header .contents .hamburger span:nth-child(3) {
  top: 30px;
}
.header .contents .hamburger.active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}
.header .contents .hamburger.active span:nth-child(2) {
  width: 0px;
}
.header .contents .hamburger.active span:nth-child(1),
.header .contents .hamburger.active span:nth-child(3) {
  background: #fff;
  transition-delay: 0.3s;
}
.header .contents .hamburger.active span:nth-child(1) {
  transform: translateY(4px);
}
.header .contents .hamburger.active span:nth-child(3) {
  transform: translateY(-16px) rotate(90deg);
}
.header .contents .globalMenuSp {
  display: none;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  pointer-events: none;
}
.header .contents .globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.header .contents .globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
}
.header .contents .globalMenuSp ul li:first-child {
  margin-top: 100px;
}
.header .contents .globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
.header .contents .globalMenuSp ul li:hover {
  background: rgba(255, 220, 185, 0.6235294118);
}
.header .contents .globalMenuSp ul li a {
  display: block;
  color: #fafafa;
  padding: 1em 0;
  text-decoration: none;
}
.header .contents nav.globalMenuSp.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.top {
  background-color: #fafafa;
  width: 100vw;
  max-width: 1440px;
  position: fixed;
  margin-top: -88vh;
}
.top__img {
  position: relative;
  width: 90vw;
  max-width: 1296px;
  height: 80vh;
  margin: 0 auto;
  overflow: hidden;
}
.top__img img {
  width: 90vw;
  max-width: 1296px;
  height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -10px;
  transition: transform 0.3s ease-out;
  transform: scale(1);
}
.top__img .ttl-box {
  position: absolute;
  left: 7%;
  bottom: 60px;
}
.top__img .ttl-box h2 {
  color: white;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 600;
}
.top__img .ttl-box .big {
  font-size: 54px;
}

.container {
  max-width: 1440px;
  background-color: #fafafa;
  z-index: 50;
  position: relative;
}

.news {
  height: 100px;
  width: 90vw;
  max-width: 1296px;
  margin: 0 auto;
  padding-top: 20px;
  margin-top: 100vh;
}
.news__ttl {
  border-left: #333 1px solid;
}
.news__ttl h3 {
  font-size: 20px;
  font-weight: 100;
  margin-left: 20px;
  margin-top: 14px;
  padding-top: 6px;
  font-family: serif;
  font-weight: bold;
}
.news__contents .news-slider p {
  display: block;
  background: #fafafa;
  padding: 14px 20px 12px 20px;
  font-display: 18px;
  font-size: 16px;
}
.news__contents .news-slider p span {
  display: inline-block;
  font-size: 14px;
  margin-right: 10px;
  color: #777;
  font-size: 14px;
}

.vision {
  width: 90vw;
  max-width: 1296px;
  margin: 0 auto;
  padding-top: 140px;
  margin-top: -60px;
  display: flex;
  justify-content: space-between;
}
.vision__img img {
  display: block;
  width: 540px;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 60px 60px 0px #E9F8F2;
}
.vision__sentence {
  text-align: end;
  margin: auto 0;
  width: 360px;
}
.vision__sentence h3 {
  font-size: 60px;
  color: #F0AD60;
  font-weight: 100;
  margin-bottom: 70px;
  padding-right: 10px;
  font-family: "Dancing Script", cursive;
}
.vision__sentence .orange {
  color: #F0AD60;
  padding-bottom: 50px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
  position: relative;
  font-family: serif;
}
.vision__sentence .orange::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 260px; /* ボーダーの幅 */
  border-bottom: #F0AD60 1px solid;
}
.vision__sentence .slogan {
  margin-top: 50px;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.8;
}
.vision__sentence .ceo {
  font-size: 14px;
  line-height: 1.8;
  padding-right: 16px;
}

.service {
  width: 90vw;
  max-width: 1296px;
  height: 600px;
  margin: 0 auto;
  margin-top: 160px;
  position: relative;
}
.service h3 {
  font-family: "Dancing Script", cursive;
  font-size: 60px;
  color: #F0AD60;
  position: absolute;
  top: 136px;
  right: 670px;
  z-index: 100;
}
.service__img {
  position: absolute;
  right: 0;
  z-index: 80;
  height: 570px;
  padding-top: 120px;
}
.service__img img {
  width: 740px;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__sentence {
  background-color: white;
  box-shadow: 0 0 10px #ccc;
  width: 790px;
  height: 420px;
  z-index: 90;
  position: absolute;
  left: 0;
  top: 240px;
}
.service__sentence h4 {
  text-align: center;
  font-size: 22px;
  font-weight: 100;
  margin-top: 50px;
  margin-bottom: 50px;
  font-family: serif;
  font-weight: bold;
}
.service__sentence h4::after {
  content: "";
  position: absolute;
  top: 98px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  border-bottom: #505050 1px solid;
}
.service__sentence p {
  font-size: 16px;
  width: 80%;
  margin: 0 auto;
  line-height: 1.8;
}
.service__sentence a {
  margin: 0 126px 0 auto;
  margin-top: 14px;
  border: solid 1px #505050;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 140px;
  padding: 10px 25px;
  color: #505050;
  transition: 0.3s ease-in-out;
  font-family: serif;
}
.service__sentence a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2em;
  transform: translateY(-50%);
  width: 60px;
  height: 1px;
  background-color: #505050;
  transition: 0.3s;
}
.service__sentence a:hover {
  background: #505050;
  color: white;
}
.service__sentence a:hover:after {
  right: -2.5em;
}

.service2 {
  width: 90vw;
  max-width: 1296px;
  height: 700px;
  margin: 0 auto;
  margin-top: 180px;
  position: relative;
}
.service2__img {
  position: absolute;
  left: 0;
  z-index: 80;
  height: 570px;
  padding-top: 120px;
}
.service2__img img {
  width: 740px;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}
.service2__sentence {
  background-color: white;
  box-shadow: 0 0 10px #ccc;
  width: 790px;
  height: 420px;
  z-index: 90;
  position: absolute;
  right: 0;
  top: 240px;
}
.service2__sentence h4 {
  text-align: center;
  font-size: 22px;
  font-weight: 100;
  margin-top: 50px;
  margin-bottom: 50px;
  font-family: serif;
  font-weight: bold;
}
.service2__sentence h4::after {
  content: "";
  position: absolute;
  top: 98px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  border-bottom: #505050 1px solid;
}
.service2__sentence p {
  font-size: 16px;
  width: 80%;
  margin: 0 auto;
  line-height: 1.8;
}
.service2__sentence a {
  margin: 0 126px 0 auto;
  margin-top: 14px;
  border: solid 1px #505050;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 140px;
  padding: 10px 25px;
  color: #505050;
  transition: 0.3s ease-in-out;
  font-family: serif;
}
.service2__sentence a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2em;
  transform: translateY(-50%);
  width: 60px;
  height: 1px;
  background-color: #505050;
  transition: 0.3s;
}
.service2__sentence a:hover {
  background: #505050;
  color: white;
}
.service2__sentence a:hover:after {
  right: -2.5em;
}

.faq {
  max-width: 1440px;
  padding-top: 180px;
  margin-top: -40px;
}
.faq h3 {
  font-family: "Dancing Script", cursive;
  font-size: 60px;
  margin-top: -40px;
  margin-bottom: 40px;
  text-align: center;
  color: #F0AD60;
}
.faq .accordion {
  list-style: none;
  width: 80vw;
  max-width: 800px;
  margin: 0 auto;
}
.faq .accordion li {
  margin: 10px 0;
}
.faq .accordion li section {
  border: 1px solid #ccc;
}
.faq .accordion li section .ttl {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all 0.5s ease;
}
.faq .accordion li section .ttl::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #333;
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.faq .accordion li section .ttl::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #333;
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
.faq .accordion li section .ttl.close::before {
  transform: rotate(45deg);
}
.faq .accordion li section .ttl.close::after {
  transform: rotate(-45deg);
}
.faq .accordion li section .box {
  background-color: #E9F8F2;
  width: 96%;
  margin: 0 auto;
  padding: 20px;
  margin-bottom: 20px;
}
.faq .accordion li section .box p {
  padding-left: 14px;
}
.faq .accordion li section .box a {
  border-bottom: #505050 solid 1px;
}

.eyechatch {
  width: 90vw;
  max-width: 1296px;
  height: 500px;
  margin: 0 auto;
  margin-top: 160px;
  position: relative;
}
.eyechatch__img {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 90;
}
.eyechatch__img img {
  width: 76vw;
  max-width: 1090px;
  aspect-ratio: 16/7;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(80%);
  transition: 0.7s;
}
.eyechatch__img img:hover {
  filter: grayscale(0);
}
.eyechatch .green {
  width: 56vw;
  max-width: 806px;
  aspect-ratio: 5/3;
  background-color: #E9F8F2;
  z-index: 80;
  position: absolute;
  left: 0;
  top: 60px;
}

.about {
  width: 100vw;
  max-width: 1440px;
  padding-top: 20px;
  margin-top: -20px;
}
.about h3 {
  font-family: "Dancing Script", cursive;
  font-size: 60px;
  margin-top: 160px;
  margin-bottom: 40px;
  text-align: center;
  color: #F0AD60;
}
.about table {
  max-width: 800px;
  width: 80vw;
  margin: 0 auto;
  border-collapse: collapse;
}
.about table tr th {
  padding: 24px 0;
  width: 30%;
  text-align: left;
  border-bottom: #707070 1px solid;
  padding-left: 30px;
  font-size: 16px;
  font-weight: 200;
}
.about table tr td {
  padding: 24px 0;
  border-bottom: #707070 1px solid;
  font-size: 16px;
}
.about table tr td span {
  font-size: 14px;
}

.works {
  width: 90vw;
  max-width: 1296px;
  margin: 0 auto;
  margin-bottom: 160px;
  padding-top: 10px;
  margin-top: -10px;
}
.works h3 {
  font-family: "Dancing Script", cursive;
  font-size: 60px;
  margin-top: 140px;
  margin-bottom: 80px;
  text-align: center;
  color: #F0AD60;
}
.works .slider {
  width: 90vw;
  max-width: 1296px;
  margin: 0 auto;
  overflow: hidden;
}
.works .slider .bgDU .mask {
  position: relative;
  display: inline-block;
  line-height: 0;
  width: 330px;
  height: 440px;
  overflow: hidden;
}
.works .slider .bgDU .mask::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.3s ease-in-out;
  transform: translateY(100%);
  background: rgba(0, 0, 0, 0.5);
  width: 300px;
  height: 440px;
  margin-left: 50px;
}
.works .slider .bgDU .mask img {
  position: relative;
  width: 300px;
  height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: 50px;
  box-shadow: 0 10px 10px #ccc;
}
.works .slider .bgDU:hover span.mask::before {
  opacity: 1;
  transform: translateY(0);
}
.works .slider .bgDU .cap {
  position: absolute;
  opacity: 0;
  transition: 0.3s ease-in-out;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  line-height: 1.5;
  font-size: 16px;
  word-break: keep-all;
  text-align: left;
  width: 180px;
}
.works .slider .bgDU .cap .small {
  font-size: 12px;
  margin-top: 10px;
}
.works .slider .bgDU:hover span.cap {
  opacity: 1;
}

footer {
  background-color: #E9F8F2;
  width: 100vw;
  max-width: 1440px;
  height: 60px;
}
footer .copy {
  font-size: 14px;
  text-align: center;
  line-height: 60px;
}
footer .scroll-top {
  position: fixed;
  right: 20px;
  bottom: 10px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
  writing-mode: vertical-rl;
  white-space: nowrap;
  animation: arrowmove 1s ease-in-out infinite;
}
@keyframes arrowmove {
  0% {
    bottom: 20px;
  }
  50% {
    bottom: 25px;
  }
  100% {
    bottom: 20px;
  }
}
footer .scroll-top.scroll-view {
  opacity: 1;
  visibility: visible;
}
footer .scroll-top a {
  text-decoration: none;
  color: #505050;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
}
footer .js-scroll a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 50px;
  background: #505050;
}
footer .js-scroll a::before {
  content: "";
  position: absolute;
  top: 30px;
  right: -6px;
  width: 1px;
  height: 20px;
  background: #505050;
  transform: skewX(-31deg);
}
footer _:-ms-lang(x), footer .js-scroll a::before {
  right: -11px;
}
footer .js-pagetop a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 50px;
  background: #505050;
}
footer .js-pagetop a::before {
  content: "";
  position: absolute;
  top: 0;
  right: -6px;
  width: 1px;
  height: 20px;
  background: #505050;
  transform: skewX(31deg);
}
footer _:-ms-lang(x), footer .js-pagetop a::before {
  right: 0;
}
footer section {
  padding: 500px 0;
}

@media screen and (max-width: 1100px) {
  .vision__img img {
    width: 40vw;
    height: 500px;
  }
  .service {
    margin-top: 120px;
  }
  .service h3 {
    right: 630px;
  }
  .service__img img {
    width: 700px;
    height: 400px;
  }
  .service__sentence {
    width: 700px;
    height: 400px;
  }
  .service__sentence h4 {
    margin-top: 40px;
  }
  .service__sentence h4::after {
    top: 90px;
  }
  .service__sentence p .non-br {
    display: none;
  }
  .service2 {
    margin-top: 100px;
  }
  .service2 h3 {
    top: 140px;
    left: 550px;
  }
  .service2__img img {
    width: 700px;
    height: 400px;
  }
  .service2__sentence {
    width: 700px;
    height: 400px;
  }
  .service2__sentence h4 {
    margin-top: 40px;
  }
  .service2__sentence h4::after {
    top: 90px;
  }
  .service2__sentence p .non-br {
    display: none;
  }
  .eyechatch {
    margin-top: 120px;
  }
  .about h3 {
    margin-top: 100px;
  }
  .eyechatch {
    height: 400px;
  }
}
@media screen and (max-width: 900px) {
  .header {
    height: 80px;
  }
  .header .contents .name h1 {
    margin-top: 22px;
  }
  .header .contents .hamburger {
    top: 24px;
  }
  .header .nav .pcnav {
    display: none;
  }
  .vision {
    flex-direction: column-reverse;
  }
  .vision__img img {
    width: 90vw;
    height: auto;
    aspect-ratio: 16/9;
    box-shadow: none;
  }
  .vision__sentence {
    margin-top: 30px;
    width: 90vw;
    padding-bottom: 50px;
  }
  .vision__sentence h3 {
    margin-bottom: 70px;
    padding-right: 10px;
    text-align: left;
  }
  .vision__sentence .orange {
    text-align: left;
    padding-bottom: 40px;
  }
  .vision__sentence .orange::after {
    left: 0;
  }
  .vision__sentence .slogan {
    margin-top: 40px;
    text-align: left;
  }
  .vision__sentence .ceo {
    text-align: left;
  }
  .vision .item1 {
    order: 2;
  }
  .vision .item2 {
    order: 1;
  }
  .service {
    margin-top: 50px;
  }
  .service h3 {
    right: 62vw;
  }
  .service__img {
    padding-top: 120px;
    height: 400px;
  }
  .service__img img {
    width: 70vw;
    height: 400px;
  }
  .service__sentence {
    width: 460px;
    height: 350px;
  }
  .service__sentence h4 {
    font-size: 18px;
    margin-top: 36px;
  }
  .service__sentence h4::after {
    top: 80px;
  }
  .service__sentence p {
    font-size: 13px;
  }
  .service__sentence p .non-br1 {
    display: none;
  }
  .service__sentence a {
    margin: 0 70px 0 auto;
    max-width: 100px;
    padding: 8px 20px;
    font-size: 14px;
  }
  .service__sentence a:after {
    width: 40px;
  }
  .service__sentence a:hover {
    background: #505050;
    color: white;
  }
  .service__sentence a:hover:after {
    right: -2.5em;
  }
  .service2 {
    height: 620px;
    margin-top: 20px;
  }
  .service2 h3 {
    left: 64vw;
  }
  .service2__img {
    height: 400px;
    padding-top: 120px;
  }
  .service2__img img {
    width: 70vw;
    height: 400px;
  }
  .service2__sentence {
    width: 460px;
    height: 350px;
  }
  .service2__sentence h4 {
    font-size: 18px;
    margin-top: 36px;
  }
  .service2__sentence h4::after {
    top: 80px;
  }
  .service2__sentence p {
    font-size: 13px;
  }
  .service2__sentence p .non-br1 {
    display: none;
  }
  .service2__sentence a {
    margin: 0 70px 0 auto;
    max-width: 100px;
    padding: 8px 20px;
    font-size: 14px;
  }
  .service2__sentence a:after {
    width: 40px;
  }
  .service2__sentence a:hover {
    background: #505050;
    color: white;
  }
  .service2__sentence a:hover:after {
    right: -2.5em;
  }
  .faq {
    padding-top: 20px;
    margin-top: 40px;
  }
  .eyechatch {
    height: 300px;
  }
}
@media screen and (max-width: 600px) {
  .service h3 {
    width: 90vw;
    top: 0;
    left: 0;
    text-align: center;
  }
  .service__img {
    width: 90vw;
    height: 280px;
    padding-top: 120px;
  }
  .service__img img {
    width: 90vw;
    height: 280px;
    box-shadow: 0 0 10px #ccc;
  }
  .service__sentence {
    width: 90vw;
    height: -moz-fit-content;
    height: fit-content;
    top: 400px;
    box-shadow: 0 10px 10px #ccc;
  }
  .service__sentence p {
    padding-bottom: 10px;
  }
  .service__sentence a {
    margin-bottom: 20px;
  }
  .service2 {
    margin-top: 220px;
    height: 800px;
  }
  .service2 h3 {
    width: 90vw;
    top: 0;
    left: 0;
    text-align: center;
  }
  .service2__img {
    width: 90vw;
    height: 280px;
    padding-top: 0px;
  }
  .service2__img img {
    width: 90vw;
    height: 280px;
    box-shadow: 0 0 10px #ccc;
  }
  .service2__sentence {
    width: 90vw;
    height: -moz-fit-content;
    height: fit-content;
    top: 280px;
    box-shadow: 0 10px 10px #ccc;
  }
  .service2__sentence p {
    padding-bottom: 10px;
  }
  .service2__sentence a {
    margin-bottom: 20px;
  }
  .faq {
    margin-top: -100px;
  }
  .faq .accordion {
    width: 90vw;
  }
  .eyechatch {
    height: 200px;
  }
  .about h3 {
    margin-top: 160px;
    margin-bottom: 20px;
  }
  .about table {
    width: 90vw;
  }
  .works {
    margin-top: -60px;
    margin-bottom: 100px;
  }
  .works h3 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 550px) {
  .top__img .ttl-box {
    width: 400px;
    position: absolute;
    left: 40px;
    bottom: 40px;
  }
  .top__img .ttl-box h2 {
    color: white;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
  }
  .top__img .ttl-box .big {
    font-size: 40px;
  }
}
@media screen and (max-width: 490px) {
  .top__img {
    height: 70vh;
  }
  .top__img img {
    height: 70vh;
  }
  .service__sentence p .non-br2 {
    display: none;
  }
  .service2 {
    margin-top: 240px;
  }
  .service2__sentence p .non-br2 {
    display: none;
  }
  .faq {
    padding-top: 100px;
  }
}
@media screen and (max-width: 430px) {
  .top__img .ttl-box {
    width: 300px;
    left: 20px;
    bottom: 20px;
  }
  .top__img .ttl-box h2 {
    color: white;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
  }
  .top__img .ttl-box .big {
    font-size: 34px;
  }
  .about h3 {
    margin-top: 60px;
    padding-top: 30px;
    margin-bottom: 10px;
  }
  .works h3 {
    padding-top: 140px;
    margin-top: 0;
    margin-bottom: 40px;
  }
}/*# sourceMappingURL=style.css.map */